@hatiolab/things-scene 3.3.25 → 3.3.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/db.sqlite +0 -0
- package/package.json +1 -1
- package/things-scene-ie.js +1 -1
- package/things-scene-min.js +1 -1
- package/things-scene.d.ts +1 -0
- package/things-scene.mjs +2 -2
package/things-scene-min.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see things-scene-min.js.LICENSE.txt */
|
|
2
|
-
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.scene=e():t.scene=e()}(self,(()=>(()=>{var t={73840:(t,e,r)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=r(92830),o=function(){function t(t,e){this.stream=t,this.handler=e}return t.prototype.parseCT=function(t){for(var e=[],r=0;r<t;r++)e.push(this.stream.readBytes(3));return e},t.prototype.readSubBlocks=function(){var t,e;e="";do{t=this.stream.readByte(),e+=this.stream.read(t)}while(0!==t);return e},t.prototype.parseHeader=function(){var t={};if(t.sig=this.stream.read(3),t.ver=this.stream.read(3),"GIF"!==t.sig)throw new Error("Not a GIF file.");t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=n.SuperGifUtils.byteToBitArr(this.stream.readByte());t.gctFlag=e.shift(),t.colorRes=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.sorted=e.shift(),t.gctSize=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.bgColor=this.stream.readByte(),t.pixelAspectRatio=this.stream.readByte(),t.gctFlag&&(t.gct=this.parseCT(1<<t.gctSize+1)),this.handler.hdr&&this.handler.hdr(t)},t.prototype.parseExt=function(t){var e=this;switch(t.label=this.stream.readByte(),t.label){case 249:t.extType="gce",function(t){e.stream.readByte();var r=n.SuperGifUtils.byteToBitArr(e.stream.readByte());t.reserved=r.splice(0,3),t.disposalMethod=n.SuperGifUtils.bitsToNum(r.splice(0,3)),t.userInput=r.shift(),t.transparencyGiven=r.shift(),t.delayTime=e.stream.readUnsigned(),t.transparencyIndex=e.stream.readByte(),t.terminator=e.stream.readByte(),e.handler.gce&&e.handler.gce(t)}(t);break;case 254:t.extType="com",function(t){t.comment=e.readSubBlocks(),e.handler.com&&e.handler.com(t)}(t);break;case 1:t.extType="pte",function(t){e.stream.readByte(),t.ptHeader=e.stream.readBytes(12),t.ptData=e.readSubBlocks(),e.handler.pte&&e.handler.pte(t)}(t);break;case 255:t.extType="app",function(t){e.stream.readByte(),t.identifier=e.stream.read(8),t.authCode=e.stream.read(3),"NETSCAPE"===t.identifier?function(t){e.stream.readByte(),t.unknown=e.stream.readByte(),t.iterations=e.stream.readUnsigned(),t.terminator=e.stream.readByte(),e.handler.app&&e.handler.app.NETSCAPE&&e.handler.app.NETSCAPE(t)}(t):function(t){t.appData=e.readSubBlocks(),e.handler.app&&e.handler.app[t.identifier]&&e.handler.app[t.identifier](t)}(t)}(t);break;default:t.extType="unknown",function(t){t.data=e.readSubBlocks(),e.handler.unknown&&e.handler.unknown(t)}(t)}},t.prototype.parseImg=function(t){t.leftPos=this.stream.readUnsigned(),t.topPos=this.stream.readUnsigned(),t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=n.SuperGifUtils.byteToBitArr(this.stream.readByte());t.lctFlag=e.shift(),t.interlaced=e.shift(),t.sorted=e.shift(),t.reserved=e.splice(0,2),t.lctSize=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.lctFlag&&(t.lct=this.parseCT(1<<t.lctSize+1)),t.lzwMinCodeSize=this.stream.readByte();var r=this.readSubBlocks();t.pixels=n.SuperGifUtils.lzwDecode(t.lzwMinCodeSize,r),t.interlaced&&(t.pixels=function(t,e){for(var r=new Array(t.length),n=t.length/e,o=function(n,o){var i=t.slice(o*e,(o+1)*e);r.splice.apply(r,[n*e,e].concat(i))},i=[0,4,2,1],a=[8,8,4,2],s=0,u=0;u<4;u++)for(var c=i[u];c<n;c+=a[u])o(c,s),s++;return r}(t.pixels,t.width)),this.handler.img&&this.handler.img(t)},t.prototype.parseBlock=function(){var t={};switch(t.sentinel=this.stream.readByte(),String.fromCharCode(t.sentinel)){case"!":t.type="ext",this.parseExt(t);break;case",":t.type="img",this.parseImg(t);break;case";":t.type="eof",this.handler.eof&&this.handler.eof(t);break;default:throw new Error("Unknown block: 0x"+t.sentinel.toString(16))}"eof"!==t.type&&setTimeout(this.parseBlock.bind(this),0)},t.prototype.parse=function(){this.parseHeader(),setTimeout(this.parseBlock.bind(this),0)},t}();e.SuperGifParser=o},14319:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t){this.data=t,this.position=0}return t.prototype.readByte=function(){if(this.position>=this.data.length)throw new Error("Attempted to read past end of stream.");return this.data instanceof Uint8Array?this.data[this.position++]:255&this.data.charCodeAt(this.position++)},t.prototype.readBytes=function(t){for(var e=[],r=0;r<t;r++)e.push(this.readByte());return e},t.prototype.read=function(t){for(var e="",r=0;r<t;r++)e+=String.fromCharCode(this.readByte());return e},t.prototype.readUnsigned=function(){var t=this.readBytes(2);return(t[1]<<8)+t[0]},t}();e.SuperGifStream=r},87503:(t,e,r)=>{"use strict";var n=r(73840),o=r(14319),i=function(){function t(t,e){var r=this;for(var n in this.gifImgElement=t,this.options={autoPlay:!0},this.loading=!1,this.ready=!1,this.transparency=null,this.delay=null,this.disposalMethod=null,this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,this.playing=!0,this.forward=!0,this.ctxScaled=!1,this.frames=[],this.frameOffsets=[],this.initialized=!1,this.currentFrameIndex=-1,this.iterationCount=0,this.stepping=!1,this.handler={hdr:this.withProgress(this.doHdr.bind(this)),gce:this.withProgress(this.doGCE.bind(this)),com:this.withProgress(this.doNothing.bind(this)),app:{NETSCAPE:this.withProgress(this.doNothing.bind(this))},img:this.withProgress(this.doImg.bind(this)),eof:function(){r.pushFrame(),r.canvas.width=r.hdr.width*r.getCanvasScale(),r.canvas.height=r.hdr.height*r.getCanvasScale(),r.playerInit(),r.loading=!1,r.ready=!0,r.loadCallback&&r.loadCallback(r.gifImgElement)}},e)this.options[n]=e[n];this.onEndListener=e.onEnd,this.loopDelay=e.loopDelay||0,this.overrideLoopMode=null!=e.loopMode?e.loopMode:"auto",this.drawWhileLoading=null==e.drawWhileLoading||e.drawWhileLoading}return t.prototype.init=function(){var t=this.gifImgElement.parentNode,e=document.createElement("div");this.canvas=document.createElement("canvas"),this.canvasContext=this.canvas.getContext("2d"),this.tmpCanvas=document.createElement("canvas"),e.className=this.options.enclosingClass||"super-gif",e.appendChild(this.canvas),t&&(t.insertBefore(e,this.gifImgElement),t.removeChild(this.gifImgElement)),this.initialized=!0},t.prototype.loadSetup=function(t){return!this.loading&&(t&&(this.loadCallback=t),this.loading=!0,this.frames=[],this.clear(),this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,!0)},t.prototype.completeLoop=function(){this.onEndListener&&this.onEndListener(this.gifImgElement),this.iterationCount++,!1!==this.overrideLoopMode||this.iterationCount<0?this.doStep():(this.stepping=!1,this.playing=!1)},t.prototype.doStep=function(){if(this.stepping=this.playing,this.stepping){this.stepFrame(1);var t=10*this.frames[this.currentFrameIndex].delay;t||(t=100),0===this.getNextFrameNo()?(t+=this.loopDelay,setTimeout(this.completeLoop.bind(this),t)):setTimeout(this.doStep.bind(this),t)}},t.prototype.step=function(){this.stepping||setTimeout(this.doStep.bind(this),0)},t.prototype.putFrame=function(){var t;this.currentFrameIndex=parseInt(this.currentFrameIndex.toString(),10),this.currentFrameIndex>this.frames.length-1&&(this.currentFrameIndex=0),this.currentFrameIndex<0&&(this.currentFrameIndex=0),t=this.frameOffsets[this.currentFrameIndex],this.tmpCanvas.getContext("2d").putImageData(this.frames[this.currentFrameIndex].data,t.x,t.y),this.canvasContext.globalCompositeOperation="copy",this.canvasContext.drawImage(this.tmpCanvas,0,0)},t.prototype.playerInit=function(){this.loadErrorCause||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.options.autoPlay?this.step():(this.currentFrameIndex=0,this.putFrame()))},t.prototype.clear=function(){this.transparency=null,this.delay=null,this.lastDisposalMethod=this.disposalMethod,this.disposalMethod=null,this.frame=null},t.prototype.parseStream=function(t){try{new n.SuperGifParser(t,this.handler).parse()}catch(t){this.handleError("parse")}},t.prototype.setSizes=function(t,e){this.canvas.width=t*this.getCanvasScale(),this.canvas.height=e*this.getCanvasScale(),this.tmpCanvas.width=t,this.tmpCanvas.height=e,this.tmpCanvas.style.width=t+"px",this.tmpCanvas.style.height=e+"px",this.tmpCanvas.getContext("2d").setTransform(1,0,0,1,0,0)},t.prototype.drawError=function(){this.canvasContext.fillStyle="black",this.canvasContext.fillRect(0,0,this.hdr.width,this.hdr.height),this.canvasContext.strokeStyle="red",this.canvasContext.lineWidth=3,this.canvasContext.moveTo(0,0),this.canvasContext.lineTo(this.hdr.width,this.hdr.height),this.canvasContext.moveTo(0,this.hdr.height),this.canvasContext.lineTo(this.hdr.width,0),this.canvasContext.stroke()},t.prototype.handleError=function(t){this.loadErrorCause=t,this.hdr={width:this.gifImgElement.width,height:this.gifImgElement.height},this.frames=[],this.drawError()},t.prototype.doHdr=function(t){this.hdr=t,this.setSizes(this.hdr.width,this.hdr.height)},t.prototype.doGCE=function(t){this.pushFrame(),this.clear(),this.transparency=t.transparencyGiven?t.transparencyIndex:null,this.delay=t.delayTime,this.disposalMethod=t.disposalMethod},t.prototype.pushFrame=function(){this.frame&&(this.frames.push({data:this.frame.getImageData(0,0,this.hdr.width,this.hdr.height),delay:this.delay}),this.frameOffsets.push({x:0,y:0}))},t.prototype.doImg=function(t){var e=this;this.frame||(this.frame=this.tmpCanvas.getContext("2d"));var r=this.frames.length,n=t.lctFlag?t.lct:this.hdr.gct;r>0&&(3===this.lastDisposalMethod?null!==this.disposalRestoreFromIdx?this.frame.putImageData(frames[this.disposalRestoreFromIdx].data,0,0):this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height):this.disposalRestoreFromIdx=r-1,2===this.lastDisposalMethod&&this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height));var o=this.frame.getImageData(t.leftPos,t.topPos,t.width,t.height);t.pixels.forEach((function(t,r){t!==e.transparency&&(o.data[4*r+0]=n[t][0],o.data[4*r+1]=n[t][1],o.data[4*r+2]=n[t][2],o.data[4*r+3]=255)})),this.frame.putImageData(o,t.leftPos,t.topPos),this.ctxScaled||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.ctxScaled=!0),this.drawWhileLoading&&(this.canvasContext.drawImage(this.tmpCanvas,0,0),this.drawWhileLoading=this.options.autoPlay),this.lastImg=t},t.prototype.doNothing=function(){},t.prototype.withProgress=function(t){return function(e){t(e)}},t.prototype.getNextFrameNo=function(){var t=this.forward?1:-1;return(this.currentFrameIndex+t+this.frames.length)%this.frames.length},t.prototype.stepFrame=function(t){this.currentFrameIndex=this.currentFrameIndex+t,this.putFrame()},t.prototype.getCanvasScale=function(){return this.options.maxWidth&&this.hdr&&this.hdr.width>this.options.maxWidth?this.options.maxWidth/this.hdr.width:window.devicePixelRatio||1},t.prototype.play=function(){this.playing=!0,this.step()},t.prototype.pause=function(){this.playing=!1},t.prototype.isPlaying=function(){return this.playing},t.prototype.getCanvas=function(){return this.canvas},t.prototype.isLoading=function(){return this.loading},t.prototype.isReady=function(){return this.ready},t.prototype.isAutoPlay=function(){return this.options.autoPlay},t.prototype.getLength=function(){return this.frames.length},t.prototype.getCurrentFrame=function(){return this.currentFrameIndex},t.prototype.moveTo=function(t){this.currentFrameIndex=t,this.putFrame()},t.prototype.loadURL=function(t,e){var r=this;if(this.loadSetup(e)){var n=new XMLHttpRequest;n.open("GET",t,!0),"overrideMimeType"in n?n.overrideMimeType("text/plain; charset=x-user-defined"):"responseType"in n?n.responseType="arraybuffer":n.setRequestHeader("Accept-Charset","x-user-defined"),n.onloadstart=function(){r.initialized||r.init()},n.onload=function(){if(200===n.status){var t=n.response;t.toString().indexOf("ArrayBuffer")>0&&(t=new Uint8Array(t));var e=new o.SuperGifStream(t);setTimeout((function(){r.parseStream(e)}),0)}else r.handleError("xhr - response")},n.onerror=function(){r.handleError("xhr")},n.send()}},t.prototype.load=function(t){this.loadURL(this.gifImgElement.src,t)},t}();e._=i},92830:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.bitsToNum=function(t){return t.reduce((function(t,e){return 2*t+e}),0)},t.byteToBitArr=function(t){for(var e=[],r=7;r>=0;r--)e.push(!!(t&1<<r));return e},t.lzwDecode=function(t,e){for(var r,n,o=0,i=function(t){for(var r=0,n=0;n<t;n++)e.charCodeAt(o>>3)&1<<(7&o)&&(r|=1<<n),o++;return r},a=[],s=1<<t,u=s+1,c=t+1,f=[],l=function(){f=[],c=t+1;for(var e=0;e<s;e++)f[e]=[e];f[s]=[],f[u]=null};;)if(n=r,(r=i(c))!==s){if(r===u)break;if(r<f.length)n!==s&&f.push(f[n].concat(f[r][0]));else{if(r!==f.length)throw new Error("Invalid LZW code.");f.push(f[n].concat(f[n][0]))}a.push.apply(a,f[r]),f.length===1<<c&&c<12&&c++}else l();return a},t}();e.SuperGifUtils=r},91441:()=>{function t(t,r){if(t){if("string"==typeof t)return e(t,r);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?e(t,r):void 0}}function e(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function r(t){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r(t)}!function(n,o){"use strict";var i,a,s,u;function c(n,o,i,a,s){if([n,o,i,a].every((function(t){return Number.isFinite(t)}))){var u,c,l,h;if(4===(d=s,g=r(d),s="undefined"===g||null===d?[0]:"function"===g?[NaN]:"object"===g?"function"==typeof d[Symbol.iterator]?(v=d,function(t){if(Array.isArray(t))return e(t)}(v)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(v)||t(v)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()).map((function(t){var e=r(t);return"undefined"===e||null===t?0:"function"===e?NaN:"object"===e?b(t):m(t)})):[b(d)]:[m(d)]).length)u=w(s[0]),c=w(s[1]),l=w(s[2]),h=w(s[3]);else if(3===s.length)u=w(s[0]),c=w(s[1]),h=w(s[1]),l=w(s[2]);else if(2===s.length)u=w(s[0]),l=w(s[0]),c=w(s[1]),h=w(s[1]);else{if(1!==s.length)throw new RangeError("".concat(f(this)," ").concat(s.length," is not a valid size for radii sequence."));u=w(s[0]),c=w(s[0]),l=w(s[0]),h=w(s[0])}var p=[u,c,l,h],y=p.find((function(t){var e=t.x,r=t.y;return e<0||r<0}));if((null==y?void 0:y.x)<0?y.x:null==y||y.y,!p.some((function(t){var e=t.x,r=t.y;return!Number.isFinite(e)||!Number.isFinite(r)}))){if(y)throw new RangeError("".concat(f(this)," Radius value ").concat(y," is negative."));!function(e){var r=function(e,r){return function(t){if(Array.isArray(t))return t}(e)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,r)||t(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(e,4),n=r[0],o=r[1],s=r[2],u=r[3],c=[Math.abs(i)/(n.x+o.x),Math.abs(a)/(o.y+s.y),Math.abs(i)/(s.x+u.x),Math.abs(a)/(n.y+u.y)],f=Math.min.apply(Math,c);if(f<=1){var l,h=function(e,r){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=t(e))){n&&(e=n);var o=0,i=function(){};return{s:i,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,u=!1;return{s:function(){n=n.call(e)},n:function(){var t=n.next();return s=t.done,t},e:function(t){u=!0,a=t},f:function(){try{s||null==n.return||n.return()}finally{if(u)throw a}}}}(e);try{for(h.s();!(l=h.n()).done;){var p=l.value;p.x*=f,p.y*=f}}catch(t){h.e(t)}finally{h.f()}}}(p),i<0&&a<0?(this.moveTo(n-u.x,o),this.ellipse(n+i+c.x,o-c.y,c.x,c.y,0,1.5*-Math.PI,-Math.PI),this.ellipse(n+i+l.x,o+a+l.y,l.x,l.y,0,-Math.PI,-Math.PI/2),this.ellipse(n-h.x,o+a+h.y,h.x,h.y,0,-Math.PI/2,0),this.ellipse(n-u.x,o-u.y,u.x,u.y,0,0,-Math.PI/2)):i<0?(this.moveTo(n-u.x,o),this.ellipse(n+i+c.x,o+c.y,c.x,c.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(n+i+l.x,o+a-l.y,l.x,l.y,0,-Math.PI,1.5*-Math.PI,1),this.ellipse(n-h.x,o+a-h.y,h.x,h.y,0,Math.PI/2,0,1),this.ellipse(n-u.x,o+u.y,u.x,u.y,0,0,-Math.PI/2,1)):a<0?(this.moveTo(n+u.x,o),this.ellipse(n+i-c.x,o-c.y,c.x,c.y,0,Math.PI/2,0,1),this.ellipse(n+i-l.x,o+a+l.y,l.x,l.y,0,0,-Math.PI/2,1),this.ellipse(n+h.x,o+a+h.y,h.x,h.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(n+u.x,o-u.y,u.x,u.y,0,-Math.PI,1.5*-Math.PI,1)):(this.moveTo(n+u.x,o),this.ellipse(n+i-c.x,o+c.y,c.x,c.y,0,-Math.PI/2,0),this.ellipse(n+i-l.x,o+a-l.y,l.x,l.y,0,0,Math.PI/2),this.ellipse(n+h.x,o+a-h.y,h.x,h.y,0,Math.PI/2,Math.PI),this.ellipse(n+u.x,o+u.y,u.x,u.y,0,Math.PI,1.5*Math.PI)),this.closePath(),this.moveTo(n,o)}}var d,v,g;function b(t){return{x:t.x,y:t.y,z:t.z,w:t.w}}function m(t){return+t}function w(t){var e,r,n=m(t);return Number.isFinite(n)?{x:n,y:n}:Object(t)===t?{x:m(null!==(e=t.x)&&void 0!==e?e:0),y:m(null!==(r=t.y)&&void 0!==r?r:0)}:{x:NaN,y:NaN}}}function f(t){return"Failed to execute 'roundRect' on '".concat(function(t){return Object(t)===t&&t instanceof Path2D?"Path2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.CanvasRenderingContext2D)?"CanvasRenderingContext2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.OffscreenCanvasRenderingContext2D)?"OffscreenCanvasRenderingContext2D":(null==t?void 0:t.constructor.name)||t}(t),"':")}null!==(o=(n=Path2D.prototype).roundRect)&&void 0!==o||(n.roundRect=c),globalThis.CanvasRenderingContext2D&&(null!==(a=(i=globalThis.CanvasRenderingContext2D.prototype).roundRect)&&void 0!==a||(i.roundRect=c)),globalThis.OffscreenCanvasRenderingContext2D&&(null!==(u=(s=globalThis.OffscreenCanvasRenderingContext2D.prototype).roundRect)&&void 0!==u||(s.roundRect=c))}()},88965:(t,e,r)=>{"use strict";var n=r(34230),o=r(2854),i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not a function")}},52750:(t,e,r)=>{"use strict";var n=r(53924),o=r(2854),i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not a constructor")}},19814:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(34230),i=String,a=TypeError;t.exports=function(t){if("object"==n(t)||o(t))return t;throw a("Can't set "+i(t)+" as a prototype")}},86278:(t,e,r)=>{"use strict";var n=r(41398),o=r(64714),i=r(26337).f,a=n("unscopables"),s=Array.prototype;null==s[a]&&i(s,a,{configurable:!0,value:o(null)}),t.exports=function(t){s[a][t]=!0}},68279:(t,e,r)=>{"use strict";var n=r(32088).charAt;t.exports=function(t,e,r){return e+(r?n(t,e).length:1)}},89214:(t,e,r)=>{"use strict";var n=r(34973),o=TypeError;t.exports=function(t,e){if(n(e,t))return t;throw o("Incorrect invocation")}},96302:(t,e,r)=>{"use strict";var n=r(3196),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not an object")}},63956:t=>{"use strict";t.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},47698:(t,e,r)=>{"use strict";var n=r(13894);t.exports=n((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}}))},19548:(t,e,r)=>{"use strict";var n,o,i,a=r(63956),s=r(44244),u=r(54516),c=r(34230),f=r(3196),l=r(37058),h=r(98619),p=r(2854),y=r(81831),d=r(89592),v=r(55882),g=r(34973),b=r(40175),m=r(14776),w=r(41398),x=r(67025),k=r(43023),S=k.enforce,_=k.get,O=u.Int8Array,E=O&&O.prototype,A=u.Uint8ClampedArray,P=A&&A.prototype,j=O&&b(O),T=E&&b(E),M=Object.prototype,R=u.TypeError,I=w("toStringTag"),C=x("TYPED_ARRAY_TAG"),L="TypedArrayConstructor",D=a&&!!m&&"Opera"!==h(u.opera),B=!1,N={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},F={BigInt64Array:8,BigUint64Array:8},z=function(t){if(!f(t))return!1;var e=h(t);return l(N,e)||l(F,e)};for(n in N)(i=(o=u[n])&&o.prototype)?S(i)[L]=o:D=!1;for(n in F)(i=(o=u[n])&&o.prototype)&&(S(i)[L]=o);if((!D||!c(j)||j===Function.prototype)&&(j=function(){throw R("Incorrect invocation")},D))for(n in N)u[n]&&m(u[n],j);if((!D||!T||T===M)&&(T=j.prototype,D))for(n in N)u[n]&&m(u[n].prototype,T);if(D&&b(P)!==T&&m(P,T),s&&!l(T,I))for(n in B=!0,v(T,I,{configurable:!0,get:function(){return f(this)?this[C]:void 0}}),N)u[n]&&y(u[n],C,n);t.exports={NATIVE_ARRAY_BUFFER_VIEWS:D,TYPED_ARRAY_TAG:B&&C,aTypedArray:function(t){if(z(t))return t;throw R("Target is not a typed array")},aTypedArrayConstructor:function(t){if(c(t)&&(!m||g(j,t)))return t;throw R(p(t)+" is not a typed array constructor")},exportTypedArrayMethod:function(t,e,r,n){if(s){if(r)for(var o in N){var i=u[o];if(i&&l(i.prototype,t))try{delete i.prototype[t]}catch(r){try{i.prototype[t]=e}catch(t){}}}T[t]&&!r||d(T,t,r?e:D&&E[t]||e,n)}},exportTypedArrayStaticMethod:function(t,e,r){var n,o;if(s){if(m){if(r)for(n in N)if((o=u[n])&&l(o,t))try{delete o[t]}catch(t){}if(j[t]&&!r)return;try{return d(j,t,r?e:D&&j[t]||e)}catch(t){}}for(n in N)!(o=u[n])||o[t]&&!r||d(o,t,e)}},getTypedArrayConstructor:function t(e){var r=b(e);if(f(r)){var n=_(r);return n&&l(n,L)?n[L]:t(r)}},isView:function(t){if(!f(t))return!1;var e=h(t);return"DataView"===e||l(N,e)||l(F,e)},isTypedArray:z,TypedArray:j,TypedArrayPrototype:T}},25254:(t,e,r)=>{"use strict";var n=r(54516),o=r(76277),i=r(44244),a=r(63956),s=r(33385),u=r(81831),c=r(55882),f=r(82281),l=r(13894),h=r(89214),p=r(35206),y=r(6674),d=r(88821),v=r(53652),g=r(40175),b=r(14776),m=r(51019).f,w=r(47774),x=r(68020),k=r(81018),S=r(43023),_=s.PROPER,O=s.CONFIGURABLE,E="ArrayBuffer",A="DataView",P="prototype",j="Wrong index",T=S.getterFor(E),M=S.getterFor(A),R=S.set,I=n[E],C=I,L=C&&C[P],D=n[A],B=D&&D[P],N=Object.prototype,F=n.Array,z=n.RangeError,U=o(w),Y=o([].reverse),G=v.pack,H=v.unpack,W=function(t){return[255&t]},X=function(t){return[255&t,t>>8&255]},q=function(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]},V=function(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]},Q=function(t){return G(t,23,4)},K=function(t){return G(t,52,8)},J=function(t,e,r){c(t[P],e,{configurable:!0,get:function(){return r(this)[e]}})},Z=function(t,e,r,n){var o=M(t),i=d(r),a=!!n;if(i+e>o.byteLength)throw z(j);var s=o.bytes,u=i+o.byteOffset,c=x(s,u,u+e);return a?c:Y(c)},$=function(t,e,r,n,o,i){var a=M(t),s=d(r),u=n(+o),c=!!i;if(s+e>a.byteLength)throw z(j);for(var f=a.bytes,l=s+a.byteOffset,h=0;h<e;h++)f[l+h]=u[c?h:e-h-1]};if(a){var tt=_&&I.name!==E;if(l((function(){I(1)}))&&l((function(){new I(-1)}))&&!l((function(){return new I,new I(1.5),new I(NaN),1!=I.length||tt&&!O})))tt&&O&&u(I,"name",E);else{(C=function(t){return h(this,L),new I(d(t))})[P]=L;for(var et,rt=m(I),nt=0;rt.length>nt;)(et=rt[nt++])in C||u(C,et,I[et]);L.constructor=C}b&&g(B)!==N&&b(B,N);var ot=new D(new C(2)),it=o(B.setInt8);ot.setInt8(0,2147483648),ot.setInt8(1,2147483649),!ot.getInt8(0)&&ot.getInt8(1)||f(B,{setInt8:function(t,e){it(this,t,e<<24>>24)},setUint8:function(t,e){it(this,t,e<<24>>24)}},{unsafe:!0})}else L=(C=function(t){h(this,L);var e=d(t);R(this,{type:E,bytes:U(F(e),0),byteLength:e}),i||(this.byteLength=e,this.detached=!1)})[P],B=(D=function(t,e,r){h(this,B),h(t,L);var n=T(t),o=n.byteLength,a=p(e);if(a<0||a>o)throw z("Wrong offset");if(a+(r=void 0===r?o-a:y(r))>o)throw z("Wrong length");R(this,{type:A,buffer:t,byteLength:r,byteOffset:a,bytes:n.bytes}),i||(this.buffer=t,this.byteLength=r,this.byteOffset=a)})[P],i&&(J(C,"byteLength",T),J(D,"buffer",M),J(D,"byteLength",M),J(D,"byteOffset",M)),f(B,{getInt8:function(t){return Z(this,1,t)[0]<<24>>24},getUint8:function(t){return Z(this,1,t)[0]},getInt16:function(t){var e=Z(this,2,t,arguments.length>1&&arguments[1]);return(e[1]<<8|e[0])<<16>>16},getUint16:function(t){var e=Z(this,2,t,arguments.length>1&&arguments[1]);return e[1]<<8|e[0]},getInt32:function(t){return V(Z(this,4,t,arguments.length>1&&arguments[1]))},getUint32:function(t){return V(Z(this,4,t,arguments.length>1&&arguments[1]))>>>0},getFloat32:function(t){return H(Z(this,4,t,arguments.length>1&&arguments[1]),23)},getFloat64:function(t){return H(Z(this,8,t,arguments.length>1&&arguments[1]),52)},setInt8:function(t,e){$(this,1,t,W,e)},setUint8:function(t,e){$(this,1,t,W,e)},setInt16:function(t,e){$(this,2,t,X,e,arguments.length>2&&arguments[2])},setUint16:function(t,e){$(this,2,t,X,e,arguments.length>2&&arguments[2])},setInt32:function(t,e){$(this,4,t,q,e,arguments.length>2&&arguments[2])},setUint32:function(t,e){$(this,4,t,q,e,arguments.length>2&&arguments[2])},setFloat32:function(t,e){$(this,4,t,Q,e,arguments.length>2&&arguments[2])},setFloat64:function(t,e){$(this,8,t,K,e,arguments.length>2&&arguments[2])}});k(C,E),k(D,A),t.exports={ArrayBuffer:C,DataView:D}},92316:(t,e,r)=>{"use strict";var n=r(87706),o=r(59625),i=r(43716),a=r(8713),s=Math.min;t.exports=[].copyWithin||function(t,e){var r=n(this),u=i(r),c=o(t,u),f=o(e,u),l=arguments.length>2?arguments[2]:void 0,h=s((void 0===l?u:o(l,u))-f,u-c),p=1;for(f<c&&c<f+h&&(p=-1,f+=h-1,c+=h-1);h-- >0;)f in r?r[c]=r[f]:a(r,c),c+=p,f+=p;return r}},47774:(t,e,r)=>{"use strict";var n=r(87706),o=r(59625),i=r(43716);t.exports=function(t){for(var e=n(this),r=i(e),a=arguments.length,s=o(a>1?arguments[1]:void 0,r),u=a>2?arguments[2]:void 0,c=void 0===u?r:o(u,r);c>s;)e[s++]=t;return e}},39682:(t,e,r)=>{"use strict";var n=r(87265).forEach,o=r(39904)("forEach");t.exports=o?[].forEach:function(t){return n(this,t,arguments.length>1?arguments[1]:void 0)}},35040:(t,e,r)=>{"use strict";var n=r(43716);t.exports=function(t,e){for(var r=0,o=n(e),i=new t(o);o>r;)i[r]=e[r++];return i}},11956:(t,e,r)=>{"use strict";var n=r(29910),o=r(83264),i=r(87706),a=r(59306),s=r(201),u=r(53924),c=r(43716),f=r(80955),l=r(29946),h=r(1228),p=Array;t.exports=function(t){var e=i(t),r=u(this),y=arguments.length,d=y>1?arguments[1]:void 0,v=void 0!==d;v&&(d=n(d,y>2?arguments[2]:void 0));var g,b,m,w,x,k,S=h(e),_=0;if(!S||this===p&&s(S))for(g=c(e),b=r?new this(g):p(g);g>_;_++)k=v?d(e[_],_):e[_],f(b,_,k);else for(x=(w=l(e,S)).next,b=r?new this:[];!(m=o(x,w)).done;_++)k=v?a(w,d,[m.value,_],!0):m.value,f(b,_,k);return b.length=_,b}},60452:(t,e,r)=>{"use strict";var n=r(54721),o=r(59625),i=r(43716),a=function(t){return function(e,r,a){var s,u=n(e),c=i(u),f=o(a,c);if(t&&r!=r){for(;c>f;)if((s=u[f++])!=s)return!0}else for(;c>f;f++)if((t||f in u)&&u[f]===r)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},80728:(t,e,r)=>{"use strict";var n=r(29910),o=r(94015),i=r(87706),a=r(43716),s=function(t){var e=1==t;return function(r,s,u){for(var c,f=i(r),l=o(f),h=n(s,u),p=a(l);p-- >0;)if(h(c=l[p],p,f))switch(t){case 0:return c;case 1:return p}return e?-1:void 0}};t.exports={findLast:s(0),findLastIndex:s(1)}},87265:(t,e,r)=>{"use strict";var n=r(29910),o=r(76277),i=r(94015),a=r(87706),s=r(43716),u=r(29400),c=o([].push),f=function(t){var e=1==t,r=2==t,o=3==t,f=4==t,l=6==t,h=7==t,p=5==t||l;return function(y,d,v,g){for(var b,m,w=a(y),x=i(w),k=n(d,v),S=s(x),_=0,O=g||u,E=e?O(y,S):r||h?O(y,0):void 0;S>_;_++)if((p||_ in x)&&(m=k(b=x[_],_,w),t))if(e)E[_]=m;else if(m)switch(t){case 3:return!0;case 5:return b;case 6:return _;case 2:c(E,b)}else switch(t){case 4:return!1;case 7:c(E,b)}return l?-1:o||f?f:E}};t.exports={forEach:f(0),map:f(1),filter:f(2),some:f(3),every:f(4),find:f(5),findIndex:f(6),filterReject:f(7)}},85773:(t,e,r)=>{"use strict";var n=r(2090),o=r(54721),i=r(35206),a=r(43716),s=r(39904),u=Math.min,c=[].lastIndexOf,f=!!c&&1/[1].lastIndexOf(1,-0)<0,l=s("lastIndexOf"),h=f||!l;t.exports=h?function(t){if(f)return n(c,this,arguments)||0;var e=o(this),r=a(e),s=r-1;for(arguments.length>1&&(s=u(s,i(arguments[1]))),s<0&&(s=r+s);s>=0;s--)if(s in e&&e[s]===t)return s||0;return-1}:c},1309:(t,e,r)=>{"use strict";var n=r(13894),o=r(41398),i=r(49229),a=o("species");t.exports=function(t){return i>=51||!n((function(){var e=[];return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},39904:(t,e,r)=>{"use strict";var n=r(13894);t.exports=function(t,e){var r=[][t];return!!r&&n((function(){r.call(null,e||function(){return 1},1)}))}},73333:(t,e,r)=>{"use strict";var n=r(88965),o=r(87706),i=r(94015),a=r(43716),s=TypeError,u=function(t){return function(e,r,u,c){n(r);var f=o(e),l=i(f),h=a(f),p=t?h-1:0,y=t?-1:1;if(u<2)for(;;){if(p in l){c=l[p],p+=y;break}if(p+=y,t?p<0:h<=p)throw s("Reduce of empty array with no initial value")}for(;t?p>=0:h>p;p+=y)p in l&&(c=r(c,l[p],p,f));return c}};t.exports={left:u(!1),right:u(!0)}},60797:(t,e,r)=>{"use strict";var n=r(44244),o=r(85588),i=TypeError,a=Object.getOwnPropertyDescriptor,s=n&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(t){return t instanceof TypeError}}();t.exports=s?function(t,e){if(o(t)&&!a(t,"length").writable)throw i("Cannot set read only .length");return t.length=e}:function(t,e){return t.length=e}},68020:(t,e,r)=>{"use strict";var n=r(59625),o=r(43716),i=r(80955),a=Array,s=Math.max;t.exports=function(t,e,r){for(var u=o(t),c=n(e,u),f=n(void 0===r?u:r,u),l=a(s(f-c,0)),h=0;c<f;c++,h++)i(l,h,t[c]);return l.length=h,l}},52999:(t,e,r)=>{"use strict";var n=r(76277);t.exports=n([].slice)},53347:(t,e,r)=>{"use strict";var n=r(68020),o=Math.floor;t.exports=function t(e,r){var i=e.length,a=o(i/2);return i<8?function(t,e){for(var r,n,o=t.length,i=1;i<o;){for(n=i,r=t[i];n&&e(t[n-1],r)>0;)t[n]=t[--n];n!==i++&&(t[n]=r)}return t}(e,r):function(t,e,r,n){for(var o=e.length,i=r.length,a=0,s=0;a<o||s<i;)t[a+s]=a<o&&s<i?n(e[a],r[s])<=0?e[a++]:r[s++]:a<o?e[a++]:r[s++];return t}(e,t(n(e,0,a),r),t(n(e,a),r),r)}},88913:(t,e,r)=>{"use strict";var n=r(85588),o=r(53924),i=r(3196),a=r(41398)("species"),s=Array;t.exports=function(t){var e;return n(t)&&(e=t.constructor,(o(e)&&(e===s||n(e.prototype))||i(e)&&null===(e=e[a]))&&(e=void 0)),void 0===e?s:e}},29400:(t,e,r)=>{"use strict";var n=r(88913);t.exports=function(t,e){return new(n(t))(0===e?0:e)}},13729:(t,e,r)=>{"use strict";var n=r(43716);t.exports=function(t,e){for(var r=n(t),o=new e(r),i=0;i<r;i++)o[i]=t[r-i-1];return o}},33547:(t,e,r)=>{"use strict";var n=r(43716),o=r(35206),i=RangeError;t.exports=function(t,e,r,a){var s=n(t),u=o(r),c=u<0?s+u:u;if(c>=s||c<0)throw i("Incorrect index");for(var f=new e(s),l=0;l<s;l++)f[l]=l===c?a:t[l];return f}},19649:t=>{"use strict";for(var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",r={},n=0;n<66;n++)r[e.charAt(n)]=n;t.exports={itoc:e,ctoi:r}},59306:(t,e,r)=>{"use strict";var n=r(96302),o=r(77073);t.exports=function(t,e,r,i){try{return i?e(n(r)[0],r[1]):e(r)}catch(e){o(t,"throw",e)}}},36548:(t,e,r)=>{"use strict";var n=r(41398)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[n]=function(){return this},Array.from(a,(function(){throw 2}))}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var r=!1;try{var i={};i[n]=function(){return{next:function(){return{done:r=!0}}}},t(i)}catch(t){}return r}},31030:(t,e,r)=>{"use strict";var n=r(76277),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},98619:(t,e,r)=>{"use strict";var n=r(47775),o=r(34230),i=r(31030),a=r(41398)("toStringTag"),s=Object,u="Arguments"==i(function(){return arguments}());t.exports=n?i:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=s(t),a))?r:u?i(e):"Object"==(n=i(e))&&o(e.callee)?"Arguments":n}},78704:(t,e,r)=>{"use strict";var n=r(64714),o=r(55882),i=r(82281),a=r(29910),s=r(89214),u=r(18850),c=r(29429),f=r(99825),l=r(38351),h=r(3348),p=r(44244),y=r(8420).fastKey,d=r(43023),v=d.set,g=d.getterFor;t.exports={getConstructor:function(t,e,r,f){var l=t((function(t,o){s(t,h),v(t,{type:e,index:n(null),first:void 0,last:void 0,size:0}),p||(t.size=0),u(o)||c(o,t[f],{that:t,AS_ENTRIES:r})})),h=l.prototype,d=g(e),b=function(t,e,r){var n,o,i=d(t),a=m(t,e);return a?a.value=r:(i.last=a={index:o=y(e,!0),key:e,value:r,previous:n=i.last,next:void 0,removed:!1},i.first||(i.first=a),n&&(n.next=a),p?i.size++:t.size++,"F"!==o&&(i.index[o]=a)),t},m=function(t,e){var r,n=d(t),o=y(e);if("F"!==o)return n.index[o];for(r=n.first;r;r=r.next)if(r.key==e)return r};return i(h,{clear:function(){for(var t=d(this),e=t.index,r=t.first;r;)r.removed=!0,r.previous&&(r.previous=r.previous.next=void 0),delete e[r.index],r=r.next;t.first=t.last=void 0,p?t.size=0:this.size=0},delete:function(t){var e=this,r=d(e),n=m(e,t);if(n){var o=n.next,i=n.previous;delete r.index[n.index],n.removed=!0,i&&(i.next=o),o&&(o.previous=i),r.first==n&&(r.first=o),r.last==n&&(r.last=i),p?r.size--:e.size--}return!!n},forEach:function(t){for(var e,r=d(this),n=a(t,arguments.length>1?arguments[1]:void 0);e=e?e.next:r.first;)for(n(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!m(this,t)}}),i(h,r?{get:function(t){var e=m(this,t);return e&&e.value},set:function(t,e){return b(this,0===t?0:t,e)}}:{add:function(t){return b(this,t=0===t?0:t,t)}}),p&&o(h,"size",{configurable:!0,get:function(){return d(this).size}}),l},setStrong:function(t,e,r){var n=e+" Iterator",o=g(e),i=g(n);f(t,e,(function(t,e){v(this,{type:n,target:t,state:o(t),kind:e,last:void 0})}),(function(){for(var t=i(this),e=t.kind,r=t.last;r&&r.removed;)r=r.previous;return t.target&&(t.last=r=r?r.next:t.state.first)?l("keys"==e?r.key:"values"==e?r.value:[r.key,r.value],!1):(t.target=void 0,l(void 0,!0))}),r?"entries":"values",!r,!0),h(e)}}},66263:(t,e,r)=>{"use strict";var n=r(76277),o=r(82281),i=r(8420).getWeakData,a=r(89214),s=r(96302),u=r(18850),c=r(3196),f=r(29429),l=r(87265),h=r(37058),p=r(43023),y=p.set,d=p.getterFor,v=l.find,g=l.findIndex,b=n([].splice),m=0,w=function(t){return t.frozen||(t.frozen=new x)},x=function(){this.entries=[]},k=function(t,e){return v(t.entries,(function(t){return t[0]===e}))};x.prototype={get:function(t){var e=k(this,t);if(e)return e[1]},has:function(t){return!!k(this,t)},set:function(t,e){var r=k(this,t);r?r[1]=e:this.entries.push([t,e])},delete:function(t){var e=g(this.entries,(function(e){return e[0]===t}));return~e&&b(this.entries,e,1),!!~e}},t.exports={getConstructor:function(t,e,r,n){var l=t((function(t,o){a(t,p),y(t,{type:e,id:m++,frozen:void 0}),u(o)||f(o,t[n],{that:t,AS_ENTRIES:r})})),p=l.prototype,v=d(e),g=function(t,e,r){var n=v(t),o=i(s(e),!0);return!0===o?w(n).set(e,r):o[n.id]=r,t};return o(p,{delete:function(t){var e=v(this);if(!c(t))return!1;var r=i(t);return!0===r?w(e).delete(t):r&&h(r,e.id)&&delete r[e.id]},has:function(t){var e=v(this);if(!c(t))return!1;var r=i(t);return!0===r?w(e).has(t):r&&h(r,e.id)}}),o(p,r?{get:function(t){var e=v(this);if(c(t)){var r=i(t);return!0===r?w(e).get(t):r?r[e.id]:void 0}},set:function(t,e){return g(this,t,e)}}:{add:function(t){return g(this,t,!0)}}),l}}},48756:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(76277),a=r(82615),s=r(89592),u=r(8420),c=r(29429),f=r(89214),l=r(34230),h=r(18850),p=r(3196),y=r(13894),d=r(36548),v=r(81018),g=r(2993);t.exports=function(t,e,r){var b=-1!==t.indexOf("Map"),m=-1!==t.indexOf("Weak"),w=b?"set":"add",x=o[t],k=x&&x.prototype,S=x,_={},O=function(t){var e=i(k[t]);s(k,t,"add"==t?function(t){return e(this,0===t?0:t),this}:"delete"==t?function(t){return!(m&&!p(t))&&e(this,0===t?0:t)}:"get"==t?function(t){return m&&!p(t)?void 0:e(this,0===t?0:t)}:"has"==t?function(t){return!(m&&!p(t))&&e(this,0===t?0:t)}:function(t,r){return e(this,0===t?0:t,r),this})};if(a(t,!l(x)||!(m||k.forEach&&!y((function(){(new x).entries().next()})))))S=r.getConstructor(e,t,b,w),u.enable();else if(a(t,!0)){var E=new S,A=E[w](m?{}:-0,1)!=E,P=y((function(){E.has(1)})),j=d((function(t){new x(t)})),T=!m&&y((function(){for(var t=new x,e=5;e--;)t[w](e,e);return!t.has(-0)}));j||((S=e((function(t,e){f(t,k);var r=g(new x,t,S);return h(e)||c(e,r[w],{that:r,AS_ENTRIES:b}),r}))).prototype=k,k.constructor=S),(P||T)&&(O("delete"),O("has"),b&&O("get")),(T||A)&&O(w),m&&k.clear&&delete k.clear}return _[t]=S,n({global:!0,constructor:!0,forced:S!=x},_),v(S,t),m||r.setStrong(S,t,b),S}},79129:(t,e,r)=>{"use strict";var n=r(37058),o=r(16660),i=r(77872),a=r(26337);t.exports=function(t,e,r){for(var s=o(e),u=a.f,c=i.f,f=0;f<s.length;f++){var l=s[f];n(t,l)||r&&n(r,l)||u(t,l,c(e,l))}}},86018:(t,e,r)=>{"use strict";var n=r(41398)("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(r){try{return e[n]=!1,"/./"[t](e)}catch(t){}}return!1}},66336:(t,e,r)=>{"use strict";var n=r(13894);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},38439:(t,e,r)=>{"use strict";var n=r(76277),o=r(72191),i=r(18971),a=/"/g,s=n("".replace);t.exports=function(t,e,r,n){var u=i(o(t)),c="<"+e;return""!==r&&(c+=" "+r+'="'+s(i(n),a,""")+'"'),c+">"+u+"</"+e+">"}},38351:t=>{"use strict";t.exports=function(t,e){return{value:t,done:e}}},81831:(t,e,r)=>{"use strict";var n=r(44244),o=r(26337),i=r(30654);t.exports=n?function(t,e,r){return o.f(t,e,i(1,r))}:function(t,e,r){return t[e]=r,t}},30654:t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},80955:(t,e,r)=>{"use strict";var n=r(14748),o=r(26337),i=r(30654);t.exports=function(t,e,r){var a=n(e);a in t?o.f(t,a,i(0,r)):t[a]=r}},85833:(t,e,r)=>{"use strict";var n=r(76277),o=r(13894),i=r(86424).start,a=RangeError,s=isFinite,u=Math.abs,c=Date.prototype,f=c.toISOString,l=n(c.getTime),h=n(c.getUTCDate),p=n(c.getUTCFullYear),y=n(c.getUTCHours),d=n(c.getUTCMilliseconds),v=n(c.getUTCMinutes),g=n(c.getUTCMonth),b=n(c.getUTCSeconds);t.exports=o((function(){return"0385-07-25T07:06:39.999Z"!=f.call(new Date(-50000000000001))}))||!o((function(){f.call(new Date(NaN))}))?function(){if(!s(l(this)))throw a("Invalid time value");var t=this,e=p(t),r=d(t),n=e<0?"-":e>9999?"+":"";return n+i(u(e),n?6:4,0)+"-"+i(g(t)+1,2,0)+"-"+i(h(t),2,0)+"T"+i(y(t),2,0)+":"+i(v(t),2,0)+":"+i(b(t),2,0)+"."+i(r,3,0)+"Z"}:f},72473:(t,e,r)=>{"use strict";var n=r(96302),o=r(8661),i=TypeError;t.exports=function(t){if(n(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw i("Incorrect hint");return o(this,t)}},55882:(t,e,r)=>{"use strict";var n=r(74743),o=r(26337);t.exports=function(t,e,r){return r.get&&n(r.get,e,{getter:!0}),r.set&&n(r.set,e,{setter:!0}),o.f(t,e,r)}},89592:(t,e,r)=>{"use strict";var n=r(34230),o=r(26337),i=r(74743),a=r(16085);t.exports=function(t,e,r,s){s||(s={});var u=s.enumerable,c=void 0!==s.name?s.name:e;if(n(r)&&i(r,c,s),s.global)u?t[e]=r:a(e,r);else{try{s.unsafe?t[e]&&(u=!0):delete t[e]}catch(t){}u?t[e]=r:o.f(t,e,{value:r,enumerable:!1,configurable:!s.nonConfigurable,writable:!s.nonWritable})}return t}},82281:(t,e,r)=>{"use strict";var n=r(89592);t.exports=function(t,e,r){for(var o in e)n(t,o,e[o],r);return t}},16085:(t,e,r)=>{"use strict";var n=r(54516),o=Object.defineProperty;t.exports=function(t,e){try{o(n,t,{value:e,configurable:!0,writable:!0})}catch(r){n[t]=e}return e}},8713:(t,e,r)=>{"use strict";var n=r(2854),o=TypeError;t.exports=function(t,e){if(!delete t[e])throw o("Cannot delete property "+n(e)+" of "+n(t))}},44244:(t,e,r)=>{"use strict";var n=r(13894);t.exports=!n((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},94535:t=>{"use strict";function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},e(t)}var r="object"==("undefined"==typeof document?"undefined":e(document))&&document.all,n=void 0===r&&void 0!==r;t.exports={all:r,IS_HTMLDDA:n}},23791:(t,e,r)=>{"use strict";var n=r(54516),o=r(3196),i=n.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},97614:t=>{"use strict";var e=TypeError;t.exports=function(t){if(t>9007199254740991)throw e("Maximum allowed index exceeded");return t}},43115:t=>{"use strict";t.exports={IndexSizeError:{s:"INDEX_SIZE_ERR",c:1,m:1},DOMStringSizeError:{s:"DOMSTRING_SIZE_ERR",c:2,m:0},HierarchyRequestError:{s:"HIERARCHY_REQUEST_ERR",c:3,m:1},WrongDocumentError:{s:"WRONG_DOCUMENT_ERR",c:4,m:1},InvalidCharacterError:{s:"INVALID_CHARACTER_ERR",c:5,m:1},NoDataAllowedError:{s:"NO_DATA_ALLOWED_ERR",c:6,m:0},NoModificationAllowedError:{s:"NO_MODIFICATION_ALLOWED_ERR",c:7,m:1},NotFoundError:{s:"NOT_FOUND_ERR",c:8,m:1},NotSupportedError:{s:"NOT_SUPPORTED_ERR",c:9,m:1},InUseAttributeError:{s:"INUSE_ATTRIBUTE_ERR",c:10,m:1},InvalidStateError:{s:"INVALID_STATE_ERR",c:11,m:1},SyntaxError:{s:"SYNTAX_ERR",c:12,m:1},InvalidModificationError:{s:"INVALID_MODIFICATION_ERR",c:13,m:1},NamespaceError:{s:"NAMESPACE_ERR",c:14,m:1},InvalidAccessError:{s:"INVALID_ACCESS_ERR",c:15,m:1},ValidationError:{s:"VALIDATION_ERR",c:16,m:0},TypeMismatchError:{s:"TYPE_MISMATCH_ERR",c:17,m:1},SecurityError:{s:"SECURITY_ERR",c:18,m:1},NetworkError:{s:"NETWORK_ERR",c:19,m:1},AbortError:{s:"ABORT_ERR",c:20,m:1},URLMismatchError:{s:"URL_MISMATCH_ERR",c:21,m:1},QuotaExceededError:{s:"QUOTA_EXCEEDED_ERR",c:22,m:1},TimeoutError:{s:"TIMEOUT_ERR",c:23,m:1},InvalidNodeTypeError:{s:"INVALID_NODE_TYPE_ERR",c:24,m:1},DataCloneError:{s:"DATA_CLONE_ERR",c:25,m:1}}},63464:t=>{"use strict";t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},17666:(t,e,r)=>{"use strict";var n=r(23791)("span").classList,o=n&&n.constructor&&n.constructor.prototype;t.exports=o===Object.prototype?void 0:o},50419:(t,e,r)=>{"use strict";var n=r(83309).match(/firefox\/(\d+)/i);t.exports=!!n&&+n[1]},41822:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(9923),i=r(63241);t.exports=!o&&!i&&"object"==("undefined"==typeof window?"undefined":n(window))&&"object"==("undefined"==typeof document?"undefined":n(document))},50831:t=>{"use strict";t.exports="function"==typeof Bun&&Bun&&"string"==typeof Bun.version},9923:t=>{"use strict";function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},e(t)}t.exports="object"==("undefined"==typeof Deno?"undefined":e(Deno))&&Deno&&"object"==e(Deno.version)},72693:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/MSIE|Trident/.test(n)},47181:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/ipad|iphone|ipod/i.test(n)&&"undefined"!=typeof Pebble},31681:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)},63241:(t,e,r)=>{"use strict";var n=r(31030);t.exports="undefined"!=typeof process&&"process"==n(process)},82223:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/web0s(?!.*chrome)/i.test(n)},83309:t=>{"use strict";t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},49229:(t,e,r)=>{"use strict";var n,o,i=r(54516),a=r(83309),s=i.process,u=i.Deno,c=s&&s.versions||u&&u.version,f=c&&c.v8;f&&(o=(n=f.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},90602:(t,e,r)=>{"use strict";var n=r(83309).match(/AppleWebKit\/(\d+)\./);t.exports=!!n&&+n[1]},38117:(t,e,r)=>{"use strict";var n=r(54516);t.exports=function(t){return n[t].prototype}},62507:t=>{"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},51597:(t,e,r)=>{"use strict";var n=r(76277),o=Error,i=n("".replace),a=String(o("zxcasd").stack),s=/\n\s*at [^:]*:[^\n]*/,u=s.test(a);t.exports=function(t,e){if(u&&"string"==typeof t&&!o.prepareStackTrace)for(;e--;)t=i(t,s,"");return t}},93636:(t,e,r)=>{"use strict";var n=r(81831),o=r(51597),i=r(81842),a=Error.captureStackTrace;t.exports=function(t,e,r,s){i&&(a?a(t,e):n(t,"stack",o(r,s)))}},81842:(t,e,r)=>{"use strict";var n=r(13894),o=r(30654);t.exports=!n((function(){var t=Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",o(1,7)),7!==t.stack)}))},34019:(t,e,r)=>{"use strict";var n=r(44244),o=r(13894),i=r(96302),a=r(64714),s=r(91245),u=Error.prototype.toString,c=o((function(){if(n){var t=a(Object.defineProperty({},"name",{get:function(){return this===t}}));if("true"!==u.call(t))return!0}return"2: 1"!==u.call({message:1,name:2})||"Error"!==u.call({})}));t.exports=c?function(){var t=i(this),e=s(t.name,"Error"),r=s(t.message);return e?r?e+": "+r:e:r}:u},57330:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(54516),i=r(77872).f,a=r(81831),s=r(89592),u=r(16085),c=r(79129),f=r(82615);t.exports=function(t,e){var r,l,h,p,y,d=t.target,v=t.global,g=t.stat;if(r=v?o:g?o[d]||u(d,{}):(o[d]||{}).prototype)for(l in e){if(p=e[l],h=t.dontCallGetSet?(y=i(r,l))&&y.value:r[l],!f(v?l:d+(g?".":"#")+l,t.forced)&&void 0!==h){if(n(p)==n(h))continue;c(p,h)}(t.sham||h&&h.sham)&&a(p,"sham",!0),s(r,l,p,t)}}},13894:t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},22804:(t,e,r)=>{"use strict";r(75567);var n=r(15307),o=r(89592),i=r(56021),a=r(13894),s=r(41398),u=r(81831),c=s("species"),f=RegExp.prototype;t.exports=function(t,e,r,l){var h=s(t),p=!a((function(){var e={};return e[h]=function(){return 7},7!=""[t](e)})),y=p&&!a((function(){var e=!1,r=/a/;return"split"===t&&((r={}).constructor={},r.constructor[c]=function(){return r},r.flags="",r[h]=/./[h]),r.exec=function(){return e=!0,null},r[h](""),!e}));if(!p||!y||r){var d=n(/./[h]),v=e(h,""[t],(function(t,e,r,o,a){var s=n(t),u=e.exec;return u===i||u===f.exec?p&&!a?{done:!0,value:d(e,r,o)}:{done:!0,value:s(r,e,o)}:{done:!1}}));o(String.prototype,t,v[0]),o(f,h,v[1])}l&&u(f[h],"sham",!0)}},25790:(t,e,r)=>{"use strict";var n=r(85588),o=r(43716),i=r(97614),a=r(29910);t.exports=function t(e,r,s,u,c,f,l,h){for(var p,y=c,d=0,v=!!l&&a(l,h);d<u;)d in s&&(p=v?v(s[d],d,r):s[d],f>0&&n(p)?y=t(e,r,p,o(p),y,f-1)-1:(i(y+1),e[y]=p),y++),d++;return y}},46151:(t,e,r)=>{"use strict";var n=r(13894);t.exports=!n((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2090:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(4424),i=Function.prototype,a=i.apply,s=i.call;t.exports="object"==("undefined"==typeof Reflect?"undefined":n(Reflect))&&Reflect.apply||(o?s.bind(a):function(){return s.apply(a,arguments)})},29910:(t,e,r)=>{"use strict";var n=r(15307),o=r(88965),i=r(4424),a=n(n.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?a(t,e):function(){return t.apply(e,arguments)}}},4424:(t,e,r)=>{"use strict";var n=r(13894);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},80944:(t,e,r)=>{"use strict";var n=r(76277),o=r(88965),i=r(3196),a=r(37058),s=r(52999),u=r(4424),c=Function,f=n([].concat),l=n([].join),h={};t.exports=u?c.bind:function(t){var e=o(this),r=e.prototype,n=s(arguments,1),u=function(){var r=f(n,s(arguments));return this instanceof u?function(t,e,r){if(!a(h,e)){for(var n=[],o=0;o<e;o++)n[o]="a["+o+"]";h[e]=c("C,a","return new C("+l(n,",")+")")}return h[e](t,r)}(e,r.length,r):e.apply(t,r)};return i(r)&&(u.prototype=r),u}},83264:(t,e,r)=>{"use strict";var n=r(4424),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},33385:(t,e,r)=>{"use strict";var n=r(44244),o=r(37058),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,s=o(i,"name"),u=s&&"something"===function(){}.name,c=s&&(!n||n&&a(i,"name").configurable);t.exports={EXISTS:s,PROPER:u,CONFIGURABLE:c}},89894:(t,e,r)=>{"use strict";var n=r(76277),o=r(88965);t.exports=function(t,e,r){try{return n(o(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}}},15307:(t,e,r)=>{"use strict";var n=r(31030),o=r(76277);t.exports=function(t){if("Function"===n(t))return o(t)}},76277:(t,e,r)=>{"use strict";var n=r(4424),o=Function.prototype,i=o.call,a=n&&o.bind.bind(i,i);t.exports=n?a:function(t){return function(){return i.apply(t,arguments)}}},12546:(t,e,r)=>{"use strict";var n=r(54516),o=r(34230);t.exports=function(t,e){return arguments.length<2?(r=n[t],o(r)?r:void 0):n[t]&&n[t][e];var r}},1228:(t,e,r)=>{"use strict";var n=r(98619),o=r(16040),i=r(18850),a=r(53415),s=r(41398)("iterator");t.exports=function(t){if(!i(t))return o(t,s)||o(t,"@@iterator")||a[n(t)]}},29946:(t,e,r)=>{"use strict";var n=r(83264),o=r(88965),i=r(96302),a=r(2854),s=r(1228),u=TypeError;t.exports=function(t,e){var r=arguments.length<2?s(t):e;if(o(r))return i(n(r,t));throw u(a(t)+" is not iterable")}},10042:(t,e,r)=>{"use strict";var n=r(76277),o=r(85588),i=r(34230),a=r(31030),s=r(18971),u=n([].push);t.exports=function(t){if(i(t))return t;if(o(t)){for(var e=t.length,r=[],n=0;n<e;n++){var c=t[n];"string"==typeof c?u(r,c):"number"!=typeof c&&"Number"!=a(c)&&"String"!=a(c)||u(r,s(c))}var f=r.length,l=!0;return function(t,e){if(l)return l=!1,e;if(o(this))return e;for(var n=0;n<f;n++)if(r[n]===t)return e}}}},16040:(t,e,r)=>{"use strict";var n=r(88965),o=r(18850);t.exports=function(t,e){var r=t[e];return o(r)?void 0:n(r)}},42012:(t,e,r)=>{"use strict";var n=r(76277),o=r(87706),i=Math.floor,a=n("".charAt),s=n("".replace),u=n("".slice),c=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,f=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,e,r,n,l,h){var p=r+t.length,y=n.length,d=f;return void 0!==l&&(l=o(l),d=c),s(h,d,(function(o,s){var c;switch(a(s,0)){case"$":return"$";case"&":return t;case"`":return u(e,0,r);case"'":return u(e,p);case"<":c=l[u(s,1,-1)];break;default:var f=+s;if(0===f)return o;if(f>y){var h=i(f/10);return 0===h?o:h<=y?void 0===n[h-1]?a(s,1):n[h-1]+a(s,1):o}c=n[f-1]}return void 0===c?"":c}))}},54516:function(t,e,r){"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=function(t){return t&&t.Math==Math&&t};t.exports=o("object"==("undefined"==typeof globalThis?"undefined":n(globalThis))&&globalThis)||o("object"==("undefined"==typeof window?"undefined":n(window))&&window)||o("object"==("undefined"==typeof self?"undefined":n(self))&&self)||o("object"==(void 0===r.g?"undefined":n(r.g))&&r.g)||function(){return this}()||this||Function("return this")()},37058:(t,e,r)=>{"use strict";var n=r(76277),o=r(87706),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},42570:t=>{"use strict";t.exports={}},45471:t=>{"use strict";t.exports=function(t,e){try{1==arguments.length?console.error(t):console.error(t,e)}catch(t){}}},58970:(t,e,r)=>{"use strict";var n=r(12546);t.exports=n("document","documentElement")},77320:(t,e,r)=>{"use strict";var n=r(44244),o=r(13894),i=r(23791);t.exports=!n&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},53652:t=>{"use strict";var e=Array,r=Math.abs,n=Math.pow,o=Math.floor,i=Math.log,a=Math.LN2;t.exports={pack:function(t,s,u){var c,f,l,h=e(u),p=8*u-s-1,y=(1<<p)-1,d=y>>1,v=23===s?n(2,-24)-n(2,-77):0,g=t<0||0===t&&1/t<0?1:0,b=0;for((t=r(t))!=t||t===1/0?(f=t!=t?1:0,c=y):(c=o(i(t)/a),t*(l=n(2,-c))<1&&(c--,l*=2),(t+=c+d>=1?v/l:v*n(2,1-d))*l>=2&&(c++,l/=2),c+d>=y?(f=0,c=y):c+d>=1?(f=(t*l-1)*n(2,s),c+=d):(f=t*n(2,d-1)*n(2,s),c=0));s>=8;)h[b++]=255&f,f/=256,s-=8;for(c=c<<s|f,p+=s;p>0;)h[b++]=255&c,c/=256,p-=8;return h[--b]|=128*g,h},unpack:function(t,e){var r,o=t.length,i=8*o-e-1,a=(1<<i)-1,s=a>>1,u=i-7,c=o-1,f=t[c--],l=127&f;for(f>>=7;u>0;)l=256*l+t[c--],u-=8;for(r=l&(1<<-u)-1,l>>=-u,u+=e;u>0;)r=256*r+t[c--],u-=8;if(0===l)l=1-s;else{if(l===a)return r?NaN:f?-1/0:1/0;r+=n(2,e),l-=s}return(f?-1:1)*r*n(2,l-e)}}},94015:(t,e,r)=>{"use strict";var n=r(76277),o=r(13894),i=r(31030),a=Object,s=n("".split);t.exports=o((function(){return!a("z").propertyIsEnumerable(0)}))?function(t){return"String"==i(t)?s(t,""):a(t)}:a},2993:(t,e,r)=>{"use strict";var n=r(34230),o=r(3196),i=r(14776);t.exports=function(t,e,r){var a,s;return i&&n(a=e.constructor)&&a!==r&&o(s=a.prototype)&&s!==r.prototype&&i(t,s),t}},91683:(t,e,r)=>{"use strict";var n=r(76277),o=r(34230),i=r(64111),a=n(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return a(t)}),t.exports=i.inspectSource},89804:(t,e,r)=>{"use strict";var n=r(3196),o=r(81831);t.exports=function(t,e){n(e)&&"cause"in e&&o(t,"cause",e.cause)}},8420:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(57330),i=r(76277),a=r(42570),s=r(3196),u=r(37058),c=r(26337).f,f=r(51019),l=r(53990),h=r(54284),p=r(67025),y=r(46151),d=!1,v=p("meta"),g=0,b=function(t){c(t,v,{value:{objectID:"O"+g++,weakData:{}}})},m=t.exports={enable:function(){m.enable=function(){},d=!0;var t=f.f,e=i([].splice),r={};r[v]=1,t(r).length&&(f.f=function(r){for(var n=t(r),o=0,i=n.length;o<i;o++)if(n[o]===v){e(n,o,1);break}return n},o({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:l.f}))},fastKey:function(t,e){if(!s(t))return"symbol"==n(t)?t:("string"==typeof t?"S":"P")+t;if(!u(t,v)){if(!h(t))return"F";if(!e)return"E";b(t)}return t[v].objectID},getWeakData:function(t,e){if(!u(t,v)){if(!h(t))return!0;if(!e)return!1;b(t)}return t[v].weakData},onFreeze:function(t){return y&&d&&h(t)&&!u(t,v)&&b(t),t}};a[v]=!0},43023:(t,e,r)=>{"use strict";var n,o,i,a=r(82408),s=r(54516),u=r(3196),c=r(81831),f=r(37058),l=r(64111),h=r(96894),p=r(42570),y="Object already initialized",d=s.TypeError,v=s.WeakMap;if(a||l.state){var g=l.state||(l.state=new v);g.get=g.get,g.has=g.has,g.set=g.set,n=function(t,e){if(g.has(t))throw d(y);return e.facade=t,g.set(t,e),e},o=function(t){return g.get(t)||{}},i=function(t){return g.has(t)}}else{var b=h("state");p[b]=!0,n=function(t,e){if(f(t,b))throw d(y);return e.facade=t,c(t,b,e),e},o=function(t){return f(t,b)?t[b]:{}},i=function(t){return f(t,b)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(e){var r;if(!u(e)||(r=o(e)).type!==t)throw d("Incompatible receiver, "+t+" required");return r}}}},201:(t,e,r)=>{"use strict";var n=r(41398),o=r(53415),i=n("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},85588:(t,e,r)=>{"use strict";var n=r(31030);t.exports=Array.isArray||function(t){return"Array"==n(t)}},98074:(t,e,r)=>{"use strict";var n=r(98619);t.exports=function(t){var e=n(t);return"BigInt64Array"==e||"BigUint64Array"==e}},34230:(t,e,r)=>{"use strict";var n=r(94535),o=n.all;t.exports=n.IS_HTMLDDA?function(t){return"function"==typeof t||t===o}:function(t){return"function"==typeof t}},53924:(t,e,r)=>{"use strict";var n=r(76277),o=r(13894),i=r(34230),a=r(98619),s=r(12546),u=r(91683),c=function(){},f=[],l=s("Reflect","construct"),h=/^\s*(?:class|function)\b/,p=n(h.exec),y=!h.exec(c),d=function(t){if(!i(t))return!1;try{return l(c,f,t),!0}catch(t){return!1}},v=function(t){if(!i(t))return!1;switch(a(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return y||!!p(h,u(t))}catch(t){return!0}};v.sham=!0,t.exports=!l||o((function(){var t;return d(d.call)||!d(Object)||!d((function(){t=!0}))||t}))?v:d},32674:(t,e,r)=>{"use strict";var n=r(37058);t.exports=function(t){return void 0!==t&&(n(t,"value")||n(t,"writable"))}},82615:(t,e,r)=>{"use strict";var n=r(13894),o=r(34230),i=/#|\.prototype\./,a=function(t,e){var r=u[s(t)];return r==f||r!=c&&(o(e)?n(e):!!e)},s=a.normalize=function(t){return String(t).replace(i,".").toLowerCase()},u=a.data={},c=a.NATIVE="N",f=a.POLYFILL="P";t.exports=a},18057:(t,e,r)=>{"use strict";var n=r(3196),o=Math.floor;t.exports=Number.isInteger||function(t){return!n(t)&&isFinite(t)&&o(t)===t}},18850:t=>{"use strict";t.exports=function(t){return null==t}},3196:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(34230),i=r(94535),a=i.all;t.exports=i.IS_HTMLDDA?function(t){return"object"==n(t)?null!==t:o(t)||t===a}:function(t){return"object"==n(t)?null!==t:o(t)}},43310:t=>{"use strict";t.exports=!1},15076:(t,e,r)=>{"use strict";var n=r(3196),o=r(31030),i=r(41398)("match");t.exports=function(t){var e;return n(t)&&(void 0!==(e=t[i])?!!e:"RegExp"==o(t))}},45961:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(12546),i=r(34230),a=r(34973),s=r(88477),u=Object;t.exports=s?function(t){return"symbol"==n(t)}:function(t){var e=o("Symbol");return i(e)&&a(e.prototype,u(t))}},29429:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(29910),i=r(83264),a=r(96302),s=r(2854),u=r(201),c=r(43716),f=r(34973),l=r(29946),h=r(1228),p=r(77073),y=TypeError,d=function(t,e){this.stopped=t,this.result=e},v=d.prototype;t.exports=function(t,e,r){var g,b,m,w,x,k,S,_=r&&r.that,O=!(!r||!r.AS_ENTRIES),E=!(!r||!r.IS_RECORD),A=!(!r||!r.IS_ITERATOR),P=!(!r||!r.INTERRUPTED),j=o(e,_),T=function(t){return g&&p(g,"normal",t),new d(!0,t)},M=function(t){return O?(a(t),P?j(t[0],t[1],T):j(t[0],t[1])):P?j(t,T):j(t)};if(E)g=t.iterator;else if(A)g=t;else{if(!(b=h(t)))throw y(s(t)+" is not iterable");if(u(b)){for(m=0,w=c(t);w>m;m++)if((x=M(t[m]))&&f(v,x))return x;return new d(!1)}g=l(t,b)}for(k=E?t.next:g.next;!(S=i(k,g)).done;){try{x=M(S.value)}catch(t){p(g,"throw",t)}if("object"==n(x)&&x&&f(v,x))return x}return new d(!1)}},77073:(t,e,r)=>{"use strict";var n=r(83264),o=r(96302),i=r(16040);t.exports=function(t,e,r){var a,s;o(t);try{if(!(a=i(t,"return"))){if("throw"===e)throw r;return r}a=n(a,t)}catch(t){s=!0,a=t}if("throw"===e)throw r;if(s)throw a;return o(a),r}},91740:(t,e,r)=>{"use strict";var n=r(32213).IteratorPrototype,o=r(64714),i=r(30654),a=r(81018),s=r(53415),u=function(){return this};t.exports=function(t,e,r,c){var f=e+" Iterator";return t.prototype=o(n,{next:i(+!c,r)}),a(t,f,!1,!0),s[f]=u,t}},99825:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(43310),a=r(33385),s=r(34230),u=r(91740),c=r(40175),f=r(14776),l=r(81018),h=r(81831),p=r(89592),y=r(41398),d=r(53415),v=r(32213),g=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,w=v.BUGGY_SAFARI_ITERATORS,x=y("iterator"),k="keys",S="values",_="entries",O=function(){return this};t.exports=function(t,e,r,a,y,v,E){u(r,e,a);var A,P,j,T=function(t){if(t===y&&L)return L;if(!w&&t in I)return I[t];switch(t){case k:case S:case _:return function(){return new r(this,t)}}return function(){return new r(this)}},M=e+" Iterator",R=!1,I=t.prototype,C=I[x]||I["@@iterator"]||y&&I[y],L=!w&&C||T(y),D="Array"==e&&I.entries||C;if(D&&(A=c(D.call(new t)))!==Object.prototype&&A.next&&(i||c(A)===m||(f?f(A,m):s(A[x])||p(A,x,O)),l(A,M,!0,!0),i&&(d[M]=O)),g&&y==S&&C&&C.name!==S&&(!i&&b?h(I,"name",S):(R=!0,L=function(){return o(C,this)})),y)if(P={values:T(S),keys:v?L:T(k),entries:T(_)},E)for(j in P)(w||R||!(j in I))&&p(I,j,P[j]);else n({target:e,proto:!0,forced:w||R},P);return i&&!E||I[x]===L||p(I,x,L,{name:y}),d[e]=L,P}},32213:(t,e,r)=>{"use strict";var n,o,i,a=r(13894),s=r(34230),u=r(3196),c=r(64714),f=r(40175),l=r(89592),h=r(41398),p=r(43310),y=h("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(o=f(f(i)))!==Object.prototype&&(n=o):d=!0),!u(n)||a((function(){var t={};return n[y].call(t)!==t}))?n={}:p&&(n=c(n)),s(n[y])||l(n,y,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:d}},53415:t=>{"use strict";t.exports={}},43716:(t,e,r)=>{"use strict";var n=r(6674);t.exports=function(t){return n(t.length)}},74743:(t,e,r)=>{"use strict";var n=r(76277),o=r(13894),i=r(34230),a=r(37058),s=r(44244),u=r(33385).CONFIGURABLE,c=r(91683),f=r(43023),l=f.enforce,h=f.get,p=String,y=Object.defineProperty,d=n("".slice),v=n("".replace),g=n([].join),b=s&&!o((function(){return 8!==y((function(){}),"length",{value:8}).length})),m=String(String).split("String"),w=t.exports=function(t,e,r){"Symbol("===d(p(e),0,7)&&(e="["+v(p(e),/^Symbol\(([^)]*)\)/,"$1")+"]"),r&&r.getter&&(e="get "+e),r&&r.setter&&(e="set "+e),(!a(t,"name")||u&&t.name!==e)&&(s?y(t,"name",{value:e,configurable:!0}):t.name=e),b&&r&&a(r,"arity")&&t.length!==r.arity&&y(t,"length",{value:r.arity});try{r&&a(r,"constructor")&&r.constructor?s&&y(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var n=l(t);return a(n,"source")||(n.source=g(m,"string"==typeof e?e:"")),t};Function.prototype.toString=w((function(){return i(this)&&h(this).source||c(this)}),"toString")},6482:(t,e,r)=>{"use strict";var n=r(76277),o=Map.prototype;t.exports={Map,set:n(o.set),get:n(o.get),has:n(o.has),remove:n(o.delete),proto:o}},45446:t=>{"use strict";var e=Math.expm1,r=Math.exp;t.exports=!e||e(10)>22025.465794806718||e(10)<22025.465794806718||-2e-17!=e(-2e-17)?function(t){var e=+t;return 0==e?e:e>-1e-6&&e<1e-6?e+e*e/2:r(e)-1}:e},49281:(t,e,r)=>{"use strict";var n=r(54059),o=Math.abs,i=Math.pow,a=i(2,-52),s=i(2,-23),u=i(2,127)*(2-s),c=i(2,-126);t.exports=Math.fround||function(t){var e,r,i=+t,f=o(i),l=n(i);return f<c?l*function(t){return t+1/a-1/a}(f/c/s)*c*s:(r=(e=(1+s/a)*f)-(e-f))>u||r!=r?l*(1/0):l*r}},36200:t=>{"use strict";var e=Math.log,r=Math.LOG10E;t.exports=Math.log10||function(t){return e(t)*r}},43611:t=>{"use strict";var e=Math.log;t.exports=Math.log1p||function(t){var r=+t;return r>-1e-8&&r<1e-8?r-r*r/2:e(1+r)}},54059:t=>{"use strict";t.exports=Math.sign||function(t){var e=+t;return 0==e||e!=e?e:e<0?-1:1}},78066:t=>{"use strict";var e=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?r:e)(n)}},54653:(t,e,r)=>{"use strict";var n,o,i,a,s,u=r(54516),c=r(29910),f=r(77872).f,l=r(33394).set,h=r(7822),p=r(31681),y=r(47181),d=r(82223),v=r(63241),g=u.MutationObserver||u.WebKitMutationObserver,b=u.document,m=u.process,w=u.Promise,x=f(u,"queueMicrotask"),k=x&&x.value;if(!k){var S=new h,_=function(){var t,e;for(v&&(t=m.domain)&&t.exit();e=S.get();)try{e()}catch(t){throw S.head&&n(),t}t&&t.enter()};p||v||d||!g||!b?!y&&w&&w.resolve?((a=w.resolve(void 0)).constructor=w,s=c(a.then,a),n=function(){s(_)}):v?n=function(){m.nextTick(_)}:(l=c(l,u),n=function(){l(_)}):(o=!0,i=b.createTextNode(""),new g(_).observe(i,{characterData:!0}),n=function(){i.data=o=!o}),k=function(t){S.head||n(),S.add(t)}}t.exports=k},82487:(t,e,r)=>{"use strict";var n=r(88965),o=TypeError,i=function(t){var e,r;this.promise=new t((function(t,n){if(void 0!==e||void 0!==r)throw o("Bad Promise constructor");e=t,r=n})),this.resolve=n(e),this.reject=n(r)};t.exports.f=function(t){return new i(t)}},91245:(t,e,r)=>{"use strict";var n=r(18971);t.exports=function(t,e){return void 0===t?arguments.length<2?"":e:n(t)}},50134:(t,e,r)=>{"use strict";var n=r(15076),o=TypeError;t.exports=function(t){if(n(t))throw o("The method doesn't accept regular expressions");return t}},23034:(t,e,r)=>{"use strict";var n=r(54516).isFinite;t.exports=Number.isFinite||function(t){return"number"==typeof t&&n(t)}},29818:(t,e,r)=>{"use strict";var n=r(54516),o=r(13894),i=r(76277),a=r(18971),s=r(23688).trim,u=r(79577),c=i("".charAt),f=n.parseFloat,l=n.Symbol,h=l&&l.iterator,p=1/f(u+"-0")!=-1/0||h&&!o((function(){f(Object(h))}));t.exports=p?function(t){var e=s(a(t)),r=f(e);return 0===r&&"-"==c(e,0)?-0:r}:f},20361:(t,e,r)=>{"use strict";var n=r(54516),o=r(13894),i=r(76277),a=r(18971),s=r(23688).trim,u=r(79577),c=n.parseInt,f=n.Symbol,l=f&&f.iterator,h=/^[+-]?0x/i,p=i(h.exec),y=8!==c(u+"08")||22!==c(u+"0x16")||l&&!o((function(){c(Object(l))}));t.exports=y?function(t,e){var r=s(a(t));return c(r,e>>>0||(p(h,r)?16:10))}:c},70168:(t,e,r)=>{"use strict";var n=r(44244),o=r(76277),i=r(83264),a=r(13894),s=r(68201),u=r(78586),c=r(12028),f=r(87706),l=r(94015),h=Object.assign,p=Object.defineProperty,y=o([].concat);t.exports=!h||a((function(){if(n&&1!==h({b:1},h(p({},"a",{enumerable:!0,get:function(){p(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},r=Symbol(),o="abcdefghijklmnopqrst";return t[r]=7,o.split("").forEach((function(t){e[t]=t})),7!=h({},t)[r]||s(h({},e)).join("")!=o}))?function(t,e){for(var r=f(t),o=arguments.length,a=1,h=u.f,p=c.f;o>a;)for(var d,v=l(arguments[a++]),g=h?y(s(v),h(v)):s(v),b=g.length,m=0;b>m;)d=g[m++],n&&!i(p,v,d)||(r[d]=v[d]);return r}:h},64714:(t,e,r)=>{"use strict";var n,o=r(96302),i=r(68068),a=r(62507),s=r(42570),u=r(58970),c=r(23791),f=r(96894),l="prototype",h="script",p=f("IE_PROTO"),y=function(){},d=function(t){return"<"+h+">"+t+"</"+h+">"},v=function(t){t.write(d("")),t.close();var e=t.parentWindow.Object;return t=null,e},g=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;g="undefined"!=typeof document?document.domain&&n?v(n):(e=c("iframe"),r="java"+h+":",e.style.display="none",u.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(d("document.F=Object")),t.close(),t.F):v(n);for(var o=a.length;o--;)delete g[l][a[o]];return g()};s[p]=!0,t.exports=Object.create||function(t,e){var r;return null!==t?(y[l]=o(t),r=new y,y[l]=null,r[p]=t):r=g(),void 0===e?r:i.f(r,e)}},68068:(t,e,r)=>{"use strict";var n=r(44244),o=r(29128),i=r(26337),a=r(96302),s=r(54721),u=r(68201);e.f=n&&!o?Object.defineProperties:function(t,e){a(t);for(var r,n=s(e),o=u(e),c=o.length,f=0;c>f;)i.f(t,r=o[f++],n[r]);return t}},26337:(t,e,r)=>{"use strict";var n=r(44244),o=r(77320),i=r(29128),a=r(96302),s=r(14748),u=TypeError,c=Object.defineProperty,f=Object.getOwnPropertyDescriptor,l="enumerable",h="configurable",p="writable";e.f=n?i?function(t,e,r){if(a(t),e=s(e),a(r),"function"==typeof t&&"prototype"===e&&"value"in r&&p in r&&!r[p]){var n=f(t,e);n&&n[p]&&(t[e]=r.value,r={configurable:h in r?r[h]:n[h],enumerable:l in r?r[l]:n[l],writable:!1})}return c(t,e,r)}:c:function(t,e,r){if(a(t),e=s(e),a(r),o)try{return c(t,e,r)}catch(t){}if("get"in r||"set"in r)throw u("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},77872:(t,e,r)=>{"use strict";var n=r(44244),o=r(83264),i=r(12028),a=r(30654),s=r(54721),u=r(14748),c=r(37058),f=r(77320),l=Object.getOwnPropertyDescriptor;e.f=n?l:function(t,e){if(t=s(t),e=u(e),f)try{return l(t,e)}catch(t){}if(c(t,e))return a(!o(i.f,t,e),t[e])}},53990:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(31030),i=r(54721),a=r(51019).f,s=r(68020),u="object"==("undefined"==typeof window?"undefined":n(window))&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return u&&"Window"==o(t)?function(t){try{return a(t)}catch(t){return s(u)}}(t):a(i(t))}},51019:(t,e,r)=>{"use strict";var n=r(26406),o=r(62507).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},78586:(t,e)=>{"use strict";e.f=Object.getOwnPropertySymbols},40175:(t,e,r)=>{"use strict";var n=r(37058),o=r(34230),i=r(87706),a=r(96894),s=r(66336),u=a("IE_PROTO"),c=Object,f=c.prototype;t.exports=s?c.getPrototypeOf:function(t){var e=i(t);if(n(e,u))return e[u];var r=e.constructor;return o(r)&&e instanceof r?r.prototype:e instanceof c?f:null}},54284:(t,e,r)=>{"use strict";var n=r(13894),o=r(3196),i=r(31030),a=r(47698),s=Object.isExtensible,u=n((function(){s(1)}));t.exports=u||a?function(t){return!!o(t)&&(!a||"ArrayBuffer"!=i(t))&&(!s||s(t))}:s},34973:(t,e,r)=>{"use strict";var n=r(76277);t.exports=n({}.isPrototypeOf)},26406:(t,e,r)=>{"use strict";var n=r(76277),o=r(37058),i=r(54721),a=r(60452).indexOf,s=r(42570),u=n([].push);t.exports=function(t,e){var r,n=i(t),c=0,f=[];for(r in n)!o(s,r)&&o(n,r)&&u(f,r);for(;e.length>c;)o(n,r=e[c++])&&(~a(f,r)||u(f,r));return f}},68201:(t,e,r)=>{"use strict";var n=r(26406),o=r(62507);t.exports=Object.keys||function(t){return n(t,o)}},12028:(t,e)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);e.f=o?function(t){var e=n(this,t);return!!e&&e.enumerable}:r},54046:(t,e,r)=>{"use strict";var n=r(43310),o=r(54516),i=r(13894),a=r(90602);t.exports=n||!i((function(){if(!(a&&a<535)){var t=Math.random();__defineSetter__.call(null,t,(function(){})),delete o[t]}}))},14776:(t,e,r)=>{"use strict";var n=r(89894),o=r(96302),i=r(19814);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=n(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return o(r),i(n),e?t(r,n):r.__proto__=n,r}}():void 0)},19602:(t,e,r)=>{"use strict";var n=r(44244),o=r(13894),i=r(76277),a=r(40175),s=r(68201),u=r(54721),c=i(r(12028).f),f=i([].push),l=n&&o((function(){var t=Object.create(null);return t[2]=2,!c(t,2)})),h=function(t){return function(e){for(var r,o=u(e),i=s(o),h=l&&null===a(o),p=i.length,y=0,d=[];p>y;)r=i[y++],n&&!(h?r in o:c(o,r))||f(d,t?[r,o[r]]:o[r]);return d}};t.exports={entries:h(!0),values:h(!1)}},5719:(t,e,r)=>{"use strict";var n=r(47775),o=r(98619);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},8661:(t,e,r)=>{"use strict";var n=r(83264),o=r(34230),i=r(3196),a=TypeError;t.exports=function(t,e){var r,s;if("string"===e&&o(r=t.toString)&&!i(s=n(r,t)))return s;if(o(r=t.valueOf)&&!i(s=n(r,t)))return s;if("string"!==e&&o(r=t.toString)&&!i(s=n(r,t)))return s;throw a("Can't convert object to primitive value")}},16660:(t,e,r)=>{"use strict";var n=r(12546),o=r(76277),i=r(51019),a=r(78586),s=r(96302),u=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var e=i.f(s(t)),r=a.f;return r?u(e,r(t)):e}},1612:(t,e,r)=>{"use strict";var n=r(54516);t.exports=n},93798:t=>{"use strict";t.exports=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}}},86177:(t,e,r)=>{"use strict";var n=r(54516),o=r(32522),i=r(34230),a=r(82615),s=r(91683),u=r(41398),c=r(41822),f=r(9923),l=r(43310),h=r(49229),p=o&&o.prototype,y=u("species"),d=!1,v=i(n.PromiseRejectionEvent),g=a("Promise",(function(){var t=s(o),e=t!==String(o);if(!e&&66===h)return!0;if(l&&(!p.catch||!p.finally))return!0;if(!h||h<51||!/native code/.test(t)){var r=new o((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};if((r.constructor={})[y]=n,!(d=r.then((function(){}))instanceof n))return!0}return!e&&(c||f)&&!v}));t.exports={CONSTRUCTOR:g,REJECTION_EVENT:v,SUBCLASSING:d}},32522:(t,e,r)=>{"use strict";var n=r(54516);t.exports=n.Promise},37494:(t,e,r)=>{"use strict";var n=r(96302),o=r(3196),i=r(82487);t.exports=function(t,e){if(n(t),o(e)&&e.constructor===t)return e;var r=i.f(t);return(0,r.resolve)(e),r.promise}},48006:(t,e,r)=>{"use strict";var n=r(32522),o=r(36548),i=r(86177).CONSTRUCTOR;t.exports=i||!o((function(t){n.all(t).then(void 0,(function(){}))}))},60492:(t,e,r)=>{"use strict";var n=r(26337).f;t.exports=function(t,e,r){r in t||n(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})}},7822:t=>{"use strict";var e=function(){this.head=null,this.tail=null};e.prototype={add:function(t){var e={item:t,next:null},r=this.tail;r?r.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}},t.exports=e},10510:(t,e,r)=>{"use strict";var n=r(83264),o=r(96302),i=r(34230),a=r(31030),s=r(56021),u=TypeError;t.exports=function(t,e){var r=t.exec;if(i(r)){var c=n(r,t,e);return null!==c&&o(c),c}if("RegExp"===a(t))return n(s,t,e);throw u("RegExp#exec called on incompatible receiver")}},56021:(t,e,r)=>{"use strict";var n,o,i=r(83264),a=r(76277),s=r(18971),u=r(53941),c=r(25645),f=r(38365),l=r(64714),h=r(43023).get,p=r(51415),y=r(56002),d=f("native-string-replace",String.prototype.replace),v=RegExp.prototype.exec,g=v,b=a("".charAt),m=a("".indexOf),w=a("".replace),x=a("".slice),k=(o=/b*/g,i(v,n=/a/,"a"),i(v,o,"a"),0!==n.lastIndex||0!==o.lastIndex),S=c.BROKEN_CARET,_=void 0!==/()??/.exec("")[1];(k||_||S||p||y)&&(g=function(t){var e,r,n,o,a,c,f,p=this,y=h(p),O=s(t),E=y.raw;if(E)return E.lastIndex=p.lastIndex,e=i(g,E,O),p.lastIndex=E.lastIndex,e;var A=y.groups,P=S&&p.sticky,j=i(u,p),T=p.source,M=0,R=O;if(P&&(j=w(j,"y",""),-1===m(j,"g")&&(j+="g"),R=x(O,p.lastIndex),p.lastIndex>0&&(!p.multiline||p.multiline&&"\n"!==b(O,p.lastIndex-1))&&(T="(?: "+T+")",R=" "+R,M++),r=new RegExp("^(?:"+T+")",j)),_&&(r=new RegExp("^"+T+"$(?!\\s)",j)),k&&(n=p.lastIndex),o=i(v,P?r:p,R),P?o?(o.input=x(o.input,M),o[0]=x(o[0],M),o.index=p.lastIndex,p.lastIndex+=o[0].length):p.lastIndex=0:k&&o&&(p.lastIndex=p.global?o.index+o[0].length:n),_&&o&&o.length>1&&i(d,o[0],r,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(o[a]=void 0)})),o&&A)for(o.groups=c=l(null),a=0;a<A.length;a++)c[(f=A[a])[0]]=o[f[1]];return o}),t.exports=g},53941:(t,e,r)=>{"use strict";var n=r(96302);t.exports=function(){var t=n(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e}},16503:(t,e,r)=>{"use strict";var n=r(83264),o=r(37058),i=r(34973),a=r(53941),s=RegExp.prototype;t.exports=function(t){var e=t.flags;return void 0!==e||"flags"in s||o(t,"flags")||!i(s,t)?e:n(a,t)}},25645:(t,e,r)=>{"use strict";var n=r(13894),o=r(54516).RegExp,i=n((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),a=i||n((function(){return!o("a","y").sticky})),s=i||n((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}));t.exports={BROKEN_CARET:s,MISSED_STICKY:a,UNSUPPORTED_Y:i}},51415:(t,e,r)=>{"use strict";var n=r(13894),o=r(54516).RegExp;t.exports=n((function(){var t=o(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)}))},56002:(t,e,r)=>{"use strict";var n=r(13894),o=r(54516).RegExp;t.exports=n((function(){var t=o("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}))},72191:(t,e,r)=>{"use strict";var n=r(18850),o=TypeError;t.exports=function(t){if(n(t))throw o("Can't call method on "+t);return t}},79094:t=>{"use strict";t.exports=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}},74710:(t,e,r)=>{"use strict";var n,o=r(54516),i=r(2090),a=r(34230),s=r(50831),u=r(83309),c=r(52999),f=r(10645),l=o.Function,h=/MSIE .\./.test(u)||s&&((n=o.Bun.version.split(".")).length<3||0==n[0]&&(n[1]<3||3==n[1]&&0==n[2]));t.exports=function(t,e){var r=e?2:1;return h?function(n,o){var s=f(arguments.length,1)>r,u=a(n)?n:l(n),h=s?c(arguments,r):[],p=s?function(){i(u,this,h)}:u;return e?t(p,o):t(p)}:t}},49164:(t,e,r)=>{"use strict";var n=r(76277),o=Set.prototype;t.exports={Set,add:n(o.add),has:n(o.has),remove:n(o.delete),proto:o}},3348:(t,e,r)=>{"use strict";var n=r(12546),o=r(55882),i=r(41398),a=r(44244),s=i("species");t.exports=function(t){var e=n(t);a&&e&&!e[s]&&o(e,s,{configurable:!0,get:function(){return this}})}},81018:(t,e,r)=>{"use strict";var n=r(26337).f,o=r(37058),i=r(41398)("toStringTag");t.exports=function(t,e,r){t&&!r&&(t=t.prototype),t&&!o(t,i)&&n(t,i,{configurable:!0,value:e})}},96894:(t,e,r)=>{"use strict";var n=r(38365),o=r(67025),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},64111:(t,e,r)=>{"use strict";var n=r(54516),o=r(16085),i="__core-js_shared__",a=n[i]||o(i,{});t.exports=a},38365:(t,e,r)=>{"use strict";var n=r(43310),o=r(64111);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.32.0",mode:n?"pure":"global",copyright:"© 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.32.0/LICENSE",source:"https://github.com/zloirock/core-js"})},72976:(t,e,r)=>{"use strict";var n=r(96302),o=r(52750),i=r(18850),a=r(41398)("species");t.exports=function(t,e){var r,s=n(t).constructor;return void 0===s||i(r=n(s)[a])?e:o(r)}},21839:(t,e,r)=>{"use strict";var n=r(13894);t.exports=function(t){return n((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}))}},32088:(t,e,r)=>{"use strict";var n=r(76277),o=r(35206),i=r(18971),a=r(72191),s=n("".charAt),u=n("".charCodeAt),c=n("".slice),f=function(t){return function(e,r){var n,f,l=i(a(e)),h=o(r),p=l.length;return h<0||h>=p?t?"":void 0:(n=u(l,h))<55296||n>56319||h+1===p||(f=u(l,h+1))<56320||f>57343?t?s(l,h):n:t?c(l,h,h+2):f-56320+(n-55296<<10)+65536}};t.exports={codeAt:f(!1),charAt:f(!0)}},92980:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n)},86424:(t,e,r)=>{"use strict";var n=r(76277),o=r(6674),i=r(18971),a=r(23295),s=r(72191),u=n(a),c=n("".slice),f=Math.ceil,l=function(t){return function(e,r,n){var a,l,h=i(s(e)),p=o(r),y=h.length,d=void 0===n?" ":i(n);return p<=y||""==d?h:((l=u(d,f((a=p-y)/d.length))).length>a&&(l=c(l,0,a)),t?h+l:l+h)}};t.exports={start:l(!1),end:l(!0)}},34858:(t,e,r)=>{"use strict";var n=r(76277),o=2147483647,i=/[^\0-\u007E]/,a=/[.\u3002\uFF0E\uFF61]/g,s="Overflow: input needs wider integers to process",u=RangeError,c=n(a.exec),f=Math.floor,l=String.fromCharCode,h=n("".charCodeAt),p=n([].join),y=n([].push),d=n("".replace),v=n("".split),g=n("".toLowerCase),b=function(t){return t+22+75*(t<26)},m=function(t,e,r){var n=0;for(t=r?f(t/700):t>>1,t+=f(t/e);t>455;)t=f(t/35),n+=36;return f(n+36*t/(t+38))},w=function(t){var e=[];t=function(t){for(var e=[],r=0,n=t.length;r<n;){var o=h(t,r++);if(o>=55296&&o<=56319&&r<n){var i=h(t,r++);56320==(64512&i)?y(e,((1023&o)<<10)+(1023&i)+65536):(y(e,o),r--)}else y(e,o)}return e}(t);var r,n,i=t.length,a=128,c=0,d=72;for(r=0;r<t.length;r++)(n=t[r])<128&&y(e,l(n));var v=e.length,g=v;for(v&&y(e,"-");g<i;){var w=o;for(r=0;r<t.length;r++)(n=t[r])>=a&&n<w&&(w=n);var x=g+1;if(w-a>f((o-c)/x))throw u(s);for(c+=(w-a)*x,a=w,r=0;r<t.length;r++){if((n=t[r])<a&&++c>o)throw u(s);if(n==a){for(var k=c,S=36;;){var _=S<=d?1:S>=d+26?26:S-d;if(k<_)break;var O=k-_,E=36-_;y(e,l(b(_+O%E))),k=f(O/E),S+=36}y(e,l(b(k))),d=m(c,x,g==v),c=0,g++}}c++,a++}return p(e,"")};t.exports=function(t){var e,r,n=[],o=v(d(g(t),a,"."),".");for(e=0;e<o.length;e++)r=o[e],y(n,c(i,r)?"xn--"+w(r):r);return p(n,".")}},23295:(t,e,r)=>{"use strict";var n=r(35206),o=r(18971),i=r(72191),a=RangeError;t.exports=function(t){var e=o(i(this)),r="",s=n(t);if(s<0||s==1/0)throw a("Wrong number of repetitions");for(;s>0;(s>>>=1)&&(e+=e))1&s&&(r+=e);return r}},21791:(t,e,r)=>{"use strict";var n=r(23688).end,o=r(55833);t.exports=o("trimEnd")?function(){return n(this)}:"".trimEnd},55833:(t,e,r)=>{"use strict";var n=r(33385).PROPER,o=r(13894),i=r(79577);t.exports=function(t){return o((function(){return!!i[t]()||"
"!=="
"[t]()||n&&i[t].name!==t}))}},65315:(t,e,r)=>{"use strict";var n=r(23688).start,o=r(55833);t.exports=o("trimStart")?function(){return n(this)}:"".trimStart},23688:(t,e,r)=>{"use strict";var n=r(76277),o=r(72191),i=r(18971),a=r(79577),s=n("".replace),u=RegExp("^["+a+"]+"),c=RegExp("(^|[^"+a+"])["+a+"]+$"),f=function(t){return function(e){var r=i(o(e));return 1&t&&(r=s(r,u,"")),2&t&&(r=s(r,c,"$1")),r}};t.exports={start:f(1),end:f(2),trim:f(3)}},70197:(t,e,r)=>{"use strict";var n=r(54516),o=r(13894),i=r(49229),a=r(41822),s=r(9923),u=r(63241),c=n.structuredClone;t.exports=!!c&&!o((function(){if(s&&i>92||u&&i>94||a&&i>97)return!1;var t=new ArrayBuffer(8),e=c(t,{transfer:[t]});return 0!=t.byteLength||8!=e.byteLength}))},24550:(t,e,r)=>{"use strict";var n=r(49229),o=r(13894),i=r(54516).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},52231:(t,e,r)=>{"use strict";var n=r(83264),o=r(12546),i=r(41398),a=r(89592);t.exports=function(){var t=o("Symbol"),e=t&&t.prototype,r=e&&e.valueOf,s=i("toPrimitive");e&&!e[s]&&a(e,s,(function(t){return n(r,this)}),{arity:1})}},29129:(t,e,r)=>{"use strict";var n=r(24550);t.exports=n&&!!Symbol.for&&!!Symbol.keyFor},33394:(t,e,r)=>{"use strict";var n,o,i,a,s=r(54516),u=r(2090),c=r(29910),f=r(34230),l=r(37058),h=r(13894),p=r(58970),y=r(52999),d=r(23791),v=r(10645),g=r(31681),b=r(63241),m=s.setImmediate,w=s.clearImmediate,x=s.process,k=s.Dispatch,S=s.Function,_=s.MessageChannel,O=s.String,E=0,A={},P="onreadystatechange";h((function(){n=s.location}));var j=function(t){if(l(A,t)){var e=A[t];delete A[t],e()}},T=function(t){return function(){j(t)}},M=function(t){j(t.data)},R=function(t){s.postMessage(O(t),n.protocol+"//"+n.host)};m&&w||(m=function(t){v(arguments.length,1);var e=f(t)?t:S(t),r=y(arguments,1);return A[++E]=function(){u(e,void 0,r)},o(E),E},w=function(t){delete A[t]},b?o=function(t){x.nextTick(T(t))}:k&&k.now?o=function(t){k.now(T(t))}:_&&!g?(a=(i=new _).port2,i.port1.onmessage=M,o=c(a.postMessage,a)):s.addEventListener&&f(s.postMessage)&&!s.importScripts&&n&&"file:"!==n.protocol&&!h(R)?(o=R,s.addEventListener("message",M,!1)):o=P in d("script")?function(t){p.appendChild(d("script"))[P]=function(){p.removeChild(this),j(t)}}:function(t){setTimeout(T(t),0)}),t.exports={set:m,clear:w}},71047:(t,e,r)=>{"use strict";var n=r(76277);t.exports=n(1..valueOf)},59625:(t,e,r)=>{"use strict";var n=r(35206),o=Math.max,i=Math.min;t.exports=function(t,e){var r=n(t);return r<0?o(r+e,0):i(r,e)}},1490:(t,e,r)=>{"use strict";var n=r(69155),o=TypeError;t.exports=function(t){var e=n(t,"number");if("number"==typeof e)throw o("Can't convert number to bigint");return BigInt(e)}},88821:(t,e,r)=>{"use strict";var n=r(35206),o=r(6674),i=RangeError;t.exports=function(t){if(void 0===t)return 0;var e=n(t),r=o(e);if(e!==r)throw i("Wrong length or index");return r}},54721:(t,e,r)=>{"use strict";var n=r(94015),o=r(72191);t.exports=function(t){return n(o(t))}},35206:(t,e,r)=>{"use strict";var n=r(78066);t.exports=function(t){var e=+t;return e!=e||0===e?0:n(e)}},6674:(t,e,r)=>{"use strict";var n=r(35206),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},87706:(t,e,r)=>{"use strict";var n=r(72191),o=Object;t.exports=function(t){return o(n(t))}},4408:(t,e,r)=>{"use strict";var n=r(43458),o=RangeError;t.exports=function(t,e){var r=n(t);if(r%e)throw o("Wrong offset");return r}},43458:(t,e,r)=>{"use strict";var n=r(35206),o=RangeError;t.exports=function(t){var e=n(t);if(e<0)throw o("The argument can't be less than 0");return e}},69155:(t,e,r)=>{"use strict";var n=r(83264),o=r(3196),i=r(45961),a=r(16040),s=r(8661),u=r(41398),c=TypeError,f=u("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var r,u=a(t,f);if(u){if(void 0===e&&(e="default"),r=n(u,t,e),!o(r)||i(r))return r;throw c("Can't convert object to primitive value")}return void 0===e&&(e="number"),s(t,e)}},14748:(t,e,r)=>{"use strict";var n=r(69155),o=r(45961);t.exports=function(t){var e=n(t,"string");return o(e)?e:e+""}},47775:(t,e,r)=>{"use strict";var n={};n[r(41398)("toStringTag")]="z",t.exports="[object z]"===String(n)},18971:(t,e,r)=>{"use strict";var n=r(98619),o=String;t.exports=function(t){if("Symbol"===n(t))throw TypeError("Cannot convert a Symbol value to a string");return o(t)}},42317:t=>{"use strict";var e=Math.round;t.exports=function(t){var r=e(t);return r<0?0:r>255?255:255&r}},24128:(t,e,r)=>{"use strict";var n=r(63241);t.exports=function(t){try{if(n)return Function('return require("'+t+'")')()}catch(t){}}},2854:t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},63842:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(83264),a=r(44244),s=r(93890),u=r(19548),c=r(25254),f=r(89214),l=r(30654),h=r(81831),p=r(18057),y=r(6674),d=r(88821),v=r(4408),g=r(42317),b=r(14748),m=r(37058),w=r(98619),x=r(3196),k=r(45961),S=r(64714),_=r(34973),O=r(14776),E=r(51019).f,A=r(25599),P=r(87265).forEach,j=r(3348),T=r(55882),M=r(26337),R=r(77872),I=r(43023),C=r(2993),L=I.get,D=I.set,B=I.enforce,N=M.f,F=R.f,z=o.RangeError,U=c.ArrayBuffer,Y=U.prototype,G=c.DataView,H=u.NATIVE_ARRAY_BUFFER_VIEWS,W=u.TYPED_ARRAY_TAG,X=u.TypedArray,q=u.TypedArrayPrototype,V=u.aTypedArrayConstructor,Q=u.isTypedArray,K="BYTES_PER_ELEMENT",J="Wrong length",Z=function(t,e){V(t);for(var r=0,n=e.length,o=new t(n);n>r;)o[r]=e[r++];return o},$=function(t,e){T(t,e,{configurable:!0,get:function(){return L(this)[e]}})},tt=function(t){var e;return _(Y,t)||"ArrayBuffer"==(e=w(t))||"SharedArrayBuffer"==e},et=function(t,e){return Q(t)&&!k(e)&&e in t&&p(+e)&&e>=0},rt=function(t,e){return e=b(e),et(t,e)?l(2,t[e]):F(t,e)},nt=function(t,e,r){return e=b(e),!(et(t,e)&&x(r)&&m(r,"value"))||m(r,"get")||m(r,"set")||r.configurable||m(r,"writable")&&!r.writable||m(r,"enumerable")&&!r.enumerable?N(t,e,r):(t[e]=r.value,t)};a?(H||(R.f=rt,M.f=nt,$(q,"buffer"),$(q,"byteOffset"),$(q,"byteLength"),$(q,"length")),n({target:"Object",stat:!0,forced:!H},{getOwnPropertyDescriptor:rt,defineProperty:nt}),t.exports=function(t,e,r){var a=t.match(/\d+/)[0]/8,u=t+(r?"Clamped":"")+"Array",c="get"+t,l="set"+t,p=o[u],b=p,m=b&&b.prototype,w={},k=function(t,e){N(t,e,{get:function(){return function(t,e){var r=L(t);return r.view[c](e*a+r.byteOffset,!0)}(this,e)},set:function(t){return function(t,e,n){var o=L(t);o.view[l](e*a+o.byteOffset,r?g(n):n,!0)}(this,e,t)},enumerable:!0})};H?s&&(b=e((function(t,e,r,n){return f(t,m),C(x(e)?tt(e)?void 0!==n?new p(e,v(r,a),n):void 0!==r?new p(e,v(r,a)):new p(e):Q(e)?Z(b,e):i(A,b,e):new p(d(e)),t,b)})),O&&O(b,X),P(E(p),(function(t){t in b||h(b,t,p[t])})),b.prototype=m):(b=e((function(t,e,r,n){f(t,m);var o,s,u,c=0,l=0;if(x(e)){if(!tt(e))return Q(e)?Z(b,e):i(A,b,e);o=e,l=v(r,a);var h=e.byteLength;if(void 0===n){if(h%a)throw z(J);if((s=h-l)<0)throw z(J)}else if((s=y(n)*a)+l>h)throw z(J);u=s/a}else u=d(e),o=new U(s=u*a);for(D(t,{buffer:o,byteOffset:l,byteLength:s,length:u,view:new G(o)});c<u;)k(t,c++)})),O&&O(b,X),m=b.prototype=S(q)),m.constructor!==b&&h(m,"constructor",b),B(m).TypedArrayConstructor=b,W&&h(m,W,u);var _=b!=p;w[u]=b,n({global:!0,constructor:!0,forced:_,sham:!H},w),K in b||h(b,K,a),K in m||h(m,K,a),j(u)}):t.exports=function(){}},93890:(t,e,r)=>{"use strict";var n=r(54516),o=r(13894),i=r(36548),a=r(19548).NATIVE_ARRAY_BUFFER_VIEWS,s=n.ArrayBuffer,u=n.Int8Array;t.exports=!a||!o((function(){u(1)}))||!o((function(){new u(-1)}))||!i((function(t){new u,new u(null),new u(1.5),new u(t)}),!0)||o((function(){return 1!==new u(new s(2),1,void 0).length}))},35967:(t,e,r)=>{"use strict";var n=r(35040),o=r(62718);t.exports=function(t,e){return n(o(t),e)}},25599:(t,e,r)=>{"use strict";var n=r(29910),o=r(83264),i=r(52750),a=r(87706),s=r(43716),u=r(29946),c=r(1228),f=r(201),l=r(98074),h=r(19548).aTypedArrayConstructor,p=r(1490);t.exports=function(t){var e,r,y,d,v,g,b,m,w=i(this),x=a(t),k=arguments.length,S=k>1?arguments[1]:void 0,_=void 0!==S,O=c(x);if(O&&!f(O))for(m=(b=u(x,O)).next,x=[];!(g=o(m,b)).done;)x.push(g.value);for(_&&k>2&&(S=n(S,arguments[2])),r=s(x),y=new(h(w))(r),d=l(y),e=0;r>e;e++)v=_?S(x[e],e):x[e],y[e]=d?p(v):+v;return y}},62718:(t,e,r)=>{"use strict";var n=r(19548),o=r(72976),i=n.aTypedArrayConstructor,a=n.getTypedArrayConstructor;t.exports=function(t){return i(o(t,a(t)))}},67025:(t,e,r)=>{"use strict";var n=r(76277),o=0,i=Math.random(),a=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+a(++o+i,36)}},69650:(t,e,r)=>{"use strict";var n=r(13894),o=r(41398),i=r(44244),a=r(43310),s=o("iterator");t.exports=!n((function(){var t=new URL("b?a=1&b=2&c=3","http://a"),e=t.searchParams,r=new URLSearchParams("a=1&a=2&b=3"),n="";return t.pathname="c%20d",e.forEach((function(t,r){e.delete("b"),n+=r+t})),r.delete("a",2),r.delete("b",void 0),a&&(!t.toJSON||!r.has("a",1)||r.has("a",2)||!r.has("a",void 0)||r.has("b"))||!e.size&&(a||!i)||!e.sort||"http://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[s]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("http://тест").host||"#%D0%B1"!==new URL("http://a#б").hash||"a1c3"!==n||"x"!==new URL("http://x",void 0).host}))},88477:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(24550);t.exports=o&&!Symbol.sham&&"symbol"==n(Symbol.iterator)},29128:(t,e,r)=>{"use strict";var n=r(44244),o=r(13894);t.exports=n&&o((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},10645:t=>{"use strict";var e=TypeError;t.exports=function(t,r){if(t<r)throw e("Not enough arguments");return t}},82408:(t,e,r)=>{"use strict";var n=r(54516),o=r(34230),i=n.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},46619:(t,e,r)=>{"use strict";var n=r(1612),o=r(37058),i=r(30400),a=r(26337).f;t.exports=function(t){var e=n.Symbol||(n.Symbol={});o(e,t)||a(e,t,{value:i.f(t)})}},30400:(t,e,r)=>{"use strict";var n=r(41398);e.f=n},41398:(t,e,r)=>{"use strict";var n=r(54516),o=r(38365),i=r(37058),a=r(67025),s=r(24550),u=r(88477),c=n.Symbol,f=o("wks"),l=u?c.for||c:c&&c.withoutSetter||a;t.exports=function(t){return i(f,t)||(f[t]=s&&i(c,t)?c[t]:l("Symbol."+t)),f[t]}},79577:t=>{"use strict";t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},75294:(t,e,r)=>{"use strict";var n=r(12546),o=r(37058),i=r(81831),a=r(34973),s=r(14776),u=r(79129),c=r(60492),f=r(2993),l=r(91245),h=r(89804),p=r(93636),y=r(44244),d=r(43310);t.exports=function(t,e,r,v){var g="stackTraceLimit",b=v?2:1,m=t.split("."),w=m[m.length-1],x=n.apply(null,m);if(x){var k=x.prototype;if(!d&&o(k,"cause")&&delete k.cause,!r)return x;var S=n("Error"),_=e((function(t,e){var r=l(v?e:t,void 0),n=v?new x(t):new x;return void 0!==r&&i(n,"message",r),p(n,_,n.stack,2),this&&a(k,this)&&f(n,this,_),arguments.length>b&&h(n,arguments[b]),n}));if(_.prototype=k,"Error"!==w?s?s(_,S):u(_,S,{name:!0}):y&&g in x&&(c(_,x,g),c(_,x,"prepareStackTrace")),u(_,x),!d)try{k.name!==w&&i(k,"name",w),k.constructor=_}catch(t){}return _}}},95027:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(2090),a=r(13894),s=r(75294),u="AggregateError",c=o(u),f=!a((function(){return 1!==c([1]).errors[0]}))&&a((function(){return 7!==c([1],u,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:f},{AggregateError:s(u,(function(t){return function(e,r){return i(t,this,arguments)}}),f,!0)})},33426:(t,e,r)=>{"use strict";var n=r(57330),o=r(34973),i=r(40175),a=r(14776),s=r(79129),u=r(64714),c=r(81831),f=r(30654),l=r(89804),h=r(93636),p=r(29429),y=r(91245),d=r(41398)("toStringTag"),v=Error,g=[].push,b=function(t,e){var r,n=o(m,this);a?r=a(v(),n?i(this):m):(r=n?this:u(m),c(r,d,"Error")),void 0!==e&&c(r,"message",y(e)),h(r,b,r.stack,1),arguments.length>2&&l(r,arguments[2]);var s=[];return p(t,g,{that:s}),c(r,"errors",s),r};a?a(b,v):s(b,v,{name:!0});var m=b.prototype=u(v.prototype,{constructor:f(1,b),message:f(1,""),name:f(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:b})},52309:(t,e,r)=>{"use strict";r(33426)},47185:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(25254),a=r(3348),s="ArrayBuffer",u=i[s];n({global:!0,constructor:!0,forced:o[s]!==u},{ArrayBuffer:u}),a(s)},6765:(t,e,r)=>{"use strict";var n=r(57330),o=r(19548);n({target:"ArrayBuffer",stat:!0,forced:!o.NATIVE_ARRAY_BUFFER_VIEWS},{isView:o.isView})},86927:(t,e,r)=>{"use strict";var n=r(57330),o=r(15307),i=r(13894),a=r(25254),s=r(96302),u=r(59625),c=r(6674),f=r(72976),l=a.ArrayBuffer,h=a.DataView,p=h.prototype,y=o(l.prototype.slice),d=o(p.getUint8),v=o(p.setUint8);n({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:i((function(){return!new l(2).slice(1,void 0).byteLength}))},{slice:function(t,e){if(y&&void 0===e)return y(s(this),t);for(var r=s(this).byteLength,n=u(t,r),o=u(void 0===e?r:e,r),i=new(f(this,l))(c(o-n)),a=new h(this),p=new h(i),g=0;n<o;)v(p,g++,d(a,n++));return i}})},78667:(t,e,r)=>{"use strict";var n=r(57330),o=r(87706),i=r(43716),a=r(35206),s=r(86278);n({target:"Array",proto:!0},{at:function(t){var e=o(this),r=i(e),n=a(t),s=n>=0?n:r+n;return s<0||s>=r?void 0:e[s]}}),s("at")},55549:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(85588),a=r(3196),s=r(87706),u=r(43716),c=r(97614),f=r(80955),l=r(29400),h=r(1309),p=r(41398),y=r(49229),d=p("isConcatSpreadable"),v=y>=51||!o((function(){var t=[];return t[d]=!1,t.concat()[0]!==t})),g=function(t){if(!a(t))return!1;var e=t[d];return void 0!==e?!!e:i(t)};n({target:"Array",proto:!0,arity:1,forced:!v||!h("concat")},{concat:function(t){var e,r,n,o,i,a=s(this),h=l(a,0),p=0;for(e=-1,n=arguments.length;e<n;e++)if(g(i=-1===e?a:arguments[e]))for(o=u(i),c(p+o),r=0;r<o;r++,p++)r in i&&f(h,p,i[r]);else c(p+1),f(h,p++,i);return h.length=p,h}})},12042:(t,e,r)=>{"use strict";var n=r(57330),o=r(92316),i=r(86278);n({target:"Array",proto:!0},{copyWithin:o}),i("copyWithin")},70079:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).every;n({target:"Array",proto:!0,forced:!r(39904)("every")},{every:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},69979:(t,e,r)=>{"use strict";var n=r(57330),o=r(47774),i=r(86278);n({target:"Array",proto:!0},{fill:o}),i("fill")},91910:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).filter;n({target:"Array",proto:!0,forced:!r(1309)("filter")},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},52947:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).findIndex,i=r(86278),a="findIndex",s=!0;a in[]&&Array(1)[a]((function(){s=!1})),n({target:"Array",proto:!0,forced:s},{findIndex:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i(a)},85784:(t,e,r)=>{"use strict";var n=r(57330),o=r(80728).findLastIndex,i=r(86278);n({target:"Array",proto:!0},{findLastIndex:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("findLastIndex")},41721:(t,e,r)=>{"use strict";var n=r(57330),o=r(80728).findLast,i=r(86278);n({target:"Array",proto:!0},{findLast:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("findLast")},42426:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).find,i=r(86278),a="find",s=!0;a in[]&&Array(1)[a]((function(){s=!1})),n({target:"Array",proto:!0,forced:s},{find:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i(a)},67352:(t,e,r)=>{"use strict";var n=r(57330),o=r(25790),i=r(88965),a=r(87706),s=r(43716),u=r(29400);n({target:"Array",proto:!0},{flatMap:function(t){var e,r=a(this),n=s(r);return i(t),(e=u(r,0)).length=o(e,r,r,n,0,1,t,arguments.length>1?arguments[1]:void 0),e}})},17620:(t,e,r)=>{"use strict";var n=r(57330),o=r(25790),i=r(87706),a=r(43716),s=r(35206),u=r(29400);n({target:"Array",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,e=i(this),r=a(e),n=u(e,0);return n.length=o(n,e,e,r,0,void 0===t?1:s(t)),n}})},4293:(t,e,r)=>{"use strict";var n=r(57330),o=r(39682);n({target:"Array",proto:!0,forced:[].forEach!=o},{forEach:o})},30281:(t,e,r)=>{"use strict";var n=r(57330),o=r(11956);n({target:"Array",stat:!0,forced:!r(36548)((function(t){Array.from(t)}))},{from:o})},23949:(t,e,r)=>{"use strict";var n=r(57330),o=r(60452).includes,i=r(13894),a=r(86278);n({target:"Array",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),a("includes")},35963:(t,e,r)=>{"use strict";var n=r(57330),o=r(15307),i=r(60452).indexOf,a=r(39904),s=o([].indexOf),u=!!s&&1/s([1],1,-0)<0;n({target:"Array",proto:!0,forced:u||!a("indexOf")},{indexOf:function(t){var e=arguments.length>1?arguments[1]:void 0;return u?s(this,t,e)||0:i(this,t,e)}})},8851:(t,e,r)=>{"use strict";r(57330)({target:"Array",stat:!0},{isArray:r(85588)})},24133:(t,e,r)=>{"use strict";var n=r(54721),o=r(86278),i=r(53415),a=r(43023),s=r(26337).f,u=r(99825),c=r(38351),f=r(43310),l=r(44244),h="Array Iterator",p=a.set,y=a.getterFor(h);t.exports=u(Array,"Array",(function(t,e){p(this,{type:h,target:n(t),index:0,kind:e})}),(function(){var t=y(this),e=t.target,r=t.kind,n=t.index++;return!e||n>=e.length?(t.target=void 0,c(void 0,!0)):c("keys"==r?n:"values"==r?e[n]:[n,e[n]],!1)}),"values");var d=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!f&&l&&"values"!==d.name)try{s(d,"name",{value:"values"})}catch(t){}},33448:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(94015),a=r(54721),s=r(39904),u=o([].join);n({target:"Array",proto:!0,forced:i!=Object||!s("join",",")},{join:function(t){return u(a(this),void 0===t?",":t)}})},7311:(t,e,r)=>{"use strict";var n=r(57330),o=r(85773);n({target:"Array",proto:!0,forced:o!==[].lastIndexOf},{lastIndexOf:o})},16798:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).map;n({target:"Array",proto:!0,forced:!r(1309)("map")},{map:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},21145:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(53924),a=r(80955),s=Array;n({target:"Array",stat:!0,forced:o((function(){function t(){}return!(s.of.call(t)instanceof t)}))},{of:function(){for(var t=0,e=arguments.length,r=new(i(this)?this:s)(e);e>t;)a(r,t,arguments[t++]);return r.length=e,r}})},87152:(t,e,r)=>{"use strict";var n=r(57330),o=r(87706),i=r(43716),a=r(60797),s=r(97614);n({target:"Array",proto:!0,arity:1,forced:r(13894)((function(){return 4294967297!==[].push.call({length:4294967296},1)}))||!function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(t){return t instanceof TypeError}}()},{push:function(t){var e=o(this),r=i(e),n=arguments.length;s(r+n);for(var u=0;u<n;u++)e[r]=arguments[u],r++;return a(e,r),r}})},15618:(t,e,r)=>{"use strict";var n=r(57330),o=r(73333).right,i=r(39904),a=r(49229);n({target:"Array",proto:!0,forced:!r(63241)&&a>79&&a<83||!i("reduceRight")},{reduceRight:function(t){return o(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}})},9253:(t,e,r)=>{"use strict";var n=r(57330),o=r(73333).left,i=r(39904),a=r(49229);n({target:"Array",proto:!0,forced:!r(63241)&&a>79&&a<83||!i("reduce")},{reduce:function(t){var e=arguments.length;return o(this,t,e,e>1?arguments[1]:void 0)}})},81364:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(85588),a=o([].reverse),s=[1,2];n({target:"Array",proto:!0,forced:String(s)===String(s.reverse())},{reverse:function(){return i(this)&&(this.length=this.length),a(this)}})},55635:(t,e,r)=>{"use strict";var n=r(57330),o=r(85588),i=r(53924),a=r(3196),s=r(59625),u=r(43716),c=r(54721),f=r(80955),l=r(41398),h=r(1309),p=r(52999),y=h("slice"),d=l("species"),v=Array,g=Math.max;n({target:"Array",proto:!0,forced:!y},{slice:function(t,e){var r,n,l,h=c(this),y=u(h),b=s(t,y),m=s(void 0===e?y:e,y);if(o(h)&&(r=h.constructor,(i(r)&&(r===v||o(r.prototype))||a(r)&&null===(r=r[d]))&&(r=void 0),r===v||void 0===r))return p(h,b,m);for(n=new(void 0===r?v:r)(g(m-b,0)),l=0;b<m;b++,l++)b in h&&f(n,l,h[b]);return n.length=l,n}})},92550:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).some;n({target:"Array",proto:!0,forced:!r(39904)("some")},{some:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},16087:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(88965),a=r(87706),s=r(43716),u=r(8713),c=r(18971),f=r(13894),l=r(53347),h=r(39904),p=r(50419),y=r(72693),d=r(49229),v=r(90602),g=[],b=o(g.sort),m=o(g.push),w=f((function(){g.sort(void 0)})),x=f((function(){g.sort(null)})),k=h("sort"),S=!f((function(){if(d)return d<70;if(!(p&&p>3)){if(y)return!0;if(v)return v<603;var t,e,r,n,o="";for(t=65;t<76;t++){switch(e=String.fromCharCode(t),t){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(n=0;n<47;n++)g.push({k:e+n,v:r})}for(g.sort((function(t,e){return e.v-t.v})),n=0;n<g.length;n++)e=g[n].k.charAt(0),o.charAt(o.length-1)!==e&&(o+=e);return"DGBEFHACIJK"!==o}}));n({target:"Array",proto:!0,forced:w||!x||!k||!S},{sort:function(t){void 0!==t&&i(t);var e=a(this);if(S)return void 0===t?b(e):b(e,t);var r,n,o=[],f=s(e);for(n=0;n<f;n++)n in e&&m(o,e[n]);for(l(o,function(t){return function(e,r){return void 0===r?-1:void 0===e?1:void 0!==t?+t(e,r)||0:c(e)>c(r)?1:-1}}(t)),r=s(o),n=0;n<r;)e[n]=o[n++];for(;n<f;)u(e,n++);return e}})},26568:(t,e,r)=>{"use strict";r(3348)("Array")},14747:(t,e,r)=>{"use strict";var n=r(57330),o=r(87706),i=r(59625),a=r(35206),s=r(43716),u=r(60797),c=r(97614),f=r(29400),l=r(80955),h=r(8713),p=r(1309)("splice"),y=Math.max,d=Math.min;n({target:"Array",proto:!0,forced:!p},{splice:function(t,e){var r,n,p,v,g,b,m=o(this),w=s(m),x=i(t,w),k=arguments.length;for(0===k?r=n=0:1===k?(r=0,n=w-x):(r=k-2,n=d(y(a(e),0),w-x)),c(w+r-n),p=f(m,n),v=0;v<n;v++)(g=x+v)in m&&l(p,v,m[g]);if(p.length=n,r<n){for(v=x;v<w-n;v++)b=v+r,(g=v+n)in m?m[b]=m[g]:h(m,b);for(v=w;v>w-n+r;v--)h(m,v-1)}else if(r>n)for(v=w-n;v>x;v--)b=v+r-1,(g=v+n-1)in m?m[b]=m[g]:h(m,b);for(v=0;v<r;v++)m[v+x]=arguments[v+2];return u(m,w-n+r),p}})},58242:(t,e,r)=>{"use strict";var n=r(57330),o=r(13729),i=r(54721),a=r(86278),s=Array;n({target:"Array",proto:!0},{toReversed:function(){return o(i(this),s)}}),a("toReversed")},43247:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(88965),a=r(54721),s=r(35040),u=r(38117),c=r(86278),f=Array,l=o(u("Array").sort);n({target:"Array",proto:!0},{toSorted:function(t){void 0!==t&&i(t);var e=a(this),r=s(f,e);return l(r,t)}}),c("toSorted")},34830:(t,e,r)=>{"use strict";var n=r(57330),o=r(86278),i=r(97614),a=r(43716),s=r(59625),u=r(54721),c=r(35206),f=Array,l=Math.max,h=Math.min;n({target:"Array",proto:!0},{toSpliced:function(t,e){var r,n,o,p,y=u(this),d=a(y),v=s(t,d),g=arguments.length,b=0;for(0===g?r=n=0:1===g?(r=0,n=d-v):(r=g-2,n=h(l(c(e),0),d-v)),o=i(d+r-n),p=f(o);b<v;b++)p[b]=y[b];for(;b<v+r;b++)p[b]=arguments[b-v+2];for(;b<o;b++)p[b]=y[b+n-r];return p}}),o("toSpliced")},16021:(t,e,r)=>{"use strict";r(86278)("flatMap")},5162:(t,e,r)=>{"use strict";r(86278)("flat")},22767:(t,e,r)=>{"use strict";var n=r(57330),o=r(87706),i=r(43716),a=r(60797),s=r(8713),u=r(97614);n({target:"Array",proto:!0,arity:1,forced:1!==[].unshift(0)||!function(){try{Object.defineProperty([],"length",{writable:!1}).unshift()}catch(t){return t instanceof TypeError}}()},{unshift:function(t){var e=o(this),r=i(e),n=arguments.length;if(n){u(r+n);for(var c=r;c--;){var f=c+n;c in e?e[f]=e[c]:s(e,f)}for(var l=0;l<n;l++)e[l]=arguments[l]}return a(e,r+n)}})},23087:(t,e,r)=>{"use strict";var n=r(57330),o=r(33547),i=r(54721),a=Array;n({target:"Array",proto:!0},{with:function(t,e){return o(i(this),a,t,e)}})},25525:(t,e,r)=>{"use strict";var n=r(57330),o=r(25254);n({global:!0,constructor:!0,forced:!r(63956)},{DataView:o.DataView})},43542:(t,e,r)=>{"use strict";r(25525)},20623:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(13894)((function(){return 120!==new Date(16e11).getYear()})),a=o(Date.prototype.getFullYear);n({target:"Date",proto:!0,forced:i},{getYear:function(){return a(this)-1900}})},22074:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=Date,a=o(i.prototype.getTime);n({target:"Date",stat:!0},{now:function(){return a(new i)}})},44837:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(35206),a=Date.prototype,s=o(a.getTime),u=o(a.setFullYear);n({target:"Date",proto:!0},{setYear:function(t){s(this);var e=i(t);return u(this,0<=e&&e<=99?e+1900:e)}})},36688:(t,e,r)=>{"use strict";r(57330)({target:"Date",proto:!0},{toGMTString:Date.prototype.toUTCString})},45938:(t,e,r)=>{"use strict";var n=r(57330),o=r(85833);n({target:"Date",proto:!0,forced:Date.prototype.toISOString!==o},{toISOString:o})},75640:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(87706),a=r(69155);n({target:"Date",proto:!0,arity:1,forced:o((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}))},{toJSON:function(t){var e=i(this),r=a(e,"number");return"number"!=typeof r||isFinite(r)?e.toISOString():null}})},98665:(t,e,r)=>{"use strict";var n=r(37058),o=r(89592),i=r(72473),a=r(41398)("toPrimitive"),s=Date.prototype;n(s,a)||o(s,a,i)},72003:(t,e,r)=>{"use strict";var n=r(76277),o=r(89592),i=Date.prototype,a="Invalid Date",s="toString",u=n(i[s]),c=n(i.getTime);String(new Date(NaN))!=a&&o(i,s,(function(){var t=c(this);return t==t?u(this):a}))},19337:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(2090),a=r(75294),s="WebAssembly",u=o[s],c=7!==Error("e",{cause:7}).cause,f=function(t,e){var r={};r[t]=a(t,e,c),n({global:!0,constructor:!0,arity:1,forced:c},r)},l=function(t,e){if(u&&u[t]){var r={};r[t]=a(s+"."+t,e,c),n({target:s,stat:!0,constructor:!0,arity:1,forced:c},r)}};f("Error",(function(t){return function(e){return i(t,this,arguments)}})),f("EvalError",(function(t){return function(e){return i(t,this,arguments)}})),f("RangeError",(function(t){return function(e){return i(t,this,arguments)}})),f("ReferenceError",(function(t){return function(e){return i(t,this,arguments)}})),f("SyntaxError",(function(t){return function(e){return i(t,this,arguments)}})),f("TypeError",(function(t){return function(e){return i(t,this,arguments)}})),f("URIError",(function(t){return function(e){return i(t,this,arguments)}})),l("CompileError",(function(t){return function(e){return i(t,this,arguments)}})),l("LinkError",(function(t){return function(e){return i(t,this,arguments)}})),l("RuntimeError",(function(t){return function(e){return i(t,this,arguments)}}))},141:(t,e,r)=>{"use strict";var n=r(89592),o=r(34019),i=Error.prototype;i.toString!==o&&n(i,"toString",o)},15034:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(18971),a=o("".charAt),s=o("".charCodeAt),u=o(/./.exec),c=o(1..toString),f=o("".toUpperCase),l=/[\w*+\-./@]/,h=function(t,e){for(var r=c(t,16);r.length<e;)r="0"+r;return r};n({global:!0},{escape:function(t){for(var e,r,n=i(t),o="",c=n.length,p=0;p<c;)e=a(n,p++),u(l,e)?o+=e:o+=(r=s(e,0))<256?"%"+h(r,2):"%u"+f(h(r,4));return o}})},47125:(t,e,r)=>{"use strict";var n=r(57330),o=r(80944);n({target:"Function",proto:!0,forced:Function.bind!==o},{bind:o})},75004:(t,e,r)=>{"use strict";var n=r(34230),o=r(3196),i=r(26337),a=r(40175),s=r(41398),u=r(74743),c=s("hasInstance"),f=Function.prototype;c in f||i.f(f,c,{value:u((function(t){if(!n(this)||!o(t))return!1;var e=this.prototype;if(!o(e))return t instanceof this;for(;t=a(t);)if(e===t)return!0;return!1}),c)})},68825:(t,e,r)=>{"use strict";var n=r(44244),o=r(33385).EXISTS,i=r(76277),a=r(55882),s=Function.prototype,u=i(s.toString),c=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,f=i(c.exec);n&&!o&&a(s,"name",{configurable:!0,get:function(){try{return f(c,u(this))[1]}catch(t){return""}}})},78026:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516);n({global:!0,forced:o.globalThis!==o},{globalThis:o})},83761:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(2090),a=r(83264),s=r(76277),u=r(13894),c=r(34230),f=r(45961),l=r(52999),h=r(10042),p=r(24550),y=String,d=o("JSON","stringify"),v=s(/./.exec),g=s("".charAt),b=s("".charCodeAt),m=s("".replace),w=s(1..toString),x=/[\uD800-\uDFFF]/g,k=/^[\uD800-\uDBFF]$/,S=/^[\uDC00-\uDFFF]$/,_=!p||u((function(){var t=o("Symbol")();return"[null]"!=d([t])||"{}"!=d({a:t})||"{}"!=d(Object(t))})),O=u((function(){return'"\\udf06\\ud834"'!==d("\udf06\ud834")||'"\\udead"'!==d("\udead")})),E=function(t,e){var r=l(arguments),n=h(e);if(c(n)||void 0!==t&&!f(t))return r[1]=function(t,e){if(c(n)&&(e=a(n,this,y(t),e)),!f(e))return e},i(d,null,r)},A=function(t,e,r){var n=g(r,e-1),o=g(r,e+1);return v(k,t)&&!v(S,o)||v(S,t)&&!v(k,n)?"\\u"+w(b(t,0),16):t};d&&n({target:"JSON",stat:!0,arity:3,forced:_||O},{stringify:function(t,e,r){var n=l(arguments),o=i(_?E:d,null,n);return O&&"string"==typeof o?m(o,x,A):o}})},5582:(t,e,r)=>{"use strict";var n=r(54516);r(81018)(n.JSON,"JSON",!0)},69890:(t,e,r)=>{"use strict";r(48756)("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(78704))},48499:(t,e,r)=>{"use strict";r(69890)},80989:(t,e,r)=>{"use strict";var n=r(57330),o=r(43611),i=Math.acosh,a=Math.log,s=Math.sqrt,u=Math.LN2;n({target:"Math",stat:!0,forced:!i||710!=Math.floor(i(Number.MAX_VALUE))||i(1/0)!=1/0},{acosh:function(t){var e=+t;return e<1?NaN:e>94906265.62425156?a(e)+u:o(e-1+s(e-1)*s(e+1))}})},53733:(t,e,r)=>{"use strict";var n=r(57330),o=Math.asinh,i=Math.log,a=Math.sqrt;n({target:"Math",stat:!0,forced:!(o&&1/o(0)>0)},{asinh:function t(e){var r=+e;return isFinite(r)&&0!=r?r<0?-t(-r):i(r+a(r*r+1)):r}})},68747:(t,e,r)=>{"use strict";var n=r(57330),o=Math.atanh,i=Math.log;n({target:"Math",stat:!0,forced:!(o&&1/o(-0)<0)},{atanh:function(t){var e=+t;return 0==e?e:i((1+e)/(1-e))/2}})},92098:(t,e,r)=>{"use strict";var n=r(57330),o=r(54059),i=Math.abs,a=Math.pow;n({target:"Math",stat:!0},{cbrt:function(t){var e=+t;return o(e)*a(i(e),1/3)}})},73694:(t,e,r)=>{"use strict";var n=r(57330),o=Math.floor,i=Math.log,a=Math.LOG2E;n({target:"Math",stat:!0},{clz32:function(t){var e=t>>>0;return e?31-o(i(e+.5)*a):32}})},15975:(t,e,r)=>{"use strict";var n=r(57330),o=r(45446),i=Math.cosh,a=Math.abs,s=Math.E;n({target:"Math",stat:!0,forced:!i||i(710)===1/0},{cosh:function(t){var e=o(a(t)-1)+1;return(e+1/(e*s*s))*(s/2)}})},43797:(t,e,r)=>{"use strict";var n=r(57330),o=r(45446);n({target:"Math",stat:!0,forced:o!=Math.expm1},{expm1:o})},39286:(t,e,r)=>{"use strict";r(57330)({target:"Math",stat:!0},{fround:r(49281)})},56791:(t,e,r)=>{"use strict";var n=r(57330),o=Math.hypot,i=Math.abs,a=Math.sqrt;n({target:"Math",stat:!0,arity:2,forced:!!o&&o(1/0,NaN)!==1/0},{hypot:function(t,e){for(var r,n,o=0,s=0,u=arguments.length,c=0;s<u;)c<(r=i(arguments[s++]))?(o=o*(n=c/r)*n+1,c=r):o+=r>0?(n=r/c)*n:r;return c===1/0?1/0:c*a(o)}})},73992:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=Math.imul;n({target:"Math",stat:!0,forced:o((function(){return-5!=i(4294967295,5)||2!=i.length}))},{imul:function(t,e){var r=65535,n=+t,o=+e,i=r&n,a=r&o;return 0|i*a+((r&n>>>16)*a+i*(r&o>>>16)<<16>>>0)}})},28161:(t,e,r)=>{"use strict";r(57330)({target:"Math",stat:!0},{log10:r(36200)})},30368:(t,e,r)=>{"use strict";r(57330)({target:"Math",stat:!0},{log1p:r(43611)})},63358:(t,e,r)=>{"use strict";var n=r(57330),o=Math.log,i=Math.LN2;n({target:"Math",stat:!0},{log2:function(t){return o(t)/i}})},80900:(t,e,r)=>{"use strict";r(57330)({target:"Math",stat:!0},{sign:r(54059)})},85765:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(45446),a=Math.abs,s=Math.exp,u=Math.E;n({target:"Math",stat:!0,forced:o((function(){return-2e-17!=Math.sinh(-2e-17)}))},{sinh:function(t){var e=+t;return a(e)<1?(i(e)-i(-e))/2:(s(e-1)-s(-e-1))*(u/2)}})},39680:(t,e,r)=>{"use strict";var n=r(57330),o=r(45446),i=Math.exp;n({target:"Math",stat:!0},{tanh:function(t){var e=+t,r=o(e),n=o(-e);return r==1/0?1:n==1/0?-1:(r-n)/(i(e)+i(-e))}})},4141:(t,e,r)=>{"use strict";r(81018)(Math,"Math",!0)},60765:(t,e,r)=>{"use strict";r(57330)({target:"Math",stat:!0},{trunc:r(78066)})},66586:(t,e,r)=>{"use strict";var n=r(57330),o=r(43310),i=r(44244),a=r(54516),s=r(1612),u=r(76277),c=r(82615),f=r(37058),l=r(2993),h=r(34973),p=r(45961),y=r(69155),d=r(13894),v=r(51019).f,g=r(77872).f,b=r(26337).f,m=r(71047),w=r(23688).trim,x="Number",k=a[x],S=s[x],_=k.prototype,O=a.TypeError,E=u("".slice),A=u("".charCodeAt),P=c(x,!k(" 0o1")||!k("0b1")||k("+0x1")),j=function(t){var e,r=arguments.length<1?0:k(function(t){var e=y(t,"number");return"bigint"==typeof e?e:function(t){var e,r,n,o,i,a,s,u,c=y(t,"number");if(p(c))throw O("Cannot convert a Symbol value to a number");if("string"==typeof c&&c.length>2)if(c=w(c),43===(e=A(c,0))||45===e){if(88===(r=A(c,2))||120===r)return NaN}else if(48===e){switch(A(c,1)){case 66:case 98:n=2,o=49;break;case 79:case 111:n=8,o=55;break;default:return+c}for(a=(i=E(c,2)).length,s=0;s<a;s++)if((u=A(i,s))<48||u>o)return NaN;return parseInt(i,n)}return+c}(e)}(t));return h(_,e=this)&&d((function(){m(e)}))?l(Object(r),this,j):r};j.prototype=_,P&&!o&&(_.constructor=j),n({global:!0,constructor:!0,wrap:!0,forced:P},{Number:j});var T=function(t,e){for(var r,n=i?v(e):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),o=0;n.length>o;o++)f(e,r=n[o])&&!f(t,r)&&b(t,r,g(e,r))};o&&S&&T(s[x],S),(P||o)&&T(s[x],k)},5225:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)})},52497:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0},{isFinite:r(23034)})},28582:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0},{isInteger:r(18057)})},53470:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0},{isNaN:function(t){return t!=t}})},42675:(t,e,r)=>{"use strict";var n=r(57330),o=r(18057),i=Math.abs;n({target:"Number",stat:!0},{isSafeInteger:function(t){return o(t)&&i(t)<=9007199254740991}})},31035:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991})},39192:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991})},68760:(t,e,r)=>{"use strict";var n=r(57330),o=r(29818);n({target:"Number",stat:!0,forced:Number.parseFloat!=o},{parseFloat:o})},92833:(t,e,r)=>{"use strict";var n=r(57330),o=r(20361);n({target:"Number",stat:!0,forced:Number.parseInt!=o},{parseInt:o})},11936:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(35206),a=r(71047),s=r(23295),u=r(36200),c=r(13894),f=RangeError,l=String,h=isFinite,p=Math.abs,y=Math.floor,d=Math.pow,v=Math.round,g=o(1..toExponential),b=o(s),m=o("".slice),w="-6.9000e-11"===g(-69e-12,4)&&"1.25e+0"===g(1.255,2)&&"1.235e+4"===g(12345,3)&&"3e+1"===g(25,0);n({target:"Number",proto:!0,forced:!w||!(c((function(){g(1,1/0)}))&&c((function(){g(1,-1/0)})))||!!c((function(){g(1/0,1/0),g(NaN,1/0)}))},{toExponential:function(t){var e=a(this);if(void 0===t)return g(e);var r=i(t);if(!h(e))return String(e);if(r<0||r>20)throw f("Incorrect fraction digits");if(w)return g(e,r);var n="",o="",s=0,c="",x="";if(e<0&&(n="-",e=-e),0===e)s=0,o=b("0",r+1);else{var k=u(e);s=y(k);var S=0,_=d(10,s-r);2*e>=(2*(S=v(e/_))+1)*_&&(S+=1),S>=d(10,r+1)&&(S/=10,s+=1),o=l(S)}return 0!==r&&(o=m(o,0,1)+"."+m(o,1)),0===s?(c="+",x="0"):(c=s>0?"+":"-",x=l(p(s))),n+(o+"e")+c+x}})},51246:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(35206),a=r(71047),s=r(23295),u=r(13894),c=RangeError,f=String,l=Math.floor,h=o(s),p=o("".slice),y=o(1..toFixed),d=function t(e,r,n){return 0===r?n:r%2==1?t(e,r-1,n*e):t(e*e,r/2,n)},v=function(t,e,r){for(var n=-1,o=r;++n<6;)o+=e*t[n],t[n]=o%1e7,o=l(o/1e7)},g=function(t,e){for(var r=6,n=0;--r>=0;)n+=t[r],t[r]=l(n/e),n=n%e*1e7},b=function(t){for(var e=6,r="";--e>=0;)if(""!==r||0===e||0!==t[e]){var n=f(t[e]);r=""===r?n:r+h("0",7-n.length)+n}return r};n({target:"Number",proto:!0,forced:u((function(){return"0.000"!==y(8e-5,3)||"1"!==y(.9,0)||"1.25"!==y(1.255,2)||"1000000000000000128"!==y(0xde0b6b3a7640080,0)}))||!u((function(){y({})}))},{toFixed:function(t){var e,r,n,o,s=a(this),u=i(t),l=[0,0,0,0,0,0],y="",m="0";if(u<0||u>20)throw c("Incorrect fraction digits");if(s!=s)return"NaN";if(s<=-1e21||s>=1e21)return f(s);if(s<0&&(y="-",s=-s),s>1e-21)if(r=(e=function(t){for(var e=0,r=t;r>=4096;)e+=12,r/=4096;for(;r>=2;)e+=1,r/=2;return e}(s*d(2,69,1))-69)<0?s*d(2,-e,1):s/d(2,e,1),r*=4503599627370496,(e=52-e)>0){for(v(l,0,r),n=u;n>=7;)v(l,1e7,0),n-=7;for(v(l,d(10,n,1),0),n=e-1;n>=23;)g(l,1<<23),n-=23;g(l,1<<n),v(l,1,1),g(l,2),m=b(l)}else v(l,0,r),v(l,1<<-e,0),m=b(l)+h("0",u);return u>0?y+((o=m.length)<=u?"0."+h("0",u-o)+m:p(m,0,o-u)+"."+p(m,o-u)):y+m}})},38778:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(13894),a=r(71047),s=o(1..toPrecision);n({target:"Number",proto:!0,forced:i((function(){return"1"!==s(1,void 0)}))||!i((function(){s({})}))},{toPrecision:function(t){return void 0===t?s(a(this)):s(a(this),t)}})},41450:(t,e,r)=>{"use strict";var n=r(57330),o=r(70168);n({target:"Object",stat:!0,arity:2,forced:Object.assign!==o},{assign:o})},90742:(t,e,r)=>{"use strict";r(57330)({target:"Object",stat:!0,sham:!r(44244)},{create:r(64714)})},63621:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(54046),a=r(88965),s=r(87706),u=r(26337);o&&n({target:"Object",proto:!0,forced:i},{__defineGetter__:function(t,e){u.f(s(this),t,{get:a(e),enumerable:!0,configurable:!0})}})},21741:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(68068).f;n({target:"Object",stat:!0,forced:Object.defineProperties!==i,sham:!o},{defineProperties:i})},52746:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(26337).f;n({target:"Object",stat:!0,forced:Object.defineProperty!==i,sham:!o},{defineProperty:i})},51834:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(54046),a=r(88965),s=r(87706),u=r(26337);o&&n({target:"Object",proto:!0,forced:i},{__defineSetter__:function(t,e){u.f(s(this),t,{set:a(e),enumerable:!0,configurable:!0})}})},71243:(t,e,r)=>{"use strict";var n=r(57330),o=r(19602).entries;n({target:"Object",stat:!0},{entries:function(t){return o(t)}})},82802:(t,e,r)=>{"use strict";var n=r(57330),o=r(46151),i=r(13894),a=r(3196),s=r(8420).onFreeze,u=Object.freeze;n({target:"Object",stat:!0,forced:i((function(){u(1)})),sham:!o},{freeze:function(t){return u&&a(t)?u(s(t)):t}})},71881:(t,e,r)=>{"use strict";var n=r(57330),o=r(29429),i=r(80955);n({target:"Object",stat:!0},{fromEntries:function(t){var e={};return o(t,(function(t,r){i(e,t,r)}),{AS_ENTRIES:!0}),e}})},16146:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(54721),a=r(77872).f,s=r(44244);n({target:"Object",stat:!0,forced:!s||o((function(){a(1)})),sham:!s},{getOwnPropertyDescriptor:function(t,e){return a(i(t),e)}})},89960:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(16660),a=r(54721),s=r(77872),u=r(80955);n({target:"Object",stat:!0,sham:!o},{getOwnPropertyDescriptors:function(t){for(var e,r,n=a(t),o=s.f,c=i(n),f={},l=0;c.length>l;)void 0!==(r=o(n,e=c[l++]))&&u(f,e,r);return f}})},13694:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(53990).f;n({target:"Object",stat:!0,forced:o((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:i})},40520:(t,e,r)=>{"use strict";var n=r(57330),o=r(24550),i=r(13894),a=r(78586),s=r(87706);n({target:"Object",stat:!0,forced:!o||i((function(){a.f(1)}))},{getOwnPropertySymbols:function(t){var e=a.f;return e?e(s(t)):[]}})},46748:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(87706),a=r(40175),s=r(66336);n({target:"Object",stat:!0,forced:o((function(){a(1)})),sham:!s},{getPrototypeOf:function(t){return a(i(t))}})},9389:(t,e,r)=>{"use strict";r(57330)({target:"Object",stat:!0},{hasOwn:r(37058)})},93406:(t,e,r)=>{"use strict";var n=r(57330),o=r(54284);n({target:"Object",stat:!0,forced:Object.isExtensible!==o},{isExtensible:o})},44292:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(3196),a=r(31030),s=r(47698),u=Object.isFrozen;n({target:"Object",stat:!0,forced:s||o((function(){u(1)}))},{isFrozen:function(t){return!i(t)||!(!s||"ArrayBuffer"!=a(t))||!!u&&u(t)}})},57285:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(3196),a=r(31030),s=r(47698),u=Object.isSealed;n({target:"Object",stat:!0,forced:s||o((function(){u(1)}))},{isSealed:function(t){return!i(t)||!(!s||"ArrayBuffer"!=a(t))||!!u&&u(t)}})},94482:(t,e,r)=>{"use strict";r(57330)({target:"Object",stat:!0},{is:r(79094)})},23484:(t,e,r)=>{"use strict";var n=r(57330),o=r(87706),i=r(68201);n({target:"Object",stat:!0,forced:r(13894)((function(){i(1)}))},{keys:function(t){return i(o(t))}})},35643:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(54046),a=r(87706),s=r(14748),u=r(40175),c=r(77872).f;o&&n({target:"Object",proto:!0,forced:i},{__lookupGetter__:function(t){var e,r=a(this),n=s(t);do{if(e=c(r,n))return e.get}while(r=u(r))}})},13148:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(54046),a=r(87706),s=r(14748),u=r(40175),c=r(77872).f;o&&n({target:"Object",proto:!0,forced:i},{__lookupSetter__:function(t){var e,r=a(this),n=s(t);do{if(e=c(r,n))return e.set}while(r=u(r))}})},93219:(t,e,r)=>{"use strict";var n=r(57330),o=r(3196),i=r(8420).onFreeze,a=r(46151),s=r(13894),u=Object.preventExtensions;n({target:"Object",stat:!0,forced:s((function(){u(1)})),sham:!a},{preventExtensions:function(t){return u&&o(t)?u(i(t)):t}})},49337:(t,e,r)=>{"use strict";var n=r(44244),o=r(55882),i=r(3196),a=r(87706),s=r(72191),u=Object.getPrototypeOf,c=Object.setPrototypeOf,f=Object.prototype,l="__proto__";if(n&&u&&c&&!(l in f))try{o(f,l,{configurable:!0,get:function(){return u(a(this))},set:function(t){var e=s(this);(i(t)||null===t)&&i(e)&&c(e,t)}})}catch(t){}},31079:(t,e,r)=>{"use strict";var n=r(57330),o=r(3196),i=r(8420).onFreeze,a=r(46151),s=r(13894),u=Object.seal;n({target:"Object",stat:!0,forced:s((function(){u(1)})),sham:!a},{seal:function(t){return u&&o(t)?u(i(t)):t}})},30419:(t,e,r)=>{"use strict";r(57330)({target:"Object",stat:!0},{setPrototypeOf:r(14776)})},69376:(t,e,r)=>{"use strict";var n=r(47775),o=r(89592),i=r(5719);n||o(Object.prototype,"toString",i,{unsafe:!0})},86242:(t,e,r)=>{"use strict";var n=r(57330),o=r(19602).values;n({target:"Object",stat:!0},{values:function(t){return o(t)}})},43161:(t,e,r)=>{"use strict";var n=r(57330),o=r(29818);n({global:!0,forced:parseFloat!=o},{parseFloat:o})},84125:(t,e,r)=>{"use strict";var n=r(57330),o=r(20361);n({global:!0,forced:parseInt!=o},{parseInt:o})},79200:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(88965),a=r(82487),s=r(93798),u=r(29429);n({target:"Promise",stat:!0,forced:r(48006)},{allSettled:function(t){var e=this,r=a.f(e),n=r.resolve,c=r.reject,f=s((function(){var r=i(e.resolve),a=[],s=0,c=1;u(t,(function(t){var i=s++,u=!1;c++,o(r,e,t).then((function(t){u||(u=!0,a[i]={status:"fulfilled",value:t},--c||n(a))}),(function(t){u||(u=!0,a[i]={status:"rejected",reason:t},--c||n(a))}))})),--c||n(a)}));return f.error&&c(f.value),r.promise}})},89396:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(88965),a=r(82487),s=r(93798),u=r(29429);n({target:"Promise",stat:!0,forced:r(48006)},{all:function(t){var e=this,r=a.f(e),n=r.resolve,c=r.reject,f=s((function(){var r=i(e.resolve),a=[],s=0,f=1;u(t,(function(t){var i=s++,u=!1;f++,o(r,e,t).then((function(t){u||(u=!0,a[i]=t,--f||n(a))}),c)})),--f||n(a)}));return f.error&&c(f.value),r.promise}})},52440:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(88965),a=r(12546),s=r(82487),u=r(93798),c=r(29429),f=r(48006),l="No one promise resolved";n({target:"Promise",stat:!0,forced:f},{any:function(t){var e=this,r=a("AggregateError"),n=s.f(e),f=n.resolve,h=n.reject,p=u((function(){var n=i(e.resolve),a=[],s=0,u=1,p=!1;c(t,(function(t){var i=s++,c=!1;u++,o(n,e,t).then((function(t){c||p||(p=!0,f(t))}),(function(t){c||p||(c=!0,a[i]=t,--u||h(new r(a,l)))}))})),--u||h(new r(a,l))}));return p.error&&h(p.value),n.promise}})},71938:(t,e,r)=>{"use strict";var n=r(57330),o=r(43310),i=r(86177).CONSTRUCTOR,a=r(32522),s=r(12546),u=r(34230),c=r(89592),f=a&&a.prototype;if(n({target:"Promise",proto:!0,forced:i,real:!0},{catch:function(t){return this.then(void 0,t)}}),!o&&u(a)){var l=s("Promise").prototype.catch;f.catch!==l&&c(f,"catch",l,{unsafe:!0})}},30993:(t,e,r)=>{"use strict";var n,o,i,a=r(57330),s=r(43310),u=r(63241),c=r(54516),f=r(83264),l=r(89592),h=r(14776),p=r(81018),y=r(3348),d=r(88965),v=r(34230),g=r(3196),b=r(89214),m=r(72976),w=r(33394).set,x=r(54653),k=r(45471),S=r(93798),_=r(7822),O=r(43023),E=r(32522),A=r(86177),P=r(82487),j="Promise",T=A.CONSTRUCTOR,M=A.REJECTION_EVENT,R=A.SUBCLASSING,I=O.getterFor(j),C=O.set,L=E&&E.prototype,D=E,B=L,N=c.TypeError,F=c.document,z=c.process,U=P.f,Y=U,G=!!(F&&F.createEvent&&c.dispatchEvent),H="unhandledrejection",W=function(t){var e;return!(!g(t)||!v(e=t.then))&&e},X=function(t,e){var r,n,o,i=e.value,a=1==e.state,s=a?t.ok:t.fail,u=t.resolve,c=t.reject,l=t.domain;try{s?(a||(2===e.rejection&&J(e),e.rejection=1),!0===s?r=i:(l&&l.enter(),r=s(i),l&&(l.exit(),o=!0)),r===t.promise?c(N("Promise-chain cycle")):(n=W(r))?f(n,r,u,c):u(r)):c(i)}catch(t){l&&!o&&l.exit(),c(t)}},q=function(t,e){t.notified||(t.notified=!0,x((function(){for(var r,n=t.reactions;r=n.get();)X(r,t);t.notified=!1,e&&!t.rejection&&Q(t)})))},V=function(t,e,r){var n,o;G?((n=F.createEvent("Event")).promise=e,n.reason=r,n.initEvent(t,!1,!0),c.dispatchEvent(n)):n={promise:e,reason:r},!M&&(o=c["on"+t])?o(n):t===H&&k("Unhandled promise rejection",r)},Q=function(t){f(w,c,(function(){var e,r=t.facade,n=t.value;if(K(t)&&(e=S((function(){u?z.emit("unhandledRejection",n,r):V(H,r,n)})),t.rejection=u||K(t)?2:1,e.error))throw e.value}))},K=function(t){return 1!==t.rejection&&!t.parent},J=function(t){f(w,c,(function(){var e=t.facade;u?z.emit("rejectionHandled",e):V("rejectionhandled",e,t.value)}))},Z=function(t,e,r){return function(n){t(e,n,r)}},$=function(t,e,r){t.done||(t.done=!0,r&&(t=r),t.value=e,t.state=2,q(t,!0))},tt=function t(e,r,n){if(!e.done){e.done=!0,n&&(e=n);try{if(e.facade===r)throw N("Promise can't be resolved itself");var o=W(r);o?x((function(){var n={done:!1};try{f(o,r,Z(t,n,e),Z($,n,e))}catch(t){$(n,t,e)}})):(e.value=r,e.state=1,q(e,!1))}catch(t){$({done:!1},t,e)}}};if(T&&(B=(D=function(t){b(this,B),d(t),f(n,this);var e=I(this);try{t(Z(tt,e),Z($,e))}catch(t){$(e,t)}}).prototype,(n=function(t){C(this,{type:j,done:!1,notified:!1,parent:!1,reactions:new _,rejection:!1,state:0,value:void 0})}).prototype=l(B,"then",(function(t,e){var r=I(this),n=U(m(this,D));return r.parent=!0,n.ok=!v(t)||t,n.fail=v(e)&&e,n.domain=u?z.domain:void 0,0==r.state?r.reactions.add(n):x((function(){X(n,r)})),n.promise})),o=function(){var t=new n,e=I(t);this.promise=t,this.resolve=Z(tt,e),this.reject=Z($,e)},P.f=U=function(t){return t===D||void 0===t?new o(t):Y(t)},!s&&v(E)&&L!==Object.prototype)){i=L.then,R||l(L,"then",(function(t,e){var r=this;return new D((function(t,e){f(i,r,t,e)})).then(t,e)}),{unsafe:!0});try{delete L.constructor}catch(t){}h&&h(L,B)}a({global:!0,constructor:!0,wrap:!0,forced:T},{Promise:D}),p(D,j,!1,!0),y(j)},6804:(t,e,r)=>{"use strict";var n=r(57330),o=r(43310),i=r(32522),a=r(13894),s=r(12546),u=r(34230),c=r(72976),f=r(37494),l=r(89592),h=i&&i.prototype;if(n({target:"Promise",proto:!0,real:!0,forced:!!i&&a((function(){h.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var e=c(this,s("Promise")),r=u(t);return this.then(r?function(r){return f(e,t()).then((function(){return r}))}:t,r?function(r){return f(e,t()).then((function(){throw r}))}:t)}}),!o&&u(i)){var p=s("Promise").prototype.finally;h.finally!==p&&l(h,"finally",p,{unsafe:!0})}},26037:(t,e,r)=>{"use strict";r(30993),r(89396),r(71938),r(84237),r(70794),r(49173)},84237:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(88965),a=r(82487),s=r(93798),u=r(29429);n({target:"Promise",stat:!0,forced:r(48006)},{race:function(t){var e=this,r=a.f(e),n=r.reject,c=s((function(){var a=i(e.resolve);u(t,(function(t){o(a,e,t).then(r.resolve,n)}))}));return c.error&&n(c.value),r.promise}})},70794:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(82487);n({target:"Promise",stat:!0,forced:r(86177).CONSTRUCTOR},{reject:function(t){var e=i.f(this);return o(e.reject,void 0,t),e.promise}})},49173:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(43310),a=r(32522),s=r(86177).CONSTRUCTOR,u=r(37494),c=o("Promise"),f=i&&!s;n({target:"Promise",stat:!0,forced:i||s},{resolve:function(t){return u(f&&this===c?a:this,t)}})},97800:(t,e,r)=>{"use strict";var n=r(57330),o=r(2090),i=r(88965),a=r(96302);n({target:"Reflect",stat:!0,forced:!r(13894)((function(){Reflect.apply((function(){}))}))},{apply:function(t,e,r){return o(i(t),e,a(r))}})},96620:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(2090),a=r(80944),s=r(52750),u=r(96302),c=r(3196),f=r(64714),l=r(13894),h=o("Reflect","construct"),p=Object.prototype,y=[].push,d=l((function(){function t(){}return!(h((function(){}),[],t)instanceof t)})),v=!l((function(){h((function(){}))})),g=d||v;n({target:"Reflect",stat:!0,forced:g,sham:g},{construct:function(t,e){s(t),u(e);var r=arguments.length<3?t:s(arguments[2]);if(v&&!d)return h(t,e,r);if(t==r){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var n=[null];return i(y,n,e),new(i(a,t,n))}var o=r.prototype,l=f(c(o)?o:p),g=i(t,l,e);return c(g)?g:l}})},78964:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(96302),a=r(14748),s=r(26337);n({target:"Reflect",stat:!0,forced:r(13894)((function(){Reflect.defineProperty(s.f({},1,{value:1}),1,{value:2})})),sham:!o},{defineProperty:function(t,e,r){i(t);var n=a(e);i(r);try{return s.f(t,n,r),!0}catch(t){return!1}}})},26204:(t,e,r)=>{"use strict";var n=r(57330),o=r(96302),i=r(77872).f;n({target:"Reflect",stat:!0},{deleteProperty:function(t,e){var r=i(o(t),e);return!(r&&!r.configurable)&&delete t[e]}})},1615:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(96302),a=r(77872);n({target:"Reflect",stat:!0,sham:!o},{getOwnPropertyDescriptor:function(t,e){return a.f(i(t),e)}})},48590:(t,e,r)=>{"use strict";var n=r(57330),o=r(96302),i=r(40175);n({target:"Reflect",stat:!0,sham:!r(66336)},{getPrototypeOf:function(t){return i(o(t))}})},88011:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(3196),a=r(96302),s=r(32674),u=r(77872),c=r(40175);n({target:"Reflect",stat:!0},{get:function t(e,r){var n,f,l=arguments.length<3?e:arguments[2];return a(e)===l?e[r]:(n=u.f(e,r))?s(n)?n.value:void 0===n.get?void 0:o(n.get,l):i(f=c(e))?t(f,r,l):void 0}})},79036:(t,e,r)=>{"use strict";r(57330)({target:"Reflect",stat:!0},{has:function(t,e){return e in t}})},76583:(t,e,r)=>{"use strict";var n=r(57330),o=r(96302),i=r(54284);n({target:"Reflect",stat:!0},{isExtensible:function(t){return o(t),i(t)}})},82590:(t,e,r)=>{"use strict";r(57330)({target:"Reflect",stat:!0},{ownKeys:r(16660)})},7158:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(96302);n({target:"Reflect",stat:!0,sham:!r(46151)},{preventExtensions:function(t){i(t);try{var e=o("Object","preventExtensions");return e&&e(t),!0}catch(t){return!1}}})},53023:(t,e,r)=>{"use strict";var n=r(57330),o=r(96302),i=r(19814),a=r(14776);a&&n({target:"Reflect",stat:!0},{setPrototypeOf:function(t,e){o(t),i(e);try{return a(t,e),!0}catch(t){return!1}}})},99498:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(96302),a=r(3196),s=r(32674),u=r(13894),c=r(26337),f=r(77872),l=r(40175),h=r(30654);n({target:"Reflect",stat:!0,forced:u((function(){var t=function(){},e=c.f(new t,"a",{configurable:!0});return!1!==Reflect.set(t.prototype,"a",1,e)}))},{set:function t(e,r,n){var u,p,y,d=arguments.length<4?e:arguments[3],v=f.f(i(e),r);if(!v){if(a(p=l(e)))return t(p,r,n,d);v=h(0)}if(s(v)){if(!1===v.writable||!a(d))return!1;if(u=f.f(d,r)){if(u.get||u.set||!1===u.writable)return!1;u.value=n,c.f(d,r,u)}else c.f(d,r,h(0,n))}else{if(void 0===(y=v.set))return!1;o(y,d,n)}return!0}})},7212:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(81018);n({global:!0},{Reflect:{}}),i(o.Reflect,"Reflect",!0)},60971:(t,e,r)=>{"use strict";var n=r(44244),o=r(54516),i=r(76277),a=r(82615),s=r(2993),u=r(81831),c=r(51019).f,f=r(34973),l=r(15076),h=r(18971),p=r(16503),y=r(25645),d=r(60492),v=r(89592),g=r(13894),b=r(37058),m=r(43023).enforce,w=r(3348),x=r(41398),k=r(51415),S=r(56002),_=x("match"),O=o.RegExp,E=O.prototype,A=o.SyntaxError,P=i(E.exec),j=i("".charAt),T=i("".replace),M=i("".indexOf),R=i("".slice),I=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,C=/a/g,L=/a/g,D=new O(C)!==C,B=y.MISSED_STICKY,N=y.UNSUPPORTED_Y;if(a("RegExp",n&&(!D||B||k||S||g((function(){return L[_]=!1,O(C)!=C||O(L)==L||"/a/i"!=O(C,"i")}))))){for(var F=function(t,e){var r,n,o,i,a,c,y=f(E,this),d=l(t),v=void 0===e,g=[],w=t;if(!y&&d&&v&&t.constructor===F)return t;if((d||f(E,t))&&(t=t.source,v&&(e=p(w))),t=void 0===t?"":h(t),e=void 0===e?"":h(e),w=t,k&&"dotAll"in C&&(n=!!e&&M(e,"s")>-1)&&(e=T(e,/s/g,"")),r=e,B&&"sticky"in C&&(o=!!e&&M(e,"y")>-1)&&N&&(e=T(e,/y/g,"")),S&&(i=function(t){for(var e,r=t.length,n=0,o="",i=[],a={},s=!1,u=!1,c=0,f="";n<=r;n++){if("\\"===(e=j(t,n)))e+=j(t,++n);else if("]"===e)s=!1;else if(!s)switch(!0){case"["===e:s=!0;break;case"("===e:P(I,R(t,n+1))&&(n+=2,u=!0),o+=e,c++;continue;case">"===e&&u:if(""===f||b(a,f))throw new A("Invalid capture group name");a[f]=!0,i[i.length]=[f,c],u=!1,f="";continue}u?f+=e:o+=e}return[o,i]}(t),t=i[0],g=i[1]),a=s(O(t,e),y?this:E,F),(n||o||g.length)&&(c=m(a),n&&(c.dotAll=!0,c.raw=F(function(t){for(var e,r=t.length,n=0,o="",i=!1;n<=r;n++)"\\"!==(e=j(t,n))?i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]":o+=e+j(t,++n);return o}(t),r)),o&&(c.sticky=!0),g.length&&(c.groups=g)),t!==w)try{u(a,"source",""===w?"(?:)":w)}catch(t){}return a},z=c(O),U=0;z.length>U;)d(F,O,z[U++]);E.constructor=F,F.prototype=E,v(o,"RegExp",F,{constructor:!0})}w("RegExp")},18045:(t,e,r)=>{"use strict";var n=r(44244),o=r(51415),i=r(31030),a=r(55882),s=r(43023).get,u=RegExp.prototype,c=TypeError;n&&o&&a(u,"dotAll",{configurable:!0,get:function(){if(this!==u){if("RegExp"===i(this))return!!s(this).dotAll;throw c("Incompatible receiver, RegExp required")}}})},75567:(t,e,r)=>{"use strict";var n=r(57330),o=r(56021);n({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},62349:(t,e,r)=>{"use strict";var n=r(54516),o=r(44244),i=r(55882),a=r(53941),s=r(13894),u=n.RegExp,c=u.prototype;o&&s((function(){var t=!0;try{u(".","d")}catch(e){t=!1}var e={},r="",n=t?"dgimsy":"gimsy",o=function(t,n){Object.defineProperty(e,t,{get:function(){return r+=n,!0}})},i={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(var a in t&&(i.hasIndices="d"),i)o(a,i[a]);return Object.getOwnPropertyDescriptor(c,"flags").get.call(e)!==n||r!==n}))&&i(c,"flags",{configurable:!0,get:a})},87803:(t,e,r)=>{"use strict";var n=r(44244),o=r(25645).MISSED_STICKY,i=r(31030),a=r(55882),s=r(43023).get,u=RegExp.prototype,c=TypeError;n&&o&&a(u,"sticky",{configurable:!0,get:function(){if(this!==u){if("RegExp"===i(this))return!!s(this).sticky;throw c("Incompatible receiver, RegExp required")}}})},43:(t,e,r)=>{"use strict";r(75567);var n,o,i=r(57330),a=r(83264),s=r(34230),u=r(96302),c=r(18971),f=(n=!1,(o=/[ac]/).exec=function(){return n=!0,/./.exec.apply(this,arguments)},!0===o.test("abc")&&n),l=/./.test;i({target:"RegExp",proto:!0,forced:!f},{test:function(t){var e=u(this),r=c(t),n=e.exec;if(!s(n))return a(l,e,r);var o=a(n,e,r);return null!==o&&(u(o),!0)}})},33043:(t,e,r)=>{"use strict";var n=r(33385).PROPER,o=r(89592),i=r(96302),a=r(18971),s=r(13894),u=r(16503),c="toString",f=RegExp.prototype[c],l=s((function(){return"/a/b"!=f.call({source:"a",flags:"b"})})),h=n&&f.name!=c;(l||h)&&o(RegExp.prototype,c,(function(){var t=i(this);return"/"+a(t.source)+"/"+a(u(t))}),{unsafe:!0})},20489:(t,e,r)=>{"use strict";r(48756)("Set",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(78704))},23252:(t,e,r)=>{"use strict";r(20489)},4319:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("anchor")},{anchor:function(t){return o(this,"a","name",t)}})},16528:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(72191),a=r(35206),s=r(18971),u=r(13894),c=o("".charAt);n({target:"String",proto:!0,forced:u((function(){return"\ud842"!=="𠮷".at(-2)}))},{at:function(t){var e=s(i(this)),r=e.length,n=a(t),o=n>=0?n:r+n;return o<0||o>=r?void 0:c(e,o)}})},39535:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("big")},{big:function(){return o(this,"big","","")}})},65667:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("blink")},{blink:function(){return o(this,"blink","","")}})},67484:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("bold")},{bold:function(){return o(this,"b","","")}})},52821:(t,e,r)=>{"use strict";var n=r(57330),o=r(32088).codeAt;n({target:"String",proto:!0},{codePointAt:function(t){return o(this,t)}})},78158:(t,e,r)=>{"use strict";var n,o=r(57330),i=r(15307),a=r(77872).f,s=r(6674),u=r(18971),c=r(50134),f=r(72191),l=r(86018),h=r(43310),p=i("".endsWith),y=i("".slice),d=Math.min,v=l("endsWith");o({target:"String",proto:!0,forced:!(!h&&!v&&(n=a(String.prototype,"endsWith"),n&&!n.writable)||v)},{endsWith:function(t){var e=u(f(this));c(t);var r=arguments.length>1?arguments[1]:void 0,n=e.length,o=void 0===r?n:d(s(r),n),i=u(t);return p?p(e,i,o):y(e,o-i.length,o)===i}})},52936:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("fixed")},{fixed:function(){return o(this,"tt","","")}})},13684:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("fontcolor")},{fontcolor:function(t){return o(this,"font","color",t)}})},4614:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("fontsize")},{fontsize:function(t){return o(this,"font","size",t)}})},52512:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(59625),a=RangeError,s=String.fromCharCode,u=String.fromCodePoint,c=o([].join);n({target:"String",stat:!0,arity:1,forced:!!u&&1!=u.length},{fromCodePoint:function(t){for(var e,r=[],n=arguments.length,o=0;n>o;){if(e=+arguments[o++],i(e,1114111)!==e)throw a(e+" is not a valid code point");r[o]=e<65536?s(e):s(55296+((e-=65536)>>10),e%1024+56320)}return c(r,"")}})},32752:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(50134),a=r(72191),s=r(18971),u=r(86018),c=o("".indexOf);n({target:"String",proto:!0,forced:!u("includes")},{includes:function(t){return!!~c(s(a(this)),s(i(t)),arguments.length>1?arguments[1]:void 0)}})},56223:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(72191),a=r(18971),s=o("".charCodeAt);n({target:"String",proto:!0},{isWellFormed:function(){for(var t=a(i(this)),e=t.length,r=0;r<e;r++){var n=s(t,r);if(55296==(63488&n)&&(n>=56320||++r>=e||56320!=(64512&s(t,r))))return!1}return!0}})},77494:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("italics")},{italics:function(){return o(this,"i","","")}})},62302:(t,e,r)=>{"use strict";var n=r(32088).charAt,o=r(18971),i=r(43023),a=r(99825),s=r(38351),u="String Iterator",c=i.set,f=i.getterFor(u);a(String,"String",(function(t){c(this,{type:u,string:o(t),index:0})}),(function(){var t,e=f(this),r=e.string,o=e.index;return o>=r.length?s(void 0,!0):(t=n(r,o),e.index+=t.length,s(t,!1))}))},40536:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("link")},{link:function(t){return o(this,"a","href",t)}})},74202:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(15307),a=r(91740),s=r(38351),u=r(72191),c=r(6674),f=r(18971),l=r(96302),h=r(18850),p=r(31030),y=r(15076),d=r(16503),v=r(16040),g=r(89592),b=r(13894),m=r(41398),w=r(72976),x=r(68279),k=r(10510),S=r(43023),_=r(43310),O=m("matchAll"),E="RegExp String",A=E+" Iterator",P=S.set,j=S.getterFor(A),T=RegExp.prototype,M=TypeError,R=i("".indexOf),I=i("".matchAll),C=!!I&&!b((function(){I("a",/./)})),L=a((function(t,e,r,n){P(this,{type:A,regexp:t,string:e,global:r,unicode:n,done:!1})}),E,(function(){var t=j(this);if(t.done)return s(void 0,!0);var e=t.regexp,r=t.string,n=k(e,r);return null===n?(t.done=!0,s(void 0,!0)):t.global?(""===f(n[0])&&(e.lastIndex=x(r,c(e.lastIndex),t.unicode)),s(n,!1)):(t.done=!0,s(n,!1))})),D=function(t){var e,r,n,o=l(this),i=f(t),a=w(o,RegExp),s=f(d(o));return e=new a(a===RegExp?o.source:o,s),r=!!~R(s,"g"),n=!!~R(s,"u"),e.lastIndex=c(o.lastIndex),new L(e,i,r,n)};n({target:"String",proto:!0,forced:C},{matchAll:function(t){var e,r,n,i,a=u(this);if(h(t)){if(C)return I(a,t)}else{if(y(t)&&(e=f(u(d(t))),!~R(e,"g")))throw M("`.matchAll` does not allow non-global regexes");if(C)return I(a,t);if(void 0===(n=v(t,O))&&_&&"RegExp"==p(t)&&(n=D),n)return o(n,t,a)}return r=f(a),i=new RegExp(t,"g"),_?o(D,i,r):i[O](r)}}),_||O in T||g(T,O,D)},92781:(t,e,r)=>{"use strict";var n=r(83264),o=r(22804),i=r(96302),a=r(18850),s=r(6674),u=r(18971),c=r(72191),f=r(16040),l=r(68279),h=r(10510);o("match",(function(t,e,r){return[function(e){var r=c(this),o=a(e)?void 0:f(e,t);return o?n(o,e,r):new RegExp(e)[t](u(r))},function(t){var n=i(this),o=u(t),a=r(e,n,o);if(a.done)return a.value;if(!n.global)return h(n,o);var c=n.unicode;n.lastIndex=0;for(var f,p=[],y=0;null!==(f=h(n,o));){var d=u(f[0]);p[y]=d,""===d&&(n.lastIndex=l(o,s(n.lastIndex),c)),y++}return 0===y?null:p}]}))},49615:(t,e,r)=>{"use strict";var n=r(57330),o=r(86424).end;n({target:"String",proto:!0,forced:r(92980)},{padEnd:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},94209:(t,e,r)=>{"use strict";var n=r(57330),o=r(86424).start;n({target:"String",proto:!0,forced:r(92980)},{padStart:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},84031:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(54721),a=r(87706),s=r(18971),u=r(43716),c=o([].push),f=o([].join);n({target:"String",stat:!0},{raw:function(t){var e=i(a(t).raw),r=u(e);if(!r)return"";for(var n=arguments.length,o=[],l=0;;){if(c(o,s(e[l++])),l===r)return f(o,"");l<n&&c(o,s(arguments[l]))}}})},33259:(t,e,r)=>{"use strict";r(57330)({target:"String",proto:!0},{repeat:r(23295)})},22152:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(76277),a=r(72191),s=r(34230),u=r(18850),c=r(15076),f=r(18971),l=r(16040),h=r(16503),p=r(42012),y=r(41398),d=r(43310),v=y("replace"),g=TypeError,b=i("".indexOf),m=i("".replace),w=i("".slice),x=Math.max,k=function(t,e,r){return r>t.length?-1:""===e?r:b(t,e,r)};n({target:"String",proto:!0},{replaceAll:function(t,e){var r,n,i,y,S,_,O,E,A,P=a(this),j=0,T=0,M="";if(!u(t)){if((r=c(t))&&(n=f(a(h(t))),!~b(n,"g")))throw g("`.replaceAll` does not allow non-global regexes");if(i=l(t,v))return o(i,t,P,e);if(d&&r)return m(f(P),t,e)}for(y=f(P),S=f(t),(_=s(e))||(e=f(e)),O=S.length,E=x(1,O),j=k(y,S,0);-1!==j;)A=_?f(e(S,j,y)):p(S,y,j,[],void 0,e),M+=w(y,T,j)+A,T=j+O,j=k(y,S,j+E);return T<y.length&&(M+=w(y,T)),M}})},68011:(t,e,r)=>{"use strict";var n=r(2090),o=r(83264),i=r(76277),a=r(22804),s=r(13894),u=r(96302),c=r(34230),f=r(18850),l=r(35206),h=r(6674),p=r(18971),y=r(72191),d=r(68279),v=r(16040),g=r(42012),b=r(10510),m=r(41398)("replace"),w=Math.max,x=Math.min,k=i([].concat),S=i([].push),_=i("".indexOf),O=i("".slice),E="$0"==="a".replace(/./,"$0"),A=!!/./[m]&&""===/./[m]("a","$0");a("replace",(function(t,e,r){var i=A?"$":"$0";return[function(t,r){var n=y(this),i=f(t)?void 0:v(t,m);return i?o(i,t,n,r):o(e,p(n),t,r)},function(t,o){var a=u(this),s=p(t);if("string"==typeof o&&-1===_(o,i)&&-1===_(o,"$<")){var f=r(e,a,s,o);if(f.done)return f.value}var y=c(o);y||(o=p(o));var v=a.global;if(v){var m=a.unicode;a.lastIndex=0}for(var E=[];;){var A=b(a,s);if(null===A)break;if(S(E,A),!v)break;""===p(A[0])&&(a.lastIndex=d(s,h(a.lastIndex),m))}for(var P,j="",T=0,M=0;M<E.length;M++){for(var R=p((A=E[M])[0]),I=w(x(l(A.index),s.length),0),C=[],L=1;L<A.length;L++)S(C,void 0===(P=A[L])?P:String(P));var D=A.groups;if(y){var B=k([R],C,I,s);void 0!==D&&S(B,D);var N=p(n(o,void 0,B))}else N=g(R,s,I,C,D,o);I>=T&&(j+=O(s,T,I)+N,T=I+R.length)}return j+O(s,T)}]}),!!s((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!E||A)},47015:(t,e,r)=>{"use strict";var n=r(83264),o=r(22804),i=r(96302),a=r(18850),s=r(72191),u=r(79094),c=r(18971),f=r(16040),l=r(10510);o("search",(function(t,e,r){return[function(e){var r=s(this),o=a(e)?void 0:f(e,t);return o?n(o,e,r):new RegExp(e)[t](c(r))},function(t){var n=i(this),o=c(t),a=r(e,n,o);if(a.done)return a.value;var s=n.lastIndex;u(s,0)||(n.lastIndex=0);var f=l(n,o);return u(n.lastIndex,s)||(n.lastIndex=s),null===f?-1:f.index}]}))},60762:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("small")},{small:function(){return o(this,"small","","")}})},45238:(t,e,r)=>{"use strict";var n=r(2090),o=r(83264),i=r(76277),a=r(22804),s=r(96302),u=r(18850),c=r(15076),f=r(72191),l=r(72976),h=r(68279),p=r(6674),y=r(18971),d=r(16040),v=r(68020),g=r(10510),b=r(56021),m=r(25645),w=r(13894),x=m.UNSUPPORTED_Y,k=4294967295,S=Math.min,_=[].push,O=i(/./.exec),E=i(_),A=i("".slice);a("split",(function(t,e,r){var i;return i="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,r){var i=y(f(this)),a=void 0===r?k:r>>>0;if(0===a)return[];if(void 0===t)return[i];if(!c(t))return o(e,i,t,a);for(var s,u,l,h=[],p=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),d=0,g=new RegExp(t.source,p+"g");(s=o(b,g,i))&&!((u=g.lastIndex)>d&&(E(h,A(i,d,s.index)),s.length>1&&s.index<i.length&&n(_,h,v(s,1)),l=s[0].length,d=u,h.length>=a));)g.lastIndex===s.index&&g.lastIndex++;return d===i.length?!l&&O(g,"")||E(h,""):E(h,A(i,d)),h.length>a?v(h,0,a):h}:"0".split(void 0,0).length?function(t,r){return void 0===t&&0===r?[]:o(e,this,t,r)}:e,[function(e,r){var n=f(this),a=u(e)?void 0:d(e,t);return a?o(a,e,n,r):o(i,y(n),e,r)},function(t,n){var o=s(this),a=y(t),u=r(i,o,a,n,i!==e);if(u.done)return u.value;var c=l(o,RegExp),f=o.unicode,d=(o.ignoreCase?"i":"")+(o.multiline?"m":"")+(o.unicode?"u":"")+(x?"g":"y"),v=new c(x?"^(?:"+o.source+")":o,d),b=void 0===n?k:n>>>0;if(0===b)return[];if(0===a.length)return null===g(v,a)?[a]:[];for(var m=0,w=0,_=[];w<a.length;){v.lastIndex=x?0:w;var O,P=g(v,x?A(a,w):a);if(null===P||(O=S(p(v.lastIndex+(x?w:0)),a.length))===m)w=h(a,w,f);else{if(E(_,A(a,m,w)),_.length===b)return _;for(var j=1;j<=P.length-1;j++)if(E(_,P[j]),_.length===b)return _;w=m=O}}return E(_,A(a,m)),_}]}),!!w((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var r="ab".split(t);return 2!==r.length||"a"!==r[0]||"b"!==r[1]})),x)},39463:(t,e,r)=>{"use strict";var n,o=r(57330),i=r(15307),a=r(77872).f,s=r(6674),u=r(18971),c=r(50134),f=r(72191),l=r(86018),h=r(43310),p=i("".startsWith),y=i("".slice),d=Math.min,v=l("startsWith");o({target:"String",proto:!0,forced:!(!h&&!v&&(n=a(String.prototype,"startsWith"),n&&!n.writable)||v)},{startsWith:function(t){var e=u(f(this));c(t);var r=s(d(arguments.length>1?arguments[1]:void 0,e.length)),n=u(t);return p?p(e,n,r):y(e,r,r+n.length)===n}})},4659:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("strike")},{strike:function(){return o(this,"strike","","")}})},5604:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("sub")},{sub:function(){return o(this,"sub","","")}})},56267:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(72191),a=r(35206),s=r(18971),u=o("".slice),c=Math.max,f=Math.min;n({target:"String",proto:!0,forced:!"".substr||"b"!=="ab".substr(-1)},{substr:function(t,e){var r,n,o=s(i(this)),l=o.length,h=a(t);return h===1/0&&(h=0),h<0&&(h=c(l+h,0)),(r=void 0===e?l:a(e))<=0||r===1/0||h>=(n=f(h+r,l))?"":u(o,h,n)}})},46073:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("sup")},{sup:function(){return o(this,"sup","","")}})},26395:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(76277),a=r(72191),s=r(18971),u=r(13894),c=Array,f=i("".charAt),l=i("".charCodeAt),h=i([].join),p="".toWellFormed,y=p&&u((function(){return"1"!==o(p,1)}));n({target:"String",proto:!0,forced:y},{toWellFormed:function(){var t=s(a(this));if(y)return o(p,t);for(var e=t.length,r=c(e),n=0;n<e;n++){var i=l(t,n);55296!=(63488&i)?r[n]=f(t,n):i>=56320||n+1>=e||56320!=(64512&l(t,n+1))?r[n]="�":(r[n]=f(t,n),r[++n]=f(t,n))}return h(r,"")}})},49324:(t,e,r)=>{"use strict";r(14529);var n=r(57330),o=r(21791);n({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==o},{trimEnd:o})},57962:(t,e,r)=>{"use strict";var n=r(57330),o=r(65315);n({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==o},{trimLeft:o})},14529:(t,e,r)=>{"use strict";var n=r(57330),o=r(21791);n({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==o},{trimRight:o})},27153:(t,e,r)=>{"use strict";r(57962);var n=r(57330),o=r(65315);n({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==o},{trimStart:o})},73866:(t,e,r)=>{"use strict";var n=r(57330),o=r(23688).trim;n({target:"String",proto:!0,forced:r(55833)("trim")},{trim:function(){return o(this)}})},58055:(t,e,r)=>{"use strict";r(46619)("asyncIterator")},19539:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(83264),a=r(76277),s=r(43310),u=r(44244),c=r(24550),f=r(13894),l=r(37058),h=r(34973),p=r(96302),y=r(54721),d=r(14748),v=r(18971),g=r(30654),b=r(64714),m=r(68201),w=r(51019),x=r(53990),k=r(78586),S=r(77872),_=r(26337),O=r(68068),E=r(12028),A=r(89592),P=r(55882),j=r(38365),T=r(96894),M=r(42570),R=r(67025),I=r(41398),C=r(30400),L=r(46619),D=r(52231),B=r(81018),N=r(43023),F=r(87265).forEach,z=T("hidden"),U="Symbol",Y="prototype",G=N.set,H=N.getterFor(U),W=Object[Y],X=o.Symbol,q=X&&X[Y],V=o.TypeError,Q=o.QObject,K=S.f,J=_.f,Z=x.f,$=E.f,tt=a([].push),et=j("symbols"),rt=j("op-symbols"),nt=j("wks"),ot=!Q||!Q[Y]||!Q[Y].findChild,it=u&&f((function(){return 7!=b(J({},"a",{get:function(){return J(this,"a",{value:7}).a}})).a}))?function(t,e,r){var n=K(W,e);n&&delete W[e],J(t,e,r),n&&t!==W&&J(W,e,n)}:J,at=function(t,e){var r=et[t]=b(q);return G(r,{type:U,tag:t,description:e}),u||(r.description=e),r},st=function(t,e,r){t===W&&st(rt,e,r),p(t);var n=d(e);return p(r),l(et,n)?(r.enumerable?(l(t,z)&&t[z][n]&&(t[z][n]=!1),r=b(r,{enumerable:g(0,!1)})):(l(t,z)||J(t,z,g(1,{})),t[z][n]=!0),it(t,n,r)):J(t,n,r)},ut=function(t,e){p(t);var r=y(e),n=m(r).concat(ht(r));return F(n,(function(e){u&&!i(ct,r,e)||st(t,e,r[e])})),t},ct=function(t){var e=d(t),r=i($,this,e);return!(this===W&&l(et,e)&&!l(rt,e))&&(!(r||!l(this,e)||!l(et,e)||l(this,z)&&this[z][e])||r)},ft=function(t,e){var r=y(t),n=d(e);if(r!==W||!l(et,n)||l(rt,n)){var o=K(r,n);return!o||!l(et,n)||l(r,z)&&r[z][n]||(o.enumerable=!0),o}},lt=function(t){var e=Z(y(t)),r=[];return F(e,(function(t){l(et,t)||l(M,t)||tt(r,t)})),r},ht=function(t){var e=t===W,r=Z(e?rt:y(t)),n=[];return F(r,(function(t){!l(et,t)||e&&!l(W,t)||tt(n,et[t])})),n};c||(A(q=(X=function(){if(h(q,this))throw V("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?v(arguments[0]):void 0,e=R(t);return u&&ot&&it(W,e,{configurable:!0,set:function t(r){this===W&&i(t,rt,r),l(this,z)&&l(this[z],e)&&(this[z][e]=!1),it(this,e,g(1,r))}}),at(e,t)})[Y],"toString",(function(){return H(this).tag})),A(X,"withoutSetter",(function(t){return at(R(t),t)})),E.f=ct,_.f=st,O.f=ut,S.f=ft,w.f=x.f=lt,k.f=ht,C.f=function(t){return at(I(t),t)},u&&(P(q,"description",{configurable:!0,get:function(){return H(this).description}}),s||A(W,"propertyIsEnumerable",ct,{unsafe:!0}))),n({global:!0,constructor:!0,wrap:!0,forced:!c,sham:!c},{Symbol:X}),F(m(nt),(function(t){L(t)})),n({target:U,stat:!0,forced:!c},{useSetter:function(){ot=!0},useSimple:function(){ot=!1}}),n({target:"Object",stat:!0,forced:!c,sham:!u},{create:function(t,e){return void 0===e?b(t):ut(b(t),e)},defineProperty:st,defineProperties:ut,getOwnPropertyDescriptor:ft}),n({target:"Object",stat:!0,forced:!c},{getOwnPropertyNames:lt}),D(),B(X,U),M[z]=!0},4613:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(54516),a=r(76277),s=r(37058),u=r(34230),c=r(34973),f=r(18971),l=r(55882),h=r(79129),p=i.Symbol,y=p&&p.prototype;if(o&&u(p)&&(!("description"in y)||void 0!==p().description)){var d={},v=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:f(arguments[0]),e=c(y,this)?new p(t):void 0===t?p():p(t);return""===t&&(d[e]=!0),e};h(v,p),v.prototype=y,y.constructor=v;var g="Symbol(test)"==String(p("test")),b=a(y.valueOf),m=a(y.toString),w=/^Symbol\((.*)\)[^)]+$/,x=a("".replace),k=a("".slice);l(y,"description",{configurable:!0,get:function(){var t=b(this);if(s(d,t))return"";var e=m(t),r=g?k(e,7,-1):x(e,w,"$1");return""===r?void 0:r}}),n({global:!0,constructor:!0,forced:!0},{Symbol:v})}},14659:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(37058),a=r(18971),s=r(38365),u=r(29129),c=s("string-to-symbol-registry"),f=s("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!u},{for:function(t){var e=a(t);if(i(c,e))return c[e];var r=o("Symbol")(e);return c[e]=r,f[r]=e,r}})},86393:(t,e,r)=>{"use strict";r(46619)("hasInstance")},79040:(t,e,r)=>{"use strict";r(46619)("isConcatSpreadable")},79145:(t,e,r)=>{"use strict";r(46619)("iterator")},47180:(t,e,r)=>{"use strict";r(19539),r(14659),r(11911),r(83761),r(40520)},11911:(t,e,r)=>{"use strict";var n=r(57330),o=r(37058),i=r(45961),a=r(2854),s=r(38365),u=r(29129),c=s("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!u},{keyFor:function(t){if(!i(t))throw TypeError(a(t)+" is not a symbol");if(o(c,t))return c[t]}})},64145:(t,e,r)=>{"use strict";r(46619)("matchAll")},16517:(t,e,r)=>{"use strict";r(46619)("match")},34659:(t,e,r)=>{"use strict";r(46619)("replace")},95582:(t,e,r)=>{"use strict";r(46619)("search")},47661:(t,e,r)=>{"use strict";r(46619)("species")},63745:(t,e,r)=>{"use strict";r(46619)("split")},85270:(t,e,r)=>{"use strict";var n=r(46619),o=r(52231);n("toPrimitive"),o()},86481:(t,e,r)=>{"use strict";var n=r(12546),o=r(46619),i=r(81018);o("toStringTag"),i(n("Symbol"),"Symbol")},26606:(t,e,r)=>{"use strict";r(46619)("unscopables")},19540:(t,e,r)=>{"use strict";var n=r(19548),o=r(43716),i=r(35206),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("at",(function(t){var e=a(this),r=o(e),n=i(t),s=n>=0?n:r+n;return s<0||s>=r?void 0:e[s]}))},65049:(t,e,r)=>{"use strict";var n=r(76277),o=r(19548),i=n(r(92316)),a=o.aTypedArray;(0,o.exportTypedArrayMethod)("copyWithin",(function(t,e){return i(a(this),t,e,arguments.length>2?arguments[2]:void 0)}))},75608:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).every,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("every",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},30452:(t,e,r)=>{"use strict";var n=r(19548),o=r(47774),i=r(1490),a=r(98619),s=r(83264),u=r(76277),c=r(13894),f=n.aTypedArray,l=n.exportTypedArrayMethod,h=u("".slice);l("fill",(function(t){var e=arguments.length;f(this);var r="Big"===h(a(this),0,3)?i(t):+t;return s(o,this,r,e>1?arguments[1]:void 0,e>2?arguments[2]:void 0)}),c((function(){var t=0;return new Int8Array(2).fill({valueOf:function(){return t++}}),1!==t})))},29628:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).filter,i=r(35967),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("filter",(function(t){var e=o(a(this),t,arguments.length>1?arguments[1]:void 0);return i(this,e)}))},10901:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).findIndex,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findIndex",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},70834:(t,e,r)=>{"use strict";var n=r(19548),o=r(80728).findLastIndex,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findLastIndex",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},10386:(t,e,r)=>{"use strict";var n=r(19548),o=r(80728).findLast,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findLast",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},71790:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).find,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("find",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},95477:(t,e,r)=>{"use strict";r(63842)("Float32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},38039:(t,e,r)=>{"use strict";r(63842)("Float64",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},73526:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).forEach,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("forEach",(function(t){o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},97913:(t,e,r)=>{"use strict";var n=r(93890);(0,r(19548).exportTypedArrayStaticMethod)("from",r(25599),n)},24319:(t,e,r)=>{"use strict";var n=r(19548),o=r(60452).includes,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("includes",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},27807:(t,e,r)=>{"use strict";var n=r(19548),o=r(60452).indexOf,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("indexOf",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},39134:(t,e,r)=>{"use strict";r(63842)("Int16",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},51257:(t,e,r)=>{"use strict";r(63842)("Int32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},88586:(t,e,r)=>{"use strict";r(63842)("Int8",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},57207:(t,e,r)=>{"use strict";var n=r(54516),o=r(13894),i=r(76277),a=r(19548),s=r(24133),u=r(41398)("iterator"),c=n.Uint8Array,f=i(s.values),l=i(s.keys),h=i(s.entries),p=a.aTypedArray,y=a.exportTypedArrayMethod,d=c&&c.prototype,v=!o((function(){d[u].call([1])})),g=!!d&&d.values&&d[u]===d.values&&"values"===d.values.name,b=function(){return f(p(this))};y("entries",(function(){return h(p(this))}),v),y("keys",(function(){return l(p(this))}),v),y("values",b,v||!g,{name:"values"}),y(u,b,v||!g,{name:"values"})},97371:(t,e,r)=>{"use strict";var n=r(19548),o=r(76277),i=n.aTypedArray,a=n.exportTypedArrayMethod,s=o([].join);a("join",(function(t){return s(i(this),t)}))},91897:(t,e,r)=>{"use strict";var n=r(19548),o=r(2090),i=r(85773),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("lastIndexOf",(function(t){var e=arguments.length;return o(i,a(this),e>1?[t,arguments[1]]:[t])}))},43418:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).map,i=r(62718),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("map",(function(t){return o(a(this),t,arguments.length>1?arguments[1]:void 0,(function(t,e){return new(i(t))(e)}))}))},68709:(t,e,r)=>{"use strict";var n=r(19548),o=r(93890),i=n.aTypedArrayConstructor;(0,n.exportTypedArrayStaticMethod)("of",(function(){for(var t=0,e=arguments.length,r=new(i(this))(e);e>t;)r[t]=arguments[t++];return r}),o)},62476:(t,e,r)=>{"use strict";var n=r(19548),o=r(73333).right,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("reduceRight",(function(t){var e=arguments.length;return o(i(this),t,e,e>1?arguments[1]:void 0)}))},46255:(t,e,r)=>{"use strict";var n=r(19548),o=r(73333).left,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("reduce",(function(t){var e=arguments.length;return o(i(this),t,e,e>1?arguments[1]:void 0)}))},42205:(t,e,r)=>{"use strict";var n=r(19548),o=n.aTypedArray,i=n.exportTypedArrayMethod,a=Math.floor;i("reverse",(function(){for(var t,e=this,r=o(e).length,n=a(r/2),i=0;i<n;)t=e[i],e[i++]=e[--r],e[r]=t;return e}))},43334:(t,e,r)=>{"use strict";var n=r(54516),o=r(83264),i=r(19548),a=r(43716),s=r(4408),u=r(87706),c=r(13894),f=n.RangeError,l=n.Int8Array,h=l&&l.prototype,p=h&&h.set,y=i.aTypedArray,d=i.exportTypedArrayMethod,v=!c((function(){var t=new Uint8ClampedArray(2);return o(p,t,{length:1,0:3},1),3!==t[1]})),g=v&&i.NATIVE_ARRAY_BUFFER_VIEWS&&c((function(){var t=new l(2);return t.set(1),t.set("2",1),0!==t[0]||2!==t[1]}));d("set",(function(t){y(this);var e=s(arguments.length>1?arguments[1]:void 0,1),r=u(t);if(v)return o(p,this,r,e);var n=this.length,i=a(r),c=0;if(i+e>n)throw f("Wrong length");for(;c<i;)this[e+c]=r[c++]}),!v||g)},75337:(t,e,r)=>{"use strict";var n=r(19548),o=r(62718),i=r(13894),a=r(52999),s=n.aTypedArray;(0,n.exportTypedArrayMethod)("slice",(function(t,e){for(var r=a(s(this),t,e),n=o(this),i=0,u=r.length,c=new n(u);u>i;)c[i]=r[i++];return c}),i((function(){new Int8Array(1).slice()})))},97598:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).some,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("some",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},45433:(t,e,r)=>{"use strict";var n=r(54516),o=r(15307),i=r(13894),a=r(88965),s=r(53347),u=r(19548),c=r(50419),f=r(72693),l=r(49229),h=r(90602),p=u.aTypedArray,y=u.exportTypedArrayMethod,d=n.Uint16Array,v=d&&o(d.prototype.sort),g=!(!v||i((function(){v(new d(2),null)}))&&i((function(){v(new d(2),{})}))),b=!!v&&!i((function(){if(l)return l<74;if(c)return c<67;if(f)return!0;if(h)return h<602;var t,e,r=new d(516),n=Array(516);for(t=0;t<516;t++)e=t%4,r[t]=515-t,n[t]=t-2*e+3;for(v(r,(function(t,e){return(t/4|0)-(e/4|0)})),t=0;t<516;t++)if(r[t]!==n[t])return!0}));y("sort",(function(t){return void 0!==t&&a(t),b?v(this,t):s(p(this),function(t){return function(e,r){return void 0!==t?+t(e,r)||0:r!=r?-1:e!=e?1:0===e&&0===r?1/e>0&&1/r<0?1:-1:e>r}}(t))}),!b||g)},64188:(t,e,r)=>{"use strict";var n=r(19548),o=r(6674),i=r(59625),a=r(62718),s=n.aTypedArray;(0,n.exportTypedArrayMethod)("subarray",(function(t,e){var r=s(this),n=r.length,u=i(t,n);return new(a(r))(r.buffer,r.byteOffset+u*r.BYTES_PER_ELEMENT,o((void 0===e?n:i(e,n))-u))}))},84880:(t,e,r)=>{"use strict";var n=r(54516),o=r(2090),i=r(19548),a=r(13894),s=r(52999),u=n.Int8Array,c=i.aTypedArray,f=i.exportTypedArrayMethod,l=[].toLocaleString,h=!!u&&a((function(){l.call(new u(1))}));f("toLocaleString",(function(){return o(l,h?s(c(this)):c(this),s(arguments))}),a((function(){return[1,2].toLocaleString()!=new u([1,2]).toLocaleString()}))||!a((function(){u.prototype.toLocaleString.call([1,2])})))},92002:(t,e,r)=>{"use strict";var n=r(13729),o=r(19548),i=o.aTypedArray,a=o.exportTypedArrayMethod,s=o.getTypedArrayConstructor;a("toReversed",(function(){return n(i(this),s(this))}))},97288:(t,e,r)=>{"use strict";var n=r(19548),o=r(76277),i=r(88965),a=r(35040),s=n.aTypedArray,u=n.getTypedArrayConstructor,c=n.exportTypedArrayMethod,f=o(n.TypedArrayPrototype.sort);c("toSorted",(function(t){void 0!==t&&i(t);var e=s(this),r=a(u(e),e);return f(r,t)}))},38769:(t,e,r)=>{"use strict";var n=r(19548).exportTypedArrayMethod,o=r(13894),i=r(54516),a=r(76277),s=i.Uint8Array,u=s&&s.prototype||{},c=[].toString,f=a([].join);o((function(){c.call({})}))&&(c=function(){return f(this)});var l=u.toString!=c;n("toString",c,l)},19972:(t,e,r)=>{"use strict";r(63842)("Uint16",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},98902:(t,e,r)=>{"use strict";r(63842)("Uint32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},170:(t,e,r)=>{"use strict";r(63842)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},68266:(t,e,r)=>{"use strict";r(63842)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}),!0)},71465:(t,e,r)=>{"use strict";var n=r(33547),o=r(19548),i=r(98074),a=r(35206),s=r(1490),u=o.aTypedArray,c=o.getTypedArrayConstructor,f=o.exportTypedArrayMethod,l=!!function(){try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(t){return 8===t}}();f("with",{with:function(t,e){var r=u(this),o=a(t),f=i(r)?s(e):+e;return n(r,c(r),o,f)}}.with,!l)},50748:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(18971),a=String.fromCharCode,s=o("".charAt),u=o(/./.exec),c=o("".slice),f=/^[\da-f]{2}$/i,l=/^[\da-f]{4}$/i;n({global:!0},{unescape:function(t){for(var e,r,n=i(t),o="",h=n.length,p=0;p<h;){if("%"===(e=s(n,p++)))if("u"===s(n,p)){if(r=c(n,p+1,p+5),u(l,r)){o+=a(parseInt(r,16)),p+=5;continue}}else if(r=c(n,p,p+2),u(f,r)){o+=a(parseInt(r,16)),p+=2;continue}o+=e}return o}})},5531:(t,e,r)=>{"use strict";var n,o=r(46151),i=r(54516),a=r(76277),s=r(82281),u=r(8420),c=r(48756),f=r(66263),l=r(3196),h=r(43023).enforce,p=r(13894),y=r(82408),d=Object,v=Array.isArray,g=d.isExtensible,b=d.isFrozen,m=d.isSealed,w=d.freeze,x=d.seal,k={},S={},_=!i.ActiveXObject&&"ActiveXObject"in i,O=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},E=c("WeakMap",O,f),A=E.prototype,P=a(A.set);if(y)if(_){n=f.getConstructor(O,"WeakMap",!0),u.enable();var j=a(A.delete),T=a(A.has),M=a(A.get);s(A,{delete:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),j(this,t)||e.frozen.delete(t)}return j(this,t)},has:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),T(this,t)||e.frozen.has(t)}return T(this,t)},get:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),T(this,t)?M(this,t):e.frozen.get(t)}return M(this,t)},set:function(t,e){if(l(t)&&!g(t)){var r=h(this);r.frozen||(r.frozen=new n),T(this,t)?P(this,t,e):r.frozen.set(t,e)}else P(this,t,e);return this}})}else o&&p((function(){var t=w([]);return P(new E,t,1),!b(t)}))&&s(A,{set:function(t,e){var r;return v(t)&&(b(t)?r=k:m(t)&&(r=S)),P(this,t,e),r==k&&w(t),r==S&&x(t),this}})},74287:(t,e,r)=>{"use strict";r(5531)},40273:(t,e,r)=>{"use strict";r(48756)("WeakSet",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(66263))},40476:(t,e,r)=>{"use strict";r(40273)},50315:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(12546),a=r(76277),s=r(83264),u=r(13894),c=r(18971),f=r(37058),l=r(10645),h=r(19649).ctoi,p=/[^\d+/a-z]/i,y=/[\t\n\f\r ]+/g,d=/[=]{1,2}$/,v=i("atob"),g=String.fromCharCode,b=a("".charAt),m=a("".replace),w=a(p.exec),x=u((function(){return""!==v(" ")})),k=!u((function(){v("a")})),S=!x&&!k&&!u((function(){v()})),_=!x&&!k&&1!==v.length;n({global:!0,bind:!0,enumerable:!0,forced:x||k||S||_},{atob:function(t){if(l(arguments.length,1),S||_)return s(v,o,t);var e,r,n=m(c(t),y,""),a="",u=0,x=0;if(n.length%4==0&&(n=m(n,d,"")),n.length%4==1||w(p,n))throw new(i("DOMException"))("The string is not correctly encoded","InvalidCharacterError");for(;e=b(n,u++);)f(h,e)&&(r=x%4?64*r+h[e]:h[e],x++%4&&(a+=g(255&r>>(-2*x&6))));return a}})},72168:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(12546),a=r(76277),s=r(83264),u=r(13894),c=r(18971),f=r(10645),l=r(19649).itoc,h=i("btoa"),p=a("".charAt),y=a("".charCodeAt),d=!!h&&!u((function(){h()})),v=!!h&&u((function(){return"bnVsbA=="!==h(null)})),g=!!h&&1!==h.length;n({global:!0,bind:!0,enumerable:!0,forced:d||v||g},{btoa:function(t){if(f(arguments.length,1),d||v||g)return s(h,o,c(t));for(var e,r,n=c(t),a="",u=0,b=l;p(n,u)||(b="=",u%1);){if((r=y(n,u+=3/4))>255)throw new(i("DOMException"))("The string contains characters outside of the Latin1 range","InvalidCharacterError");a+=p(b,63&(e=e<<8|r)>>8-u%1*8)}return a}})},93248:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(33394).clear;n({global:!0,bind:!0,enumerable:!0,forced:o.clearImmediate!==i},{clearImmediate:i})},63923:(t,e,r)=>{"use strict";var n=r(54516),o=r(63464),i=r(17666),a=r(39682),s=r(81831),u=function(t){if(t&&t.forEach!==a)try{s(t,"forEach",a)}catch(e){t.forEach=a}};for(var c in o)o[c]&&u(n[c]&&n[c].prototype);u(i)},95240:(t,e,r)=>{"use strict";var n=r(54516),o=r(63464),i=r(17666),a=r(24133),s=r(81831),u=r(41398),c=u("iterator"),f=u("toStringTag"),l=a.values,h=function(t,e){if(t){if(t[c]!==l)try{s(t,c,l)}catch(e){t[c]=l}if(t[f]||s(t,f,e),o[e])for(var r in a)if(t[r]!==a[r])try{s(t,r,a[r])}catch(e){t[r]=a[r]}}};for(var p in o)h(n[p]&&n[p].prototype,p);h(i,"DOMTokenList")},6721:(t,e,r)=>{"use strict";var n=r(57330),o=r(24128),i=r(12546),a=r(13894),s=r(64714),u=r(30654),c=r(26337).f,f=r(89592),l=r(55882),h=r(37058),p=r(89214),y=r(96302),d=r(34019),v=r(91245),g=r(43115),b=r(51597),m=r(43023),w=r(44244),x=r(43310),k="DOMException",S="DATA_CLONE_ERR",_=i("Error"),O=i(k)||function(){try{(new(i("MessageChannel")||o("worker_threads").MessageChannel)).port1.postMessage(new WeakMap)}catch(t){if(t.name==S&&25==t.code)return t.constructor}}(),E=O&&O.prototype,A=_.prototype,P=m.set,j=m.getterFor(k),T="stack"in _(k),M=function(t){return h(g,t)&&g[t].m?g[t].c:0},R=function(){p(this,I);var t=arguments.length,e=v(t<1?void 0:arguments[0]),r=v(t<2?void 0:arguments[1],"Error"),n=M(r);if(P(this,{type:k,name:r,message:e,code:n}),w||(this.name=r,this.message=e,this.code=n),T){var o=_(e);o.name=k,c(this,"stack",u(1,b(o.stack,1)))}},I=R.prototype=s(A),C=function(t){return{enumerable:!0,configurable:!0,get:t}},L=function(t){return C((function(){return j(this)[t]}))};w&&(l(I,"code",L("code")),l(I,"message",L("message")),l(I,"name",L("name"))),c(I,"constructor",u(1,R));var D=a((function(){return!(new O instanceof _)})),B=D||a((function(){return A.toString!==d||"2: 1"!==String(new O(1,2))})),N=D||a((function(){return 25!==new O(1,"DataCloneError").code})),F=D||25!==O[S]||25!==E[S],z=x?B||N||F:D;n({global:!0,constructor:!0,forced:z},{DOMException:z?R:O});var U=i(k),Y=U.prototype;for(var G in B&&(x||O===U)&&f(Y,"toString",d),N&&w&&O===U&&l(Y,"code",C((function(){return M(y(this).name)}))),g)if(h(g,G)){var H=g[G],W=H.s,X=u(6,H.c);h(U,W)||c(U,W,X),h(Y,W)||c(Y,W,X)}},58700:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(12546),a=r(30654),s=r(26337).f,u=r(37058),c=r(89214),f=r(2993),l=r(91245),h=r(43115),p=r(51597),y=r(44244),d=r(43310),v="DOMException",g=i("Error"),b=i(v),m=function(){c(this,w);var t=arguments.length,e=l(t<1?void 0:arguments[0]),r=l(t<2?void 0:arguments[1],"Error"),n=new b(e,r),o=g(e);return o.name=v,s(n,"stack",a(1,p(o.stack,1))),f(n,this,m),n},w=m.prototype=b.prototype,x="stack"in g(v),k="stack"in new b(1,2),S=b&&y&&Object.getOwnPropertyDescriptor(o,v),_=!(!S||S.writable&&S.configurable),O=x&&!_&&!k;n({global:!0,constructor:!0,forced:d||O},{DOMException:O?m:b});var E=i(v),A=E.prototype;if(A.constructor!==E)for(var P in d||s(A,"constructor",a(1,E)),h)if(u(h,P)){var j=h[P],T=j.s;u(E,T)||s(E,T,a(6,j.c))}},79073:(t,e,r)=>{"use strict";var n=r(12546),o="DOMException";r(81018)(n(o),o)},10012:(t,e,r)=>{"use strict";r(93248),r(25404)},27457:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(54653),a=r(88965),s=r(10645),u=r(63241),c=o.process;n({global:!0,enumerable:!0,dontCallGetSet:!0},{queueMicrotask:function(t){s(arguments.length,1),a(t);var e=u&&c.domain;i(e?e.bind(t):t)}})},88805:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(55882),a=r(44244),s=TypeError,u=Object.defineProperty,c=o.self!==o;try{if(a){var f=Object.getOwnPropertyDescriptor(o,"self");!c&&f&&f.get&&f.enumerable||i(o,"self",{get:function(){return o},set:function(t){if(this!==o)throw s("Illegal invocation");u(o,"self",{value:t,writable:!0,configurable:!0,enumerable:!0})},configurable:!0,enumerable:!0})}else n({global:!0,simple:!0,forced:c},{self:o})}catch(t){}},25404:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(33394).set,a=r(74710),s=o.setImmediate?a(i,!1):i;n({global:!0,bind:!0,enumerable:!0,forced:o.setImmediate!==s},{setImmediate:s})},91300:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(74710)(o.setInterval,!0);n({global:!0,bind:!0,forced:o.setInterval!==i},{setInterval:i})},96538:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(74710)(o.setTimeout,!0);n({global:!0,bind:!0,forced:o.setTimeout!==i},{setTimeout:i})},38634:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o,i=r(43310),a=r(57330),s=r(54516),u=r(12546),c=r(76277),f=r(13894),l=r(67025),h=r(34230),p=r(53924),y=r(18850),d=r(3196),v=r(45961),g=r(29429),b=r(96302),m=r(98619),w=r(37058),x=r(80955),k=r(81831),S=r(43716),_=r(10645),O=r(16503),E=r(6482),A=r(49164),P=r(81842),j=r(70197),T=s.Object,M=s.Array,R=s.Date,I=s.Error,C=s.EvalError,L=s.RangeError,D=s.ReferenceError,B=s.SyntaxError,N=s.TypeError,F=s.URIError,z=s.PerformanceMark,U=s.WebAssembly,Y=U&&U.CompileError||I,G=U&&U.LinkError||I,H=U&&U.RuntimeError||I,W=u("DOMException"),X=E.Map,q=E.has,V=E.get,Q=E.set,K=A.Set,J=A.add,Z=u("Object","keys"),$=c([].push),tt=c((!0).valueOf),et=c(1..valueOf),rt=c("".valueOf),nt=c(R.prototype.getTime),ot=l("structuredClone"),it="DataCloneError",at="Transferring",st=function(t){return!f((function(){var e=new s.Set([7]),r=t(e),o=t(T(7));return r==e||!r.has(7)||"object"!=n(o)||7!=o}))&&t},ut=function(t,e){return!f((function(){var r=new e,n=t({a:r,b:r});return!(n&&n.a===n.b&&n.a instanceof e&&n.a.stack===r.stack)}))},ct=s.structuredClone,ft=i||!ut(ct,I)||!ut(ct,W)||(o=ct,!!f((function(){var t=o(new s.AggregateError([1],ot,{cause:3}));return"AggregateError"!=t.name||1!=t.errors[0]||t.message!=ot||3!=t.cause}))),lt=!ct&&st((function(t){return new z(ot,{detail:t}).detail})),ht=st(ct)||lt,pt=function(t){throw new W("Uncloneable type: "+t,it)},yt=function(t,e){throw new W((e||"Cloning")+" of "+t+" cannot be properly polyfilled in this engine",it)},dt=function(t,e){return ht||yt(e),ht(t)},vt=function(t,e,r){if(q(e,t))return V(e,t);var n,o,i,a,u,c;if("SharedArrayBuffer"===(r||m(t)))n=ht?ht(t):t;else{var f=s.DataView;f||"function"==typeof t.slice||yt("ArrayBuffer");try{if("function"!=typeof t.slice||t.resizable){o=t.byteLength,i="maxByteLength"in t?{maxByteLength:t.maxByteLength}:void 0,n=new ArrayBuffer(o,i),a=new f(t),u=new f(n);for(c=0;c<o;c++)u.setUint8(c,a.getUint8(c))}else n=t.slice(0)}catch(t){throw new W("ArrayBuffer is detached",it)}}return Q(e,t,n),n},gt=function(t,e,r,n,o){var i=s[e];return d(i)||yt(e),new i(vt(t.buffer,o),r,n)},bt=function(t,e,r){this.object=t,this.type=e,this.metadata=r},mt=function t(e,r,n){if(v(e)&&pt("Symbol"),!d(e))return e;if(r){if(q(r,e))return V(r,e)}else r=new X;var o,i,a,c,f,l,p,y,g=m(e);switch(g){case"Array":a=M(S(e));break;case"Object":a={};break;case"Map":a=new X;break;case"Set":a=new K;break;case"RegExp":a=new RegExp(e.source,O(e));break;case"Error":switch(i=e.name){case"AggregateError":a=u("AggregateError")([]);break;case"EvalError":a=C();break;case"RangeError":a=L();break;case"ReferenceError":a=D();break;case"SyntaxError":a=B();break;case"TypeError":a=N();break;case"URIError":a=F();break;case"CompileError":a=Y();break;case"LinkError":a=G();break;case"RuntimeError":a=H();break;default:a=I()}break;case"DOMException":a=new W(e.message,e.name);break;case"ArrayBuffer":case"SharedArrayBuffer":a=n?new bt(e,g):vt(e,r,g);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":l="DataView"===g?e.byteLength:e.length,a=n?new bt(e,g,{offset:e.byteOffset,length:l}):gt(e,g,e.byteOffset,l,r);break;case"DOMQuad":try{a=new DOMQuad(t(e.p1,r,n),t(e.p2,r,n),t(e.p3,r,n),t(e.p4,r,n))}catch(t){a=dt(e,g)}break;case"File":if(ht)try{a=ht(e),m(a)!==g&&(a=void 0)}catch(t){}if(!a)try{a=new File([e],e.name,e)}catch(t){}a||yt(g);break;case"FileList":if(c=function(){var t;try{t=new s.DataTransfer}catch(e){try{t=new s.ClipboardEvent("").clipboardData}catch(t){}}return t&&t.items&&t.files?t:null}()){for(f=0,l=S(e);f<l;f++)c.items.add(t(e[f],r,n));a=c.files}else a=dt(e,g);break;case"ImageData":try{a=new ImageData(t(e.data,r,n),e.width,e.height,{colorSpace:e.colorSpace})}catch(t){a=dt(e,g)}break;default:if(ht)a=ht(e);else switch(g){case"BigInt":a=T(e.valueOf());break;case"Boolean":a=T(tt(e));break;case"Number":a=T(et(e));break;case"String":a=T(rt(e));break;case"Date":a=new R(nt(e));break;case"Blob":try{a=e.slice(0,e.size,e.type)}catch(t){yt(g)}break;case"DOMPoint":case"DOMPointReadOnly":o=s[g];try{a=o.fromPoint?o.fromPoint(e):new o(e.x,e.y,e.z,e.w)}catch(t){yt(g)}break;case"DOMRect":case"DOMRectReadOnly":o=s[g];try{a=o.fromRect?o.fromRect(e):new o(e.x,e.y,e.width,e.height)}catch(t){yt(g)}break;case"DOMMatrix":case"DOMMatrixReadOnly":o=s[g];try{a=o.fromMatrix?o.fromMatrix(e):new o(e)}catch(t){yt(g)}break;case"AudioData":case"VideoFrame":h(e.clone)||yt(g);try{a=e.clone()}catch(t){pt(g)}break;case"CropTarget":case"CryptoKey":case"FileSystemDirectoryHandle":case"FileSystemFileHandle":case"FileSystemHandle":case"GPUCompilationInfo":case"GPUCompilationMessage":case"ImageBitmap":case"RTCCertificate":case"WebAssembly.Module":yt(g);default:pt(g)}}switch(Q(r,e,a),g){case"Array":case"Object":for(p=Z(e),f=0,l=S(p);f<l;f++)y=p[f],x(a,y,t(e[y],r,n));break;case"Map":e.forEach((function(e,o){Q(a,t(o,r,n),t(e,r,n))}));break;case"Set":e.forEach((function(e){J(a,t(e,r,n))}));break;case"Error":k(a,"message",t(e.message,r,n)),w(e,"cause")&&k(a,"cause",t(e.cause,r,n)),"AggregateError"==i&&(a.errors=t(e.errors,r,n));case"DOMException":P&&k(a,"stack",t(e.stack,r,n))}return a},wt=function t(e,r){if(!d(e))return e;if(q(r,e))return V(r,e);var n,o,i,a,s,u,c,f;if(e instanceof bt)switch(n=e.type,o=e.object,n){case"ArrayBuffer":case"SharedArrayBuffer":f=vt(o,r,n);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":i=e.metadata,f=gt(o,n,i.offset,i.length,r)}else switch(m(e)){case"Array":case"Object":for(u=Z(e),a=0,s=S(u);a<s;a++)e[c=u[a]]=t(e[c],r);break;case"Map":f=new X,e.forEach((function(e,n){Q(f,t(n,r),t(e,r))}));break;case"Set":f=new K,e.forEach((function(e){J(f,t(e,r))}));break;case"Error":e.message=t(e.message,r),w(e,"cause")&&(e.cause=t(e.cause,r)),"AggregateError"==e.name&&(e.errors=t(e.errors,r));case"DOMException":P&&(e.stack=t(e.stack,r))}return Q(r,e,f||e),f||e};a({global:!0,enumerable:!0,sham:!j,forced:ft},{structuredClone:function(t){var e,r,n=_(arguments.length,1)>1&&!y(arguments[1])?b(arguments[1]):void 0,o=n?n.transfer:void 0,i=!1;void 0!==o&&(r=function(t,e){if(!d(t))throw N("Transfer option cannot be converted to a sequence");var r=[];g(t,(function(t){$(r,b(t))}));for(var n,o,i,a,u,c=0,f=S(r),l=[];c<f;)if(n=r[c++],"ArrayBuffer"!==(o=m(n))){if(q(e,n))throw new W("Duplicate transferable",it);if(j)a=ct(n,{transfer:[n]});else switch(o){case"ImageBitmap":i=s.OffscreenCanvas,p(i)||yt(o,at);try{(u=new i(n.width,n.height)).getContext("bitmaprenderer").transferFromImageBitmap(n),a=u.transferToImageBitmap()}catch(t){}break;case"AudioData":case"VideoFrame":h(n.clone)&&h(n.close)||yt(o,at);try{a=n.clone(),n.close()}catch(t){}break;case"MediaSourceHandle":case"MessagePort":case"OffscreenCanvas":case"ReadableStream":case"TransformStream":case"WritableStream":yt(o,at)}if(void 0===a)throw new W("This object cannot be transferred: "+o,it);Q(e,n,a)}else $(l,n);return l}(o,e=new X),i=!!S(r));var a=mt(t,e,i);return i&&(function(t,e){for(var r,n,o=0,i=S(t);o<i;){if(r=t[o++],q(e,r))throw new W("Duplicate transferable",it);j?n=ct(r,{transfer:[r]}):(h(r.transfer)||yt("ArrayBuffer",at),n=r.transfer()),Q(e,r,n)}}(o,e=new X),a=wt(a,e)),a}})},76878:(t,e,r)=>{"use strict";r(91300),r(96538)},90774:(t,e,r)=>{"use strict";r(24133);var n=r(57330),o=r(54516),i=r(83264),a=r(76277),s=r(44244),u=r(69650),c=r(89592),f=r(55882),l=r(82281),h=r(81018),p=r(91740),y=r(43023),d=r(89214),v=r(34230),g=r(37058),b=r(29910),m=r(98619),w=r(96302),x=r(3196),k=r(18971),S=r(64714),_=r(30654),O=r(29946),E=r(1228),A=r(10645),P=r(41398),j=r(53347),T=P("iterator"),M="URLSearchParams",R=M+"Iterator",I=y.set,C=y.getterFor(M),L=y.getterFor(R),D=Object.getOwnPropertyDescriptor,B=function(t){if(!s)return o[t];var e=D(o,t);return e&&e.value},N=B("fetch"),F=B("Request"),z=B("Headers"),U=F&&F.prototype,Y=z&&z.prototype,G=o.RegExp,H=o.TypeError,W=o.decodeURIComponent,X=o.encodeURIComponent,q=a("".charAt),V=a([].join),Q=a([].push),K=a("".replace),J=a([].shift),Z=a([].splice),$=a("".split),tt=a("".slice),et=/\+/g,rt=Array(4),nt=function(t){return rt[t-1]||(rt[t-1]=G("((?:%[\\da-f]{2}){"+t+"})","gi"))},ot=function(t){try{return W(t)}catch(e){return t}},it=function(t){var e=K(t,et," "),r=4;try{return W(e)}catch(t){for(;r;)e=K(e,nt(r--),ot);return e}},at=/[!'()~]|%20/g,st={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},ut=function(t){return st[t]},ct=function(t){return K(X(t),at,ut)},ft=p((function(t,e){I(this,{type:R,iterator:O(C(t).entries),kind:e})}),"Iterator",(function(){var t=L(this),e=t.kind,r=t.iterator.next(),n=r.value;return r.done||(r.value="keys"===e?n.key:"values"===e?n.value:[n.key,n.value]),r}),!0),lt=function(t){this.entries=[],this.url=null,void 0!==t&&(x(t)?this.parseObject(t):this.parseQuery("string"==typeof t?"?"===q(t,0)?tt(t,1):t:k(t)))};lt.prototype={type:M,bindURL:function(t){this.url=t,this.update()},parseObject:function(t){var e,r,n,o,a,s,u,c=E(t);if(c)for(r=(e=O(t,c)).next;!(n=i(r,e)).done;){if(a=(o=O(w(n.value))).next,(s=i(a,o)).done||(u=i(a,o)).done||!i(a,o).done)throw H("Expected sequence with length 2");Q(this.entries,{key:k(s.value),value:k(u.value)})}else for(var f in t)g(t,f)&&Q(this.entries,{key:f,value:k(t[f])})},parseQuery:function(t){if(t)for(var e,r,n=$(t,"&"),o=0;o<n.length;)(e=n[o++]).length&&(r=$(e,"="),Q(this.entries,{key:it(J(r)),value:it(V(r,"="))}))},serialize:function(){for(var t,e=this.entries,r=[],n=0;n<e.length;)t=e[n++],Q(r,ct(t.key)+"="+ct(t.value));return V(r,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var ht=function(){d(this,pt);var t=I(this,new lt(arguments.length>0?arguments[0]:void 0));s||(this.size=t.entries.length)},pt=ht.prototype;if(l(pt,{append:function(t,e){var r=C(this);A(arguments.length,2),Q(r.entries,{key:k(t),value:k(e)}),s||this.length++,r.updateURL()},delete:function(t){for(var e=C(this),r=A(arguments.length,1),n=e.entries,o=k(t),i=r<2?void 0:arguments[1],a=void 0===i?i:k(i),u=0;u<n.length;){var c=n[u];if(c.key!==o||void 0!==a&&c.value!==a)u++;else if(Z(n,u,1),void 0!==a)break}s||(this.size=n.length),e.updateURL()},get:function(t){var e=C(this).entries;A(arguments.length,1);for(var r=k(t),n=0;n<e.length;n++)if(e[n].key===r)return e[n].value;return null},getAll:function(t){var e=C(this).entries;A(arguments.length,1);for(var r=k(t),n=[],o=0;o<e.length;o++)e[o].key===r&&Q(n,e[o].value);return n},has:function(t){for(var e=C(this).entries,r=A(arguments.length,1),n=k(t),o=r<2?void 0:arguments[1],i=void 0===o?o:k(o),a=0;a<e.length;){var s=e[a++];if(s.key===n&&(void 0===i||s.value===i))return!0}return!1},set:function(t,e){var r=C(this);A(arguments.length,1);for(var n,o=r.entries,i=!1,a=k(t),u=k(e),c=0;c<o.length;c++)(n=o[c]).key===a&&(i?Z(o,c--,1):(i=!0,n.value=u));i||Q(o,{key:a,value:u}),s||(this.size=o.length),r.updateURL()},sort:function(){var t=C(this);j(t.entries,(function(t,e){return t.key>e.key?1:-1})),t.updateURL()},forEach:function(t){for(var e,r=C(this).entries,n=b(t,arguments.length>1?arguments[1]:void 0),o=0;o<r.length;)n((e=r[o++]).value,e.key,this)},keys:function(){return new ft(this,"keys")},values:function(){return new ft(this,"values")},entries:function(){return new ft(this,"entries")}},{enumerable:!0}),c(pt,T,pt.entries,{name:"entries"}),c(pt,"toString",(function(){return C(this).serialize()}),{enumerable:!0}),s&&f(pt,"size",{get:function(){return C(this).entries.length},configurable:!0,enumerable:!0}),h(ht,M),n({global:!0,constructor:!0,forced:!u},{URLSearchParams:ht}),!u&&v(z)){var yt=a(Y.has),dt=a(Y.set),vt=function(t){if(x(t)){var e,r=t.body;if(m(r)===M)return e=t.headers?new z(t.headers):new z,yt(e,"content-type")||dt(e,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),S(t,{body:_(0,k(r)),headers:_(0,e)})}return t};if(v(N)&&n({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(t){return N(t,arguments.length>1?vt(arguments[1]):{})}}),v(F)){var gt=function(t){return d(this,U),new F(t,arguments.length>1?vt(arguments[1]):{})};U.constructor=gt,gt.prototype=U,n({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:gt})}}t.exports={URLSearchParams:ht,getState:C}},41573:(t,e,r)=>{"use strict";var n=r(89592),o=r(76277),i=r(18971),a=r(10645),s=URLSearchParams,u=s.prototype,c=o(u.append),f=o(u.delete),l=o(u.forEach),h=o([].push),p=new s("a=1&a=2&b=3");p.delete("a",1),p.delete("b",void 0),p+""!="a=2"&&n(u,"delete",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return f(this,t);var n=[];l(this,(function(t,e){h(n,{key:e,value:t})})),a(e,1);for(var o,s=i(t),u=i(r),p=0,y=0,d=!1,v=n.length;p<v;)o=n[p++],d||o.key===s?(d=!0,f(this,o.key)):y++;for(;y<v;)(o=n[y++]).key===s&&o.value===u||c(this,o.key,o.value)}),{enumerable:!0,unsafe:!0})},28449:(t,e,r)=>{"use strict";var n=r(89592),o=r(76277),i=r(18971),a=r(10645),s=URLSearchParams,u=s.prototype,c=o(u.getAll),f=o(u.has),l=new s("a=1");!l.has("a",2)&&l.has("a",void 0)||n(u,"has",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return f(this,t);var n=c(this,t);a(e,1);for(var o=i(r),s=0;s<n.length;)if(n[s++]===o)return!0;return!1}),{enumerable:!0,unsafe:!0})},2848:(t,e,r)=>{"use strict";r(90774)},22456:(t,e,r)=>{"use strict";var n=r(44244),o=r(76277),i=r(55882),a=URLSearchParams.prototype,s=o(a.forEach);n&&!("size"in a)&&i(a,"size",{get:function(){var t=0;return s(this,(function(){t++})),t},configurable:!0,enumerable:!0})},94119:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(13894),a=r(10645),s=r(18971),u=r(69650),c=o("URL");n({target:"URL",stat:!0,forced:!(u&&i((function(){c.canParse()})))},{canParse:function(t){var e=a(arguments.length,1),r=s(t),n=e<2||void 0===arguments[1]?void 0:s(arguments[1]);try{return!!new c(r,n)}catch(t){return!1}}})},91871:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}r(62302);var o,i=r(57330),a=r(44244),s=r(69650),u=r(54516),c=r(29910),f=r(76277),l=r(89592),h=r(55882),p=r(89214),y=r(37058),d=r(70168),v=r(11956),g=r(68020),b=r(32088).codeAt,m=r(34858),w=r(18971),x=r(81018),k=r(10645),S=r(90774),_=r(43023),O=_.set,E=_.getterFor("URL"),A=S.URLSearchParams,P=S.getState,j=u.URL,T=u.TypeError,M=u.parseInt,R=Math.floor,I=Math.pow,C=f("".charAt),L=f(/./.exec),D=f([].join),B=f(1..toString),N=f([].pop),F=f([].push),z=f("".replace),U=f([].shift),Y=f("".split),G=f("".slice),H=f("".toLowerCase),W=f([].unshift),X="Invalid scheme",q="Invalid host",V="Invalid port",Q=/[a-z]/i,K=/[\d+-.a-z]/i,J=/\d/,Z=/^0x/i,$=/^[0-7]+$/,tt=/^\d+$/,et=/^[\da-f]+$/i,rt=/[\0\t\n\r #%/:<>?@[\\\]^|]/,nt=/[\0\t\n\r #/:<>?@[\\\]^|]/,ot=/^[\u0000-\u0020]+/,it=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,at=/[\t\n\r]/g,st=function(t){var e,r,o,i;if("number"==typeof t){for(e=[],r=0;r<4;r++)W(e,t%256),t=R(t/256);return D(e,".")}if("object"==n(t)){for(e="",o=function(t){for(var e=null,r=1,n=null,o=0,i=0;i<8;i++)0!==t[i]?(o>r&&(e=n,r=o),n=null,o=0):(null===n&&(n=i),++o);return o>r&&(e=n,r=o),e}(t),r=0;r<8;r++)i&&0===t[r]||(i&&(i=!1),o===r?(e+=r?":":"::",i=!0):(e+=B(t[r],16),r<7&&(e+=":")));return"["+e+"]"}return t},ut={},ct=d({},ut,{" ":1,'"':1,"<":1,">":1,"`":1}),ft=d({},ct,{"#":1,"?":1,"{":1,"}":1}),lt=d({},ft,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),ht=function(t,e){var r=b(t,0);return r>32&&r<127&&!y(e,t)?t:encodeURIComponent(t)},pt={ftp:21,file:null,http:80,https:443,ws:80,wss:443},yt=function(t,e){var r;return 2==t.length&&L(Q,C(t,0))&&(":"==(r=C(t,1))||!e&&"|"==r)},dt=function(t){var e;return t.length>1&&yt(G(t,0,2))&&(2==t.length||"/"===(e=C(t,2))||"\\"===e||"?"===e||"#"===e)},vt=function(t){return"."===t||"%2e"===H(t)},gt={},bt={},mt={},wt={},xt={},kt={},St={},_t={},Ot={},Et={},At={},Pt={},jt={},Tt={},Mt={},Rt={},It={},Ct={},Lt={},Dt={},Bt={},Nt=function t(e,r,n){var o,i,a,s=w(e);if(r){if(i=this.parse(s))throw T(i);this.searchParams=null}else{if(void 0!==n&&(o=new t(n,!0)),i=this.parse(s,null,o))throw T(i);(a=P(new A)).bindURL(this),this.searchParams=a}};Nt.prototype={type:"URL",parse:function(t,e,r){var n,i,a,s,u,c=this,f=e||gt,l=0,h="",p=!1,d=!1,b=!1;for(t=w(t),e||(c.scheme="",c.username="",c.password="",c.host=null,c.port=null,c.path=[],c.query=null,c.fragment=null,c.cannotBeABaseURL=!1,t=z(t,ot,""),t=z(t,it,"$1")),t=z(t,at,""),n=v(t);l<=n.length;){switch(i=n[l],f){case gt:if(!i||!L(Q,i)){if(e)return X;f=mt;continue}h+=H(i),f=bt;break;case bt:if(i&&(L(K,i)||"+"==i||"-"==i||"."==i))h+=H(i);else{if(":"!=i){if(e)return X;h="",f=mt,l=0;continue}if(e&&(c.isSpecial()!=y(pt,h)||"file"==h&&(c.includesCredentials()||null!==c.port)||"file"==c.scheme&&!c.host))return;if(c.scheme=h,e)return void(c.isSpecial()&&pt[c.scheme]==c.port&&(c.port=null));h="","file"==c.scheme?f=Tt:c.isSpecial()&&r&&r.scheme==c.scheme?f=wt:c.isSpecial()?f=_t:"/"==n[l+1]?(f=xt,l++):(c.cannotBeABaseURL=!0,F(c.path,""),f=Lt)}break;case mt:if(!r||r.cannotBeABaseURL&&"#"!=i)return X;if(r.cannotBeABaseURL&&"#"==i){c.scheme=r.scheme,c.path=g(r.path),c.query=r.query,c.fragment="",c.cannotBeABaseURL=!0,f=Bt;break}f="file"==r.scheme?Tt:kt;continue;case wt:if("/"!=i||"/"!=n[l+1]){f=kt;continue}f=Ot,l++;break;case xt:if("/"==i){f=Et;break}f=Ct;continue;case kt:if(c.scheme=r.scheme,i==o)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query=r.query;else if("/"==i||"\\"==i&&c.isSpecial())f=St;else if("?"==i)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query="",f=Dt;else{if("#"!=i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.path.length--,f=Ct;continue}c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query=r.query,c.fragment="",f=Bt}break;case St:if(!c.isSpecial()||"/"!=i&&"\\"!=i){if("/"!=i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,f=Ct;continue}f=Et}else f=Ot;break;case _t:if(f=Ot,"/"!=i||"/"!=C(h,l+1))continue;l++;break;case Ot:if("/"!=i&&"\\"!=i){f=Et;continue}break;case Et:if("@"==i){p&&(h="%40"+h),p=!0,a=v(h);for(var m=0;m<a.length;m++){var x=a[m];if(":"!=x||b){var k=ht(x,lt);b?c.password+=k:c.username+=k}else b=!0}h=""}else if(i==o||"/"==i||"?"==i||"#"==i||"\\"==i&&c.isSpecial()){if(p&&""==h)return"Invalid authority";l-=v(h).length+1,h="",f=At}else h+=i;break;case At:case Pt:if(e&&"file"==c.scheme){f=Rt;continue}if(":"!=i||d){if(i==o||"/"==i||"?"==i||"#"==i||"\\"==i&&c.isSpecial()){if(c.isSpecial()&&""==h)return q;if(e&&""==h&&(c.includesCredentials()||null!==c.port))return;if(s=c.parseHost(h))return s;if(h="",f=It,e)return;continue}"["==i?d=!0:"]"==i&&(d=!1),h+=i}else{if(""==h)return q;if(s=c.parseHost(h))return s;if(h="",f=jt,e==Pt)return}break;case jt:if(!L(J,i)){if(i==o||"/"==i||"?"==i||"#"==i||"\\"==i&&c.isSpecial()||e){if(""!=h){var S=M(h,10);if(S>65535)return V;c.port=c.isSpecial()&&S===pt[c.scheme]?null:S,h=""}if(e)return;f=It;continue}return V}h+=i;break;case Tt:if(c.scheme="file","/"==i||"\\"==i)f=Mt;else{if(!r||"file"!=r.scheme){f=Ct;continue}if(i==o)c.host=r.host,c.path=g(r.path),c.query=r.query;else if("?"==i)c.host=r.host,c.path=g(r.path),c.query="",f=Dt;else{if("#"!=i){dt(D(g(n,l),""))||(c.host=r.host,c.path=g(r.path),c.shortenPath()),f=Ct;continue}c.host=r.host,c.path=g(r.path),c.query=r.query,c.fragment="",f=Bt}}break;case Mt:if("/"==i||"\\"==i){f=Rt;break}r&&"file"==r.scheme&&!dt(D(g(n,l),""))&&(yt(r.path[0],!0)?F(c.path,r.path[0]):c.host=r.host),f=Ct;continue;case Rt:if(i==o||"/"==i||"\\"==i||"?"==i||"#"==i){if(!e&&yt(h))f=Ct;else if(""==h){if(c.host="",e)return;f=It}else{if(s=c.parseHost(h))return s;if("localhost"==c.host&&(c.host=""),e)return;h="",f=It}continue}h+=i;break;case It:if(c.isSpecial()){if(f=Ct,"/"!=i&&"\\"!=i)continue}else if(e||"?"!=i)if(e||"#"!=i){if(i!=o&&(f=Ct,"/"!=i))continue}else c.fragment="",f=Bt;else c.query="",f=Dt;break;case Ct:if(i==o||"/"==i||"\\"==i&&c.isSpecial()||!e&&("?"==i||"#"==i)){if(".."===(u=H(u=h))||"%2e."===u||".%2e"===u||"%2e%2e"===u?(c.shortenPath(),"/"==i||"\\"==i&&c.isSpecial()||F(c.path,"")):vt(h)?"/"==i||"\\"==i&&c.isSpecial()||F(c.path,""):("file"==c.scheme&&!c.path.length&&yt(h)&&(c.host&&(c.host=""),h=C(h,0)+":"),F(c.path,h)),h="","file"==c.scheme&&(i==o||"?"==i||"#"==i))for(;c.path.length>1&&""===c.path[0];)U(c.path);"?"==i?(c.query="",f=Dt):"#"==i&&(c.fragment="",f=Bt)}else h+=ht(i,ft);break;case Lt:"?"==i?(c.query="",f=Dt):"#"==i?(c.fragment="",f=Bt):i!=o&&(c.path[0]+=ht(i,ut));break;case Dt:e||"#"!=i?i!=o&&("'"==i&&c.isSpecial()?c.query+="%27":c.query+="#"==i?"%23":ht(i,ut)):(c.fragment="",f=Bt);break;case Bt:i!=o&&(c.fragment+=ht(i,ct))}l++}},parseHost:function(t){var e,r,n;if("["==C(t,0)){if("]"!=C(t,t.length-1))return q;if(e=function(t){var e,r,n,o,i,a,s,u=[0,0,0,0,0,0,0,0],c=0,f=null,l=0,h=function(){return C(t,l)};if(":"==h()){if(":"!=C(t,1))return;l+=2,f=++c}for(;h();){if(8==c)return;if(":"!=h()){for(e=r=0;r<4&&L(et,h());)e=16*e+M(h(),16),l++,r++;if("."==h()){if(0==r)return;if(l-=r,c>6)return;for(n=0;h();){if(o=null,n>0){if(!("."==h()&&n<4))return;l++}if(!L(J,h()))return;for(;L(J,h());){if(i=M(h(),10),null===o)o=i;else{if(0==o)return;o=10*o+i}if(o>255)return;l++}u[c]=256*u[c]+o,2!=++n&&4!=n||c++}if(4!=n)return;break}if(":"==h()){if(l++,!h())return}else if(h())return;u[c++]=e}else{if(null!==f)return;l++,f=++c}}if(null!==f)for(a=c-f,c=7;0!=c&&a>0;)s=u[c],u[c--]=u[f+a-1],u[f+--a]=s;else if(8!=c)return;return u}(G(t,1,-1)),!e)return q;this.host=e}else if(this.isSpecial()){if(t=m(t),L(rt,t))return q;if(e=function(t){var e,r,n,o,i,a,s,u=Y(t,".");if(u.length&&""==u[u.length-1]&&u.length--,(e=u.length)>4)return t;for(r=[],n=0;n<e;n++){if(""==(o=u[n]))return t;if(i=10,o.length>1&&"0"==C(o,0)&&(i=L(Z,o)?16:8,o=G(o,8==i?1:2)),""===o)a=0;else{if(!L(10==i?tt:8==i?$:et,o))return t;a=M(o,i)}F(r,a)}for(n=0;n<e;n++)if(a=r[n],n==e-1){if(a>=I(256,5-e))return null}else if(a>255)return null;for(s=N(r),n=0;n<r.length;n++)s+=r[n]*I(256,3-n);return s}(t),null===e)return q;this.host=e}else{if(L(nt,t))return q;for(e="",r=v(t),n=0;n<r.length;n++)e+=ht(r[n],ut);this.host=e}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||"file"==this.scheme},includesCredentials:function(){return""!=this.username||""!=this.password},isSpecial:function(){return y(pt,this.scheme)},shortenPath:function(){var t=this.path,e=t.length;!e||"file"==this.scheme&&1==e&&yt(t[0],!0)||t.length--},serialize:function(){var t=this,e=t.scheme,r=t.username,n=t.password,o=t.host,i=t.port,a=t.path,s=t.query,u=t.fragment,c=e+":";return null!==o?(c+="//",t.includesCredentials()&&(c+=r+(n?":"+n:"")+"@"),c+=st(o),null!==i&&(c+=":"+i)):"file"==e&&(c+="//"),c+=t.cannotBeABaseURL?a[0]:a.length?"/"+D(a,"/"):"",null!==s&&(c+="?"+s),null!==u&&(c+="#"+u),c},setHref:function(t){var e=this.parse(t);if(e)throw T(e);this.searchParams.update()},getOrigin:function(){var t=this.scheme,e=this.port;if("blob"==t)try{return new Ft(t.path[0]).origin}catch(t){return"null"}return"file"!=t&&this.isSpecial()?t+"://"+st(this.host)+(null!==e?":"+e:""):"null"},getProtocol:function(){return this.scheme+":"},setProtocol:function(t){this.parse(w(t)+":",gt)},getUsername:function(){return this.username},setUsername:function(t){var e=v(w(t));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var r=0;r<e.length;r++)this.username+=ht(e[r],lt)}},getPassword:function(){return this.password},setPassword:function(t){var e=v(w(t));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var r=0;r<e.length;r++)this.password+=ht(e[r],lt)}},getHost:function(){var t=this.host,e=this.port;return null===t?"":null===e?st(t):st(t)+":"+e},setHost:function(t){this.cannotBeABaseURL||this.parse(t,At)},getHostname:function(){var t=this.host;return null===t?"":st(t)},setHostname:function(t){this.cannotBeABaseURL||this.parse(t,Pt)},getPort:function(){var t=this.port;return null===t?"":w(t)},setPort:function(t){this.cannotHaveUsernamePasswordPort()||(""==(t=w(t))?this.port=null:this.parse(t,jt))},getPathname:function(){var t=this.path;return this.cannotBeABaseURL?t[0]:t.length?"/"+D(t,"/"):""},setPathname:function(t){this.cannotBeABaseURL||(this.path=[],this.parse(t,It))},getSearch:function(){var t=this.query;return t?"?"+t:""},setSearch:function(t){""==(t=w(t))?this.query=null:("?"==C(t,0)&&(t=G(t,1)),this.query="",this.parse(t,Dt)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var t=this.fragment;return t?"#"+t:""},setHash:function(t){""!=(t=w(t))?("#"==C(t,0)&&(t=G(t,1)),this.fragment="",this.parse(t,Bt)):this.fragment=null},update:function(){this.query=this.searchParams.serialize()||null}};var Ft=function(t){var e=p(this,zt),r=k(arguments.length,1)>1?arguments[1]:void 0,n=O(e,new Nt(t,!1,r));a||(e.href=n.serialize(),e.origin=n.getOrigin(),e.protocol=n.getProtocol(),e.username=n.getUsername(),e.password=n.getPassword(),e.host=n.getHost(),e.hostname=n.getHostname(),e.port=n.getPort(),e.pathname=n.getPathname(),e.search=n.getSearch(),e.searchParams=n.getSearchParams(),e.hash=n.getHash())},zt=Ft.prototype,Ut=function(t,e){return{get:function(){return E(this)[t]()},set:e&&function(t){return E(this)[e](t)},configurable:!0,enumerable:!0}};if(a&&(h(zt,"href",Ut("serialize","setHref")),h(zt,"origin",Ut("getOrigin")),h(zt,"protocol",Ut("getProtocol","setProtocol")),h(zt,"username",Ut("getUsername","setUsername")),h(zt,"password",Ut("getPassword","setPassword")),h(zt,"host",Ut("getHost","setHost")),h(zt,"hostname",Ut("getHostname","setHostname")),h(zt,"port",Ut("getPort","setPort")),h(zt,"pathname",Ut("getPathname","setPathname")),h(zt,"search",Ut("getSearch","setSearch")),h(zt,"searchParams",Ut("getSearchParams")),h(zt,"hash",Ut("getHash","setHash"))),l(zt,"toJSON",(function(){return E(this).serialize()}),{enumerable:!0}),l(zt,"toString",(function(){return E(this).serialize()}),{enumerable:!0}),j){var Yt=j.createObjectURL,Gt=j.revokeObjectURL;Yt&&l(Ft,"createObjectURL",c(Yt,j)),Gt&&l(Ft,"revokeObjectURL",c(Gt,j))}x(Ft,"URL"),i({global:!0,constructor:!0,forced:!s,sham:!a},{URL:Ft})},23405:(t,e,r)=>{"use strict";r(91871)},76048:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264);n({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return o(URL.prototype.toString,this)}})},46280:(t,e,r)=>{"use strict";r(47180),r(4613),r(58055),r(86393),r(79040),r(79145),r(16517),r(64145),r(34659),r(95582),r(47661),r(63745),r(85270),r(86481),r(26606),r(19337),r(141),r(52309),r(95027),r(78667),r(55549),r(12042),r(70079),r(69979),r(91910),r(42426),r(52947),r(41721),r(85784),r(17620),r(67352),r(4293),r(30281),r(23949),r(35963),r(8851),r(24133),r(33448),r(7311),r(16798),r(21145),r(87152),r(9253),r(15618),r(81364),r(55635),r(92550),r(16087),r(26568),r(14747),r(58242),r(43247),r(34830),r(5162),r(16021),r(22767),r(23087),r(47185),r(6765),r(86927),r(43542),r(20623),r(22074),r(44837),r(36688),r(45938),r(75640),r(98665),r(72003),r(15034),r(47125),r(75004),r(68825),r(78026),r(83761),r(5582),r(48499),r(80989),r(53733),r(68747),r(92098),r(73694),r(15975),r(43797),r(39286),r(56791),r(73992),r(28161),r(30368),r(63358),r(80900),r(85765),r(39680),r(4141),r(60765),r(66586),r(5225),r(52497),r(28582),r(53470),r(42675),r(31035),r(39192),r(68760),r(92833),r(11936),r(51246),r(38778),r(41450),r(90742),r(63621),r(21741),r(52746),r(51834),r(71243),r(82802),r(71881),r(16146),r(89960),r(13694),r(46748),r(9389),r(94482),r(93406),r(44292),r(57285),r(23484),r(35643),r(13148),r(93219),r(49337),r(31079),r(30419),r(69376),r(86242),r(43161),r(84125),r(26037),r(79200),r(52440),r(6804),r(97800),r(96620),r(78964),r(26204),r(88011),r(1615),r(48590),r(79036),r(76583),r(82590),r(7158),r(99498),r(53023),r(7212),r(60971),r(18045),r(75567),r(62349),r(87803),r(43),r(33043),r(23252),r(16528),r(52821),r(78158),r(52512),r(32752),r(56223),r(62302),r(92781),r(74202),r(49615),r(94209),r(84031),r(33259),r(68011),r(22152),r(47015),r(45238),r(39463),r(56267),r(26395),r(73866),r(49324),r(27153),r(4319),r(39535),r(65667),r(67484),r(52936),r(13684),r(4614),r(77494),r(40536),r(60762),r(4659),r(5604),r(46073),r(95477),r(38039),r(88586),r(39134),r(51257),r(170),r(68266),r(19972),r(98902),r(19540),r(65049),r(75608),r(30452),r(29628),r(71790),r(10901),r(10386),r(70834),r(73526),r(97913),r(24319),r(27807),r(57207),r(97371),r(91897),r(43418),r(68709),r(46255),r(62476),r(42205),r(43334),r(75337),r(97598),r(45433),r(64188),r(84880),r(92002),r(97288),r(38769),r(71465),r(50748),r(74287),r(40476),r(50315),r(72168),r(63923),r(95240),r(6721),r(58700),r(79073),r(10012),r(27457),r(88805),r(38634),r(76878),r(23405),r(94119),r(76048),r(2848),r(41573),r(28449),r(22456),r(1612)},48930:(t,e,r)=>{var n,o,i;function a(){"use strict";a=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",u=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function f(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{f({},"")}catch(t){f=function(t,e,r){return t[e]=r}}function l(t,e,r,o){var i=e&&e.prototype instanceof y?e:y,a=Object.create(i.prototype),s=new A(o||[]);return n(a,"_invoke",{value:S(t,r,s)}),a}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var p={};function y(){}function d(){}function v(){}var g={};f(g,i,(function(){return this}));var b=Object.getPrototypeOf,m=b&&b(b(P([])));m&&m!==e&&r.call(m,i)&&(g=m);var w=v.prototype=y.prototype=Object.create(g);function x(t){["next","throw","return"].forEach((function(e){f(t,e,(function(t){return this._invoke(e,t)}))}))}function k(t,e){function o(n,i,a,u){var c=h(t[n],t,i);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"==s(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,u)}),(function(t){o("throw",t,a,u)})):e.resolve(l).then((function(t){f.value=t,a(f)}),(function(t){return o("throw",t,a,u)}))}u(c.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function S(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=_(a,r);if(s){if(s===p)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=h(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===p)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function _(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,_(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),p;var o=h(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,p;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,p):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,p)}function O(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function E(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function A(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(O,this),this.reset(!0)}function P(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(s(t)+" is not iterable")}return d.prototype=v,n(w,"constructor",{value:v,configurable:!0}),n(v,"constructor",{value:d,configurable:!0}),d.displayName=f(v,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===d||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,v):(t.__proto__=v,f(t,c,"GeneratorFunction")),t.prototype=Object.create(w),t},t.awrap=function(t){return{__await:t}},x(k.prototype),f(k.prototype,u,(function(){return this})),t.AsyncIterator=k,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new k(l(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},x(w),f(w,c,"Generator"),f(w,i,(function(){return this})),f(w,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=P,A.prototype={constructor:A,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,p):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),p},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),E(r),p}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;E(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:P(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),p}},t}function s(t){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},s(t)}var u,c=function(t){"use strict";var e,r=Object.prototype,n=r.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var o=e&&e.prototype instanceof g?e:g,i=Object.create(o.prototype),a=new j(n||[]);return i._invoke=function(t,e,r){var n=h;return function(o,i){if(n===y)throw new Error("Generator is already running");if(n===d){if("throw"===o)throw i;return M()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=E(a,r);if(s){if(s===v)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===h)throw n=d,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=y;var u=l(t,e,r);if("normal"===u.type){if(n=r.done?d:p,u.arg===v)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n=d,r.method="throw",r.arg=u.arg)}}}(t,r,a),i}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,i,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(T([])));k&&k!==r&&n.call(k,i)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function _(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function r(o,i,a,u){var c=l(t[o],t,i);if("throw"!==c.type){var f=c.arg,h=f.value;return h&&"object"===s(h)&&n.call(h,"__await")?e.resolve(h.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(h).then((function(t){f.value=t,a(f)}),(function(t){return r("throw",t,a,u)}))}u(c.arg)}var o;this._invoke=function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}}function E(t,r){var n=t.iterator[r.method];if(n===e){if(r.delegate=null,"throw"===r.method){if(t.iterator.return&&(r.method="return",r.arg=e,E(t,r),"throw"===r.method))return v;r.method="throw",r.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var o=l(n,t.iterator,r.arg);if("throw"===o.type)return r.method="throw",r.arg=o.arg,r.delegate=null,v;var i=o.arg;return i?i.done?(r[t.resultName]=i.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):i:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function A(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function P(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function j(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(A,this),this.reset(!0)}function T(t){if(t){var r=t[i];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function r(){for(;++o<t.length;)if(n.call(t,o))return r.value=t[o],r.done=!1,r;return r.value=e,r.done=!0,r};return a.next=a}}return{next:M}}function M(){return{value:e,done:!0}}return b.prototype=m,c(S,"constructor",m),c(m,"constructor",b),b.displayName=c(m,u,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,u,"GeneratorFunction")),t.prototype=Object.create(S),t},t.awrap=function(t){return{__await:t}},_(O.prototype),c(O.prototype,a,(function(){return this})),t.AsyncIterator=O,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new O(f(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},_(S),c(S,u,"Generator"),c(S,i,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){for(;e.length;){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},t.values=T,j.prototype={constructor:j,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(P),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function o(n,o){return s.type="throw",s.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var u=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(u&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),P(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;P(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:T(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}("object"===s(t=r.nmd(t))?t.exports:{});try{regeneratorRuntime=c}catch(t){"object"===("undefined"==typeof globalThis?"undefined":s(globalThis))?globalThis.regeneratorRuntime=c:Function("r","regeneratorRuntime = r")(c)}Number.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},String.fromCodePoint||function(t){var e=function(e){for(var r=[],n=0,o="",i=0,a=arguments.length;i!==a;++i){var s=+arguments[i];if(!(s<1114111&&s>>>0===s))throw RangeError("Invalid code point: "+s);s<=65535?n=r.push(s):(s-=65536,n=r.push(55296+(s>>10),s%1024+56320)),n>=16383&&(o+=t.apply(null,r),r.length=0)}return o+t.apply(null,r)};try{Object.defineProperty(String,"fromCodePoint",{value:e,configurable:!0,writable:!0})}catch(t){String.fromCodePoint=e}}(String.fromCharCode),Object.is||(Object.is=function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}),String.prototype.codePointAt||function(){"use strict";var t=function(){try{var t={},e=Object.defineProperty,r=e(t,t,t)&&e}catch(t){}return r}(),e=function(t){if(null==this)throw TypeError();var e=String(this),r=e.length,n=t?Number(t):0;if(n!=n&&(n=0),!(n<0||n>=r)){var o,i=e.charCodeAt(n);return i>=55296&&i<=56319&&r>n+1&&(o=e.charCodeAt(n+1))>=56320&&o<=57343?1024*(i-55296)+o-56320+65536:i}};t?t(String.prototype,"codePointAt",{value:e,configurable:!0,writable:!0}):String.prototype.codePointAt=e}(),Math.log10=Math.log10||function(t){return Math.log(t)*Math.LOG10E},u=function(){return function t(e,r,n){function o(a,s){if(!r[a]){if(!e[a]){if(i)return i(a,!0);var u=new Error("Cannot find module '"+a+"'");throw u.code="MODULE_NOT_FOUND",u}var c=r[a]={exports:{}};e[a][0].call(c.exports,(function(t){return o(e[a][1][t]||t)}),c,c.exports,t,e,r,n)}return r[a].exports}for(var i=void 0,a=0;a<n.length;a++)o(n[a]);return o}({1:[function(t,e,r){"use strict";var n=t("./utils"),o=function(){var t=n.stringToArray,e=["Zero","One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"],r=["Zeroth","First","Second","Third","Fourth","Fifth","Sixth","Seventh","Eighth","Ninth","Tenth","Eleventh","Twelfth","Thirteenth","Fourteenth","Fifteenth","Sixteenth","Seventeenth","Eighteenth","Nineteenth"],o=["Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety","Hundred"],i=["Thousand","Million","Billion","Trillion"],a={};e.forEach((function(t,e){a[t.toLowerCase()]=e})),r.forEach((function(t,e){a[t.toLowerCase()]=e})),o.forEach((function(t,e){var r=t.toLowerCase();a[r]=10*(e+2),a[r.substring(0,t.length-1)+"ieth"]=a[r]})),a.hundredth=100,i.forEach((function(t,e){var r=t.toLowerCase(),n=Math.pow(10,3*(e+1));a[r]=n,a[r+"th"]=n}));var s=[[1e3,"m"],[900,"cm"],[500,"d"],[400,"cd"],[100,"c"],[90,"xc"],[50,"l"],[40,"xl"],[10,"x"],[9,"ix"],[5,"v"],[4,"iv"],[1,"i"]],u={M:1e3,D:500,C:100,L:50,X:10,V:5,I:1};function c(t){for(var e=0;e<s.length;e++){var r=s[e];if(t>=r[0])return r[1]+c(t-r[0])}return""}function f(t,e){if(void 0!==t)return p(t=Math.floor(t),d(e))}var l={DECIMAL:"decimal",LETTERS:"letters",ROMAN:"roman",WORDS:"words",SEQUENCE:"sequence"},h={UPPER:"upper",LOWER:"lower",TITLE:"title"};function p(n,a){var s,u=n<0;switch(n=Math.abs(n),a.primary){case l.LETTERS:s=function(t,e){for(var r=[],n=e.charCodeAt(0);t>0;)r.unshift(String.fromCharCode((t-1)%26+n)),t=Math.floor((t-1)/26);return r.join("")}(n,a.case===h.UPPER?"A":"a");break;case l.ROMAN:s=c(n),a.case===h.UPPER&&(s=s.toUpperCase());break;case l.WORDS:s=function(t,n){return function t(n,a,s){var u="";if(n<=19)u=(a?" and ":"")+(s?r[n]:e[n]);else if(n<100){var c=Math.floor(n/10),f=n%10;u=(a?" and ":"")+o[c-2],f>0?u+="-"+t(f,!1,s):s&&(u=u.substring(0,u.length-1)+"ieth")}else if(n<1e3){var l=Math.floor(n/100),h=n%100;u=(a?", ":"")+e[l]+" Hundred",h>0?u+=t(h,!0,s):s&&(u+="th")}else{var p=Math.floor(Math.log10(n)/3);p>i.length&&(p=i.length);var y=Math.pow(10,3*p),d=Math.floor(n/y),v=n-d*y;u=(a?", ":"")+t(d,!1,!1)+" "+i[p-1],v>0?u+=t(v,!0,s):s&&(u+="th")}return u}(t,!1,n)}(n,a.ordinal),a.case===h.UPPER?s=s.toUpperCase():a.case===h.LOWER&&(s=s.toLowerCase());break;case l.DECIMAL:s=""+n;var f=a.mandatoryDigits-s.length;if(f>0){var p=new Array(f+1).join("0");s=p+s}if(48!==a.zeroCode&&(s=t(s).map((function(t){return String.fromCodePoint(t.codePointAt(0)+a.zeroCode-48)})).join("")),a.regular)for(var y=Math.floor((s.length-1)/a.groupingSeparators.position);y>0;y--){var d=s.length-y*a.groupingSeparators.position;s=s.substr(0,d)+a.groupingSeparators.character+s.substr(d)}else a.groupingSeparators.reverse().forEach((function(t){var e=s.length-t.position;s=s.substr(0,e)+t.character+s.substr(e)}));if(a.ordinal){var v={1:"st",2:"nd",3:"rd"}[s[s.length-1]];(!v||s.length>1&&"1"===s[s.length-2])&&(v="th"),s+=v}break;case l.SEQUENCE:throw{code:"D3130",value:a.token}}return u&&(s="-"+s),s}var y=[48,1632,1776,1984,2406,2534,2662,2790,2918,3046,3174,3302,3430,3558,3664,3792,3872,4160,4240,6112,6160,6470,6608,6784,6800,6992,7088,7232,7248,42528,43216,43264,43472,43504,43600,44016,65296];function d(e){var r,n={type:"integer",primary:l.DECIMAL,case:h.LOWER,ordinal:!1},o=e.lastIndexOf(";");switch(-1===o?r=e:(r=e.substring(0,o),"o"===e.substring(o+1)[0]&&(n.ordinal=!0)),r){case"A":n.case=h.UPPER;case"a":n.primary=l.LETTERS;break;case"I":n.case=h.UPPER;case"i":n.primary=l.ROMAN;break;case"W":n.case=h.UPPER,n.primary=l.WORDS;break;case"Ww":n.case=h.TITLE,n.primary=l.WORDS;break;case"w":n.primary=l.WORDS;break;default:var i=null,a=0,s=0,u=[],c=0;if(t(r).map((function(t){return t.codePointAt(0)})).reverse().forEach((function(t){for(var e=!1,r=0;r<y.length;r++){var n=y[r];if(t>=n&&t<=n+9){if(e=!0,a++,c++,null===i)i=n;else if(n!==i)throw{code:"D3131"};break}}e||(35===t?(c++,s++):u.push({position:c,character:String.fromCodePoint(t)}))})),a>0){n.primary=l.DECIMAL,n.zeroCode=i,n.mandatoryDigits=a,n.optionalDigits=s;var f=function(t){if(0===t.length)return 0;for(var e=t[0].character,r=1;r<t.length;r++)if(t[r].character!==e)return 0;for(var n=t.map((function(t){return t.position})),o=n.reduce((function t(e,r){return 0===r?e:t(r,e%r)})),i=1;i<=n.length;i++)if(-1===n.indexOf(i*o))return 0;return o}(u);f>0?(n.regular=!0,n.groupingSeparators={position:f,character:u[0].character}):(n.regular=!1,n.groupingSeparators=u)}else n.primary=l.SEQUENCE,n.token=r}return n}var v={Y:"1",M:"1",D:"1",d:"1",F:"n",W:"1",w:"1",X:"1",x:"1",H:"1",h:"1",P:"n",m:"01",s:"01",f:"1",Z:"01:01",z:"01:01",C:"n",E:"n"};function g(t){for(var e=[],r={type:"datetime",parts:e},n=function(r,n){if(n>r){var o=t.substring(r,n);o=o.split("]]").join("]"),e.push({type:"literal",value:o})}},o=0,i=0;i<t.length;){if("["===t.charAt(i)){if("["===t.charAt(i+1)){n(o,i),e.push({type:"literal",value:"["}),o=i+=2;continue}if(n(o,i),o=i,-1===(i=t.indexOf("]",o)))throw{code:"D3135"};var a,s=t.substring(o+1,i),u={type:"marker",component:(s=s.split(/\s+/).join("")).charAt(0)},c=s.lastIndexOf(",");if(-1!==c){var f=s.substring(c+1),l=f.indexOf("-"),p=void 0,y=void 0,g=function(t){return void 0===t||"*"===t?void 0:parseInt(t)};-1===l?p=f:(p=f.substring(0,l),y=f.substring(l+1));var b={min:g(p),max:g(y)};u.width=b,a=s.substring(1,c)}else a=s.substring(1);if(1===a.length)u.presentation1=a;else if(a.length>1){var m=a.charAt(a.length-1);-1!=="atco".indexOf(m)?(u.presentation2=m,"o"===m&&(u.ordinal=!0),u.presentation1=a.substring(0,a.length-1)):u.presentation1=a}else u.presentation1=v[u.component];if(void 0===u.presentation1)throw{code:"D3132",value:u.component};if("n"===u.presentation1[0])u.names=h.LOWER;else if("N"===u.presentation1[0])"n"===u.presentation1[1]?u.names=h.TITLE:u.names=h.UPPER;else if(-1!=="YMDdFWwXxHhmsf".indexOf(u.component)){var w=u.presentation1;if(u.presentation2&&(w+=";"+u.presentation2),u.integerFormat=d(w),u.width&&void 0!==u.width.min&&u.integerFormat.mandatoryDigits<u.width.min&&(u.integerFormat.mandatoryDigits=u.width.min),-1!=="YMD".indexOf(u.component))if(u.n=-1,u.width&&void 0!==u.width.max)u.n=u.width.max,u.integerFormat.mandatoryDigits=u.n;else{var x=u.integerFormat.mandatoryDigits+u.integerFormat.optionalDigits;x>=2&&(u.n=x)}}"Z"!==u.component&&"z"!==u.component||(u.integerFormat=d(u.presentation1)),e.push(u),o=i+1}i++}return n(o,i),r}var b=["","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],m=["January","February","March","April","May","June","July","August","September","October","November","December"],w=864e5,x=function(t){var e=Date.UTC(t.year,t.month),r=new Date(e).getUTCDay();return 0===r&&(r=7),r>4?e+(8-r)*w:e-(r-1)*w},k=function t(e,r){return{year:e,month:r,nextMonth:function(){return 11===r?t(e+1,0):t(e,r+1)},previousMonth:function(){return 0===r?t(e-1,11):t(e,r-1)},nextYear:function(){return t(e+1,r)},previousYear:function(){return t(e-1,r)}}},S=function(t,e){return(e-t)/6048e5+1},_=function(t,e){var r;switch(e){case"Y":r=t.getUTCFullYear();break;case"M":r=t.getUTCMonth()+1;break;case"D":r=t.getUTCDate();break;case"d":r=(Date.UTC(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate())-Date.UTC(t.getUTCFullYear(),0))/w+1;break;case"F":0===(r=t.getUTCDay())&&(r=7);break;case"W":var n=k(t.getUTCFullYear(),0),o=x(n),i=Date.UTC(n.year,t.getUTCMonth(),t.getUTCDate()),a=S(o,i);if(a>52)i>=x(n.nextYear())&&(a=1);else if(a<1){var s=x(n.previousYear());a=S(s,i)}r=Math.floor(a);break;case"w":var u=k(t.getUTCFullYear(),t.getUTCMonth()),c=x(u),f=Date.UTC(u.year,u.month,t.getUTCDate()),l=S(c,f);if(l>4)f>=x(u.nextMonth())&&(l=1);else if(l<1){var h=x(u.previousMonth());l=S(h,f)}r=Math.floor(l);break;case"X":var p=k(t.getUTCFullYear(),0),y=x(p),d=x(p.nextYear()),v=t.getTime();r=v<y?p.year-1:v>=d?p.year+1:p.year;break;case"x":var g=k(t.getUTCFullYear(),t.getUTCMonth()),b=x(g),m=g.nextMonth(),_=x(m),O=t.getTime();r=O<b?g.previousMonth().month+1:O>=_?m.month+1:g.month+1;break;case"H":r=t.getUTCHours();break;case"h":r=t.getUTCHours(),0==(r%=12)&&(r=12);break;case"P":r=t.getUTCHours()>=12?"pm":"am";break;case"m":r=t.getUTCMinutes();break;case"s":r=t.getUTCSeconds();break;case"f":r=t.getUTCMilliseconds();break;case"Z":case"z":break;case"C":case"E":r="ISO"}return r},O=null;function E(t,e,r){var n,o=0,i=0;if(void 0!==r){var a=parseInt(r);o=Math.floor(a/100),i=a%100}void 0===e?(null===O&&(O=g("[Y0001]-[M01]-[D01]T[H01]:[m01]:[s01].[f001][Z01:01t]")),n=O):n=g(e);var s=new Date(t+60*(60*o+i)*1e3),u="";return n.parts.forEach((function(t){"literal"===t.type?u+=t.value:u+=function(t,e){var r=_(t,e.component);if(-1!=="YMDdFWwXxHhms".indexOf(e.component))if("Y"===e.component&&-1!==e.n&&(r%=Math.pow(10,e.n)),e.names){if("M"===e.component||"x"===e.component)r=m[r-1];else{if("F"!==e.component)throw{code:"D3133",value:e.component};r=b[r]}e.names===h.UPPER?r=r.toUpperCase():e.names===h.LOWER&&(r=r.toLowerCase()),e.width&&r.length>e.width.max&&(r=r.substring(0,e.width.max))}else r=p(r,e.integerFormat);else if("f"===e.component)r=p(r,e.integerFormat);else if("Z"===e.component||"z"===e.component){var n=100*o+i;if(e.integerFormat.regular)r=p(n,e.integerFormat);else{var a=e.integerFormat.mandatoryDigits;if(1===a||2===a)r=p(o,e.integerFormat),0!==i&&(r+=":"+f(i,"00"));else{if(3!==a&&4!==a)throw{code:"D3134",value:a};r=p(n,e.integerFormat)}}n>=0&&(r="+"+r),"z"===e.component&&(r="GMT"+r),0===n&&"t"===e.presentation2&&(r="Z")}return r}(s,t)})),u}function A(t){var e={};if("datetime"===t.type)e.type="datetime",e.parts=t.parts.map((function(t){var e={};if("literal"===t.type)e.regex=t.value.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");else if("Z"===t.component||"z"===t.component){var r;Array.isArray(t.integerFormat.groupingSeparators)||(r=t.integerFormat.groupingSeparators),e.regex="","z"===t.component&&(e.regex="GMT"),e.regex+="[-+][0-9]+",r&&(e.regex+=r.character+"[0-9]+"),e.parse=function(e){"z"===t.component&&(e=e.substring(3));var n=0,o=0;return r?(n=Number.parseInt(e.substring(0,e.indexOf(r.character))),o=Number.parseInt(e.substring(e.indexOf(r.character)+1))):e.length-1<=2?n=Number.parseInt(e):(n=Number.parseInt(e.substring(0,3)),o=Number.parseInt(e.substring(3))),60*n+o}}else if(t.integerFormat)t.integerFormat.n=t.n,e=A(t.integerFormat);else{e.regex="[a-zA-Z]+";var n={};if("M"===t.component||"x"===t.component)m.forEach((function(e,r){t.width&&t.width.max?n[e.substring(0,t.width.max)]=r+1:n[e]=r+1}));else if("F"===t.component)b.forEach((function(e,r){r>0&&(t.width&&t.width.max?n[e.substring(0,t.width.max)]=r:n[e]=r)}));else{if("P"!==t.component)throw{code:"D3133",value:t.component};n={am:0,AM:0,pm:1,PM:1}}e.parse=function(t){return n[t]}}return e.component=t.component,e}));else{e.type="integer";var r,n=t.case===h.UPPER;switch(r=t.n&&t.n>0?0===t.optionalDigits?"{".concat(t.n,"}"):"{".concat(t.n-t.optionalDigits,",").concat(t.n,"}"):"+",t.primary){case l.LETTERS:e.regex=n?"[A-Z]+":"[a-z]+",e.parse=function(t){return function(t,e){for(var r=e.charCodeAt(0),n=0,o=0;o<t.length;o++)n+=(t.charCodeAt(t.length-o-1)-r+1)*Math.pow(26,o);return n}(t,n?"A":"a")};break;case l.ROMAN:e.regex=n?"[MDCLXVI]+":"[mdclxvi]+",e.parse=function(t){return function(t){for(var e=0,r=1,n=t.length-1;n>=0;n--){var o=t[n],i=u[o];i<r?e-=i:(r=i,e+=i)}return e}(n?t:t.toUpperCase())};break;case l.WORDS:e.regex="(?:"+Object.keys(a).concat("and","[\\-, ]").join("|")+")+",e.parse=function(t){return e=t.toLowerCase().split(/,\s|\sand\s|[\s\\-]/).map((function(t){return a[t]})),r=[0],e.forEach((function(t){if(t<100){var e=r.pop();e>=1e3&&(r.push(e),e=0),r.push(e+t)}else r.push(r.pop()*t)})),r.reduce((function(t,e){return t+e}),0);var e,r};break;case l.DECIMAL:e.regex="[0-9]".concat(r),t.ordinal&&(e.regex+="(?:th|st|nd|rd)"),e.parse=function(e){var r=e;return t.ordinal&&(r=e.substring(0,e.length-2)),t.regular?r=r.split(",").join(""):t.groupingSeparators.forEach((function(t){r=r.split(t.character).join("")})),48!==t.zeroCode&&(r=r.split("").map((function(e){return String.fromCodePoint(e.codePointAt(0)-t.zeroCode+48)})).join("")),parseInt(r)};break;case l.SEQUENCE:throw{code:"D3130",value:t.token}}}return e}function P(t,e){var r=A(g(e)),n="^"+r.parts.map((function(t){return"("+t.regex+")"})).join("")+"$",o=new RegExp(n,"i").exec(t);if(null!==o){for(var i={},a=1;a<o.length;a++){var s=r.parts[a-1];s.parse&&(i[s.component]=s.parse(o[a]))}if(0===Object.getOwnPropertyNames(i).length)return;var u=0,c=function(t){u<<=1,u+=t?1:0},f=function(t){return!(~t&u||!(t&u))};"YXMxWwdD".split("").forEach((function(t){return c(i[t])}));var l=!f(161)&&f(130),h=f(84),p=!h&&f(72);u=0,"PHhmsf".split("").forEach((function(t){return c(i[t])}));var y=!f(23)&&f(47),d=(l?"YD":h?"XxwF":p?"XWF":"YMD")+(y?"Phmsf":"Hmsf"),v=this.environment.timestamp,b=!1,m=!1;if(d.split("").forEach((function(t){if(void 0===i[t])b?(i[t]=-1!=="MDd".indexOf(t)?1:0,m=!0):i[t]=_(v,t);else if(b=!0,m)throw{code:"D3136"}})),i.M>0?i.M-=1:i.M=0,l){var w=Date.UTC(i.Y,0),x=1e3*(i.d-1)*60*60*24,k=new Date(w+x);i.M=k.getUTCMonth(),i.D=k.getUTCDate()}if(h)throw{code:"D3136"};if(p)throw{code:"D3136"};y&&(i.H=12===i.h?0:i.h,1===i.P&&(i.H+=12));var S=Date.UTC(i.Y,i.M,i.D,i.H,i.m,i.s,i.f);return(i.Z||i.z)&&(S-=60*(i.Z||i.z)*1e3),S}}var j=new RegExp("^\\d{4}(-[01]\\d)*(-[0-3]\\d)*(T[0-2]\\d:[0-5]\\d:[0-5]\\d)*(\\.\\d+)?([+-][0-2]\\d:?[0-5]\\d|Z)?$");return{formatInteger:f,parseInteger:function(t,e){if(void 0!==t)return A(d(e)).parse(t)},fromMillis:function(t,e,r){if(void 0!==t)return E.call(this,t,e,r)},toMillis:function(t,e){if(void 0!==t){if(void 0===e){if(!j.test(t))throw{stack:(new Error).stack,code:"D3110",value:t};return Date.parse(t)}return P.call(this,t,e)}}}}();e.exports=o},{"./utils":6}],2:[function(t,e,n){(function(r){(function(){"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=t("./utils"),i=function(){var t=a().mark(j),e=a().mark(T),i=a().mark(M),s=a().mark(R),u=a().mark(I),c=a().mark(B),f=a().mark(N),l=a().mark(F),h=a().mark(z),p=a().mark(Y),y=a().mark(G),d=a().mark(H),v=o.isNumeric,g=o.isArrayOfStrings,b=o.isArrayOfNumbers,m=o.createSequence,w=o.isSequence,x=o.isFunction,k=o.isLambda,S=o.isIterable,_=o.getFunctionArity,O=o.isDeepEqual,E=o.stringToArray;function A(t,e,r){if(void 0!==t){var n=E(t),o=n.length;if(o+e<0&&(e=0),void 0!==r){if(r<=0)return"";var i=e>=0?e+r:o+e+r;return n.slice(e,i).join("")}return n.slice(e).join("")}}function P(t){if(void 0!==t)return E(t).length}function j(e,r){var n;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n=e.apply(this,[r]),!S(n)){t.next=4;break}return t.delegateYield(n,"t0",3);case 3:n=t.t0;case 4:if(!n||"number"==typeof n.start||"number"===n.end||Array.isArray(n.groups)||x(n.next)){t.next=6;break}throw{code:"T1010",stack:(new Error).stack};case 6:return t.abrupt("return",n);case 7:case"end":return t.stop()}}),t,this)}function T(t,r){var n,o;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==t){e.next=2;break}return e.abrupt("return",void 0);case 2:if("string"!=typeof r){e.next=6;break}n=-1!==t.indexOf(r),e.next=9;break;case 6:return e.delegateYield(j(r,t),"t0",7);case 7:o=e.t0,n=void 0!==o;case 9:return e.abrupt("return",n);case 10:case"end":return e.stop()}}),e)}function M(t,e,r){var n,o,s;return a().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(!(r<0)){i.next=4;break}throw{stack:(new Error).stack,value:r,code:"D3040",index:3};case 4:if(n=m(),!(void 0===r||r>0)){i.next=17;break}return o=0,i.delegateYield(j(e,t),"t0",8);case 8:if(void 0===(s=i.t0)){i.next=17;break}case 10:if(void 0===s||!(void 0===r||o<r)){i.next=17;break}return n.push({match:s.match,index:s.start,groups:s.groups}),i.delegateYield(j(s.next),"t1",13);case 13:s=i.t1,o++,i.next=10;break;case 17:return i.abrupt("return",n);case 18:case"end":return i.stop()}}),i)}function R(t,e,r,n){var o,i,u,c,f,l,h,p;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:if(o=this,""!==e){a.next=5;break}throw{code:"D3010",stack:(new Error).stack,value:e,index:2};case 5:if(!(n<0)){a.next=7;break}throw{code:"D3011",stack:(new Error).stack,value:n,index:4};case 7:if(i="string"==typeof r?function(t){for(var e="",n=0,o=r.indexOf("$",n);-1!==o&&n<r.length;){e+=r.substring(n,o),n=o+1;var i=r.charAt(n);if("$"===i)e+="$",n++;else if("0"===i)e+=t.match,n++;else{var a;if(a=0===t.groups.length?1:Math.floor(Math.log(t.groups.length)*Math.LOG10E)+1,o=parseInt(r.substring(n,n+a),10),a>1&&o>t.groups.length&&(o=parseInt(r.substring(n,n+a-1),10)),isNaN(o))e+="$";else{if(t.groups.length>0){var s=t.groups[o-1];void 0!==s&&(e+=s)}n+=o.toString().length}}o=r.indexOf("$",n)}return e+r.substring(n)}:r,u="",c=0,!(void 0===n||n>0)){a.next=44;break}if(f=0,"string"!=typeof e){a.next=18;break}for(l=t.indexOf(e,c);-1!==l&&(void 0===n||f<n);)u+=t.substring(c,l),u+=r,c=l+e.length,f++,l=t.indexOf(e,c);u+=t.substring(c),a.next=42;break;case 18:return a.delegateYield(j(e,t),"t0",19);case 19:if(void 0===(h=a.t0)){a.next=41;break}case 21:if(void 0===h||!(void 0===n||f<n)){a.next=38;break}if(u+=t.substring(c,h.start),p=i.apply(o,[h]),!S(p)){a.next=27;break}return a.delegateYield(p,"t1",26);case 26:p=a.t1;case 27:if("string"!=typeof p){a.next=31;break}u+=p,a.next=32;break;case 31:throw{code:"D3012",stack:(new Error).stack,value:p};case 32:return c=h.start+h.match.length,f++,a.delegateYield(j(h.next),"t2",35);case 35:h=a.t2,a.next=21;break;case 38:u+=t.substring(c),a.next=42;break;case 41:u=t;case 42:a.next=45;break;case 44:u=t;case 45:return a.abrupt("return",u);case 46:case"end":return a.stop()}}),s,this)}function I(t,e,r){var n,o,i,s;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:if(!(r<0)){a.next=4;break}throw{code:"D3020",stack:(new Error).stack,value:r,index:3};case 4:if(n=[],!(void 0===r||r>0)){a.next=27;break}if("string"!=typeof e){a.next=10;break}n=t.split(e,r),a.next=27;break;case 10:return o=0,a.delegateYield(j(e,t),"t0",12);case 12:if(void 0===(i=a.t0)){a.next=26;break}s=0;case 15:if(void 0===i||!(void 0===r||o<r)){a.next=23;break}return n.push(t.substring(s,i.start)),s=i.end,a.delegateYield(j(i.next),"t1",19);case 19:i=a.t1,o++,a.next=15;break;case 23:(void 0===r||o<r)&&n.push(t.substring(s)),a.next=27;break;case 26:n.push(t);case 27:return a.abrupt("return",n);case 28:case"end":return a.stop()}}),u)}function C(t,e){var r;if(void 0!==t){if(e){var n=t.toString().split("e");t=+(n[0]+"e"+(n[1]?+n[1]+e:e))}var o=(r=Math.round(t))-t;return.5===Math.abs(o)&&1===Math.abs(r%2)&&(r-=1),e&&(n=r.toString().split("e"),r=+(n[0]+"e"+(n[1]?+n[1]-e:-e))),Object.is(r,-0)&&(r=0),r}}function L(t){if(void 0!==t){var e=!1;return Array.isArray(t)?1===t.length?e=L(t[0]):t.length>1&&(e=t.filter((function(t){return L(t)})).length>0):"string"==typeof t?t.length>0&&(e=!0):v(t)?0!==t&&(e=!0):null!==t&&"object"===n(t)?Object.keys(t).length>0&&(e=!0):"boolean"==typeof t&&!0===t&&(e=!0),e}}function D(t,e,r,n){var o=[e],i=_(t);return i>=2&&o.push(r),i>=3&&o.push(n),o}function B(t,e){var r,n,o,i;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:r=m(),n=0;case 4:if(!(n<t.length)){a.next=12;break}return o=D(e,t[n],n,t),a.delegateYield(e.apply(this,o),"t0",7);case 7:void 0!==(i=a.t0)&&r.push(i);case 9:n++,a.next=4;break;case 12:return a.abrupt("return",r);case 13:case"end":return a.stop()}}),c,this)}function N(t,e){var r,n,o,i;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:r=m(),n=0;case 4:if(!(n<t.length)){a.next=13;break}return o=t[n],i=D(e,o,n,t),a.delegateYield(e.apply(this,i),"t0",8);case 8:L(a.t0)&&r.push(o);case 10:n++,a.next=4;break;case 13:return a.abrupt("return",r);case 14:case"end":return a.stop()}}),f,this)}function F(t,e){var r,n,o,i,s,u,c;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:r=!1,o=0;case 4:if(!(o<t.length)){a.next=22;break}if(i=t[o],s=!0,void 0===e){a.next=12;break}return u=D(e,i,o,t),a.delegateYield(e.apply(this,u),"t0",10);case 10:c=a.t0,s=L(c);case 12:if(!s){a.next=19;break}if(r){a.next=18;break}n=i,r=!0,a.next=19;break;case 18:throw{stack:(new Error).stack,code:"D3138",index:o};case 19:o++,a.next=4;break;case 22:if(r){a.next=24;break}throw{stack:(new Error).stack,code:"D3139"};case 24:return a.abrupt("return",n);case 25:case"end":return a.stop()}}),l,this)}function z(t,e,r){var n,o,i,s;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:if(!((o=_(e))<2)){a.next=5;break}throw{stack:(new Error).stack,code:"D3050",index:1};case 5:void 0===r&&t.length>0?(n=t[0],i=1):(n=r,i=0);case 6:if(!(i<t.length)){a.next=15;break}return s=[n,t[i]],o>=3&&s.push(i),o>=4&&s.push(t),a.delegateYield(e.apply(this,s),"t0",11);case 11:n=a.t0,i++,a.next=6;break;case 15:return a.abrupt("return",n);case 16:case"end":return a.stop()}}),h,this)}function U(t,e){return void 0===t?e:void 0===e?t:(Array.isArray(t)||(t=m(t)),Array.isArray(e)||(e=[e]),t.concat(e))}function Y(t,e){var r,n,o,i;return a().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:r=m(),s.t0=a().keys(t);case 2:if((s.t1=s.t0()).done){s.next=10;break}return n=s.t1.value,o=D(e,t[n],n,t),s.delegateYield(e.apply(this,o),"t2",6);case 6:void 0!==(i=s.t2)&&r.push(i),s.next=2;break;case 10:return s.abrupt("return",r);case 11:case"end":return s.stop()}}),p,this)}function G(t,e){var r,n,o,i;return a().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:if(void 0!==t){s.next=2;break}return s.abrupt("return",void 0);case 2:if(!(t.length<=1)){s.next=4;break}return s.abrupt("return",t);case 4:if(void 0!==e){s.next=10;break}if(b(t)||g(t)){s.next=7;break}throw{stack:(new Error).stack,code:"D3070",index:1};case 7:r=a().mark((function t(e,r){return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.abrupt("return",e>r);case 1:case"end":return t.stop()}}),t)})),s.next=11;break;case 10:r=e;case 11:return n=a().mark((function t(e,n){var o,i;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return o=a().mark((function t(e,n,o){return a().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(0!==n.length){i.next=4;break}Array.prototype.push.apply(e,o),i.next=16;break;case 4:if(0!==o.length){i.next=8;break}Array.prototype.push.apply(e,n),i.next=16;break;case 8:return i.delegateYield(r(n[0],o[0]),"t0",9);case 9:if(!i.t0){i.next=14;break}return e.push(o[0]),i.delegateYield(t(e,n,o.slice(1)),"t1",12);case 12:i.next=16;break;case 14:return e.push(n[0]),i.delegateYield(t(e,n.slice(1),o),"t2",16);case 16:case"end":return i.stop()}}),t)})),i=[],t.delegateYield(o(i,e,n),"t0",3);case 3:return t.abrupt("return",i);case 4:case"end":return t.stop()}}),t)})),o=a().mark((function t(e){var r,o,i;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(Array.isArray(e)&&!(e.length<=1)){a.next=4;break}return a.abrupt("return",e);case 4:return r=Math.floor(e.length/2),o=e.slice(0,r),i=e.slice(r),a.delegateYield(t(o),"t0",8);case 8:return o=a.t0,a.delegateYield(t(i),"t1",10);case 10:return i=a.t1,a.delegateYield(n(o,i),"t2",12);case 12:return a.abrupt("return",a.t2);case 13:case"end":return a.stop()}}),t)})),s.delegateYield(o(t),"t0",14);case 14:return i=s.t0,s.abrupt("return",i);case 16:case"end":return s.stop()}}),y)}function H(t,e){var r,n,o,i;return a().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:r={},s.t0=a().keys(t);case 2:if((s.t1=s.t0()).done){s.next=11;break}return n=s.t1.value,o=t[n],i=D(e,o,n,t),s.delegateYield(e.apply(this,i),"t2",7);case 7:L(s.t2)&&(r[n]=o),s.next=2;break;case 11:return 0===Object.keys(r).length&&(r=void 0),s.abrupt("return",r);case 13:case"end":return s.stop()}}),d,this)}return{sum:function(t){if(void 0!==t){var e=0;return t.forEach((function(t){e+=t})),e}},count:function(t){return void 0===t?0:t.length},max:function(t){if(void 0!==t&&0!==t.length)return Math.max.apply(Math,t)},min:function(t){if(void 0!==t&&0!==t.length)return Math.min.apply(Math,t)},average:function(t){if(void 0!==t&&0!==t.length){var e=0;return t.forEach((function(t){e+=t})),e/t.length}},string:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(void 0!==t){var r;if("string"==typeof t)r=t;else if(x(t))r="";else{if("number"==typeof t&&!isFinite(t))throw{code:"D3001",value:t,stack:(new Error).stack};var n=e?2:0;Array.isArray(t)&&t.outerWrapper&&(t=t[0]),r=JSON.stringify(t,(function(t,e){return null!=e&&e.toPrecision&&v(e)?Number(e.toPrecision(15)):e&&x(e)?"":e}),n)}return r}},substring:A,substringBefore:function(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(0,r):t}},substringAfter:function(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(r+e.length):t}},lowercase:function(t){if(void 0!==t)return t.toLowerCase()},uppercase:function(t){if(void 0!==t)return t.toUpperCase()},length:P,trim:function(t){if(void 0!==t){var e=t.replace(/[ \t\n\r]+/gm," ");return" "===e.charAt(0)&&(e=e.substring(1))," "===e.charAt(e.length-1)&&(e=e.substring(0,e.length-1)),e}},pad:function(t,e,r){if(void 0!==t){var n;void 0!==r&&0!==r.length||(r=" ");var o=Math.abs(e)-P(t);if(o>0){var i=new Array(o+1).join(r);r.length>1&&(i=A(i,0,o)),n=e>0?t+i:i+t}else n=t;return n}},match:M,contains:T,replace:R,split:I,join:function(t,e){if(void 0!==t)return void 0===e&&(e=""),t.join(e)},formatNumber:function(t,e,r){if(void 0!==t){var n={"decimal-separator":".","grouping-separator":",","exponent-separator":"e",infinity:"Infinity","minus-sign":"-",NaN:"NaN",percent:"%","per-mille":"‰","zero-digit":"0",digit:"#","pattern-separator":";"};void 0!==r&&Object.keys(r).forEach((function(t){n[t]=r[t]}));for(var o=[],i=n["zero-digit"].charCodeAt(0),a=i;a<i+10;a++)o.push(String.fromCharCode(a));var s=o.concat([n["decimal-separator"],n["exponent-separator"],n["grouping-separator"],n.digit,n["pattern-separator"]]),u=e.split(n["pattern-separator"]);if(u.length>2)throw{code:"D3080",stack:(new Error).stack};var c=u.map((function(t){var e,r,o,i,a=function(){for(var e,r=0;r<t.length;r++)if(e=t.charAt(r),-1!==s.indexOf(e)&&e!==n["exponent-separator"])return t.substring(0,r)}(),u=function(){for(var e,r=t.length-1;r>=0;r--)if(e=t.charAt(r),-1!==s.indexOf(e)&&e!==n["exponent-separator"])return t.substring(r+1)}(),c=t.substring(a.length,t.length-u.length),f=t.indexOf(n["exponent-separator"],a.length);-1===f||f>t.length-u.length?(e=c,r=void 0):(e=c.substring(0,f),r=c.substring(f+1));var l=e.indexOf(n["decimal-separator"]);return-1===l?(o=e,i=u):(o=e.substring(0,l),i=e.substring(l+1)),{prefix:a,suffix:u,activePart:c,mantissaPart:e,exponentPart:r,integerPart:o,fractionalPart:i,subpicture:t}}));c.forEach((function(t){var e,r,i=t.subpicture,a=i.indexOf(n["decimal-separator"]);a!==i.lastIndexOf(n["decimal-separator"])&&(e="D3081"),i.indexOf(n.percent)!==i.lastIndexOf(n.percent)&&(e="D3082"),i.indexOf(n["per-mille"])!==i.lastIndexOf(n["per-mille"])&&(e="D3083"),-1!==i.indexOf(n.percent)&&-1!==i.indexOf(n["per-mille"])&&(e="D3084");var u=!1;for(r=0;r<t.mantissaPart.length;r++){var c=t.mantissaPart.charAt(r);if(-1!==o.indexOf(c)||c===n.digit){u=!0;break}}u||(e="D3085"),-1!==t.activePart.split("").map((function(t){return-1===s.indexOf(t)?"p":"a"})).join("").indexOf("p")&&(e="D3086"),-1!==a?i.charAt(a-1)!==n["grouping-separator"]&&i.charAt(a+1)!==n["grouping-separator"]||(e="D3087"):t.integerPart.charAt(t.integerPart.length-1)===n["grouping-separator"]&&(e="D3088"),-1!==i.indexOf(n["grouping-separator"]+n["grouping-separator"])&&(e="D3089");var f=t.integerPart.indexOf(n.digit);-1!==f&&t.integerPart.substring(0,f).split("").filter((function(t){return o.indexOf(t)>-1})).length>0&&(e="D3090"),-1!==(f=t.fractionalPart.lastIndexOf(n.digit))&&t.fractionalPart.substring(f).split("").filter((function(t){return o.indexOf(t)>-1})).length>0&&(e="D3091");var l="string"==typeof t.exponentPart;if(l&&t.exponentPart.length>0&&(-1!==i.indexOf(n.percent)||-1!==i.indexOf(n["per-mille"]))&&(e="D3092"),l&&(0===t.exponentPart.length||t.exponentPart.split("").filter((function(t){return-1===o.indexOf(t)})).length>0)&&(e="D3093"),e)throw{code:e,stack:(new Error).stack}}));var f,l,h,p,y=c.map((function(t){var e=function(e,r){for(var i=[],a=e.indexOf(n["grouping-separator"]);-1!==a;){var s=(r?e.substring(0,a):e.substring(a)).split("").filter((function(t){return-1!==o.indexOf(t)||t===n.digit})).length;i.push(s),a=t.integerPart.indexOf(n["grouping-separator"],a+1)}return i},r=e(t.integerPart),i=function(t){if(0===t.length)return 0;for(var e=t.reduce((function t(e,r){return 0===r?e:t(r,e%r)})),r=1;r<=t.length;r++)if(-1===t.indexOf(r*e))return 0;return e}(r),a=e(t.fractionalPart,!0),s=t.integerPart.split("").filter((function(t){return-1!==o.indexOf(t)})).length,u=s,c=t.fractionalPart.split(""),f=c.filter((function(t){return-1!==o.indexOf(t)})).length,l=c.filter((function(t){return-1!==o.indexOf(t)||t===n.digit})).length,h="string"==typeof t.exponentPart;0===s&&0===l&&(h?(f=1,l=1):s=1),h&&0===s&&-1!==t.integerPart.indexOf(n.digit)&&(s=1),0===s&&0===f&&(f=1);var p=0;return h&&(p=t.exponentPart.split("").filter((function(t){return-1!==o.indexOf(t)})).length),{integerPartGroupingPositions:r,regularGrouping:i,minimumIntegerPartSize:s,scalingFactor:u,prefix:t.prefix,fractionalPartGroupingPositions:a,minimumFactionalPartSize:f,maximumFactionalPartSize:l,minimumExponentSize:p,suffix:t.suffix,picture:t.subpicture}})),d=n["minus-sign"],v=n["zero-digit"],g=n["decimal-separator"],b=n["grouping-separator"];if(1===y.length&&(y.push(JSON.parse(JSON.stringify(y[0]))),y[1].prefix=d+y[1].prefix),l=-1!==(f=t>=0?y[0]:y[1]).picture.indexOf(n.percent)?100*t:-1!==f.picture.indexOf(n["per-mille"])?1e3*t:t,0===f.minimumExponentSize)h=l;else{var m=Math.pow(10,f.scalingFactor),w=Math.pow(10,f.scalingFactor-1);for(h=l,p=0;h<w;)h*=10,p-=1;for(;h>m;)h/=10,p+=1}var x=function(t,e){var r=Math.abs(t).toFixed(e);return"0"!==v&&(r=r.split("").map((function(t){return t>="0"&&t<="9"?o[t.charCodeAt(0)-48]:t})).join("")),r},k=x(C(h,f.maximumFactionalPartSize),f.maximumFactionalPartSize),S=k.indexOf(".");for(-1===S?k+=g:k=k.replace(".",g);k.charAt(0)===v;)k=k.substring(1);for(;k.charAt(k.length-1)===v;)k=k.substring(0,k.length-1);S=k.indexOf(g);var _=f.minimumIntegerPartSize-S,O=f.minimumFactionalPartSize-(k.length-S-1);if(k=(_>0?new Array(_+1).join(v):"")+k,k+=O>0?new Array(O+1).join(v):"",S=k.indexOf(g),f.regularGrouping>0)for(var E=Math.floor((S-1)/f.regularGrouping),A=1;A<=E;A++)k=[k.slice(0,S-A*f.regularGrouping),b,k.slice(S-A*f.regularGrouping)].join("");else f.integerPartGroupingPositions.forEach((function(t){k=[k.slice(0,S-t),b,k.slice(S-t)].join(""),S++}));if(S=k.indexOf(g),f.fractionalPartGroupingPositions.forEach((function(t){k=[k.slice(0,t+S+1),b,k.slice(t+S+1)].join("")})),S=k.indexOf(g),-1!==f.picture.indexOf(g)&&S!==k.length-1||(k=k.substring(0,k.length-1)),void 0!==p){var P=x(p,0);(_=f.minimumExponentSize-P.length)>0&&(P=new Array(_+1).join(v)+P),k=k+n["exponent-separator"]+(p<0?d:"")+P}return k=f.prefix+k+f.suffix}},formatBase:function(t,e){if(void 0!==t){if(t=C(t),(e=void 0===e?10:C(e))<2||e>36)throw{code:"D3100",stack:(new Error).stack,value:e};return t.toString(e)}},number:function(t){var e;if(void 0!==t){if("number"==typeof t)e=t;else if("string"==typeof t&&/^-?[0-9]+(\.[0-9]+)?([Ee][-+]?[0-9]+)?$/.test(t)&&!isNaN(parseFloat(t))&&isFinite(t))e=parseFloat(t);else if(!0===t)e=1;else{if(!1!==t)throw{code:"D3030",value:t,stack:(new Error).stack,index:1};e=0}return e}},floor:function(t){if(void 0!==t)return Math.floor(t)},ceil:function(t){if(void 0!==t)return Math.ceil(t)},round:C,abs:function(t){if(void 0!==t)return Math.abs(t)},sqrt:function(t){if(void 0!==t){if(t<0)throw{stack:(new Error).stack,code:"D3060",index:1,value:t};return Math.sqrt(t)}},power:function(t,e){var r;if(void 0!==t){if(r=Math.pow(t,e),!isFinite(r))throw{stack:(new Error).stack,code:"D3061",index:1,value:t,exp:e};return r}},random:function(){return Math.random()},boolean:L,not:function(t){if(void 0!==t)return!L(t)},map:B,zip:function(){for(var t=[],e=Array.prototype.slice.call(arguments),r=Math.min.apply(Math,e.map((function(t){return Array.isArray(t)?t.length:0}))),n=0;n<r;n++){var o=e.map((function(t){return t[n]}));t.push(o)}return t},filter:N,single:F,foldLeft:z,sift:H,keys:function t(e){var r=m();if(Array.isArray(e)){var o={};e.forEach((function(e){t(e).forEach((function(t){o[t]=!0}))})),r=t(o)}else null===e||"object"!==n(e)||k(e)||Object.keys(e).forEach((function(t){return r.push(t)}));return r},lookup:function t(e,r){var o;if(Array.isArray(e)){o=m();for(var i=0;i<e.length;i++){var a=t(e[i],r);void 0!==a&&(Array.isArray(a)?a.forEach((function(t){return o.push(t)})):o.push(a))}}else null!==e&&"object"===n(e)&&(o=e[r]);return o},append:U,exists:function(t){return void 0!==t},spread:function t(e){var r=m();if(Array.isArray(e))e.forEach((function(e){r=U(r,t(e))}));else if(null===e||"object"!==n(e)||k(e))r=e;else for(var o in e){var i={};i[o]=e[o],r.push(i)}return r},merge:function(t){if(void 0!==t){var e={};return t.forEach((function(t){for(var r in t)e[r]=t[r]})),e}},reverse:function(t){if(void 0!==t){if(t.length<=1)return t;for(var e=t.length,r=new Array(e),n=0;n<e;n++)r[e-n-1]=t[n];return r}},each:Y,error:function(t){throw{code:"D3137",stack:(new Error).stack,message:t||"$error() function evaluated"}},assert:function(t,e){if(!t)throw{code:"D3141",stack:(new Error).stack,message:e||"$assert() statement failed"}},type:function(t){if(void 0!==t)return null===t?"null":v(t)?"number":"string"==typeof t?"string":"boolean"==typeof t?"boolean":Array.isArray(t)?"array":x(t)?"function":"object"},sort:G,shuffle:function(t){if(void 0!==t){if(t.length<=1)return t;for(var e=new Array(t.length),r=0;r<t.length;r++){var n=Math.floor(Math.random()*(r+1));r!==n&&(e[r]=e[n]),e[n]=t[r]}return e}},distinct:function(t){if(void 0!==t){if(!Array.isArray(t)||t.length<=1)return t;for(var e=w(t)?m():[],r=0;r<t.length;r++){for(var n=t[r],o=!1,i=0;i<e.length;i++)if(O(n,e[i])){o=!0;break}o||e.push(n)}return e}},base64encode:function(t){if(void 0!==t){var e="undefined"!=typeof window?window.btoa:function(t){return new r.Buffer.from(t,"binary").toString("base64")};return e(t)}},base64decode:function(t){if(void 0!==t){var e="undefined"!=typeof window?window.atob:function(t){return new r.Buffer.from(t,"base64").toString("binary")};return e(t)}},encodeUrlComponent:function(t){if(void 0!==t){var e;try{e=encodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrlComponent"}}return e}},encodeUrl:function(t){if(void 0!==t){var e;try{e=encodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrl"}}return e}},decodeUrlComponent:function(t){if(void 0!==t){var e;try{e=decodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrlComponent"}}return e}},decodeUrl:function(t){if(void 0!==t){var e;try{e=decodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrl"}}return e}}}}();e.exports=i}).call(this)}).call(this,void 0!==r.g?r.g:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./utils":6}],3:[function(t,e,r){"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=t("./datetime"),i=t("./functions"),s=t("./utils"),u=t("./parser"),c=t("./signature"),f=function(){var t=a().mark(z),e=a().mark(U),r=a().mark(G),f=a().mark(H),l=a().mark(W),h=a().mark(X),p=a().mark(q),y=a().mark(V),d=a().mark(it),v=a().mark(ut),g=a().mark(lt),b=a().mark(ht),m=a().mark(pt),w=a().mark(vt),x=a().mark(mt),k=a().mark(wt),S=a().mark(xt),_=a().mark(kt),O=a().mark(_t),E=a().mark(Et),A=a().mark(jt),P=a().mark(Rt),j=s.isNumeric,T=s.isArrayOfStrings,M=s.isArrayOfNumbers,R=s.createSequence,I=s.isSequence,C=s.isFunction,L=s.isLambda,D=s.isIterable,B=s.getFunctionArity,N=s.isDeepEqual,F=It(null);function z(e,r,n){var o,i,s,u;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:(i=n.lookup("__evaluate_entry"))&&i(e,r,n),t.t0=e.type,t.next="path"===t.t0?5:"binary"===t.t0?8:"unary"===t.t0?11:"name"===t.t0?14:"string"===t.t0||"number"===t.t0||"value"===t.t0?16:"wildcard"===t.t0?18:"descendant"===t.t0?20:"parent"===t.t0?22:"condition"===t.t0?24:"block"===t.t0?27:"bind"===t.t0?30:"regex"===t.t0?33:"function"===t.t0?35:"variable"===t.t0?38:"lambda"===t.t0?40:"partial"===t.t0?42:"apply"===t.t0?45:"transform"===t.t0?48:50;break;case 5:return t.delegateYield(U(e,r,n),"t1",6);case 6:return o=t.t1,t.abrupt("break",50);case 8:return t.delegateYield(q(e,r,n),"t2",9);case 9:return o=t.t2,t.abrupt("break",50);case 11:return t.delegateYield(V(e,r,n),"t3",12);case 12:return o=t.t3,t.abrupt("break",50);case 14:return o=Q(e,r),t.abrupt("break",50);case 16:return o=K(e),t.abrupt("break",50);case 18:return o=J(0,r),t.abrupt("break",50);case 20:return o=$(0,r),t.abrupt("break",50);case 22:return o=n.lookup(e.slot.label),t.abrupt("break",50);case 24:return t.delegateYield(ht(e,r,n),"t4",25);case 25:return o=t.t4,t.abrupt("break",50);case 27:return t.delegateYield(pt(e,r,n),"t5",28);case 28:return o=t.t5,t.abrupt("break",50);case 30:return t.delegateYield(lt(e,r,n),"t6",31);case 31:return o=t.t6,t.abrupt("break",50);case 33:return o=yt(e),t.abrupt("break",50);case 35:return t.delegateYield(wt(e,r,n),"t7",36);case 36:return o=t.t7,t.abrupt("break",50);case 38:return o=dt(e,r,n),t.abrupt("break",50);case 40:return o=St(e,r,n),t.abrupt("break",50);case 42:return t.delegateYield(_t(e,r,n),"t8",43);case 43:return o=t.t8,t.abrupt("break",50);case 45:return t.delegateYield(mt(e,r,n),"t9",46);case 46:return o=t.t9,t.abrupt("break",50);case 48:return o=gt(e,0,n),t.abrupt("break",50);case 50:if(!n.async||null!=o&&"function"==typeof o.then||(o=Promise.resolve(o)),!n.async||"function"!=typeof o.then||!e.nextFunction||"function"!=typeof o[e.nextFunction]){t.next=54;break}t.next=57;break;case 54:return t.next=56,o;case 56:o=t.sent;case 57:if(!Object.prototype.hasOwnProperty.call(e,"predicate")){t.next=65;break}s=0;case 59:if(!(s<e.predicate.length)){t.next=65;break}return t.delegateYield(X(e.predicate[s].expr,o,n),"t10",61);case 61:o=t.t10;case 62:s++,t.next=59;break;case 65:if("path"===e.type||!Object.prototype.hasOwnProperty.call(e,"group")){t.next=68;break}return t.delegateYield(ut(e.group,o,n),"t11",67);case 67:o=t.t11;case 68:return(u=n.lookup("__evaluate_exit"))&&u(e,r,n,o),o&&I(o)&&!o.tupleStream&&(e.keepArray&&(o.keepSingleton=!0),0===o.length?o=void 0:1===o.length&&(o=o.keepSingleton?o:o[0])),t.abrupt("return",o);case 72:case"end":return t.stop()}}),t)}function U(t,r,n){var o,i,s,u,c,f;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:o=Array.isArray(r)&&"variable"!==t.steps[0].type?r:R(r),s=!1,u=void 0,c=0;case 4:if(!(c<t.steps.length)){e.next=25;break}if((f=t.steps[c]).tuple&&(s=!0),0!==c||!f.consarray){e.next=12;break}return e.delegateYield(z(f,o,n),"t0",9);case 9:i=e.t0,e.next=19;break;case 12:if(!s){e.next=17;break}return e.delegateYield(W(f,o,u,n),"t1",14);case 14:u=e.t1,e.next=19;break;case 17:return e.delegateYield(G(f,o,n,c===t.steps.length-1),"t2",18);case 18:i=e.t2;case 19:if(s||void 0!==i&&0!==i.length){e.next=21;break}return e.abrupt("break",25);case 21:void 0===f.focus&&(o=i);case 22:c++,e.next=4;break;case 25:if(s)if(t.tuple)i=u;else for(i=R(),c=0;c<u.length;c++)i.push(u[c]["@"]);if(t.keepSingletonArray&&(Array.isArray(i)&&i.cons&&!i.sequence&&(i=R(i)),i.keepSingleton=!0),!t.hasOwnProperty("group")){e.next=30;break}return e.delegateYield(ut(t.group,s?u:i,n),"t3",29);case 29:i=e.t3;case 30:return e.abrupt("return",i);case 31:case"end":return e.stop()}}),e)}function Y(t,e){var r=It(t);for(var n in e)r.bind(n,e[n]);return r}function G(t,e,n,o){var i,s,u,c,f;return a().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if("sort"!==t.type){r.next=7;break}return r.delegateYield(vt(t,e,n),"t0",2);case 2:if(i=r.t0,!t.stages){r.next=6;break}return r.delegateYield(H(t.stages,i,n),"t1",5);case 5:i=r.t1;case 6:return r.abrupt("return",i);case 7:i=R(),s=0;case 9:if(!(s<e.length)){r.next=24;break}return r.delegateYield(z(t,e[s],n),"t2",11);case 11:if(u=r.t2,!t.stages){r.next=20;break}c=0;case 14:if(!(c<t.stages.length)){r.next=20;break}return r.delegateYield(X(t.stages[c].expr,u,n),"t3",16);case 16:u=r.t3;case 17:c++,r.next=14;break;case 20:void 0!==u&&i.push(u);case 21:s++,r.next=9;break;case 24:return f=R(),o&&1===i.length&&Array.isArray(i[0])&&!I(i[0])?f=i[0]:i.forEach((function(t){!Array.isArray(t)||t.cons?f.push(t):t.forEach((function(t){return f.push(t)}))})),r.abrupt("return",f);case 27:case"end":return r.stop()}}),r)}function H(t,e,r){var n,o,i,s;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:n=e,o=0;case 2:if(!(o<t.length)){a.next=15;break}i=t[o],a.t0=i.type,a.next="filter"===a.t0?7:"index"===a.t0?10:12;break;case 7:return a.delegateYield(X(i.expr,n,r),"t1",8);case 8:return n=a.t1,a.abrupt("break",12);case 10:for(s=0;s<n.length;s++)n[s][i.value]=s;return a.abrupt("break",12);case 12:o++,a.next=2;break;case 15:return a.abrupt("return",n);case 16:case"end":return a.stop()}}),f)}function W(t,e,r,n){var o,i,s,u,c,f,h,p;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if("sort"!==t.type){a.next=15;break}if(!r){a.next=6;break}return a.delegateYield(vt(t,r,n),"t0",3);case 3:o=a.t0,a.next=11;break;case 6:return a.delegateYield(vt(t,e,n),"t1",7);case 7:for(i=a.t1,(o=R()).tupleStream=!0,s=0;s<i.length;s++)(u={"@":i[s]})[t.index]=s,o.push(u);case 11:if(!t.stages){a.next=14;break}return a.delegateYield(H(t.stages,o,n),"t2",13);case 13:o=a.t2;case 14:return a.abrupt("return",o);case 15:(o=R()).tupleStream=!0,c=n,void 0===r&&(r=e.map((function(t){return{"@":t}}))),f=0;case 20:if(!(f<r.length)){a.next=28;break}return c=Y(n,r[f]),a.delegateYield(z(t,r[f]["@"],c),"t3",23);case 23:if(void 0!==(h=a.t3))for(Array.isArray(h)||(h=[h]),p=0;p<h.length;p++)u={},Object.assign(u,r[f]),h.tupleStream?Object.assign(u,h[p]):(t.focus?(u[t.focus]=h[p],u["@"]=r[f]["@"]):u["@"]=h[p],t.index&&(u[t.index]=p),t.ancestor&&(u[t.ancestor.label]=r[f]["@"])),o.push(u);case 25:f++,a.next=20;break;case 28:if(!t.stages){a.next=31;break}return a.delegateYield(H(t.stages,o,n),"t4",30);case 30:o=a.t4;case 31:return a.abrupt("return",o);case 32:case"end":return a.stop()}}),l)}function X(t,e,r){var n,o,s,u,c,f;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(n=R(),e&&e.tupleStream&&(n.tupleStream=!0),Array.isArray(e)||(e=R(e)),"number"!==t.type){a.next=10;break}(o=Math.floor(t.value))<0&&(o=e.length+o),void 0!==(s=e[o])&&(Array.isArray(s)?n=s:n.push(s)),a.next=23;break;case 10:o=0;case 11:if(!(o<e.length)){a.next=23;break}return s=e[o],u=s,c=r,e.tupleStream&&(u=s["@"],c=Y(r,s)),a.delegateYield(z(t,u,c),"t0",17);case 17:f=a.t0,j(f)&&(f=[f]),M(f)?f.forEach((function(t){var r=Math.floor(t);r<0&&(r=e.length+r),r===o&&n.push(s)})):i.boolean(f)&&n.push(s);case 20:o++,a.next=11;break;case 23:return a.abrupt("return",n);case 24:case"end":return a.stop()}}),h)}function q(t,e,r){var n,o,i,s,u;return a().wrap((function(c){for(;;)switch(c.prev=c.next){case 0:return c.delegateYield(z(t.lhs,e,r),"t0",1);case 1:if(o=c.t0,i=t.value,s=a().mark((function n(){return a().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(z(t.rhs,e,r),"t0",1);case 1:return n.abrupt("return",n.t0);case 2:case"end":return n.stop()}}),n)})),"and"!==i&&"or"!==i){c.next=15;break}return c.prev=5,c.delegateYield(it(o,s,i),"t1",7);case 7:return c.abrupt("return",c.t1);case 10:throw c.prev=10,c.t2=c.catch(5),c.t2.position=t.position,c.t2.token=i,c.t2;case 15:return c.delegateYield(s(),"t3",16);case 16:u=c.t3,c.prev=17,c.t4=i,c.next="+"===c.t4||"-"===c.t4||"*"===c.t4||"/"===c.t4||"%"===c.t4?21:"="===c.t4||"!="===c.t4?23:"<"===c.t4||"<="===c.t4||">"===c.t4||">="===c.t4?25:"&"===c.t4?27:".."===c.t4?29:"in"===c.t4?31:33;break;case 21:return n=et(o,u,i),c.abrupt("break",33);case 23:return n=rt(o,u,i),c.abrupt("break",33);case 25:return n=nt(o,u,i),c.abrupt("break",33);case 27:return n=st(o,u),c.abrupt("break",33);case 29:return n=ft(o,u),c.abrupt("break",33);case 31:return n=ot(o,u),c.abrupt("break",33);case 33:c.next=40;break;case 35:throw c.prev=35,c.t5=c.catch(17),c.t5.position=t.position,c.t5.token=i,c.t5;case 40:return c.abrupt("return",n);case 41:case"end":return c.stop()}}),p,null,[[5,10],[17,35]])}function V(t,e,r){var n,o,s,u;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:a.t0=t.value,a.next="-"===a.t0?3:"["===a.t0?15:"{"===a.t0?27:30;break;case 3:return a.delegateYield(z(t.expression,e,r),"t1",4);case 4:if(void 0!==(n=a.t1)){a.next=9;break}n=void 0,a.next=14;break;case 9:if(!j(n)){a.next=13;break}n=-n,a.next=14;break;case 13:throw{code:"D1002",stack:(new Error).stack,position:t.position,token:t.value,value:n};case 14:return a.abrupt("break",30);case 15:n=[],o=0;case 17:if(!(o<t.expressions.length)){a.next=25;break}return s=t.expressions[o],a.delegateYield(z(s,e,r),"t2",20);case 20:void 0!==(u=a.t2)&&("["===s.value?n.push(u):n=i.append(n,u));case 22:o++,a.next=17;break;case 25:return t.consarray&&Object.defineProperty(n,"cons",{enumerable:!1,configurable:!1,value:!0}),a.abrupt("break",30);case 27:return a.delegateYield(ut(t,e,r),"t3",28);case 28:return n=a.t3,a.abrupt("break",30);case 30:return a.abrupt("return",n);case 31:case"end":return a.stop()}}),y)}function Q(t,e,r){return i.lookup(e,t.value)}function K(t){return t.value}function J(t,e){var r=R();return Array.isArray(e)&&e.outerWrapper&&e.length>0&&(e=e[0]),null!==e&&"object"===n(e)&&Object.keys(e).forEach((function(t){var n=e[t];Array.isArray(n)?(n=Z(n),r=i.append(r,n)):r.push(n)})),r}function Z(t,e){return void 0===e&&(e=[]),Array.isArray(t)?t.forEach((function(t){Z(t,e)})):e.push(t),e}function $(t,e){var r,n=R();return void 0!==e&&(tt(e,n),r=1===n.length?n[0]:n),r}function tt(t,e){Array.isArray(t)||e.push(t),Array.isArray(t)?t.forEach((function(t){tt(t,e)})):null!==t&&"object"===n(t)&&Object.keys(t).forEach((function(r){tt(t[r],e)}))}function et(t,e,r){var n;if(void 0!==t&&!j(t))throw{code:"T2001",stack:(new Error).stack,value:t};if(void 0!==e&&!j(e))throw{code:"T2002",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return n;switch(r){case"+":n=t+e;break;case"-":n=t-e;break;case"*":n=t*e;break;case"/":n=t/e;break;case"%":n=t%e}return n}function rt(t,e,r){var o,i=n(t),a=n(e);if("undefined"===i||"undefined"===a)return!1;switch(r){case"=":o=N(t,e);break;case"!=":o=!N(t,e)}return o}function nt(t,e,r){var o,i=n(t),a=n(e);if("undefined"!==i&&"string"!==i&&"number"!==i||"undefined"!==a&&"string"!==a&&"number"!==a)throw{code:"T2010",stack:(new Error).stack,value:"string"!==i&&"number"!==i?t:e};if("undefined"!==i&&"undefined"!==a){if(i!==a)throw{code:"T2009",stack:(new Error).stack,value:t,value2:e};switch(r){case"<":o=t<e;break;case"<=":o=t<=e;break;case">":o=t>e;break;case">=":o=t>=e}return o}}function ot(t,e){var r=!1;if(void 0===t||void 0===e)return!1;Array.isArray(e)||(e=[e]);for(var n=0;n<e.length;n++)if(e[n]===t){r=!0;break}return r}function it(t,e,r){var n,o;return a().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:o=at(t),i.t0=r,i.next="and"===i.t0?4:"or"===i.t0?12:20;break;case 4:if(i.t1=o,!i.t1){i.next=10;break}return i.t2=at,i.delegateYield(e(),"t3",8);case 8:i.t4=i.t3,i.t1=(0,i.t2)(i.t4);case 10:return n=i.t1,i.abrupt("break",20);case 12:if(i.t5=o,i.t5){i.next=18;break}return i.t6=at,i.delegateYield(e(),"t7",16);case 16:i.t8=i.t7,i.t5=(0,i.t6)(i.t8);case 18:return n=i.t5,i.abrupt("break",20);case 20:return i.abrupt("return",n);case 21:case"end":return i.stop()}}),d)}function at(t){var e=i.boolean(t);return void 0!==e&&e}function st(t,e){var r="",n="";return void 0!==t&&(r=i.string(t)),void 0!==e&&(n=i.string(e)),r.concat(n)}function ut(t,e,r){var n,o,s,u,c,f,l,h,p,y,d,g,b;return a().wrap((function(v){for(;;)switch(v.prev=v.next){case 0:n={},o={},s=!(!e||!e.tupleStream),Array.isArray(e)||(e=R(e)),0===e.length&&e.push(void 0),u=0;case 6:if(!(u<e.length)){v.next=31;break}c=e[u],f=s?Y(r,c):r,l=0;case 10:if(!(l<t.lhs.length)){v.next=28;break}return h=t.lhs[l],v.delegateYield(z(h[0],s?c["@"]:c,f),"t0",13);case 13:if("string"==typeof(p=v.t0)||void 0===p){v.next=16;break}throw{code:"T1003",stack:(new Error).stack,position:t.position,value:p};case 16:if(void 0===p){v.next=25;break}if(y={data:c,exprIndex:l},!o.hasOwnProperty(p)){v.next=24;break}if(o[p].exprIndex===l){v.next=21;break}throw{code:"D1009",stack:(new Error).stack,position:t.position,value:p};case 21:o[p].data=i.append(o[p].data,c),v.next=25;break;case 24:o[p]=y;case 25:l++,v.next=10;break;case 28:u++,v.next=6;break;case 31:v.t1=a().keys(o);case 32:if((v.t2=v.t1()).done){v.next=43;break}return p=v.t2.value,y=o[p],d=y.data,f=r,s&&(g=ct(y.data),d=g["@"],delete g["@"],f=Y(r,g)),v.delegateYield(z(t.lhs[y.exprIndex][1],d,f),"t3",39);case 39:void 0!==(b=v.t3)&&(n[p]=b),v.next=32;break;case 43:return v.abrupt("return",n);case 44:case"end":return v.stop()}}),v)}function ct(t){if(!Array.isArray(t))return t;var e={};Object.assign(e,t[0]);for(var r=1;r<t.length;r++)for(var n in t[r])e[n]=i.append(e[n],t[r][n]);return e}function ft(t,e){var r;if(void 0!==t&&!Number.isInteger(t))throw{code:"T2003",stack:(new Error).stack,value:t};if(void 0!==e&&!Number.isInteger(e))throw{code:"T2004",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return r;if(t>e)return r;var n=e-t+1;if(n>1e7)throw{code:"D2014",stack:(new Error).stack,value:n};r=new Array(n);for(var o=t,i=0;o<=e;o++,i++)r[i]=o;return r.sequence=!0,r}function lt(t,e,r){var n;return a().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.delegateYield(z(t.rhs,e,r),"t0",1);case 1:return n=o.t0,r.bind(t.lhs.value,n),o.abrupt("return",n);case 4:case"end":return o.stop()}}),g)}function ht(t,e,r){var n,o;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.delegateYield(z(t.condition,e,r),"t0",1);case 1:if(o=a.t0,!i.boolean(o)){a.next=7;break}return a.delegateYield(z(t.then,e,r),"t1",4);case 4:n=a.t1,a.next=10;break;case 7:if(void 0===t.else){a.next=10;break}return a.delegateYield(z(t.else,e,r),"t2",9);case 9:n=a.t2;case 10:return a.abrupt("return",n);case 11:case"end":return a.stop()}}),b)}function pt(t,e,r){var n,o,i;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:o=It(r),i=0;case 2:if(!(i<t.expressions.length)){a.next=8;break}return a.delegateYield(z(t.expressions[i],e,o),"t0",4);case 4:n=a.t0;case 5:i++,a.next=2;break;case 8:return a.abrupt("return",n);case 9:case"end":return a.stop()}}),m)}function yt(t){var e=new Dt.RegexEngine(t.value);return function r(n,o){var i;e.lastIndex=o||0;var a=e.exec(n);if(null!==a){if(i={match:a[0],start:a.index,end:a.index+a[0].length,groups:[]},a.length>1)for(var s=1;s<a.length;s++)i.groups.push(a[s]);i.next=function(){if(!(e.lastIndex>=n.length)){var o=r(n,e.lastIndex);if(o&&""===o.match)throw{code:"D1004",stack:(new Error).stack,position:t.position,value:t.value.source};return o}}}return i}}function dt(t,e,r){return""===t.value?e&&e.outerWrapper?e[0]:e:r.lookup(t.value)}function vt(t,e,r){var o,s,u,c,f;return a().wrap((function(l){for(;;)switch(l.prev=l.next){case 0:return s=e,u=!!e.tupleStream,c=a().mark((function e(o,i){var s,c,f,l,h,p,y,d,v;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:s=0,c=0;case 2:if(!(0===s&&c<t.terms.length)){e.next=35;break}return f=t.terms[c],l=o,h=r,u&&(l=o["@"],h=Y(r,o)),e.delegateYield(z(f.expression,l,h),"t0",8);case 8:return p=e.t0,l=i,h=r,u&&(l=i["@"],h=Y(r,i)),e.delegateYield(z(f.expression,l,h),"t1",13);case 13:if(y=e.t1,d=n(p),v=n(y),"undefined"!==d){e.next=19;break}return s="undefined"===v?0:1,e.abrupt("continue",32);case 19:if("undefined"!==v){e.next=22;break}return s=-1,e.abrupt("continue",32);case 22:if(!("string"!==d&&"number"!==d||"string"!==v&&"number"!==v)){e.next=24;break}throw{code:"T2008",stack:(new Error).stack,position:t.position,value:"string"!==d&&"number"!==d?p:y};case 24:if(d===v){e.next=26;break}throw{code:"T2007",stack:(new Error).stack,position:t.position,value:p,value2:y};case 26:if(p!==y){e.next=30;break}return e.abrupt("continue",32);case 30:s=p<y?-1:1;case 31:!0===f.descending&&(s=-s);case 32:c++,e.next=2;break;case 35:return e.abrupt("return",1===s);case 36:case"end":return e.stop()}}),e)})),f={environment:r,input:e},l.delegateYield(i.sort.apply(f,[s,c]),"t0",5);case 5:return o=l.t0,l.abrupt("return",o);case 7:case"end":return l.stop()}}),w)}function gt(t,e,r){return Mt(a().mark((function e(o){var i,s,u,c,f,l,h,p,y,d,v;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==o){e.next=2;break}return e.abrupt("return",void 0);case 2:if(i=r.lookup("clone"),C(i)){e.next=5;break}throw{code:"T2013",stack:(new Error).stack,position:t.position};case 5:return e.delegateYield(xt(i,[o],null,r),"t0",6);case 6:return s=e.t0,e.delegateYield(z(t.pattern,s,r),"t1",8);case 8:if(void 0===(u=e.t1)){e.next=33;break}Array.isArray(u)||(u=[u]),c=0;case 12:if(!(c<u.length)){e.next=33;break}return f=u[c],e.delegateYield(z(t.update,f,r),"t2",15);case 15:if(l=e.t2,"undefined"===(h=n(l))){e.next=21;break}if("object"===h&&null!==l&&!Array.isArray(l)){e.next=20;break}throw{code:"T2011",stack:(new Error).stack,position:t.update.position,value:l};case 20:for(p in l)f[p]=l[p];case 21:if(void 0===t.delete){e.next=30;break}return e.delegateYield(z(t.delete,f,r),"t3",23);case 23:if(void 0===(y=e.t3)){e.next=30;break}if(d=y,Array.isArray(y)||(y=[y]),T(y)){e.next=29;break}throw{code:"T2012",stack:(new Error).stack,position:t.delete.position,value:d};case 29:for(v=0;v<y.length;v++)"object"===n(f)&&null!==f&&delete f[y[v]];case 30:c++,e.next=12;break;case 33:return e.abrupt("return",s);case 34:case"end":return e.stop()}}),e)})),"<(oa):o>")}var bt=u("function($f, $g) { function($x){ $g($f($x)) } }");function mt(t,e,r){var n,o,i,s;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.delegateYield(z(t.lhs,e,r),"t0",1);case 1:if(o=a.t0,"function"!==t.rhs.type){a.next=7;break}return a.delegateYield(wt(t.rhs,e,r,{context:o}),"t1",4);case 4:n=a.t1,a.next=20;break;case 7:return a.delegateYield(z(t.rhs,e,r),"t2",8);case 8:if(i=a.t2,C(i)){a.next=11;break}throw{code:"T2006",stack:(new Error).stack,position:t.position,value:i};case 11:if(!C(o)){a.next=18;break}return a.delegateYield(z(bt,null,r),"t3",13);case 13:return s=a.t3,a.delegateYield(xt(s,[o,i],null,r),"t4",15);case 15:n=a.t4,a.next=20;break;case 18:return a.delegateYield(xt(i,[o],null,r),"t5",19);case 19:n=a.t5;case 20:return a.abrupt("return",n);case 21:case"end":return a.stop()}}),x)}function wt(t,e,r,o){var i,s,u,c,f,l;return a().wrap((function(h){for(;;)switch(h.prev=h.next){case 0:return h.delegateYield(z(t.procedure,e,r),"t0",1);case 1:if(void 0!==(s=h.t0)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){h.next=4;break}throw{code:"T1005",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 4:u=[],void 0!==o&&u.push(o.context),c=a().mark((function n(){var o,i;return a().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(z(t.arguments[f],e,r),"t0",1);case 1:o=n.t0,C(o)?(i=a().mark((function t(){var e,n,i,s=arguments;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(e=s.length,n=new Array(e),i=0;i<e;i++)n[i]=s[i];return t.delegateYield(xt(o,n,null,r),"t0",2);case 2:return t.abrupt("return",t.t0);case 3:case"end":return t.stop()}}),t)})),i.arity=B(o),u.push(i)):u.push(o);case 3:case"end":return n.stop()}}),n)})),f=0;case 8:if(!(f<t.arguments.length)){h.next=13;break}return h.delegateYield(c(),"t1",10);case 10:f++,h.next=8;break;case 13:return l="path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value,h.prev=14,"object"===n(s)&&(s.token=l,s.position=t.position),h.delegateYield(xt(s,u,e,r),"t2",17);case 17:i=h.t2,h.next=25;break;case 20:throw h.prev=20,h.t3=h.catch(14),h.t3.position||(h.t3.position=t.position),h.t3.token||(h.t3.token=l),h.t3;case 25:return h.abrupt("return",i);case 26:case"end":return h.stop()}}),k,null,[[14,20]])}function xt(t,e,r,n){var o,i,s,u;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.delegateYield(kt(t,e,r,n),"t0",1);case 1:o=a.t0;case 2:if(!L(o)||!0!==o.thunk){a.next=21;break}return a.delegateYield(z(o.body.procedure,o.input,o.environment),"t1",4);case 4:i=a.t1,"variable"===o.body.procedure.type&&(i.token=o.body.procedure.value),i.position=o.body.procedure.position,s=[],u=0;case 9:if(!(u<o.body.arguments.length)){a.next=17;break}return a.t2=s,a.delegateYield(z(o.body.arguments[u],o.input,o.environment),"t3",12);case 12:a.t4=a.t3,a.t2.push.call(a.t2,a.t4);case 14:u++,a.next=9;break;case 17:return a.delegateYield(kt(i,s,r,n),"t5",18);case 18:o=a.t5,a.next=2;break;case 21:return a.abrupt("return",o);case 22:case"end":return a.stop()}}),S)}function kt(t,e,r,n){var o,i,s;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(a.prev=0,i=e,t&&(i=Ot(t.signature,e,r)),!L(t)){a.next=8;break}return a.delegateYield(Et(t,i),"t0",5);case 5:o=a.t0,a.next=24;break;case 8:if(!t||!0!==t._jsonata_function){a.next=16;break}if(s={environment:n,input:r},o=t.implementation.apply(s,i),!D(o)){a.next=14;break}return a.delegateYield(o,"t1",13);case 13:o=a.t1;case 14:a.next=24;break;case 16:if("function"!=typeof t){a.next=23;break}if(o=t.apply(r,i),!D(o)){a.next=21;break}return a.delegateYield(o,"t2",20);case 20:o=a.t2;case 21:a.next=24;break;case 23:throw{code:"T1006",stack:(new Error).stack};case 24:a.next=30;break;case 26:throw a.prev=26,a.t3=a.catch(0),t&&(void 0===a.t3.token&&void 0!==t.token&&(a.t3.token=t.token),a.t3.position=t.position),a.t3;case 30:return a.abrupt("return",o);case 31:case"end":return a.stop()}}),_,null,[[0,26]])}function St(t,e,r){var n={_jsonata_lambda:!0,input:e,environment:r,arguments:t.arguments,signature:t.signature,body:t.body};return!0===t.thunk&&(n.thunk=!0),n.apply=a().mark((function t(r,o){return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.delegateYield(xt(n,o,e,r.environment),"t0",1);case 1:return t.abrupt("return",t.t0);case 2:case"end":return t.stop()}}),t)})),n}function _t(t,e,r){var n,o,i,s,u;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:o=[],i=0;case 2:if(!(i<t.arguments.length)){a.next=15;break}if("operator"!==(s=t.arguments[i]).type||"?"!==s.value){a.next=8;break}o.push(s),a.next=12;break;case 8:return a.t0=o,a.delegateYield(z(s,e,r),"t1",10);case 10:a.t2=a.t1,a.t0.push.call(a.t0,a.t2);case 12:i++,a.next=2;break;case 15:return a.delegateYield(z(t.procedure,e,r),"t3",16);case 16:if(void 0!==(u=a.t3)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){a.next=19;break}throw{code:"T1007",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 19:if(!L(u)){a.next=23;break}n=At(u,o),a.next=32;break;case 23:if(!u||!0!==u._jsonata_function){a.next=27;break}n=Pt(u.implementation,o),a.next=32;break;case 27:if("function"!=typeof u){a.next=31;break}n=Pt(u,o),a.next=32;break;case 31:throw{code:"T1008",stack:(new Error).stack,position:t.position,token:"path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value};case 32:return a.abrupt("return",n);case 33:case"end":return a.stop()}}),O)}function Ot(t,e,r){return void 0===t?e:t.validate(e,r)}function Et(t,e){var r,n;return a().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(n=It(t.environment),t.arguments.forEach((function(t,r){n.bind(t.value,e[r])})),"function"!=typeof t.body){o.next=7;break}return o.delegateYield(jt(t.body,n),"t0",4);case 4:r=o.t0,o.next=9;break;case 7:return o.delegateYield(z(t.body,t.input,n),"t1",8);case 8:r=o.t1;case 9:return o.abrupt("return",r);case 10:case"end":return o.stop()}}),E)}function At(t,e){var r=It(t.environment),n=[];return t.arguments.forEach((function(t,o){var i=e[o];i&&"operator"===i.type&&"?"===i.value?n.push(t):r.bind(t.value,i)})),{_jsonata_lambda:!0,input:t.input,environment:r,arguments:n,body:t.body}}function Pt(t,e){var r=Tt(t),n="function("+(r=r.map((function(t){return"$"+t.trim()}))).join(", ")+"){ _ }",o=u(n);return o.body=t,At(o,e)}function jt(t,e){var r,n,o,i;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(r=Tt(t),n=r.map((function(t){return e.lookup(t.trim())})),o={environment:e},i=t.apply(o,n),!D(i)){a.next=7;break}return a.delegateYield(i,"t0",6);case 6:i=a.t0;case 7:return a.abrupt("return",i);case 8:case"end":return a.stop()}}),A)}function Tt(t){var e=t.toString();return/\(([^)]*)\)/.exec(e)[1].split(",")}function Mt(t,e){var r={_jsonata_function:!0,implementation:t};return void 0!==e&&(r.signature=c(e)),r}function Rt(t,e){var r,n,o;return a().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=this.input,void 0!==e&&(r=e,Array.isArray(r)&&!I(r)&&((r=R(r)).outerWrapper=!0)),i.prev=4,n=u(t,!1),i.next=12;break;case 8:throw i.prev=8,i.t0=i.catch(4),Lt(i.t0),{stack:(new Error).stack,code:"D3120",value:i.t0.message,error:i.t0};case 12:return i.prev=12,i.delegateYield(z(n,r,this.environment),"t1",14);case 14:o=i.t1,i.next=21;break;case 17:throw i.prev=17,i.t2=i.catch(12),Lt(i.t2),{stack:(new Error).stack,code:"D3121",value:i.t2.message,error:i.t2};case 21:return i.abrupt("return",o);case 22:case"end":return i.stop()}}),P,this,[[4,8],[12,17]])}function It(t){var e={};return{bind:function(t,r){e[t]=r},lookup:function(r){var n;return e.hasOwnProperty(r)?n=e[r]:t&&(n=t.lookup(r)),n},timestamp:t?t.timestamp:null,async:!!t&&t.async,global:t?t.global:{ancestry:[null]}}}F.bind("sum",Mt(i.sum,"<a<n>:n>")),F.bind("count",Mt(i.count,"<a:n>")),F.bind("max",Mt(i.max,"<a<n>:n>")),F.bind("min",Mt(i.min,"<a<n>:n>")),F.bind("average",Mt(i.average,"<a<n>:n>")),F.bind("string",Mt(i.string,"<x-b?:s>")),F.bind("substring",Mt(i.substring,"<s-nn?:s>")),F.bind("substringBefore",Mt(i.substringBefore,"<s-s:s>")),F.bind("substringAfter",Mt(i.substringAfter,"<s-s:s>")),F.bind("lowercase",Mt(i.lowercase,"<s-:s>")),F.bind("uppercase",Mt(i.uppercase,"<s-:s>")),F.bind("length",Mt(i.length,"<s-:n>")),F.bind("trim",Mt(i.trim,"<s-:s>")),F.bind("pad",Mt(i.pad,"<s-ns?:s>")),F.bind("match",Mt(i.match,"<s-f<s:o>n?:a<o>>")),F.bind("contains",Mt(i.contains,"<s-(sf):b>")),F.bind("replace",Mt(i.replace,"<s-(sf)(sf)n?:s>")),F.bind("split",Mt(i.split,"<s-(sf)n?:a<s>>")),F.bind("join",Mt(i.join,"<a<s>s?:s>")),F.bind("formatNumber",Mt(i.formatNumber,"<n-so?:s>")),F.bind("formatBase",Mt(i.formatBase,"<n-n?:s>")),F.bind("formatInteger",Mt(o.formatInteger,"<n-s:s>")),F.bind("parseInteger",Mt(o.parseInteger,"<s-s:n>")),F.bind("number",Mt(i.number,"<(nsb)-:n>")),F.bind("floor",Mt(i.floor,"<n-:n>")),F.bind("ceil",Mt(i.ceil,"<n-:n>")),F.bind("round",Mt(i.round,"<n-n?:n>")),F.bind("abs",Mt(i.abs,"<n-:n>")),F.bind("sqrt",Mt(i.sqrt,"<n-:n>")),F.bind("power",Mt(i.power,"<n-n:n>")),F.bind("random",Mt(i.random,"<:n>")),F.bind("boolean",Mt(i.boolean,"<x-:b>")),F.bind("not",Mt(i.not,"<x-:b>")),F.bind("map",Mt(i.map,"<af>")),F.bind("zip",Mt(i.zip,"<a+>")),F.bind("filter",Mt(i.filter,"<af>")),F.bind("single",Mt(i.single,"<af?>")),F.bind("reduce",Mt(i.foldLeft,"<afj?:j>")),F.bind("sift",Mt(i.sift,"<o-f?:o>")),F.bind("keys",Mt(i.keys,"<x-:a<s>>")),F.bind("lookup",Mt(i.lookup,"<x-s:x>")),F.bind("append",Mt(i.append,"<xx:a>")),F.bind("exists",Mt(i.exists,"<x:b>")),F.bind("spread",Mt(i.spread,"<x-:a<o>>")),F.bind("merge",Mt(i.merge,"<a<o>:o>")),F.bind("reverse",Mt(i.reverse,"<a:a>")),F.bind("each",Mt(i.each,"<o-f:a>")),F.bind("error",Mt(i.error,"<s?:x>")),F.bind("assert",Mt(i.assert,"<bs?:x>")),F.bind("type",Mt(i.type,"<x:s>")),F.bind("sort",Mt(i.sort,"<af?:a>")),F.bind("shuffle",Mt(i.shuffle,"<a:a>")),F.bind("distinct",Mt(i.distinct,"<x:x>")),F.bind("base64encode",Mt(i.base64encode,"<s-:s>")),F.bind("base64decode",Mt(i.base64decode,"<s-:s>")),F.bind("encodeUrlComponent",Mt(i.encodeUrlComponent,"<s-:s>")),F.bind("encodeUrl",Mt(i.encodeUrl,"<s-:s>")),F.bind("decodeUrlComponent",Mt(i.decodeUrlComponent,"<s-:s>")),F.bind("decodeUrl",Mt(i.decodeUrl,"<s-:s>")),F.bind("eval",Mt(Rt,"<sx?:x>")),F.bind("toMillis",Mt(o.toMillis,"<s-s?:n>")),F.bind("fromMillis",Mt(o.fromMillis,"<n-s?s?:s>")),F.bind("clone",Mt((function(t){if(void 0!==t)return JSON.parse(i.string(t))}),"<(oa)-:o>"));var Ct={S0101:"String literal must be terminated by a matching quote",S0102:"Number out of range: {{token}}",S0103:"Unsupported escape sequence: \\{{token}}",S0104:"The escape sequence \\u must be followed by 4 hex digits",S0105:"Quoted property name must be terminated with a backquote (`)",S0106:"Comment has no closing tag",S0201:"Syntax error: {{token}}",S0202:"Expected {{value}}, got {{token}}",S0203:"Expected {{value}} before end of expression",S0204:"Unknown operator: {{token}}",S0205:"Unexpected token: {{token}}",S0206:"Unknown expression type: {{token}}",S0207:"Unexpected end of expression",S0208:"Parameter {{value}} of function definition must be a variable name (start with $)",S0209:"A predicate cannot follow a grouping expression in a step",S0210:"Each step can only have one grouping expression",S0211:"The symbol {{token}} cannot be used as a unary operator",S0212:"The left side of := must be a variable name (start with $)",S0213:"The literal value {{value}} cannot be used as a step within a path expression",S0214:"The right side of {{token}} must be a variable name (start with $)",S0215:"A context variable binding must precede any predicates on a step",S0216:"A context variable binding must precede the 'order-by' clause on a step",S0217:"The object representing the 'parent' cannot be derived from this expression",S0301:"Empty regular expressions are not allowed",S0302:"No terminating / in regular expression",S0402:"Choice groups containing parameterized types are not supported",S0401:"Type parameters can only be applied to functions and arrays",S0500:"Attempted to evaluate an expression containing syntax error(s)",T0410:"Argument {{index}} of function {{token}} does not match function signature",T0411:"Context value is not a compatible type with argument {{index}} of function {{token}}",T0412:"Argument {{index}} of function {{token}} must be an array of {{type}}",D1001:"Number out of range: {{value}}",D1002:"Cannot negate a non-numeric value: {{value}}",T1003:"Key in object structure must evaluate to a string; got: {{value}}",D1004:"Regular expression matches zero length string",T1005:"Attempted to invoke a non-function. Did you mean ${{{token}}}?",T1006:"Attempted to invoke a non-function",T1007:"Attempted to partially apply a non-function. Did you mean ${{{token}}}?",T1008:"Attempted to partially apply a non-function",D1009:"Multiple key definitions evaluate to same key: {{value}}",T1010:"The matcher function argument passed to function {{token}} does not return the correct object structure",T2001:"The left side of the {{token}} operator must evaluate to a number",T2002:"The right side of the {{token}} operator must evaluate to a number",T2003:"The left side of the range operator (..) must evaluate to an integer",T2004:"The right side of the range operator (..) must evaluate to an integer",D2005:"The left side of := must be a variable name (start with $)",T2006:"The right side of the function application operator ~> must be a function",T2007:"Type mismatch when comparing values {{value}} and {{value2}} in order-by clause",T2008:"The expressions within an order-by clause must evaluate to numeric or string values",T2009:"The values {{value}} and {{value2}} either side of operator {{token}} must be of the same data type",T2010:"The expressions either side of operator {{token}} must evaluate to numeric or string values",T2011:"The insert/update clause of the transform expression must evaluate to an object: {{value}}",T2012:"The delete clause of the transform expression must evaluate to a string or array of strings: {{value}}",T2013:"The transform expression clones the input object using the $clone() function. This has been overridden in the current scope by a non-function.",D2014:"The size of the sequence allocated by the range operator (..) must not exceed 1e6. Attempted to allocate {{value}}.",D3001:"Attempting to invoke string function on Infinity or NaN",D3010:"Second argument of replace function cannot be an empty string",D3011:"Fourth argument of replace function must evaluate to a positive number",D3012:"Attempted to replace a matched string with a non-string value",D3020:"Third argument of split function must evaluate to a positive number",D3030:"Unable to cast value to a number: {{value}}",D3040:"Third argument of match function must evaluate to a positive number",D3050:"The second argument of reduce function must be a function with at least two arguments",D3060:"The sqrt function cannot be applied to a negative number: {{value}}",D3061:"The power function has resulted in a value that cannot be represented as a JSON number: base={{value}}, exponent={{exp}}",D3070:"The single argument form of the sort function can only be applied to an array of strings or an array of numbers. Use the second argument to specify a comparison function",D3080:"The picture string must only contain a maximum of two sub-pictures",D3081:"The sub-picture must not contain more than one instance of the 'decimal-separator' character",D3082:"The sub-picture must not contain more than one instance of the 'percent' character",D3083:"The sub-picture must not contain more than one instance of the 'per-mille' character",D3084:"The sub-picture must not contain both a 'percent' and a 'per-mille' character",D3085:"The mantissa part of a sub-picture must contain at least one character that is either an 'optional digit character' or a member of the 'decimal digit family'",D3086:"The sub-picture must not contain a passive character that is preceded by an active character and that is followed by another active character",D3087:"The sub-picture must not contain a 'grouping-separator' character that appears adjacent to a 'decimal-separator' character",D3088:"The sub-picture must not contain a 'grouping-separator' at the end of the integer part",D3089:"The sub-picture must not contain two adjacent instances of the 'grouping-separator' character",D3090:"The integer part of the sub-picture must not contain a member of the 'decimal digit family' that is followed by an instance of the 'optional digit character'",D3091:"The fractional part of the sub-picture must not contain an instance of the 'optional digit character' that is followed by a member of the 'decimal digit family'",D3092:"A sub-picture that contains a 'percent' or 'per-mille' character must not contain a character treated as an 'exponent-separator'",D3093:"The exponent part of the sub-picture must comprise only of one or more characters that are members of the 'decimal digit family'",D3100:"The radix of the formatBase function must be between 2 and 36. It was given {{value}}",D3110:"The argument of the toMillis function must be an ISO 8601 formatted timestamp. Given {{value}}",D3120:"Syntax error in expression passed to function eval: {{value}}",D3121:"Dynamic error evaluating the expression passed to function eval: {{value}}",D3130:"Formatting or parsing an integer as a sequence starting with {{value}} is not supported by this implementation",D3131:"In a decimal digit pattern, all digits must be from the same decimal group",D3132:"Unknown component specifier {{value}} in date/time picture string",D3133:"The 'name' modifier can only be applied to months and days in the date/time picture string, not {{value}}",D3134:"The timezone integer format specifier cannot have more than four digits",D3135:"No matching closing bracket ']' in date/time picture string",D3136:"The date/time picture string is missing specifiers required to parse the timestamp",D3137:"{{{message}}}",D3138:"The $single() function expected exactly 1 matching result. Instead it matched more.",D3139:"The $single() function expected exactly 1 matching result. Instead it matched 0.",D3140:"Malformed URL passed to ${{{functionName}}}(): {{value}}",D3141:"{{{message}}}"};function Lt(t){var e=Ct[t.code];if(void 0!==e){var r=e.replace(/\{\{\{([^}]+)}}}/g,(function(){return t[arguments[1]]}));r=r.replace(/\{\{([^}]+)}}/g,(function(){return JSON.stringify(t[arguments[1]])})),t.message=r}}function Dt(t,e){var r,n;try{r=u(t,e&&e.recover),n=r.errors,delete r.errors}catch(t){throw Lt(t),t}var i=It(F),a=new Date;return i.bind("now",Mt((function(t,e){return o.fromMillis(a.getTime(),t,e)}),"<s?s?:s>")),i.bind("millis",Mt((function(){return a.getTime()}),"<:n>")),e&&e.RegexEngine?Dt.RegexEngine=e.RegexEngine:Dt.RegexEngine=RegExp,{evaluate:function(t,e,o){if(void 0!==n){var s={code:"S0500",position:0};throw Lt(s),s}var u,c,f;if(void 0!==e)for(var l in u=It(i),e)u.bind(l,e[l]);else u=i;if(u.bind("$",t),a=new Date,u.timestamp=a,Array.isArray(t)&&!I(t)&&((t=R(t)).outerWrapper=!0),"function"==typeof o){u.async=!0;var h=function(t){Lt(t),o(t,null)};f=z(r,t,u),(c=f.next()).value.then((function t(e){(c=f.next(e)).done?o(null,c.value):c.value.then(t).catch(h)})).catch(h)}else try{for(f=z(r,t,u),c=f.next();!c.done;)c=f.next(c.value);return c.value}catch(s){throw Lt(s),s}},assign:function(t,e){i.bind(t,e)},registerFunction:function(t,e,r){var n=Mt(e,r);i.bind(t,n)},ast:function(){return r},errors:function(){return n}}}return Dt.parser=u,Dt}();e.exports=f},{"./datetime":1,"./functions":2,"./parser":4,"./signature":5,"./utils":6}],4:[function(t,e,r){"use strict";var n,o,i,a=t("./signature"),s=(n={".":75,"[":80,"]":0,"{":70,"}":0,"(":80,")":0,",":0,"@":80,"#":80,";":80,":":80,"?":20,"+":50,"-":50,"*":60,"/":60,"%":60,"|":20,"=":40,"<":40,">":40,"^":40,"**":60,"..":20,":=":10,"!=":40,"<=":40,">=":40,"~>":40,and:30,or:25,in:40,"&":50,"!":0,"~":0},o={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t"},i=function(t){var e=0,r=t.length,i=function(t,r){return{type:t,value:r,position:e}};return function a(s){if(e>=r)return null;for(var u=t.charAt(e);e<r&&" \t\n\r\v".indexOf(u)>-1;)e++,u=t.charAt(e);if("/"===u&&"*"===t.charAt(e+1)){var c=e;for(e+=2,u=t.charAt(e);"*"!==u||"/"!==t.charAt(e+1);)if(u=t.charAt(++e),e>=r)throw{code:"S0106",stack:(new Error).stack,position:c};return e+=2,u=t.charAt(e),a(s)}if(!0!==s&&"/"===u)return e++,i("regex",function(){for(var n,o,i=e,a=0;e<r;){var s=t.charAt(e);if("/"===s&&"\\"!==t.charAt(e-1)&&0===a){if(""===(n=t.substring(i,e)))throw{code:"S0301",stack:(new Error).stack,position:e};for(e++,s=t.charAt(e),i=e;"i"===s||"m"===s;)e++,s=t.charAt(e);return o=t.substring(i,e)+"g",new RegExp(n,o)}"("!==s&&"["!==s&&"{"!==s||"\\"===t.charAt(e-1)||a++,")"!==s&&"]"!==s&&"}"!==s||"\\"===t.charAt(e-1)||a--,e++}throw{code:"S0302",stack:(new Error).stack,position:e}}());if("."===u&&"."===t.charAt(e+1))return e+=2,i("operator","..");if(":"===u&&"="===t.charAt(e+1))return e+=2,i("operator",":=");if("!"===u&&"="===t.charAt(e+1))return e+=2,i("operator","!=");if(">"===u&&"="===t.charAt(e+1))return e+=2,i("operator",">=");if("<"===u&&"="===t.charAt(e+1))return e+=2,i("operator","<=");if("*"===u&&"*"===t.charAt(e+1))return e+=2,i("operator","**");if("~"===u&&">"===t.charAt(e+1))return e+=2,i("operator","~>");if(Object.prototype.hasOwnProperty.call(n,u))return e++,i("operator",u);if('"'===u||"'"===u){var f=u;e++;for(var l="";e<r;){if("\\"===(u=t.charAt(e)))if(e++,u=t.charAt(e),Object.prototype.hasOwnProperty.call(o,u))l+=o[u];else{if("u"!==u)throw{code:"S0103",stack:(new Error).stack,position:e,token:u};var h=t.substr(e+1,4);if(!/^[0-9a-fA-F]+$/.test(h))throw{code:"S0104",stack:(new Error).stack,position:e};var p=parseInt(h,16);l+=String.fromCharCode(p),e+=4}else{if(u===f)return e++,i("string",l);l+=u}e++}throw{code:"S0101",stack:(new Error).stack,position:e}}var y,d=/^-?(0|([1-9][0-9]*))(\.[0-9]+)?([Ee][-+]?[0-9]+)?/.exec(t.substring(e));if(null!==d){var v=parseFloat(d[0]);if(!isNaN(v)&&isFinite(v))return e+=d[0].length,i("number",v);throw{code:"S0102",stack:(new Error).stack,position:e,token:d[0]}}if("`"===u){e++;var g=t.indexOf("`",e);if(-1!==g)return y=t.substring(e,g),e=g+1,i("name",y);throw e=r,{code:"S0105",stack:(new Error).stack,position:e}}for(var b,m=e;;)if(b=t.charAt(m),m===r||" \t\n\r\v".indexOf(b)>-1||Object.prototype.hasOwnProperty.call(n,b)){if("$"===t.charAt(e))return y=t.substring(e+1,m),e=m,i("variable",y);switch(y=t.substring(e,m),e=m,y){case"or":case"in":case"and":return i("operator",y);case"true":return i("value",!0);case"false":return i("value",!1);case"null":return i("value",null);default:return e===r&&""===y?null:i("name",y)}}else m++}},function(t,e){var r,o,s={},u=[],c=function(){var t=[];"(end)"!==r.id&&t.push({type:r.type,value:r.value,position:r.position});for(var e=o();null!==e;)t.push(e),e=o();return t},f={nud:function(){var t={code:"S0211",token:this.value,position:this.position};if(e)return t.remaining=c(),t.type="error",u.push(t),t;throw t.stack=(new Error).stack,t}},l=function(t,e){var r=s[t];return e=e||0,r?e>=r.lbp&&(r.lbp=e):((r=Object.create(f)).id=r.value=t,r.lbp=e,s[t]=r),r},h=function(t){if(e){t.remaining=c(),u.push(t);var n=s["(error)"];return(r=Object.create(n)).error=t,r.type="(error)",r}throw t.stack=(new Error).stack,t},p=function(e,n){if(e&&r.id!==e){var i={code:"(end)"===r.id?"S0203":"S0202",position:r.position,token:r.value,value:e};return h(i)}var a=o(n);if(null===a)return(r=s["(end)"]).position=t.length,r;var u,c=a.value,f=a.type;switch(f){case"name":case"variable":u=s["(name)"];break;case"operator":if(!(u=s[c]))return h({code:"S0204",stack:(new Error).stack,position:a.position,token:c});break;case"string":case"number":case"value":u=s["(literal)"];break;case"regex":f="regex",u=s["(regex)"];break;default:return h({code:"S0205",stack:(new Error).stack,position:a.position,token:c})}return(r=Object.create(u)).value=c,r.type=f,r.position=a.position,r},y=function(t){var e,n=r;for(p(null,!0),e=n.nud();t<r.lbp;)n=r,p(),e=n.led(e);return e},d=function(t){l(t,0).nud=function(){return this}},v=function(t,e,r){var o=e||n[t],i=l(t,o);return i.led=r||function(t){return this.lhs=t,this.rhs=y(o),this.type="binary",this},i},g=function(t,e,r){var n=l(t,e);return n.led=r,n},b=function(t,e){var r=l(t);return r.nud=e||function(){return this.expression=y(70),this.type="unary",this},r};d("(end)"),d("(name)"),d("(literal)"),d("(regex)"),l(":"),l(";"),l(","),l(")"),l("]"),l("}"),l(".."),v("."),v("+"),v("-"),v("*"),v("/"),v("%"),v("="),v("<"),v(">"),v("!="),v("<="),v(">="),v("&"),v("and"),v("or"),v("in"),d("and"),d("or"),d("in"),b("-"),v("~>"),g("(error)",10,(function(t){return this.lhs=t,this.error=r.error,this.remaining=c(),this.type="error",this})),b("*",(function(){return this.type="wildcard",this})),b("**",(function(){return this.type="descendant",this})),b("%",(function(){return this.type="parent",this})),v("(",n["("],(function(t){if(this.procedure=t,this.type="function",this.arguments=[],")"!==r.id)for(;"operator"===r.type&&"?"===r.id?(this.type="partial",this.arguments.push(r),p("?")):this.arguments.push(y(0)),","===r.id;)p(",");if(p(")",!0),"name"===t.type&&("function"===t.value||"λ"===t.value)){if(this.arguments.forEach((function(t,e){if("variable"!==t.type)return h({code:"S0208",stack:(new Error).stack,position:t.position,token:t.value,value:e+1})})),this.type="lambda","<"===r.id){for(var e=r.position,n=1,o="<";n>0&&"{"!==r.id&&"(end)"!==r.id;){var i=p();">"===i.id?n--:"<"===i.id&&n++,o+=i.value}p(">");try{this.signature=a(o)}catch(t){return t.position=e+t.offset,h(t)}}p("{"),this.body=y(0),p("}")}return this})),b("(",(function(){for(var t=[];")"!==r.id&&(t.push(y(0)),";"===r.id);)p(";");return p(")",!0),this.type="block",this.expressions=t,this})),b("[",(function(){var t=[];if("]"!==r.id)for(;;){var e=y(0);if(".."===r.id){var n={type:"binary",value:"..",position:r.position,lhs:e};p(".."),n.rhs=y(0),e=n}if(t.push(e),","!==r.id)break;p(",")}return p("]",!0),this.expressions=t,this.type="unary",this})),v("[",n["["],(function(t){if("]"===r.id){for(var e=t;e&&"binary"===e.type&&"["===e.value;)e=e.lhs;return e.keepArray=!0,p("]"),t}return this.lhs=t,this.rhs=y(n["]"]),this.type="binary",p("]",!0),this})),v("^",n["^"],(function(t){p("(");for(var e=[];;){var n={descending:!1};if("<"===r.id?p("<"):">"===r.id&&(n.descending=!0,p(">")),n.expression=y(0),e.push(n),","!==r.id)break;p(",")}return p(")"),this.lhs=t,this.rhs=e,this.type="binary",this}));var m=function(t){var e=[];if("}"!==r.id)for(;;){var n=y(0);p(":");var o=y(0);if(e.push([n,o]),","!==r.id)break;p(",")}return p("}",!0),void 0===t?(this.lhs=e,this.type="unary"):(this.lhs=t,this.rhs=e,this.type="binary"),this};b("{",m),v("{",n["{"],m),g(":=",n[":="],(function(t){return"variable"!==t.type?h({code:"S0212",stack:(new Error).stack,position:t.position,token:t.value}):(this.lhs=t,this.rhs=y(n[":="]-1),this.type="binary",this)})),v("@",n["@"],(function(t){return this.lhs=t,this.rhs=y(n["@"]),"variable"!==this.rhs.type?h({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"@"}):(this.type="binary",this)})),v("#",n["#"],(function(t){return this.lhs=t,this.rhs=y(n["#"]),"variable"!==this.rhs.type?h({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"#"}):(this.type="binary",this)})),v("?",n["?"],(function(t){return this.type="condition",this.condition=t,this.then=y(0),":"===r.id&&(p(":"),this.else=y(0)),this})),b("|",(function(){return this.type="transform",this.pattern=y(0),p("|"),this.update=y(0),","===r.id&&(p(","),this.delete=y(0)),p("|"),this}));var w=function t(e){var r;if("function"!==e.type||e.predicate)if("condition"===e.type)e.then=t(e.then),void 0!==e.else&&(e.else=t(e.else)),r=e;else if("block"===e.type){var n=e.expressions.length;n>0&&(e.expressions[n-1]=t(e.expressions[n-1])),r=e}else r=e;else{var o={type:"lambda",thunk:!0,arguments:[],position:e.position};o.body=e,r=o}return r},x=0,k=0,S=[],_=function t(e,r){switch(e.type){case"name":case"wildcard":r.level--,0===r.level&&(void 0===e.ancestor||(S[r.index].slot.label=e.ancestor.label),e.ancestor=r,e.tuple=!0);break;case"parent":r.level++;break;case"block":e.expressions.length>0&&(e.tuple=!0,r=t(e.expressions[e.expressions.length-1],r));break;case"path":e.tuple=!0;var n=e.steps.length-1;for(r=t(e.steps[n--],r);r.level>0&&n>=0;)r=t(e.steps[n--],r);break;default:throw{code:"S0217",token:e.type,position:e.position}}return r},O=function(t,e){if(void 0!==e.seekingParent||"parent"===e.type){var r=void 0!==e.seekingParent?e.seekingParent:[];"parent"===e.type&&r.push(e.slot),void 0===t.seekingParent?t.seekingParent=r:Array.prototype.push.apply(t.seekingParent,r)}},E=function(t){var e=t.steps.length-1,r=t.steps[e],n=void 0!==r.seekingParent?r.seekingParent:[];"parent"===r.type&&n.push(r.slot);for(var o=0;o<n.length;o++){var i=n[o];for(e=t.steps.length-2;i.level>0;){if(e<0){void 0===t.seekingParent?t.seekingParent=[i]:t.seekingParent.push(i);break}for(var a=t.steps[e--];e>=0&&a.focus&&t.steps[e].focus;)a=t.steps[e--];i=_(a,i)}}};o=i(t),p();var A=y(0);if("(end)"!==r.id){var P={code:"S0201",position:r.position,token:r.value};h(P)}if(A=function t(r){var n;switch(r.type){case"binary":switch(r.value){case".":var o=t(r.lhs);n="path"===o.type?o:{type:"path",steps:[o]},"parent"===o.type&&(n.seekingParent=[o.slot]);var i=t(r.rhs);"function"===i.type&&"path"===i.procedure.type&&1===i.procedure.steps.length&&"name"===i.procedure.steps[0].type&&"function"===n.steps[n.steps.length-1].type&&(n.steps[n.steps.length-1].nextFunction=i.procedure.steps[0].value),"path"===i.type?Array.prototype.push.apply(n.steps,i.steps):(void 0!==i.predicate&&(i.stages=i.predicate,delete i.predicate),n.steps.push(i)),n.steps.filter((function(t){if("number"===t.type||"value"===t.type)throw{code:"S0213",stack:(new Error).stack,position:t.position,value:t.value};return"string"===t.type})).forEach((function(t){t.type="name"})),n.steps.filter((function(t){return!0===t.keepArray})).length>0&&(n.keepSingletonArray=!0);var a=n.steps[0];"unary"===a.type&&"["===a.value&&(a.consarray=!0);var s=n.steps[n.steps.length-1];"unary"===s.type&&"["===s.value&&(s.consarray=!0),E(n);break;case"[":var c=n=t(r.lhs),f="predicate";if("path"===n.type&&(c=n.steps[n.steps.length-1],f="stages"),void 0!==c.group)throw{code:"S0209",stack:(new Error).stack,position:r.position};void 0===c[f]&&(c[f]=[]);var l=t(r.rhs);void 0!==l.seekingParent&&(l.seekingParent.forEach((function(t){1===t.level?_(c,t):t.level--})),O(c,l)),c[f].push({type:"filter",expr:l,position:r.position});break;case"{":if(void 0!==(n=t(r.lhs)).group)throw{code:"S0210",stack:(new Error).stack,position:r.position};n.group={lhs:r.rhs.map((function(e){return[t(e[0]),t(e[1])]})),position:r.position};break;case"^":"path"!==(n=t(r.lhs)).type&&(n={type:"path",steps:[n]});var h={type:"sort",position:r.position};h.terms=r.rhs.map((function(e){var r=t(e.expression);return O(h,r),{descending:e.descending,expression:r}})),n.steps.push(h),E(n);break;case":=":(n={type:"bind",value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs),O(n,n.rhs);break;case"@":if(n=t(r.lhs),c=n,"path"===n.type&&(c=n.steps[n.steps.length-1]),void 0!==c.stages||void 0!==c.predicate)throw{code:"S0215",stack:(new Error).stack,position:r.position};if("sort"===c.type)throw{code:"S0216",stack:(new Error).stack,position:r.position};r.keepArray&&(c.keepArray=!0),c.focus=r.rhs.value,c.tuple=!0;break;case"#":n=t(r.lhs),c=n,"path"===n.type?c=n.steps[n.steps.length-1]:(n={type:"path",steps:[n]},void 0!==c.predicate&&(c.stages=c.predicate,delete c.predicate)),void 0===c.stages?c.index=r.rhs.value:c.stages.push({type:"index",value:r.rhs.value,position:r.position}),c.tuple=!0;break;case"~>":(n={type:"apply",value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs);break;default:(n={type:r.type,value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs),O(n,n.lhs),O(n,n.rhs)}break;case"unary":n={type:r.type,value:r.value,position:r.position},"["===r.value?n.expressions=r.expressions.map((function(e){var r=t(e);return O(n,r),r})):"{"===r.value?n.lhs=r.lhs.map((function(e){var r=t(e[0]);O(n,r);var o=t(e[1]);return O(n,o),[r,o]})):(n.expression=t(r.expression),"-"===r.value&&"number"===n.expression.type?(n=n.expression).value=-n.value:O(n,n.expression));break;case"function":case"partial":(n={type:r.type,name:r.name,value:r.value,position:r.position}).arguments=r.arguments.map((function(e){var r=t(e);return O(n,r),r})),n.procedure=t(r.procedure);break;case"lambda":n={type:r.type,arguments:r.arguments,signature:r.signature,position:r.position};var p=t(r.body);n.body=w(p);break;case"condition":(n={type:r.type,position:r.position}).condition=t(r.condition),O(n,n.condition),n.then=t(r.then),O(n,n.then),void 0!==r.else&&(n.else=t(r.else),O(n,n.else));break;case"transform":(n={type:r.type,position:r.position}).pattern=t(r.pattern),n.update=t(r.update),void 0!==r.delete&&(n.delete=t(r.delete));break;case"block":(n={type:r.type,position:r.position}).expressions=r.expressions.map((function(e){var r=t(e);return O(n,r),(r.consarray||"path"===r.type&&r.steps[0].consarray)&&(n.consarray=!0),r}));break;case"name":n={type:"path",steps:[r]},r.keepArray&&(n.keepSingletonArray=!0);break;case"parent":n={type:"parent",slot:{label:"!"+x++,level:1,index:k++}},S.push(n);break;case"string":case"number":case"value":case"wildcard":case"descendant":case"variable":case"regex":n=r;break;case"operator":if("and"===r.value||"or"===r.value||"in"===r.value)r.type="name",n=t(r);else{if("?"!==r.value)throw{code:"S0201",stack:(new Error).stack,position:r.position,token:r.value};n=r}break;case"error":n=r,r.lhs&&(n=t(r.lhs));break;default:var y="S0206";"(end)"===r.id&&(y="S0207");var d={code:y,position:r.position,token:r.value};if(e)return u.push(d),{type:"error",error:d};throw d.stack=(new Error).stack,d}return r.keepArray&&(n.keepArray=!0),n}(A),"parent"===A.type||void 0!==A.seekingParent)throw{code:"S0217",token:A.type,position:A.position};return u.length>0&&(A.errors=u),A});e.exports=s},{"./signature":5}],5:[function(t,e,r){"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o,i=t("./utils"),a=(o={a:"arrays",b:"booleans",f:"functions",n:"numbers",o:"objects",s:"strings"},function(t){for(var e=1,r=[],a={},s=a;e<t.length;){var u=t.charAt(e);if(":"===u)break;var c=function(){r.push(a),s=a,a={}},f=function(t,e,r,n){for(var o=1,i=e;i<t.length;)if(i++,(u=t.charAt(i))===n){if(0==--o)break}else u===r&&o++;return i};switch(u){case"s":case"n":case"b":case"l":case"o":a.regex="["+u+"m]",a.type=u,c();break;case"a":a.regex="[asnblfom]",a.type=u,a.array=!0,c();break;case"f":a.regex="f",a.type=u,c();break;case"j":a.regex="[asnblom]",a.type=u,c();break;case"x":a.regex="[asnblfom]",a.type=u,c();break;case"-":s.context=!0,s.contextRegex=new RegExp(s.regex),s.regex+="?";break;case"?":case"+":s.regex+=u;break;case"(":var l=f(t,e,"(",")"),h=t.substring(e+1,l);if(-1!==h.indexOf("<"))throw{code:"S0402",stack:(new Error).stack,value:h,offset:e};a.regex="["+h+"m]",a.type="("+h+")",e=l,c();break;case"<":if("a"!==s.type&&"f"!==s.type)throw{code:"S0401",stack:(new Error).stack,value:s.type,offset:e};var p=f(t,e,"<",">");s.subtype=t.substring(e+1,p),e=p}e++}var y="^"+r.map((function(t){return"("+t.regex+")"})).join("")+"$",d=new RegExp(y),v=function(t){var e;if(i.isFunction(t))e="f";else switch(n(t)){case"string":e="s";break;case"number":e="n";break;case"boolean":e="b";break;case"object":e=null===t?"l":Array.isArray(t)?"a":"o";break;default:e="m"}return e};return{definition:t,validate:function(t,e){var n="";t.forEach((function(t){n+=v(t)}));var i=d.exec(n);if(i){var a=[],s=0;return r.forEach((function(r,n){var u=t[s],c=i[n+1];if(""===c)if(r.context&&r.contextRegex){var f=v(e);if(!r.contextRegex.test(f))throw{code:"T0411",stack:(new Error).stack,value:e,index:s+1};a.push(e)}else a.push(u),s++;else c.split("").forEach((function(e){if("a"===r.type){if("m"===e)u=void 0;else{u=t[s];var n=!0;if(void 0!==r.subtype)if("a"!==e&&c!==r.subtype)n=!1;else if("a"===e&&u.length>0){var i=v(u[0]);n=i===r.subtype.charAt(0)&&0===u.filter((function(t){return v(t)!==i})).length}if(!n)throw{code:"T0412",stack:(new Error).stack,value:u,index:s+1,type:o[r.subtype]};"a"!==e&&(u=[u])}a.push(u),s++}else a.push(u),s++}))})),a}!function(t,e){for(var n="^",o=0,i=0;i<r.length;i++){n+=r[i].regex;var a=e.match(n);if(null===a)throw{code:"T0410",stack:(new Error).stack,value:t[o],index:o+1};o=a[0].length}throw{code:"T0410",stack:(new Error).stack,value:t[o],index:o+1}}(t,n)}}});e.exports=a},{"./utils":6}],6:[function(t,e,r){"use strict";function n(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function o(t){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}var i=function(){function t(t){var e=!1;if("number"==typeof t&&(e=!isNaN(t))&&!isFinite(t))throw{code:"D1001",value:t,stack:(new Error).stack};return e}var e=("function"==typeof Symbol?Symbol:{}).iterator||"@@iterator";return{isNumeric:t,isArrayOfStrings:function(t){var e=!1;return Array.isArray(t)&&(e=0===t.filter((function(t){return"string"!=typeof t})).length),e},isArrayOfNumbers:function(e){var r=!1;return Array.isArray(e)&&(r=0===e.filter((function(e){return!t(e)})).length),r},createSequence:function(){var t=[];return t.sequence=!0,1===arguments.length&&t.push(arguments[0]),t},isSequence:function(t){return!0===t.sequence&&Array.isArray(t)},isFunction:function(t){return t&&(!0===t._jsonata_function||!0===t._jsonata_lambda)||"function"==typeof t},isLambda:function(t){return t&&!0===t._jsonata_lambda},isIterable:function(t){return"object"===o(t)&&null!==t&&e in t&&"next"in t&&"function"==typeof t.next},getFunctionArity:function(t){return"number"==typeof t.arity?t.arity:"function"==typeof t.implementation?t.implementation.length:"number"==typeof t.length?t.length:t.arguments.length},isDeepEqual:function t(e,r){if(e===r)return!0;if("object"===o(e)&&"object"===o(r)&&null!==e&&null!==r){if(Array.isArray(e)&&Array.isArray(r)){if(e.length!==r.length)return!1;for(var n=0;n<e.length;n++)if(!t(e[n],r[n]))return!1;return!0}var i=Object.getOwnPropertyNames(e),a=Object.getOwnPropertyNames(r);if(i.length!==a.length)return!1;for(i=i.sort(),a=a.sort(),n=0;n<i.length;n++)if(i[n]!==a[n])return!1;for(n=0;n<i.length;n++){var s=i[n];if(!t(e[s],r[s]))return!1}return!0}return!1},stringToArray:function(t){var e,r=[],o=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return n(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var o=0,i=function(){};return{s:i,n:function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return s=t.done,t},e:function(t){u=!0,a=t},f:function(){try{s||null==r.return||r.return()}finally{if(u)throw a}}}}(t);try{for(o.s();!(e=o.n()).done;){var i=e.value;r.push(i)}}catch(t){o.e(t)}finally{o.f()}return r}}}();e.exports=i},{}]},{},[3])(3)},"object"===s(e)?t.exports=u():(o=[],void 0===(i="function"==typeof(n=u)?n.apply(e,o):n)||(t.exports=i))},87751:(t,e,r)=>{function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=function(t){"use strict";var e,r=Object.prototype,o=r.hasOwnProperty,i=Object.defineProperty||function(t,e,r){t[e]=r.value},a="function"==typeof Symbol?Symbol:{},s=a.iterator||"@@iterator",u=a.asyncIterator||"@@asyncIterator",c=a.toStringTag||"@@toStringTag";function f(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{f({},"")}catch(t){f=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var o=e&&e.prototype instanceof b?e:b,a=Object.create(o.prototype),s=new M(n||[]);return i(a,"_invoke",{value:A(t,r,s)}),a}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var p="suspendedStart",y="suspendedYield",d="executing",v="completed",g={};function b(){}function m(){}function w(){}var x={};f(x,s,(function(){return this}));var k=Object.getPrototypeOf,S=k&&k(k(R([])));S&&S!==r&&o.call(S,s)&&(x=S);var _=w.prototype=b.prototype=Object.create(x);function O(t){["next","throw","return"].forEach((function(e){f(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(i,a,s,u){var c=h(t[i],t,a);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"===n(l)&&o.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,s,u)}),(function(t){r("throw",t,s,u)})):e.resolve(l).then((function(t){f.value=t,s(f)}),(function(t){return r("throw",t,s,u)}))}u(c.arg)}var a;i(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return a=a?a.then(o,o):o()}})}function A(t,e,r){var n=p;return function(o,i){if(n===d)throw new Error("Generator is already running");if(n===v){if("throw"===o)throw i;return I()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=P(a,r);if(s){if(s===g)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===p)throw n=v,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=d;var u=h(t,e,r);if("normal"===u.type){if(n=r.done?v:y,u.arg===g)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n=v,r.method="throw",r.arg=u.arg)}}}function P(t,r){var n=r.method,o=t.iterator[n];if(o===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,P(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),g;var i=h(o,t.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,g;var a=i.arg;return a?a.done?(r[t.resultName]=a.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,g):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,g)}function j(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function T(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function M(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(j,this),this.reset(!0)}function R(t){if(t){var r=t[s];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,i=function r(){for(;++n<t.length;)if(o.call(t,n))return r.value=t[n],r.done=!1,r;return r.value=e,r.done=!0,r};return i.next=i}}return{next:I}}function I(){return{value:e,done:!0}}return m.prototype=w,i(_,"constructor",{value:w,configurable:!0}),i(w,"constructor",{value:m,configurable:!0}),m.displayName=f(w,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,f(t,c,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},O(E.prototype),f(E.prototype,u,(function(){return this})),t.AsyncIterator=E,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new E(l(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},O(_),f(_,c,"Generator"),f(_,s,(function(){return this})),f(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=R,M.prototype={constructor:M,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(T),!t)for(var r in this)"t"===r.charAt(0)&&o.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function n(n,o){return s.type="throw",s.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var u=o.call(a,"catchLoc"),c=o.call(a,"finallyLoc");if(u&&c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var i=n;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,g):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),g},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),T(r),g}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;T(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:R(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),g}},t}("object"===n(t=r.nmd(t))?t.exports:{});try{regeneratorRuntime=o}catch(t){"object"===("undefined"==typeof globalThis?"undefined":n(globalThis))?globalThis.regeneratorRuntime=o:Function("r","regeneratorRuntime = r")(o)}}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={id:n,loaded:!1,exports:{}};return t[n].call(i.exports,i,i.exports,r),i.loaded=!0,i.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.nmd=t=>(t.paths=[],t.children||(t.children=[]),t);var n={};return(()=>{"use strict";r.r(n),r.d(n,{AbsoluteLayout:()=>Za,AudioPlayer:()=>ly,CardLayout:()=>es,Component:()=>da,Connectable:()=>Xs,Container:()=>Eh,ContainerAbstract:()=>Ss,DEFAULT:()=>zo,DPPX:()=>Bo,DataSource:()=>Bd,Donut:()=>md,Ellipse:()=>ip,EventMap:()=>vl,FPS:()=>nv,GESTURES:()=>No,GifView:()=>oy,GlobalRef:()=>Vy,Group:()=>Ay,HTMLAbsoluteLayout:()=>Ya,HTMLOverlayContainer:()=>Fy,HTMLOverlayElement:()=>qp,ImageView:()=>Gp,InfoWindow:()=>La,KEYEVENTS:()=>Fo,Layer:()=>js,Layout:()=>za,Line:()=>$h,LinearHorizontalLayout:()=>os,LinearVerticalLayout:()=>ss,LocalRef:()=>Cy,MAX_UNDO_SIZE:()=>Do,MODE_ADD:()=>Co,MODE_EDIT:()=>Ro,MODE_SHIFT:()=>Io,MODE_VIEW:()=>Mo,Model:()=>ov,MoveHandle:()=>vs,NOTHING:()=>To,OrthoLine:()=>Dp,Path:()=>ad,Polygon:()=>hp,Polyline:()=>_p,Popup:()=>ed,Rect:()=>tu,RectPath:()=>Ea,ReferenceMap:()=>Gd,RootContainer:()=>Nl,Ruler:()=>au,SCENE_MODE:()=>Lo,Scene:()=>sh,ScenePopup:()=>Ka,ScriptLoader:()=>Zd,Shape:()=>xa,Star:()=>Ed,TableLayout:()=>cs,Text:()=>vy,Triangle:()=>hd,ValueHolder:()=>Rd,create:()=>lh,debug:()=>to,error:()=>Zn,license:()=>iv,polyfill:()=>a,version:()=>$d,warn:()=>$n});var t={};r.r(t),r.d(t,{append:()=>kn,clear:()=>jn,forEach:()=>En,getAt:()=>On,indexOf:()=>An,insertAt:()=>xn,moveBackward:()=>Mn,moveForward:()=>Tn,moveToHead:()=>Rn,moveToTail:()=>In,prepend:()=>Sn,remove:()=>_n,size:()=>Pn});var e={};r.r(e),r.d(e,{pop:()=>Ln,push:()=>Cn});var o={};r.r(o),r.d(o,{clear:()=>jo,intercept:()=>Ao,reset:()=>Po});var i={};r.r(i),r.d(i,{compile:()=>ec,duplicate:()=>rc,match:()=>Xo,select:()=>Qo}),r(46280),r(87751),r(91441);const a="done";"function"!=typeof Object.assign&&(Object.assign=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1;r<arguments.length;r++){var n=arguments[r];if(null!=n)for(var o in n)n.hasOwnProperty(o)&&(e[o]=n[o])}return e}),"function"!=typeof Object.values&&(Object.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e}),"function"!=typeof Object.keys&&(Object.values=function(t){var e=[];for(var r in t)e.push(r);return e}),"undefined"!=typeof CanvasRenderingContext2D&&null==CanvasRenderingContext2D.prototype.ellipse&&(CanvasRenderingContext2D.prototype.ellipse=function(t,e,r,n,o,i,a,s){this.save(),this.translate(t,e),this.rotate(o),this.translate(-r,-n),this.scale(r,n),this.arc(1,1,1,i,a,s),this.restore()}),function(){for(var t=0,e=["ms","moz","webkit","o"],r=0;r<e.length&&!window.requestAnimationFrame;++r)window.requestAnimationFrame=window[e[r]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[e[r]+"CancelAnimationFrame"]||window[e[r]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(console.warn("requestAnimationFrame not supported"),window.requestAnimationFrame=function(e,r){var n=performance.now(),o=Math.max(0,33-(n-t)),i=window.setTimeout((function(){e(n+o)}),o);return t=n+o,i}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(t){clearTimeout(t)})}(),String.prototype.startsWith||(String.prototype.startsWith=function(t,e){return e=e||0,this.substr(e,t.length)===t});const s=function(t,e){return t===e||t!=t&&e!=e},u=function(t,e){for(var r=t.length;r--;)if(s(t[r][0],e))return r;return-1};var c=Array.prototype.splice;function f(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}f.prototype.clear=function(){this.__data__=[],this.size=0},f.prototype.delete=function(t){var e=this.__data__,r=u(e,t);return!(r<0||(r==e.length-1?e.pop():c.call(e,r,1),--this.size,0))},f.prototype.get=function(t){var e=this.__data__,r=u(e,t);return r<0?void 0:e[r][1]},f.prototype.has=function(t){return u(this.__data__,t)>-1},f.prototype.set=function(t,e){var r=this.__data__,n=u(r,t);return n<0?(++this.size,r.push([t,e])):r[n][1]=e,this};const l=f;function h(t){return h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},h(t)}const p="object"==("undefined"==typeof global?"undefined":h(global))&&global&&global.Object===Object&&global;function y(t){return y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},y(t)}var d="object"==("undefined"==typeof self?"undefined":y(self))&&self&&self.Object===Object&&self;const v=p||d||Function("return this")(),g=v.Symbol;var b=Object.prototype,m=b.hasOwnProperty,w=b.toString,x=g?g.toStringTag:void 0;var k=Object.prototype.toString;var S=g?g.toStringTag:void 0;const _=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":S&&S in Object(t)?function(t){var e=m.call(t,x),r=t[x];try{t[x]=void 0;var n=!0}catch(t){}var o=w.call(t);return n&&(e?t[x]=r:delete t[x]),o}(t):function(t){return k.call(t)}(t)};function O(t){return O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},O(t)}const E=function(t){var e=O(t);return null!=t&&("object"==e||"function"==e)},A=function(t){if(!E(t))return!1;var e=_(t);return"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e},P=v["__core-js_shared__"];var j,T=(j=/[^.]+$/.exec(P&&P.keys&&P.keys.IE_PROTO||""))?"Symbol(src)_1."+j:"";var M=Function.prototype.toString;const R=function(t){if(null!=t){try{return M.call(t)}catch(t){}try{return t+""}catch(t){}}return""};var I=/^\[object .+?Constructor\]$/,C=Function.prototype,L=Object.prototype,D=C.toString,B=L.hasOwnProperty,N=RegExp("^"+D.call(B).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");const F=function(t){return!(!E(t)||(e=t,T&&T in e))&&(A(t)?N:I).test(R(t));var e},z=function(t,e){var r=function(t,e){return null==t?void 0:t[e]}(t,e);return F(r)?r:void 0},U=z(v,"Map"),Y=z(Object,"create");var G=Object.prototype.hasOwnProperty;var H=Object.prototype.hasOwnProperty;function W(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}W.prototype.clear=function(){this.__data__=Y?Y(null):{},this.size=0},W.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},W.prototype.get=function(t){var e=this.__data__;if(Y){var r=e[t];return"__lodash_hash_undefined__"===r?void 0:r}return G.call(e,t)?e[t]:void 0},W.prototype.has=function(t){var e=this.__data__;return Y?void 0!==e[t]:H.call(e,t)},W.prototype.set=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=Y&&void 0===e?"__lodash_hash_undefined__":e,this};const X=W;function q(t){return q="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},q(t)}const V=function(t,e){var r=t.__data__;return function(t){var e=q(t);return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}(e)?r["string"==typeof e?"string":"hash"]:r.map};function Q(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}Q.prototype.clear=function(){this.size=0,this.__data__={hash:new X,map:new(U||l),string:new X}},Q.prototype.delete=function(t){var e=V(this,t).delete(t);return this.size-=e?1:0,e},Q.prototype.get=function(t){return V(this,t).get(t)},Q.prototype.has=function(t){return V(this,t).has(t)},Q.prototype.set=function(t,e){var r=V(this,t),n=r.size;return r.set(t,e),this.size+=r.size==n?0:1,this};const K=Q;function J(t){var e=this.__data__=new l(t);this.size=e.size}J.prototype.clear=function(){this.__data__=new l,this.size=0},J.prototype.delete=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r},J.prototype.get=function(t){return this.__data__.get(t)},J.prototype.has=function(t){return this.__data__.has(t)},J.prototype.set=function(t,e){var r=this.__data__;if(r instanceof l){var n=r.__data__;if(!U||n.length<199)return n.push([t,e]),this.size=++r.size,this;r=this.__data__=new K(n)}return r.set(t,e),this.size=r.size,this};const Z=J;function $(t){var e=-1,r=null==t?0:t.length;for(this.__data__=new K;++e<r;)this.add(t[e])}$.prototype.add=$.prototype.push=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this},$.prototype.has=function(t){return this.__data__.has(t)};const tt=$,et=function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n;)if(e(t[r],r,t))return!0;return!1},rt=function(t,e,r,n,o,i){var a=1&r,s=t.length,u=e.length;if(s!=u&&!(a&&u>s))return!1;var c=i.get(t),f=i.get(e);if(c&&f)return c==e&&f==t;var l=-1,h=!0,p=2&r?new tt:void 0;for(i.set(t,e),i.set(e,t);++l<s;){var y=t[l],d=e[l];if(n)var v=a?n(d,y,l,e,t,i):n(y,d,l,t,e,i);if(void 0!==v){if(v)continue;h=!1;break}if(p){if(!et(e,(function(t,e){if(a=e,!p.has(a)&&(y===t||o(y,t,r,n,i)))return p.push(e);var a}))){h=!1;break}}else if(y!==d&&!o(y,d,r,n,i)){h=!1;break}}return i.delete(t),i.delete(e),h},nt=v.Uint8Array,ot=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r},it=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r};var at=g?g.prototype:void 0,st=at?at.valueOf:void 0;const ut=function(t,e){for(var r=-1,n=e.length,o=t.length;++r<n;)t[o+r]=e[r];return t},ct=Array.isArray,ft=function(t,e,r){var n=e(t);return ct(t)?n:ut(n,r(t))},lt=function(){return[]};var ht=Object.prototype.propertyIsEnumerable,pt=Object.getOwnPropertySymbols;const yt=pt?function(t){return null==t?[]:(t=Object(t),function(t,e){for(var r=-1,n=null==t?0:t.length,o=0,i=[];++r<n;){var a=t[r];e(a,r,t)&&(i[o++]=a)}return i}(pt(t),(function(e){return ht.call(t,e)})))}:lt;function dt(t){return dt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},dt(t)}const vt=function(t){return null!=t&&"object"==dt(t)},gt=function(t){return vt(t)&&"[object Arguments]"==_(t)};var bt=Object.prototype,mt=bt.hasOwnProperty,wt=bt.propertyIsEnumerable,xt=gt(function(){return arguments}())?gt:function(t){return vt(t)&&mt.call(t,"callee")&&!wt.call(t,"callee")};const kt=xt;function St(t){return St="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},St(t)}var _t="object"==("undefined"==typeof exports?"undefined":St(exports))&&exports&&!exports.nodeType&&exports,Ot=_t&&"object"==("undefined"==typeof module?"undefined":St(module))&&module&&!module.nodeType&&module,Et=Ot&&Ot.exports===_t?v.Buffer:void 0;const At=(Et?Et.isBuffer:void 0)||function(){return!1};function Pt(t){return Pt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Pt(t)}var jt=/^(?:0|[1-9]\d*)$/;const Tt=function(t,e){var r=Pt(t);return!!(e=null==e?9007199254740991:e)&&("number"==r||"symbol"!=r&&jt.test(t))&&t>-1&&t%1==0&&t<e},Mt=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991};var Rt={};Rt["[object Float32Array]"]=Rt["[object Float64Array]"]=Rt["[object Int8Array]"]=Rt["[object Int16Array]"]=Rt["[object Int32Array]"]=Rt["[object Uint8Array]"]=Rt["[object Uint8ClampedArray]"]=Rt["[object Uint16Array]"]=Rt["[object Uint32Array]"]=!0,Rt["[object Arguments]"]=Rt["[object Array]"]=Rt["[object ArrayBuffer]"]=Rt["[object Boolean]"]=Rt["[object DataView]"]=Rt["[object Date]"]=Rt["[object Error]"]=Rt["[object Function]"]=Rt["[object Map]"]=Rt["[object Number]"]=Rt["[object Object]"]=Rt["[object RegExp]"]=Rt["[object Set]"]=Rt["[object String]"]=Rt["[object WeakMap]"]=!1;const It=function(t){return function(e){return t(e)}};function Ct(t){return Ct="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ct(t)}var Lt="object"==("undefined"==typeof exports?"undefined":Ct(exports))&&exports&&!exports.nodeType&&exports,Dt=Lt&&"object"==("undefined"==typeof module?"undefined":Ct(module))&&module&&!module.nodeType&&module,Bt=Dt&&Dt.exports===Lt&&p.process;const Nt=function(){try{return Dt&&Dt.require&&Dt.require("util").types||Bt&&Bt.binding&&Bt.binding("util")}catch(t){}}();var Ft=Nt&&Nt.isTypedArray;const zt=Ft?It(Ft):function(t){return vt(t)&&Mt(t.length)&&!!Rt[_(t)]};var Ut=Object.prototype.hasOwnProperty;const Yt=function(t,e){var r=ct(t),n=!r&&kt(t),o=!r&&!n&&At(t),i=!r&&!n&&!o&&zt(t),a=r||n||o||i,s=a?function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}(t.length,String):[],u=s.length;for(var c in t)!e&&!Ut.call(t,c)||a&&("length"==c||o&&("offset"==c||"parent"==c)||i&&("buffer"==c||"byteLength"==c||"byteOffset"==c)||Tt(c,u))||s.push(c);return s};var Gt=Object.prototype;const Ht=function(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||Gt)},Wt=function(t,e){return function(r){return t(e(r))}},Xt=Wt(Object.keys,Object);var qt=Object.prototype.hasOwnProperty;const Vt=function(t){if(!Ht(t))return Xt(t);var e=[];for(var r in Object(t))qt.call(t,r)&&"constructor"!=r&&e.push(r);return e},Qt=function(t){return null!=t&&Mt(t.length)&&!A(t)},Kt=function(t){return Qt(t)?Yt(t):Vt(t)},Jt=function(t){return ft(t,Kt,yt)};var Zt=Object.prototype.hasOwnProperty;const $t=z(v,"DataView"),te=z(v,"Promise"),ee=z(v,"Set"),re=z(v,"WeakMap");var ne="[object Map]",oe="[object Promise]",ie="[object Set]",ae="[object WeakMap]",se="[object DataView]",ue=R($t),ce=R(U),fe=R(te),le=R(ee),he=R(re),pe=_;($t&&pe(new $t(new ArrayBuffer(1)))!=se||U&&pe(new U)!=ne||te&&pe(te.resolve())!=oe||ee&&pe(new ee)!=ie||re&&pe(new re)!=ae)&&(pe=function(t){var e=_(t),r="[object Object]"==e?t.constructor:void 0,n=r?R(r):"";if(n)switch(n){case ue:return se;case ce:return ne;case fe:return oe;case le:return ie;case he:return ae}return e});const ye=pe;var de="[object Arguments]",ve="[object Array]",ge="[object Object]",be=Object.prototype.hasOwnProperty;const me=function(t,e,r,n,o,i){var a=ct(t),u=ct(e),c=a?ve:ye(t),f=u?ve:ye(e),l=(c=c==de?ge:c)==ge,h=(f=f==de?ge:f)==ge,p=c==f;if(p&&At(t)){if(!At(e))return!1;a=!0,l=!1}if(p&&!l)return i||(i=new Z),a||zt(t)?rt(t,e,r,n,o,i):function(t,e,r,n,o,i,a){switch(r){case"[object DataView]":if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case"[object ArrayBuffer]":return!(t.byteLength!=e.byteLength||!i(new nt(t),new nt(e)));case"[object Boolean]":case"[object Date]":case"[object Number]":return s(+t,+e);case"[object Error]":return t.name==e.name&&t.message==e.message;case"[object RegExp]":case"[object String]":return t==e+"";case"[object Map]":var u=ot;case"[object Set]":var c=1&n;if(u||(u=it),t.size!=e.size&&!c)return!1;var f=a.get(t);if(f)return f==e;n|=2,a.set(t,e);var l=rt(u(t),u(e),n,o,i,a);return a.delete(t),l;case"[object Symbol]":if(st)return st.call(t)==st.call(e)}return!1}(t,e,c,r,n,o,i);if(!(1&r)){var y=l&&be.call(t,"__wrapped__"),d=h&&be.call(e,"__wrapped__");if(y||d){var v=y?t.value():t,g=d?e.value():e;return i||(i=new Z),o(v,g,r,n,i)}}return!!p&&(i||(i=new Z),function(t,e,r,n,o,i){var a=1&r,s=Jt(t),u=s.length;if(u!=Jt(e).length&&!a)return!1;for(var c=u;c--;){var f=s[c];if(!(a?f in e:Zt.call(e,f)))return!1}var l=i.get(t),h=i.get(e);if(l&&h)return l==e&&h==t;var p=!0;i.set(t,e),i.set(e,t);for(var y=a;++c<u;){var d=t[f=s[c]],v=e[f];if(n)var g=a?n(v,d,f,e,t,i):n(d,v,f,t,e,i);if(!(void 0===g?d===v||o(d,v,r,n,i):g)){p=!1;break}y||(y="constructor"==f)}if(p&&!y){var b=t.constructor,m=e.constructor;b==m||!("constructor"in t)||!("constructor"in e)||"function"==typeof b&&b instanceof b&&"function"==typeof m&&m instanceof m||(p=!1)}return i.delete(t),i.delete(e),p}(t,e,r,n,o,i))},we=function t(e,r,n,o,i){return e===r||(null==e||null==r||!vt(e)&&!vt(r)?e!=e&&r!=r:me(e,r,n,o,t,i))},xe=function(t,e){return we(t,e)},ke=function(){try{var t=z(Object,"defineProperty");return t({},"",{}),t}catch(t){}}(),Se=function(t,e,r){"__proto__"==e&&ke?ke(t,e,{configurable:!0,enumerable:!0,value:r,writable:!0}):t[e]=r};var _e=Object.prototype.hasOwnProperty;const Oe=function(t,e,r){var n=t[e];_e.call(t,e)&&s(n,r)&&(void 0!==r||e in t)||Se(t,e,r)},Ee=function(t,e,r,n){var o=!r;r||(r={});for(var i=-1,a=e.length;++i<a;){var s=e[i],u=n?n(r[s],t[s],s,r,t):void 0;void 0===u&&(u=t[s]),o?Se(r,s,u):Oe(r,s,u)}return r},Ae=function(t){return t},Pe=function(t,e,r){switch(r.length){case 0:return t.call(e);case 1:return t.call(e,r[0]);case 2:return t.call(e,r[0],r[1]);case 3:return t.call(e,r[0],r[1],r[2])}return t.apply(e,r)};var je=Math.max;const Te=function(t){return function(){return t}},Me=ke?function(t,e){return ke(t,"toString",{configurable:!0,enumerable:!1,value:Te(e),writable:!0})}:Ae;var Re=Date.now;const Ie=function(t){var e=0,r=0;return function(){var n=Re(),o=16-(n-r);if(r=n,o>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(Me),Ce=function(t,e){return Ie(function(t,e,r){return e=je(void 0===e?t.length-1:e,0),function(){for(var n=arguments,o=-1,i=je(n.length-e,0),a=Array(i);++o<i;)a[o]=n[e+o];o=-1;for(var s=Array(e+1);++o<e;)s[o]=n[o];return s[e]=r(a),Pe(t,this,s)}}(t,e,Ae),t+"")};function Le(t){return Le="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Le(t)}const De=function(t,e,r){if(!E(r))return!1;var n=Le(e);return!!("number"==n?Qt(r)&&Tt(e,r.length):"string"==n&&e in r)&&s(r[e],t)};var Be=Object.prototype.hasOwnProperty;const Ne=function(t){if(!E(t))return function(t){var e=[];if(null!=t)for(var r in Object(t))e.push(r);return e}(t);var e=Ht(t),r=[];for(var n in t)("constructor"!=n||!e&&Be.call(t,n))&&r.push(n);return r},Fe=function(t){return Qt(t)?Yt(t,!0):Ne(t)},ze=(Ue=function(t,e,r,n){Ee(e,Fe(e),t,n)},Ce((function(t,e){var r=-1,n=e.length,o=n>1?e[n-1]:void 0,i=n>2?e[2]:void 0;for(o=Ue.length>3&&"function"==typeof o?(n--,o):void 0,i&&De(e[0],e[1],i)&&(o=n<3?void 0:o,n=1),t=Object(t);++r<n;){var a=e[r];a&&Ue(t,a,r,o)}return t})));var Ue;const Ye=Wt(Object.getPrototypeOf,Object);var Ge=Function.prototype,He=Object.prototype,We=Ge.toString,Xe=He.hasOwnProperty,qe=We.call(Object);const Ve=function(t){if(!vt(t))return!1;var e=_(t);return"[object Error]"==e||"[object DOMException]"==e||"string"==typeof t.message&&"string"==typeof t.name&&!function(t){if(!vt(t)||"[object Object]"!=_(t))return!1;var e=Ye(t);if(null===e)return!0;var r=Xe.call(e,"constructor")&&e.constructor;return"function"==typeof r&&r instanceof r&&We.call(r)==qe}(t)},Qe=Ce((function(t,e){try{return Pe(t,void 0,e)}catch(t){return Ve(t)?t:new Error(t)}})),Ke=function(t,e){for(var r=-1,n=null==t?0:t.length,o=Array(n);++r<n;)o[r]=e(t[r],r,t);return o};var Je=Object.prototype,Ze=Je.hasOwnProperty;const $e=function(t,e,r,n){return void 0===t||s(t,Je[r])&&!Ze.call(n,r)?e:t};var tr={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"};const er=function(t){return"\\"+tr[t]},rr=/<%=([\s\S]+?)%>/g,nr=(or={"&":"&","<":"<",">":">",'"':""","'":"'"},function(t){return null==or?void 0:or[t]});var or;function ir(t){return ir="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ir(t)}const ar=function(t){return"symbol"==ir(t)||vt(t)&&"[object Symbol]"==_(t)};var sr=g?g.prototype:void 0,ur=sr?sr.toString:void 0;const cr=function t(e){if("string"==typeof e)return e;if(ct(e))return Ke(e,t)+"";if(ar(e))return ur?ur.call(e):"";var r=e+"";return"0"==r&&1/e==-1/0?"-0":r},fr=function(t){return null==t?"":cr(t)};var lr=/[&<>"']/g,hr=RegExp(lr.source);const pr={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:rr,variable:"",imports:{_:{escape:function(t){return(t=fr(t))&&hr.test(t)?t.replace(lr,nr):t}}}};var yr=/\b__p \+= '';/g,dr=/\b(__p \+=) '' \+/g,vr=/(__e\(.*?\)|\b__t\)) \+\n'';/g,gr=/[()=,{}\[\]\/\s]/,br=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,mr=/($^)/,wr=/['\n\r\u2028\u2029\\]/g,xr=Object.prototype.hasOwnProperty;const kr={linear:function(t){return t},quad:function(t){return Math.pow(t,2)},circ:function(t){return 1-Math.sin(Math.acos(t))},back:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{x:1.5};return Math.pow(t,2)*((e.x+1)*t-e.x)},bounce:function(t){for(var e=0,r=1;;e+=r,r/=2)if(t>=(7-4*e)/11)return-Math.pow((11-6*e-11*t)/4,2)+Math.pow(r,2)},elastic:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{x:1.5};return Math.pow(2,10*(t-1))*Math.cos(20*Math.PI*e.x/3*t)}};function Sr(t){return Sr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Sr(t)}function _r(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Sr(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Sr(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Sr(o)?o:String(o)),n)}var o}var Or=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.client=e,this.config=r,this._started=!1;var n=this.config,o=n.delta,i=void 0===o?"linear":o,a=n.options,s=n.ease;"string"==typeof i&&(i=kr[i]),this.delta="out"==s?function(t,e){return function(r){return 1-t(1-r,e)}}(i,a):"inout"==s?function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(i,a):i,this.init()}var e,r;return e=t,(r=[{key:"dispose",value:function(){this.stop(),delete this.client}},{key:"init",value:function(){}},{key:"start",value:function(){var t=this;if(!this._started){var e=this.config,r=e.duration,n=void 0===r?2e3:r,o=e.delay,i=void 0===o?0:o,a=e.repeat,s=void 0!==a&&a;this._started=!0;var u=0,c=n+i;this._raf=requestAnimationFrame((function e(){if(t._started){0==u&&(u=performance.now(),t.client.touch());var r=performance.now()-u,o=Math.max(r%c-i,0)/n;t.step(t.delta(o)),t.client&&t.client.invalidate(),!(r>=c)||s&&t._started||(t.step(1),t.stop(),u=0),t._started&&(t._raf=requestAnimationFrame(e))}}))}}},{key:"stop",value:function(){this._raf&&cancelAnimationFrame(this._raf),this._raf=null,this._started=!1}},{key:"started",get:function(){return this._started},set:function(t){this.started!=!!t&&(t?this.start():this.stop())}}])&&_r(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Er(t){return Er="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Er(t)}function Ar(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Er(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Er(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Er(o)?o:String(o)),n)}var o}function Pr(t,e){return Pr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Pr(t,e)}function jr(t){return jr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},jr(t)}var Tr=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Pr(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=jr(n);if(o){var r=jr(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Er(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"step",value:function(t){var e=this.config.theta,r=void 0===e?6.28:e;this.client.delta("theta",t*r)}}],r&&Ar(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or);function Mr(t){return Mr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Mr(t)}function Rr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Mr(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Mr(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Mr(o)?o:String(o)),n)}var o}function Ir(t,e){return Ir=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ir(t,e)}function Cr(t){return Cr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Cr(t)}var Lr=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ir(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Cr(n);if(o){var r=Cr(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Mr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"step",value:function(t){var e=this.config.theta,r=void 0===e?.2617993877991494:e,n=4*r,o=t*n;t<1/4?o*=-1:t<3/4?o-=2*r:o=n-o,this.client.delta("theta",o)}}],r&&Rr(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or);function Dr(t){return Dr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Dr(t)}function Br(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Dr(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Dr(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Dr(o)?o:String(o)),n)}var o}function Nr(t,e){return Nr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Nr(t,e)}function Fr(t){return Fr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Fr(t)}var zr=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Nr(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Fr(n);if(o){var r=Fr(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Dr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"step",value:function(t){var e,r=this.config.scale,n=2*((void 0===r?1.3:r)-1);e=t<.5?1+n*t:1+(1-t)*n,this.client.delta("sx",e),this.client.delta("sy",e)}}])&&Br(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or);function Ur(t){return Ur="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ur(t)}function Yr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ur(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ur(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ur(o)?o:String(o)),n)}var o}function Gr(t,e){return Gr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Gr(t,e)}function Hr(t){return Hr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Hr(t)}var Wr=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Gr(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Hr(n);if(o){var r=Hr(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Ur(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"step",value:function(t){var e=this.config,r=e.x,n=void 0===r?0:r,o=e.y,i=void 0===o?0:o;this.client.delta("tx",t*n),this.client.delta("ty",t*i)}}])&&Yr(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or);function Xr(t){return Xr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Xr(t)}function qr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Xr(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Xr(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Xr(o)?o:String(o)),n)}var o}function Vr(t,e){return Vr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Vr(t,e)}function Qr(t){return Qr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Qr(t)}var Kr=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Vr(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Qr(n);if(o){var r=Qr(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Xr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"step",value:function(t){var e=this.config.rideOn,r=this.client;if(e&&r&&r.root){var n=r.root.findById(e);if(n){var o=r.delta(),i=o.tx,a=o.ty,s=n.outline(t),u=r.center,c=r.transcoordS2T(u.x,u.y);n&&(r.delta("tx",s.x-c.x+i),r.delta("ty",s.y-c.y+a))}}}}])&&qr(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or);function Jr(t){return Jr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Jr(t)}function Zr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Jr(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Jr(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Jr(o)?o:String(o)),n)}var o}function $r(t,e){return $r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},$r(t,e)}function tn(t){return tn=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},tn(t)}var en=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&$r(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=tn(n);if(o){var r=tn(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Jr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"step",value:function(t){var e,r=this.config,n=r.startAlpha,o=void 0===n?1:n,i=r.endAlpha,a=void 0===i?0:i,s=Math.max(Math.min(o,a,1),0),u=2*(Math.min(Math.max(o,a,1),1)-s);e=t<.5?u*t:(1-t)*u,this.client.delta("fade",e)}}],r&&Zr(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or),rn={rotation:Tr,vibration:Lr,heartbeat:zr,moving:Wr,outline:Kr,fade:en};function nn(t){var e=t.duration,r=void 0===e?1e3:e,n=(t.delay,t.step),o=t.delta,i=t.ease,a=t.options,s=t.repeat,u=void 0!==s&&s;"string"==typeof o&&(o=kr[o]),"out"==i?o=function(t,e){return function(r){return 1-t(1-r,e)}}(o,a):"inout"==i&&(o=function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(o,a));var c=!1;return{start:function(){var t=this;if(c)return this;c=!0;var e=0;return requestAnimationFrame((function i(){if(c){0==e&&(e=performance.now());var s=(performance.now()-e)/r,f=u?s%1:Math.min(s,1);n(o(f,a)),!(s>=1)||u&&c||(t.stop(),e=0),c&&requestAnimationFrame(i)}})),this},stop:function(){return c=!1,this}}}var on=/\s/;var an=/^\s+/;const sn=function(t){return t?t.slice(0,function(t){for(var e=t.length;e--&&on.test(t.charAt(e)););return e}(t)+1).replace(an,""):t};var un=/^[-+]0x[0-9a-f]+$/i,cn=/^0b[01]+$/i,fn=/^0o[0-7]+$/i,ln=parseInt;const hn=function(t){if("number"==typeof t)return t;if(ar(t))return NaN;if(E(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=E(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=sn(t);var r=cn.test(t);return r||fn.test(t)?ln(t.slice(2),r?2:8):un.test(t)?NaN:+t};const pn=function(t){var e=function(t){return t?1/0===(t=hn(t))||t===-1/0?17976931348623157e292*(t<0?-1:1):t==t?t:0:0===t?t:0}(t),r=e%1;return e==e?r?e-r:e:0},yn=function(t){return function(t,e){var r;if("function"!=typeof e)throw new TypeError("Expected a function");return t=pn(t),function(){return--t>0&&(r=e.apply(this,arguments)),t<=1&&(e=void 0),r}}(2,t)};var dn=Object.prototype.hasOwnProperty;const vn=function(t){if(null==t)return!0;if(Qt(t)&&(ct(t)||"string"==typeof t||"function"==typeof t.splice||At(t)||zt(t)||kt(t)))return!t.length;var e=ye(t);if("[object Map]"==e||"[object Set]"==e)return!t.size;if(Ht(t))return!Vt(t).length;for(var r in t)if(dn.call(t,r))return!1;return!0};function gn(t){return gn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},gn(t)}var bn=0;function mn(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};"object"!=gn(t)&&(t={});for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return r.forEach((function(e){var r=function(r){"object"!=gn(e[r])?t[r]=e[r]:e[r].length>0?t[r]=e[r].map((function(t){return"object"!=gn(e[r])?t:mn({},t)})):t[r]=mn(t[r],e[r])};for(var n in e)r(n)})),t}function wn(t){for(;t&&"object"===gn(t);){var e=t;for(var r in t){t=t[r];break}if(t===e){t=void 0;break}}return t}function xn(t,e){return this.__collection__?(-1==(t=this.__collection__.indexOf(e))&&this.__collection__.splice(t,0,e),this):this}function kn(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.push(t),this}function Sn(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.unshift(t),this}function _n(t){if(!this.__collection__)return this;var e=this.__collection__.indexOf(t);return e>=0&&this.__collection__.splice(e,1),this}function On(t){if(this.__collection__)return this.__collection__[t]}function En(t,e){this.__collection__&&this.__collection__.forEach(t,e)}function An(t){if(this.__collection__)return this.__collection__.indexOf(t)}function Pn(){return this.__collection__?this.__collection__.length:0}function jn(){this.__collection__=[]}function Tn(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this.__collection__[e]=this.__collection__[e-1],this.__collection__[e-1]=t)}function Mn(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this.__collection__[e]=this.__collection__[e+1],this.__collection__[e+1]=t)}function Rn(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=this.__collection__.concat(r,n)}}function In(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=r.concat(n,this.__collection__)}}function Cn(t){throw new Error("Not Implemented Yet")}function Ln(t){throw new Error("Not Implemented Yet")}function Dn(){}function Bn(t){return Bn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Bn(t)}Dn.prototype=t;var Nn=/\s+/;function Fn(t,e,r,n){if(!r)return!0;if("object"==Bn(r)){for(var o in r){var i=r[o];t[e].apply(t,[o,i])}return!1}return!Nn.test(r)||(r.split(Nn).forEach((function(r){return t[e].apply(t,[r].concat(n))})),!1)}var zn=["on","off","once","delegate_on","delegate_off","trigger","listenTo"],Un={withEvent:function(){var t=this;zn.forEach((function(e){return t[e]=Un[e]}))},on:function(t,e,r){return Fn(this,"on",t,[e,r])&&e?(this._listeners||(this._listeners={}),(this._listeners[t]||(this._listeners[t]=[])).push({callback:e,context:r,ctx:r||this}),this):this},once:function(t,e,r){if(!Fn(this,"once",t,[e,r])||!e)return this;var n=this,o=yn((function(){n.off(t,o),e.apply(n,arguments)}));o._callback=e,this.on(t,o,r)},off:function(t,e,r){if(!this._listeners||!Fn(this,"off",t,[e,r]))return this;if(!t&&!e&&!r)return this._listeners=void 0,this;var n;n=t?[t]:Object.keys(this._listeners);for(var o=0;o<n.length;o++){var i=n[o],a=this._listeners[i];if(a){var s=[];if(this._listeners[i]=s,e||r)for(var u=0;u<a.length;u++){var c=a[u];(e&&e!==c.callback&&e!==c.callback._callback||r&&r!==c.context)&&s.push(c)}s.length||delete this._listeners[i]}}return this},delegate_on:function(t){return this._delegators||(this._delegators=new Dn),this._delegators.append(t),this},delegate_off:function(t){return this._delegators?(this._delegators.remove(t),this):this},delegate:function(){if(this._delegators&&this._delegators.size()>0&&Gn(this._delegators,arguments),!this._listeners)return this;var t=arguments.length-1,e=arguments[t];arguments[t]={origin:e.origin,name:e.name,deliverer:this};var r=this._listeners[e.name],n=this._listeners["(all)"];return r&&Yn(r,arguments),n&&Yn(n,arguments),this},trigger:function(t){var e=[].slice.call(arguments,1);if(e.push({origin:this,name:t,deliverer:this}),this._delegators&&this._delegators.size()>0&&Gn(this._delegators,e),!this._listeners)return this;if(!Fn(this,"trigger",t,e))return this;var r=this._listeners[t],n=this._listeners["(all)"];return r&&Yn(r,e),n&&Yn(n,e),this},stopListening:function(t,e,r){var n=this._listeningTo;if(!n)return this;var o=!e&&!r;for(var i in r||"object"!=Bn(e)||(r=this),t&&((n={})[t._listenId]=t),n){var a=n[i];a.off(e,r,this),(o||vn(a._events))&&delete this._listeningTo[i]}return this}};function Yn(t,e){t.forEach((function(t){return t.callback.apply(t.ctx,e)}))}function Gn(t,e){t.forEach((function(t){return Un.delegate.apply(t,e)}))}var Hn={listenTo:"on",listenToOnce:"once"};for(var Wn in Hn){var Xn=Hn[Wn];Un[Wn]=function(t,e,r){this._listeningTo||(this._listeningTo={});var n=this._listeningTo;return t._listenId||(t._listenId="".concat("l").concat(++bn)),n[t._listenId]=t,r||"object"!=Bn(e)||(r=this),t[Xn](e,r,this),this}}const qn=Un;function Vn(t,e){if(e instanceof Array)e.forEach((function(e){return Vn(t,e)}));else{if(t.mixedIn=t.hasOwnProperty("mixedIn")?t.mixedIn:[],t.mixingIn=t.hasOwnProperty("mixingIn")?t.mixingIn:[],t.mixedIn.indexOf(e)>=0)return t;if(t.mixingIn.indexOf(e)>=0)throw new Error("found cyclic dependencies between ".concat(t.mixingIn));t.mixingIn.push(e),e.call(t),t.mixingIn.pop(),t.mixedIn.push(e)}return t}"undefined"==typeof window||window;var Qn="[ERROR]",Kn="[WARN]",Jn="[DEBUG]",Zn=function(){for(var t,e=[],r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];n.forEach((function(t){return t&&t.stack&&e.push(t.stack)})),(t=console).error.apply(t,[Qn].concat(n,[e.join(" ")]))},$n=function(){for(var t,e=[],r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];n.forEach((function(t){return t&&t.stack&&e.push(t.stack)})),(t=console).warn.apply(t,[Kn].concat(n,[e.join(" ")]))},to=function(){for(var t,e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];return(t=console).log.apply(t,[Jn].concat(r))};function eo(t){return eo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},eo(t)}var ro="object"==("undefined"==typeof exports?"undefined":eo(exports))&&exports&&!exports.nodeType&&exports,no=ro&&"object"==("undefined"==typeof module?"undefined":eo(module))&&module&&!module.nodeType&&module,oo=no&&no.exports===ro?v.Buffer:void 0,io=oo?oo.allocUnsafe:void 0;const ao=Object.getOwnPropertySymbols?function(t){for(var e=[];t;)ut(e,yt(t)),t=Ye(t);return e}:lt,so=function(t){return ft(t,Fe,ao)};var uo=Object.prototype.hasOwnProperty;const co=function(t){var e=new t.constructor(t.byteLength);return new nt(e).set(new nt(t)),e};var fo=/\w*$/;var lo=g?g.prototype:void 0,ho=lo?lo.valueOf:void 0;const po=function(t,e,r){var n,o,i,a=t.constructor;switch(e){case"[object ArrayBuffer]":return co(t);case"[object Boolean]":case"[object Date]":return new a(+t);case"[object DataView]":return function(t,e){var r=e?co(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.byteLength)}(t,r);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return function(t,e){var r=e?co(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.length)}(t,r);case"[object Map]":case"[object Set]":return new a;case"[object Number]":case"[object String]":return new a(t);case"[object RegExp]":return(i=new(o=t).constructor(o.source,fo.exec(o))).lastIndex=o.lastIndex,i;case"[object Symbol]":return n=t,ho?Object(ho.call(n)):{}}};var yo=Object.create;const vo=function(){function t(){}return function(e){if(!E(e))return{};if(yo)return yo(e);t.prototype=e;var r=new t;return t.prototype=void 0,r}}();var go=Nt&&Nt.isMap;const bo=go?It(go):function(t){return vt(t)&&"[object Map]"==ye(t)};var mo=Nt&&Nt.isSet;const wo=mo?It(mo):function(t){return vt(t)&&"[object Set]"==ye(t)};var xo="[object Arguments]",ko="[object Function]",So="[object Object]",_o={};_o[xo]=_o["[object Array]"]=_o["[object ArrayBuffer]"]=_o["[object DataView]"]=_o["[object Boolean]"]=_o["[object Date]"]=_o["[object Float32Array]"]=_o["[object Float64Array]"]=_o["[object Int8Array]"]=_o["[object Int16Array]"]=_o["[object Int32Array]"]=_o["[object Map]"]=_o["[object Number]"]=_o[So]=_o["[object RegExp]"]=_o["[object Set]"]=_o["[object String]"]=_o["[object Symbol]"]=_o["[object Uint8Array]"]=_o["[object Uint8ClampedArray]"]=_o["[object Uint16Array]"]=_o["[object Uint32Array]"]=!0,_o["[object Error]"]=_o[ko]=_o["[object WeakMap]"]=!1;const Oo=function t(e,r,n,o,i,a){var s,u=1&r,c=2&r,f=4&r;if(n&&(s=i?n(e,o,i,a):n(e)),void 0!==s)return s;if(!E(e))return e;var l=ct(e);if(l){if(s=function(t){var e=t.length,r=new t.constructor(e);return e&&"string"==typeof t[0]&&uo.call(t,"index")&&(r.index=t.index,r.input=t.input),r}(e),!u)return function(t,e){var r=-1,n=t.length;for(e||(e=Array(n));++r<n;)e[r]=t[r];return e}(e,s)}else{var h=ye(e),p=h==ko||"[object GeneratorFunction]"==h;if(At(e))return function(t,e){if(e)return t.slice();var r=t.length,n=io?io(r):new t.constructor(r);return t.copy(n),n}(e,u);if(h==So||h==xo||p&&!i){if(s=c||p?{}:function(t){return"function"!=typeof t.constructor||Ht(t)?{}:vo(Ye(t))}(e),!u)return c?function(t,e){return Ee(t,ao(t),e)}(e,function(t,e){return t&&Ee(e,Fe(e),t)}(s,e)):function(t,e){return Ee(t,yt(t),e)}(e,function(t,e){return t&&Ee(e,Kt(e),t)}(s,e))}else{if(!_o[h])return i?e:{};s=po(e,h,u)}}a||(a=new Z);var y=a.get(e);if(y)return y;a.set(e,s),wo(e)?e.forEach((function(o){s.add(t(o,r,n,o,e,a))})):bo(e)&&e.forEach((function(o,i){s.set(i,t(o,r,n,i,e,a))}));var d=l?void 0:(f?c?so:Jt:c?Fe:Kt)(e);return function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n&&!1!==e(t[r],r,t););}(d||e,(function(o,i){d&&(o=e[i=o]),Oe(s,i,t(o,r,n,i,e,a))})),s},Eo=function(t){return Oo(t,4)};function Ao(t,e,r){var n=t.__lookupGetter__(e);n?r?t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),Eo(this.__cache__[e])})):t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),this.__cache__[e]})):Zn("".concat(e," is not defined in ").concat(t.constructor.name))}function Po(t){t.__cache__={}}function jo(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];0==r.length?t.__cache__={}:r.forEach((function(e){return delete t.__cache__[e]}))}var To={},Mo=0,Ro=1,Io=2,Co=3,Lo={VIEW:0,EDIT:1,SHIFT:2,ADD:3},Do=30,Bo="undefined"==typeof window?1:window.devicePixelRatio||(window.matchMedia&&window.matchMedia("(min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 1.5),(-moz-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5)").matches?2:1)||1,No=["mousemove","mouseup","mousedown","mouseout","wheel","touchstart","touchmove","touchend","dblclick"],Fo=["keydown","keyup"],zo={ALPHA:1,FONT_SIZE:15,FONT_FAMILY:"serif",FONT_COLOR:"black",TEXT_ALIGN:"center",TEXT_BASELINE:"middle",TEXT_WRAP:!1,BOLD:!1,ITALIC:!1,STROKE_STYLE:"#999",LINE_DASH:"solid"},Uo={x:1,y:1};function Yo(t,e,r){var n=e.left,o=void 0===n?0:n,i=e.top,a=void 0===i?0:i,s=e.blurSize,u=void 0===s?0:s,c=e.color,f=void 0===c?"transparent":c,l=r.rootModel.get("scale")||Uo;t.shadowOffsetX=o*l.x*Bo,t.shadowOffsetY=a*l.y*Bo,t.shadowBlur=u*l.x*Bo,t.shadowColor=f}var Go={gradation:function(t,e,r){r.type;var n=r.subType,o=r.from,i=r.to,a=r.colors;switch(n){case"linear":var s=e.createLinearGradient(o.x,o.y,i.x,i.y);break;case"radial":s=e.createRadialGradient(o.x,o.y,o.r,i.x,i.y,i.r);break;default:s=e.createLinearGradient(o.x,o.y,i.x,i.y)}a&&(a.forEach((function(t){s.addColorStop(t.endPoint,t.color)})),e.fillStyle=s,e.fill())},shadow:Yo};function Ho(t,e,r,n){var o=e.get("class");return!!o&&(o.split(" ")||[]).indexOf(t.substr(1))>=0}function Wo(t,e,r,n){return t==e.get("type")}function Xo(t,e,r,n){if("(all)"==t)return!0;switch(t.charAt(0)){case"#":return function(t,e,r,n){return t.substr(1)==e.get("id")}(t,e);case".":return Ho(t,e);case"(":return function(t,e,r,n){switch(t){case"(all)":return!0;case"(self)":return n===e;case"(root)":return!n.parent&&n===e;case"(descendant)":return n!==e;case"(child)":return n===e.parent;default:return!1}}(t,e,0,n);default:return Wo(t,e)}}function qo(t,e,r,n,o,i){return t(e,r,n,o)&&i.push(r),r.components&&r.components.forEach((function(r){qo(t,e,r,n,o,i)})),i}function Vo(t,e,r,n){switch(t){case"(all)":return!0;case"(parent)":return r&&r.parent===e;case"(child)":case"(children)":return r&&r===e.parent;case"(sibling)":case"(siblings)":return r&&r.parent===e.parent&&r!==e;default:return!1}}function Qo(t,e,r){if("(root)"==t)return[e];if("(self)"==t)return r?[r]:[];var n;switch(t.charAt(0)){case"#":return e.root.findAllById(t.substr(1))||[];case".":n=Ho;break;case"(":n=Vo;break;default:n=Wo}return qo(n,t,e,r,e,[])}var Ko=r(48930),Jo=r.n(Ko),Zo=function(t){return t};function $o(t){if(!t)return Zo;try{var e=Jo()(t);return function(t){return e.evaluate(t)}}catch(t){return console.error(t),Zo}}function ti(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function ei(t){var e=wn(t);return null==e?"":String(e)}function ri(t){return Number(wn(t))}function ni(t){return t}function oi(t){return ei(t)}function ii(t){return ri(t)}function ai(t){if(this.param)return t=ei(t),this.param.hasOwnProperty(t)?this.param[t]:this.param.default}function si(t){var e,r,n=this.param;if(n){for(var o in n){var i=(e=o.split("~"),r=2,function(t){if(Array.isArray(t))return t}(e)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,r)||function(t,e){if(t){if("string"==typeof t)return ti(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?ti(t,e):void 0}}(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),a=i[0],s=i[1],u=!!a,c=!!s;if(a=parseFloat(a),s=parseFloat(s),t=ri(t),u&&!c&&t>=a)return n[o];if(!u&&c&&t<a)return n[o];if(t>=a&&t<s)return n[o]}return n.default}}function ui(t){return ri(t)*Math.PI/180}function ci(){}function fi(t,e,r,n,o){switch(r){case"value":return"text"===o||"string"===o?oi.bind(t):"number"===o?ii.bind(t):ni.bind(e);case"map":return ai.bind(t);case"range":return si.bind(t);case"radian":return ui.bind(t);case"eval":return function(t){try{return new Function("value","targets",t)}catch(t){return Zn(t),ci}}(n).bind(e);default:return ni.bind(e)}}function li(t){return li="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},li(t)}function hi(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function pi(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==li(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==li(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===li(o)?o:String(o)),n)}var o}var yi,di=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.owner=r,this.model=e}var e,r;return e=t,(r=[{key:"dispose",value:function(){delete this._model,delete this.owner,delete this.evaluator,delete this.accessor}},{key:"model",get:function(){return this._model},set:function(t){var e=t.target,r=t.property,n=t.rule,o=t.param,i=t.accessor;this._model=t,this.evaluator=fi(this,this.owner,n,o,function(t){switch(t){case"ref":case"fillStyle":case"strokeStyle":return"string";default:return}}(r)),this.accessor=$o(i);var a,s,u=e.match(/\[(.*?)\]/);if(u){var c=(a=u[1].split(":"),s=2,function(t){if(Array.isArray(t))return t}(a)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(a,s)||function(t,e){if(t){if("string"==typeof t)return hi(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?hi(t,e):void 0}}(a,s)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),f=c[0],l=c[1];this.propAccessor=$o(f),this.partAccessor=$o(l)}}},{key:"target",get:function(){return this.model.target}},{key:"property",get:function(){return this.model.property}},{key:"param",get:function(){return this.model.param}},{key:"ndnsp",get:function(){return!!this.model.ndnsp}}])&&pi(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function vi(){var t=this;(arguments.length>0&&void 0!==arguments[0]&&arguments[0]||void 0!==this.data)&&this.mappings&&this.mappings.forEach((function(e){try{var r=e.target,n=e.property,o=e.accessor,i=e.propAccessor,a=e.partAccessor,s=o(t.data);if("(root)"==(r=r.trim())||"(key)"==r){if(null==s)return;var u=Object.keys(s||{}).map((function(e){return t.root.findOrCreate(e)})).filter(Boolean).flat();u.length>0&&u.forEach((function(t){var r=e.evaluator(s[t.get("id")],[t]);!n||"(action)"===n||e.ndnsp&&!r&&0!==r&&!1!==r||(t[n]=r)}))}else if(r.startsWith("[")){if(null==s)return;if(s instanceof Array)s.forEach((function(r){var o=i(r);if(o){var s=t.root.findOrCreate(o);if(s){var u=e.evaluator(a(r),s);!n||"(action)"===n||e.ndnsp&&!u&&0!==u&&!1!==u||s.forEach((function(t){return t[n]=u}))}}}));else{if(!(s instanceof Object))throw String("mapping data should be an object to target property-id.("+s+")");var c=i(s);if(c){var f=t.root.findOrCreate(c);if(f){var l=e.evaluator(a(s),f);!n||"(action)"===n||e.ndnsp&&!l&&0!==l&&!1!==l||f.forEach((function(t){return t[n]=l}))}}}}else{var h=t.root.findAll(r,t);if(h.length>0){var p=e.evaluator(s,h);!n||"(action)"===n||e.ndnsp&&!p&&0!==p&&!1!==p||h.forEach((function(t){return t[n]=p}))}}}catch(r){Zn(r,t,e)}}))}function gi(t){return gi="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},gi(t)}function bi(t,e,r,n,o){var i=n.alpha,a=void 0===i?1:i,s=o.fillStyle;if(t.globalAlpha*=a,s)if("string"==typeof s)t.fillStyle=s,t.fill();else if("object"==gi(s))if("gradient"==s.type){t.translate(r.x,r.y);var u,c=e.width,f=e.height;if("linear"==s.gradientType){var l=3.141592653589793,h=s.rotation;if(h>=.436332&&h<=1.13446||h>=2.00713&&h<=2.70526||h>=3.57792&&h<=4.27606||h>=5.14872&&h<=5.84685){var p=Math.sqrt(Math.pow((c-4)/2,2)+Math.pow((f-4)/2,2));p-=p-(c+f)/3,u=t.createLinearGradient(p*Math.cos(h+l),p*Math.sin(h+l),p*Math.cos(h),p*Math.sin(h))}else u=t.createLinearGradient((c-4)/2*Math.cos(h+l),(f-4)/2*Math.sin(h+l),(c-4)/2*Math.cos(h),(f-4)/2*Math.sin(h))}else if("radial"==s.gradientType){var y=.95*Math.sqrt(Math.pow((c-4)/2,2)+Math.pow((f-4)/2,2));switch(s.center){case"center":default:u=t.createRadialGradient(0,0,0,0,0,y);break;case"left-top":u=t.createRadialGradient(-c/2,-f/2,0,-c/2,-f/2,2*y);break;case"right-top":u=t.createRadialGradient(c/2,-f/2,0,c/2,-f/2,2*y);break;case"left-bottom":u=t.createRadialGradient(-c/2,f/2,0,-c/2,f/2,2*y);break;case"right-bottom":u=t.createRadialGradient(c/2,f/2,0,c/2,f/2,2*y)}}s.colorStops.forEach((function(t){if(t.position>=0&&t.position<=1)try{u.addColorStop(t.position,t.color)}catch(e){$n("Invalid Color for colorstop : ",t.color),u.addColorStop(t.position,"#fff")}})),t.fillStyle=u,t.fill(),t.translate(-r.x,-r.y)}else if("pattern"==s.type&&s.image){o.prepareFillIf(!o._pattern_image_origin);var d=o._pattern_image;if(!d)return;var v=0,g=0,b=0,m=0,w=e.left,x=e.top;if(!s.fitPattern){v=s.offsetX,g=s.offsetY;var k=s.width?s.width:d.width,S=s.height?s.height:d.height;switch(s.align){case"center":b=e.width/2-k/2,m=e.height/2-S/2;break;case"left-top":b=0,m=0;break;case"left-bottom":b=0,m=e.height-S;break;case"right-top":b=e.width-k,m=0;break;case"right-bottom":b=e.width-k,m=e.height-S;break;case"left":b=0,m=e.height/2-S/2;break;case"right":b=e.width-k,m=e.height/2-S/2;break;case"top":b=e.width/2-k/2,m=0;break;case"bottom":b=e.width/2-k/2,m=e.height-S}w+=v+b,x+=g+m}t.translate(w,x),s.color&&(t.fillStyle=s.color,t.fill()),s.fitPattern?Math.abs((d.width-e.width)*(d.height-e.height))>1?(delete o._pattern_image,delete o._pattern_image_origin):t.fillStyle=t.createPattern(d,"no-repeat"):t.fillStyle=t.createPattern(d,s.noRepeat?"no-repeat":"repeat"),t.fill(),t.translate(-w,-x)}}function mi(t,e,r){var n=e.strokeStyle,o=e.lineDash,i=e.lineWidth,a=e.lineCap,s=e.lineJoin,u=e.alpha;if(n&&0!=i){if(a&&(t.lineCap=a),o){var c="round"==a;switch(o){case"solid":o=[0,0];break;case"round-dot":o=c?[0,2*i]:[i,i];break;case"square-dot":o=c?[i,2*i]:[2*i,i];break;case"dash":o=c?[3*i,2.5*i]:[4*i,1.5*i];break;case"dash-dot":o=c?[3*i,3*i,0,3*i]:[4*i,2*i,i,2*i];break;case"long-dash":o=c?[5*i,4*i]:[6*i,3*i];break;case"long-dash-dot":o=c?[5*i,3*i,0,3*i]:[6*i,2*i,i,2*i];break;case"long-dash-dot-dot":o=c?[5*i,2*i,0,2*i,0,2*i]:[6*i,i,i,i,i,i]}t.setLineDash(o)}t.globalAlpha*=u,t.strokeStyle=n,t.lineWidth=i,t.lineJoin=s,t.stroke()}}function wi(t,e,r){if(e.length<2)return e;for(var n=2;n<e.length;n++){var o=e.substring(0,n);if(!(t.measureText(o).width<r))break}return e.substring(0,n-1)}function xi(t,e,r,n){var o=String(e).split("\n");return n?[].concat.apply([],o.map((function(e){return function(t,e,r){var n,o,i=e.split(" "),a=[],s=[];for(n=0,o=1;o<=i.length;o++)if(s=i.slice(n,o),t.measureText(s.join(" ")).width>r){if(o-n==1){var u=wi(t,s[0],r);a.push([u]),i.splice(n,1,u,s[0].substring(u.length))}else{for(;""==i[o-1];)o++;a.push(i.slice(n,--o))}n=o}return o-n>1&&a.push(s),0==a.length&&a.push([""]),a}(t,e,r)}))):o.map((function(t){return t.split(" ")}))}function ki(t){return ki="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ki(t)}function Si(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function _i(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Si(Object(r),!0).forEach((function(e){Oi(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Si(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Oi(t,e,r){return(e=function(t){var e=function(t,e){if("object"!==ki(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==ki(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===ki(e)?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Ei(t,e,r,n,o){var i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,a=arguments.length>6&&void 0!==arguments[6]&&arguments[6],s=!(arguments.length>7&&void 0!==arguments[7])||arguments[7];i="number"==typeof i?{tl:i,tr:i,br:i,bl:i}:_i(_i({},{tl:0,tr:0,br:0,bl:0}),i),t.beginPath(),t.moveTo(e+i.tl,r),t.lineTo(e+n-i.tr,r),t.quadraticCurveTo(e+n,r,e+n,r+i.tr),t.lineTo(e+n,r+o-i.br),t.quadraticCurveTo(e+n,r+o,e+n-i.br,r+o),t.lineTo(e+i.bl,r+o),t.quadraticCurveTo(e,r+o,e,r+o-i.bl),t.lineTo(e,r+i.tl),t.quadraticCurveTo(e,r,e+i.tl,r),t.closePath(),a&&t.fill(),s&&t.stroke()}function Ai(t,e,r,n,o){if(!n)return[];t.save(),t.font=r;var i=xi(t,n,e,!!o);return t.restore(),i}function Pi(t){var e=t.fontFamily,r=void 0===e?zo.FONT_FAMILY:e,n=t.bold,o=void 0===n?zo.BOLD:n,i=t.italic,a=void 0===i?zo.ITALIC:i,s=t.fontSize,u=void 0===s?zo.FONT_SIZE:s,c=[];return o&&c.push("bold"),a&&c.push("italic"),c.push(u+"px"),c.push(r),c.join(" ")}function ji(t,e,r,n){var o=n.alpha,i=n.fontColor,a=void 0===i?zo.FONT_COLOR:i,s=n.textAlign,u=void 0===s?zo.TEXT_ALIGN:s,c=n.textBaseline,f=void 0===c?zo.TEXT_BASELINE:c,l=n.textBackgroundStyle,h=n.fontSize,p=n.lineHeight;o||(o=zo.FONT_COLOR),h||(h=zo.FONT_SIZE),p||(p=1.2*h),t.save(),t.beginPath();var y=e.left,d=e.top,v=e.width,g=e.height;t.font=Pi(n);var b,m,w=r.length*p;switch(f){case"top":b=d,t.textBaseline="top";break;case"bottom":b=d+g-w+p,t.textBaseline="bottom";break;default:b=d+g/2-w/2+p/2,t.textBaseline="middle"}switch(u){case"left":case"justify":m=y,t.textAlign="left";break;case"right":m=y+v,t.textAlign="right";break;default:m=y+v/2,t.textAlign="center"}t.globalAlpha*=o,t.fillStyle=a,"justify"!=u?r.forEach((function(e,r){if(l){t.fillStyle=l;var n=t.measureText(e.join(" "));Ei(t,m-n.actualBoundingBoxLeft-4,b-n.actualBoundingBoxAscent-4,n.actualBoundingBoxLeft+n.actualBoundingBoxRight+8,n.actualBoundingBoxAscent+n.actualBoundingBoxDescent+8,4,!0,!1),t.fillStyle=a}t.fillText(e.join(" "),m,b+r*p)})):r.forEach((function(e,r){var n=b+r*p;if(1==e.length){if(l){t.fillStyle=l;var o=t.measureText(e[0]);Ei(t,m-o.actualBoundingBoxLeft-4,n-o.actualBoundingBoxAscent-4,o.actualBoundingBoxLeft+o.actualBoundingBoxRight+8,o.actualBoundingBoxAscent+o.actualBoundingBoxDescent+8,4,!0,!1),t.fillStyle=a}t.fillText(e[0],m,n)}else{var i=e.map((function(e){return t.measureText(e).width})),s=i.map((function(t){return t.width})),u=s.reduce((function(t,e){return t+e}),0),c=(v-u)/(e.length-1),f=m;e.forEach((function(e,r){l&&(t.fillStyle=l,Ei(t,f-i[r].actualBoundingBoxLeft-4,n-i[r].actualBoundingBoxAscent-4,i[r].actualBoundingBoxLeft+i[r].actualBoundingBoxRight+8,i[r].actualBoundingBoxAscent+i[r].actualBoundingBoxDescent+8,4,!0,!1),t.fillStyle=a),t.fillText(e,f,n),f+=s[r]+c}))}})),t.restore()}function Ti(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{x:0,y:0},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{x:1,y:1};return t-=r.x,e-=r.y,{x:(t*Math.cos(-n)-e*Math.sin(-n)+r.x)/o.x,y:(t*Math.sin(-n)+e*Math.cos(-n)+r.y)/o.y}}function Mi(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{x:0,y:0},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{x:1,y:1};return t-=r.x,e-=r.y,{x:(t*Math.cos(n)-e*Math.sin(n)+r.x)*o.x,y:(t*Math.sin(n)+e*Math.cos(n)+r.y)*o.y}}yi="undefined"==typeof document?function(t,e){return new Canvas(t,e)}:function(t,e){var r=document.createElement("canvas");return r.width=t,r.height=e,r};var Ri={x:1,y:1},Ii={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"};function Ci(t){var e=t.state,r=e.id,n=e.scale,o=void 0===n?Ri:n,i=(e.translate,e.bold),a=e.italic,s=e.fontFamily,u=void 0===s?"":s,c=e.textAlign,f=e.textBaseline,l=e.paddingTop,h=e.paddingBottom,p=e.paddingLeft,y=e.paddingRight,d=e.fontSize,v=void 0===d?zo.FONT_SIZE:d,g=e.lineWidth,b=void 0===g?0:g,m=e.lineDash;h||(h=0),l||(l=0),p||(p=0),y||(y=0);var w=t.state.class,x=(t.text,t.strokeStyle),k=(t.fillStyle,t.rotation),S=void 0===k?0:k,_=t.fontColor,O=t.hidden,E=t.bounds,A=E.left,P=E.top,j=E.width,T=E.height,M=t.element;M.hidden=O,r&&(M.id=r),w&&(M.className=w),Object.assign(M.style,Ii,{fontFamily:u,fontSize:v+"px",left:A+"px",top:P+"px",width:j+"px",height:T+"px",paddingTop:l+"px",paddingRight:y+"px",paddingBottom:h+"px",paddingLeft:p+"px",border:b+"px",borderColor:x,borderStyle:b>0?m||zo.LINE_DASH:"",color:_,fontWeight:i?"bold":"",fontStyle:a?"italic":"",textAlign:"end"==c?"right":"start"==c?"left":c,verticalAlign:f}),function(t){var e=t.element,r=t.fillStyle,n=e.style;if(r)if("string"==typeof r)n.backgroundColor=r;else switch(r.type){case"pattern":if(n.backgroundImage="url("+r.image+")",n.backgroundColor="transparent",r.fitPattern?n.backgroundSize="100% 100%":r.width||r.height?n.backgroundSize="".concat(r.width?r.width+"px":"auto"," ").concat(r.height?r.height+"px":"auto"):n.backgroundSize="contain",r.fitPattern)n.backgroundRepeat="no-repeat";else{var o=r.offsetX,i=r.offsetY,a=r.noRepeat,s=r.align,u=r.color;if(a&&(n.backgroundRepeat="no-repeat"),u&&(n.backgroundColor=u),s)switch(s){case"center":n.backgroundPosition="center center";break;case"left-top":n.backgroundPosition="left top";break;case"left-bottom":n.backgroundPosition="left bottom";break;case"right-top":n.backgroundPosition="right top";break;case"right-bottom":n.backgroundPosition="right bottom";break;case"left":n.backgroundPosition="left center";break;case"right":n.backgroundPosition="right center";break;case"top":n.backgroundPosition="center top";break;case"bottom":n.backgroundPosition="center bottom"}else o||i?n.backgroundPosition="".concat(Number(o)||0,"px ").concat(Number(i)||0,"px"):delete n.backgroundPosition}break;case"gradient":n.background=function(t,e){var r=e.colorStops,n=e.gradientType;if(r instanceof Array&&r.length>0)switch(n){case"radial":return"radial-gradient(farthest-corner at "+function(t,e){var r=t.bounds,n=r.width,o=r.height;switch(e){case"center":return[n/2,o/2];case"left-top":return[0,0];case"right-top":return[n,0];case"left-bottom":return[0,o];default:return[n,o]}}(t,e.center||"center").map((function(t){return t+"px"})).join(" ")+","+r.map((function(t){return"".concat(t.color," ").concat(100*t.position,"%")})).join(",")+")";case"linear":return"linear-gradient("+(180*(e.rotation||0)/3.141592653589793+90)+"deg, "+r.map((function(t){return"".concat(t.color," ").concat(100*t.position,"%")})).join(",")+")"}return""}(t,r)}else n.background="transparent"}(t),function(t){if(t.isShadowable()&&t.state.shadow){var e=t.element,r=t.state.shadow,n=r.left,o=void 0===n?0:n,i=r.top,a=void 0===i?0:i,s=r.blurSize,u=void 0===s?0:s,c=r.color,f=void 0===c?"transparent":c;e.style.boxShadow="".concat(o,"px ").concat(a,"px ").concat(u,"px ").concat(f)}}(t);var R=t.delta(),I=(o&&o.x||1)*R.sx,C=(o&&o.y||1)*R.sy,L=(S||0)+R.theta,D=R.tx||0,B=R.ty||0;["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){M.style[t+"transform"]="rotate(".concat(L,"rad) translate(").concat(D,"px, ").concat(B,"px) scale(").concat(I,", ").concat(C,") perspective(1px)")}))}const Li=function(){return v.Date.now()};var Di=Math.max,Bi=Math.min;const Ni=function(t,e,r){var n,o,i,a,s,u,c=0,f=!1,l=!1,h=!0;if("function"!=typeof t)throw new TypeError("Expected a function");function p(e){var r=n,i=o;return n=o=void 0,c=e,a=t.apply(i,r)}function y(t){var r=t-u;return void 0===u||r>=e||r<0||l&&t-c>=i}function d(){var t=Li();if(y(t))return v(t);s=setTimeout(d,function(t){var r=e-(t-u);return l?Bi(r,i-(t-c)):r}(t))}function v(t){return s=void 0,h&&n?p(t):(n=o=void 0,a)}function g(){var t=Li(),r=y(t);if(n=arguments,o=this,u=t,r){if(void 0===s)return function(t){return c=t,s=setTimeout(d,e),f?p(t):a}(u);if(l)return clearTimeout(s),s=setTimeout(d,e),p(u)}return void 0===s&&(s=setTimeout(d,e)),a}return e=hn(e)||0,E(r)&&(f=!!r.leading,i=(l="maxWait"in r)?Di(hn(r.maxWait)||0,e):i,h="trailing"in r?!!r.trailing:h),g.cancel=function(){void 0!==s&&clearTimeout(s),c=0,n=u=o=s=void 0},g.flush=function(){return void 0===s?a:v(Li())},g},Fi=function(t,e,r){var n=!0,o=!0;if("function"!=typeof t)throw new TypeError("Expected a function");return E(r)&&(n="leading"in r?!!r.leading:n,o="trailing"in r?!!r.trailing:o),Ni(t,e,{leading:n,maxWait:e,trailing:o})};function zi(t){return zi="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},zi(t)}function Ui(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==zi(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==zi(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===zi(o)?o:String(o)),n)}var o}var Yi,Gi=[];function Hi(){Yi=null;var t=performance.now(),e=(Gi=Gi.filter((function(t){return Wi(t)}))).reduce((function(e,r){var n=t-r.updatedAt;return n>=r.retention?e.kills.push(r):e.next=0==e.next?r.retention-n:Math.min(e.next,r.retention-n),e}),{next:0,kills:[]});e.kills.forEach((function(t){var e=Gi.indexOf(t);-1!=e?(Gi.splice(e,1),t.removeSelf(!0)):Zn("Should not be here. Maybe reentrance problem.")})),e.next>0&&(Yi=setTimeout(Xi,Math.max(e.next,500)))}function Wi(t){return!t.disposed&&t.retention>0&&!t.isTemplate()&&t.app&&t.app.isViewMode}var Xi=Fi((function(){requestAnimationFrame(Hi)}),500);const qi=new(function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,r;return e=t,(r=[{key:"add",value:function(t){Wi(t)&&-1==Gi.indexOf(t)&&(Gi.push(t),t.touch()),this.touch()}},{key:"remove",value:function(t){var e=Gi.indexOf(t);e>0&&Gi.splice(e,1),this.touch()}},{key:"touch",value:function(){null!==Yi&&(clearTimeout(Yi),Yi=null),Xi()}},{key:"length",get:function(){return Gi.length}}])&&Ui(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}());var Vi=function(t){return t};function Qi(t){var e=t.indexOf("||"),r="",n="";-1!=e&&(r=t,n=t.substring(e+2,t.length-1).trim(),t=t.replace(t.substring(e,t.length-1),"").trim());var o=t.substr(2,t.length-3).trim().replace(/\[(\w+)\]/g,".$1").replace(/^\./,"").split(".").filter((function(t){return!!t.trim()})),i=o.slice(1);return{defaultValue:n,match:t,originText:r||t,target:o[0],accessor:i.length>0?function(t){return i.reduce((function(t,e){return t?t[e]:void 0}),t)}:Vi}}function Ki(t,e,r){if(t){var n=r||wn,o=String(t),i=(o.match(/#{[^}]*}/gi)||[]).map((function(t){return Qi(t)})),a=(o.match(/\${[^}]*}/gi)||[]).map((function(t){return Qi(t)}));if(0!=i.length||0!=a.length)return function(){var t=o;return i.forEach((function(r){var o=n(r.accessor(e.getState(r.target)));t=t.replace(r.originText,void 0===o?r.defaultValue||"":o)})),a.forEach((function(r){var o=e.root.findById(r.target),i=n(r.accessor(o&&o.data));t=t.replace(r.originText,void 0===i?r.defaultValue||"":i)})),t}}}var Ji=210*Math.PI/180,Zi=150*Math.PI/180,$i={"data-spread":function(t,e,r){if(t.app.isEditMode){var n=!1;e.lineWidth=2,e.strokeStyle="orange";var o=t.root;return t.mappings&&t.mappings.forEach((function(r){var i=o.findAll(r.target,t);i&&i.forEach((function(r){var o=t.center,i=r.center;o=t.transcoordS2C(o.x,o.y,t.rootModel),i=r.transcoordS2C(i.x,i.y,r.rootModel),function(t,e,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10,o=r.x-e.x,i=r.y-e.y,a=Math.atan2(i,o),s=r.x+n*Math.cos(a+Ji),u=r.y+n*Math.sin(a+Ji),c=r.x+n*Math.cos(a+Zi),f=r.y+n*Math.sin(a+Zi);t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(r.x,r.y),t.moveTo(r.x,r.y),t.lineTo(s,u),t.moveTo(r.x,r.y),t.lineTo(c,f),t.stroke()}(e,o,i),n=!0}))})),n}},"bouncing-arrow":function(t,e,r){var n=t.bounds,o=n.left,i=n.top,a=n.width,s=t.state.id,u=t.transcoordS2C(o+a/2,i,t.rootModel),c=u.x,f=u.y,l=2*function(t){var e=100*(1-t)%10;return e<5?e:10-e}(r||0);if(c=Math.max(c,20),f=Math.max(f,20),e.beginPath(),e.moveTo(c-10,f-16+l),e.lineTo(c+10,f-16+l),e.lineTo(c+10,f-8+l),e.lineTo(c+16,f-8+l),e.lineTo(c,f+l),e.lineTo(c-16,f-8+l),e.lineTo(c-10,f-8+l),e.lineTo(c-10,f-16+l),e.lineTo(c-10,f-16+l),e.fillStyle="#FF0000",e.fill(),s){e.beginPath(),e.font="12px Arial";var h=e.measureText(s);e.fillStyle="#FF0000",e.roundRect(c-h.actualBoundingBoxLeft-3+20,f-h.actualBoundingBoxAscent-3-6+l,h.actualBoundingBoxLeft+h.actualBoundingBoxRight+6,h.actualBoundingBoxAscent+h.actualBoundingBoxDescent+6,3),e.fill(),e.fillStyle="white",e.fillText(s,c+20,f-6+l)}return!0},decotag:function(t,e,r){var n=t.decotag;if(n){var o=t.bounds,i=o.left,a=o.top,s=t.transcoordS2C(i,a,t.rootModel),u=s.x,c=s.y;u=Math.max(u+3,5),c=Math.max(c-8,15),e.font="12px Arial";var f=e.measureText(n);return e.beginPath(),e.fillStyle="#FF0000",e.roundRect(u-f.actualBoundingBoxLeft-3,c-f.actualBoundingBoxAscent-3,f.actualBoundingBoxLeft+f.actualBoundingBoxRight+6,f.actualBoundingBoxAscent+f.actualBoundingBoxDescent+6,3),e.fill(),e.beginPath(),e.fillStyle="white",e.fillText(n,u,c),!0}return!1},anchors:function(t,e,r){if(t.app.isEditMode){var n=!1;return t.anchors&&t.anchors.forEach((function(r){var o=r.name,i=r.position||{},a=i.x,s=i.y;if(o){var u=t.transcoordS2C(a,s,t.rootModel);a=u.x,s=u.y,a+=4,s+=4,e.font="12px Arial";var c=e.measureText(o);e.fillStyle="#FF0000",Ei(e,a,s,c.width+6,16,3,!0,!1),e.fillStyle="white",e.fillText(o,a+3,s+13),n=!0}})),n}},link:function(t,e,r){var n=!1;if(t.isLine())return[t.fromEnd,t.toEnd].filter(Boolean).forEach((function(t){var r=t.component,o=t.anchor;if(o){var i=o||{},a=i.name,s=i.position;if(a&&s){var u=s||{},c=u.x,f=u.y,l=r.transcoordS2C(c,f,r.rootModel);c=l.x,f=l.y,c+=8,f+=20,e.font="12px Arial";var h=e.measureText(a);e.fillStyle="#FF0000",Ei(e,c-h.actualBoundingBoxLeft-4,f-h.actualBoundingBoxAscent-4,h.actualBoundingBoxLeft+h.actualBoundingBoxRight+8,h.actualBoundingBoxAscent+h.actualBoundingBoxDescent+8,4,!0,!1),e.fillStyle="white",e.fillText(a,c,f),n=!0}}})),n}};function ta(t){return $i[t]}function ea(t){return ea="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ea(t)}function ra(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function na(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?ra(Object(r),!0).forEach((function(e){oa(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ra(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function oa(t,e,r){return(e=ua(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function ia(){ia=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,o){var i=e&&e.prototype instanceof h?e:h,a=Object.create(i.prototype),s=new O(o||[]);return n(a,"_invoke",{value:x(t,r,s)}),a}function f(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var l={};function h(){}function p(){}function y(){}var d={};u(d,i,(function(){return this}));var v=Object.getPrototypeOf,g=v&&v(v(E([])));g&&g!==e&&r.call(g,i)&&(d=g);var b=y.prototype=h.prototype=Object.create(d);function m(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function w(t,e){function o(n,i,a,s){var u=f(t[n],t,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==ea(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,s)}),(function(t){o("throw",t,a,s)})):e.resolve(l).then((function(t){c.value=t,a(c)}),(function(t){return o("throw",t,a,s)}))}s(u.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===l)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=f(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===l)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function k(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,k(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),l;var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,l;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,l):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,l)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function E(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(ea(t)+" is not iterable")}return p.prototype=y,n(b,"constructor",{value:y,configurable:!0}),n(y,"constructor",{value:p,configurable:!0}),p.displayName=u(y,s,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===p||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,y):(t.__proto__=y,u(t,s,"GeneratorFunction")),t.prototype=Object.create(b),t},t.awrap=function(t){return{__await:t}},m(w.prototype),u(w.prototype,a,(function(){return this})),t.AsyncIterator=w,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new w(c(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},m(b),u(b,s,"Generator"),u(b,i,(function(){return this})),u(b,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=E,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,l):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),l},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),l}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:E(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),l}},t}function aa(t,e,r,n,o,i,a){try{var s=t[i](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,o)}function sa(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ua(n.key),n)}}function ua(t){var e=function(t,e){if("object"!==ea(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==ea(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===ea(e)?e:String(e)}var ca={},fa={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},la=[],ha={theta:0,tx:0,ty:0,sx:1,sy:1,fade:0},pa=new WeakMap,ya=0,da=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._app=r,this._model=e||{},this._state={},this._delta=Eo(ha),r&&this.animation&&(this.animation.started=!0),this.clearCache(),qi.add(this),pa.set(this,ya++)}var e,r,n,i,a;return e=t,r=[{key:"created",value:function(){}},{key:"added",value:function(t){}},{key:"removed",value:function(t){}},{key:"ready",value:(i=ia().mark((function t(){var e,r,n;return ia().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!this.state.persistent){t.next=6;break}if(e=this.app,r=e.isViewMode,n=e.dataStorage,!r){t.next=6;break}return t.next=5,n.load(this);case 5:this.data=t.sent;case 6:case"end":return t.stop()}}),t,this)})),a=function(){var t=this,e=arguments;return new Promise((function(r,n){var o=i.apply(t,e);function a(t){aa(o,r,n,a,s,"next",t)}function s(t){aa(o,r,n,a,s,"throw",t)}a(void 0)}))},function(){return a.apply(this,arguments)})},{key:"touch",value:function(){this.updatedAt=performance.now()}},{key:"clearCache",value:function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];jo.apply(o,[this].concat(e))}},{key:"removeSelf",value:function(t){t?this.dispose():this.parent&&this.parent.removeComponent(this)}},{key:"dispose",value:function(){this._animation&&(this._animation.dispose(),delete this._animation),this.disposeMappings(),this.parent&&this.parent.removeComponent(this),delete this._text_substitutor,delete this._value_substitutor,this._disposed=!0,this.retention&&qi.touch(),this.clearCache(),delete this._app}},{key:"nature",get:function(){return this.constructor.nature}},{key:"disposed",get:function(){return!!this._disposed}},{key:"isLayer",value:function(){return!1}},{key:"isGroup",value:function(){return!1}},{key:"isContainer",value:function(){return!1}},{key:"isLine",value:function(){return!1}},{key:"isRoot",value:function(){return!1}},{key:"isRootModel",value:function(){return!1}},{key:"is3dish",value:function(){return!1}},{key:"isTemplate",value:function(){return!!this.get("templatePrefix")}},{key:"isHTMLElement",value:function(){return!1}},{key:"isConnectable",value:function(){return!1}},{key:"replaceRefids",value:function(t){}},{key:"retention",get:function(){return Number(this.get("retention"))||0}},{key:"hasTextProperty",get:function(){return!0}},{key:"app",get:function(){return!this._app&&this.parent&&(this._app=this.parent.app),this._app}},{key:"model",get:function(){return this._model}},{key:"state",get:function(){return Object.assign({},this._model,this._state)}},{key:"hierarchy",get:function(){var t=Eo(this._model);return this.volatile.forEach((function(e){delete t[e]})),t}},{key:"volatile",get:function(){return la}},{key:"textHidden",get:function(){return!!this._textHidden},set:function(t){this._textHidden=!!t,this.invalidate()}},{key:"get",value:function(t){return this._model[t]}},{key:"set",value:function(t,e){if("string"==typeof t)return this.set(oa({},t,e));var r={},n={},o=!1,i=(t=Eo(t),this);return Object.getOwnPropertyNames(t).forEach((function(e){var a=i._model[e],s=t[e];xe(a,s)||(n[e]=a,r[e]=s,i._model[e]=s,delete i._state[e],o=!0)})),o&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("retention")&&qi.add(this),r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("mappings")&&this.onchangeMappings(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}},{key:"getState",value:function(t){return this._state.hasOwnProperty(t)?this._state[t]:this.get(t)}},{key:"setState",value:function(t,e){if("string"==typeof t)return this.setState(oa({},t,e));var r={},n={},o=!1,i=(t=Eo(t),this),a=this.getState("sensitive");return Object.getOwnPropertyNames(t).forEach((function(e){var s=i.getState(e),u=t[e];!a&&xe(s,u)||(n[e]=s,r[e]=u,i._state[e]=u,o=!0)})),o&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}},{key:"root",get:function(){return this.isRoot()?this:this.parent&&this.parent.root}},{key:"rootModel",get:function(){return this.isRootModel()?this:this.parent&&this.parent.rootModel}},{key:"parent",get:function(){return this._parent},set:function(t){this._parent=t}},{key:"anchors",get:function(){return this.nature.anchors||[]}},{key:"findAnchor",value:function(t){return this.anchors.find((function(e){return e.name===t}))}},{key:"isDescendible",value:function(t){return!0}},{key:"getContext",value:function(){return this._parent.getContext()}},{key:"center",get:function(){var t=this.bounds;return{x:t.left+t.width/2,y:t.top+t.height/2}},set:function(t){if(t&&!isNaN(t.x)&&!isNaN(t.y)){var e=this.center;if(Math.round(100*t.x)/100!=Math.round(100*e.x)/100||Math.round(100*t.y)/100!=Math.round(100*e.y)/100){var r=t.x-e.x,n=t.y-e.y;this.path=this.path.map((function(t){return{x:t.x+r,y:t.y+n}}))}}}},{key:"location",get:function(){return this.center},set:function(t){this.center=t}},{key:"rotate",get:function(){var t=this.state;return{x:t.rotationX,y:t.rotationY,z:-t.rotation}},set:function(t){var e=t.x,r=t.y,n=t.z;this.setState({rotationX:e,rotationY:r,rotation:-n})}},{key:"dimension",get:function(){var t=this.bounds;return{width:t.width,height:t.height,depth:this.state.depth}},set:function(t){var e=t.width,r=t.height,n=t.depth,o=this.bounds,i=o.top,a=o.left;this.bounds={top:i,left:a,width:e,height:r},this.setState("depth",n)}},{key:"bounds",get:function(){var t,e,r,n,o=this.path;t=e=o[0].x,r=n=o[0].y;for(var i=1;i<o.length;i++){var a=o[i];a.x<t?t=a.x:a.x>e&&(e=a.x),a.y<r?r=a.y:a.y>n&&(n=a.y)}return{left:t,top:r,width:e-t,height:n-r}},set:function(t){var e=this.bounds;if(Math.round(100*t.width)/100!=Math.round(100*e.width)/100||Math.round(100*t.height)/100!=Math.round(100*e.height)/100||Math.round(100*t.left)/100!=Math.round(100*e.left)/100||Math.round(100*t.top)/100!=Math.round(100*e.top)/100){var r=0==e.width?1:t.width/e.width,n=0==e.height?1:t.height/e.height;this.path=this.path.map((function(o){return{x:t.left+(o.x-e.left)*r,y:t.top+(o.y-e.top)*n}}))}}},{key:"path",get:function(){return Zn("이 컴포넌트에 get path 가 구현되어있지 않음.",this),[]},set:function(t){Zn("이 컴포넌트에 get path 가 구현되어있지 않음.",this)}},{key:"drawPath",get:function(){return this.path}},{key:"outline",value:function(t){return function(t,e){var r=t.path.slice();if(r&&r.length){var n=1,o=[];if(t.isLine()||r.push(r[0]),e<=0)return t.transcoordS2T(r[0].x,r[0].y);if(e>=1)return t.transcoordS2T(r[r.length-1].x,r[r.length-1].y);for(;r[n];){var i=r[n-1],a=r[n],s=a.x-i.x,u=a.y-i.y;o.push(Math.sqrt(s*s+u*u)),n++}var c=o.reduce((function(t,e){return t+e}),0);n=0;var f=0;do{f+=o[n++]}while(f/c<e);e=(e-(f-=o[--n])/c)*(c/o[n]);var l=r[n%r.length],h=r[(n+1)%r.length],p=l.x+Math.round((h.x-l.x)*e),y=l.y+Math.round((h.y-l.y)*e);return t.transcoordS2T(p,y)}Zn("path should not be empty")}(this,t||0)}},{key:"strokeStyle",get:function(){return this.get("strokeStyle")},set:function(t){this.set("strokeStyle",t)}},{key:"fillStyle",get:function(){return this.getState("fillStyle")},set:function(t){this.setState("fillStyle",t)}},{key:"fontColor",get:function(){return this.get("fontColor")},set:function(t){this.set("fontColor",String(wn(t)))}},{key:"rotation",get:function(){return this.getState("rotation")},set:function(t){this.setState("rotation",Number(wn(t)))}},{key:"contains",value:function(t,e){return!1}},{key:"mutable",get:function(){return this.nature.mutable}},{key:"resizable",get:function(){return this.nature.resizable&&!this.stuck}},{key:"adjustResize",value:function(t,e,r){if(r){var n=this.bounds,o=n.height/n.width,i=t.width-n.width,a=t.height-n.height;i*o>a?a=i*o:i=a/o;var s=t.left-n.left,u=t.top-n.top;return 0!=s&&0!=u?(u=-a,s=-i):0!=s?s=-i:0!=u&&(u=-a),{left:n.left+s,top:n.top+u,width:n.width+i,height:n.height+a}}return t}},{key:"rotatable",get:function(){return this.nature.rotatable&&!this.stuck}},{key:"adjustRotation",value:function(t,e){if(e||this.app.rotateStepForced){var r=this.app.rotateStep;return Math.floor((t+r/2)/r)*r}return t}},{key:"capturable",get:function(){return!1!==this.get("capturable")&&(this.app.isEditMode||!this.hidden)}},{key:"stuck",get:function(){return!!(this.parent&&this.parent.layout.isStuck(this)||this.get("locked"))}},{key:"findFirst",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if(t.apply(void 0,[this].concat(r)))return this}},{key:"findAll",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return"string"==typeof t?Qo(t,this,r[0]||this):"function"==typeof t&&t.apply(void 0,[this].concat(r))?[this]:void 0}},{key:"capture",value:function(t,e,r){if(!this.capturable||null!=r&&r(this))return!1;var n=this.transcoordP2S(t,e);return this.contains(n.x,n.y)?this:void 0}},{key:"prepare",value:function(t,e){t(this)}},{key:"prepareIf",value:function(t){var e=this;t&&this.prepare&&this.prepare((function(t){e.invalidate()}),(function(t){Zn(t)}))}},{key:"decotag",get:function(){var t=this.state,e=t.id,r=t.tag;return(e?"#".concat(e):"")+(r?"@".concat(r):"")}},{key:"decorators",get:function(){return["decotag","data-spread"]}},{key:"reactionDecorators",get:function(){return["bouncing-arrow"]}},{key:"hidden",get:function(){return this.getState("hidden")||!this.data&&0!==this.data&&this.getState("ndns")||this.isTemplate()},set:function(t){this.setState("hidden",t)}},{key:"draw",value:function(t){t.save(),this.__proto__.hasOwnProperty("_pre_draw")?this._pre_draw(t):this.prerender(t),this.__proto__.hasOwnProperty("_draw")?this._draw(t):this.render(t),this.__proto__.hasOwnProperty("_post_draw")?this._post_draw(t):this.postrender(t),t.restore()}},{key:"delta",value:function(t,e){if(void 0===e)return t?this._delta[t]:this._delta;this._delta[t]=e}},{key:"prerender",value:function(t){var e=this.rotatePoint,r=this.state,n=r.scale,o=r.rotation,i=r.shadow,a=r.alpha,s=(n&&n.x||1)*this._delta.sx,u=(n&&n.y||1)*this._delta.sy,c=(o||0)+this._delta.theta,f=this._delta,l=f.tx,h=void 0===l?0:l,p=f.ty,y=void 0===p?0:p,d=(a||1)-this._delta.fade;(h||y)&&t.translate(h,y),(1!=s||1!=u||c)&&(t.translate(e.x,e.y),1==s&&1==u||t.scale(s,u),c&&t.rotate(c),t.translate(-e.x,-e.y)),d&&(t.globalAlpha=d),i&&Yo(t,i,this),this.app.isEditMode&&this.hidden&&(t.globalAlpha*=.5)}},{key:"render",value:function(t){}},{key:"postrender",value:function(t){this.drawText(t)}},{key:"drawText",value:function(t){!this.textHidden&&this.text&&this.hasTextProperty&&ji(t,this.textBounds,this.textLines(t),this.state)}},{key:"drawStroke",value:function(t,e){mi(t,e?na(na({},this.state),e):this.state)}},{key:"drawFill",value:function(t,e){this.fillStyle&&"transparent"!=this.fillStyle&&(bi(t,this.bounds,this.center,e?na(na({},this.state),e):this.state,this),function(t){t.shadowColor="transparent"}(t))}},{key:"animate",value:function(t){return this._animate&&this._animate.stop(),this._animate=nn(t),this._animate}},{key:"move",value:function(t){var e=t.x,r=t.y,n=this.path,o=e,i=r;this.path=n.map((function(t){return{x:t.x+o,y:t.y+i}}))}},{key:"symmetryX",value:function(t){"number"!=typeof t&&(t=this.center.x);var e=this.state.rotation,r=this.fillStyle;if(this.set("rotation",2*Math.PI-e),r&&"gradient"===r.type&&"linear"===r.gradientType){var n=Eo(r);n.rotation=(Math.PI-parseFloat(r.rotation||0))%(2*Math.PI),this.set("fillStyle",n)}this.path=this.path.map((function(e){return{x:2*t-e.x,y:e.y}}))}},{key:"symmetryY",value:function(t){this.symmetryX(),this.set("rotation",(Math.PI+this.model.rotation)%(2*Math.PI)),t&&this.move({x:0,y:2*(t-this.center.y)},!1)}},{key:"animation",get:function(){if(this.app.isViewMode&&!this.isTemplate()){if(!this._animation){var t=this.state.animation;t&&t.oncreate&&(this._animation=(this,e=t.oncreate,(r=rn[e.type])?new r(this,e):null))}var e,r;return this._animation}}},{key:"effect",value:function(t,e){return function(t,e,r){var n=Go[r.type];n&&n(t,e,r)}(this,t,e)}},{key:"started",set:function(t){this.animation&&(this.animation.started=t)}},{key:"invalidate",value:function(){this.parent&&this.parent.invalidate()}},{key:"font",get:function(){return Pi(this.model)}},{key:"lineHeight",get:function(){return this.get("lineHeight")||1.2*this.fontSize}},{key:"defaultTextSubstitutor",value:function(){var t=this.getState("text");return null==t?"":String(t)}},{key:"textSubstitutor",get:function(){return this._text_substitutor||(this._text_substitutor=Ki(this.getState("text"),this)||this.defaultTextSubstitutor),this._text_substitutor}},{key:"text",get:function(){var t=this.get("textFormat");return t?function(t,e){if(!t||isNaN(+e))return e;var r,n,o,i,a,s,u,c,f,l=t.length,h=t.search(/[0-9\-\+#]/),p=h>0?t.substring(0,h):"",y=t.split("").reverse().join(""),d=y.search(/[0-9\-\+#]/),v=l-d,g=t.substring(v,v+1),b=v+("."===g||","===g?1:0),m=d>0?t.substring(b,l):"";if(r=(e="-"===(t=t.substring(h,b)).charAt(0)?-e:+e)<0?e=-e:0,o=(n=t.match(/[^\d\-\+#]/g))&&n[1]&&n[0]||",",t=t.split("."),e=+(e=e.toFixed(t[1]&&t[1].length))+"",a=t[1]&&t[1].lastIndexOf("0"),(!(u=e.split("."))[1]||u[1]&&u[1].length<=a)&&(e=(+e).toFixed(a+1)),c=t[0].split(o),t[0]=c.join(""),(i=t[0]&&t[0].indexOf("0"))>-1)for(;u[0].length<t[0].length-i;)u[0]="0"+u[0];else 0==+u[0]&&(u[0]="");if((e=e.split("."))[0]=u[0],s=c[1]&&c[c.length-1].length){for(y="",v=(f=e[0]).length%s,l=f.length,b=0;b<l;b++)y+=f.charAt(b),!((b-v+1)%s)&&b<l-s&&(y+=o);e[0]=y}return e[1]=t[1]&&e[1]?"."+e[1]:"","0"!==(n=e.join(""))&&""!==n||(r=!1),p+("+"==t[0].substring(0,1)?r?"-":"+":r?"-":"")+n+m}(t,this.textSubstitutor()):this.textSubstitutor()},set:function(t){delete this._text_substitutor;var e=wn(t);this.setState("text",null==e?"":String(e))}},{key:"textLines",value:function(t){return Ai(t||this.getContext(),this.textBounds.width,this.font,this.text,this.get("textWrap"))}},{key:"textBounds",get:function(){var t=this.state,e=t.paddingTop,r=t.paddingLeft,n=t.paddingRight,o=t.paddingBottom;o||(o=0),e||(e=0),r||(r=0),n||(n=0);var i=this.bounds,a=i.left,s=i.top,u=i.width,c=i.height;return{left:a+r,top:s+e,width:Math.max(u-r-n,0),height:Math.max(c-e-o,0)}}},{key:"textRotation",get:function(){return 0}},{key:"rotatePoint",get:function(){return this.center}},{key:"trim",value:function(){delete this._model[""],"chartjs"!==this._model.type&&delete this._model.chart}},{key:"value",get:function(){var t=this.nature["value-property"]||"text";return"value"==t?this.getState("value"):this[t]},set:function(t){var e=this.nature["value-property"]||"text";"value"==e?this.setState("value",t):this[e]=t}},{key:"data",get:function(){return this.getState("data")},set:function(t){this.setState("data",t),this.touch()}},{key:"mappings",get:function(){return!this._mappings&&this.parent&&this.buildMappings(),this._mappings}},{key:"serialize",value:function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return JSON.stringify.apply(JSON,[this.hierarchy].concat(e))}},{key:"controls",get:function(){}},{key:"closeScene",value:function(t){this.rootModel.closeScene(t)}}],n=[{key:"nature",get:function(){return fa}},{key:"register",value:function(t,e){if(!e)return ca[t];ca[t]=e}},{key:"residents",get:function(){return pa}},{key:"registerDecorator",value:function(t,e){!function(t,e){$i[t]=e}(t,e)}}],r&&sa(e.prototype,r),n&&sa(e,n),Object.defineProperty(e,"prototype",{writable:!1}),t}();function va(t){return va="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},va(t)}function ga(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==va(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==va(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===va(o)?o:String(o)),n)}var o}function ba(){return ba="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=wa(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ba.apply(this,arguments)}function ma(t,e){return ma=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ma(t,e)}function wa(t){return wa=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},wa(t)}da.union=function(t){var e,r,n,o;return t.forEach((function(t){void 0===e?(e=t.left,r=t.top,n=t.left+t.width,o=t.top+t.height):(e=Math.min(t.left,e),r=Math.min(t.top,r),n=Math.max(t.left+t.width,n),o=Math.max(t.top+t.height,o))})),{left:e,top:r,width:n-e,height:o-r}},da.transcoordR=Ti,da.transcoordRR=Mi,da.createCanvas=yi,da.memoize=Ao,da.mixin=Vn,da.drawText=ji,da.font=Pi,da.textLines=Ai,da.drawStroke=mi,da.drawFill=bi,da.reposition=Ci,da.RetentionManager=qi,da.template=function(t,e,r){var n=pr.imports._.templateSettings||pr;r&&De(t,e,r)&&(e=void 0),t=fr(t),e=ze({},e,n,$e);var o,i,a=ze({},e.imports,n.imports,$e),s=Kt(a),u=function(t,e){return Ke(e,(function(e){return t[e]}))}(a,s),c=0,f=e.interpolate||mr,l="__p += '",h=RegExp((e.escape||mr).source+"|"+f.source+"|"+(f===rr?br:mr).source+"|"+(e.evaluate||mr).source+"|$","g"),p=xr.call(e,"sourceURL")?"//# sourceURL="+(e.sourceURL+"").replace(/\s/g," ")+"\n":"";t.replace(h,(function(e,r,n,a,s,u){return n||(n=a),l+=t.slice(c,u).replace(wr,er),r&&(o=!0,l+="' +\n__e("+r+") +\n'"),s&&(i=!0,l+="';\n"+s+";\n__p += '"),n&&(l+="' +\n((__t = ("+n+")) == null ? '' : __t) +\n'"),c=u+e.length,e})),l+="';\n";var y=xr.call(e,"variable")&&e.variable;if(y){if(gr.test(y))throw new Error("Invalid `variable` option passed into `_.template`")}else l="with (obj) {\n"+l+"\n}\n";l=(i?l.replace(yr,""):l).replace(dr,"$1").replace(vr,"$1;"),l="function("+(y||"obj")+") {\n"+(y?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(o?", __e = _.escape":"")+(i?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+l+"return __p\n}";var d=Qe((function(){return Function(s,p+"return "+l).apply(void 0,u)}));if(d.source=l,Ve(d))throw d;return d},da.buildSubstitutor=Ki,Object.assign(da.prototype,{drawEffect:function(t){var e=this;(this.state.effects||[]).forEach((function(r){e.effect(t,r)}))},prepareFill:function(t,e){var r=this.fillStyle;if(r&&"pattern"==r.type&&r.image){if("string"!=typeof r.image)return this._pattern_image_origin=this._pattern_image=r.image,void t(this);this._pattern_image=null,this._pattern_image_origin=new Image;var n=this;this._pattern_image_origin.onload=function(){if(!r.fitPattern&&!r.width&&!r.height)return n._pattern_image=n._pattern_image_origin,void t(this);var e=r.width||this.width,o=r.height||this.height;r.fitPattern&&(e=n.bounds.width,o=n.bounds.height);var i=yi(e,o);i.getContext("2d").drawImage(this,0,0,this.width,this.height,0,0,e,o),n._pattern_image=i,t(this)},this._pattern_image_origin.onerror=function(t){e(t)};try{"data"!==String(r.image).substring(0,4)?this._pattern_image_origin.crossOrigin="use-credentials":this._pattern_image_origin.crossOrigin=null,this._pattern_image_origin.src=this.app.url(r.image)}catch(t){e(t)}}else t(this)},prepareFillIf:function(t){var e=this;t&&this.prepareFill((function(t){e.invalidate()}),(function(t){Zn(t)}))},onchangeFill:function(t,e){var r=this.fillStyle;r&&"pattern"!==r.type?this._pattern_image&&(this._pattern_image=null,this._pattern_image_origin=null):(null==r?void 0:r.image)&&this.prepareFillIf(r.image)},drawImage:function(t,e,r,n,o,i){var a=this;e.complete?t.drawImage(e,r,n,o,i):e.addEventListener("load",(function(){a.invalidate()}))},mutateBounds:function(t,e){var r=this.bounds,n=this.rotatePoint,o=this.get("rotation"),i=this.get("scale");if(t){var a=t.call(e,r);a&&(r=a)}var s=r,u=s.left,c=s.top,f=[{x:u,y:c},{x:u+s.width,y:c+s.height}],l=(f=f.map((function(t){return Mi(t.x,t.y,n,o,i)})))[0],h=f[1];n={x:(l.x+h.x)/2,y:(l.y+h.y)/2},l=(f=f.map((function(t){return Ti(t.x,t.y,n,o,i)})))[0],h=f[1],this.bounds={left:l.x,top:l.y,width:h.x-l.x,height:h.y-l.y}},mutatePath:function(t,e,r){var n=this,o=this.path,i=this.rotatePoint;this.get("rotation"),this.get("scale"),t&&(o=t.call(r,o));var a=o.map((function(t){return n.transcoordS2P(t.x,t.y)}));e&&(o=e.call(r,a))&&(a=o);var s,u,c,f,l={x:0,y:0};o=a.map((function(t){return n.transcoordP2S(t.x,t.y,l)})),s=u=o[0].x,c=f=o[0].y;for(var h=1;h<o.length;h++){var p=o[h];p.x<s?s=p.x:p.x>u&&(u=p.x),p.y<c?c=p.y:p.y>f&&(f=p.y)}i={x:(s+u)/2,y:(c+f)/2},i=this.transcoordS2P(i.x,i.y,l),this.path=a.map((function(t){return n.transcoordP2S(t.x,t.y,i)}))},access:function(t){if(t){var e=String(t),r=(e.match(/#{(\S*)}/)||[]).map((function(t){return Qi(t)}))[0];if(r)return r.accessor(this.getState(r.target));var n=(e.match(/\${[^}]*}/)||[]).map((function(t){return Qi(t)}))[0];if(n){var o=this.root.findById(n.target);return n.accessor(this.getState(o))}return t}},substitute:function(t,e){var r=this;if(t){var n=String(t),o=e||wn,i=(n.match(/#{(\S*)}/gi)||[]).map((function(t){return Qi(t)})),a=(n.match(/\${[^}]*}/gi)||[]).map((function(t){return Qi(t)}));if(0==i.length&&0==a.length)return n;var s=n;return i.forEach((function(t){var e=o(t.accessor(r.getState(t.target)));s=s.replace(t.match,void 0===e?"":e)})),a.forEach((function(t){var e=r.root.findById(t.target),n=o(t.accessor(e&&e.data));s=s.replace(t.match,void 0===n?"":n)})),s}},onchangeMappings:function(t,e){this.disposeMappings(),vi.call(this)},onchangeData:function(t,e){this.state.persistent&&this.app.isViewMode&&this.app.dataStorage.save(this,t.data),vi.call(this,[!0])},buildMappings:function(){var t=this;if(this._model.mappings)return!this._model.mappings instanceof Array?(Zn("Mappings model is invalid (should be a Array) ..",this._model.mappings),void(this._mappings=[])):void(this._mappings=(this._model.mappings||[]).map((function(e){return new di(e,t)})));this._mappings=[]},executeMappings:vi,disposeMappings:function(){this._mappings&&this._mappings.forEach((function(t){return t.dispose()})),delete this._mappings},ondropfile:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void this.set("fillStyle",{type:"pattern",image:e[r],fitPattern:!0})},transcoordS2P:function(t,e,r){if(!this.parent)return{x:t,y:e};var n=this.state,o=n.rotation,i=void 0===o?0:o,a=n.scale,s=void 0===a?{x:1,y:1}:a;if(this.isLayer()){var u=this.state.translate,c=Mi(t,e,void 0,i+this._delta.theta,s);return u&&(c.x+=u.x,c.y+=u.y),c}r=r||this.rotatePoint;var f=this._delta||{},l=f.theta,h=void 0===l?0:l,p=f.tx,y=void 0===p?0:p,d=f.ty,v=void 0===d?0:d,g=f.sx,b=void 0===g?1:g,m=f.sy,w=void 0===m?1:m,x=Mi(t+y,e+v,r={x:r.x+y,y:r.y+v},i+h,s={x:s.x*b,y:s.y*w});return{x:x.x-(r.x*s.x-r.x),y:x.y-(r.y*s.y-r.y)}},transcoordP2S:function(t,e,r){if(!this.parent)return{x:t,y:e};var n=this.state,o=n.rotation,i=void 0===o?0:o,a=n.scale,s=void 0===a?{x:1,y:1}:a;if(this.isLayer()){var u=this.state.translate,c=Ti(t,e,u,i,s);return u&&(c.x-=u.x/(s?s.x:1),c.y-=u.y/(s?s.y:1)),c}var f=Ti(t,e,r=r||this.rotatePoint,i,s);return{x:f.x+(r.x-r.x/s.x),y:f.y+(r.y-r.y/s.y)}},transcoordS2T:function(t,e,r){r=r||this.rootModel;for(var n=[],o=this.parent;o&&o!==r;o=o.parent)n.push(o);var i=this.transcoordS2P(t,e);return n.forEach((function(t){var e=t.model.scale,r=t.bounds;if(e){var n=t.rotatePoint;i.x+=(n.x-r.left)*e.x,i.y+=(n.y-r.top)*e.y}else i.x+=r.left,i.y+=r.top;i=t.transcoordS2P(i.x,i.y)})),i},transcoordT2P:function(t,e,r){r=r||this.rootModel;for(var n=[],o=this.parent;o&&o!==r;o=o.parent)n.splice(0,0,o);var i={x:t,y:e};return n.forEach((function(t){var e=t.model.scale;i=t.transcoordP2S(i.x,i.y);var r=t.bounds;if(e){var n=t.rotatePoint;i.x-=(n.x-r.left)/e.x,i.y-=(n.y-r.top)/e.y}else i.x-=r.left,i.y-=r.top})),i},transcoordT2S:function(t,e,r){var n=this.transcoordT2P(t,e,r);return this.transcoordP2S(n.x,n.y)},transcoordS2TR:function(t,e,r){r=r||this.rootModel;var n=this.transcoordS2T(t,e,r);return Mi(n.x,n.y,void 0,(r.get("rotation")||0)+r._delta.theta)},transcoordS2O:function(t,e,r){var n=this.rootModel,o=this.transcoordS2T(t,e,n);return r.transcoordT2S(o.x,o.y,n)},transcoordC2S:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;var n=r.model,o=n.translate,i=void 0===o?{x:0,y:0}:o,a=n.scale,s=void 0===a?{x:1,y:1}:a,u=n.rotation,c=Ti(t,e,i,void 0===u?0:u,s);return i&&(c.x-=i.x/(s?s.x:1),c.y-=i.y/(s?s.y:1)),r===this?c:this.transcoordT2S(c.x,c.y,r)},transcoordS2C:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;if(r!==this)var n=this.transcoordS2T(t,e,r);else n={x:t,y:e};var o=r.model,i=o.translate,a=void 0===i?{x:0,y:0}:i,s=o.rotation,u=void 0===s?0:s,c=o.scale,f=void 0===c?{x:1,y:1}:c;return n=Mi(n.x,n.y,void 0,u+r._delta.theta,f),a&&(n.x+=a.x,n.y+=a.y),n},_pre_draw:da.prototype.prerender,_draw:da.prototype.render,_post_draw:da.prototype.postrender}),["rotatePoint","font","lineHeight","retention"].forEach((function(t){return da.memoize(da.prototype,t,!1)})),["bounds","center","textBounds"].forEach((function(t){return da.memoize(da.prototype,t,!0)})),da.mixin(da.prototype,qn.withEvent);var xa=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ma(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=wa(n);if(o){var r=wa(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===va(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"rotationX",get:function(){return this.getState("rotationX")},set:function(t){this.setState("rotationX",t)}},{key:"rotationY",get:function(){return this.getState("rotationY")},set:function(t){this.setState("rotationY",t)}},{key:"rotationZ",get:function(){return this.getState("rotation")},set:function(t){this.setState("rotation",t)}},{key:"zPos",get:function(){return this.getState("zPos")},set:function(t){this.setState("zPos",t)}},{key:"depth",get:function(){return this.getState("depth")},set:function(t){this.setState("depth",t)}},{key:"postrender",value:function(t){this.drawFill(t),this.drawStroke(t),ba(wa(a.prototype),"postrender",this).call(this,t)}},{key:"render",value:function(t){var e=this.drawPath,r=this.state.round,n=void 0===r?0:r;if(!(e.length<=1)){t.beginPath();for(var o=0;o<e.length;o++){var i=e[(o-1+e.length)%e.length],a=e[(o+e.length)%e.length],s=e[(o+1)%e.length];if(i.x!==a.x||i.y!==a.y){var u,c=0!==(u=Math.sqrt((i.x-a.x)*(i.x-a.x)+(i.y-a.y)*(i.y-a.y)))?Math.atan2(i.x-a.x,i.y-a.y):0,f=Math.sin(c)*Math.min(n,u/2)+a.x,l=Math.cos(c)*Math.min(n,u/2)+a.y,h=n>0||0!==u?{x:f,y:l}:a;c=0!==(u=Math.sqrt((s.x-a.x)*(s.x-a.x)+(s.y-a.y)*(s.y-a.y)))?Math.atan2(s.x-a.x,s.y-a.y):0,f=Math.sin(c)*Math.min(n,u/2)+a.x,l=Math.cos(c)*Math.min(n,u/2)+a.y;var p=n>0||0!==u?{x:f,y:l}:a;0==o?t.moveTo(h.x,h.y):t.lineTo(h.x,h.y),n>0&&t.quadraticCurveTo(a.x,a.y,p.x,p.y)}}t.closePath()}}}],r&&ga(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(da);function ka(t){return ka="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ka(t)}function Sa(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==ka(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==ka(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===ka(o)?o:String(o)),n)}var o}function _a(t,e){return _a=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},_a(t,e)}function Oa(t){return Oa=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Oa(t)}const Ea=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&_a(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Oa(n);if(o){var r=Oa(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===ka(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"contains",value:function(t,e){var r=this.state,n=r.left,o=r.top,i=r.width,a=r.height,s=r.lineWidth,u=(void 0===s?0:s)/2;return t<Math.max(n+i,n)+u&&t>Math.min(n+i,n)-u&&e<Math.max(o+a,o)+u&&e>Math.min(o+a,o)-u}},{key:"path",get:function(){var t=this.state,e=t.left,r=void 0===e?0:e,n=t.top,o=void 0===n?0:n,i=t.width,a=void 0===i?0:i,s=t.height,u=void 0===s?0:s;return[{x:r,y:o},{x:r+a,y:o},{x:r+a,y:o+u},{x:r,y:o+u}]},set:function(t){var e=t[0],r=t[2];this.set({left:e.x,top:e.y,width:r.x-e.x,height:r.y-e.y})}},{key:"anchors",get:function(){return function(t){var e=t.bounds,r=e.left,n=e.top,o=e.width,i=e.height,a=r+o/2,s=n+i/2;return[{name:"TOP",position:{x:a,y:n}},{name:"RIGHT",position:{x:r+o,y:s}},{name:"BOTTOM",position:{x:a,y:n+i}},{name:"LEFT",position:{x:r,y:s}}]}(this)}}])&&Sa(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return Ao(e.prototype,"path",!1),e};function Aa(t){return Aa="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Aa(t)}function Pa(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Aa(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Aa(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Aa(o)?o:String(o)),n)}var o}function ja(){return ja="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Ma(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ja.apply(this,arguments)}function Ta(t,e){return Ta=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ta(t,e)}function Ma(t){return Ma=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ma(t)}var Ra={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"textarea",label:"front-side-template",name:"frontSideTemplate",property:{language:"html"}},{type:"textarea",label:"back-side-template",name:"backSideTemplate",property:{language:"html"}},{type:"textarea",label:"style",name:"style",property:{language:"css"}}],help:"scene/component/info-window"},Ia=20;function Ca(t,e){var r=t.split(/\s+/),n=r.indexOf(e);return-1!=n?r.splice(n,1):r.splice(-1,0,e),r.join(" ")}var La=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ta(t,e)}(s,t);var e,r,n,o,i,a=(o=s,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ma(o);if(i){var r=Ma(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Aa(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),a.apply(this,arguments)}return e=s,n=[{key:"image",get:function(){return s._image||(s._image=new Image,s._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAY1BMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIAbxiAAAAIHRSTlMA+gPshCwwWFzYCeLRm7QRG6rLeDZI9JOJJDtjb1HAf1sAT80AAAQQSURBVHhe7MCBAAAAAMKw/KkzOMG2BAAAAKeu3lUohIEggO7jQi5qHqpgwML5/6+0F0y02z31FlvMMLKt86QMQ1ined2Evih1hFFjLfRWjgzDOGZ6JSiM00B9EuHALtQxJLiQBmqSBCeSUEuEGzs1BDjSaHxWOKK5Eyz/4SoMV/hp4+vtcPkdwZD/udwevNg7t1xXYRiKmkB7C+ENlPLq8fxHeX+RGjWQ1D45ldcIulBIvCvYJGBEadyTzxAcfY57NBjpLScOO/bzugcTHe7IMwiSLMcdHZhocMcMgTLjjgZM7F1bCJZ2v27ARGzYDwIk2Z+JYGJ/iiwQLMv+JAEThjkmRG64Q0Q+gIiIiIiIiIiIyFy0KRFt0bOJZAWSUigmkQaJaXhENiRnYBEpkZySRSRGcmIWEaQnYhHRSI5mESmQnIJFZIqQmGhiEYEbEnPjGlEGjYTogW/WUkOXENENSqZfEXmDiIiIiIiIiIiIiIiIiIiImq5ETIpRpBpjJCMeKy6Ri0ZS9MQjkmkkJs1YRDokp2MRyZGclkUkQnIiEQltaX3Lzb6yiGTpl2y/avqSAxGgelCOKI+Kc2isL0TUSsZ4EREREREREREREREREREREfnIQzXrNWSRTeNxnlOwIgueIr6AAyE+CpiqMEUK71IDO4E+LluEKYKnKcMUifEsTZgiJZ5lDVNkwJPcqzBFoPF/HplfxL/w6b4EPGv1h18Weya1TL8iIiIeiIiIiIiIiEjkPefxV+5YA9PPHylB+u5aqgZ39H+jKOxrqtu+pkzvr9YbzoZ6w2OFkzcrA3yE4WZlSSyFk54VoA/wR43+FaD+r9w32QdWvgvjp2ty2xq8qHPHmtyPFxfrK3hw1ejERlAlfR/Ame2OTow05d4rOLLSlHtDVhI0uRO01JeZ405op6zgNNXT+bIRfpIgn+AkU4pOxBscohojdCHu4RRzjC5EYwVHqRONDkSnEvK/CB3QSU32IRW3ZPnj9iEVoGCNTLVrh8ia1x+6wq8xvB5mz8pxu7oPwIn9lcR0AiuX1+1KX+BXqdvXzWsAC0NsGjzZsS/2Bd6yRA5RgIHkXNhSD3whASZ8rrB9mItuEAizac0fDlHxDMEwpQfD1tW4y3Hjfy5s9nOHH3uwWA+EqEJBWCjoTL/S5toBB/7hu6zer74NgqSP39zJU+qQX3ix763mHTqvIVRUVprCljlElRkEjBqNYevH8veBJ2xhiyhE8YctmhDFH7ZoQhR/2KIJUfxhiyRE8YctmhDFH7ZoQhR/2OIJUfxhC9Ppf/t1jgJACERRsHGyYRZB0Ujvf0xD8w6kP7y6RZmgf/oTFTtbbzJVxZWo2Nlqw6TVy5GowNl6ssm7v50obamfSxQAAAAAAAsKLM15fb3vpQAAAABJRU5ErkJggg=="),s._image}},{key:"toggle",value:function(t,e,r,n){if(e){var o=t.root.findById(e);o?o._findInfoWindowByComponent(t)?s.hide(t,e):s.show(t,e,r,n):console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}},{key:"hide",value:function(t,e){if(e){var r=t.root.findById(e);r?r._removeInfoWindow(t):console.warn("InfoWindow Not Found.",e)}}},{key:"show",value:function(t,e,r,n){if(e){var o=t.root.findById(e);if(o){if(!o._findInfoWindowByComponent(t)){var i=o.model,a=i.frontSideTemplate,u=void 0===a?"":a,c=i.backSideTemplate,f=[u,void 0===c?"":c].filter((function(t){return String(t).trim()}));if(0!=(f=f.map((function(t){return da.template(function(t,e,r){return(e||r?['<div class="info-window-btns">',e?'<button class="closable">X</button>':"",r?'<button class="flipable">⇌</button>':"","</div>"]:[]).concat(['<div class="info-window-content">',t,"</div>"]).join("")}(t,!r,2==f.length))}))).length){var l='\n.flip {\n backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n -ms-backface-visibility: hidden;\n -o-backface-visibility: hidden;\n -webkit-backface-visibility: hidden;\n border-radius: 7px;\n height: auto;\n font: normal 14px helvetica, arial, san serif;\n position: absolute;\n opacity:.9;\n transform-origin: 50% 50% 0px;\n -moz-transform-origin: 50% 50% 0px;\n -ms-transform-origin: 50% 50% 0px;\n -o-transform-origin: 50% 50% 0px;\n -webkit-transform-origin: 50% 50% 0px;\n transition: all 2s;\n -moz-transition: all 2s;\n -ms-transition: all 2s;\n -o-transition: all 2s;\n -webkit-transition: all 2s;\n min-width: 100px;min-height:50px;\n background-color:#3e424e;\n box-shadow: 2px 3px 2px 0px rgba(0,0,0,0.15);\n}\n\n#side-1 {\n transform: rotateY( 0deg );\n -moz-transform: rotateY( 0deg );\n -ms-transform: rotateY( 0deg );\n -o-transform: rotateY( 0deg );\n -webkit-transform: rotateY( 0deg );\n}\n.flip:after{\n content:"";\n display:block;\n position: absolute;\n opacity:.9;\n width: 0;\n height: 0;\n}\n.flip.arrow-top:after{\n left:45%;\n top:-17px;\n border-left:10px solid transparent;\n border-bottom:18px solid #323b44;\n border-right:10px solid transparent;\n}\n.flip.arrow-right:after{\n left:100%;\n top:48%;\n border-top:10px solid transparent;\n border-left:18px solid #323b44;\n border-bottom:10px solid transparent;\n}\n.flip.arrow-bottom:after{\n left:45%;\n top:100%;\n border-left:10px solid transparent;\n border-top:18px solid #323b44;\n border-right:10px solid transparent;\n}\n.flip.arrow-left:after{\n right:100%;\n top:48%;\n border-top:10px solid transparent;\n border-right:18px solid #323b44;\n border-bottom:10px solid transparent;\n}\n\n#side-2 {\n transform: rotateY( 180deg );\n -moz-transform: rotateY( 180deg );\n -ms-transform: rotateY( 180deg );\n -o-transform: rotateY( 180deg );\n -webkit-transform: rotateY( 180deg );\n}\n\n.flip-side-1 {\n transform: rotateY( 0deg ) !important;\n -moz-transform: rotateY( 0deg ) !important;\n -ms-transform: rotateY( 0deg ) !important;\n -o-transform: rotateY( 0deg ) !important;\n -webkit-transform: rotateY( 0deg ) !important;\n}\n\n.flip-side-2 {\n transform: rotateY( 180deg ) !important;\n -moz-transform: rotateY( 180deg ) !important;\n -ms-transform: rotateY( 180deg ) !important;\n -o-transform: rotateY( 180deg ) !important;\n -webkit-transform: rotateY( 180deg ) !important;\n}\n\n.info-window-btns{\n position:absolute;\n top:-18px;\n right:5px;\n overflow:hidden;\n}\n.info-window-content{\n padding:10px;\n color:#efefef;\n font-size:13px;\n line-height:1.4;\n}\n.info-window-btns button{\n width:40px;height:40px;\n float:right;\n border:0;\n border-radius:50%;\n background-color:#2a7da1;\n margin-right:3px;\n text-align:center;\n cursor:pointer;\n font-size:35px;\n color:#fff;\n line-height:0;\n}\n.info-window-btns button:hover{\n background-color:#60bb23;\n}\n'+o.get("style"),h=t.bounds,p=h.left,y=h.top,d=n?t.rootModel.transcoordC2S(n.x,n.y):t.transcoordS2T(p,y);p=d.x,y=d.y;var v=document.createElement("span");v.style.position="absolute";var g=document.createElement("style");if(g.type="text/css",g.appendChild(document.createTextNode(l)),v.appendChild(g),f[0]){var b=document.createElement("div");b.id="side-1",b.className="flip",b.style.display="inline-block",b.innerHTML=f[0](t)}if(f[1]){var m=document.createElement("div");m.id="side-2",m.className="flip",m.style.display="inline-block",m.innerHTML=f[1](t)}No.forEach((function(t){v.addEventListener(t,(function(t){t.stopPropagation()}))})),Fo.forEach((function(t){v.addEventListener(t,(function(t){t.stopPropagation()}))}));var w=t.root.model_layer.overlay;if(b&&v.appendChild(b),m&&v.appendChild(m),w.appendChild(v),o._addInfoWindow(t,v,g),b){var x=b.querySelector(".info-window-btns > .flipable");x&&x.addEventListener("click",(function(t){t.preventDefault(),m.className=Ca(m.className,"flip-side-1"),b.className=Ca(b.className,"flip-side-2")}),!1);var k=b.querySelector(".info-window-btns > .closable");k&&k.addEventListener("click",(function(r){r.preventDefault(),s.hide(t,e)}),!1)}if(m){var S=m.querySelector(".info-window-btns > .flipable");S&&S.addEventListener("click",(function(t){t.preventDefault(),m.className=Ca(m.className,"flip-side-1"),b.className=Ca(b.className,"flip-side-2")}),!1);var _=m.querySelector(".info-window-btns > .closable");_&&_.addEventListener("click",(function(r){r.preventDefault(),s.hide(t,e)}),!1)}var O=b.offsetWidth,E=b.offsetHeight,A=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight,t.rootModel.target.getBoundingClientRect()),P=[];b&&P.push(b),m&&P.push(m);var j={x:p,y},T=t.transcoordS2C(j.x,j.y);if(T.x+O/2+A.left<A.right&&T.x-O/2>A.left){if(E+Ia<T.y)return v.style.marginLeft=j.x-O/2+"px",v.style.marginTop=j.y-E-Ia+"px",void P.forEach((function(t){return t.className+=" arrow-bottom"}));if(T=t.transcoordS2C(j.x,j.y+E+Ia),A.bottom>T.y+A.top)return v.style.marginLeft=j.x-O/2+"px",v.style.marginTop=j.y+Ia+"px",void P.forEach((function(t){return t.className+=" arrow-top"}))}if((T=t.transcoordS2C(j.x,j.y)).x-(O+Ia)>A.left)return v.style.marginLeft=j.x-O-Ia+"px",v.style.marginTop=j.y-E/2+"px",void P.forEach((function(t){return t.className+=" arrow-right"}));v.style.marginLeft=j.x+Ia+"px",v.style.marginTop=j.y-E/2+"px",P.forEach((function(t){return t.className+=" arrow-left"}))}}}else console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}}],(r=[{key:"dispose",value:function(){var t=this;this.infoWindows.map((function(t){return t.component})).forEach((function(e){return t._removeInfoWindow(e)})),ja(Ma(s.prototype),"dispose",this).call(this)}},{key:"infoWindows",get:function(){return this._windows||(this._windows=[]),this._windows}},{key:"_findInfoWindowByComponent",value:function(t){return this.infoWindows.find((function(e){return e.component===t}))}},{key:"_addInfoWindow",value:function(t,e,r){this._findInfoWindowByComponent(t)||this._windows.push({component:t,window:e,styleElement:r})}},{key:"_removeInfoWindow",value:function(t){var e=this._findInfoWindowByComponent(t);if(e){var r=e.window;r&&r.parentNode.removeChild(r);var n=this.infoWindows.lastIndexOf(e);this.infoWindows.splice(n,1)}}},{key:"render",value:function(t){var e=this.bounds,r=e.left,n=e.top,o=e.width,i=e.height;t.beginPath(),this.drawImage(t,s.image,r,n,o,i)}},{key:"hasTextProperty",get:function(){return!1}},{key:"nature",get:function(){return Ra}}])&&Pa(e.prototype,r),n&&Pa(e,n),Object.defineProperty(e,"prototype",{writable:!1}),s}(Ea(xa));function Da(t){return Da="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Da(t)}function Ba(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Na(t,e,r){return(e=function(t){var e=function(t,e){if("object"!==Da(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Da(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===Da(e)?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}da.register("info-window",La);var Fa={};const za={list:function(){return function(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ba(Object(r),!0).forEach((function(e){Na(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ba(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}({},Fa)},register:function(t,e){Fa[t]=e},unregister:function(t){delete Fa[t]},get:function(t){if(t){var e=Fa[t];return e||Zn("Layout Not Found - ",t),e}}};var Ua={reflow:function(t,e){this.drawables(t).filter((function(t){return t.isHTMLElement()})).forEach((function(t){return t.reposition()}))},capturables:function(t){return t.components},drawables:function(t){return t.app&&!t.app.isViewMode?t.components:t.components.filter((function(t){return!t.hidden}))},isStuck:function(t){return!1},ABSOLUTE:!0};za.register("html-absolute",Ua);const Ya=Ua;function Ga(t){return Ga="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ga(t)}function Ha(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ga(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ga(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ga(o)?o:String(o)),n)}var o}function Wa(t,e){if(t){if("string"==typeof t)return Xa(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Xa(t,e):void 0}}function Xa(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var qa="center",Va=new WeakMap;function Qa(t){var e=t.root,r=Va.get(e);if(r)if(e!==t){var n=r.findIndex((function(e){return e[0]===t}));if(-1!==n){var o=r[n][1],i=o.div.parentNode;i&&i.removeChild(o.div);var a=o.scene;a.target=null,a.release&&a.release(),r.splice(n,1)}}else{for(var s in r)Qa(s[0]);Va.delete(e)}}var Ka=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,r;return e=t,r=[{key:"hideAll",value:function(t){(Va.get(t)||[]).forEach((function(t){var e,r,n=(r=2,function(t){if(Array.isArray(t))return t}(e=t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,r)||Wa(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),o=n[0];return n[1],Qa(o)}))}},{key:"hide",value:function(t){Qa(t)}},{key:"show",value:function(e,r){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=n.data,i=n.location,a=void 0===i?qa:i,s=n.modal,u=void 0!==s&&s,c=n.closable,f=void 0===c||c,l=n.output,h=void 0===l||l,p=e.app.refProvider;p&&p.get(r,!0).then((function(r){var n,i=document.createElement("div"),s=i.style;if(u){var c=e.rootModel.bounds,l=c.width,p=c.height;s.position="fixed",s.zIndex=1,s.left=0,s.top=0,s.width=l+"px",s.height=p+"px",s.overflow="auto",s.backgroundColor="rgba(0,0,0,0.3)"}else s.position="absolute",s.display="inline-block";i.innerHTML=!u&&f?'\n<div class="popup-content">\n</div>\n<button class="closable-1945">X</button>\n':'\n<div class="popup-content">\n</div>\n';var y=i.querySelector(".popup-content"),d=r.root.model;l=d.width,p=d.height,y.style.width=l+"px",y.style.height=p+"px";var v=document.createElement("style");v.type="text/css",v.appendChild(document.createTextNode("\nbutton.closable-1945 {\n width: 20px;\n height: 20px;\n right: 0px;\n top: 0px;\n padding: 0;\n margin: 0;\n border: 0px;\n text-align: center;\n cursor: pointer;\n font-size: 12px;\n color: black;\n position: absolute;\n background-color: transparent;\n}\n\nbutton.closable-1945:hover {\n background-color:#60bb23;\n}\n")),i.appendChild(v);var g=i.querySelector(".popup-content");No.forEach((function(t){g.addEventListener(t,(function(t){t.stopPropagation()}))})),Fo.forEach((function(t){g.addEventListener(t,(function(t){t.stopPropagation()}))})),i.addEventListener("click",(function(r){r.target===i&&f&&t.hide(e)})),No.forEach((function(t){i.addEventListener(t,(function(t){t.stopPropagation()}))})),Fo.forEach((function(t){i.addEventListener(t,(function(t){t.stopPropagation()}))})),e.root.model_layer.overlay.appendChild(i),function(t,e,r){var n,o=t.root;if(o!==t){Qa(t);var i=Va.get(o)||[];i=[].concat(function(t){if(Array.isArray(t))return Xa(t)}(n=i)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(n)||Wa(n)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[[t,{div:e,scene:r}]]),Va.set(o,i)}}(e,i,r),null===(n=i.querySelector(".closable-1945"))||void 0===n||n.addEventListener("click",(function(r){r.preventDefault(),t.hide(e)}),!1),i.addEventListener("close-scene",(function(r){r.preventDefault(),r.stopPropagation(),t.hide(e),h&&(e.data=r.detail)}),!1),r.target=y,r.data=o||e.data,r.fit("both");var b=function(t,e,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:qa,o=t.bounds,i=e.bounds,a=Math.max(o.width/4-i.width/2,20),s=Math.min(3*o.width/4+i.width/2,o.width-20)-i.width,u=Math.max(o.height/4-i.height/2,20),c=Math.min(3*o.height/4+i.height/2,o.height-20)-i.height;switch(n){case"auto":return{x:r.x<o.width/2?s:a,y:r.y<o.height/2?c:u};case"left-top":return{x:a,y:u};case"right-top":return{x:s,y:u};case"left-bottom":return{x:a,y:c};case"right-bottom":return{x:s,y:c};default:return{x:(o.width-i.width)/2,y:(o.height-i.height)/2}}}(e.rootModel,r.root,e.center,a);u?(y.style.left=b.x+"px",y.style.top=b.y+"px",y.style.width=l+"px",y.style.height=p+"px"):(i.style.left=b.x+"px",i.style.top=b.y+"px",i.style.width=l+"px",i.style.height=p+"px")}),(function(t){console.error("cannot fetch board: "+r,t)}))}}],null&&Ha(e.prototype,null),r&&Ha(e,r),Object.defineProperty(e,"prototype",{writable:!1}),t}(),Ja={reflow:function(t,e){},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!1},ABSOLUTE:!0};za.register("absolute",Ja);const Za=Ja;function $a(t){var e=t.components.filter((function(t){return!t.hidden})),r=t.getState("layoutConfig")||{},n=e[r&&r.activeIndex||0];return n&&[n]||[]}var ts={reflow:function(t){var e=t.bounds,r=t.getState("layoutConfig")||{},n={left:0,top:0,width:e.width,height:e.height};t.forEach((function(t,e){var o=e!=r.activeIndex;t.bounds=n,t.setState("rotation",0),t.element&&(t.element.style.visibility=o?"hidden":"visible")}))},capturables:function(t){return $a(t)},drawables:function(t){return $a(t)},isStuck:function(t){return!0}};za.register("card",ts);const es=ts;function rs(t){var e=t.getState("layoutConfig");return e&&e.weight||1}var ns={reflow:function(t){var e=this.drawables(t),r=t.get("padding")||{},n=e.reduce((function(t,e){return t+rs(e)}),0),o=t.bounds,i=n>0?(o.width-((r.left||0)+(r.right||0)))/n:o.width,a=o.height-((r.top||0)+(r.bottom||0)),s=0;e.forEach((function(t){var e=rs(t),n=t.get("margin")||{};t.bounds={left:i*s+(r.left||0)+(n.left||0),top:0+(r.top||0)+(n.top||0),width:e*i-((n.left||0)+(n.right||0)),height:a-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),s+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!0}};za.register("linear-horizontal",ns);const os=ns;function is(t){var e=t.getState("layoutConfig");return e&&e.weight||1}var as={reflow:function(t){var e=this.drawables(t),r=t.getState("padding")||{},n=e.reduce((function(t,e){return t+is(e)}),0),o=t.bounds,i=n>0?(o.height-((r.top||0)+(r.bottom||0)))/n:o.height,a=o.width-((r.left||0)+(r.right||0)),s=0;e.forEach((function(t){var e=is(t),n=t.getState("margin")||{};t.bounds={left:0+(r.left||0)+(n.left||0),top:i*s+(r.top||0)+(n.top||0),width:a-((n.left||0)+(n.right||0)),height:e*i-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),s+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!0}};za.register("linear-vertical",as);const ss=as;var us={reflow:function(t){var e=t.getState("layoutConfig"),r=e&&e.columns||t.getState("columns"),n=e&&e.rows||t.getState("rows"),o=e&&e.widths||t.getState("widths"),i=e&&e.heights||t.getState("heights"),a=o?o.filter((function(t,e){return e<r})).reduce((function(t,e){return t+e}),0):r,s=i?i.filter((function(t,e){return e<n})).reduce((function(t,e){return t+e}),0):n,u=t.textBounds,c=t.getState("paddingLeft")||0,f=t.getState("paddingTop")||0,l=u.width/a,h=u.height/s,p=0,y=0;t.components.forEach((function(t,e){for(var n=o?o[e%r]:1,a=i?i[Math.floor(e/r)]:1,s=t.colspan||1,u=0;--s>0;)u+=o?o[(e+s)%r]:1;for(var d=t.rowspan||1,v=0;--d>0;)v+=i?i[Math.floor(e/r)+d]:1;t.bounds={left:c+p,top:f+y,width:l*(n+u),height:h*(a+v)},t.setState("rotation",0),e%r==r-1?(p=0,y+=a*h):p+=n*l}))},capturables:function(t){return t.components.filter((function(t){return!t.merged}))},drawables:function(t){return t.components.filter((function(t){return!t.merged&&!t.hidden}))},isStuck:function(t){return!0},keyNavigate:function(t,e,r){var n=t.getState("layoutConfig"),o=n&&n.columns||t.getState("columns"),i=n&&n.rows||t.getState("rows"),a=t.getRowColumn(e),s=a.row,u=a.column;switch(r.code){case"ArrowUp":if(s>0)return t.getAt((s-1)*o+u);break;case"ArrowDown":if(s<i-1)return t.getAt((s+1)*o+u);break;case"ArrowRight":if(u<o-1)return t.getAt(s*o+u+1);break;case"ArrowLeft":if(u>0)return t.getAt(s*o+u-1);break;default:return e}},joinType:!0};za.register("table",us);const cs=us;function fs(t){return fs="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},fs(t)}function ls(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==fs(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==fs(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===fs(o)?o:String(o)),n)}var o}function hs(){return hs="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=ys(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},hs.apply(this,arguments)}function ps(t,e){return ps=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ps(t,e)}function ys(t){return ys=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ys(t)}var ds=new Image;ds.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAclBMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC0BbqFAAAAJXRSTlMAgAP3VSI6/g9fBk5FavJsMrariSjzPnO1enRRL5SMhmOOWB9keFTE0wAAANxJREFUOMutk9kWgyAMRLFuiLjUtdp9yf//YglVsQXz1HniMPcEMgHGvpX2O0Ypi+EgCL+IAShC+wB7QfubRDT7AFcnUPoLMLiP4PyJbsb55i05AgnR5iaQDsICgtH0cotBWoAP1c7kC6kFxEseCfZfB6gEgbNeBrira2QmH1uVYCXlA3is8UmgUCPIyQJKEmu8QtQJN0e9DPXVpzG2G216c1CqRmcBOdxXk07sWUSPv07zo0amCNQycv+NzmR6cRcwmfbuI7p2nZ/z4be0P83Foz6vIkhfZXr82XgDlZsspIq4peUAAAAASUVORK5CYII=";const vs=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ps(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=ys(n);if(o){var r=ys(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===fs(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"postrender",value:function(t){hs(ys(a.prototype),"postrender",this).call(this,t),this.app.isEditMode&&this._focused&&this.showMoveHandle&&this._draw_move_handle(t)}},{key:"_draw_move_handle",value:function(t){var e=this.bounds,r=e.left,n=e.top,o=e.width;t.save(),t.beginPath(),t.rect(r+o,n,25,25),t.fillStyle="rgba(".concat(235,", ").concat(235,", ").concat(235,", 1)"),t.fill(),t.drawImage(ds,r+o+3.75,n+3.75,17.5,17.5),t.closePath(),t.restore()}},{key:"contains",value:function(t,e){var r=hs(ys(a.prototype),"contains",this).call(this,t,e);if(this.app.isViewMode)return r;if(!r){var n=this.bounds,o=n.left,i=n.top,s=n.width,u=(n.height,o+s);this.showMoveHandle&&(r=t<Math.max(u+25,u)&&t>Math.min(u+25,u)&&e<Math.max(i+25,i)&&e>Math.min(i+25,i))}return this._focustd!==r&&(this._focused=r,this.invalidate()),r}}])&&ls(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return e};function gs(t){return gs="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},gs(t)}function bs(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==gs(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==gs(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===gs(o)?o:String(o)),n)}var o}function ms(){return ms="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=xs(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ms.apply(this,arguments)}function ws(t,e){return ws=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ws(t,e)}function xs(t){return xs=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},xs(t)}var ks=[],Ss=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ws(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=xs(n);if(o){var r=xs(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===gs(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=i.call(this,t,e))._components=[],r}return e=a,r=[{key:"replaceRefids",value:function(t){this.components.forEach((function(e){return e.replaceRefids(t)}))}},{key:"showMoveHandle",get:function(){return!0}},{key:"showOverflow",get:function(){return!1}},{key:"dispose",value:function(){this.components.slice().forEach((function(t){return t.dispose()})),ms(xs(a.prototype),"dispose",this).call(this)}},{key:"isContainer",value:function(){return!0}},{key:"containable",value:function(t){return t.isDescendible(this)}},{key:"hasTextProperty",get:function(){return!1}},{key:"components",get:function(){return this._components}},{key:"focusible",get:function(){return!0}},{key:"layout",get:function(){return za.get(this.get("layout"))||Za}},{key:"reflow",value:function(){this.layout.reflow(this),this.components&&this.components.forEach((function(t){t.isContainer()&&t.reflow()}))}},{key:"hierarchy",get:function(){var t=ms(xs(a.prototype),"hierarchy",this);return this.components&&(t.components=this.components.map((function(t){return t.hierarchy}))),t}},{key:"addComponent",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=t.parent;if(r){if(this===r)return;r.removeComponent(t,e)}var n=this._components.push(t)-1;t.parent=this,t.added(this),e||this.trigger("add",this,t,n),t.delegate_on(this),e||t.trigger("added",this,t,n),this.root&&this.root.isReady&&t.ready()}},{key:"removeComponent",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=this._components.indexOf(t);-1!=r&&(this._components.splice(r,1),t.parent=null,t.removed(this),e||(this.trigger("remove",this,t),t.trigger("removed",this,t)),t.delegate_off(this))}},{key:"insertComponentAt",value:function(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=t.parent;n&&n.removeComponent(t,r);var o=this._components.splice(0,e);this._components=o.concat(t,this._components),e=this._components.indexOf(t),t.parent=this,t.added(this),r||this.trigger("add",this,t,e),t.delegate_on(this),r||t.trigger("added",this,t,e)}},{key:"add",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t instanceof Array?(t.forEach((function(t){-1==e._components.indexOf(t)&&e.addComponent(t,r)})),this):this.add.call(this,[t],r)}},{key:"remove",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t instanceof Array?this._components?(t.forEach((function(t){e.removeComponent(t,r)})),this):this:this.remove.call(this,[t],r)}},{key:"getAt",value:function(t){if(this._components)return this._components[t]}},{key:"forEach",value:function(t,e){this._components&&this._components.forEach(t,e)}},{key:"traverse",value:function(t,e){t.call(e,this),this._components&&this._components.forEach((function(r){r.isContainer()?r.traverse(t,e):t.call(e,r)}))}},{key:"indexOf",value:function(t){return(this._components||ks).indexOf(t)}},{key:"size",value:function(){return(this._components||ks).length}},{key:"moveChildAt",value:function(t,e){var r=this.indexOf(e);if(-1!=r){var n=this._components.splice(0,r),o=this._components.splice(1);this._components=n.concat(o),t=Math.max(0,t),t=Math.min(t,this._components.length),n=this._components.splice(0,t),this._components=n.concat(e,this._components)}}},{key:"moveChildForward",value:function(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this._components[e]=this._components[e+1],this._components[e+1]=t)}},{key:"moveChildBackward",value:function(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this._components[e]=this._components[e-1],this._components[e-1]=t)}},{key:"moveChildToFront",value:function(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this._components.splice(0,e),n=this._components.splice(1);this._components=r.concat(n,this._components)}}},{key:"moveChildToBack",value:function(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this._components.splice(0,e),n=this._components.splice(0);this._components=this._components.concat(r,n)}}},{key:"symmetryX",value:function(t){ms(xs(a.prototype),"symmetryX",this).call(this,t),this.components.map((function(t){t.symmetryX(0)}))}},{key:"findAll",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if("string"==typeof t)return Qo(t,this,r[0]||this);if("function"==typeof t){for(var o=[],i=this.components.length-1;i>=0;i--){var a,s=(a=this.components[i]).findAll.apply(a,[t].concat(r));s&&(o=o.concat(s))}return t.apply(void 0,[this].concat(r))&&o.push(this),o}}},{key:"findFirst",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if("string"==typeof t)return Qo(t,this,r[0])[0];if("function"==typeof t){for(var o=this.components.length-1;o>=0;o--){var i,a=(i=this.components[o]).findFirst.apply(i,[t].concat(r));if(null!=a)return a}return t.apply(void 0,[this].concat(r))?this:null}}},{key:"findById",value:function(t){return this.root.findById(t)}},{key:"findByRefid",value:function(t){return this.root.findByRefid(t)}},{key:"contains",value:function(t,e){var r=ms(xs(a.prototype),"contains",this).call(this,t,e);if(!r){var n=this.state,o=n.left,i=n.top,s=n.width,u=n.height,c=n.lineWidth,f=void 0===c?0:c,l=this.stuck?0:10+f/2;r=t<Math.max(o+s,o)+l&&t>Math.min(o+s,o)-l&&e<Math.max(i+u,i)+l&&e>Math.min(i+u,i)-l}return r}},{key:"capture",value:function(t,e,r){var n=this.transcoordP2S(t,e);if(!this.contains(n.x,n.y))return!1;var o=this.bounds;n.x-=o.left,n.y-=o.top;for(var i=this.layout.capturables(this),a=i.length-1;a>=0;a--){var s=i[a].capture(n.x,n.y,r);if(s)return s}return this.capturable&&!(null!=r&&r(this))&&this}},{key:"capturePath",value:function(t,e){if(e){if(e.indexOf(this)>-1)return!1;for(var r=0;r<e.length;r++)if(!this.containable(e[r]))return!1}for(var n=[],o=this.bounds,i=o.left,a=o.top,s=o.width,u=o.height,c=0;c<t.length;c++){var f=this.transcoordP2S(t[c].x,t[c].y);if(f.x<i||f.x>i+s||f.y<a||f.y>a+u)return!1;f.x-=i,f.y-=a,n.push(f)}for(var l=this.layout.capturables(this),h=l.length-1;h>=0;h--){var p=l[h];if(p.isContainer()){var y=p.capturePath(n,e);if(y)return y}}return this.focusible&&this}},{key:"render",value:function(t){var e=this.bounds,r=e.left,n=void 0===r?0:r,o=e.top,i=void 0===o?0:o,a=e.width,s=e.height;t.beginPath(),t.rect(n,i,a,s),t.closePath(),this.drawFill(t),this.drawStroke(t)}},{key:"postrender",value:function(t){ms(xs(a.prototype),"postrender",this).call(this,t);var e=this.bounds,r=e.left,n=void 0===r?0:r,o=e.top,i=void 0===o?0:o,s=e.width,u=e.height;this.showOverflow||(t.beginPath(),t.rect(n,i,s,u),t.clip(),t.closePath());var c=this.state;i=c.top,n=c.left,c.scale,t.translate(n,i),this.layout.drawables(this).forEach((function(e){e.draw(t)})),t.translate(-n,-i),this.drawText(t)}},{key:"trim",value:function(){this.components.forEach((function(t){t.trim()})),ms(xs(a.prototype),"trim",this).call(this)}}],r&&bs(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(vs(Ea(da)));function _s(t){return _s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_s(t)}function Os(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==_s(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==_s(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===_s(o)?o:String(o)),n)}var o}function Es(){return Es="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Ps(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Es.apply(this,arguments)}function As(t,e){return As=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},As(t,e)}function Ps(t){return Ps=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ps(t)}["layout"].forEach((function(t){return da.memoize(Ss.prototype,t,!1)}));var js=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&As(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ps(n);if(o){var r=Ps(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===_s(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),r=i.call(this,t,e),t.translate=t.translate||{x:0,y:0},r._draw_reserved=!1,r.__draw__=function(){r._draw_reserved=!1,r.trigger("redraw"),r.reflow(),r.draw()},r.throttle_render=function(){r._draw_reserved||requestAnimationFrame(r.__draw__),r._draw_reserved=!0},r}return e=a,(r=[{key:"fitSize",value:function(t,e,r,n){if(this.target){if(e){var o=getComputedStyle(this.target);r=r||(o?parseFloat(o.getPropertyValue("width")):this.target.clientWidth),n=n||(o?parseFloat(o.getPropertyValue("height")):this.target.clientHeight)}else r=this.model.width,n=this.model.height;"CANVAS"==t.tagName&&(t.setAttribute("width",r*Bo),t.setAttribute("height",n*Bo)),t.style.width=r+"px",t.style.height=n+"px"}}},{key:"resize",value:function(){this.fitSize(this.element,!0)}},{key:"isLayer",value:function(){return!0}},{key:"showOverflow",get:function(){return this.app.isEditMode}},{key:"anchors",get:function(){}},{key:"createElement",value:function(){var t=da.createCanvas(1,1);return t.style.position="absolute",t}},{key:"target",get:function(){return this._target},set:function(t){this._target&&this.element&&this._target.removeChild(this.element),this._target=t,t&&(this.element||(this.element=this.createElement()),this.resize(),t.appendChild(this.element))}},{key:"canvas",get:function(){return this.element}},{key:"dispose",value:function(){Es(Ps(a.prototype),"dispose",this).call(this),this.target=null,this.element=null}},{key:"selected",get:function(){return this.root.selected},set:function(t){this.root.selected=t}},{key:"focused",get:function(){return this.root.focused},set:function(t){this.root.focused=t}},{key:"getContext",value:function(){return this._context2D||(this._context2D=this.canvas&&this.canvas.getContext("2d")),this._context2D}},{key:"draw",value:function(t){this.canvas&&(t=t||this.getContext())&&Es(Ps(a.prototype),"draw",this).call(this,t)}},{key:"prerender",value:function(t){var e=this.model,r=e.translate,n=e.scale,o=void 0===n?{x:1,y:1}:n,i=e.rotation;t.clearRect(0,0,t.canvas.width,t.canvas.height),r&&t.translate(r.x*Bo,r.y*Bo),t.scale(o.x*Bo,o.y*Bo),i&&t.rotate(i)}},{key:"rotatePoint",get:function(){return{x:0,y:0}}},{key:"contains",value:function(t,e){return!1}},{key:"invalidate",value:function(){this.throttle_render()}},{key:"move",value:function(t){var e=this.get("translate")||{x:0,y:0};this.set({translate:{x:e.x+t.x,y:e.y+t.y}})}},{key:"centerTo",value:function(t,e){var r=t.rootModel.transcoordC2S(this.canvas.clientWidth/2,this.canvas.clientHeight/2),n=t.center,o=n.x,i=n.y,a=t.transcoordP2S(o,i),s=a.x,u=a.y,c=t.transcoordS2T(s,u),f=c.x,l=c.y,h=t.rootModel.get("translate"),p=h.x,y=h.y,d=t.rootModel.get("scale"),v=d.x,g=d.y;e?nn({step:function(e){t.rootModel.set({translate:{x:p+(r.x-f)*v*e,y:y+(r.y-l)*g*e}})},duration:1e3,delta:"circ",ease:"in"}).start():t.rootModel.set({translate:{x:p+(r.x-f)*v,y:y+(r.y-l)*g}})}}])&&Os(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Ss);function Ts(t){return Ts="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ts(t)}function Ms(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ts(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ts(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ts(o)?o:String(o)),n)}var o}function Rs(){return Rs="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Cs(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Rs.apply(this,arguments)}function Is(t,e){return Is=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Is(t,e)}function Cs(t){return Cs=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Cs(t)}var Ls={x:1,y:1},Ds={x:0,y:0},Bs=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Is(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Cs(n);if(o){var r=Cs(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Ts(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.call(this,t,e)}return e=a,r=[{key:"dispose",value:function(){Rs(Cs(a.prototype),"dispose",this).call(this),delete this._canvas,delete this._overlay}},{key:"contains",value:function(t,e){return!0}},{key:"isRootModel",value:function(){return!0}},{key:"stuck",get:function(){return!0}},{key:"layout",get:function(){return Ya}},{key:"overlay",get:function(){if(!this._overlay){var t=document.createElement("div");t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="initial",t.style["user-select"]="none",t.style["transform-origin"]="top left",this.element&&this.element.appendChild(t),this._overlay=t,this._repositionOverlay()}return this._overlay}},{key:"createElement",value:function(){var t=document.createElement("div");return t.style.position="absolute",t.style["user-select"]="none",t.style.overflow="hidden",this._canvas=da.createCanvas(1,1),this._canvas.style.position="absolute",t.appendChild(this._canvas),this._overlay&&t.appendChild(this._overlay),t}},{key:"resize",value:function(){if(this.target){var t=this.model,e=t.width,r=t.height,n=t.fitMode;this.root.fitMode?n=this.root.fitMode:n||(n="ratio");try{var o=getComputedStyle(this.target)}catch(t){return void console.error(t,this.target)}var i=o?parseFloat(o.getPropertyValue("width")):this.target.clientWidth,a=o?parseFloat(o.getPropertyValue("height")):this.target.clientHeight;switch(n){case"both":case"ratio":break;case"width":a=r*i/e;break;case"height":i=e*a/r;break;default:i=Math.max(e,i),a=Math.max(r,a)}switch(this.fitSize(this.canvas,!0,i,a),n){case"ratio":case"both":break;case"width":this.element.style.overflowX="hidden",this.element.style.overflowY="auto";break;case"height":this.element.style.overflowX="auto",this.element.style.overflowY="hidden";break;default:this.element.style.overflowX=i>e?"hidden":"auto",this.element.style.overflowY=a>r?"hidden":"auto"}this.fitSize(this.element,!0)}}},{key:"canvas",get:function(){return this._canvas}},{key:"MPP",get:function(){var t=this.model,e=t.scale,r=void 0===e?{x:1,y:1}:e;switch(t.unit){case"mm":case"cm":return 1/this.app.PPM/r.x;case"in":return 1/this.app.PPI/r.x;default:return 1/r.x}}},{key:"capturePath",value:function(t,e){for(var r=this.layout.capturables(this),n=r.length-1;n>=0;n--){var o=r[n];if(o.isContainer()){var i=o.capturePath(t,e);if(i)return i}}return!1}},{key:"eventMap",get:function(){return{"(self)":{"(all)":{change:this._onchanged_all,mouseenter:this._onmouseenter_all,mouseleave:this._onmouseleave_all,click:this._onclick,mousedown:this._onmousedownup,mouseup:this._onmousedownup,touchstart:this._onmousedownup,touchend:this._onmousedownup}}}}},{key:"closeScene",value:function(t){var e=this;requestAnimationFrame((function(){return e.overlay.dispatchEvent(new CustomEvent("close-scene",{bubbles:!0,composed:!0,detail:t}))}))}},{key:"_repositionOverlay",value:function(){var t=this._overlay;if(t){var e=this.model,r=e.translate,n=void 0===r?Ds:r,o=e.scale,i=void 0===o?Ls:o,a=e.rotation,s=void 0===a?0:a,u=this.bounds,c=u.left,f=u.top;u.width,u.height,t.style.left=c+"px",t.style.top=f+"px";var l="rotate(".concat(s,"rad) scale(").concat(i.x,", ").concat(i.y,") perspective(1px)");t.style["margin-left"]=n.x+"px",t.style["margin-top"]=n.y+"px",["-webkit-","-moz-","-ms-","-o-",""].forEach((function(e){t.style[e+"transform"]=l}))}}},{key:"onchange",value:function(t){var e=this._model;delete e.id,delete e.text,delete e.class,this._repositionOverlay()}},{key:"_onchanged_all",value:function(t,e,r){this.invalidate()}},{key:"_onmouseenter_all",value:function(t,e){if(t.stopPropagation(),this.app&&!this.app.isEditMode&&e){var r=e.origin;if(!(r instanceof a)&&r.model.event&&r.model.event.hover&&!r.hidden){var n=r.model.event.hover;n&&this._doEventAction(n,r,!0,t)}}}},{key:"_onmouseleave_all",value:function(t,e){if(t.stopPropagation(),e){var r=e.origin;if(this.app&&!this.app.isEditMode){var n=r.model.event&&r.model.event.hover;n&&this._doEventAction(n,r,!1,t)}}}},{key:"_onclick",value:function(t,e){var r;if(t.stopPropagation(),!this.app.isEditMode&&e){var n=e.origin,o=null===(r=n.model.event)||void 0===r?void 0:r.tap;o&&this._doEventAction(o,n,!0,t)}}},{key:"_onmousedownup",value:function(t,e){var r;if(t.stopPropagation(),!this.app.isEditMode&&e){var n=e.origin,o=null===(r=n.model.event)||void 0===r?void 0:r.tap;o&&o.pressed&&this._doMouseDownUpEventAction(o,n,"mousedown"==t.type||"touchstart"==t.type,t)}}},{key:"_doMouseDownUpEventAction",value:function(t,e,r,n){var o=t.pressed;void 0!==o&&o&&(r?function(t){if(!t.hasOwnProperty("_backupShadow")){var e=t.get("shadow");t._backupShadow=e;var r=e||{},n=r.left,o=void 0===n?0:n,i=r.top,a=void 0===i?0:i;t.delta("tx",o),t.delta("ty",a),t.set("shadow",{})}}(e):function(t){t.hasOwnProperty("_backupShadow")&&(t.delta("tx",0),t.delta("ty",0),t.set("shadow",t._backupShadow),delete t._backupShadow)}(e))}},{key:"_doEventAction",value:function(t,e,r,n){var o,i=t.action,a=t.target,s=t.value,u=t.emphasize,c=void 0!==u&&u,f=t.restore,l=void 0!==f&&f,h=(t.pressed,t.options);if(a&&(a=e.access(a)),s&&(s=e.access(s)),c&&(r?function(t){t.hasOwnProperty("_backupStrokeStyle")||(t._backupStrokeStyle=t.model.strokeStyle,t.set("strokeStyle","#f26522"),t.hasOwnProperty("_backupLineWidth")||(t._backupLineWidth=t.model.lineWidth,t.set("lineWidth",t.model.lineWidth+5)))}(e):l&&function(t){t.hasOwnProperty("_backupStrokeStyle")&&(t.set("strokeStyle",t._backupStrokeStyle),delete t._backupStrokeStyle,t.hasOwnProperty("_backupLineWidth")&&(t.set("lineWidth",t._backupLineWidth),delete t._backupLineWidth))}(e)),i)switch(i){case"data-toggle":if(!a)return;(r||l)&&this.root.findAll(a,e).forEach((function(t){t.data=!t.data}));break;case"data-tristate":if(!a)return;(r||l)&&this.root.findAll(a,e).forEach((function(t){var e=Math.round(Math.max(Number(t.data)||0,0));t.data=(e+(r?1:2))%3}));break;case"data-set":if(!a)return;if(r){var p=s;this.root.findAll(a,e).forEach((function(t){t.data=p}))}break;case"value-set":if(!a)return;r&&(p=s,this.root.findAll(a,e).forEach((function(t){t.value=p})));break;case"infoWindow":case"info-window":if(!a)return;"click"==n.type||r?La.show(e,a,l,{x:n.offsetX,y:n.offsetY}):l&&La.hide(e,a);break;case"toggle-info-window":if(!a)return;La.toggle(e,a,!1,{x:n.offsetX,y:n.offsetY});break;case"popup":case"modal-popup":if(!a)return;var y=h&&"input"in h?h.input:"(self)",d=!h||!("output"in h)||h.output;Ka.show(e,a,{data:y&&(null===(o=this.root.findFirst(y,e))||void 0===o?void 0:o.data),output:d,modal:"modal-popup"===i});break;case"close-scene":this.closeScene(e.data);break;case"goto":this.trigger(i,a,h,e);break;default:this.trigger(i,a,s,e)}}}],r&&Ms(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Ns(t,e){var r=t.state.refid;return t.root.findAll((function(t){return t.isLine()&&t.from.component===r&&(!e||t.from.anchor===e)}))}function Fs(t,e){var r=t.state.refid;return t.root.findAll((function(t){return t.isLine()&&t.to.component===r&&(!e||t.to.anchor===e)}))}function zs(t){return zs="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},zs(t)}function Us(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Ys(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==zs(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==zs(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===zs(o)?o:String(o)),n)}var o}function Gs(){return Gs="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Ws(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Gs.apply(this,arguments)}function Hs(t,e){return Hs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Hs(t,e)}function Ws(t){return Ws=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ws(t)}Bs.Popup=Ka,da.register("model-layer",Bs);const Xs=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Hs(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ws(n);if(o){var r=Ws(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===zs(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"isConnectable",value:function(){return!0}},{key:"postrender",value:function(t){Gs(Ws(a.prototype),"postrender",this).call(this,t),this._draw_anchors(t)}},{key:"_draw_anchors",value:function(t){var e=this,r=this.anchors||[];t.save(),r.forEach((function(r){var n=r.position,o=(n.x,n.y,r.draw);if(o){t.beginPath();try{o.call(r,t,e)}catch(t){console.error(t)}t.closePath()}})),t.restore()}},{key:"contains",value:function(t,e){if(f=Gs(Ws(a.prototype),"contains",this).call(this,t,e))return f;var r,n=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return Us(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Us(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){s=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(s)throw i}}}}(this.anchors||[]);try{for(n.s();!(r=n.n()).done;){var o=r.value.bounds;if(o){var i=o.left,s=o.top,u=o.width,c=o.height,f=t<Math.max(i+u,i)&&t>Math.min(i+u,i)&&e<Math.max(s+c,s)&&e>Math.min(s+c,s);if(f)return f}}}catch(t){n.e(t)}finally{n.f()}return!1}},{key:"findInOutLines",value:function(t){return function(t,e){var r=t.state.refid;return t.root.findAll((function(t){return!(!t.isLine()||(t.from.component!==r||e&&t.from.anchor!==e)&&(t.to.component!==r||e&&t.to.anchor!==e))}))}(this,t)}},{key:"findOutletLines",value:function(t){return Ns(this,t)}},{key:"findOutletEnds",value:function(t){return function(t,e){return Ns(t,e).map((function(t){var e;return null===(e=t.toEnd)||void 0===e?void 0:e.component})).filter(Boolean)}(this,t)}},{key:"findInletLines",value:function(t){return Fs(this,t)}},{key:"findInletEnds",value:function(t){return function(t,e){return Fs(t,e).map((function(t){var e;return null===(e=t.fromEnd)||void 0===e?void 0:e.component})).filter(Boolean)}(this,t)}}],r&&Ys(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return e};function qs(t){return qs="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},qs(t)}function Vs(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==qs(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==qs(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===qs(o)?o:String(o)),n)}var o}function Qs(t,e){return Qs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Qs(t,e)}function Ks(t){return Ks=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ks(t)}var Js={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0}}],help:"scene/component/rect"},Zs={ondragmove:function(t,e,r){var n=r.model,o=n.left,i=(n.top,n.width),a=n.height,s=(r.transcoordP2S(t.x,t.y).x-o)/(i/2)*100;s=$s(s,i,a),r.set({round:s})}};function $s(t,e,r){var n=e>r?r/e*100:100;return t>=n?t=n:t<=0&&(t=0),t}var tu=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Qs(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ks(n);if(o){var r=Ks(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===qs(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"is3dish",value:function(){return!0}},{key:"controls",get:function(){var t=this.state,e=t.left,r=t.top,n=t.width,o=t.round,i=t.height;return[{x:e+n/2*((o=null==o?0:$s(o,n,i))/100),y:r,handler:Zs}]}},{key:"nature",get:function(){return Js}}])&&Vs(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Xs(Ea(xa)));function eu(t){return eu="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},eu(t)}function ru(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==eu(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==eu(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===eu(o)?o:String(o)),n)}var o}function nu(t,e){return nu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},nu(t,e)}function ou(t){return ou=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ou(t)}da.register("rect",tu);var iu=[1,2,10,20,50,50,50,50,50,50],au=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&nu(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=ou(n);if(o){var r=ou(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===eu(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"render",value:function(t){var e=this.state,r=e.lineWidth,n=void 0===r?1:r,o=e.fillStyle,i=void 0===o?"lightgray":o,a=e.font,s=void 0===a?"15px Arial":a,u=e.left,c=e.top,f=(e.rotation,e.origin),l=(e.margin,e.width),h=e.height,p=e.side,y=void 0===p?"bottom":p,d=e.strokeStyle,v=void 0===d?"#000000":d,g=e.scale,b=void 0===g?1:g;t.translate(u,c),t.beginPath();var m=Math.round(n/2);t.rect(-m,-m,l+2*m,h+2*m),t.clip(),t.beginPath(),t.rect(0,0,l,h),i&&(t.fillStyle=i,t.fill()),t.lineWidth=n,t.strokeStyle=v,t.stroke(),t.beginPath(),t.font=s;var w="bottom"!==y,x=w?0:h,k=4*h/5,S=2*h/3,_=1*h/2,O=3*h/5;w&&(k=h-k,S=h-S,_=h-_,O=h-1.5*h/5);var E=b*this.app.PPM/this.root.unitScale,A=Math.ceil(f/E),P=this.app.PPM/E,j=P<=1.1?1:iu[Math.round(P)]||100;1!=j&&(A+=(j-A%j)%j);var T=Math.ceil(A*E),M=f+l;for(t.fillStyle=v;T<M;){if(A%10==0){t.moveTo(T-f,_),t.lineTo(T-f,x);var R=(A/10).toString(),I=t.measureText(R);t.fillText(R,T-f-I.width-6,O)}else A%5==0?(t.moveTo(T-f,S),t.lineTo(T-f,x)):(t.moveTo(T-f,k),t.lineTo(T-f,x));A+=j,T=Math.ceil(A*E)}}}],r&&ru(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Ea(xa));function su(t){return su="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},su(t)}function uu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==su(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==su(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===su(o)?o:String(o)),n)}var o}function cu(){return cu="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=lu(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},cu.apply(this,arguments)}function fu(t,e){return fu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},fu(t,e)}function lu(t){return lu=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},lu(t)}da.register("ruler",au);var hu=20,pu=20,yu=90*Math.PI/180,du="9px Verdana",vu="#f4f4f4",gu="#999";function bu(t,e,r){return{left:-t.x,top:-t.y,width:hu,height:20}}function mu(t,e,r,n){return{left:hu-t.x,top:0-t.y,origin:20-t.x,width:e-hu,height:20}}function wu(t,e,r,n){var o={x:0-t.x+10,y:-t.y+pu+(r-pu)/2},i=da.transcoordRR(0-t.x,-t.y+pu,o,yu);return{left:i.x-(r-pu),top:i.y,origin:20-t.y,width:r-pu,height:20}}function xu(t){var e=t.get("translate");return{left:-e.x,top:-e.y,width:t.canvas.width/Bo,height:t.canvas.height/Bo}}var ku=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&fu(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=lu(n);if(o){var r=lu(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===su(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=i.call(this,t,e)).appScale={x:1,y:1},"disabled"!==t.ruler&&(r.hruler=new au({left:hu,top:0,origin:20,margin:0,height:20,unit:"m",rotation:0,font:du,fillStyle:vu,strokeStyle:gu,capturable:!1}),r.vruler=new au({left:0,top:0,origin:20,margin:0,height:20,unit:"m",rotation:yu,font:du,side:"top",fillStyle:vu,strokeStyle:gu,capturable:!1}),r.origin_rect=new tu({left:-20,top:-20,width:20,height:20,fillStyle:vu,strokeStyle:gu,lineWidth:1}),r.addComponent(r.hruler),r.addComponent(r.vruler),r.addComponent(r.origin_rect)),r.invalidate(),r}return e=a,(r=[{key:"capturable",get:function(){return!1}},{key:"ready",value:function(){if(cu(lu(a.prototype),"ready",this).call(this),this.hruler){var t=this.rootModel,e=Object.assign({},t.get("translate"));e.x<hu&&(e.x+=hu),e.y<pu&&(e.y+=pu);var r=t.get("scale")||{x:1,y:1};this.appScale=r,this.hruler.set("scale",r.x),this.vruler.set("scale",r.y),t.set("translate",e),this.set("translate",e),this.screen_coord=xu(this);var n=this.screen_coord,o=n.width,i=n.height;this.hruler.set(mu(e,o,0,this.hruler)),this.vruler.set(wu(e,0,i,this.vruler)),this.origin_rect.set(bu(e))}else this.screen_coord=xu(this)}},{key:"resize",value:function(){cu(lu(a.prototype),"resize",this).call(this),this.screen_coord=xu(this);var t=this.screen_coord,e=t.width,r=t.height;this.hruler&&(this.hruler.set(mu(this.model.translate,e,0,this.hruler)),this.vruler.set(wu(this.model.translate,0,r,this.vruler)),this.origin_rect.set(bu(this.model.translate)))}},{key:"render",value:function(t){if(this.guide){t.save();var e=this.guide,r=e.x,n=e.y,o=this.screen_coord,i=o.top,a=o.left,s=o.width,u=o.height;t.beginPath(),t.moveTo(r,i),t.lineTo(r,i+u),t.moveTo(a,n),t.lineTo(a+s,n),t.lineWidth=1,t.strokeStyle="tomato",t.setLineDash([2,3]),t.font="10px tahoma",t.fillStyle="#333";var c=this.transcoordS2C(r,n,this.rootModel);t.textBaseline=c.y>200?"bottom":"top",t.textAlign=c.x>200?"right":"left";var f=c.y>200?-5:5,l=c.x>200?-5:5,h=Math.round(r/this.appScale.x),p=Math.round(n/this.appScale.y);t.fillText(" ".concat(h,", ").concat(p," "),r+l,n+f),t.stroke(),t.restore()}}},{key:"guide",get:function(){return this._guide},set:function(t){this._guide=t,this.invalidate()}},{key:"contains",value:function(t,e){return!0}},{key:"eventMap",get:function(){return{"(root)":{"(descendant)":{mousemove:this.onmousemove_child,mouseout:this.onmouseout_child,dragmove:this.onmousemove_child},"model-layer":{change:this.onchange_root_model}},"(self)":{"(descendant)":{mousedown:this.onmousedown_origin}}}}},{key:"onmousedown_origin",value:function(t,e){this.rootModel.set("translate",{x:20,y:20})}},{key:"onchange_root_model",value:function(t,e,r){if(t.scale&&(this.appScale=t.scale,this.hruler&&(this.hruler.set("scale",t.scale.x),this.vruler.set("scale",t.scale.y))),t.translate&&this.set({translate:{x:t.translate.x,y:t.translate.y}}),t.scale||t.translate){if(this.screen_coord=xu(this),this.hruler){var n=this.model.translate,o=this.screen_coord,i=o.width,a=o.height;this.hruler.set(mu(n,i,0,this.hruler)),this.vruler.set(wu(n,0,a,this.vruler)),this.origin_rect.set(bu(n))}this._guide=null}this.invalidate()}},{key:"onmouseout_child",value:function(t){this._guide=null,this.invalidate()}},{key:"onmousemove_child",value:function(t,e){t.target&&"CANVAS"!==t.target.tagName?this.guide=null:this.guide=this.transcoordC2S(t.offsetX,t.offsetY)}}])&&uu(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Su(t){return Su="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Su(t)}function _u(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Su(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Su(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Su(o)?o:String(o)),n)}var o}function Ou(){return Ou="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Au(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Ou.apply(this,arguments)}function Eu(t,e){return Eu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Eu(t,e)}function Au(t){return Au=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Au(t)}da.register("guide-layer",ku);var Pu=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Eu(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Au(n);if(o){var r=Au(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Su(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"ready",value:function(){Ou(Au(a.prototype),"ready",this).call(this);var t=this.rootModel.get("translate");this.set("translate",t)}},{key:"render",value:function(t){}},{key:"contains",value:function(t,e){return!(this.app.mode!=Io)}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{keydown:this.onkeydown,keyup:this.onkeyup}}}}},{key:"onkeydown",value:function(t){"Space"===t.code&&void 0===this.before_mode&&(this.before_mode=this.app.mode,this.app.mode=Io)}},{key:"onkeyup",value:function(t){"Space"===t.code&&(void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode)}},{key:"ondragstart",value:function(t){this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}},{key:"ondragmove",value:function(t){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.rootModel.move({x:r-this.last_position.x,y:n-this.last_position.y},!1),this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}}])&&_u(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function ju(t){return ju="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ju(t)}function Tu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==ju(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==ju(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===ju(o)?o:String(o)),n)}var o}da.register("shift-layer",Pu);var Mu=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.params=Object.assign({},e)}var e,r;return e=t,(r=[{key:"excute",value:function(){}}])&&Tu(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Ru(t){return Ru="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ru(t)}function Iu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ru(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ru(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ru(o)?o:String(o)),n)}var o}function Cu(t,e){return Cu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Cu(t,e)}function Lu(t){return Lu=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Lu(t)}var Du=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Cu(t,e)}(s,t);var e,r,n,o,i,a=(o=s,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Lu(o);if(i){var r=Lu(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Ru(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),a.apply(this,arguments)}return e=s,n=[{key:"before",value:function(t){return t.map((function(t){return{component:t}}))}},{key:"after",value:function(t,e){e.execute(null,!1)}},{key:"around",value:function(t,e,r){e.call(r),t.execute(null,!1)}}],(r=[{key:"execute",value:function(){this.params.changes.forEach((function(t){return t.component.set(t.after)}))}}])&&Iu(e.prototype,r),n&&Iu(e,n),Object.defineProperty(e,"prototype",{writable:!1}),s}(Mu),Bu="left",Nu="right",Fu="center",zu="bottom",Uu="middle",Yu=[Bu,Nu,Fu,"top",Uu,zu];function Gu(t){if(-1!=Yu.indexOf(t)){var e=this.selected.filter((function(t){return!t.stuck}));if(!(e.length<=1)){var r=this.app.commander;Du.around(r,(function(){!function(t,e){for(var r=JSON.parse(JSON.stringify(e[0].bounds)),n=r.left+r.width,o=r.top+r.height,i=0;i<e.length;i++){var a=e[i].bounds;r.left=a.left>r.left?r.left:a.left,r.top=a.top>r.top?r.top:a.top,n=a.left+a.width>n?a.left+a.width:n,o=a.top+a.height>o?a.top+a.height:o}switch(r.width=n-r.left,r.height=o-r.top,t){case Bu:for(var s=0;s<e.length;s++){var u=e[s].bounds;e[s].bounds={left:r.left,top:u.top,width:u.width,height:u.height}}break;case Fu:for(var c=0;c<e.length;c++){var f=e[c].bounds;e[c].bounds={left:r.left+r.width/2-f.width/2,top:f.top,width:f.width,height:f.height}}break;case Nu:for(var l=0;l<e.length;l++){var h=e[l].bounds;e[l].bounds={left:n-h.width,top:h.top,width:h.width,height:h.height}}break;case"top":for(var p=0;p<e.length;p++){var y=e[p].bounds;e[p].bounds={left:y.left,top:r.top,width:y.width,height:y.height}}break;case Uu:for(var d=0;d<e.length;d++){var v=e[d].bounds;e[d].bounds={left:v.left,top:r.top+r.height/2-v.height/2,width:v.width,height:v.height}}break;case zu:for(var g=0;g<e.length;g++){var b=e[g].bounds;e[g].bounds={left:b.left,top:o-b.height,width:b.width,height:b.height}}}}(t,e)}))}}}var Hu="VERTICAL",Wu=[Hu,"HORIZONTAL"];function Xu(t){if(-1!=Wu.indexOf(t)){var e=this.selected;if(!(e.length<=1)){var r=this.app.commander;Du.around(r,(function(){!function(t,e){var r=e.filter((function(t){return!t.stuck})).slice(0);r.sort((function(e,r){var n=e.center,o=r.center;return t===Hu?n.y-o.y:n.x-o.x}));for(var n=r.reduce((function(e,r){return e+(t===Hu?r.bounds.height:r.bounds.width)}),0),o=r[0].bounds,i=r[r.length-1].bounds,a=((t===Hu?i.top+i.height-o.top:i.left+i.width-o.left)-n)/(r.length-1),s=t===Hu?o.top+o.height:o.left+o.width,u=1;u<r.length-1;u++){var c=r[u],f=c.bounds;s+=a,t===Hu?(f.top=s,s+=f.height):(f.left=s,s+=f.width),c.bounds=f}}(t,e)}))}}}function qu(t){return qu="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},qu(t)}function Vu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==qu(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==qu(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===qu(o)?o:String(o)),n)}var o}function Qu(t,e){return Qu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Qu(t,e)}function Ku(t){return Ku=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ku(t)}function Ju(t){for(var e=0;t&&!t.isRootModel();)e+=t.get("rotation")||0,t=t.parent;return e%(2*Math.PI)}var Zu=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Qu(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ku(n);if(o){var r=Ku(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===qu(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"execute",value:function(){this.params.changes.forEach((function(t){var e=t.component,r=t.to_container,n=t.to_index,o=t.to_left,i=t.to_top,a=(t.hint,function(t){if(t.isRootModel())return t.bounds;var e=t.bounds,r=t.rotatePoint,n=r;return{left:(n=t.transcoordS2T(n.x,n.y)).x-(r.x-e.left),top:n.y-(r.y-e.top),width:e.width,height:e.height}}(e)),s=Ju(e);if(e.removeSelf(!r),e.bounds=a,e.set("rotation",s),r){e.set("rotation",function(t,e){return((t.get("rotation")||0)-Ju(e))%(2*Math.PI)}(e,r));var u=function(t,e){if(e.isRootModel())return t.bounds;var r=t.bounds,n=t.rotatePoint,o=e.transcoordT2S(n.x,n.y),i=e.bounds;return{left:o.x-(n.x-r.left)-i.left,top:o.y-(n.y-r.top)-i.top,width:r.width,height:r.height}}(e,r);t.to_left=void 0!==o?o:u.left,t.to_top=void 0!==i?i:u.top,e.bounds={left:t.to_left,top:t.to_top,width:u.width,height:u.height},void 0===n?r.addComponent(e):r.insertComponentAt(e,n)}}))}}])&&Vu(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Mu);function $u(t,e,r){this.app.commander.execute(new Zu({changes:[{component:t,to_container:e,to_index:r}]}))}function tc(t){var e=this.selected.filter((function(t){return!t.stuck}));if(!(0==e.length||e[0].isRootModel()||e.length>1&&("forward"==t||"backward"==t))){var r,n=e[0].parent;if("forward"==t){var o=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:o,to_index:o+1}]}else if("backward"==t){var i=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:i,to_index:i-1}]}else r=e.filter((function(t){return t.parent===n})).sort((function(e,r){var o=n.indexOf(e)<n.indexOf(r);return"front"==t?o:!o})).map((function(e,r){return n.indexOf(e),{component:e,to_container:n,to_index:"front"==t?n.components.length-r-1:r}}));var a=new Zu({changes:r});this.app.commander.execute(a)}}function ec(t,e,r,n){var o=da.register(t.type);if(!o)return $n("Class not found",t.type),null;r&&(t.refid=r(t.refid)),t.id&&n&&n(t.id)&&delete t.id;var i=new o(t,e);return t.components&&i.isContainer()&&(t.components.forEach((function(t){var o=ec(t,e,r,n);o&&i.addComponent(o)})),delete t.components),i.created(),i}function rc(t,e){var r=Eo(t.hierarchy);return delete r.id,ec(r,t.app,e)}function nc(t,e,r){var n=this;t instanceof Array||(t=[t]),r||(r=this.model_layer);var o=[],i=new Map;this.selected=t.map((function(t){try{return ec(t,r.app,(function(t){var e=n.getNewRefid();return void 0!==t&&i.set(t,e),e}),(function(t){return(n.indexMap[t]||[])[0]}))}catch(t){return console.warn(t),!1}})).filter(Boolean).map((function(t){var n=e.left,a=e.top,s=e.width,u=e.height,c=e.x,f=e.y,l=e.cx,h=e.cy;return t.replaceRefids(i),isNaN(n)||isNaN(a)||isNaN(s)||isNaN(u)||(t.bounds={left:n,top:a,width:s,height:u}),isNaN(c)||isNaN(f)||t.move({x:c,y:f},!1),isNaN(l)||isNaN(h)||(t.center={x:l,y:h}),o.push({component:t,to_container:r}),t})),this.app.commander.execute(new Zu({changes:o}))}function oc(t){t instanceof Array||(t=[t]),this.trigger("addstart",t)}function ic(){var t=this,e=[],r=new Map;if(this.selected=this.selected.filter((function(t){return!t.isRootModel()})).map((function(n){var o=rc(n,(function(e){var n=t.getNewRefid();return void 0!==e&&r.set(e,n),n}));return o.move({x:20,y:20},!1),e.push({component:o,to_container:n.parent}),o})).map((function(t){return t.replaceRefids(r),t})),0!=e.length){var n=new Zu({changes:e});this.app.commander.execute(n)}}function ac(){var t=this.selected;this.selected=[];for(var e=null,r=t.filter((function(t){return!t.isRootModel()&&(t.parent.focusible||t.parent.isGroup())})).map((function(t){return e||(e=t.parent),{component:t,to_container:null}})),n=function(){var t=[];if(e.components.filter((function(t){return!r.find((function(e){return e.component===t}))})).forEach((function(e){return t.push(e)})),t.length>1)return 1;var n=e.parent;t.forEach((function(t){return r.push({component:t,to_container:n})})),r.push({component:e,to_container:null}),e=n};e&&e.isGroup()&&!n(););r.length>0&&this.app.commander.execute(new Zu({changes:r})),e&&e.calculateBounds&&e.calculateBounds()}function sc(t,e,r){var n,o;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.on(t,e,r);break;case"mode":null===(o=this.app)||void 0===o||o.on(t,e,r);break;default:this.on(t,e,r)}}function uc(t,e,r){var n;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.once(t,e,r);break;case"mode":this.app.once(t,e,r);break;default:this.once(t,e,r)}}function cc(t,e,r){var n,o;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.off(t,e,r);break;case"mode":null===(o=this.app)||void 0===o||o.off(t,e,r);break;default:this.off(t,e,r)}}function fc(t){var e=this.target_element,r=t||this.fitMode,n=this;function o(t){n.fit(r),document.fullscreen||document.mozFullScreen||document.webkitIsFullScreen||document.msFullscreenElement||["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((function(t){return document.removeEventListener(t,o)}))}["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((function(t){return document.addEventListener(t,o)})),e.requestFullScreen?e.requestFullScreen():e.webkitRequestFullScreen?e.webkitRequestFullScreen():e.mozRequestFullScreen?e.mozRequestFullScreen():e.msRequestFullscreen&&e.msRequestFullscreen()}var lc=0;function hc(){var t=this.selected.filter((function(t){return!t.isRootModel()})).map((function(t){return t.hierarchy}));if(0!=t.length)return lc=0,JSON.stringify(t,null,2)}function pc(){lc=0;var t=hc.call(this);return ac.call(this),t}function yc(t){if(t)try{JSON.parse(t),lc++,nc.call(this,JSON.parse(t),{x:15*lc,y:15*lc})}catch(e){Zn(e,t)}}var dc=function(){return{escape:function(t){return t.replace(/([.*+?^${}()|\[\]\/\\])/g,"\\$1")},parseExtension:e,mimeType:function(t){var r,n;return(r="application/font-woff",n="image/jpeg",{woff:r,woff2:r,ttf:"application/font-truetype",eot:"application/vnd.ms-fontobject",png:"image/png",jpg:n,jpeg:n,gif:"image/gif",tiff:"image/tiff",svg:"image/svg+xml"})[e(t).toLowerCase()]||""},dataAsUrl:function(t,e){return"data:"+e+";base64,"+t},isDataUrl:function(t){return-1!==t.search(/^(data:)/)},canvasToBlob:function(t){return t.toBlob?new Promise((function(e){t.toBlob(e)})):function(t){return new Promise((function(e){for(var r=window.atob(t.toDataURL().split(",")[1]),n=r.length,o=new Uint8Array(n),i=0;i<n;i++)o[i]=r.charCodeAt(i);e(new Blob([o],{type:"image/png"}))}))}(t)},resolveUrl:function(t,e){var r=document.implementation.createHTMLDocument(),n=r.createElement("base");r.head.appendChild(n);var o=r.createElement("a");return r.body.appendChild(o),n.href=e,o.href=t,o.href},getAndEncode:function(t){return _c.impl.options.cacheBust&&(t+=(/\?/.test(t)?"&":"?")+(new Date).getTime()),new Promise((function(e){var r,n=new XMLHttpRequest;if(n.onreadystatechange=function(){if(4===n.readyState)if(200===n.status){var o=new FileReader;o.onloadend=function(){var t=o.result.split(/,/)[1];e(t)},o.readAsDataURL(n.response)}else r?e(r):i("cannot fetch resource: "+t+", status: "+n.status)},n.ontimeout=function(){r?e(r):i("timeout of 30000ms occured while fetching resource: "+t)},n.responseType="blob",n.timeout=3e4,n.open("GET",t,!0),n.send(),_c.impl.options.imagePlaceholder){var o=_c.impl.options.imagePlaceholder.split(/,/);o&&o[1]&&(r=o[1])}function i(t){console.error(t),e("")}}))},uid:(t=0,function(){return"u"+("0000"+(Math.random()*Math.pow(36,4)<<0).toString(36)).slice(-4)+t++}),delay:function(t){return function(e){return new Promise((function(r){setTimeout((function(){r(e)}),t)}))}},asArray:function(t){for(var e=[],r=t.length,n=0;n<r;n++)e.push(t[n]);return e},escapeXhtml:function(t){return t.replace(/#/g,"%23").replace(/\n/g,"%0A")},makeImage:function(t){return new Promise((function(e,r){var n=new Image;n.onload=function(){e(n)},n.onerror=r,n.src=t}))},width:function(t){var e=r(t,"border-left-width"),n=r(t,"border-right-width");return t.scrollWidth+e+n},height:function(t){var e=r(t,"border-top-width"),n=r(t,"border-bottom-width");return t.scrollHeight+e+n}};var t;function e(t){var e=/\.([^\.\/]*?)$/g.exec(t);return e?e[1]:""}function r(t,e){var r=window.getComputedStyle(t).getPropertyValue(e);return parseFloat(r.replace("px",""))}}(),vc=function(){var t=/url\(['"]?([^'"]+?)['"]?\)/g;return{inlineAll:function(t,o,i){return e(t)?Promise.resolve(t).then(r).then((function(e){var r=Promise.resolve(t);return e.forEach((function(t){r=r.then((function(e){return n(e,t,o,i)}))})),r})):Promise.resolve(t)},shouldProcess:e,impl:{readUrls:r,inline:n}};function e(e){return-1!==e.search(t)}function r(e){for(var r,n=[];null!==(r=t.exec(e));)n.push(r[1]);return n.filter((function(t){return!dc.isDataUrl(t)}))}function n(t,e,r,n){return Promise.resolve(e).then((function(t){return r?dc.resolveUrl(t,r):t})).then(n||dc.getAndEncode).then((function(t){return dc.dataAsUrl(t,dc.mimeType(e))})).then((function(r){return t.replace(function(t){return new RegExp("(url\\(['\"]?)("+dc.escape(t)+")(['\"]?\\))","g")}(e),"$1"+r+"$3")}))}}(),gc=function(){return{resolveAll:function(){return t(document).then((function(t){return Promise.all(t.map((function(t){return t.resolve()})))})).then((function(t){return t.join("\n")}))},impl:{readAll:t}};function t(){return Promise.resolve(dc.asArray(document.styleSheets)).then((function(t){var e=[];return t.forEach((function(t){try{dc.asArray(t.cssRules||[]).forEach(e.push.bind(e))}catch(e){console.log("Error while reading CSS rules from "+t.href,e.toString())}})),e})).then((function(t){return t.filter((function(t){return t.type===CSSRule.FONT_FACE_RULE})).filter((function(t){return vc.shouldProcess(t.style.getPropertyValue("src"))}))})).then((function(e){return e.map(t)}));function t(t){return{resolve:function(){var e=(t.parentStyleSheet||{}).href;return vc.inlineAll(t.cssText,e)},src:function(){return t.style.getPropertyValue("src")}}}}}(),bc=function(){return{inlineAll:function e(r){return r instanceof Element?function(t){var e=t.style.getPropertyValue("background");return e?vc.inlineAll(e).then((function(e){t.style.setProperty("background",e,t.style.getPropertyPriority("background"))})).then((function(){return t})):Promise.resolve(t)}(r).then((function(){return r instanceof HTMLImageElement?t(r).inline():Promise.all(dc.asArray(r.childNodes).map((function(t){return e(t)})))})):Promise.resolve(r)},impl:{newImage:t}};function t(t){return{inline:function(e){return dc.isDataUrl(t.src)?Promise.resolve():Promise.resolve(t.src).then(e||dc.getAndEncode).then((function(e){return dc.dataAsUrl(e,dc.mimeType(t.src))})).then((function(e){return new Promise((function(r,n){t.onload=r,t.onerror=n,t.src=e}))}))}}}}(),mc={imagePlaceholder:void 0,cacheBust:!1};function wc(t,e){return function(t){void 0===t.imagePlaceholder?_c.impl.options.imagePlaceholder=mc.imagePlaceholder:_c.impl.options.imagePlaceholder=t.imagePlaceholder,void 0===t.cacheBust?_c.impl.options.cacheBust=mc.cacheBust:_c.impl.options.cacheBust=t.cacheBust}(e=e||{}),Promise.resolve(t).then((function(t){return kc(t,e.filter,!0)})).then(Sc).then((function(t){var r=e,n=r.bgcolor,o=r.width,i=r.height,a=r.style,s=r.sx,u=void 0===s?1:s,c=r.sy,f=void 0===c?1:c,l=t.style;return n&&(l.backgroundColor=n),o&&(l.width=o+"px"),i&&(l.height=i+"px"),l["margin-left"]="0px",l["margin-top"]="0px",["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){l[t+"transform"]="rotate(0rad) translate(0px, 0px) scale(".concat(u,", ").concat(f,") perspective(1px)")})),a&&Object.keys(a).forEach((function(t){l[t]=a[t]})),t})).then((function(r){return function(t,e,r){return Promise.resolve(t).then((function(t){return t.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),(new XMLSerializer).serializeToString(t)})).then(dc.escapeXhtml).then((function(t){return'<foreignObject x="0" y="0" width="100%" height="100%">'+t+"</foreignObject>"})).then((function(t){return'<svg xmlns="http://www.w3.org/2000/svg" width="'+e+'" height="'+r+'">'+t+"</svg>"})).then((function(t){return"data:image/svg+xml;charset=utf-8,"+t}))}(r,e.width||dc.width(t),e.height||dc.height(t))}))}function xc(t,e){return wc(t,e).then(dc.makeImage).then(dc.delay(100)).then((function(r){var n=function(t){var r=document.createElement("canvas");if(e.width,e.height,r.width=e.width||dc.width(t),r.height=e.height||dc.height(t),e.bgcolor){var n=r.getContext("2d");n.fillStyle=e.bgcolor,n.fillRect(0,0,r.width,r.height)}return r}(t);return n.getContext("2d").drawImage(r,0,0),n}))}function kc(t,e,r){return r||!e||e(t)?Promise.resolve(t).then((function(t){if(t instanceof HTMLCanvasElement)try{return dc.makeImage(t.toDataURL())}catch(t){$n(t)}return t.cloneNode(!1)})).then((function(r){return function(t,e,r){var n=t.childNodes;return 0===n.length?Promise.resolve(e):function(t,e,r){var n=Promise.resolve();return e.forEach((function(e){n=n.then((function(){return kc(e,r)})).then((function(e){e&&t.appendChild(e)}))})),n}(e,dc.asArray(n),r).then((function(){return e}))}(t,r,e)})).then((function(e){return function(t,e){return e instanceof Element?Promise.resolve().then((function(){r=window.getComputedStyle(t),n=e.style,r.cssText?n.cssText=r.cssText:function(t,e){dc.asArray(t).forEach((function(r){e.setProperty(r,t.getPropertyValue(r),t.getPropertyPriority(r))}))}(r,n);var r,n})).then((function(){[":before",":after"].forEach((function(r){!function(r){var n=window.getComputedStyle(t,r),o=n.getPropertyValue("content");if(""!==o&&"none"!==o){var i=dc.uid();e.className=e.className+" "+i;var a=document.createElement("style");a.appendChild(function(t,e,r){var n="."+t+":"+e,o=r.cssText?i(r):a(r);return document.createTextNode(n+"{"+o+"}");function i(t){var e=t.getPropertyValue("content");return t.cssText+" content: "+e+";"}function a(t){return dc.asArray(t).map(e).join("; ")+";";function e(e){return e+": "+t.getPropertyValue(e)+(t.getPropertyPriority(e)?" !important":"")}}}(i,r,n)),e.appendChild(a)}}(r)}))})).then((function(){t instanceof HTMLTextAreaElement&&(e.innerHTML=t.value),t instanceof HTMLInputElement&&e.setAttribute("value",t.value)})).then((function(){e instanceof SVGElement&&(e.setAttribute("xmlns","http://www.w3.org/2000/svg"),e instanceof SVGRectElement&&["width","height"].forEach((function(t){var r=e.getAttribute(t);r&&e.style.setProperty(t,r)})))})).then((function(){return e})):e}(t,e)})):Promise.resolve()}function Sc(t){return bc.inlineAll(t).then((function(){return t}))}var _c={toSvg:wc,toPng:function(t,e){return xc(t,e||{}).then((function(t){return t.toDataURL()}))},toJpeg:function(t,e){return xc(t,e=e||{}).then((function(t){return t.toDataURL("image/jpeg",e.quality||1)}))},toBlob:function(t,e){return xc(t,e||{}).then(dc.canvasToBlob)},toPixelData:function(t,e){return xc(t,e||{}).then((function(e){return e.getContext("2d").getImageData(0,0,dc.width(t),dc.height(t)).data}))},impl:{fontFaces:gc,images:bc,util:dc,inliner:vc,options:{}}};const Oc=_c;function Ec(t,e,r,n){var o=this.model_layer,i=o._overlay;return new Promise((function(a,s){if(o){var u=o.get("width"),c=o.get("height");r=r||u,n=n||c;var f=o.get("translate"),l=o.get("scale"),h=Math.min(r/u,n/c);r=u*h,n=c*h,o.set("translate",{x:0,y:0}),o.set("scale",{x:h/Bo,y:h/Bo});var p=da.createCanvas(r,n),y=p.getContext("2d");if(o.draw(y),o.set("translate",f),o.set("scale",l),!i)return a(p.toDataURL(t,e)),void(p=null);Oc.toPng(i,{sx:h,sy:h,width:r,height:n}).then((function(o){var i=new Image;i.onload=function(){y.drawImage(i,0,0,r,n),a(p.toDataURL(t,e)),p=null},i.src=o}),(function(r){Zn(r),a(p.toDataURL(t,e)),p=null}))}else s("No target model")}))}function Ac(){var t=this,e=this.selected.filter((function(t){return!!t.parent&&!t.stuck}));if(!(e.length<2)){var r=e[0].parent,n=[],o=e.sort((function(t,e){return r.components.indexOf(t)-r.components.indexOf(e)}));o.forEach((function(t){n.push(t.bounds)}));var i=da.union(n),a=e[0].transcoordP2S(i.left,i.top);a=e[0].transcoordS2T(a.x,a.y);var s=new Map,u=ec({type:"group",left:a.x,top:a.y,width:i.width,height:i.height},r.app,(function(e){var r=t.getNewRefid();return void 0!==e&&s.set(e,r),r}));u.replaceRefids(s);var c=[{component:u,to_container:r}];o.forEach((function(t){c.push({component:t,to_container:u})})),this.app.commander.execute(new Zu({changes:c})),this.selected=[u]}}function Pc(){if(0!==this.selected.length){var t=[],e=[];this.selected.forEach((function(r){if(r.isGroup()){var n=r.parent;r.components.forEach((function(r){t.push(r),e.push({component:r,to_container:n})})),e.push({component:r,to_container:null})}})),this.app.commander.execute(new Zu({changes:e})),this.selected=t}}function jc(){var t=this.selected;if(0!=t.length){var e=t.map((function(t){return t.bounds})),r=da.union(e),n=r.left+r.width/2;t.map((function(t){t.symmetryX(n)}))}}function Tc(){var t=this.selected;if(0!=t.length){var e=t.map((function(t){return t.bounds})),r=da.union(e),n=r.top+r.height/2;t.map((function(t){t.symmetryY(n)}))}}function Mc(){Du.around(this.app.commander,jc,this)}function Rc(){Du.around(this.app.commander,Tc,this)}function Ic(t,e,r){var n=this.findAll(t,r);return n.forEach((function(t){t.set(e)})),n}function Cc(t){Du.around(this.app.commander,t)}function Lc(){return Object.values(this.indexMap).map((function(t){return t.map((function(t){var e=t.model;return{key:e.id,value:e.data}}))})).flat().sort((function(t,e){return t.key>e.key?1:-1}))}function Dc(t){return Dc="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Dc(t)}function Bc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Dc(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Dc(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Dc(o)?o:String(o)),n)}var o}function Nc(){return Nc="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=zc(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Nc.apply(this,arguments)}function Fc(t,e){return Fc=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Fc(t,e)}function zc(t){return zc=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},zc(t)}var Uc=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Fc(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=zc(n);if(o){var r=zc(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Dc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"ready",value:function(){Nc(zc(a.prototype),"ready",this).call(this);var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}},{key:"render",value:function(t){var e=this.addbox;if(e){var r=e.sx,n=e.sy,o=e.ex,i=e.ey,a=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,o-r,i-n),t.setLineDash([2/a.x,4/a.y]),t.lineWidth=1/a.x,t.strokeStyle="black",t.stroke()}}},{key:"contains",value:function(t,e){return!(this.app.mode!=Co)}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{addstart:this.onaddstart,addstop:this.onaddstop,keydown:this.onkeydown,dragstart:this.ondragstart,dragmove:this.ondragmove,dragend:this.ondragend,mousedown:this.onmousedown,mouseup:this.onmouseup}},"model-layer":{"(self)":{change:this.onchange_root_model}}}}},{key:"onchange_root_model",value:function(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}},{key:"onaddstart",value:function(t,e){void 0===this.before_mode&&(this.before_mode=this.app.mode,this.models=t,this.app.mode=Co)}},{key:"onaddstop",value:function(){void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode,delete this.addbox,this.invalidate()}},{key:"onkeydown",value:function(t){this.app.mode===Co&&"Esc"===t.code&&this.root.trigger("addstop")}},{key:"ondragstart",value:function(t){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.addbox={sx:r,sy:n}}},{key:"ondragmove",value:function(t){if(this.app.mode===Co){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.addbox&&(this.addbox.ex=r,this.addbox.ey=n,this.invalidate())}}},{key:"ondragend",value:function(t,e){if(this.app.mode===Co){var r=this.addbox,n=r.sx,o=r.sy,i=r.ex,a=r.ey;nc.call(this.root,this.models,{left:Math.min(n,i),top:Math.min(o,a),width:Math.abs(i-n),height:Math.abs(a-o)}),this.root.trigger("addstop")}}},{key:"onmousedown",value:function(t,e){this.app.mode===Co&&(this.downpoint={x:t.offsetX,y:t.offsetY})}},{key:"onmouseup",value:function(t,e){if(this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var r=this.transcoordC2S(t.offsetX,t.offsetY),n=r.x,o=r.y;nc.call(this.root,this.models,{cx:n,cy:o}),this.root.trigger("addstop")}}}])&&Bc(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Yc(t,e,r,n,o){o||function(t,e,r,n){var o=t.selected,i=n?o.slice(0):[];n&&i.length>0?e=i[0].parent:e.isContainer()||(e=e.parent);var a=e.layout.capturables(e),s=!!e.layout.joinType;if(n&&r.selected.forEach((function(t){i.splice(i.indexOf(t),1)})),r.selected=[],a.forEach((function(t){t.capturable&&function(t,e,r){var n,o,i,a,s=e.sx,u=e.sy,c=e.ex,f=e.ey;if(s>c?(n=c,o=s):(n=s,o=c),u>f?(i=f,a=u):(i=u,a=f),r){var l=t.bounds,h=t.transcoordS2TR(l.left,l.top),p=t.transcoordS2TR(l.left+l.width,l.top+l.height),y=h.x,d=p.x,v=h.y,g=p.y,b=Math.min(n,y,o,d),m=Math.max(n,y,o,d),w=Math.min(i,v,a,g),x=Math.max(i,v,a,g);return!(m-b>Math.abs(o-n)+Math.abs(d-y)||x-w>Math.abs(a-i)+Math.abs(g-v))}var k=t.path;if(!k)return error("컴포넌트에 get path가 잘못 구현되어있음.",t),!1;for(var S=0;S<k.length;S++){var _=t.transcoordS2TR(k[S].x,k[S].y);if(n>_.x||o<_.x||i>_.y||a<_.y)return!1}return!0}(t,r,s)&&-1==i.indexOf(t)&&r.selected.push(t)})),i=i.concat(r.selected),o.length!==i.length)t.selected=i;else for(var u=0;u<i.length;u++)if(o[u]!=i[u]){t.selected=i;break}}(t,e,r,n)}function Gc(t){return Gc="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Gc(t)}function Hc(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Wc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Gc(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Gc(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Gc(o)?o:String(o)),n)}var o}function Xc(){return Xc="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Vc(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Xc.apply(this,arguments)}function qc(t,e){return qc=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},qc(t,e)}function Vc(t){return Vc=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Vc(t)}da.register("add-layer",Uc);var Qc=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&qc(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Vc(n);if(o){var r=Vc(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Gc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"ready",value:function(){Xc(Vc(a.prototype),"ready",this).call(this);var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}},{key:"contains",value:function(t,e){return!1}},{key:"render",value:function(t){var e=this.selbox;if(e){var r=e.sx,n=e.sy,o=e.ex,i=e.ey,a=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,o-r,i-n),t.setLineDash([2/a.x,4/a.y]),t.lineWidth=1/a.x,t.strokeStyle="black",t.stroke()}}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{keydown:this.onkeydown}},"model-layer":{"(self)":{change:this.onchange_root_model},"(all)":{dragstart:this.ondragstart_selbox,dragmove:this.ondragmove_selbox,dragend:this.ondragend_selbox,mousedown:this.onmousedown_comp,mouseup:this.onmouseup_comp}}}}},{key:"onkeydown",value:function(t,e){e.origin;var r=e.deliverer,n=r.selected;if(1!==n.length)return!1;var o=n[0],i=o.parent;if(!i||i===r)return!1;if("Tab"===t.code){var a=i.layout.capturables(i),s=a.indexOf(o);if(-1==s){if(!i.indexOf(o))return $n("Container not contains [",o,"] as a component"),!1;s=0}var u=a.length;t.shiftKey?s--:s++,o=a[(s+u)%u]}else{if(!i.layout.keyNavigate)return!1;o=i.layout.keyNavigate(i,o,t)||o}r.selected=[o],t.preventDefault()}},{key:"onchange_root_model",value:function(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}},{key:"_pendingDecision",value:function(t){this.downpoint={x:t.offsetX,y:t.offsetY}}},{key:"_selectGroupItem",value:function(t,e){for(var r=this.selected.indexOf(t),n=t.parent;n.parent.isGroup();)n=n.parent;var o,i=[],a=!1,s=!1;if(this.selected.forEach((function(t){var e=t.parent;if(t!==n){for(;e.parent&&e.parent.isGroup();)e=e.parent;e===n&&(i.push(t),a=!0)}else s=!0})),a)if(e.shiftKey){if(-1!=r)return void this._pendingDecision(e);i.push(t)}else{if(-1!=r)return void this._pendingDecision(e);i=[t]}else{if(s)return void this._pendingDecision(e);if(e.shiftKey)if(this.selected.length>0){if(-1!=this.selected.indexOf(n)||this.selected[0].parent!==n.parent)return;i=[].concat(function(t){if(Array.isArray(t))return Hc(t)}(o=this.selected)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(o)||function(t,e){if(t){if("string"==typeof t)return Hc(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Hc(t,e):void 0}}(o)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[n])}else i=[n];else i=[n]}this.selected=i}},{key:"onmousedown_comp",value:function(t,e){var r=e.origin;if(this.downpoint=null,t.shiftKey){if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return void this._pendingDecision(t);var n=this.selected.filter((function(t){return!t.isRootModel()&&!!t.parent})),o=n.length>0&&n[0].parent;if(o&&o!==r.parent)return void(r.parent.isGroup()&&this._pendingDecision(t));n.push(r),this.selected=n}else{if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return;this.selected=[r]}}},{key:"onmouseup_comp",value:function(t,e){if(this.downpoint&&this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var r=e.origin,n=this.selected.indexOf(r);if(-1==n&&r.parent.isGroup()&&(n=this.selected.indexOf(r.parent)),-1!==n&&t.shiftKey){var o=this.selected.slice();return n>-1&&o.splice(n,1),void(this.selected=o)}r.parent.isGroup()&&(this.selected=[r])}}},{key:"ondragstart_selbox",value:function(t,e){if(e.origin.stuck){var r=this.transcoordC2S(t.offsetX,t.offsetY),n=r.x,o=r.y;this.selbox={sx:n,sy:o,selected:[]}}}},{key:"ondragmove_selbox",value:function(t,e){var r=e.origin;if(r.stuck){var n=this.transcoordC2S(t.offsetX,t.offsetY),o=n.x,i=n.y;e.deliverer,this.selbox&&(this.selbox.ex=o,this.selbox.ey=i,Yc(this,r,this.selbox,t.shiftKey),this.invalidate())}}},{key:"ondragend_selbox",value:function(t,e){e.origin.stuck&&(this.last_pos=null,this.selbox=null,Yc(this,null,null,!1,!0),this.invalidate())}}])&&Wc(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Kc(t){return Kc="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Kc(t)}function Jc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Kc(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Kc(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Kc(o)?o:String(o)),n)}var o}da.register("selection-layer",Qc);var Zc=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,(r=[{key:"draw",value:function(t,e,r){var n=e.bounds,o=n.left,i=n.top,a=n.width,s=n.height;0!=a&&0!=s&&(t.beginPath(),t.rect(o,i,a,s),t.clip(),t.beginPath(),t.strokeStyle="#f26522",t.lineWidth=4,t.shadowBlur=10,t.shadowColor="black",t.shadowOffsetX=0,t.shadowOffsetY=0,t.rect(o,i,a,s),t.stroke(),t.closePath())}}])&&Jc(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function $c(t){return $c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},$c(t)}function tf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==$c(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==$c(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===$c(o)?o:String(o)),n)}var o}var ef=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,(r=[{key:"draw",value:function(t,e,r){var n=e.bounds;t.beginPath(),t.rect(n.left-4/r.x,n.top-4/r.y,n.width+8/r.x,n.height+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),t.closePath()}}])&&tf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function rf(t){return rf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},rf(t)}function nf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==rf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==rf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===rf(o)?o:String(o)),n)}var o}var of=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,(r=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this,i=r.controls;return!!i&&(i.every((function(i,a){return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a,handler:i.handler}),!o.active})),!!this.active)}},{key:"draw",value:function(t,e,r){var n=e.controls;n&&n.forEach((function(e,n){t.beginPath(),t.lineWidth=1/r.x,t.ellipse(e.x,e.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.fillStyle="#ff5d72",t.fill(),t.strokeStyle="#fff",t.stroke()}))}},{key:"onevent",value:function(t,e){var r=this.active,n=r.handler,o=r.component,i=r.index,a=o.transcoordC2S(e.offsetX,e.offsetY);a=o.transcoordS2P(a.x,a.y),n&&"function"==typeof n[t]&&n[t](a,i,o)}},{key:"onmousedown",value:function(t){this.onevent("onmousedown",t)}},{key:"ondragstart",value:function(t){var e=this.active;e.changes=Du.before([e.component]),this.onevent("ondragstart",t)}},{key:"ondragmove",value:function(t){this.onevent("ondragmove",t)}},{key:"ondragend",value:function(t){this.onevent("ondragend",t);var e=this.active,r=e.component,n=e.changes;Du.after(n,r.app.commander),r.parent&&r.parent.calculateBounds&&r.parent.calculateBounds()}}])&&nf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function af(t){return af="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},af(t)}function sf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==af(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==af(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===af(o)?o:String(o)),n)}var o}function uf(t,e){return Math.atan2(e.y-t.y,e.x-t.x)}var cf=15*Math.PI/180,ff=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,r=[{key:"reset",value:function(){this.active=null,this.created=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this;return!!r.mutable&&(r.path.every((function(i,a){return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a}),!o.active})),!!this.active)}},{key:"startLinkProcess",value:function(t,e,r){try{var n=ec(e,t.app);return t.rootModel.addComponent(n),this.layer.selected=[n],this.active={component:n,index:1},this.ondragstart(r),n}catch(t){console.warn(r)}}},{key:"draw",value:function(t,e,r){if(e.mutable&&!e.stuck){var n=e.path,o=this.active;n.forEach((function(n,i){t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.fillStyle="#fff",o&&o.component===e&&o.index===i&&(t.strokeStyle="#fa7703",o.toFill&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke()}))}}},{key:"ondblclick",value:function(t){var e=this.active.component;if(e.pathExtendable){var r=e.path.slice();r.length<3||(r.splice(this.active.index,1),e.path=r)}}},{key:"onmousedown",value:function(t){this.active.toFill=!0}},{key:"ondragstart",value:function(t){var e=this.active,r=e.index,n=e.component;this.created||(this.active.changes=Du.before([n])),0!==r&&r!==n.path.length-1||(this.layer.counterEnd=0===r?n.toEnd||{fromto:"to"}:n.fromEnd||{fromto:"from"})}},{key:"ondragmove",value:function(t){var e,r,n=this.active||{},o=n.component,i=n.index,a=t.offsetX,s=t.offsetY,u=o.transcoordC2S(a,s);if(u=o.transcoordS2P(u.x,u.y),t.shiftKey){var c=o.path.length,f=o.isLine()&&0==i?o.path[1]:o.path[(i-1+c)%c];f=o.transcoordS2P(f.x,f.y);var l,h=0;c>2&&(o.isLine()?0==i?l=o.path[2]:1!=i&&(l=o.path[i-2]):l=o.path[(i-2+c)%c],l&&(h=uf(l=o.transcoordS2P(l.x,l.y),f)));var p=Math.round((uf(f,u)-h)/cf)*cf+h;u=function(t,e,r){return{x:Math.cos(e)*r+t.x,y:Math.sin(e)*r+t.y}}(f,p,(e=f,r=u,Math.sqrt((r.x-e.x)*(r.x-e.x)+(r.y-e.y)*(r.y-e.y))))}if(0===i||i===o.path.length-1){var y=this.layer.anchorTarget=o.rootModel.capture(a,s,(function(t){return!t.isConnectable()}));if(y){var d=y.transcoordC2S(a,s),v=d.x,g=d.y,b=this.layer.get("scale")||{x:1,y:1},m=this.layer.counterEnd,w=(y.anchors||[]).find((function(t){var e=t.name,r=t.inout,n=t.multiplicity,i=void 0===n?1/0:n,a=t.position,s=t.filter;if(m){var u=m.anchor,c=m.fromto;if(u&&("out"===u.inout&&"out"===r||"in"===u.inout&&"in"===r))return!1;if("from"===c&&"out"===r||"to"===c&&"in"===r)return!1}else console.error("should not be here.");if(Math.abs(v-a.x)>8/b.x||Math.abs(g-a.y)>8/b.y)return!1;var f=y.findInOutLines(e);return!(!f.includes(o)&&(i!==1/0&&f.length>=i||m&&s&&!s.call(t,m)))}));w?0==i?o.from={component:y.get("refid"),anchor:w.name,position:u}:o.to={component:y.get("refid"),anchor:w.name,position:u}:0==i?o.from={position:u}:o.to={position:u}}}o.mutatePath(null,(function(t){t[i]=u}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.changes;if(0===n||n===r.path.length-1){var i=t.offsetX,a=t.offsetY,s=r.rootModel.capture(i,a,(function(t){return t===r||t.isLine()})),u=s.transcoordC2S(i,a),c=u.x,f=u.y,l=this.layer.get("scale")||{x:1,y:1},h=(s.anchors||[]).find((function(t){return t&&Math.abs(c-t.position.x)<=8/l.x&&Math.abs(f-t.position.y)<=8/l.y}));h&&(0==n?r.from={component:s.get("refid"),anchor:h.name}:r.to={component:s.get("refid"),anchor:h.name}),this.layer.endLinkProcess()}if(this.created){var p=new Zu({changes:[{component:this.created,to_container:this.created.parent}]});created.app.commander.execute(p)}else Du.after(o,r.app.commander);r.parent&&r.parent.calculateBounds&&r.parent.calculateBounds()}}],r&&sf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function lf(t){return lf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},lf(t)}function hf(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function pf(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?hf(Object(r),!0).forEach((function(e){yf(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):hf(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function yf(t,e,r){return(e=vf(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function df(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,vf(n.key),n)}}function vf(t){var e=function(t,e){if("object"!==lf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==lf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===lf(e)?e:String(e)}var gf=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,r=[{key:"active",get:function(){var t;return null!==(t=this._active)&&void 0!==t&&t.component.disposed&&(this._active=null),this._active},set:function(t){this._active=t}},{key:"reset",value:function(){this.active=null}},{key:"contains",value:function(t,e,r,n){var o,i,a=this,s=(null===(o=this.active)||void 0===o?void 0:o.component)===r&&(null===(i=this.active)||void 0===i?void 0:i.anchor);this.active=null;var u=this.layer.counterEnd;return(r.isConnectable()&&!r.disposed&&r.anchors||[]).filter((function(t){var e=t.name,n=t.inout,o=t.multiplicity,i=void 0===o?1/0:o,a=t.filter;if(u){var s=u.anchor,c=u.fromto;if(s&&("out"===s.inout&&"out"===n||"in"===s.inout&&"in"===n))return!1;if("from"===c&&"out"===n||"to"===c&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&r.findInOutLines(e).length>=i||a&&u&&!a.call(t,u))})).every((function(o){var i=s===o.name?2:1;return o&&o.position&&Math.abs(t-o.position.x)<=4*i/n.x&&Math.abs(e-o.position.y)<=4*i/n.y&&(a.active={component:r,anchor:o.name,template:o.template}),!a.active})),!!this.active}},{key:"draw",value:function(t,e,r){var n,o;if(e.get("refid")&&!e.isLine()){var i=this.active,a=(null===(n=this.active)||void 0===n?void 0:n.component)===e&&(null===(o=this.active)||void 0===o?void 0:o.anchor),s=this.layer.counterEnd;(e.isConnectable()&&!e.disposed&&e.anchors||[]).filter((function(t){var r=t.name,n=t.inout,o=t.multiplicity,i=void 0===o?1/0:o,a=t.filter;if(s){var u=s.anchor,c=s.fromto;if(u&&("out"===u.inout&&"out"===n||"in"===u.inout&&"in"===n))return!1;if("from"===c&&"out"===n||"to"===c&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&e.findInOutLines(r).length>=i||s&&a&&!a.call(t,s))})).forEach((function(n){var o=n.name,s=n.position,u=a===o?2:1;s&&(t.beginPath(),t.ellipse(s.x,s.y,4*u/r.x,4*u/r.y,0,0,2*Math.PI),t.setLineDash([0,0]),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",i&&i.component===e&&i.anchor===o&&(t.strokeStyle="#fa7703",i.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}},{key:"onmousedown",value:function(t){this.active.focus=!0}},{key:"ondragstart",value:function(t){var e=this.active,r=e.component,n=e.anchor,o=e.template,i=this.layer.transcoordC2S(t.offsetX,t.offsetY);this.layer.startLinkProcess(r,pf(pf({type:"ortholine",lineWidth:1,strokeStyle:"black",begin:"oval",beginSize:"size9",end:"arrow",endSize:"size9",lineDash:"solid",lineCap:"butt",round:10},o),{},{from:{component:r.get("refid"),anchor:n,position:i},to:{position:i}}),t)}},{key:"ondragmove",value:function(t){}},{key:"ondragend",value:function(t){}}],r&&df(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function bf(t){return bf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},bf(t)}function mf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==bf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==bf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===bf(o)?o:String(o)),n)}var o}function wf(t,e,r){var n,o,i=t.bounds,a=i.left,s=i.top,u=i.width,c=i.height;switch(e){case 0:n=a,o=s;break;case 1:n=a+u/2,o=s;break;case 2:n=a+u,o=s;break;case 3:n=a+u,o=s+c/2;break;case 4:n=a+u,o=s+c;break;case 5:n=a+u/2,o=s+c;break;case 6:n=a,o=s+c;break;case 7:n=a,o=s+c/2}var f=n,l=o,h=t.transcoordT2S(r.x,r.y);return{dx:h.x-f,dy:h.y-l}}function xf(t,e,r,n,o,i){var a=t.bounds,s=a.left,u=a.top,c=a.width,f=a.height,l={left:s,top:u,width:c,height:f};switch(e){case 0:s+=n,u+=o,c-=n,f-=o;break;case 1:u+=o,f-=o;break;case 2:u+=o,c+=n,f-=o;break;case 3:c+=n;break;case 4:c+=n,f+=o;break;case 5:f+=o;break;case 6:s+=n,c-=n,f+=o;break;case 7:s+=n,c-=n}if(t.mutateBounds((function(e){return Math.abs(c)<=.001&&(c=.001),Math.abs(f)<=.001&&(f=.001),t.adjustResize({left:s,top:u,width:c,height:f},l,r)}),this),t.isContainer()&&t.layout.ABSOLUTE&&!t.isGroup()){var h=l.left-s,p=l.top-u;i?t.components.forEach((function(t){t.delta("tx",0),t.delta("ty",0),t.move({x:h,y:p},!1)})):t.components.forEach((function(t){t.delta("tx",h),t.delta("ty",p)}))}else{var y=i&&t.parent;y&&y.isGroup()&&y.calculateBounds()}}function kf(t,e){var r=t.left,n=t.top,o=t.width,i=t.height,a=r+o/2,s=n+i/2,u=r+o,c=n+i,f=o*e.x>50,l=i*e.y>50;return[{x:r,y:n},f?{x:a,y:n}:null,{x:u,y:n},l?{x:u,y:s}:null,{x:u,y:c},f?{x:a,y:c}:null,{x:r,y:c},l?{x:r,y:s}:null]}var Sf=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,(r=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this;return!!r.resizable&&(kf(r.bounds,n).every((function(i,a){return i&&Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a}),!o.active})),!!this.active)}},{key:"draw",value:function(t,e,r){if(!e.isLine()){var n=e.bounds,o=n.left,i=n.top,a=n.width,s=n.height;if(t.beginPath(),t.rect(o-4/r.x,i-4/r.y,a+8/r.x,s+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),e.resizable){var u=this.active;kf(e.bounds,r).forEach((function(n,o){n&&(t.beginPath(),t.rect(n.x-4/r.x,n.y-4/r.y,8/r.x,8/r.y),t.setLineDash([0,0]),t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",u&&u.component===e&&u.index===o&&(t.strokeStyle="#fa7703",u.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}}},{key:"onmousedown",value:function(t){this.active.focus=!0}},{key:"ondragstart",value:function(t){var e=this.active.component;this.active.bounds=e.bounds,this.active.boundsList=this.layer.selected.filter((function(t){return t.resizable})).map((function(t){return t.bounds}))}},{key:"ondragmove",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.boundsList,i=e.bounds,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);r.bounds=i;var s=wf(r,n,a);this.layer.selected.filter((function(t){return t.resizable})).forEach((function(e,r){e.bounds=o[r],xf(e,n,t.shiftKey,s.dx,s.dy,!1)}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.boundsList,i=e.bounds,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);r.bounds=i;var s=wf(r,n,a);this.layer.selected.filter((function(t){return t.resizable})).forEach((function(e,r){e.bounds=o[r],xf(e,n,t.shiftKey,s.dx,s.dy,!0)})),this.active.component.app.commander.execute(null,!1)}}])&&mf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function _f(t){return _f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_f(t)}function Of(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==_f(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==_f(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===_f(o)?o:String(o)),n)}var o}var Ef=2*Math.PI,Af=Math.PI/2;function Pf(t,e){var r=t.bounds;return{x:r.left+r.width/2,y:r.top-20/e.y}}var jf=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,(r=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){if(!r.rotatable)return!1;var o=Pf(r,n);return Math.abs(t-o.x)<=4/n.x&&Math.abs(e-o.y)<=4/n.y&&(this.active={component:r},!0)}},{key:"draw",value:function(t,e,r){if(e.rotatable){t.beginPath();var n=Pf(e,r);t.lineWidth=1.5/r.x,t.moveTo(n.x,n.y+20/r.y),t.lineTo(n.x,n.y),t.strokeStyle="#656565",t.stroke(),t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,Ef,!0),t.stroke(),t.fillStyle="#fff",t.fill();var o=this.active;o&&o.component===e&&(t.strokeStyle="#fa7703",t.stroke(),o.toFill&&(t.fillStyle="#ffb80c",t.fill()))}}},{key:"onmousedown",value:function(t){this.active.toFill=!0}},{key:"ondragstart",value:function(t){var e=this.active;e.component,e.start_rotation=e.component.get("rotation"),e.rotations=this.layer.selected.filter((function(t){return t.rotatable})).map((function(t){return t.get("rotation")}))}},{key:"ondragmove",value:function(t){var e=this.active.component,r=e.transcoordC2S(t.offsetX,t.offsetY);r=e.transcoordS2P(r.x,r.y);var n=e.rotatePoint,o=e.get("rotation")||0,i=Math.atan((n.y-r.y)/(n.x-r.x)),a=(i=n.x>=r.x?i-Af:Af+i)-o;this.layer.selected.filter((function(t){return t.rotatable})).forEach((function(e,r){var n=((e.get("rotation")||0)+a)%Ef;e.set("rotation",e.adjustRotation(n,t.shiftKey))}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component;e.rotations,r.app.commander.execute(null,!1)}}])&&Of(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Tf(t){return Tf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Tf(t)}function Mf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Tf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Tf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Tf(o)?o:String(o)),n)}var o}function Rf(){return Rf="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Lf(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Rf.apply(this,arguments)}function If(t,e){return If=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},If(t,e)}function Cf(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Lf(t){return Lf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Lf(t)}var Df=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&If(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Lf(n);if(o){var r=Lf(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Tf(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return Cf(t)}(this,t)});function a(t,e){var r;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=i.call(this,t,e)).pathHandler=new ff(Cf(r));var n=r.pathHandler,o=new of(Cf(r)),s=new Sf(Cf(r)),u=new jf(Cf(r));return r._modelers=[n,o,s,u],r._control_mode_modelers=[o,n,s,u],r.focusOutline=new Zc(Cf(r)),r.groupOutline=new ef(Cf(r)),r.anchorHandler=new gf(Cf(r)),r._reversed_modelers=r._modelers.slice().reverse(),r._control_mode_reverse_modelers=r._control_mode_modelers.slice().reverse(),r.hovered=null,r.hoveredDest=null,r}return e=a,r=[{key:"modelers",get:function(){return this._control_mode?this._control_mode_modelers:this._modelers}},{key:"reversedModelers",get:function(){return this._control_mode?this._control_mode_reverse_modelers:this._reversed_modelers}},{key:"ready",value:function(){Rf(Lf(a.prototype),"ready",this).call(this);var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}},{key:"contains",value:function(t,e){var r=this.selected.filter((function(t){return!!t.parent})),n=this.get("scale")||{x:1,y:1};if(this._state_dragging){if(this._counter_end){var o=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(o.x,o.y,this.anchorTarget,n))return!0}return!0}this.modelers.forEach((function(t){return t.reset()})),r=this.selected.filter((function(t){return!!t.parent}));for(var i=0;i<r.length;i++)for(var a=r[i],s=a.transcoordT2S(t,e),u=0;u<this.modelers.length;u++){var c=this.modelers[u];if(c.contains(s.x,s.y,a,n))return this.currentModeler=c,!0}if(this.anchorTarget){var f=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(f.x,f.y,this.anchorTarget,n))return this.currentModeler=this.anchorHandler,!0}else this.anchorHandler.reset();return this.currentModeler=null,!1}},{key:"_componentDrawer",value:function(t,e,r,n){var o=[],i=e.parent;if(e.isRootModel())return t.save(),n(t,e,r),void t.restore();for(;i&&!i.isRootModel();)o.push(i),i=i.parent;t.save(),o.reverse().forEach((function(e){var r=e.rotatePoint;t.translate(r.x,r.y);var n=e.get("scale");n&&t.scale(n.x,n.y),t.rotate(e.get("rotation")),t.translate(-r.x,-r.y);var o=e.bounds;t.translate(o.left,o.top)}));var a=e.rotatePoint;t.translate(a.x,a.y);var s=e.get("scale");s&&t.scale(s.x,s.y),t.rotate(e.get("rotation")),t.translate(-a.x,-a.y),n(t,e,r),t.restore()}},{key:"prerender",value:function(t){var e=this.model,r=e.translate,n=e.scale,o=void 0===n?{x:1,y:1}:n,i=e.rotation;t.save(),t.beginPath(),t.clearRect(0,0,t.canvas.width,t.canvas.height),t.rect(0,0,t.canvas.width,t.canvas.height),t.fillStyle="black",t.globalAlpha=.5,t.fill(),t.restore(),r&&t.translate(r.x*Bo,r.y*Bo),t.scale(o.x*Bo,o.y*Bo),i&&t.rotate(i),t.clearRect(0,0,this.rootModel.get("width"),this.rootModel.get("height"))}},{key:"render",value:function(t){var e=this;t.beginPath();var r=this.get("scale")||{x:1,y:1},n=this.selected.filter((function(t){return!!t.parent}));if(this.focused&&this._componentDrawer(t,this.focused,r,(function(t,r,n){e.focusOutline.draw(t,r,n)})),n.length>0&&n[0].parent.isGroup()){for(var o=n[0].parent;o.parent.isGroup();)o=o.parent;this._componentDrawer(t,o,r,(function(t,r,n){e.groupOutline.draw(t,r,n)}))}n.forEach((function(n){e._componentDrawer(t,n,r,(function(t,r,n){e.reversedModelers.forEach((function(e){return e.draw(t,r,n)}))}))})),this.anchorTarget&&this._componentDrawer(t,this.anchorTarget,r,(function(t,r,n){e.anchorHandler.draw(t,r,n)}))}},{key:"anchorTarget",get:function(){var t;return this.currentModeler===this.anchorHandler||this.currentModeler===this.pathHandler||null!==(t=this.hovered)&&void 0!==t&&t.isLine()||(this._anchorTarget=this.hovered),this._anchorTarget},set:function(t){this._anchorTarget=t}},{key:"hovered",get:function(){return this._hovered},set:function(t){this._hovered=t,this.invalidate()}},{key:"startLinkProcess",value:function(t,e,r){this.currentModeler=this.pathHandler,this.processingLink=this.pathHandler.startLinkProcess(t,e,r),this.counterEnd=this.processingLink.fromEnd,this.processingLink.trigger("tag")}},{key:"counterEnd",get:function(){return this._counter_end},set:function(t){this.currentModeler=this.pathHandler,this._counter_end=t}},{key:"endLinkProcess",value:function(){var t;null===(t=this.processingLink)||void 0===t||t.trigger("tagreset"),this.processingLink=null,this._counter_end=null}},{key:"eventMap",get:function(){return{"model-layer":{"(all)":{change:this.onchange_model,wheel:this.onwheel_scale,drop:this.ondrop},"(descendant)":{mouseenter:this.onmouseenter,mouseleave:this.onmouseleave},"(self)":{dblclick:this.ondblclick_model}},"(root)":{"(self)":{selected:this.onselected,keydown:this.onkeydown,keyup:this.onkeyup}}}}},{key:"onmouseenter",value:function(t,e){this.hovered=null==e?void 0:e.origin}},{key:"onmouseleave",value:function(t,e){this.hovered=null}},{key:"onkeydown",value:function(t){"Alt"==t.key&&(this._control_mode=!0,this.invalidate())}},{key:"onkeyup",value:function(t){"Alt"==t.key&&(this._control_mode=!1,this.invalidate())}},{key:"onselected",value:function(t,e){this.invalidate()}},{key:"onchange_model",value:function(t,e,r){r.origin===r.deliverer&&(t.translate&&this.set("translate",t.translate),void 0!==t.rotation&&this.set("rotation",t.rotation),t.scale&&this.set("scale",t.scale)),this.invalidate()}},{key:"ondblclick_model",value:function(t,e){var r=e.origin;null==r||r.root.fit()}},{key:"ondblclick",value:function(t){"function"==typeof this.currentModeler.ondblclick&&this.currentModeler.ondblclick(t),this.invalidate()}},{key:"onmousedown",value:function(t){this.currentModeler.onmousedown(t),this.invalidate()}},{key:"onmouseup",value:function(t){"function"==typeof this.currentModeler.onmouseup&&this.currentModeler.onmouseup(t),this.invalidate()}},{key:"ondragstart",value:function(t){this.currentModeler.ondragstart(t),this._state_dragging=!0}},{key:"ondragmove",value:function(t){this.currentModeler.ondragmove(t),this.invalidate()}},{key:"ondragend",value:function(t){this._state_dragging=!1,this.currentModeler.ondragend(t),this.invalidate()}},{key:"ondrop",value:function(t,e){var r=this,n=e.origin,o=t.dataTransfer.files;if(!(o.length<1)){var i=this.rootModel.transcoordC2S(t.offsetX,t.offsetY),a=this.rootModel;Promise.all(Array.from(o).map((function(t){return new Promise((function(e,r){var n=new FileReader;n.addEventListener("loadend",(function(t){e(n.result)})),["error","abort"].forEach((function(t){return n.addEventListener(t,(function(t){r(t)}))})),n.readAsDataURL(t)}))}))).then((function(e){if(t.altKey)return Du.around(r.app.commander,(function(){n.ondropfile(o,e)})),void(r.selected=[n]);var s=[],u=e.map((function(t,e){var r,n=o[e].type,u=o[e].name;return n.startsWith("image/")?(r=ec({type:n.startsWith("image/gif")?"gif-view":"image-view",top:0,left:0,width:200,height:200,src:t},a.app),s.push(new Promise((function(e,n){var o=new Image;o.src=t,o.onload=function(){r.set({width:o.width,height:o.height}),e()},o.onerror=function(t){n(t)}})))):n.startsWith("audio/")?r=ec({type:"audio",top:0,left:0,width:100,height:100,src:t},a.app):n.startsWith("vnd.ms-excel/")||/\.xlsx?$/.test(u)?r=ec({type:"excel",top:0,left:0,width:100,height:100,src:t},a.app):console.log("droped file",o[e]),r&&(r.center=i,i.x+=50,i.y+=50),r})).filter(Boolean).map((function(t){return{component:t,to_container:a}}));u.length>0&&Promise.all(s).then((function(){r.app.commander.execute(new Zu({changes:u})),r.selected=u.map((function(t){return t.component}))}),(function(t){console.error(t)}))}),(function(t){console.error(t)}))}}},{key:"onwheel_scale",value:function(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer;if(t.shiftKey){if(-1!=navigator.userAgent.indexOf("Win"))var n=t.deltaY<0?1:-1;else n=t.deltaX<0?1:-1;Du.around(this.app.commander,(function(){r.selected.forEach((function(t){var e=t.get("fontSize")||zo.FONT_SIZE;e<1&&(e=1),e+=n,t.set("fontSize",e)}))}))}else{n=t.deltaY<0?1:-1;var o=r.get("scale")||{x:1,y:1},i=r.get("translate"),a=t.offsetX,s=t.offsetY,u=r.transcoordC2S(a,s),c=.1*n,f={x:o.x+c,y:o.y+c};if(n<0&&o.x<.2||n>0&&o.x>10)return;r.set("scale",f);var l=r.transcoordC2S(a,s);r.set("translate",{x:i.x+(l.x-u.x)*f.x,y:i.y+(l.y-u.y)*f.y})}}}}],r&&Mf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Bf(t){return Bf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Bf(t)}function Nf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Bf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Bf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Bf(o)?o:String(o)),n)}var o}function Ff(t,e){return Ff=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ff(t,e)}function zf(t){return zf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},zf(t)}da.register("modeling-layer",Df);var Uf=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ff(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=zf(n);if(o){var r=zf(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Bf(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=i.call(this,t,e))._anim_alpha=1,r}return e=a,(r=[{key:"animOnTargetChange",value:function(t){var e=this;t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:function(t){e._anim_alpha=1-t,e.invalidate()},duration:5e3,delta:"circ",ease:"in"}).start())}},{key:"decorate",value:function(t,e,r){var n=t.decorators,o=!1;return n.map((function(t){return"string"==typeof t?ta(t):t})).filter((function(t){return t&&"function"==typeof t})).map((function(n){var i=n(t,e,1-r);o||(o=i)})),o}},{key:"render",value:function(t){var e=this,r=this.decoTargets&&this.decoTargets.filter((function(t){return t.rootModel}));if(!r||0==r.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var n=!1;r.forEach((function(r){e.decorate(r,t,1-e._anim_alpha)&&(n=!0)})),n&&this.animOnTargetChange(this.decoTargets)}},{key:"decoTargets",get:function(){return this._decoTargets},set:function(t){this._decoTargets=t&&t.filter((function(t){return!t.isLayer()})),this.invalidate()}},{key:"eventMap",get:function(){return{"model-layer":{"(descendant)":{tag:this.ondecotag,tagreset:this.ondecotagreset,mouseenter:this.onmouseenter,mouseleave:this.onmouseleave}}}}},{key:"onmouseenter",value:function(t,e){this._decotagreset(),this._ondecotag(e.origin)}},{key:"onmouseleave",value:function(t,e){this._decotagreset()}},{key:"ondecotagreset",value:function(t){this._decotagreset()}},{key:"ondecotag",value:function(t){this._ondecotag(t.origin)}},{key:"offdecotag",value:function(t,e){this._offdecotag(e.origin)}},{key:"_ondecotag",value:function(t){this.decoTargets&&-1!==this.decoTargets.lastIndexOf(t)||(this.decoTargets=(this.decoTargets||[]).concat(t))}},{key:"_offdecotag",value:function(t){if(this.decoTargets){var e=this.decoTargets.slice();e.splice(this.decoTargets.lastIndexOf(t),1),this.decoTargets=e}}},{key:"_decotagreset",value:function(){this.decoTargets=[]}}])&&Nf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Yf(t){return Yf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Yf(t)}function Gf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Yf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Yf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Yf(o)?o:String(o)),n)}var o}function Hf(t,e){return Hf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Hf(t,e)}function Wf(t){return Wf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Wf(t)}da.register("decotag-layer",Uf),da.register("tag-layer",Uf);var Xf=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Hf(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Wf(n);if(o){var r=Wf(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Yf(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=i.call(this,t,e))._anim_alpha=1,r}return e=a,(r=[{key:"animOnTargetChange",value:function(t){var e=this;t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:function(t){e._anim_alpha=1-t,e.invalidate()},duration:1e4,delta:"circ",ease:"inout"}).start())}},{key:"decorate",value:function(t,e,r){var n=t.reactionDecorators,o=!1;return n.map((function(t){return"string"==typeof t?ta(t):t})).filter((function(t){return t&&"function"==typeof t})).map((function(n){var i=n(t,e,1-r);o||(o=i)})),o}},{key:"render",value:function(t){var e=this,r=this.targets&&this.targets.filter((function(t){return t.rootModel}));if(!r||0==r.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var n=!1;r.forEach((function(r){e.decorate(r,t,1-e._anim_alpha)&&(n=!0)})),n&&this.animOnTargetChange(this.targets)}},{key:"targets",get:function(){return this._targets},set:function(t){this._targets=t&&t.filter((function(t){return!t.isLayer()})),this.invalidate()}},{key:"eventMap",get:function(){return{"model-layer":{"(descendant)":{reaction:this.onreaction,reactionreset:this.onreactionreset}}}}},{key:"onreactionreset",value:function(t){this._reactionreset()}},{key:"onreaction",value:function(t){this._onreaction(t.origin)}},{key:"offreaction",value:function(t,e){this._offreaction(e.origin)}},{key:"_onreaction",value:function(t){this.targets&&-1!==this.targets.lastIndexOf(t)||(this.targets=(this.targets||[]).concat(t))}},{key:"_offreaction",value:function(t){if(this.targets){var e=this.targets.slice();e.splice(this.targets.lastIndexOf(t),1),this.targets=e}}},{key:"_reactionreset",value:function(){this.targets=[]}}])&&Gf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function qf(t){return qf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},qf(t)}function Vf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==qf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==qf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===qf(o)?o:String(o)),n)}var o}function Qf(t,e){return Qf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Qf(t,e)}function Kf(t){return Kf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Kf(t)}da.register("reaction-layer",Xf);var Jf=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Qf(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Kf(n);if(o){var r=Kf(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===qf(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"capturable",get:function(){return!0}},{key:"render",value:function(t){var e=this.state.scrolling;if(t.save(),t.beginPath(),t.fillStyle="#777",this.vscroller){var r=this.vscroller,n=r.left,o=r.top,i=r.width,a=r.height;t.globalAlpha="v"==e?1:.3,t.fillRect(n,o,i,a)}if(this.hscroller){var s=this.hscroller,u=s.left,c=s.top,f=s.width,l=s.height;t.globalAlpha="h"==e?1:.3,t.fillRect(u,c,f,l)}t.stroke(),t.restore()}},{key:"contains",value:function(t,e){var r=this.vscroller,n=this.hscroller;return this.setState("scrolling",r&&t>=r.left&&t<=r.left+r.width&&e>=r.top&&e<=r.top+r.height?"v":n&&t>=n.left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height?"h":null),!!this.getState("scrolling")}},{key:"eventMap",get:function(){return{"(root)":{"model-layer":{change:this.onchangeModelLayer}}}}},{key:"onchange",value:function(t){"scrolling"in t&&this.invalidate()}},{key:"ondragstart",value:function(t,e){this.lastPosition={x:t.offsetX,y:t.offsetY}}},{key:"ondragmove",value:function(t,e){var r=this.root,n=this.canvas,o=n.clientWidth,i=n.clientHeight,a=this.rootModel.model,s=a.width,u=a.height,c={x:t.offsetX,y:t.offsetY},f=c.x,l=c.y,h=this._scale,p=h.x,y=h.y,d=this.state.scrolling,v=s/o,g=u/i;d&&r.rootModel.move({x:"h"==d?(-f+this.lastPosition.x)*p*v:0,y:"v"==d?(-l+this.lastPosition.y)*y*g:0},!1),this.lastPosition={x:t.offsetX,y:t.offsetY}}},{key:"ondragend",value:function(){delete this.lastPosition,this.setState({scrolling:null})}},{key:"calcScrollerBounds",value:function(){var t=this.canvas,e=t.clientWidth,r=t.clientHeight,n=this.rootModel.model,o=n.width,i=n.height,a=this._scale||{},s=a.x,u=void 0===s?1:s,c=a.y,f=void 0===c?1:c,l=this._translate||{},h=l.x,p=void 0===h?0:h,y=l.y,d=void 0===y?0:y,v=o/e,g=i/r,b={left:-p/u/v,top:r-10,width:e/u/v,height:10};this.hscroller=b.left>1||b.width+b.left<e-1?b:null,b={left:e-10,top:-d/f/g,width:10,height:r/f/g},this.vscroller=b.top>1||b.height+b.top<r-1?b:null,this.invalidate()}},{key:"onchangeModelLayer",value:function(t,e,r){if(t.scale){var n=(null==t?void 0:t.scale)||{},o=n.x,i=void 0===o?1:o,a=n.y,s=void 0===a?1:a;this._scale={x:i,y:s},this.calcScrollerBounds()}if(t.translate){var u=t.translate||{},c=u.x,f=void 0===c?0:c,l=u.y,h=void 0===l?0:l;this._translate={x:f,y:h},this.calcScrollerBounds()}}}])&&Vf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Zf(t){return Zf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Zf(t)}function $f(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Zf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Zf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Zf(o)?o:String(o)),n)}var o}function tl(){var t=arguments,e=t[t.length-1],r=this.event_pump;r.listeners.forEach((function(n){!function(t,e,r,n,o){for(var i in r){var a=r[i];if(Xo(i,n.origin,0,t))for(var s in a){var u=a[s];s==n.name&&(n.listener=e,u.apply(e,o))}}}(r.deliverer,n.listener,n.cloned_handlers,e,t)}))}da.register("scroll-layer",Jf);var el=function(){function t(e){if(function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),void 0===e.on)throw new Error("Deliverer should be a event handlable object.");this.deliverer=e,this.listeners=[]}var e,r;return e=t,r=[{key:"start",value:function(){this.deliverer.on("(all)",tl,{event_pump:this})}},{key:"stop",value:function(){this.deliverer.off("(all)",tl)}},{key:"on",value:function(t,e){var r=Object.assign({},e);Object.keys(r).forEach((function(e){if(0==e.indexOf("?")){var n=r[e],o=e.substr(1),i=t.get(o);delete r[e],i?r[i]=n:$n("EventPump#on","variable #{selector} is not evaluated on listener")}})),this.listeners.push({listener:t,handlers:e,cloned_handlers:r})}},{key:"off",value:function(t,e){for(var r=0;r<this.listeners.length;r++){var n=this.listeners[r];n.listener!==t||e&&n.handlers!==e||this.listeners.splice(r,1)}}},{key:"clear",value:function(){this.listeners=[]}},{key:"dispose",value:function(){this.stop(),this.clear()}}],r&&$f(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function rl(t){return rl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},rl(t)}function nl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==rl(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==rl(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===rl(o)?o:String(o)),n)}var o}var ol=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.eventMaps=[],this.root=e,e.eventMap&&this.add(e,e.eventMap)}var e,r;return e=t,r=[{key:"root",get:function(){return this._root},set:function(t){this._root=t}},{key:"stop",value:function(){this.eventMaps.forEach((function(t){return t.eventPump.stop()}))}},{key:"add",value:function(t,e){var r=this;if(this.root){var n=function(){var n=e[o];if("(self)"===o&&void 0===t.on)throw new Error("(self) selector not available when deliverer is not a event handlable object.");Qo(o,r.root,t).forEach((function(o){var i=new el(o);i.on(t,n),i.start(),r.eventMaps.push({eventPump:i,listener:t,handlerMap:e,deliverer:o})}))};for(var o in e)n()}}},{key:"remove",value:function(t,e){for(var r=this.eventMaps.slice(0),n=0;n<r.length;n++){var o=r[n];o.listener!==t||e&&o.handlerMap!==e||(this.eventMaps.splice(n,1),o.eventPump.dispose())}}},{key:"clear",value:function(){this.eventMaps.slice(0).forEach((function(t){return t.eventPump.dispose()})),this.eventMaps=[]}},{key:"dispose",value:function(){this.stop(),this.clear()}}],r&&nl(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function il(t){return il="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},il(t)}function al(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function sl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==il(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==il(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===il(o)?o:String(o)),n)}var o}function ul(t,e,r){return e&&sl(t.prototype,e),r&&sl(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}var cl={},fl=0,ll=function(){function t(e,r){al(this,t),this._type=r||e.type,this._ctrlKey=e.ctrlKey,this._altKey=e.altKey,this._shiftKey=e.shiftKey,this._metaKey=e.metaKey;var n=function(t){if(t.touches){var e=t.touches[0];if(!e)return cl;var r=e.target.getBoundingClientRect();return cl={x:t.offsetX||e.clientX-(r.x||r.left),y:t.offsetY||e.clientY-(r.y||r.top)}}return{x:t.offsetX,y:t.offsetY}}(e);if(this._offsetX=n.x,this._offsetY=n.y,"wheel"==e.type)this.deltaX=e.deltaX,this.deltaY=e.deltaY,this.deltaZ=e.deltaZ;else if("drop"==e.type)this.dataTransfer=e.dataTransfer;else if(e.type.match(/^touch/)&&(this._scale=e.scale,this._touches=e.touches,this._changedTouches=e.changedTouches,null==this._scale)){var o=function(t){var e,r,n=0,o=0;if(1===t.touches.length)return 0;Array.from(t.touches).forEach((function(t){e=null!=e?Math.min(t.screenX,e):t.screenX,n=Math.max(t.screenX,n),r=null!=r?Math.min(t.screenY,r):t.screenY,o=Math.max(t.screenY,o)}));var i=n-e||0,a=o-r||0;return Math.sqrt(Math.pow(i,2)+Math.pow(a,2))||0}(e);fl>0&&(this._scale=o/fl),fl=o}}return ul(t,[{key:"type",get:function(){return this._type},set:function(t){this._type=t}},{key:"offsetX",get:function(){return this._offsetX}},{key:"offsetY",get:function(){return this._offsetY}},{key:"altKey",get:function(){return this._altKey}},{key:"ctrlKey",get:function(){return this._ctrlKey}},{key:"shiftKey",get:function(){return this._shiftKey}},{key:"metaKey",get:function(){return this._metaKey}},{key:"touches",get:function(){return this._touches}},{key:"changedTouches",get:function(){return this._changedTouches}},{key:"scale",get:function(){return this._scale}},{key:"stopPropagation",value:function(){this._stop_=!0}},{key:"isPropagationStopped",value:function(){return this._stop_}}]),t}();function hl(t,e){return t.capture(e.offsetX,e.offsetY)}function pl(t,e,r){if(t&&t.app&&(!t.app.isViewMode||!t.hidden)){r instanceof ll&&e===r.type||(r=new ll(r,e));var n="on"+e;t[n]&&t[n](r),r.isPropagationStopped()||t.trigger(e,r)}}var yl=function(){function t(e,r){var n=this;al(this,t),this.container=e,this.html_element=r,this.status=0,this.last_target=null,this.gesture_handlers=No.map((function(t){return n.gestureHandlerBuilder(t)})),this.keyevent_handlers=Fo.map((function(t){return n.keyeventHandlerBuilder(t)})),No.forEach((function(t,e){return r.addEventListener(t,n.gesture_handlers[e])})),Fo.forEach((function(t,e){return r.addEventListener(t,n.keyevent_handlers[e])})),r.ondragover=this.gestureHandlerBuilder("dragover"),r.ondrop=this.gestureHandlerBuilder("drop"),r.tabIndex=1}return ul(t,[{key:"dispose",value:function(){var t=this;this.last_enter_target&&pl(this.last_enter_target,"mouseleave",new CustomEvent("mouseleave")),No.forEach((function(e,r){return t.html_element.removeEventListener(e,t.gesture_handlers[r])})),Fo.forEach((function(e,r){return t.html_element.removeEventListener(e,t.keyevent_handlers[r])})),delete this.gesture_handlers,delete this.keyevent_handlers,delete this.last_target}},{key:"gestureHandlerBuilder",value:function(t){var e=this["on".concat(t)].bind(this);return function(t){return e(new ll(t))&&t.preventDefault(),!1}}},{key:"keyeventHandlerBuilder",value:function(t){return this["on".concat(t)].bind(this)}},{key:"ondragover",value:function(t){return pl(hl(this.container,t),t.type,t),!1}},{key:"ondrop",value:function(t){return pl(hl(this.container,t),t.type,t),!1}},{key:"ondblclick",value:function(t){return pl(hl(this.container,t),t.type,t),this.last_target=null,!1}},{key:"onkeydown",value:function(t){return this.container.trigger(t.type,t),!1}},{key:"onkeyup",value:function(t){return this.container.trigger(t.type,t),!1}},{key:"onmousemove",value:function(t){switch(this.status){case 1:var e=t.offsetX-this.__dragstart_e.offsetX,r=t.offsetY-this.__dragstart_e.offsetY;if(e*e+r*r<16)break;this.status=2,pl(this.last_target,"dragstart",this.__dragstart_e),this.__dragmove_e=t,pl(this.last_target,"dragmove",t);break;case 2:this.__dragmove_e=t,pl(this.last_target,"dragmove",t);break;default:var n=hl(this.container,t);this.last_enter_target!==n&&(this.last_enter_target&&pl(this.last_enter_target,"mouseleave",t),n&&pl(n,"mouseenter",t),this.last_enter_target=n),pl(n,t.type,t),this.last_target=n}return!1}},{key:"onmousedown",value:function(t){if(2===this.status)pl(this.last_target,"dragend",t),this.last_target=null,this.status=0;else{var e=hl(this.container,t);this.last_target=e,this.status=1,this.__dragstart_e=t,pl(e,t.type,t)}return!1}},{key:"onmouseup",value:function(t){if(2===this.status)pl(this.last_target,"dragend",t);else{var e=hl(this.container,t);pl(e,t.type,t),this.last_target===e&&pl(e,"click",t)}return this.last_target=null,this.status=0,!1}},{key:"onmouseout",value:function(t){var e=hl(this.container,t);if(2===this.status)pl(this.last_target,"dragend",t);else{if(this.last_target&&this.last_target===e)return;this.last_enter_target&&(pl(this.last_enter_target,"mouseleave",t),delete this.last_enter_target)}return this.last_target=null,this.status=0,!1}},{key:"ontouchstart",value:function(t){var e=this,r=hl(this.container,t);return this.last_target=r,this.status=1,this.touchPoints||(this.touchPoints=[]),this.touchPoints.push(t.changedTouches[0]),this.holdTimer=setTimeout((function(){e.status=0,pl(e.last_target,"hold",t),delete e.holdTimer}),500),pl(r,t.type,t),!1}},{key:"ontouchmove",value:function(t){var e=this;if(!t.touches||!t.changedTouches)return pl(this.last_target,"dragstart",t),pl(this.last_target,"dragmove",t),!1;var r=hl(this.container,t);switch(this.status){case 1:Array.from(t.changedTouches).forEach((function(t){var r=e.touchPoints.find((function(e){return e.identifier===t.identifier}));if(r){var n=r.clientX-t.clientX,o=r.clientY-t.clientY;return Math.sqrt(Math.pow(n,2)+Math.pow(o,2))>=16?(e.status=2,void(e.holdTimer&&(clearTimeout(e.holdTimer),delete e.holdTimer))):void 0}}));break;case 2:if(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer),2===t.changedTouches.length&&null!=t.scale&&1!==t.scale&&(t.scale<.9||t.scale>1.1))return pl(this.last_target,"pinch",t),!1;pl(this.last_target,"pan",t),r=this.last_target;break;default:this.last_enter_target!==r&&(this.last_enter_target&&pl(this.last_enter_target,"mouseleave",t),r&&pl(r,"mouseenter",t),this.last_enter_target=r),this.last_target=r}return pl(r,"touchmove",t),!1}},{key:"ontouchend",value:function(t){var e=hl(this.container,t);switch(this.status){case 2:e=this.last_target;break;case 1:var r=performance.now(),n=r-this.touchedAt;this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer,pl(e,n<500?"doubletap":"tap",t),this.touchedAt=r)}pl(e,"touchend",t);var o=this.touchPoints.findIndex((function(e){return e.identifier===t.changedTouches[0].identifier}));return this.touchPoints.splice(o,1),this.last_target=null,this.status=0,!1}},{key:"onwheel",value:function(t){return pl(hl(this.container,t),t.type,t),!1}}]),t}(),dl={};const vl={register:function(t,e){dl[t]=e},unregister:function(t){delete dl[t]},get:function(t){return dl[t]}};function gl(t){if(t.hasTextProperty&&!t.textHidden){var e=t.model,r=e.text,n=void 0===r?"":r,o=e.bold,i=void 0===o?zo.BOLD:o,a=e.italic,s=void 0===a?zo.ITALIC:a,u=e.textWrap,c=void 0===u?zo.TEXT_WRAP:u,f=e.fontFamily,l=void 0===f?zo.FONT_FAMILY:f,h=e.fontColor,p=void 0===h?zo.FONT_COLOR:h,y=e.textAlign,d=void 0===y?zo.TEXT_ALIGN:y,v=e.textBaseline,g=void 0===v?zo.TEXT_BASELINE:v,b=e.fontSize,m=void 0===b?zo.FONT_SIZE:b,w=e.lineHeight,x=void 0===w?1.2*m:w,k=t.textBounds,S=k.left,_=k.top,O=k.width,E=k.height;m||(m=zo.FONT_SIZE),x||(x=1.2*m),t.textHidden=!0;var A=document.createElement("textarea");No.forEach((function(t){A.addEventListener(t,(function(t){t.stopPropagation()}),!0)}));var P=t.transcoordS2C(S,_),j=function(t){for(var e=0,r=1,n=t;n;){e+=n.get("rotation")||0;var o=n.get("scale")||{x:1,y:1},i=o.x,a=o.y;r*=Math.max(i,a)||1,n=n.parent}return{rotation:e,scale:r}}(t),T=j.rotation,M=j.scale;switch(A.style.position="absolute",A.style.width=O+"px",A.style.height=E+"px",A.value=n,A.style.fontFamily=l,A.style.fontSize=m+"px",A.style.lineHeight=x+"px",A.style.overflow="hidden",A.style.resize="none",A.style.outline="none",A.style.border=0,A.style.backgroundColor="transparent",A.style.display="inline-block",A.style.color=p,i&&(A.style.fontWeight="bold"),s&&(A.style.fontStyle="italic"),d){case"right":case"end":A.style.textAlign="right";break;case"justify":A.style.textAlign="justify";break;case"left":case"start":A.style.textAlign="left";break;default:A.style.textAlign="center"}var R=[i,s,m+"px",l].filter(Boolean).join(" ");B(n);var I=t.root.target_element;I.appendChild(A),A.select();var C,L=!1;A.addEventListener("keydown",(function(t){t.stopPropagation(),"Escape"!=t.code&&(t.shiftKey||"Enter"!=t.code&&"NumpadEnter"!=t.code)?setTimeout((function(){B(A.value)})):(L=C.skipUpdate="Escape"==t.code,document.createEvent?A.dispatchEvent(C):A.fireEvent(C.eventType,C))})),document.createEvent?(C=document.createEvent("HTMLEvents")).initEvent("blur",!0,!1):(C=document.createEventObject()).eventType="blur";var D=t.root.selected;A.addEventListener("blur",(function e(r){t.root.selected=D,t.textHidden=!1,A.removeEventListener("blur",e,!1),A.parentElement&&A.parentElement.removeChild(A),I.focus(),r.skipUpdate||L||t.app.commander.execute(new Du({changes:[{component:t,before:{text:n},after:{text:A.value}}]}))}),!1)}function B(e){var r={left:0,top:0},n=x*function(t,e,r,n){var o,i=t.getContext();return i.save(),i.font=r,o=xi(i,e,n,t.get("textWrap")).length,i.restore(),o}(t,e,R,O);switch(A.style.height=n+"px",g){case"top":case"hanging":break;case"bottom":case"alphabetic":r.top=E-n;break;default:r.top=E/2-n/2}if(!c){var o=function(t,e,r,n){var o=e.split("\n"),i=n,a=t.getContext();return a.save(),a.font=r,o.forEach((function(t){var e=a.measureText(t).width;e>i&&(i=e)})),a.restore(),i}(t,e,R,O);switch(A.style.width=o+"px",d){case"right":case"end":r.left=O-o;break;case"left":case"start":break;default:r.left=(O-o)/2}}A.style.marginLeft=r.left+"px",A.style.marginTop=r.top+"px";var i="translate(".concat(P.x,"px, ").concat(P.y,"px) scale(").concat(M,") rotate(").concat(T,"rad)");["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){A.style[t+"transform"]=i,A.style[t+"transform-origin"]="".concat(-r.left,"px ").concat(-r.top,"px")}))}}vl.register("text-editor",{"(root)":{"(self)":{keydown:function(t,e){e.origin;var r=e.deliverer.selected;return!(1!==r.length||!r[0].hasTextProperty||"Enter"!=t.code&&"NumpadEnter"!=t.code||(gl(r[0]),t.preventDefault(),0))}}},"model-layer":{"(descendant)":{dblclick:function(t,e){gl(e.origin)}}}});var bl,ml,wl,xl=Ni((function(t,e,r){if(r)t.focused=null;else{var n=[];e[0].parent.isGroup()?t.focused=e[0].parent:(e.forEach((function(t){t.path.forEach((function(e){n.push(t.transcoordS2T(e.x,e.y))}))})),t.focused=t.capturePath(n,e))}}),300);vl.register("move-handler",{"model-layer":{"(descendant)":{dragstart:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected,i=n.selected.filter((function(t){return!t.stuck}));if(o.length!==i.length&&(o=n.selected=i),0!=o.length){var a=o[0].transcoordC2S(t.offsetX,t.offsetY);if(a=o[0].transcoordS2P(a.x,a.y),this.last_pos=a,this.direction=0,n.focused=o[0].parent,t.altKey){var s=[],u=new Map;n.selected=n.selected.filter((function(t){return!t.isRootModel()})).map((function(t){var e=rc(t,(function(t){var e=n.root.getNewRefid();return void 0!==t&&u.set(t,e),e}));return s.push({component:e,to_container:t.parent}),e})).map((function(t){return t.replaceRefids(u),t})),s.forEach((function(t){var e=t.component;t.to_container.addComponent(e)})),this.duplicates=n.selected.map((function(t){return{component:t}}))}else this.changes=Du.before(o)}}},dragmove:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected;if(0!=o.length){var i=o[0].transcoordC2S(t.offsetX,t.offsetY),a=i.x,s=i.y,u=o[0].transcoordS2P(a,s);t.shiftKey?2==this.direction&&(this.direction=0):this.direction=2;var c=u.x-this.last_pos.x,f=u.y-this.last_pos.y;if(0==this.direction){if(c*c+f*f<25)return;Math.abs(c)>Math.abs(f)?this.direction=3:this.direction=4}3==this.direction?f=0:4==this.direction&&(c=0),o.forEach((function(t){t.move({x:c,y:f},1===o.length)})),this.last_pos=u,xl(n,o)}}},dragend:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected;if(0!=o.length){var i=o[0].parent,a=n.focused||e.deliverer;if(this.changes&&!a.isGroup())if(a&&a!==i){var s=this.changes.map((function(t){var e=t.component;return t.before,{component:e,to_container:a}}));n.app.commander.execute(new Zu({changes:s}))}else Du.after(this.changes,n.app.commander);else if(this.duplicates){this.duplicates=this.duplicates.map((function(t){return t.to_container=a,t}));var u=new Zu({changes:this.duplicates});n.app.commander.execute(u)}o.forEach((function(t){t.parent&&t.parent.calculateBounds&&t.parent.calculateBounds()})),this.last_pos=null,this.changes=null,this.duplicates=null,xl(n,o,!0)}}}}},"(root)":{"(self)":{keydown:function(t,e){var r=e.origin,n=e.deliverer,o={},i=t.shiftKey?r.rootModel.MPP:1;switch(t.which){case 37:o.x=-i,o.y=0;break;case 38:o.x=0,o.y=-i;break;case 39:o.x=i,o.y=0;break;case 40:o.x=0,o.y=i;break;default:return}var a=n.selected;Du.around(n.app.commander,(function(){a.forEach((function(t){!t.stuck&&t.move(o,!1)}))}))}}}});var kl=Fi((function(){var t=wl,e=t.x,r=t.y,n=ml.deref();n&&(n.rootModel.move({x:e-bl.x,y:r-bl.y},!1),bl={x:e,y:r})}),60,{leading:!0,trailing:!0});function Sl(t){return Sl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Sl(t)}function _l(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=jl(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){s=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(s)throw i}}}}function Ol(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(t,e)||jl(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function El(){El=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,o){var i=e&&e.prototype instanceof h?e:h,a=Object.create(i.prototype),s=new O(o||[]);return n(a,"_invoke",{value:x(t,r,s)}),a}function f(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var l={};function h(){}function p(){}function y(){}var d={};u(d,i,(function(){return this}));var v=Object.getPrototypeOf,g=v&&v(v(E([])));g&&g!==e&&r.call(g,i)&&(d=g);var b=y.prototype=h.prototype=Object.create(d);function m(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function w(t,e){function o(n,i,a,s){var u=f(t[n],t,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==Sl(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,s)}),(function(t){o("throw",t,a,s)})):e.resolve(l).then((function(t){c.value=t,a(c)}),(function(t){return o("throw",t,a,s)}))}s(u.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===l)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=f(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===l)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function k(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,k(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),l;var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,l;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,l):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,l)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function E(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(Sl(t)+" is not iterable")}return p.prototype=y,n(b,"constructor",{value:y,configurable:!0}),n(y,"constructor",{value:p,configurable:!0}),p.displayName=u(y,s,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===p||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,y):(t.__proto__=y,u(t,s,"GeneratorFunction")),t.prototype=Object.create(b),t},t.awrap=function(t){return{__await:t}},m(w.prototype),u(w.prototype,a,(function(){return this})),t.AsyncIterator=w,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new w(c(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},m(b),u(b,s,"Generator"),u(b,i,(function(){return this})),u(b,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=E,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,l):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),l},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),l}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:E(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),l}},t}function Al(t,e,r,n,o,i,a){try{var s=t[i](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,o)}function Pl(t){return function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function a(t){Al(i,n,o,a,s,"next",t)}function s(t){Al(i,n,o,a,s,"throw",t)}a(void 0)}))}}function jl(t,e){if(t){if("string"==typeof t)return Tl(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Tl(t,e):void 0}}function Tl(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Ml(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Sl(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Sl(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Sl(o)?o:String(o)),n)}var o}function Rl(){return Rl="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Ll(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Rl.apply(this,arguments)}function Il(t,e){return Il=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Il(t,e)}function Cl(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Ll(t){return Ll=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ll(t)}vl.register("shift-handler",{"model-layer":{"(all)":{dragstart:function(t,e){bl={x:t.offsetX,y:t.offsetY}},dragmove:function(t,e){ml=new WeakRef(e.deliverer),wl={x:t.offsetX,y:t.offsetY},kl()}}}}),vl.register("zoom-handler",{"model-layer":{"(all)":{wheel:function(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer,n=t.deltaY<0?1:-1,o=r.get("scale")||{x:1,y:1},i=r.get("translate"),a=t.offsetX,s=t.offsetY,u=r.transcoordC2S(a,s),c=.1*n,f={x:o.x+c,y:o.y+c};if(!(n<0&&o.x<.2||n>0&&o.x>10)){r.set("scale",f);var l=r.transcoordC2S(a,s);r.set("translate",{x:i.x+(l.x-u.x)*f.x,y:i.y+(l.y-u.y)*f.y})}}}},"(self)":{dblclick:function(t,e){var r=e.origin;null==r||r.root.fit()}}}});var Dl=[],Bl=Ni((function(){Dl.forEach((function(t){t.resize()}))}),100);"undefined"!=typeof window&&window.addEventListener("resize",Bl);var Nl=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Il(t,e)}(u,t);var e,r,n,o,i,a,s=(i=u,a=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ll(i);if(a){var r=Ll(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Sl(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return Cl(t)}(this,t)});function u(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,u),(r=s.call(this,Object.assign({type:"root",scale:{x:1,y:1}},t||{}),e))._maxRefid=0,t=t||{},r.fitMode=t.model&&t.model.fitMode,r._app=e,r.style=t.style,r.target_element=t.target_element,r.rebuildContentModel(r.model.model),Dl.push(Cl(r)),r}return e=u,r=[{key:"dispose",value:function(){Ka.hideAll(this),this._app&&this._app.dispose(),Rl(Ll(u.prototype),"dispose",this).call(this),this._disposeAllResources(),this.target_element=null,delete this._refresh_mapping_debouncer;var t=Dl.indexOf(this);t>=0&&Dl.splice(t,1),this.refidIndexMap.clear(),this._maxRefid=0}},{key:"isRoot",value:function(){return!0}},{key:"app",get:function(){return this._app}},{key:"target_element",get:function(){return this._target_element},set:function(t){this._ua_event_handler&&(this._ua_event_handler.dispose(),delete this._ua_event_handler),t&&(t.style.position="absolute",t.style.cursor="default",t.style.overflow="hidden",this._ua_event_handler=new yl(this,t)),this.forEach((function(e){return e.target=t})),this._target_element=t}},{key:"unitScale",get:function(){switch(this.model_layer&&this.model_layer.get("unit")){case"mm":case"cm":case"in":return this.app.PPM/10;default:return 1}}},{key:"addTemplate",value:function(t,e){var r=this.templateMap[t];r&&Zn("Template replaced (duplicated)",t,e,r),this.templateMap[t]=e,delete this.templatePrefixes}},{key:"removeTemplate",value:function(t,e){var r=this.templateMap[t];r!==e?$n("Removing template failed (different)",t,e,r):delete this.templateMap[t],delete this.templatePrefixes}},{key:"findTemplateFor",value:function(t){this.templatePrefixes||(this.templatePrefixes=Object.keys(this.templateMap).sort().reverse());var e=this.templatePrefixes.find((function(e){return t.startsWith(e)}));if(e)return this.templateMap[e]}},{key:"addIndex",value:function(t,e){var r,n=this.indexMap[t]||[];this.indexMap[t]=[].concat(function(t){if(Array.isArray(t))return Tl(t)}(r=n)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(r)||jl(r)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[e])}},{key:"removeIndex",value:function(t,e){var r=this.indexMap[t]||[],n=r.indexOf(e);-1==n?$n("Removing index failed (not found)",t,e):(r.splice(n,1),0==r.length&&delete this.indexMap[t])}},{key:"addRefidIndex",value:function(t,e){void 0===t&&(t=this.getNewRefid(),e.set("refid",t)),this._maxRefid=Math.max(t,this._maxRefid);var r=this.refidIndexMap.get(t);r&&Zn("Refid Index replaced (has not to be)",t,e,r),this.refidIndexMap.set(t,e)}},{key:"removeRefidIndex",value:function(t,e){if(null!=t){var r=this.refidIndexMap.get(t);r!==e?Zn("Refid Removing index failed (has not to be)",t,e,r):this.refidIndexMap.delete(t)}}},{key:"getNewRefid",value:function(){return this._maxRefid=(this._maxRefid||0)+1,this._maxRefid}},{key:"subscribe",value:(o=Pl(El().mark((function t(e,r){return El().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!(this._app.isViewMode&&e&&this._app)){t.next=4;break}return t.next=3,this._app.subscribe(e,r);case 3:r._subscription=t.sent;case 4:case"end":return t.stop()}}),t,this)}))),function(t,e){return o.apply(this,arguments)})},{key:"unsubscribe",value:(n=Pl(El().mark((function t(e,r){return El().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!r._subscription){t.next=4;break}return t.next=3,r._subscription.unsubscribe();case 3:delete r._subscription;case 4:case"end":return t.stop()}}),t)}))),function(t,e){return n.apply(this,arguments)})},{key:"findById",value:function(t){return(this.indexMap[t.replace(/^#/,"")]||[])[0]}},{key:"findAllById",value:function(t){return this.indexMap[t.replace(/^#/,"")]||[]}},{key:"findByRefid",value:function(t){return this.refidIndexMap.get(t)}},{key:"findOrCreate",value:function(t){var e=this.findAllById(t);if(!e&&this.app&&!this.app.isEditMode){var r=this.findTemplateFor(t);if(r){var n=Object.assign(Eo(r.hierarchy),{id:t,templatePrefix:""});return component=ec(n,this.app),this.model_layer.addComponent(component),[component]}}return e}},{key:"resize",value:function(){this.components.forEach((function(t){t.resize&&t.resize()})),this.invalidate()}},{key:"_disposeAllResources",value:function(){var t=this;this.selected=[],this._focused=null,this._ready=!1,this.eventEngine&&(this.assist_handlers&&this.assist_handlers.forEach((function(e){t.eventEngine.remove(e)})),this.eventEngine.dispose(),delete this.eventEngine),this.assist_layers&&this.assist_layers.forEach((function(e){e.dispose(),t.removeComponent(e)})),delete this.assist_layers,this.model_layer&&this.model_layer.dispose(),this.model_layer&&this.removeComponent(this.model_layer),delete this.model_layer,this.indexMap={},this.refidIndexMap=new Map,this.templateMap={}}},{key:"rebuildContentModel",value:function(t){var e=this;this._disposeAllResources(),this.eventEngine=new ol(this),(t=t||{}).type="model-layer",this.model_layer=ec(t,this.app),this.addComponent(this.model_layer),this.model_layer.target=this.target_element,this.assist_layers=(this.model.layers||[]).map((function(t){var r=ec(t,e.app);return e.addComponent(r),r.target=e.target_element,r})),this.assist_handlers=(this.model.handlers||[]).map((function(t){var r={};return e.eventEngine.add(r,vl.get(t)),r})),this._ready=!0,this.traverse((function(t){return t.ready()}))}},{key:"root",get:function(){return this}},{key:"anchors",get:function(){}},{key:"isReady",get:function(){return this._ready}},{key:"rootModel",get:function(){return this.model_layer}},{key:"stuck",get:function(){return!0}},{key:"data",get:function(){return Object.values(this.indexMap).reduce((function(t,e){var r=Ol(e,1)[0];return t[r.model.id]=r.data,t}),{})},set:function(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((function(r){return r.data=t[e]}))}}},{key:"dataByRefid",get:function(){var t,e={},r=_l(this.refidIndexMap.entries());try{for(r.s();!(t=r.n()).done;){var n=Ol(t.value,2),o=n[0],i=n[1];e[o]=i.data}}catch(t){r.e(t)}finally{r.f()}return e},set:function(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.data=t[e])}}},{key:"values",get:function(){return Object.values(this.indexMap).reduce((function(t,e){var r=Ol(e,1)[0];return t[r.model.id]=r.value,t}),{})},set:function(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((function(r){return r.value=t[e]}))}}},{key:"valuesByRefid",get:function(){var t,e={},r=_l(this.refidIndexMap.entries());try{for(r.s();!(t=r.n()).done;){var n=Ol(t.value,2),o=n[0],i=n[1];e[o]=i.value}}catch(t){r.e(t)}finally{r.f()}return e},set:function(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.value=t[e])}}},{key:"selected",get:function(){return(this._selected||[]).filter((function(t){return t.parent}))},set:function(t){var e=this._selected;this._selected=t,this.trigger("selected",t,e)}},{key:"focused",get:function(){return this._focused},set:function(t){this._focused!==t&&(this._focused=t,this.invalidate())}},{key:"style",get:function(){return this._style},set:function(t){this._style=t,this._compiled_style=t}},{key:"hasTextProperty",get:function(){return!1}},{key:"render",value:function(){this.components.forEach((function(t){return t.draw()}))}},{key:"contains",value:function(t,e){return!0}},{key:"capturePath",value:function(t,e){return this.model_layer.capturePath(t,e)}},{key:"invalidate",value:function(){this.components.forEach((function(t){return t.invalidate()}))}},{key:"eventMap",get:function(){return{"(root)":{"(descendant)":{added:this.onadded,removed:this.onremoved,change:this.onchanged}}}}},{key:"refreshMappings",value:function(){if(!this._refresh_mapping_debouncer){if(this.disposed)return;this._refresh_mapping_debouncer=Ni((function t(e){e.executeMappings(),e.components&&e.components.forEach((function(e){return t(e)}))}),1e3)}this._refresh_mapping_debouncer(this.model_layer)}},{key:"_addTraverse",value:function(t){var e=this;t.components&&t.components.forEach((function(t){return e._addTraverse(t)}));var r=t.model,n=r.id,o=r.refid,i=r.tag,a=r.templatePrefix;this.addRefidIndex(o,t),n&&this.addIndex(n,t),i&&this.subscribe(i,t),a&&this.addTemplate(a,t);var s=mn({},t.eventMap,t.model.eventMap);this.eventEngine.add(t,s)}},{key:"_removeTraverse",value:function(t){var e=this;t.components&&t.components.forEach((function(t){return e._removeTraverse(t)}));var r=t.model,n=r.id,o=r.refid,i=r.tag,a=r.templatePrefix;this.removeRefidIndex(o,t),n&&this.removeIndex(n,t),i&&this.unsubscribe(i,t),a&&this.removeTemplate(a,t),this.eventEngine.remove(t)}},{key:"onadded",value:function(t,e){this._addTraverse(e),this.refreshMappings(),this.invalidate()}},{key:"onremoved",value:function(t,e){this._removeTraverse(e),this.invalidate()}},{key:"onchanged",value:function(t,e,r){e.templatePrefix&&this.removeTemplate(e.templatePrefix,r.origin),t.templatePrefix&&this.addTemplate(t.templatePrefix,r.origin),e.id&&this.removeIndex(e.id,r.origin),t.id&&this.addIndex(t.id,r.origin),e.tag&&this.unsubscribe(e.tag,r.origin),t.tag&&this.subscribe(t.tag,r.origin),e.id==t.id&&e.class==t.class||this.refreshMappings()}}],r&&Ml(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),u}(Ss);Object.assign(Nl.prototype,{fit:function(t){var e=this.model_layer.model,r=e.width,n=e.height,o=e.fitMode,i=this.target_element,a=this.model_layer;if(this.fitMode=t||this.fitMode||o||"ratio",r&&n&&i&&i.clientWidth&&i.clientHeight){switch(this.fitMode){case"center":!function(t,e,r){var n=t.unitScale,o=e.model,i=o.width,a=o.height;e.set("scale",{x:n,y:n}),e.set("translate",{x:Math.max((r.clientWidth-i*n)/2,0),y:Math.max((r.clientHeight-a*n)/2,0)})}(this,a,i);break;case"both":!function(t,e,r){var n=e.model,o=n.width,i=n.height,a=r.clientWidth,s=r.clientHeight;e.set("scale",{x:a/o,y:s/i}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"width":!function(t,e,r){var n=r.clientWidth/e.get("width");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"height":!function(t,e,r){var n=r.clientHeight/e.get("height");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"ratio":!function(t,e,r){var n=e.model,o=n.width,i=n.height,a=r.clientWidth,s=r.clientHeight,u=a/o,c=s/i,f=Math.min(u,c);e.set("scale",{x:f,y:f}),e.set("translate",{x:(a-o*f)/2,y:(s-i*f)/2})}(0,a,i);break;default:!function(t,e,r){var n=t.unitScale;e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(this,a)}this.resize()}}}),da.memoize(Nl.prototype,"unitScale",!1);var Fl=13.3;function zl(t){return zl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},zl(t)}function Ul(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==zl(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==zl(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===zl(o)?o:String(o)),n)}var o}var Yl="$base_url",Gl=Math.PI/12,Hl=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._mode=e,this.screen=function(t){return void 0!==t&&(Fl=t),Fl}(),this._baseUrl="undefined"!=typeof window?window.location.origin:null,this._refProvider=r,this.isEditMode&&(this._rotateStep=Gl,this._rotateStepForced=!1)}var e,r;return e=t,(r=[{key:"dispose",value:function(){this._dataSubscriptionProvider&&this._dataSubscriptionProvider.dispose(),delete this._dataStorage}},{key:"_calcScreen",value:function(){var t={width:screen.width,height:screen.height};this._PPI=function(t,e,r,n){t>0||(t=1),e>0||(e=1),n||(n="d");var o=("d"==n?Math.sqrt(t*t+e*e):"w"==n?t:e)/r;return o>0?Math.round(o):0}(t.width,t.height,this.screen),this._PPM=this._PPI/25.4}},{key:"subscribe",value:function(t,e){var r;return null===(r=this._dataSubscriptionProvider)||void 0===r?void 0:r.subscribe(t,e)}},{key:"refProvider",get:function(){return this._refProvider}},{key:"dataSubscriptionProvider",get:function(){return this._dataSubscriptionProvider},set:function(t){this._dataSubscriptionProvider=t}},{key:"commander",get:function(){return this._commander},set:function(t){this._commander=t}},{key:"screen",get:function(){return this._screen},set:function(t){this._screen=t,this._calcScreen()}},{key:"DPPX",get:function(){return Bo}},{key:"PPI",get:function(){return this._PPI}},{key:"PPM",get:function(){return this._PPM}},{key:"mode",get:function(){return this._mode},set:function(t){var e=this._mode;e!==t&&(this._mode=t,this.trigger("mode",t,e))}},{key:"isViewMode",get:function(){return this._mode==Mo}},{key:"isEditMode",get:function(){return this._mode==Ro}},{key:"baseUrl",get:function(){return this._baseUrl},set:function(t){t&&this._baseUrl!=t&&(this._baseUrl=t)}},{key:"url",value:function(t){try{return(t.includes(Yl)?new URL(t.replace(Yl,this.baseUrl),this.baseUrl):new URL(t,location.origin)).href}catch(e){$n(e,t)}}},{key:"rotateStep",get:function(){return this._rotateStep},set:function(t){this._rotateStep=Number(t)||Gl}},{key:"rotateStepForced",get:function(){return this._rotateStepForced},set:function(t){this._rotateStepForced=!!t}},{key:"dataStorage",get:function(){return this._dataStorage},set:function(t){this._dataStorage=t}}])&&Ul(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Wl(t){return Wl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Wl(t)}function Xl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Wl(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Wl(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Wl(o)?o:String(o)),n)}var o}Vn(Hl.prototype,qn.withEvent);var ql=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),!(e=Number(e))||e<=0?(Zn("TimeCapsule maxsize should be greater than 0.",e),this.maxsize=10):this.maxsize=e,this.reset(),r&&this.snapshot(r)}var e,r;return e=t,(r=[{key:"dispose",value:function(){this.reset()}},{key:"snapshot",value:function(t){this.q.splice(this.pos+1,this.q.length-(this.pos+1),t),this.q.length>this.maxsize&&this.q.splice(0,this.q.length-this.maxsize),this.pos=this.q.length-1}},{key:"forward",value:function(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.forwardable)return this.q[++this.pos];$n("Not forwardable.")}},{key:"backward",value:function(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.backwardable)return this.q[--this.pos];$n("Not backwardable.")}},{key:"current",get:function(){if(-1!==this.pos)return this.q[this.pos];$n("Non state has been recorded.")}},{key:"length",get:function(){return this.q.length}},{key:"forwardable",get:function(){return this.pos<this.q.length-1}},{key:"backwardable",get:function(){return this.pos>0}},{key:"snapshot_taker",get:function(){return this._snapshot_taker},set:function(t){this._snapshot_taker=t}},{key:"reset",value:function(){this.q=[],this.pos=-1}}])&&Xl(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Vl(t){return Vl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Vl(t)}function Ql(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Vl(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Vl(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Vl(o)?o:String(o)),n)}var o}var Kl=Ni((function(t){t.brake||t.take()}),1e3,{leading:!0,trailing:!1});function Jl(t){!t.brake&&t.dirty&&Kl(t)}var Zl=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.brake=!1,this.dirty=!1,this.state_holder=e,this.timecapsule=r,this.timecapsule.snapshot_taker=this}var e,r;return e=t,(r=[{key:"dispose",value:function(){delete this.state_holder,delete this.timecapsule}},{key:"touch",value:function(){this.dirty=!0,Jl(this)}},{key:"take",value:function(t){(this.dirty||t)&&(this.timecapsule.snapshot(this.state_holder.state),this.dirty=!1)}},{key:"brake",get:function(){return this._brake},set:function(t){this._brake=!!t,Jl(this)}}])&&Ql(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function $l(t){return $l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},$l(t)}function th(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==$l(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==$l(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===$l(o)?o:String(o)),n)}var o}function eh(t,e){var r=e.model_layer.get("scale"),n=e.model_layer.get("translate");if(t){var o=JSON.parse(t);o.scale=r,o.translate=n,e.rebuildContentModel(o)}}var rh=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.container=e,this.timecapsule=new ql(20);var r=this;this.snapshot_taker=new Zl({get state(){var t=r.container.model_layer.hierarchy;return JSON.stringify(t)}},this.timecapsule),this.snapshot_taker.take(!0)}var e,r;return e=t,(r=[{key:"dispose",value:function(){this.reset(),this.timecapsule&&this.timecapsule.dispose(),this.snapshot_taker&&this.snapshot_taker.dispose(),delete this.container,delete this.timecapsule,delete this.snapshot_taker}},{key:"execute",value:function(t,e){!1!==e&&t&&t.execute(),this.snapshot_taker.touch(),this.trigger("execute",t,!0,!1)}},{key:"undo",value:function(){this.timecapsule.backwardable&&(eh(this.timecapsule.backward(),this.container),this.trigger("undo",this.undoable(),this.redoable()))}},{key:"redo",value:function(){this.timecapsule.forwardable&&(eh(this.timecapsule.forward(),this.container),this.trigger("redo",this.undoable(),this.redoable()))}},{key:"undoable",value:function(){return this.timecapsule.backwardable}},{key:"redoable",value:function(){return this.timecapsule.forwardable}},{key:"reset",value:function(){this.timecapsule&&this.timecapsule.reset(),this.trigger("command-reset")}}])&&th(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function nh(t){return nh="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},nh(t)}function oh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==nh(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==nh(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===nh(o)?o:String(o)),n)}var o}Vn(rh.prototype,qn.withEvent);var ih=new WeakSet,ah=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._container=e,this.app=e.app,this._commander=new rh(this._container),this.app.commander=this._commander,ih.add(this)}var e,r,n;return e=t,r=[{key:"add",value:function(){return nc.apply(this._container,arguments)}},{key:"duplicate",value:function(){return ic.apply(this._container,arguments)}},{key:"remove",value:function(){return ac.apply(this._container,arguments)}},{key:"animate",value:function(){return nn.apply(this,arguments)}},{key:"fullscreen",value:function(){return fc.apply(this._container,arguments)}},{key:"target",get:function(){return this._container.target_element},set:function(t){var e;if("string"==typeof t){if(!(e=document.getElementById(t)))throw"target element '".concat(t,"' is not exist");if(e.firstChild)throw"target element '".concat(t,"' already has children")}else e=t;e&&e.style&&(e.style.cursor="default"),this._container.target_element=e,this._container.invalidate()}},{key:"scale",get:function(){return this.root.get("scale")},set:function(t){this.root.set("scale",t)}},{key:"translate",get:function(){return this.root.get("translate")},set:function(t){this.root.set("translate",t)}},{key:"unit",get:function(){return this.root.get("unit")||"px"}},{key:"PPM",get:function(){return this.app.PPM}},{key:"PPI",get:function(){return this.app.PPI}},{key:"DPPX",get:function(){return this.app.DPPX}},{key:"unitScale",get:function(){return this._container.unitScale}},{key:"screen",get:function(){return this.app.screen},set:function(t){this.app.screen=t,this._container.resize()}},{key:"resize",value:function(){this._container.resize()}},{key:"release",value:function(){this.dispose()}},{key:"dispose",value:function(){this._commander&&this._commander.dispose(),this._container&&this._container.dispose()}},{key:"selected",get:function(){return this._container.selected.slice()},set:function(t){this._container.selected=t}},{key:"select",value:function(t){for(var e,r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];return this._container.selected=null===(e=this.root)||void 0===e?void 0:e.findAll.apply(e,[t].concat(n)),this.selected}},{key:"commander",get:function(){return this._commander}},{key:"undo",value:function(){this.commander.undo()}},{key:"redo",value:function(){this.commander.redo()}},{key:"cut",value:function(){return pc.apply(this._container,arguments)}},{key:"copy",value:function(){return hc.apply(this._container,arguments)}},{key:"paste",value:function(){return yc.apply(this._container,arguments)}},{key:"undoableChange",value:function(){return Cc.apply(this._container,arguments)}},{key:"change",value:function(){return Ic.apply(this.root,arguments)}},{key:"model",get:function(){return this.root.hierarchy},set:function(t){this._container.rebuildContentModel(t)}},{key:"rootContainer",get:function(){return this._container}},{key:"root",get:function(){var t;return null===(t=this._container)||void 0===t?void 0:t.model_layer}},{key:"findAll",value:function(){return this.root.findAll.apply(this.root,arguments)}},{key:"findFirst",value:function(){return this.root.findFirst.apply(this.root,arguments)}},{key:"findById",value:function(){return this._container.findById.apply(this._container,arguments)}},{key:"serialize",value:function(){return this.root.trim(),this.root.serialize.apply(this.root,arguments)}},{key:"align",value:function(){return Gu.apply(this._container,arguments)}},{key:"distribute",value:function(){return Xu.apply(this._container,arguments)}},{key:"move",value:function(){return $u.apply(this._container,arguments)}},{key:"zorder",value:function(){return tc.apply(this._container,arguments)}},{key:"symmetryX",value:function(){return Mc.apply(this._container,arguments)}},{key:"symmetryY",value:function(){return Rc.apply(this._container,arguments)}},{key:"on",value:function(){return sc.apply(this._container,arguments)}},{key:"once",value:function(){return uc.apply(this._container,arguments)}},{key:"off",value:function(){return this._container&&cc.apply(this._container,arguments)}},{key:"centerTo",value:function(t,e){return this.root.centerTo(t,e)}},{key:"mode",get:function(){return this.app.mode},set:function(t){void 0!==t&&(this.app.mode=t)}},{key:"toDataURL",value:function(){return Ec.apply(this._container,arguments)}},{key:"group",value:function(){return Ac.apply(this._container,arguments)}},{key:"ungroup",value:function(){return Pc.apply(this._container,arguments)}},{key:"fit",value:function(t){var e=this;this._container.once("redraw",(function(){return e._container.fit(t)})),this._container.invalidate()}},{key:"fitMode",get:function(){return this._container.fitMode}},{key:"ids",get:function(){return Lc.apply(this._container)}},{key:"data",get:function(){return this._container.data},set:function(t){this._container.data=t}},{key:"dataByRefid",get:function(){return this._container.dataByRefid},set:function(t){this._container.dataByRefid=t}},{key:"values",get:function(){return this._container.values},set:function(t){this._container.values=t}},{key:"valuesByRefid",get:function(){return this._container.valuesByRefid},set:function(t){this._container.valuesByRefid=t}},{key:"baseUrl",get:function(){return this.app.baseUrl},set:function(t){this.app.baseUrl=t}},{key:"startAddMode",value:function(){return oc.apply(this._container,arguments)}}],n=[{key:"residents",get:function(){return ih}},{key:"DPPX",get:function(){return Bo}}],r&&oh(e.prototype,r),n&&oh(e,n),Object.defineProperty(e,"prototype",{writable:!1}),t}();const sh=ah;function uh(t){return uh="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},uh(t)}function ch(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==uh(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==uh(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===uh(o)?o:String(o)),n)}var o}var fh=new(function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,r;return e=t,(r=[{key:"load",value:function(t){}},{key:"save",value:function(t,e){}},{key:"clear",value:function(t){}}])&&ch(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}());function lh(t){var e=t.target,r=t.model,n=t.style,o=t.layers,i=void 0===o?[]:o,a=t.handlers,s=void 0===a?[]:a,u=t.mode,c=void 0===u?Mo:u,f=t.refProvider,l=t.dataSubscriptionProvider,h=t.dataStorage,p=void 0===h?fh:h,y=t.baseUrl,d=t.fitMode,v=null;if("string"==typeof e){if(!(v=document.getElementById(e)))throw"target element '".concat(e,"' is not exist");if(v.firstChild)throw"target element '".concat(e,"' is not empty")}else v=e;v&&v.style&&(v.style.position="absolute",v.style.cursor="default",v.style.overflow="hidden");var g=new Hl(c,f);return g.baseUrl=y,g.dataSubscriptionProvider=l,g.dataStorage=p,new sh(new Nl({target_element:v,model:r,style:n,layers:i,handlers:s,fitMode:d},g))}function hh(t){return hh="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},hh(t)}function ph(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==hh(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==hh(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===hh(o)?o:String(o)),n)}var o}function yh(){return yh="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=vh(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},yh.apply(this,arguments)}function dh(t,e){return dh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},dh(t,e)}function vh(t){return vh=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},vh(t)}var gh=["mousemove","mouseup","mousedown","mouseout","wheel","tap","click","touchstart","touchmove","touchend","mouseenter","mouseleave","dragstart","dragmove","dragend","dblclick"];const bh=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&dh(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=vh(n);if(o){var r=vh(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===hh(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"isHTMLElement",value:function(){return!0}},{key:"isShadowable",value:function(){return!0}},{key:"element",get:function(){return this._element},set:function(t){this._element=t}},{key:"tagName",get:function(){return this.get("type")}},{key:"setElementProperties",value:function(t){throw new Error("Not Implemented Yet")}},{key:"createElement",value:function(){var t=this;this.element=document.createElement(this.tagName),this.element&&(this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),gh.forEach((function(e){t.element.addEventListener(e,t.userInputEventHandler.bind(t))})),Fo.forEach((function(e){t.element.addEventListener(e,t.userInputEventHandler.bind(t))})),this.oncreate_element&&this.oncreate_element(this.element))}},{key:"userInputEventHandler",value:function(t){pl(this,t.type,t),t.stopPropagation()}},{key:"reposition",value:function(){this.element&&Ci(this)}},{key:"disposeElement",value:function(){var t=this.element;t&&t.parentElement&&t.parentElement.removeChild(t),delete this.element}},{key:"ready",value:function(){yh(vh(a.prototype),"ready",this).call(this),!this.element&&this.createElement(),this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),this.setElementProperties(this.element),this.reposition()}},{key:"dispose",value:function(){this.disposeElement(this),yh(vh(a.prototype),"dispose",this).call(this)}},{key:"hasTextProperty",get:function(){return!0}},{key:"textHidden",get:function(){return!0}},{key:"onchange",value:function(t,e){this.element&&this.setElementProperties(this.element),this.reposition()}},{key:"isDescendible",value:function(t){return t.isHTMLElement()}}])&&ph(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return e};function mh(t){return mh="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},mh(t)}function wh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==mh(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==mh(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===mh(o)?o:String(o)),n)}var o}function xh(t,e){return xh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},xh(t,e)}function kh(t){return kh=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},kh(t)}var Sh={x:1,y:1},_h={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"},Oh={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"layout",label:"layout",name:"layoutOption"}],help:"scene/component/container"},Eh=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&xh(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=kh(n);if(o){var r=kh(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===mh(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"tagName",get:function(){return"div"}},{key:"nature",get:function(){return Oh}},{key:"setElementProperties",value:function(t){}},{key:"layout",get:function(){return za.get(this.get("layout"))||Ya}},{key:"reposition",value:function(){if(this.element){var t=this,e=t.state,r=e.id,n=e.class,o=e.scale,i=void 0===o?Sh:o,a=t.rotation,s=void 0===a?0:a,u=t.hidden,c=t.bounds,f=c.left,l=c.top,h=c.width,p=c.height,y=h/2,d=p/2,v=t.element;v.hidden=u,r&&(v.id=r),n&&(v.className=n),Object.assign(v.style,_h,{left:f+"px",top:l+"px",width:"0px",height:"0px",backgroundColor:"transparent"});var g=t.delta(),b=(i&&i.x||1)*g.sx,m=(i&&i.y||1)*g.sy,w=(s||0)+g.theta,x=g.tx||0,k=g.ty||0;["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){v.style[t+"transform"]="translate(".concat(x+y,"px, ").concat(k+d,"px) rotate(").concat(w,"rad) translate(").concat(-y,"px, ").concat(-d,"px) scale(").concat(b,", ").concat(m,") perspective(1px)")}))}}}],r&&wh(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(bh(Ss));da.register("container",Eh);var Ah=5,Ph=Math.sqrt(3);function jh(t,e,r,n,o){var i,a,s,u,c=Ah+o,f=r.x,l=r.y,h=n.x,p=n.y;if(Math.abs(f-h)>c&&Math.abs(l-p)>c){var y=(p-l)/(h-f),d=l-y*f;if(Math.abs(e-(y*t+d))>c)return!1}return f>h?(a=f,i=h):(a=h,i=f),l>p?(u=l,s=p):(u=p,s=l),!(a+Ah<t||i-Ah>t||u+Ah<e||s-Ah>e)}function Th(t,e,r){for(var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:2,o=0;o<r.length-1;o++)if(jh(t,e,r[o],r[o+1],n))return!0;return!1}function Mh(t,e,r,n){if("arrow"!=t.slice(-5))return r;r.x,r.y;var o=Math.atan2(n.y-r.y,n.x-r.x),i=1.5*e;return{x:r.x+Math.cos(o)*i,y:r.y+Math.sin(o)*i}}function Rh(t,e,r){var n=r.lineWidth,o=void 0===n?2:n,i=r.strokeStyle,a=void 0===i?"#000000":i,s=r.lineCap,u=void 0!==s&&s,c=r.alpha,f=void 0===c?1:c,l=r.begin,h=void 0===l?"none":l,p=r.end,y=void 0===p?"none":p,d=r.beginSize,v=void 0===d?"size5":d,g=r.endSize,b=void 0===g?"size5":g;if(("none"!=h||"none"!=y)&&(o=Number(o)||2,t.lineCap=u,t.lineWidth=o,t.strokeStyle=a,t.fillStyle=a,t.globalAlpha*=f,"none"!=h&&Ih(t,e[0],e[1],o,h,Ch(v,o)),"none"!=y)){var m=e.length;Ih(t,e[m-1],e[m-2],o,y,Ch(b,o))}}function Ih(t,e,r,n,o,i){var a=e.x,s=e.y,u=Math.atan2(r.y-s,r.x-a);switch(t.beginPath(),t.translate(a,s),t.rotate(u),o){case"oval":t.ellipse(0,0,i.X,i.Y,0,0,2*Math.PI),t.fill();break;case"diamond":t.moveTo(-i.X,0),t.lineTo(0,-i.Y),t.lineTo(i.X,0),t.lineTo(0,i.Y),t.fill();break;case"arrow":t.moveTo(0,0),t.lineTo(Ph*i.X,-i.Y),t.lineTo(Ph*i.X,i.Y),t.fill();break;case"sharp-arrow":t.moveTo(0,0),t.lineTo(Ph*i.X,-i.Y),t.lineTo(-i.X/1.5+Ph*i.X,0),t.lineTo(Ph*i.X,i.Y),t.fill();break;case"open-arrow":t.moveTo(Ph*i.X+n,-i.Y),t.lineTo(n,0),t.lineTo(Ph*i.X+n,i.Y),t.stroke()}t.rotate(-u),t.translate(-a,-s),t.closePath()}function Ch(t,e){var r={};switch(e*=1.2,t){case"size1":r.X=e,r.Y=e;break;case"size2":r.X=1.5*e,r.Y=e;break;case"size3":r.X=2*e,r.Y=e;break;case"size4":r.X=e,r.Y=1.5*e;break;case"size5":default:r.X=1.5*e,r.Y=1.5*e;break;case"size6":r.X=2*e,r.Y=1.5*e;break;case"size7":r.X=e,r.Y=2*e;break;case"size8":r.X=1.5*e,r.Y=2*e;break;case"size9":r.X=2*e,r.Y=2*e}return r}function Lh(t,e){if(t){if("string"==typeof t)return Dh(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Dh(t,e):void 0}}function Dh(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Bh(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Nh(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Bh(Object(r),!0).forEach((function(e){Fh(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Bh(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Fh(t,e,r){return(e=qh(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function zh(){return zh="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Yh(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},zh.apply(this,arguments)}function Uh(t,e){return Uh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Uh(t,e)}function Yh(t){return Yh=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Yh(t)}function Gh(t){return Gh="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Gh(t)}function Hh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Wh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,qh(n.key),n)}}function Xh(t,e,r){return e&&Wh(t.prototype,e),r&&Wh(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function qh(t){var e=function(t,e){if("object"!==Gh(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Gh(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===Gh(e)?e:String(e)}var Vh="N",Qh="S",Kh="E",Jh="W",Zh=function(){function t(e){var r=e.component,n=e.anchor,o=e.position,i=e.self;Hh(this,t),this.component=r,this._anchorName=n,this._position=o,this.self=i}return Xh(t,[{key:"position",get:function(){var t=this.anchor;if(t){var e=t.position,r=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(r.x,r.y)}return this._position},set:function(t){var e=t.x,r=t.y;this._position={x:e,y:r}}},{key:"anchor",get:function(){var t;return null===(t=this.component)||void 0===t?void 0:t.findAnchor(this._anchorName)}},{key:"direction",get:function(){var t=this.component.bounds,e=this.anchor;if(!e)return Kh;var r=e.position;return r.y<=t.top?Vh:r.y>=t.top+t.height?Qh:r.x<=t.left?Jh:Kh}},{key:"boundaryPosition",get:function(){var t=this.anchor;if(t){var e=t.position,r=0,n=0;switch(this.direction){case Qh:n=20;break;case Vh:n=-20;break;case Jh:r=-20;break;default:r=20}e={x:e.x+r,y:e.y+n};var o=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(o.x,o.y)}}}]),t}(),$h=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Uh(t,e)}(o,t);var e,r,n=(e=o,r=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,n=Yh(e);if(r){var o=Yh(this).constructor;t=Reflect.construct(n,arguments,o)}else t=n.apply(this,arguments);return function(t,e){if(e&&("object"===Gh(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function o(){return Hh(this,o),n.apply(this,arguments)}return Xh(o,[{key:"isLine",value:function(){return!0}},{key:"replaceRefids",value:function(t){var e=this;["from","to"].forEach((function(r){var n=e.get(r);if(null!=n&&n.component){var o=t.get(n.component)||n.component;e.set(r,Nh(Nh({},n),{},{component:o}))}}))}},{key:"fromEnd",get:function(){if(this.parent&&!this._fromEnd){var t,e=this.getState("from")||{},r=e.component,n=e.anchor,o=e.position;if(!r)return;var i=null===(t=this.root)||void 0===t?void 0:t.findByRefid(r);if(!i)return;this._fromEnd=new Zh({component:i,fromto:"from",anchor:n,position:o,self:this})}return this._fromEnd}},{key:"from",get:function(){return this.getState("from")},set:function(t){delete this._fromEnd,this.set("from",t)}},{key:"toEnd",get:function(){if(this.parent&&!this._toEnd){var t,e=this.getState("to")||{},r=e.component,n=e.anchor,o=e.position;if(!r)return;var i=null===(t=this.root)||void 0===t?void 0:t.findByRefid(r);if(!i)return;this._toEnd=new Zh({component:i,fromto:"to",anchor:n,position:o,self:this})}return this._toEnd}},{key:"to",get:function(){return this.getState("to")},set:function(t){delete this._toEnd,this.set("to",t)}},{key:"move",value:function(t,e){var r,n,i,a,s=t.x,u=t.y;e&&(this.from={position:(null===(r=this._fromEnd)||void 0===r?void 0:r.position)||(null===(n=this.getState("from"))||void 0===n?void 0:n.position)||{x:0,y:0}},this.to={position:(null===(i=this._toEnd)||void 0===i?void 0:i.position)||(null===(a=this.getState("to"))||void 0===a?void 0:a.position)||{x:0,y:0}}),zh(Yh(o.prototype),"move",this).call(this,{x:s,y:u},e)}},{key:"render",value:function(t){var e=this.state,r=e.begin,n=void 0===r?"none":r,o=e.end,i=void 0===o?"none":o,a=e.lineWidth,s=e.round,u=void 0===s?0:s,c=this.drawPath;Rh(t,c,this.state),t.beginPath();var f,l=Mh(n,a,c[0],c[1]),h=Mh(i,a,c[c.length-1],c[c.length-2]);c=[l].concat(function(t){if(Array.isArray(t))return Dh(t)}(f=c.slice(1,-1))||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(f)||Lh(f)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[h]);var p={x:l.x,y:l.y};t.moveTo(l.x,l.y);for(var y=1;y<c.length;y++){var d=p;p=c[y];var v=c[y+1];if(d.x!==p.x||d.y!==p.y){if(!v){t.lineTo(p.x,p.y);break}var g,b=0!==(g=Math.sqrt((d.x-p.x)*(d.x-p.x)+(d.y-p.y)*(d.y-p.y)))?Math.atan2(d.x-p.x,d.y-p.y):0,m=Math.sin(b)*Math.min(u,g/2)+p.x,w=Math.cos(b)*Math.min(u,g/2)+p.y,x=u>0||0!==g?{x:m,y:w}:p;b=0!==(g=Math.sqrt((v.x-p.x)*(v.x-p.x)+(v.y-p.y)*(v.y-p.y)))?Math.atan2(v.x-p.x,v.y-p.y):0,m=Math.sin(b)*Math.min(u,g/2)+p.x,w=Math.cos(b)*Math.min(u,g/2)+p.y;var k=u>0||0!==g?{x:m,y:w}:p;t.lineTo(x.x,x.y),u>0&&t.quadraticCurveTo(p.x,p.y,k.x,k.y)}}this.drawStroke(t)}},{key:"contains",value:function(t,e){var r=this.state.lineWidth;return Th(t,e,this.drawPath,r)}},{key:"resizable",get:function(){return!1}},{key:"mutable",get:function(){return!0}},{key:"rotatable",get:function(){return!1}},{key:"path",get:function(){var t,e,r=this.state,n=r.from,o=r.to,i=this.state,a=i.x1,s=i.y1,u=i.x2,c=i.y2;return[(null===(t=this.fromEnd)||void 0===t?void 0:t.position)||(null==n?void 0:n.position)||{x:a,y:s},(null===(e=this.toEnd)||void 0===e?void 0:e.position)||(null==o?void 0:o.position)||{x:u,y:c}]},set:function(t){var e,r,n=(r=2,function(t){if(Array.isArray(t))return t}(e=t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,r)||Lh(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),o=n[0],i=n[1],a=this.state,s=a.from,u=a.to;delete this._fromEnd,delete this._toEnd,this.set({from:Nh(Nh({},s),{},{position:o}),to:Nh(Nh({},u),{},{position:i})})}},{key:"textBounds",get:function(){for(var t,e,r=this.drawPath,n=0,o=1;o<r.length;o++){var i=r[o-1],a=r[o],s=(i.x-a.x)*(i.x-a.x)+(i.y-a.y)*(i.y-a.y);s>n&&(n=Math.ceil(s),t=i,e=a)}var u=this.state,c=u.paddingTop,f=u.paddingLeft,l=u.paddingRight,h=u.paddingBottom;return h||(h=0),c||(c=0),f||(f=0),l||(l=0),{left:Math.min(t.x,e.x)+f,top:Math.min(t.y,e.y)+c,width:Math.max(Math.abs(t.x-e.x)-f-l,0),height:Math.max(Math.abs(t.y-e.y)-c-h,0)}}},{key:"decorators",get:function(){return["decotag"]}}]),o}(da);function tp(t){return tp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},tp(t)}function ep(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==tp(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==tp(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===tp(o)?o:String(o)),n)}var o}function rp(t,e){return rp=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},rp(t,e)}function np(t){return np=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},np(t)}$h.getTipNeckPos=Mh,$h.containedInPath=Th,$h.drawEndTips=Rh,da.register("line",$h);var op={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},ip=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&rp(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=np(n);if(o){var r=np(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===tp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"is3dish",value:function(){return!0}},{key:"render",value:function(t){var e=this.state,r=e.cx,n=e.cy,o=e.rx,i=e.ry,a=e.startAngle,s=e.endAngle,u=e.anticlockwise;t.beginPath(),t.ellipse(r,n,Math.abs(o),Math.abs(i),0,a||0,s||2*Math.PI,u)}},{key:"path",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.rx,o=t.ry;return[{x:e-n,y:r-o},{x:e+n,y:r-o},{x:e+n,y:r+o},{x:e-n,y:r+o}]},set:function(t){var e=t[0],r=t[2];this.set({cx:e.x+(r.x-e.x)/2,cy:e.y+(r.y-e.y)/2,rx:(r.x-e.x)/2,ry:(r.y-e.y)/2})}},{key:"contains",value:function(t,e){var r=this.state,n=r.cx,o=r.cy,i=(t-n)/(2*r.rx-.5),a=(e-o)/(2*r.ry-.5);return i*i+a*a<.25}},{key:"outline",value:function(t){return function(t,e){var r=t.model,n=r.cx,o=r.cy,i=r.rx,a=r.ry,s=2*Math.PI*e,u=n+i*Math.cos(s),c=o+a*Math.sin(s);return t.transcoordS2T(u,c)}(this,t)}},{key:"anchors",get:function(){return function(t){var e=t.bounds,r=e.left,n=e.top,o=e.width,i=e.height,a=r+o/2,s=n+i/2;return[{name:"TOP",position:{x:a,y:n}},{name:"RIGHT",position:{x:r+o,y:s}},{name:"BOTTOM",position:{x:a,y:n+i}},{name:"LEFT",position:{x:r,y:s}}]}(this)}},{key:"nature",get:function(){return op}}],r&&ep(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Xs(xa));function ap(t){return ap="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ap(t)}function sp(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==ap(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==ap(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===ap(o)?o:String(o)),n)}var o}function up(t,e){return up=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},up(t,e)}function cp(t){return cp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},cp(t)}da.memoize(ip.prototype,"path",!1),da.register("ellipse",ip);var fp={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e+1,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e+1]=t}))},ondragend:function(t,e,r){}},lp={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polygon"},hp=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&up(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=cp(n);if(o){var r=cp(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===ap(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"is3dish",value:function(){return!0}},{key:"mutable",get:function(){return!0}},{key:"pathExtendable",get:function(){return!0}},{key:"path",get:function(){return this.state.path},set:function(t){this.set("path",t)}},{key:"contains",value:function(t,e){var r=this.state.path,n=!1;return r.forEach((function(o,i){var a=(i+r.length+1)%r.length,s=o.x,u=o.y,c=r[a].x,f=r[a].y;u>e!=f>e&&t<(c-s)*(e-u)/(f-u)+s&&(n=!n)})),n}},{key:"controls",get:function(){var t=this.path;return t.map((function(e,r){var n=t[r+1>=t.length?0:r+1];return{x:(e.x+n.x)/2,y:(e.y+n.y)/2,handler:fp}}))}},{key:"nature",get:function(){return lp}}])&&sp(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(xa);function pp(t){return pp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},pp(t)}function yp(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function dp(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?yp(Object(r),!0).forEach((function(e){vp(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):yp(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function vp(t,e,r){return(e=mp(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function gp(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function bp(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,mp(n.key),n)}}function mp(t){var e=function(t,e){if("object"!==pp(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==pp(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===pp(e)?e:String(e)}function wp(t,e){return wp=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},wp(t,e)}function xp(t){return xp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},xp(t)}da.memoize(hp.prototype,"controls",!1),da.register("polygon",hp);var kp={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e]=t}))},ondragend:function(t,e,r){}},Sp={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polyline"},_p=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&wp(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=xp(n);if(o){var r=xp(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===pp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"pathExtendable",get:function(){return!0}},{key:"path",get:function(){var t,e,r,n=this.state,o=n.from,i=n.to,a=this.state.path;return[(null===(t=this.fromEnd)||void 0===t?void 0:t.position)||(null==o?void 0:o.position)||a[0]].concat(function(t){if(Array.isArray(t))return gp(t)}(r=a.slice(1,-1))||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(r)||function(t,e){if(t){if("string"==typeof t)return gp(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?gp(t,e):void 0}}(r)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[(null===(e=this.toEnd)||void 0===e?void 0:e.position)||(null==i?void 0:i.position)||a[a.length-1]])},set:function(t){var e=this.state,r=e.from,n=e.to;delete this._fromEnd,delete this._toEnd,this.set({from:dp(dp({},r),{},{position:t[0]}),to:dp(dp({},n),{},{position:t[t.length-1]}),path:t})}},{key:"controls",get:function(){for(var t=this.path,e=[],r=0;r<t.length-1;r++){var n=t[r],o=t[r+1];0==r&&e.push({x:n.x,y:n.y,handler:kp}),e.push({x:(n.x+o.x)/2,y:(n.y+o.y)/2,handler:kp}),r==t.length-2&&e.push({x:o.x,y:o.y,handler:kp})}return e}},{key:"nature",get:function(){return Sp}}])&&bp(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}($h);function Op(t){return Op="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Op(t)}function Ep(t){return function(t){if(Array.isArray(t))return Ap(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return Ap(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Ap(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ap(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Pp(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function jp(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Pp(Object(r),!0).forEach((function(e){Tp(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Pp(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Tp(t,e,r){return(e=Rp(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Mp(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Rp(n.key),n)}}function Rp(t){var e=function(t,e){if("object"!==Op(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Op(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===Op(e)?e:String(e)}function Ip(t,e){return Ip=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ip(t,e)}function Cp(t){return Cp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Cp(t)}da.register("polyline",_p);var Lp={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/ortholine"},Dp=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ip(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Cp(n);if(o){var r=Cp(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Op(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"pathExtendable",get:function(){return!1}},{key:"drawPath",get:function(){var t=this.path[0],e=this.path[1],r=this.fromEnd||{},n=r.component,o=r.direction,i=r.boundaryPosition,a=void 0===i?t:i,s=this.toEnd||{},u=s.component,c=s.direction,f=s.boundaryPosition,l=void 0===f?e:f,h=[a,l],p=[];a&&p.push(a);var y=null==n?void 0:n.bounds;if(y){var d=n.transcoordS2T(y.left,y.top);d=this.transcoordT2P(d.x,d.y),y=jp(jp({},y),{},{left:d.x,top:d.y})}var v=y?{left:y.left-20,top:y.top-20,width:y.width+40,height:y.height+40}:{left:a.x,top:a.y,width:0,height:0};y=y||v;var g=null==u?void 0:u.bounds;g&&(d=u.transcoordS2T(g.left,g.top),d=this.transcoordT2P(d.x,d.y),g=jp(jp({},g),{},{left:d.x,top:d.y}));var b=g?{left:g.left-20,top:g.top-20,width:g.width+40,height:g.height+40}:{left:l.x,top:l.y,width:0,height:0};g=g||b;var m,w,x,k,S,_,O,E,A,P,j=[v,b],T=v.left>b.left?b.left:v.left,M=v.top>b.top?b.top:v.top,R={left:T,top:M,width:v.left+v.width>b.left+b.width?v.left+v.width-T:b.left+b.width-T,height:v.top+v.height>b.top+b.height?v.top+v.height-M:b.top+b.height-M},I=0,C=0;y.left+y.width<g.left?(k=0,S=1,A=o,P=c,m=(y.left+y.width+g.left)/2,I=g.left-m):g.left+g.width<y.left&&(k=1,S=0,A=c,P=o,m=(y.left+g.width+g.left)/2,I=y.left-m),y.top+y.height<g.top?(x=0,_=1,O=o,E=c,w=(y.top+y.height+g.top)/2,C=g.top-w):g.top+g.height<y.top&&(x=1,_=0,O=c,E=o,w=(y.top+g.height+g.top)/2,C=y.top-w);var L=[];if(m&&I>C){switch(P){case Jh:switch(A){case Kh:L.push({x:m,y:h[k].y}),L.push({x:m,y:h[S].y});break;case Jh:var D=j[k].top+j[k].height/2>h[S].y?Math.min(j[k].top,h[S].y):Math.max(j[k].top+j[k].height,h[S].y);L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:h[S].y});break;case Vh:case Qh:D=A===Qh?Math.max(h[k].y,h[S].y):Math.min(h[k].y,h[S].y),L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:h[S].y});break;default:return this.path}break;case Kh:switch(A){case Kh:var B=D=h[k].y<h[S].y?Math.min(j[S].top,h[k].y):Math.max(j[S].top+j[S].height,h[k].y);break;case Jh:B=D=void 0!==w?w:h[k].y<h[S].y?R.top-.5*I:R.top+R.height+.5*I;break;case Qh:B=D=void 0!==w?Math.max(w,h[k].y):R.top+R.height;break;case Vh:B=D=w?Math.min(w,j[k].top):R.top;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;case Qh:switch(A){case Kh:D=h[k].y,B=h[k].y>h[S].y?h[k].y:j[S].top+j[S].height;break;case Jh:B=D=w?Math.max(w,j[S].top+j[S].height):R.top+R.height;break;case Qh:B=D=R.top+R.height;break;case Vh:D=w?Math.min(w,j[k].top):j[k].top,B=w?Math.max(w,j[S].top+j[S].height):j[S].top+j[S].height;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;case Vh:switch(A){case Kh:D=h[k].y,B=h[k].y<h[S].y?h[k].y:j[S].top;break;case Jh:B=D=w?Math.min(w,j[S].top):R.top;break;case Qh:D=void 0!==w?Math.max(w,h[k].y):h[k].y,B=void 0!==w?Math.min(w,h[S].y):h[S].y;break;case Vh:B=D=R.top;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;default:return this.path}p.push.apply(p,Ep(0===k?L:L.reverse()))}else if(w){switch(E){case Vh:switch(O){case Qh:L.push({x:h[x].x,y:w}),L.push({x:h[_].x,y:w});break;case Vh:var N=j[x].left+j[x].width/2>h[_].x?Math.min(j[x].left,h[_].x):Math.max(j[x].left+j[x].width,h[_].x);L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[_].x,y:w});break;case Jh:N=Math.min(h[x].x,h[_].x),L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[_].x,y:w});break;case Kh:N=Math.max(h[x].x,h[_].x),L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[_].x,y:w});break;default:return this.path}break;case Qh:switch(O){case Jh:var F=N=R.left;break;case Kh:F=N=void 0!==m?Math.max(m,h[x].x):R.left+R.width;break;case Vh:F=N=void 0!==m?m:h[x].x<h[_].x?R.left-.5*C:R.left+R.width+.5*C;break;case Qh:N=h[x].x,F=h[x].x<h[_].x?Math.min(j[_].left,h[x].x):Math.max(j[_].left+j[_].width,h[x].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[_].y});break;case Kh:switch(O){case Jh:N=void 0!==m?Math.min(m,h[x].x):h[x].x,F=void 0!==m?Math.max(m,h[_].x):h[_].x;break;case Kh:F=N=R.left+R.width;break;case Vh:F=N=void 0!==m?Math.max(m,h[_].x):R.left+R.width;break;case Qh:N=h[x].x,F=Math.max(j[_].left+j[_].width,h[x].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[_].y});break;case Jh:switch(O){case Jh:F=N=R.left;break;case Kh:N=void 0!==m?Math.max(m,h[x].x):h[x].x,F=void 0!==m?Math.min(m,h[_].x):h[_].x;break;case Vh:F=N=R.left;break;case Qh:N=h[x].x<h[_].x?Math.min(j[_].left,h[x].x):h[x].x,F=Math.min(N,h[_].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[_].y});break;default:return this.path}p.push.apply(p,Ep(0===x?L:L.reverse()))}else switch(o){case Vh:switch(c){case Vh:var z=R.top;p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case Qh:var U=R.left+R.width;p.push({x:U,y:h[0].y}),p.push({x:U,y:R.top+R.height}),p.push({x:h[1].x,y:R.top+R.height});break;case Kh:U=h[1].y<h[0].y&&h[1].x<h[0].x?h[0].x:R.left+R.width,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;case Jh:U=R.left,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;default:return this.path}break;case Qh:switch(c){case Vh:U=R.left+R.width,p.push({x:U,y:h[0].y}),p.push({x:U,y:R.top}),p.push({x:h[1].x,y:R.top});break;case Qh:case Kh:case Jh:z=R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;default:return this.path}break;case Jh:switch(c){case Vh:U=h[0].x>h[1].x&&h[0].y<h[1].y?h[1].x:R.left,z=h[0].x>h[1].x&&h[0].y<h[1].y?h[1].y:Math.min(R.top,h[0].y),p.push({x:U,y:h[0].y}),p.push({x:U,y:z}),p.push({x:h[1].x,y:z});break;case Qh:U=R.left,z=Math.max(R.top+R.height,h[0].y),p.push({x:U,y:h[0].y}),p.push({x:U,y:z}),p.push({x:h[1].x,y:z});break;case Kh:U=R.left+R.width,p.push({x:h[0].x,y:R.top}),p.push({x:U,y:R.top}),p.push({x:U,y:h[1].y});break;case Jh:U=R.left,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;default:return this.path}break;case Kh:switch(c){case Vh:z=h[0].y<h[1].y&&h[0].x<h[1].x?h[0].y:R.top,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case Qh:z=h[0].y>h[1].y&&h[0].x<h[1].x?h[0].y:R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case Kh:case Jh:z=R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;default:return this.path}break;default:return this.path}return l&&p.push(l),[t].concat(p,[e]).filter((function(t,e,r){if(0===e)return!0;var n=r[e-1];return t.x!==n.x||t.y!==n.y})).filter((function(t,e,r){if(0===e||e>=r.length-1)return!0;var n=r[e-1],o=r[e+1];return!(t.x===n.x&&t.x===o.x||t.y===n.y&&t.y===o.y)}))}},{key:"nature",get:function(){return Lp}}])&&Mp(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}($h);function Bp(t){return Bp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Bp(t)}function Np(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Bp(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Bp(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Bp(o)?o:String(o)),n)}var o}function Fp(){return Fp="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Up(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Fp.apply(this,arguments)}function zp(t,e){return zp=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},zp(t,e)}function Up(t){return Up=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Up(t)}da.register("ortholine",Dp);var Yp={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"image-src",name:"src",property:{displayField:"id",displayFullUrl:!0,baseUrlAlias:"$base_url",defaultStorage:"scene-image",storageFilters:{type:Array,value:[{name:"category",value:"image"}]},useUpload:!0}},{type:"select",label:"cross-origin",name:"crossOrigin",property:{options:["","anonymous","use-credentials"]}}],"value-property":"src",help:"scene/component/image-view"},Gp=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&zp(t,e)}(s,t);var e,r,n,o,i,a=(o=s,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Up(o);if(i){var r=Up(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Bp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),a.apply(this,arguments)}return e=s,n=[{key:"noimage",get:function(){return s.NOIMAGE||(s.NOIMAGE=new Image,s.NOIMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABIBAMAAAD7Se1QAAAAIVBMVEUAAABHcEwBAQEREREBAQEEBAQGBgYLCwsDAwMDAwMICAi6HF9tAAAAC3RSTlNNAEAERiMYCS41Eac10lYAAAEgSURBVHhe7dY9asQwEAXgh7DNertNiJy48pIitY3SB7bYdk0ukL1BDDmA9gZecoH4pmFQ3MQayUMguPBrNPD4wD9TCMvJmt3M/AtYwXOlXiWgqADVCUBD46MAnGhMBaCiUQmAm8VA/Eh/eWl9Fn5WcxD+OLuRrUYJDKLluwH2InACUgkoACSdADxQc50Bytadb9RkM0CT13TcvlCT1HFg8UTHvasuUVACCa3El6u2UdD8LFTlKhUFFgA+d3dj10aABkUN72N3jAADCrJq7PIIsPidcxBoTHIIAjMFmyCwmGYIAA1P9gFgfCANAOsDSccCDW+uLDB+kLGg94OkZoAGkwsDDAe2DOg5oPxAg03rBR88OHpBz4N8UVeHFSwma74BTW6Ge4rIRa4AAAAASUVORK5CYII="),s.NOIMAGE}}],(r=[{key:"dispose",value:function(){Fp(Up(s.prototype),"dispose",this).call(this),this._offcanvas=null,this._image=null}},{key:"render",value:function(t){var e=this.state,r=e.left,n=e.top,o=e.width,i=e.height,a=e.isGray,u=void 0!==a&&a,c=e.alpha,f=void 0===c?1:c,l=e.src;if(this.prepareIf(!this._image&&l),t.beginPath(),t.globalAlpha*=f,this._image&&this._image.complete)if(u&&this._offcanvas)t.drawImage(this._offcanvas,r,n,o,i);else try{t.drawImage(this._image,r,n,o,i)}catch(e){t.drawImage(s.noimage,r,n,o,i)}else!this.app.isViewMode&&t.drawImage(s.noimage,r,n,o,i)}},{key:"nature",get:function(){return Yp}},{key:"hasTextProperty",get:function(){return!1}},{key:"ready",value:function(){Fp(Up(s.prototype),"ready",this).call(this),this.prepareIf(!this._image&&this.state.src)}},{key:"prepare",value:function(t,e){var r=this,n=this.state,o=n.src,i=n.crossOrigin;if(o){this._image=new Image;try{i&&(this._image.crossOrigin=i),this._image.src=this.app.url(o)||""}catch(t){return void e(t)}this._image.onload=function(){if(r.get("isGray")){var e=r._image.width,n=r._image.height;r._offcanvas=da.createCanvas(e,n);var o=r._offcanvas.getContext("2d");o.drawImage(r._image,0,0);var i=function(t,e,r){try{var n=t.getImageData(0,0,e,r)}catch(t){return Zn("Get Image Data Error: "+t.message),null}for(var o=n.data,i=0;i<e*r*4;i+=4){var a=o[i],s=o[i+1],u=o[i+2],c=parseInt((a+s+u)/3);n.data[i]=c,n.data[i+1]=c,n.data[i+2]=c}return n}(o,e,n);o.putImageData(i,0,0)}t(r)},this._image.onerror=function(t){r._image&&!r._image.currentSrc&&(r._image=null),e(t)}}else t(this)}},{key:"src",get:function(){return this.get("src")},set:function(t){this.set("src",t)}},{key:"onchange",value:function(t,e){(t.hasOwnProperty("src")||t.hasOwnProperty("isGray"))&&(this._offcanvas=null,this._image=null,this.prepareIf(t.src))}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void(this.src=e[r])}}])&&Np(e.prototype,r),n&&Np(e,n),Object.defineProperty(e,"prototype",{writable:!1}),s}(Ea(xa));function Hp(t){return Hp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Hp(t)}function Wp(t,e){return Wp=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Wp(t,e)}function Xp(t){return Xp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Xp(t)}da.register("image-view",Gp);var qp=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Wp(t,e)}(i,t);var e,r,n,o=(r=i,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Xp(r);if(n){var o=Xp(this).constructor;t=Reflect.construct(e,arguments,o)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Hp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function i(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,i),o.apply(this,arguments)}return e=i,Object.defineProperty(e,"prototype",{writable:!1}),e}(bh(Ea(da))),Vp=r(87503);function Qp(t){return Qp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Qp(t)}function Kp(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Jp(){Jp=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,o){var i=e&&e.prototype instanceof h?e:h,a=Object.create(i.prototype),s=new O(o||[]);return n(a,"_invoke",{value:x(t,r,s)}),a}function f(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var l={};function h(){}function p(){}function y(){}var d={};u(d,i,(function(){return this}));var v=Object.getPrototypeOf,g=v&&v(v(E([])));g&&g!==e&&r.call(g,i)&&(d=g);var b=y.prototype=h.prototype=Object.create(d);function m(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function w(t,e){function o(n,i,a,s){var u=f(t[n],t,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==Qp(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,s)}),(function(t){o("throw",t,a,s)})):e.resolve(l).then((function(t){c.value=t,a(c)}),(function(t){return o("throw",t,a,s)}))}s(u.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===l)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=f(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===l)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function k(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,k(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),l;var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,l;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,l):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,l)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function E(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(Qp(t)+" is not iterable")}return p.prototype=y,n(b,"constructor",{value:y,configurable:!0}),n(y,"constructor",{value:p,configurable:!0}),p.displayName=u(y,s,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===p||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,y):(t.__proto__=y,u(t,s,"GeneratorFunction")),t.prototype=Object.create(b),t},t.awrap=function(t){return{__await:t}},m(w.prototype),u(w.prototype,a,(function(){return this})),t.AsyncIterator=w,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new w(c(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},m(b),u(b,s,"Generator"),u(b,i,(function(){return this})),u(b,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=E,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,l):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),l},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),l}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:E(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),l}},t}function Zp(t,e,r,n,o,i,a){try{var s=t[i](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,o)}function $p(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Qp(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Qp(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Qp(o)?o:String(o)),n)}var o}function ty(){return ty="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=ry(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ty.apply(this,arguments)}function ey(t,e){return ey=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ey(t,e)}function ry(t){return ry=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ry(t)}var ny={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"string",label:"src",name:"src"},{type:"checkbox",label:"play",name:"play"}],"value-property":"src",help:"scene/component/gif-view"},oy=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ey(t,e)}(u,t);var e,r,n,o,i,a,s=(i=u,a=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=ry(i);if(a){var r=ry(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Qp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function u(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,u),s.apply(this,arguments)}return e=u,r=[{key:"oncreate_element",value:(n=Jp().mark((function t(e){var r,n,o;return Jp().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:r=this.state,n=r.src,o=r.play,this.onchangesrc(n),this.onchangeplay(o);case 3:case"end":return t.stop()}}),t,this)})),o=function(){var t=this,e=arguments;return new Promise((function(r,o){var i=n.apply(t,e);function a(t){Zp(i,r,o,a,s,"next",t)}function s(t){Zp(i,r,o,a,s,"throw",t)}a(void 0)}))},function(t){return o.apply(this,arguments)})},{key:"buildImg",value:function(){var t=this.element;t.innerHTML="";var e=document.createElement("img");return e.style.width="100%",e.style.height="100%",t.appendChild(e),e}},{key:"onchange",value:function(t,e){ty(ry(u.prototype),"onchange",this).call(this,t,e),"src"in t&&this.onchangesrc(t.src),"play"in t&&this.onchangeplay(t.play)}},{key:"setElementProperties",value:function(t){}},{key:"onchangeplay",value:function(t){var e=this._superGif;e&&e.isReady()&&(t?e.play():e.pause())}},{key:"onchangesrc",value:function(t){var e=this,r=this.buildImg();t||(t="data:image/gif;base64,R0lGODlhYABIAPcAAAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKio+Pj5iYmKCgoKampqurq66urrCwsLGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrOzs7S0tLa2tre3t7m5ubu7u7+/v8DAwMHBwcPDw8XFxcfHx8vLy8/Pz9LS0tXV1dfX193d3eTk5Onp6fj4+Pz8/P7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////////////////////////////yH5BAkAAPUAIf47R2VuZXJhdGVkIGJ5IGpzZ2lmIChodHRwczovL2dpdGh1Yi5jb20vYW50aW1hdHRlcjE1L2pzZ2lmLykALAAAAABgAEgAAAj+AGcJHEiwoMGDCBMqXMiwocOHECNKnEixosWLGDNq3Mixo8ePIEOKHEmypMmR9VKqXMmypcuXMGPKnJkSIs2bOHPqZGlzp8+fQOv1DEq0KMyhRpMmRaq0KVCmTqPmhCq1qkyqLrFRSyYwGTVsVo1iZXmNa8Fk18ISHasSm1mDycCq/ck2JTWF1ObSfTjz7cFken3WFbow8M7BDA3rHOwXruKpfGXeTZg3qDVrUge7RRg3KLZjx+Q2HVyvLNy0QaMJjBaVdD2tZr2K/mmNIObRkR+n9AsYt0Pddg1WXppb8bWDx1CLLW74GcJnSl3TtDY8Zu2Et4tKl7n52eyWnxXvhl7+26jqrspbnlfIWjtz2gWPZV95neH8veU9NxZYfbfD3kFt99J6Bnmn0mQO9XfYezrVxxlmx0GUXIAM4hSeffsxBN1TFd5E4Ef3QZbfTg6CNJ5gHXJ3TEntLThiTh+KFCJNAqZU4kgAitjQTheepOBMNcZI0oQ6JpbTjSZtiNN2PZ400IxHpdiSc07G911M0iFZZYtAStnWilUeBGVLrlEZpmM0elmPlmfO8iOZXl4DZpsGEYmll2bSWWCXLwJXVY1+urhjoGEBSuiSah6K36CKtpZoo4s9CimielZq6aWYZqrpppx26umnoIZ6UkAAOw=="),r.src=t,r.setAttribute("rel:animated_src",t),r.setAttribute("rel:auto_play",0),this._superGif=new Vp._(r,{autoPlay:!1}),this._superGif.init();var n,o=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return Kp(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Kp(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){s=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(s)throw i}}}}(this.element.children);try{for(o.s();!(n=o.n()).done;){var i=n.value;i.style.width="100%",i.style.height="100%"}}catch(t){o.e(t)}finally{o.f()}var a=this._superGif.getCanvas();a.style.width="100%",a.style.height="100%",this._superGif.load((function(){setTimeout((function(){e._superGif.moveTo(0),e.play&&e._superGif.play()}),100)}))}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(/\.gif$/.test(t[r].name))return void(this.src=e[r])}},{key:"src",get:function(){return this.getState("src")},set:function(t){this.set("src",t)}},{key:"play",get:function(){return this.getState("play")},set:function(t){this.setState("play",t)}},{key:"nature",get:function(){return ny}},{key:"tagName",get:function(){return"div"}}],r&&$p(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),u}(qp);function iy(t){return iy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},iy(t)}function ay(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==iy(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==iy(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===iy(o)?o:String(o)),n)}var o}function sy(){return sy="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=cy(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},sy.apply(this,arguments)}function uy(t,e){return uy=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},uy(t,e)}function cy(t){return cy=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},cy(t)}da.register("gif-view",oy);var fy={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"string",label:"src",name:"src"},{type:"checkbox",label:"started",name:"started"},{type:"checkbox",label:"loop",name:"loop"}],"value-property":"src",help:"scene/component/audio"},ly=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&uy(t,e)}(s,t);var e,r,n,o,i,a=(o=s,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=cy(o);if(i){var r=cy(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===iy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),a.apply(this,arguments)}return e=s,n=[{key:"image",get:function(){return s.IMAGE||(s.IMAGE=new Image,s.IMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQCAMAAAC3Ycb+AAAAP1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACzJYIvAAAAFHRSTlMA8BAwgNBgQKB/wCBwUJDg37CvXyUlBK8AABFYSURBVHja7NsBkqIwFIThTiAQgyBq3/+sm6p1tnamZkaTMhJJf1f4S/JeEIiIiIiIiIiIiIiIiEhD7Hg4BH84TpAKjJ4f3NFCtjVd+InXz2RTs+FXlxGylYHfcVfIJmb+YFWSLUyGVJKKBJJKUo+Rd6w63l/qzLuCkryO5fe0l2xk5mMWbe+v0fNBRqf7S3je6CipQ2ACr+dWcYEpzBFS1plpguatsnomMgdIQSOTuQ5SjmE6/UgK8szgdJIUM/FG41YlFmYJ2kkKsY5ZzAwBurHDk3WGeRY0bvYrGa1+rqNI22f7dS32ZnUK1GMr0eSK3mEc9dhKMxp+ZTo8kT2emOXS5LQ1kCxbJBocSd2k5PaIjMVzjWcdJPk9ooBnmzx1t5XbIxqBKpJ4NGTgzwKiGpK4do72gb+ZUMIYtCPm9WCPMsYTE5k2hq2ZvzujlCE1iRmwf3dvmRyKsT0T7b9I7HEPCpqCiqT2IIqaT1pI0noQZdlFC8l/PbYPAnRORT56VBEE6FXkb49agmByKhJ71BME6FsvEntUFQTdqekisUdlQWCXhovEHtUFAWbTapHYo8YgmFybO3vsUWcQYGmxSOxRbRAMprkisUfFQVKmrX18sxt7VB0ENjT1xir2qDxIwkFi3v89e+xRfxAMzfzzIfZ4hyAYDR9zwVuLPd4jCDrTwoLYGb5LEFi3/+E3rweR6urX20c/Fvls2Pvwm9mDSGIPhv8YPyGf3/eo9Ye7O8B2FIShAAooakEttex/rbODad5/yTHIAjqn505IQPv+Xz06dz+4VXORHEZcgAcB8updM8F6e25jBzwIkE07l+x8amMnPDp6nsNJ+BoZ7Q6F8egqAda9VEuRNlZjBzwYkMskdXR73okd8GBAJiKYjBcZKKqG9OiKDbgdfxJ5VhsBPDiQZhaouD3p4hfw4EAmwxisz3MSHwAPEmQ1TB1N+SmXWoAHC7JbZsWl/IxLLcCDBplNo3lrfMLsmwAPGmShAxX5/1vOEzjEz3iyfQ/hI36W4TctsUesOAifPdrQg8M++KYl95iCBkjI1r8634betBAPHZDTPFAmD3zLiHgogVTziMsahz0eIh5aIGHGRSJ2mFtHPR4iHhQIP2UvWGMf8wk74qEIEib7rLjPiBfxiAcCwp8V+Nae3uMdRhAPDIR/J5f/Q2DTcC+hIB7qIGEq3Ti9bx+sryMeAAgS70OK8G2kBD8L8QBAoLWU3g3vUVIc6D0txAMAsY+4jBWowXHO64gHBGKfYJ2T5qY1BxcL98BB+PQ+XiS9xxh9EQ8ChA6C5UXWIUoE9MBB8LVHQoS7ib8/dRn3sAcJ6bQRSdH96RDxIEH4QEX+AHF4LxHEAwUh12xyr1V8lwjiQYDYF8kuf1jluUQQDwrEvkhW8Wc6LhHUgwfhi4QPlHm7LRHawx4kpE191Dq8lgjhAYDQa1cftYrPEiE8OJDb40uqyzdQCA8WhAzL4G/PT4c3WrgHD2IfllGl53V37zsgHg5ApPNvVvq4Fn4spx4oiH1W3CwtEV+PDhEPJyBSkVX4aa7emkM83ICEKWpGM7wdvYCCeDgCEYpcwhLxczhEPFyBCEUWnRL5T6X59SBASBF+9l28TL5F7uEORCZyCUvEx+S7yT0cgoRVb9JaXLR1qUdfgksQ0fTbgmhFB20d8HAKEha14+F8f1sHPNyCiL6EqK+n20/rgIdjkFC0Ho1s6Gndvcc9ICkr/ey8/rHO6vp9KawL8DAFOV6l9Fyub7IbflsCag1qRfVsXWvxHjxIejU+BHZV6uvHD1XiEb++Bw8i+dNd+Wv0eCQmhcPhRPwUUt2DB5G1sfa1aeyzAuyJj9x2HjyIdKzIKw5SI14ieFtvo3kIQERj3lVhkUOnRD7AnjV5369QkAOJZeCH+Jh41xOLs73dQwAifY6dpxCCbjTDzLf1Bm1Y93tAIDOWXcLPvrHyr2hVoEAceEAgDQzB4jetk0/c2OXRHB48EJCpa4dgpYh2ETxtrshz7zx4ICCzfuTSDn8p/EOS9OTjwgMB+cABP3yWYuOPIofs33LigYCULlpZNXJppVU30Vf14kGAUCLijf1D71lN9FW9eFiA9KgZ8FPpPUsSnufGA+8hvAg2Kpz0nrX//qp+PIgpC3i6xJRITOye9fn1VT15ICCrVlQG5rywo0H8x965bVkNwmCYQ2kR6Gmb939WXV65dFnI/tPdjPBfO7XMN4EkTUJtqZp4sCJ1+8jwkhMu0KpMxFXFA8hlVfQSMxGH5mDK1VKV8QCyvTVtUiYyo7V358VStfGoAEFMhGYhEwloxZy9WKo2Hjwg5iSOvFDXeUYd33+PuVfHgwnEBWLocDJp+IIa2fyvperjwQRiXCKGosyXqoA+YfsIELuYu4HAt+msMknfDK4jfQJIzOZ2IPAQWJtFOhQKivR2IDZ6Awis7V0iLxqBI7uEZo19dakTogLSwKvf8yk8Jq6CGK0GKvWlatG7b7kkUU/Lo1gdXWn7/4E0j0qeJDpqN/ABqQcgJgdqURb4chjQktIugDS6wFFiz3JgaJj7AGJmholAe9YKhoZLJ0Ca6smjwJ4VwVN96gVIE5GM71kHaGKxGyAtRDaB2NBhLVmpHyANRKzDO28W7FS3HQFpaIWa8TrfCXQwegJSL5k+8M9UJ+pm9QTEnCIZrR0MDQeQ9ua0iCcYQaBTV0CqNXQW/yiyYG7W1heQanPaCkciBXuH1BkQJzHcDQxmpgGkPatl4WkbCXO/bW9AqlNg4H0PPMi6A1IxkQmOZ8D0ousNSMVEEuyreTAQ6Q7IRJeCX2YZQHhv6SrBOmpkM+YUzN0BqSRQCupmTeCP9wdkhiOREwtEzgGEsWcF9BhK9R8fQDiN7A8DiR0CKXQlj/q9IM8OgXjIzcKBlAHkD6FulgNzJwPIHwpo8mQAkX3LiPq9dKUMAQk9AqmcqmjuBAJCPQIpA4guIAsKJA0gnwNy3A4kDyBIHCEPxAwgf8gPILqA5AFEF5CxZX0lIHYc6rqADLf380BmFMgxgIzUyf8MJKLTRelKHgKy9wgkjfS7LiA0gKgC8vQn3HUA4RQ5LKPIAQciWbqIEg0YkLNDIHYUyqkCsmKN5vg3+W0AYTRATaPY+uu1IwS6UMGAlO6AFPjSCQMStaNh53cdcPG7Hx1Uupo+rx+Bltn1BuTAj5BptEV/bHAAwbnJMICwRmtUDOSEA8s4Rmtw3nITGD6TwUNoG0Ca7xi2YKSPj2eKXQFxQWKA2QbGMWEMMGseOb7C7T47uJS1JyAzVbTjqZdU3zbHzMXWS+qp4Fgn8Ahy/QCRGqQcwU1vGnN7fylboWn8Bzg//hyjxltvdcl45bwFfYKzFyBy11UU9BnjuoqfWizVlQXulpzBTNbaB5Aid+VRrkBFB630AMS9BC8FK2ggE7u/FGy1kvfcB9TKQufX5uUXNWl3EjvWCi4k/u9A3Ddq1CpTIQGe6VN1qd8ArcvDQNw3S41Kn6qQmOq5e7pRr+8fAYLiIJtFrrvYRMYL0q06vj8EZLXUriJzRY8H1xEagOCK7gkghRg6RQYO0I6aWPwIEAru80AiMWSdzAeuDXUKyr+WqpAID8hMHC1Ct8F4mUsQ6W8pJMICki0JHCBczAFdBl38G3VE6ErQhhWlih4LWrCSLpaqjggHiGe9mVjRY0YPoelyqcqIcIDEe97rqJFFH7FcLlUZEQ6Qg5plvZiBFNhtri1VFREGEC/Eg4nZoU5vqi1VFREGkIXDQ8xAIhzoT/WlKiLCAFIYPOQMxOPdjfWlKiLCADJRm3YGj+pDE2xktmmpaogwgMz8d8GrumZ4xzpbvinqISJ+hiTWm7wEqoJdI9JEV9JChAEkS3xCZzKecLcgN6YwlRBhAGmweTsblg6qKMM7Vmh321UQ4QAp1VfwhqVJIh+Wm03W0qV0EOEAybXtivkCmWrKeH2EZ/xBaSBCV2L9Re+LYSqJJIxDu1ew07U0EGEBcTtmHty4JuPtQhvLh1BAhK7Uvvq0GK484QZST0GvvFDqeSJ1IA0r2mfDljvqBoJ//rVsq7yZCA6kXgVkJ2f4ijIGMjOfMVsCBBORB2Jy+sM6ijNvaBUqmw/cStZ8EiKciHwp6Rp++88qmxXQeTUxDiJWJ9wSISvBicgXW+dypn1PqWTznlwgwdZdfiLHr5OELEAEASKvJFRE5JCPKbh8OxHdQKJU0crEzRXrJ/IEkFms6tGyrUw9kQeALFRXvK2iSzsRAAi6BLxM+60xdsqJAEBuXMAMxDLVp+gmAgC57/UT4qvVj3TVRCAgSAYL91aXtyNLzUQAIFhAiP8m0/NHOp+ILiBtPFKrs6bgSOcT0QTEB8nO3QR1yKslggKRf+m11UB0HOl8IlqAeCvauXuo8HnfIqIDyCw6G8XMcGiplMingMzCnbuHFp/3LSLPA4nUpqm5YkWNzwsQeQxIDsKjH5wVSU5qJPIJIIt4jjpqNBAekQeBfJOeHWS81FQoo4/I7UDcS3wUh0liTzLqiEgDqddx4ZHDrNZAACIAEMw88HPYWb0GAhABgEDmgf9Vb5oNBCByOxD3uqWYbCHVBgIQuRlIsbfwMEG5gQBE7gSyHMDsOayrxJvHBRC5B0hOxJH1nK4SlUE6QOR+IG6ju3iYQEqDdIDIzUDyZu/jMRHpS/OiRG4FkiPRfTw8kbrvIAJEACAIDpyHC1/GQHhEbgKSXwTyqIeEur6kixEBgABHOTr7YSX1MSFAhA0E307wUU76Y0KACAsI/tvCRzkF+iIuL0AEAYLbR2QOfvhKJ/obRESBxNt5rPSFXN4f7dyNdqMgEIbhAXWwJErT/e7/Wreb5HTT07QVgWSAeW5g7b4n8qOSUCRPEId4HP93SXp5dDNGRJFcQTxihSH+NW1Bb1cXKpIryJAwnG/zhl8ZcSP6jiKZghwRaaWLnP/AkcSKKJIniEcUs8QfjFLdEmRvkSxB4lfn0QN6DY+lshQpHiT96Dlr6r5hxRUpHST9ZEY71X7DOmOZQVZLsd5Q8wzrPxYYJDiKNqOBG1ZCkZKzrNXu6lHvkjChSFqQsdTPg45ApXtYaUXKr9TNuPcvqO2pVMkitFXAL2a79/qr3HQvVSTXUtofCl79RDXh5CDpw3pwu6+9kRlvtiI5VtPhmHLltT4EKVQkfb8pcOHrXqk6nBAksUjgpKtuYsskaxGKYT0+84uYgziE4YQgMdx0m8PRfis2MbL33PMXoVjD6PEunI4HSjDjStiJP08vQk9hZzQ7oH/geoLYCUBDW4rf4FqCDFt7THUO6B+4jiDn2XNTW7zf4hqCMND4BOsGyw+yAmh0x+QeFh7EeqD5Ce8nLDrI8NpbDyIWHIQNruo4GyAPlhrEzuixBxHLDDJMnfYgYolBricHNfjIdgMWF+Qyu+pkgX4HCwuymL57ELGkIHZG7z2IWE6Q5VV7vGMhQewbtMcZiwhyHj26ne9+xs8PcvDQHnFFqCD7Au0RW4TK+fOKqw4eoOcqYqgU53HR3/5uShFPCfKey9hFDyJO/vAi7RDZnp7X5igyUH72xSDW1E2Pn4tMRCQgR8vLwbgii4gcmLvqQcSPGtIPX3M08wn6I4qYQ94cM/Yw9Xxhmw+X/59wHrtMlX1AmIkzdyaaAnLg1Nnw8WGYSk40X/BOh4+El6LMSBnN2Cd0tPq4w/LJXGrMbCX06PZ2dcM65yzlNertShSHf3SzRAyPM332IcSAHUKPi8EHmXU0l8Uglmni0yipDoi16s+jJKejhywLooz68yiMEcHr2qM4h81CJ++VPJfTu5UwBpv4Pp9DJSi6MJx0bvUwiw4ewgT8zNR0LHUL+OccOpY/3ElzyGKD5pBlMJpDlsOkMythRoNbXh95PJsdA67MrMtAEYbjeDqNo+7oKqWUUkoppZRSSimllFJKFfMXp4vmSjB8n6sAAAAASUVORK5CYII="),s.IMAGE}}],(r=[{key:"dispose",value:function(){sy(cy(s.prototype),"dispose",this).call(this),this.started=!1,delete this._audio}},{key:"ready",value:function(){var t=this;sy(cy(s.prototype),"ready",this).call(this),this._audio=new Audio,this._audio.addEventListener("canplay",(function(){t.started&&t._audio.play()}));var e=this.state,r=e.src,n=void 0===r?"":r,o=e.loop,i=void 0!==o&&o,a=e.started,u=void 0!==a&&a;this.onchangeSrc(n),this.onchangeLoop(i),this.onchangeStarted(u)}},{key:"render",value:function(t){var e=this.state,r=e.left,n=e.top,o=e.width,i=e.height;e.src,t.beginPath(),this.drawImage(t,s.image,r,n,o,i)}},{key:"nature",get:function(){return fy}},{key:"hasTextProperty",get:function(){return!1}},{key:"src",get:function(){return this.get("src")},set:function(t){this.set("src",t)}},{key:"started",get:function(){return!!this.get("started")},set:function(t){this.set("started",t)}},{key:"start",value:function(){this._audio&&(this._audio.classList.add("active"),this._audio.play())}},{key:"pause",value:function(){this._audio&&(this._audio.classList.remove("active"),this._audio.pause())}},{key:"onchangeSrc",value:function(t){try{"data"!==String(t).substring(0,4)?this._audio.crossOrigin="use-credentials":this._audio.crossOrigin=null,this._audio.src="string"==typeof t?this.app.url(t):t}catch(t){return void console.error(t)}}},{key:"onchangeStarted",value:function(t){var e=this._audio;t?4==e.readyState&&e.play():e.pause()}},{key:"onchangeLoop",value:function(t){this._audio.loop=t}},{key:"onchange",value:function(t,e){"src"in t&&this.onchangeSrc(t.src),"started"in t&&this.onchangeStarted(t.started),"loop"in t&&this.onchangeLoop(t.loop)}},{key:"ondblclick",value:function(t){this.started=!this.started}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("audio/"))return void(this.src=e[r])}}])&&ay(e.prototype,r),n&&ay(e,n),Object.defineProperty(e,"prototype",{writable:!1}),s}(Ea(xa));function hy(t){return hy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},hy(t)}function py(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==hy(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==hy(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===hy(o)?o:String(o)),n)}var o}function yy(t,e){return yy=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},yy(t,e)}function dy(t){return dy=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},dy(t)}da.register("audio",ly);var vy=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&yy(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=dy(n);if(o){var r=dy(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===hy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"is3dish",value:function(){return!0}}])&&py(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Ea(da));function gy(t){return gy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},gy(t)}function by(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,xy(n.key),n)}}function my(t,e,r,n){return my="undefined"!=typeof Reflect&&Reflect.set?Reflect.set:function(t,e,r,n){var o,i=Sy(t,e);if(i){if((o=Object.getOwnPropertyDescriptor(i,e)).set)return o.set.call(n,r),!0;if(!o.writable)return!1}if(o=Object.getOwnPropertyDescriptor(n,e)){if(!o.writable)return!1;o.value=r,Object.defineProperty(n,e,o)}else wy(n,e,r);return!0},my(t,e,r,n)}function wy(t,e,r){return(e=xy(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function xy(t){var e=function(t,e){if("object"!==gy(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==gy(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===gy(e)?e:String(e)}function ky(){return ky="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=Sy(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ky.apply(this,arguments)}function Sy(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Oy(t)););return t}function _y(t,e){return _y=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},_y(t,e)}function Oy(t){return Oy=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Oy(t)}da.register("text",vy);var Ey=["refid","left","top","width","height","rotation","animation"],Ay=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&_y(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Oy(n);if(o){var r=Oy(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===gy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"isGroup",value:function(){return!0}},{key:"get",value:function(t){return this._model[t]}},{key:"set",value:function(t,e){if("string"==typeof t)return this.set(wy({},t,e));var r=Ey.reduce((function(e,r){return t.hasOwnProperty(r)&&(e[r]=t[r]),e}),{});return ky(Oy(a.prototype),"set",this).call(this,r)}},{key:"capture",value:function(t,e,r){var n=ky(Oy(a.prototype),"capture",this).call(this,t,e,r);if(n!==this)return n}},{key:"bounds",get:function(){return ky(Oy(a.prototype),"bounds",this)},set:function(t){if(this.__MUTATING__)!function(t,e,r,n,o){if(!my(t,e,r,n||t)&&o)throw new TypeError("failed to set property")}(Oy(a.prototype),"bounds",t,this,!0);else{var e=this.bounds,r=t.width/e.width,n=t.height/e.height;this.path=this.path.map((function(o){return{x:t.left+(o.x-e.left)*r,y:t.top+(o.y-e.top)*n}})),this.components&&this.components.forEach((function(t){if(t.mutable)t.mutatePath(null,(function(t){return t.map((function(t){return{x:t.x*r,y:t.y*n}}))}));else{var e=t.bounds,o=t.center,i={x:o.x*(1-r),y:o.y*(1-n)},a=e.width*(1-r),s=e.height*(1-n),u=-(i.x-a/2),c=-(i.y-s/2);t.bounds={left:e.left+u,top:e.top+c,width:e.width*r,height:e.height*n}}}))}}},{key:"focusible",get:function(){return!1}},{key:"hasTextProperty",get:function(){return!1}},{key:"calculateBounds",value:function(){this.clearCache(),this.__MUTATING__=!0,this.mutateBounds((function(t){var e=da.union(this.components.map((function(t){return t.bounds})));return this.components.forEach((function(t){var r=t.bounds;t.bounds={left:r.left-e.left,top:r.top-e.top,width:r.width,height:r.height}})),{left:t.left+e.left,top:t.top+e.top,width:e.width,height:e.height}}),this),this.__MUTATING__=!1,this.parent.isGroup()&&this.parent.calculateBounds()}},{key:"render",value:function(t){}},{key:"postrender",value:function(t){var e=this.state,r=e.top,n=e.left;e.scale,t.translate(n,r),this.layout.drawables(this).forEach((function(e){e.draw(t)})),t.translate(-n,-r)}}],r&&by(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Eh);function Py(t){return Py="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Py(t)}function jy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Py(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Py(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Py(o)?o:String(o)),n)}var o}function Ty(){return Ty="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Ry(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Ty.apply(this,arguments)}function My(t,e){return My=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},My(t,e)}function Ry(t){return Ry=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ry(t)}da.register("group",Ay);var Iy={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"id-input",label:"ref",name:"ref"},{type:"select",label:"fit",name:"fit",property:{options:["both","ratio"]}}],"value-property":"ref",help:"scene/component/local-ref"},Cy=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&My(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ry(n);if(o){var r=Ry(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Py(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"ref",get:function(){var t=this.getState("ref");return t&&"string"==typeof t?this.root.findById(t):null},set:function(t){this.setState("ref",t)}},{key:"refScale",get:function(){var t=this.ref.bounds,e=this.bounds,r=e.width/t.width,n=e.height/t.height;return"both"===this.model.fit?{x:r,y:n}:{x:Math.min(r,n),y:Math.min(r,n)}}},{key:"draw",value:function(t){this._drawing||(this._drawing=!0,Ty(Ry(a.prototype),"draw",this).call(this,t),this._drawing=!1)}},{key:"prerender",value:function(t){if(Ty(Ry(a.prototype),"prerender",this).call(this,t),this.ref){var e=this.ref.center,r=this.center,n=this.refScale;t.translate(r.x,r.y),t.scale(n.x,n.y),t.translate(-e.x,-e.y)}}},{key:"postrender",value:function(t){if(this.ref)return this.ref.postrender(t);Ty(Ry(a.prototype),"postrender",this).call(this,t)}},{key:"render",value:function(t){if(this.ref)return this.ref.render(t);this.state.round;var e=this.bounds,r=e.left,n=e.top,o=e.width,i=e.height;t.beginPath(),t.rect(r,n,o,i)}},{key:"nature",get:function(){return Iy}},{key:"hasTextProperty",get:function(){return!1}}])&&jy(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Ea(xa));function Ly(t){return Ly="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ly(t)}function Dy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ly(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ly(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ly(o)?o:String(o)),n)}var o}function By(t,e){return By=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},By(t,e)}function Ny(t){return Ny=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ny(t)}da.memoize(Cy.prototype,"ref",!1),da.memoize(Cy.prototype,"refScale",!1),da.register("local-ref",Cy);var Fy=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&By(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ny(n);if(o){var r=Ny(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Ly(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"render",value:function(t){}},{key:"layout",get:function(){return za.get(this.get("layout"))||Ya}}])&&Dy(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(bh(Ss));function zy(t){return zy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},zy(t)}function Uy(){Uy=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,o){var i=e&&e.prototype instanceof h?e:h,a=Object.create(i.prototype),s=new O(o||[]);return n(a,"_invoke",{value:x(t,r,s)}),a}function f(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var l={};function h(){}function p(){}function y(){}var d={};u(d,i,(function(){return this}));var v=Object.getPrototypeOf,g=v&&v(v(E([])));g&&g!==e&&r.call(g,i)&&(d=g);var b=y.prototype=h.prototype=Object.create(d);function m(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function w(t,e){function o(n,i,a,s){var u=f(t[n],t,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==zy(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,s)}),(function(t){o("throw",t,a,s)})):e.resolve(l).then((function(t){c.value=t,a(c)}),(function(t){return o("throw",t,a,s)}))}s(u.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===l)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=f(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===l)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function k(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,k(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),l;var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,l;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,l):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,l)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function E(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(zy(t)+" is not iterable")}return p.prototype=y,n(b,"constructor",{value:y,configurable:!0}),n(y,"constructor",{value:p,configurable:!0}),p.displayName=u(y,s,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===p||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,y):(t.__proto__=y,u(t,s,"GeneratorFunction")),t.prototype=Object.create(b),t},t.awrap=function(t){return{__await:t}},m(w.prototype),u(w.prototype,a,(function(){return this})),t.AsyncIterator=w,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new w(c(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},m(b),u(b,s,"Generator"),u(b,i,(function(){return this})),u(b,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=E,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,l):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),l},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),l}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:E(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),l}},t}function Yy(t,e,r,n,o,i,a){try{var s=t[i](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,o)}function Gy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==zy(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==zy(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===zy(o)?o:String(o)),n)}var o}function Hy(){return Hy="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Xy(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Hy.apply(this,arguments)}function Wy(t,e){return Wy=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Wy(t,e)}function Xy(t){return Xy=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Xy(t)}var qy={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"scene-number",name:"ref",placeholder:"SCENE-1"},{type:"select",label:"fit",name:"fit",property:{options:["both","ratio"]}},{type:"select",label:"mode",name:"mode",property:{options:["view","interaction"]}}],"value-property":"ref",help:"scene/component/global-ref"},Vy=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Wy(t,e)}(u,t);var e,r,n,o,i,a,s=(i=u,a=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Xy(i);if(a){var r=Xy(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===zy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function u(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,u),s.apply(this,arguments)}return e=u,r=[{key:"dispose",value:function(){this._releaseRef(),Hy(Xy(u.prototype),"dispose",this).call(this)}},{key:"nature",get:function(){return qy}},{key:"hasTextProperty",get:function(){return!1}},{key:"tagName",get:function(){return"div"}},{key:"setElementProperties",value:function(t){var e=this.state.mode,r=void 0===e?"view":e;t.style.pointerEvents="view"==r?"none":"inherit"}},{key:"ready",value:function(){Hy(Xy(u.prototype),"ready",this).call(this),this.fetchRef()}},{key:"reposition",value:function(){if(this.element){Hy(Xy(u.prototype),"reposition",this).call(this);var t=this._element_bounds,e=this.element,r=e.offsetWidth,n=e.offsetHeight;if(this._element_bounds={offsetWidth:r,offsetHeight:n},(!t||t.offsetWidth!=r||t.offsetHeight!=n)&&this.ref&&this.root.target_element){var o=this.state.fit,i=void 0===o?"ratio":o;this.ref.fit(i)}}}},{key:"fetchRef",value:(n=Uy().mark((function t(){var e,r,n,o,i;return Uy().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(this._releaseRef(),e=this.state,r=e.ref,n=e.fit,o=void 0===n?"ratio":n,r){t.next=4;break}return t.abrupt("return");case 4:if(!(i=this.app.refProvider)||!r){t.next=18;break}return t.prev=6,t.next=9,i.get(r,!0);case 9:this.__ref=t.sent,this.__ref.target=this.element,this.__ref.fit(o),this.__ref.data=this.data,t.next=18;break;case 15:t.prev=15,t.t0=t.catch(6),Zn(t.t0);case 18:case"end":return t.stop()}}),t,this,[[6,15]])})),o=function(){var t=this,e=arguments;return new Promise((function(r,o){var i=n.apply(t,e);function a(t){Yy(i,r,o,a,s,"next",t)}function s(t){Yy(i,r,o,a,s,"throw",t)}a(void 0)}))},function(){return o.apply(this,arguments)})},{key:"ref",get:function(){return this.__ref},set:function(t){this.setState("ref",t)}},{key:"_releaseRef",value:function(){this.__ref&&this.__ref.release&&this.__ref.release(),delete this.__ref}},{key:"onchange",value:function(t,e,r){var n=this;Hy(Xy(u.prototype),"onchange",this).call(this,t,e,r),"ref"in t&&this.fetchRef(),"fit"in t&&this.ref&&requestAnimationFrame((function(){var t=n.state.fit;n.ref.fit(t)})),"data"in t&&this.ref&&requestAnimationFrame((function(){n.ref.data=t.data}))}}],r&&Gy(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),u}(Fy);function Qy(t){return Qy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Qy(t)}function Ky(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Qy(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Qy(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Qy(o)?o:String(o)),n)}var o}function Jy(){return Jy="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=$y(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Jy.apply(this,arguments)}function Zy(t,e){return Zy=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Zy(t,e)}function $y(t){return $y=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},$y(t)}da.register("global-ref",Vy);var td={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"board",name:"board"},{type:"checkbox",label:"modal",name:"modal"},{type:"checkbox",label:"closable",name:"closable"},{type:"checkbox",label:"show",name:"show"},{type:"select",label:"location",name:"location",property:{options:["center","left-top","right-top","left-bottom","right-bottom","auto"]}},{type:"data",label:"value",name:"value"}],help:"scene/component/popup"},ed=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Zy(t,e)}(s,t);var e,r,n,o,i,a=(o=s,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=$y(o);if(i){var r=$y(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Qy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),a.apply(this,arguments)}return e=s,r=[{key:"ready",value:function(){Jy($y(s.prototype),"ready",this).call(this),this.show&&this.onchangeShow(!0)}},{key:"render",value:function(t){var e=this.bounds,r=e.left,n=e.top,o=e.width,i=e.height;t.beginPath(),this.drawImage(t,s.image,r,n,o,i)}},{key:"onchange",value:function(t,e){"value"in t?this.show?this.onchangeShow(!0):this.show=!0:"show"in t&&this.onchangeShow(this.show)}},{key:"onchangeShow",value:function(t){!this.app.isEditMode&&this.getState("board")&&(t?Ka.show(this,this.board,{location:this.getState("location"),modal:this.getState("modal"),closable:this.getState("closable")||!1,data:this.value}):Ka.hide(this))}},{key:"board",get:function(){return this.getState("board")},set:function(t){this.set("board",t)}},{key:"show",get:function(){return this.getState("show")},set:function(t){this.setState("show",t)}},{key:"started",get:function(){return this.getState("show")},set:function(t){this.setState("show",t)}},{key:"value",get:function(){return this.getState("value")},set:function(t){this.setState("value",t)}},{key:"hasTextProperty",get:function(){return!1}},{key:"nature",get:function(){return td}}],n=[{key:"image",get:function(){return s._image||(s._image=new Image,s._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAMAAABG8BK2AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuZGFiYWNiYiwgMjAyMS8wNC8xNC0wMDozOTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIzLjAgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkM4QzQxNUMzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkM4QzQxNUQzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpENjlENTQ3RjMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpENjlENTQ4MDMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsiUYSQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA51BMVEVHcEwzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOguTm2AAAATHRSTlMARhB73r9B7YLrsqdE+0cq9Avzeg31eQx4aQ+Ks6aUd5DsYKixEX1w8vyT2VjoZ3YezY/cCEDvl+QTvRwJ0ifwK/5T/aw6+IuFuCImAcS6MQAAAeJJREFUWMPt2FlX2zAQhuHJYmOSFhIggbC0QNn3rS1dKXSH9///Hi58CJLxKIpEWi6YO8c5z4lG/nxGEXmu/1OVLGnhrFaSVQYg1SZetTTvUibqeFZ9QlfmvRWoV1VmCaCRzroXPpsuAjTV7gLUfPahBqD1OQMW/fazAWTKvQRI/ZgUSJR7U8CM/dHZ+/2VcatWdvdEZAaYUhiAwkerJXt0rnzXwdRKmHfDM0fHD5kxjTFyVLzVfvvirn7+cDJWjhy7c7XlYuwc6Urvu2tRhRypyhwAf1sKY+TIxfQA+H39q5wxc+RgVrcBduTmZTlj5khnDgH4IzKpMGaOVCbvyyvRGTNHGtPrKypjXirM5jb910I4k69oQeKY+77EMAcALEsck/+W6f71tyCma/ZFROTrJVwMy7wmf3bv6/MX+Dgkkysblvxps/dhOKZb6IvrTakzXXuPApnpYneDGOeKvJlaSXcDmA7AicQyW84VeTOnY+NdiWcG1uiZksFEHdyAlsJEjEkmkwGNsKHNZCJGSKtVTYC1tO022mnjwUBrMdXg8dreuOBhv7D/62/8lGZ1wLxXyZKOm+iUHIQintyny0TkaATHjYgcjeAoFpEje9R/nGPqIx2aw3NU9odCQI6e6x/VLY32cKQXVBnkAAAAAElFTkSuQmCC"),s._image}}],r&&Ky(e.prototype,r),n&&Ky(e,n),Object.defineProperty(e,"prototype",{writable:!1}),s}(Ea(xa));function rd(t){return rd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},rd(t)}function nd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==rd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==rd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===rd(o)?o:String(o)),n)}var o}function od(t,e){return od=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},od(t,e)}function id(t){return id=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},id(t)}da.register("popup",ed);var ad=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&od(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=id(n);if(o){var r=id(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===rd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"render",value:function(t){var e=this.state.path,r=void 0===e?[]:e;if(!(r.length<=1)){t.beginPath(),t.moveTo(r[0].x,r[0].y);for(var n=1;n<r.length;n++)t.lineTo(r[n].x,r[n].y);t.closePath(),this.drawStroke(t)}}},{key:"path",get:function(){return this.model.path},set:function(t){this.set("path",t)}},{key:"contains",value:function(t,e){var r=this.state.path,n=!1;return r.forEach((function(o,i){var a=(i+r.length+1)%r.length,s=o.x,u=o.y,c=r[a].x,f=r[a].y;u>e!=f>e&&t<(c-s)*(e-u)/(f-u)+s&&(n=!n)})),n}}])&&nd(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(da);function sd(t){return sd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},sd(t)}function ud(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==sd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==sd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===sd(o)?o:String(o)),n)}var o}function cd(t,e){return cd=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},cd(t,e)}function fd(t){return fd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},fd(t)}da.register("path",ad);var ld={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/triangle"},hd=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&cd(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=fd(n);if(o){var r=fd(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===sd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"contains",value:function(t,e){for(var r=this.state,n=[r.x1,r.y1,r.x2,r.y2,r.x3,r.y3],o=!1,i=0;i<n.length;i+=2){var a=(i+2)%n.length,s=n[i],u=n[i+1],c=n[a+1];u>e!=c>e&&t<(n[a]-s)*(e-u)/(c-u)+s&&(o=!o)}return o}},{key:"mutable",get:function(){return!0}},{key:"path",get:function(){var t=this.state;return[{x:t.x1,y:t.y1},{x:t.x2,y:t.y2},{x:t.x3,y:t.y3}]},set:function(t){this.set({x1:t[0].x,y1:t[0].y,x2:t[1].x,y2:t[1].y,x3:t[2].x,y3:t[2].y})}},{key:"nature",get:function(){return ld}}])&&ud(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(xa);function pd(t){return pd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},pd(t)}function yd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==pd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==pd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===pd(o)?o:String(o)),n)}var o}function dd(t,e){return dd=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},dd(t,e)}function vd(t){return vd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},vd(t)}da.memoize(hd.prototype,"path",!1),da.register("triangle",hd);var gd={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"}],help:"scene/component/donut"},bd={ondragmove:function(t,e,r){r.controls;var n=r.model,o=n.cx,i=n.rx;i=Math.abs(i);var a=(r.transcoordP2S(t.x,t.y).x-o)/i*100;a=a>=100||a<=-100?100:Math.abs(a),r.set({ratio:a})}},md=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&dd(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=vd(n);if(o){var r=vd(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===pd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"is3dish",value:function(){return!1}},{key:"render",value:function(t){var e=this.state,r=e.ratio,n=void 0===r?50:r,o=e.cx,i=e.cy,a=e.rx,s=e.ry,u=e.startAngle,c=e.endAngle,f=e.anticlockwise;a=Math.abs(a),s=Math.abs(s),t.beginPath(),t.ellipse(o,i,a,s,0,u||0,c||2*Math.PI,f),t.moveTo(o+a/100*n,i),t.ellipse(o,i,a/100*n,s/100*n,0,u||0,c||2*Math.PI,!0)}},{key:"contains",value:function(t,e){var r=this.state,n=r.cx,o=r.cy,i=r.rx,a=r.ry,s=r.ratio,u=(t-n)/(2*(i=Math.abs(i))-.5),c=(e-o)/(2*(a=Math.abs(a))-.5),f=(t-n)/(i/100*s*2-.5),l=(e-o)/(a/100*s*2-.5),h=!1;return u*u+c*c<.25&&f*f+l*l>.25&&(h=!h),h}},{key:"controls",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.rx,o=t.ratio;return[{x:e+(n=Math.abs(n))/100*o,y:r,handler:bd}]}},{key:"nature",get:function(){return gd}}])&&yd(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(ip);function wd(t){return wd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},wd(t)}function xd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==wd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==wd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===wd(o)?o:String(o)),n)}var o}function kd(t,e){return kd=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},kd(t,e)}function Sd(t){return Sd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Sd(t)}da.memoize(md.prototype,"controls",!1),da.register("donut",md);var _d={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"},{type:"number",label:"wing",name:"wing",property:"wing"}],help:"scene/component/star"},Od={ondragmove:function(t,e,r){r.controls;var n=r.model,o=n.cy,i=n.ry,a=(r.transcoordP2S(t.x,t.y).y-o)/i*100+100;a>=100?a=100:a<=0&&(a=0),r.set({ratio:a})}},Ed=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&kd(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Sd(n);if(o){var r=Sd(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===wd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"is3dish",value:function(){return!1}},{key:"render",value:function(t){var e=this.state,r=e.ratio,n=void 0===r?30:r,o=e.wing,i=void 0===o?5:o,a=e.cx,s=e.cy,u=e.rx,c=e.ry;if(e.startAngle,e.endAngle,e.anticlockwise,!(i<3)){var f=1.5707963267948966,l=2*Math.PI/i,h=u-n/100*u,p=c-n/100*c;t.save(),t.beginPath(),t.translate(a,s),t.moveTo(u*Math.cos(-f),c*Math.sin(-f)),t.lineTo((u-h)*(Math.cos(l-f)+Math.cos(0-f))/2,(c-p)*(Math.sin(l-f)+Math.sin(0-f))/2);for(var y=1;y<i;y++)t.lineTo(u*Math.cos(l*y-f),c*Math.sin(l*y-f)),t.lineTo((u-h)*(Math.cos(l*(y+1)-f)+Math.cos(l*y-f))/2,(c-p)*(Math.sin(l*(y+1)-f)+Math.sin(l*y-f))/2);t.closePath(),t.restore()}}},{key:"controls",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.ry;return[{x:e,y:r-n+n*(t.ratio/100),handler:Od}]}},{key:"nature",get:function(){return _d}}])&&xd(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(ip);function Ad(t){return Ad="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ad(t)}function Pd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ad(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ad(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ad(o)?o:String(o)),n)}var o}function jd(){return jd="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Md(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},jd.apply(this,arguments)}function Td(t,e){return Td=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Td(t,e)}function Md(t){return Md=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Md(t)}da.memoize(Ed.prototype,"controls",!1),da.register("star",Ed);const Rd=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Td(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Md(n);if(o){var r=Md(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Ad(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"animOnValueChange",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2?arguments[2]:void 0;if(t!=this._lastValue){if(r)var o=t-(Number(n)||0);else o=t-(this._lastValue||0);this._lastValue=t,this._anim_alpha=-o,this.animate({step:function(t){e._anim_alpha=o*(t-1),e.invalidate()},duration:1e3,delta:"circ",options:{x:1},ease:"out"}).start()}}},{key:"dispose",value:function(){jd(Md(a.prototype),"dispose",this).call(this),delete this._value_substitutor}},{key:"onchange",value:function(t,e){t.hasOwnProperty("value")&&delete this._value_substitutor}},{key:"animAlpha",get:function(){return this._anim_alpha||0}},{key:"animValue",get:function(){return(this._lastValue||0)+(this._anim_alpha||0)}},{key:"defaultValueSubstitutor",value:function(){return this.getState("value")}},{key:"valueSubstitutor",get:function(){return this._value_substitutor||(this._value_substitutor=Ki(this.getState("value"),this)||this.defaultValueSubstitutor),this._value_substitutor}},{key:"value",get:function(){return Number(this.valueSubstitutor())||0},set:function(t){delete this._value_substitutor,this.setState("value",Number(wn(t)))}}],r&&Pd(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return e};function Id(t){return Id="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Id(t)}function Cd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Id(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Id(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Id(o)?o:String(o)),n)}var o}function Ld(t,e){return Ld=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ld(t,e)}function Dd(t){return Dd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Dd(t)}const Bd=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ld(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Dd(n);if(o){var r=Dd(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Id(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"_convertDataFormat",value:function(t,e){return"json"===e?JSON.parse(t):t}},{key:"isDataSource",value:function(){return!0}}])&&Cd(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return e};function Nd(t){return Nd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Nd(t)}function Fd(){Fd=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,o){var i=e&&e.prototype instanceof h?e:h,a=Object.create(i.prototype),s=new O(o||[]);return n(a,"_invoke",{value:x(t,r,s)}),a}function f(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var l={};function h(){}function p(){}function y(){}var d={};u(d,i,(function(){return this}));var v=Object.getPrototypeOf,g=v&&v(v(E([])));g&&g!==e&&r.call(g,i)&&(d=g);var b=y.prototype=h.prototype=Object.create(d);function m(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function w(t,e){function o(n,i,a,s){var u=f(t[n],t,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==Nd(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,s)}),(function(t){o("throw",t,a,s)})):e.resolve(l).then((function(t){c.value=t,a(c)}),(function(t){return o("throw",t,a,s)}))}s(u.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===l)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=f(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===l)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function k(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,k(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),l;var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,l;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,l):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,l)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function E(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(Nd(t)+" is not iterable")}return p.prototype=y,n(b,"constructor",{value:y,configurable:!0}),n(y,"constructor",{value:p,configurable:!0}),p.displayName=u(y,s,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===p||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,y):(t.__proto__=y,u(t,s,"GeneratorFunction")),t.prototype=Object.create(b),t},t.awrap=function(t){return{__await:t}},m(w.prototype),u(w.prototype,a,(function(){return this})),t.AsyncIterator=w,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new w(c(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},m(b),u(b,s,"Generator"),u(b,i,(function(){return this})),u(b,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=E,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,l):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),l},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),l}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:E(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),l}},t}function zd(t,e,r,n,o,i,a){try{var s=t[i](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,o)}function Ud(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Nd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Nd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Nd(o)?o:String(o)),n)}var o}var Yd=new WeakSet,Gd=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.counters={},this.references={},this.creator=e,this.disposer=r,Yd.add(this)}var e,r,n;return e=t,r=[{key:"dispose",value:function(){if(this.disposer)for(var t in this.references)this.disposer.call(null,t,this.references[t]);delete this.references,delete this.counters}},{key:"ids",get:function(){return Object.keys(this.references)}},{key:"create",value:function(t){var e=this;return new Promise((function(r,n){e.creator?e.creator.call(null,t,(function(e){!function(e){e.release=function(){this.disposer&&this.disposer.call(null,t,e),delete e.release,to("RELEASED",t)},r(e)}(e)}),(function(t){n(t)})):n(Error("Reference id("+t+") could not be created. Reference creator should be defined."))}))}},{key:"add",value:function(t,e){var r=this,n=new Promise((function(n,o){var i=r.references[t];if(i)i===e?o(Error("Reference ID and target duplicate")):e?o(Error("Reference ID duplicate")):n(i);else{function a(e){e.release=function(){r.release(this)},r.references[t]=e,r.counters[t]=1,n(e)}if(e)a(e);else{if(!r.creator)return void o(Error("Reference id("+t+") is not allowed. Reference creator should be defined."));r.creator.call(null,t,(function(t){a(t)}),(function(t){o(t)}))}}}));return this.references[t]||(this.references[t]=n),n}},{key:"get",value:function(){var t,e=(t=Fd().mark((function t(e,r){var n;return Fd().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!(n=this.references[e])){t.next=13;break}if(n instanceof Promise){t.next=7;break}if(e in this.counters){t.next=5;break}throw new Error("No Reference Count");case 5:return this.counters[e]++,t.abrupt("return",n);case 7:if(!r){t.next=13;break}return t.next=10,n;case 10:return n=t.sent,this.counters[e]++,t.abrupt("return",n);case 13:if(!r){t.next=17;break}return t.next=16,this.add(e);case 16:return t.abrupt("return",t.sent);case 17:throw new Error("No References for "+e);case 18:case"end":return t.stop()}}),t,this)})),function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function a(t){zd(i,n,o,a,s,"next",t)}function s(t){zd(i,n,o,a,s,"throw",t)}a(void 0)}))});return function(t,r){return e.apply(this,arguments)}}()},{key:"_id",value:function(t){for(var e in this.references)if(this.references[e]===t)return e;return-1}},{key:"release",value:function(t){var e=this._id(t),r=this.references[e];r?(this.counters[e]--,0==this.counters[e]&&(this.disposer&&this.disposer.call(null,e,r),delete this.references[e],delete this.counters[e],delete t.release,to("RELEASED",e))):Zn("No Referenced ID")}}],n=[{key:"residents",get:function(){return Yd}}],r&&Ud(e.prototype,r),n&&Ud(e,n),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Hd(t){return Hd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Hd(t)}function Wd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Hd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Hd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Hd(o)?o:String(o)),n)}var o}var Xd={},qd={},Vd=[];function Qd(t){var e="SCRIPT"==t.target.tagName?Xd:qd,r=t.target.src||t.target.href;e[r]=!0,Vd.forEach((function(t,n){var o=t.resolve,i=t.scripts,a=t.styles;if(e==Xd){var s=i.indexOf(r);s>-1&&s<i.length-1&&Jd(i[s+1])}for(var u=0;u<i.length;u++)if(!Xd[i[u]])return;if(a)for(var c=0;c<a.length;c++)if(!qd[a[c]])return;o(),Vd[n]=null})),Vd=Vd.filter(Boolean)}function Kd(t){var e=t.target.src,r="SCRIPT"==t.target.tagName?Xd:qd;Vd.forEach((function(n,o){var i=n.reject,a=n.scripts,s=n.styles,u=!1;if(r===Xd){for(var c=0;c<a.length;c++)if(a[c]==e){u=!0;break}}else if(s)for(var f=0;f<s.length;f++)if(s[f]==e){u=!0;break}u&&(i(t),Vd[o]=null)})),Vd=Vd.filter(Boolean),delete r[e],document.head.removeChild(t.target)}function Jd(t){Xd[t]=!1;var e=document.createElement("script");e.onload=Qd,e.onerror=Kd,e.type="text/javascript",e.src=t,document.head.appendChild(e)}var Zd=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,r;return e=t,r=[{key:"load",value:function(t,e){return"string"==typeof t&&(t=[t]),"string"==typeof e&&(e=[e]),new Promise((function(r,n){if((!t||t instanceof Array)&&(!e||e instanceof Array)){var o,i=!0;if(e&&e.forEach((function(t){qd.hasOwnProperty(t)||function(t){qd[t]=!1;var e=document.createElement("link");e.onload=Qd,e.onerror=Kd,e.type="text/css",e.rel="stylesheet",e.media="screen,print",e.href=t,document.head.appendChild(e)}(t),qd[t]||(i=!1)})),t&&t.length>0&&t.forEach((function(t){Xd.hasOwnProperty(t)?Xd[t]||(i=!1):o=o||t})),o)Jd(o);else if(i)return void r();Vd.push({resolve:r,reject:n,scripts:t,styles:e})}else n("invalid sources for load")}))}}],null&&Wd(e.prototype,null),r&&Wd(e,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();const $d="0.0.0";var tv=0,ev=performance.now(),rv=0;function nv(){return tv}requestAnimationFrame((function t(){requestAnimationFrame(t),rv++;var e=performance.now(),r=e-ev;r<1e3||(tv=Math.round(1e3*rv/r),ev=e,rv=0)}));var ov=i;function iv(){}})(),n})()));
|
|
2
|
+
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.scene=e():t.scene=e()}(self,(()=>(()=>{var t={73840:(t,e,r)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=r(92830),o=function(){function t(t,e){this.stream=t,this.handler=e}return t.prototype.parseCT=function(t){for(var e=[],r=0;r<t;r++)e.push(this.stream.readBytes(3));return e},t.prototype.readSubBlocks=function(){var t,e;e="";do{t=this.stream.readByte(),e+=this.stream.read(t)}while(0!==t);return e},t.prototype.parseHeader=function(){var t={};if(t.sig=this.stream.read(3),t.ver=this.stream.read(3),"GIF"!==t.sig)throw new Error("Not a GIF file.");t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=n.SuperGifUtils.byteToBitArr(this.stream.readByte());t.gctFlag=e.shift(),t.colorRes=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.sorted=e.shift(),t.gctSize=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.bgColor=this.stream.readByte(),t.pixelAspectRatio=this.stream.readByte(),t.gctFlag&&(t.gct=this.parseCT(1<<t.gctSize+1)),this.handler.hdr&&this.handler.hdr(t)},t.prototype.parseExt=function(t){var e=this;switch(t.label=this.stream.readByte(),t.label){case 249:t.extType="gce",function(t){e.stream.readByte();var r=n.SuperGifUtils.byteToBitArr(e.stream.readByte());t.reserved=r.splice(0,3),t.disposalMethod=n.SuperGifUtils.bitsToNum(r.splice(0,3)),t.userInput=r.shift(),t.transparencyGiven=r.shift(),t.delayTime=e.stream.readUnsigned(),t.transparencyIndex=e.stream.readByte(),t.terminator=e.stream.readByte(),e.handler.gce&&e.handler.gce(t)}(t);break;case 254:t.extType="com",function(t){t.comment=e.readSubBlocks(),e.handler.com&&e.handler.com(t)}(t);break;case 1:t.extType="pte",function(t){e.stream.readByte(),t.ptHeader=e.stream.readBytes(12),t.ptData=e.readSubBlocks(),e.handler.pte&&e.handler.pte(t)}(t);break;case 255:t.extType="app",function(t){e.stream.readByte(),t.identifier=e.stream.read(8),t.authCode=e.stream.read(3),"NETSCAPE"===t.identifier?function(t){e.stream.readByte(),t.unknown=e.stream.readByte(),t.iterations=e.stream.readUnsigned(),t.terminator=e.stream.readByte(),e.handler.app&&e.handler.app.NETSCAPE&&e.handler.app.NETSCAPE(t)}(t):function(t){t.appData=e.readSubBlocks(),e.handler.app&&e.handler.app[t.identifier]&&e.handler.app[t.identifier](t)}(t)}(t);break;default:t.extType="unknown",function(t){t.data=e.readSubBlocks(),e.handler.unknown&&e.handler.unknown(t)}(t)}},t.prototype.parseImg=function(t){t.leftPos=this.stream.readUnsigned(),t.topPos=this.stream.readUnsigned(),t.width=this.stream.readUnsigned(),t.height=this.stream.readUnsigned();var e=n.SuperGifUtils.byteToBitArr(this.stream.readByte());t.lctFlag=e.shift(),t.interlaced=e.shift(),t.sorted=e.shift(),t.reserved=e.splice(0,2),t.lctSize=n.SuperGifUtils.bitsToNum(e.splice(0,3)),t.lctFlag&&(t.lct=this.parseCT(1<<t.lctSize+1)),t.lzwMinCodeSize=this.stream.readByte();var r=this.readSubBlocks();t.pixels=n.SuperGifUtils.lzwDecode(t.lzwMinCodeSize,r),t.interlaced&&(t.pixels=function(t,e){for(var r=new Array(t.length),n=t.length/e,o=function(n,o){var i=t.slice(o*e,(o+1)*e);r.splice.apply(r,[n*e,e].concat(i))},i=[0,4,2,1],a=[8,8,4,2],s=0,u=0;u<4;u++)for(var c=i[u];c<n;c+=a[u])o(c,s),s++;return r}(t.pixels,t.width)),this.handler.img&&this.handler.img(t)},t.prototype.parseBlock=function(){var t={};switch(t.sentinel=this.stream.readByte(),String.fromCharCode(t.sentinel)){case"!":t.type="ext",this.parseExt(t);break;case",":t.type="img",this.parseImg(t);break;case";":t.type="eof",this.handler.eof&&this.handler.eof(t);break;default:throw new Error("Unknown block: 0x"+t.sentinel.toString(16))}"eof"!==t.type&&setTimeout(this.parseBlock.bind(this),0)},t.prototype.parse=function(){this.parseHeader(),setTimeout(this.parseBlock.bind(this),0)},t}();e.SuperGifParser=o},14319:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t){this.data=t,this.position=0}return t.prototype.readByte=function(){if(this.position>=this.data.length)throw new Error("Attempted to read past end of stream.");return this.data instanceof Uint8Array?this.data[this.position++]:255&this.data.charCodeAt(this.position++)},t.prototype.readBytes=function(t){for(var e=[],r=0;r<t;r++)e.push(this.readByte());return e},t.prototype.read=function(t){for(var e="",r=0;r<t;r++)e+=String.fromCharCode(this.readByte());return e},t.prototype.readUnsigned=function(){var t=this.readBytes(2);return(t[1]<<8)+t[0]},t}();e.SuperGifStream=r},87503:(t,e,r)=>{"use strict";var n=r(73840),o=r(14319),i=function(){function t(t,e){var r=this;for(var n in this.gifImgElement=t,this.options={autoPlay:!0},this.loading=!1,this.ready=!1,this.transparency=null,this.delay=null,this.disposalMethod=null,this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,this.playing=!0,this.forward=!0,this.ctxScaled=!1,this.frames=[],this.frameOffsets=[],this.initialized=!1,this.currentFrameIndex=-1,this.iterationCount=0,this.stepping=!1,this.handler={hdr:this.withProgress(this.doHdr.bind(this)),gce:this.withProgress(this.doGCE.bind(this)),com:this.withProgress(this.doNothing.bind(this)),app:{NETSCAPE:this.withProgress(this.doNothing.bind(this))},img:this.withProgress(this.doImg.bind(this)),eof:function(){r.pushFrame(),r.canvas.width=r.hdr.width*r.getCanvasScale(),r.canvas.height=r.hdr.height*r.getCanvasScale(),r.playerInit(),r.loading=!1,r.ready=!0,r.loadCallback&&r.loadCallback(r.gifImgElement)}},e)this.options[n]=e[n];this.onEndListener=e.onEnd,this.loopDelay=e.loopDelay||0,this.overrideLoopMode=null!=e.loopMode?e.loopMode:"auto",this.drawWhileLoading=null==e.drawWhileLoading||e.drawWhileLoading}return t.prototype.init=function(){var t=this.gifImgElement.parentNode,e=document.createElement("div");this.canvas=document.createElement("canvas"),this.canvasContext=this.canvas.getContext("2d"),this.tmpCanvas=document.createElement("canvas"),e.className=this.options.enclosingClass||"super-gif",e.appendChild(this.canvas),t&&(t.insertBefore(e,this.gifImgElement),t.removeChild(this.gifImgElement)),this.initialized=!0},t.prototype.loadSetup=function(t){return!this.loading&&(t&&(this.loadCallback=t),this.loading=!0,this.frames=[],this.clear(),this.disposalRestoreFromIdx=null,this.lastDisposalMethod=null,this.frame=null,this.lastImg=null,!0)},t.prototype.completeLoop=function(){this.onEndListener&&this.onEndListener(this.gifImgElement),this.iterationCount++,!1!==this.overrideLoopMode||this.iterationCount<0?this.doStep():(this.stepping=!1,this.playing=!1)},t.prototype.doStep=function(){if(this.stepping=this.playing,this.stepping){this.stepFrame(1);var t=10*this.frames[this.currentFrameIndex].delay;t||(t=100),0===this.getNextFrameNo()?(t+=this.loopDelay,setTimeout(this.completeLoop.bind(this),t)):setTimeout(this.doStep.bind(this),t)}},t.prototype.step=function(){this.stepping||setTimeout(this.doStep.bind(this),0)},t.prototype.putFrame=function(){var t;this.currentFrameIndex=parseInt(this.currentFrameIndex.toString(),10),this.currentFrameIndex>this.frames.length-1&&(this.currentFrameIndex=0),this.currentFrameIndex<0&&(this.currentFrameIndex=0),t=this.frameOffsets[this.currentFrameIndex],this.tmpCanvas.getContext("2d").putImageData(this.frames[this.currentFrameIndex].data,t.x,t.y),this.canvasContext.globalCompositeOperation="copy",this.canvasContext.drawImage(this.tmpCanvas,0,0)},t.prototype.playerInit=function(){this.loadErrorCause||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.options.autoPlay?this.step():(this.currentFrameIndex=0,this.putFrame()))},t.prototype.clear=function(){this.transparency=null,this.delay=null,this.lastDisposalMethod=this.disposalMethod,this.disposalMethod=null,this.frame=null},t.prototype.parseStream=function(t){try{new n.SuperGifParser(t,this.handler).parse()}catch(t){this.handleError("parse")}},t.prototype.setSizes=function(t,e){this.canvas.width=t*this.getCanvasScale(),this.canvas.height=e*this.getCanvasScale(),this.tmpCanvas.width=t,this.tmpCanvas.height=e,this.tmpCanvas.style.width=t+"px",this.tmpCanvas.style.height=e+"px",this.tmpCanvas.getContext("2d").setTransform(1,0,0,1,0,0)},t.prototype.drawError=function(){this.canvasContext.fillStyle="black",this.canvasContext.fillRect(0,0,this.hdr.width,this.hdr.height),this.canvasContext.strokeStyle="red",this.canvasContext.lineWidth=3,this.canvasContext.moveTo(0,0),this.canvasContext.lineTo(this.hdr.width,this.hdr.height),this.canvasContext.moveTo(0,this.hdr.height),this.canvasContext.lineTo(this.hdr.width,0),this.canvasContext.stroke()},t.prototype.handleError=function(t){this.loadErrorCause=t,this.hdr={width:this.gifImgElement.width,height:this.gifImgElement.height},this.frames=[],this.drawError()},t.prototype.doHdr=function(t){this.hdr=t,this.setSizes(this.hdr.width,this.hdr.height)},t.prototype.doGCE=function(t){this.pushFrame(),this.clear(),this.transparency=t.transparencyGiven?t.transparencyIndex:null,this.delay=t.delayTime,this.disposalMethod=t.disposalMethod},t.prototype.pushFrame=function(){this.frame&&(this.frames.push({data:this.frame.getImageData(0,0,this.hdr.width,this.hdr.height),delay:this.delay}),this.frameOffsets.push({x:0,y:0}))},t.prototype.doImg=function(t){var e=this;this.frame||(this.frame=this.tmpCanvas.getContext("2d"));var r=this.frames.length,n=t.lctFlag?t.lct:this.hdr.gct;r>0&&(3===this.lastDisposalMethod?null!==this.disposalRestoreFromIdx?this.frame.putImageData(frames[this.disposalRestoreFromIdx].data,0,0):this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height):this.disposalRestoreFromIdx=r-1,2===this.lastDisposalMethod&&this.frame.clearRect(this.lastImg.leftPos,this.lastImg.topPos,this.lastImg.width,this.lastImg.height));var o=this.frame.getImageData(t.leftPos,t.topPos,t.width,t.height);t.pixels.forEach((function(t,r){t!==e.transparency&&(o.data[4*r+0]=n[t][0],o.data[4*r+1]=n[t][1],o.data[4*r+2]=n[t][2],o.data[4*r+3]=255)})),this.frame.putImageData(o,t.leftPos,t.topPos),this.ctxScaled||(this.canvasContext.scale(this.getCanvasScale(),this.getCanvasScale()),this.ctxScaled=!0),this.drawWhileLoading&&(this.canvasContext.drawImage(this.tmpCanvas,0,0),this.drawWhileLoading=this.options.autoPlay),this.lastImg=t},t.prototype.doNothing=function(){},t.prototype.withProgress=function(t){return function(e){t(e)}},t.prototype.getNextFrameNo=function(){var t=this.forward?1:-1;return(this.currentFrameIndex+t+this.frames.length)%this.frames.length},t.prototype.stepFrame=function(t){this.currentFrameIndex=this.currentFrameIndex+t,this.putFrame()},t.prototype.getCanvasScale=function(){return this.options.maxWidth&&this.hdr&&this.hdr.width>this.options.maxWidth?this.options.maxWidth/this.hdr.width:window.devicePixelRatio||1},t.prototype.play=function(){this.playing=!0,this.step()},t.prototype.pause=function(){this.playing=!1},t.prototype.isPlaying=function(){return this.playing},t.prototype.getCanvas=function(){return this.canvas},t.prototype.isLoading=function(){return this.loading},t.prototype.isReady=function(){return this.ready},t.prototype.isAutoPlay=function(){return this.options.autoPlay},t.prototype.getLength=function(){return this.frames.length},t.prototype.getCurrentFrame=function(){return this.currentFrameIndex},t.prototype.moveTo=function(t){this.currentFrameIndex=t,this.putFrame()},t.prototype.loadURL=function(t,e){var r=this;if(this.loadSetup(e)){var n=new XMLHttpRequest;n.open("GET",t,!0),"overrideMimeType"in n?n.overrideMimeType("text/plain; charset=x-user-defined"):"responseType"in n?n.responseType="arraybuffer":n.setRequestHeader("Accept-Charset","x-user-defined"),n.onloadstart=function(){r.initialized||r.init()},n.onload=function(){if(200===n.status){var t=n.response;t.toString().indexOf("ArrayBuffer")>0&&(t=new Uint8Array(t));var e=new o.SuperGifStream(t);setTimeout((function(){r.parseStream(e)}),0)}else r.handleError("xhr - response")},n.onerror=function(){r.handleError("xhr")},n.send()}},t.prototype.load=function(t){this.loadURL(this.gifImgElement.src,t)},t}();e._=i},92830:(t,e)=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){}return t.bitsToNum=function(t){return t.reduce((function(t,e){return 2*t+e}),0)},t.byteToBitArr=function(t){for(var e=[],r=7;r>=0;r--)e.push(!!(t&1<<r));return e},t.lzwDecode=function(t,e){for(var r,n,o=0,i=function(t){for(var r=0,n=0;n<t;n++)e.charCodeAt(o>>3)&1<<(7&o)&&(r|=1<<n),o++;return r},a=[],s=1<<t,u=s+1,c=t+1,f=[],l=function(){f=[],c=t+1;for(var e=0;e<s;e++)f[e]=[e];f[s]=[],f[u]=null};;)if(n=r,(r=i(c))!==s){if(r===u)break;if(r<f.length)n!==s&&f.push(f[n].concat(f[r][0]));else{if(r!==f.length)throw new Error("Invalid LZW code.");f.push(f[n].concat(f[n][0]))}a.push.apply(a,f[r]),f.length===1<<c&&c<12&&c++}else l();return a},t}();e.SuperGifUtils=r},91441:()=>{function t(t,r){if(t){if("string"==typeof t)return e(t,r);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(t):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?e(t,r):void 0}}function e(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function r(t){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r(t)}!function(n,o){"use strict";var i,a,s,u;function c(n,o,i,a,s){if([n,o,i,a].every((function(t){return Number.isFinite(t)}))){var u,c,l,h;if(4===(d=s,g=r(d),s="undefined"===g||null===d?[0]:"function"===g?[NaN]:"object"===g?"function"==typeof d[Symbol.iterator]?(v=d,function(t){if(Array.isArray(t))return e(t)}(v)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(v)||t(v)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()).map((function(t){var e=r(t);return"undefined"===e||null===t?0:"function"===e?NaN:"object"===e?b(t):m(t)})):[b(d)]:[m(d)]).length)u=w(s[0]),c=w(s[1]),l=w(s[2]),h=w(s[3]);else if(3===s.length)u=w(s[0]),c=w(s[1]),h=w(s[1]),l=w(s[2]);else if(2===s.length)u=w(s[0]),l=w(s[0]),c=w(s[1]),h=w(s[1]);else{if(1!==s.length)throw new RangeError("".concat(f(this)," ").concat(s.length," is not a valid size for radii sequence."));u=w(s[0]),c=w(s[0]),l=w(s[0]),h=w(s[0])}var p=[u,c,l,h],y=p.find((function(t){var e=t.x,r=t.y;return e<0||r<0}));if((null==y?void 0:y.x)<0?y.x:null==y||y.y,!p.some((function(t){var e=t.x,r=t.y;return!Number.isFinite(e)||!Number.isFinite(r)}))){if(y)throw new RangeError("".concat(f(this)," Radius value ").concat(y," is negative."));!function(e){var r=function(e,r){return function(t){if(Array.isArray(t))return t}(e)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,r)||t(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(e,4),n=r[0],o=r[1],s=r[2],u=r[3],c=[Math.abs(i)/(n.x+o.x),Math.abs(a)/(o.y+s.y),Math.abs(i)/(s.x+u.x),Math.abs(a)/(n.y+u.y)],f=Math.min.apply(Math,c);if(f<=1){var l,h=function(e,r){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=t(e))){n&&(e=n);var o=0,i=function(){};return{s:i,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,u=!1;return{s:function(){n=n.call(e)},n:function(){var t=n.next();return s=t.done,t},e:function(t){u=!0,a=t},f:function(){try{s||null==n.return||n.return()}finally{if(u)throw a}}}}(e);try{for(h.s();!(l=h.n()).done;){var p=l.value;p.x*=f,p.y*=f}}catch(t){h.e(t)}finally{h.f()}}}(p),i<0&&a<0?(this.moveTo(n-u.x,o),this.ellipse(n+i+c.x,o-c.y,c.x,c.y,0,1.5*-Math.PI,-Math.PI),this.ellipse(n+i+l.x,o+a+l.y,l.x,l.y,0,-Math.PI,-Math.PI/2),this.ellipse(n-h.x,o+a+h.y,h.x,h.y,0,-Math.PI/2,0),this.ellipse(n-u.x,o-u.y,u.x,u.y,0,0,-Math.PI/2)):i<0?(this.moveTo(n-u.x,o),this.ellipse(n+i+c.x,o+c.y,c.x,c.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(n+i+l.x,o+a-l.y,l.x,l.y,0,-Math.PI,1.5*-Math.PI,1),this.ellipse(n-h.x,o+a-h.y,h.x,h.y,0,Math.PI/2,0,1),this.ellipse(n-u.x,o+u.y,u.x,u.y,0,0,-Math.PI/2,1)):a<0?(this.moveTo(n+u.x,o),this.ellipse(n+i-c.x,o-c.y,c.x,c.y,0,Math.PI/2,0,1),this.ellipse(n+i-l.x,o+a+l.y,l.x,l.y,0,0,-Math.PI/2,1),this.ellipse(n+h.x,o+a+h.y,h.x,h.y,0,-Math.PI/2,-Math.PI,1),this.ellipse(n+u.x,o-u.y,u.x,u.y,0,-Math.PI,1.5*-Math.PI,1)):(this.moveTo(n+u.x,o),this.ellipse(n+i-c.x,o+c.y,c.x,c.y,0,-Math.PI/2,0),this.ellipse(n+i-l.x,o+a-l.y,l.x,l.y,0,0,Math.PI/2),this.ellipse(n+h.x,o+a-h.y,h.x,h.y,0,Math.PI/2,Math.PI),this.ellipse(n+u.x,o+u.y,u.x,u.y,0,Math.PI,1.5*Math.PI)),this.closePath(),this.moveTo(n,o)}}var d,v,g;function b(t){return{x:t.x,y:t.y,z:t.z,w:t.w}}function m(t){return+t}function w(t){var e,r,n=m(t);return Number.isFinite(n)?{x:n,y:n}:Object(t)===t?{x:m(null!==(e=t.x)&&void 0!==e?e:0),y:m(null!==(r=t.y)&&void 0!==r?r:0)}:{x:NaN,y:NaN}}}function f(t){return"Failed to execute 'roundRect' on '".concat(function(t){return Object(t)===t&&t instanceof Path2D?"Path2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.CanvasRenderingContext2D)?"CanvasRenderingContext2D":t instanceof(null===globalThis||void 0===globalThis?void 0:globalThis.OffscreenCanvasRenderingContext2D)?"OffscreenCanvasRenderingContext2D":(null==t?void 0:t.constructor.name)||t}(t),"':")}null!==(o=(n=Path2D.prototype).roundRect)&&void 0!==o||(n.roundRect=c),globalThis.CanvasRenderingContext2D&&(null!==(a=(i=globalThis.CanvasRenderingContext2D.prototype).roundRect)&&void 0!==a||(i.roundRect=c)),globalThis.OffscreenCanvasRenderingContext2D&&(null!==(u=(s=globalThis.OffscreenCanvasRenderingContext2D.prototype).roundRect)&&void 0!==u||(s.roundRect=c))}()},88965:(t,e,r)=>{"use strict";var n=r(34230),o=r(2854),i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not a function")}},52750:(t,e,r)=>{"use strict";var n=r(53924),o=r(2854),i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not a constructor")}},19814:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(34230),i=String,a=TypeError;t.exports=function(t){if("object"==n(t)||o(t))return t;throw a("Can't set "+i(t)+" as a prototype")}},86278:(t,e,r)=>{"use strict";var n=r(41398),o=r(64714),i=r(26337).f,a=n("unscopables"),s=Array.prototype;null==s[a]&&i(s,a,{configurable:!0,value:o(null)}),t.exports=function(t){s[a][t]=!0}},68279:(t,e,r)=>{"use strict";var n=r(32088).charAt;t.exports=function(t,e,r){return e+(r?n(t,e).length:1)}},89214:(t,e,r)=>{"use strict";var n=r(34973),o=TypeError;t.exports=function(t,e){if(n(e,t))return t;throw o("Incorrect invocation")}},96302:(t,e,r)=>{"use strict";var n=r(3196),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not an object")}},63956:t=>{"use strict";t.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},47698:(t,e,r)=>{"use strict";var n=r(13894);t.exports=n((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}}))},19548:(t,e,r)=>{"use strict";var n,o,i,a=r(63956),s=r(44244),u=r(54516),c=r(34230),f=r(3196),l=r(37058),h=r(98619),p=r(2854),y=r(81831),d=r(89592),v=r(55882),g=r(34973),b=r(40175),m=r(14776),w=r(41398),x=r(67025),k=r(43023),S=k.enforce,_=k.get,O=u.Int8Array,E=O&&O.prototype,A=u.Uint8ClampedArray,P=A&&A.prototype,j=O&&b(O),T=E&&b(E),M=Object.prototype,R=u.TypeError,I=w("toStringTag"),C=x("TYPED_ARRAY_TAG"),L="TypedArrayConstructor",D=a&&!!m&&"Opera"!==h(u.opera),B=!1,N={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},F={BigInt64Array:8,BigUint64Array:8},z=function(t){if(!f(t))return!1;var e=h(t);return l(N,e)||l(F,e)};for(n in N)(i=(o=u[n])&&o.prototype)?S(i)[L]=o:D=!1;for(n in F)(i=(o=u[n])&&o.prototype)&&(S(i)[L]=o);if((!D||!c(j)||j===Function.prototype)&&(j=function(){throw R("Incorrect invocation")},D))for(n in N)u[n]&&m(u[n],j);if((!D||!T||T===M)&&(T=j.prototype,D))for(n in N)u[n]&&m(u[n].prototype,T);if(D&&b(P)!==T&&m(P,T),s&&!l(T,I))for(n in B=!0,v(T,I,{configurable:!0,get:function(){return f(this)?this[C]:void 0}}),N)u[n]&&y(u[n],C,n);t.exports={NATIVE_ARRAY_BUFFER_VIEWS:D,TYPED_ARRAY_TAG:B&&C,aTypedArray:function(t){if(z(t))return t;throw R("Target is not a typed array")},aTypedArrayConstructor:function(t){if(c(t)&&(!m||g(j,t)))return t;throw R(p(t)+" is not a typed array constructor")},exportTypedArrayMethod:function(t,e,r,n){if(s){if(r)for(var o in N){var i=u[o];if(i&&l(i.prototype,t))try{delete i.prototype[t]}catch(r){try{i.prototype[t]=e}catch(t){}}}T[t]&&!r||d(T,t,r?e:D&&E[t]||e,n)}},exportTypedArrayStaticMethod:function(t,e,r){var n,o;if(s){if(m){if(r)for(n in N)if((o=u[n])&&l(o,t))try{delete o[t]}catch(t){}if(j[t]&&!r)return;try{return d(j,t,r?e:D&&j[t]||e)}catch(t){}}for(n in N)!(o=u[n])||o[t]&&!r||d(o,t,e)}},getTypedArrayConstructor:function t(e){var r=b(e);if(f(r)){var n=_(r);return n&&l(n,L)?n[L]:t(r)}},isView:function(t){if(!f(t))return!1;var e=h(t);return"DataView"===e||l(N,e)||l(F,e)},isTypedArray:z,TypedArray:j,TypedArrayPrototype:T}},25254:(t,e,r)=>{"use strict";var n=r(54516),o=r(76277),i=r(44244),a=r(63956),s=r(33385),u=r(81831),c=r(55882),f=r(82281),l=r(13894),h=r(89214),p=r(35206),y=r(6674),d=r(88821),v=r(53652),g=r(40175),b=r(14776),m=r(51019).f,w=r(47774),x=r(68020),k=r(81018),S=r(43023),_=s.PROPER,O=s.CONFIGURABLE,E="ArrayBuffer",A="DataView",P="prototype",j="Wrong index",T=S.getterFor(E),M=S.getterFor(A),R=S.set,I=n[E],C=I,L=C&&C[P],D=n[A],B=D&&D[P],N=Object.prototype,F=n.Array,z=n.RangeError,U=o(w),Y=o([].reverse),G=v.pack,H=v.unpack,W=function(t){return[255&t]},X=function(t){return[255&t,t>>8&255]},q=function(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]},V=function(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]},Q=function(t){return G(t,23,4)},K=function(t){return G(t,52,8)},J=function(t,e,r){c(t[P],e,{configurable:!0,get:function(){return r(this)[e]}})},Z=function(t,e,r,n){var o=M(t),i=d(r),a=!!n;if(i+e>o.byteLength)throw z(j);var s=o.bytes,u=i+o.byteOffset,c=x(s,u,u+e);return a?c:Y(c)},$=function(t,e,r,n,o,i){var a=M(t),s=d(r),u=n(+o),c=!!i;if(s+e>a.byteLength)throw z(j);for(var f=a.bytes,l=s+a.byteOffset,h=0;h<e;h++)f[l+h]=u[c?h:e-h-1]};if(a){var tt=_&&I.name!==E;if(l((function(){I(1)}))&&l((function(){new I(-1)}))&&!l((function(){return new I,new I(1.5),new I(NaN),1!=I.length||tt&&!O})))tt&&O&&u(I,"name",E);else{(C=function(t){return h(this,L),new I(d(t))})[P]=L;for(var et,rt=m(I),nt=0;rt.length>nt;)(et=rt[nt++])in C||u(C,et,I[et]);L.constructor=C}b&&g(B)!==N&&b(B,N);var ot=new D(new C(2)),it=o(B.setInt8);ot.setInt8(0,2147483648),ot.setInt8(1,2147483649),!ot.getInt8(0)&&ot.getInt8(1)||f(B,{setInt8:function(t,e){it(this,t,e<<24>>24)},setUint8:function(t,e){it(this,t,e<<24>>24)}},{unsafe:!0})}else L=(C=function(t){h(this,L);var e=d(t);R(this,{type:E,bytes:U(F(e),0),byteLength:e}),i||(this.byteLength=e,this.detached=!1)})[P],B=(D=function(t,e,r){h(this,B),h(t,L);var n=T(t),o=n.byteLength,a=p(e);if(a<0||a>o)throw z("Wrong offset");if(a+(r=void 0===r?o-a:y(r))>o)throw z("Wrong length");R(this,{type:A,buffer:t,byteLength:r,byteOffset:a,bytes:n.bytes}),i||(this.buffer=t,this.byteLength=r,this.byteOffset=a)})[P],i&&(J(C,"byteLength",T),J(D,"buffer",M),J(D,"byteLength",M),J(D,"byteOffset",M)),f(B,{getInt8:function(t){return Z(this,1,t)[0]<<24>>24},getUint8:function(t){return Z(this,1,t)[0]},getInt16:function(t){var e=Z(this,2,t,arguments.length>1&&arguments[1]);return(e[1]<<8|e[0])<<16>>16},getUint16:function(t){var e=Z(this,2,t,arguments.length>1&&arguments[1]);return e[1]<<8|e[0]},getInt32:function(t){return V(Z(this,4,t,arguments.length>1&&arguments[1]))},getUint32:function(t){return V(Z(this,4,t,arguments.length>1&&arguments[1]))>>>0},getFloat32:function(t){return H(Z(this,4,t,arguments.length>1&&arguments[1]),23)},getFloat64:function(t){return H(Z(this,8,t,arguments.length>1&&arguments[1]),52)},setInt8:function(t,e){$(this,1,t,W,e)},setUint8:function(t,e){$(this,1,t,W,e)},setInt16:function(t,e){$(this,2,t,X,e,arguments.length>2&&arguments[2])},setUint16:function(t,e){$(this,2,t,X,e,arguments.length>2&&arguments[2])},setInt32:function(t,e){$(this,4,t,q,e,arguments.length>2&&arguments[2])},setUint32:function(t,e){$(this,4,t,q,e,arguments.length>2&&arguments[2])},setFloat32:function(t,e){$(this,4,t,Q,e,arguments.length>2&&arguments[2])},setFloat64:function(t,e){$(this,8,t,K,e,arguments.length>2&&arguments[2])}});k(C,E),k(D,A),t.exports={ArrayBuffer:C,DataView:D}},92316:(t,e,r)=>{"use strict";var n=r(87706),o=r(59625),i=r(43716),a=r(8713),s=Math.min;t.exports=[].copyWithin||function(t,e){var r=n(this),u=i(r),c=o(t,u),f=o(e,u),l=arguments.length>2?arguments[2]:void 0,h=s((void 0===l?u:o(l,u))-f,u-c),p=1;for(f<c&&c<f+h&&(p=-1,f+=h-1,c+=h-1);h-- >0;)f in r?r[c]=r[f]:a(r,c),c+=p,f+=p;return r}},47774:(t,e,r)=>{"use strict";var n=r(87706),o=r(59625),i=r(43716);t.exports=function(t){for(var e=n(this),r=i(e),a=arguments.length,s=o(a>1?arguments[1]:void 0,r),u=a>2?arguments[2]:void 0,c=void 0===u?r:o(u,r);c>s;)e[s++]=t;return e}},39682:(t,e,r)=>{"use strict";var n=r(87265).forEach,o=r(39904)("forEach");t.exports=o?[].forEach:function(t){return n(this,t,arguments.length>1?arguments[1]:void 0)}},35040:(t,e,r)=>{"use strict";var n=r(43716);t.exports=function(t,e){for(var r=0,o=n(e),i=new t(o);o>r;)i[r]=e[r++];return i}},11956:(t,e,r)=>{"use strict";var n=r(29910),o=r(83264),i=r(87706),a=r(59306),s=r(201),u=r(53924),c=r(43716),f=r(80955),l=r(29946),h=r(1228),p=Array;t.exports=function(t){var e=i(t),r=u(this),y=arguments.length,d=y>1?arguments[1]:void 0,v=void 0!==d;v&&(d=n(d,y>2?arguments[2]:void 0));var g,b,m,w,x,k,S=h(e),_=0;if(!S||this===p&&s(S))for(g=c(e),b=r?new this(g):p(g);g>_;_++)k=v?d(e[_],_):e[_],f(b,_,k);else for(x=(w=l(e,S)).next,b=r?new this:[];!(m=o(x,w)).done;_++)k=v?a(w,d,[m.value,_],!0):m.value,f(b,_,k);return b.length=_,b}},60452:(t,e,r)=>{"use strict";var n=r(54721),o=r(59625),i=r(43716),a=function(t){return function(e,r,a){var s,u=n(e),c=i(u),f=o(a,c);if(t&&r!=r){for(;c>f;)if((s=u[f++])!=s)return!0}else for(;c>f;f++)if((t||f in u)&&u[f]===r)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},80728:(t,e,r)=>{"use strict";var n=r(29910),o=r(94015),i=r(87706),a=r(43716),s=function(t){var e=1==t;return function(r,s,u){for(var c,f=i(r),l=o(f),h=n(s,u),p=a(l);p-- >0;)if(h(c=l[p],p,f))switch(t){case 0:return c;case 1:return p}return e?-1:void 0}};t.exports={findLast:s(0),findLastIndex:s(1)}},87265:(t,e,r)=>{"use strict";var n=r(29910),o=r(76277),i=r(94015),a=r(87706),s=r(43716),u=r(29400),c=o([].push),f=function(t){var e=1==t,r=2==t,o=3==t,f=4==t,l=6==t,h=7==t,p=5==t||l;return function(y,d,v,g){for(var b,m,w=a(y),x=i(w),k=n(d,v),S=s(x),_=0,O=g||u,E=e?O(y,S):r||h?O(y,0):void 0;S>_;_++)if((p||_ in x)&&(m=k(b=x[_],_,w),t))if(e)E[_]=m;else if(m)switch(t){case 3:return!0;case 5:return b;case 6:return _;case 2:c(E,b)}else switch(t){case 4:return!1;case 7:c(E,b)}return l?-1:o||f?f:E}};t.exports={forEach:f(0),map:f(1),filter:f(2),some:f(3),every:f(4),find:f(5),findIndex:f(6),filterReject:f(7)}},85773:(t,e,r)=>{"use strict";var n=r(2090),o=r(54721),i=r(35206),a=r(43716),s=r(39904),u=Math.min,c=[].lastIndexOf,f=!!c&&1/[1].lastIndexOf(1,-0)<0,l=s("lastIndexOf"),h=f||!l;t.exports=h?function(t){if(f)return n(c,this,arguments)||0;var e=o(this),r=a(e),s=r-1;for(arguments.length>1&&(s=u(s,i(arguments[1]))),s<0&&(s=r+s);s>=0;s--)if(s in e&&e[s]===t)return s||0;return-1}:c},1309:(t,e,r)=>{"use strict";var n=r(13894),o=r(41398),i=r(49229),a=o("species");t.exports=function(t){return i>=51||!n((function(){var e=[];return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},39904:(t,e,r)=>{"use strict";var n=r(13894);t.exports=function(t,e){var r=[][t];return!!r&&n((function(){r.call(null,e||function(){return 1},1)}))}},73333:(t,e,r)=>{"use strict";var n=r(88965),o=r(87706),i=r(94015),a=r(43716),s=TypeError,u=function(t){return function(e,r,u,c){n(r);var f=o(e),l=i(f),h=a(f),p=t?h-1:0,y=t?-1:1;if(u<2)for(;;){if(p in l){c=l[p],p+=y;break}if(p+=y,t?p<0:h<=p)throw s("Reduce of empty array with no initial value")}for(;t?p>=0:h>p;p+=y)p in l&&(c=r(c,l[p],p,f));return c}};t.exports={left:u(!1),right:u(!0)}},60797:(t,e,r)=>{"use strict";var n=r(44244),o=r(85588),i=TypeError,a=Object.getOwnPropertyDescriptor,s=n&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(t){return t instanceof TypeError}}();t.exports=s?function(t,e){if(o(t)&&!a(t,"length").writable)throw i("Cannot set read only .length");return t.length=e}:function(t,e){return t.length=e}},68020:(t,e,r)=>{"use strict";var n=r(59625),o=r(43716),i=r(80955),a=Array,s=Math.max;t.exports=function(t,e,r){for(var u=o(t),c=n(e,u),f=n(void 0===r?u:r,u),l=a(s(f-c,0)),h=0;c<f;c++,h++)i(l,h,t[c]);return l.length=h,l}},52999:(t,e,r)=>{"use strict";var n=r(76277);t.exports=n([].slice)},53347:(t,e,r)=>{"use strict";var n=r(68020),o=Math.floor;t.exports=function t(e,r){var i=e.length,a=o(i/2);return i<8?function(t,e){for(var r,n,o=t.length,i=1;i<o;){for(n=i,r=t[i];n&&e(t[n-1],r)>0;)t[n]=t[--n];n!==i++&&(t[n]=r)}return t}(e,r):function(t,e,r,n){for(var o=e.length,i=r.length,a=0,s=0;a<o||s<i;)t[a+s]=a<o&&s<i?n(e[a],r[s])<=0?e[a++]:r[s++]:a<o?e[a++]:r[s++];return t}(e,t(n(e,0,a),r),t(n(e,a),r),r)}},88913:(t,e,r)=>{"use strict";var n=r(85588),o=r(53924),i=r(3196),a=r(41398)("species"),s=Array;t.exports=function(t){var e;return n(t)&&(e=t.constructor,(o(e)&&(e===s||n(e.prototype))||i(e)&&null===(e=e[a]))&&(e=void 0)),void 0===e?s:e}},29400:(t,e,r)=>{"use strict";var n=r(88913);t.exports=function(t,e){return new(n(t))(0===e?0:e)}},13729:(t,e,r)=>{"use strict";var n=r(43716);t.exports=function(t,e){for(var r=n(t),o=new e(r),i=0;i<r;i++)o[i]=t[r-i-1];return o}},33547:(t,e,r)=>{"use strict";var n=r(43716),o=r(35206),i=RangeError;t.exports=function(t,e,r,a){var s=n(t),u=o(r),c=u<0?s+u:u;if(c>=s||c<0)throw i("Incorrect index");for(var f=new e(s),l=0;l<s;l++)f[l]=l===c?a:t[l];return f}},19649:t=>{"use strict";for(var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",r={},n=0;n<66;n++)r[e.charAt(n)]=n;t.exports={itoc:e,ctoi:r}},59306:(t,e,r)=>{"use strict";var n=r(96302),o=r(77073);t.exports=function(t,e,r,i){try{return i?e(n(r)[0],r[1]):e(r)}catch(e){o(t,"throw",e)}}},36548:(t,e,r)=>{"use strict";var n=r(41398)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[n]=function(){return this},Array.from(a,(function(){throw 2}))}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var r=!1;try{var i={};i[n]=function(){return{next:function(){return{done:r=!0}}}},t(i)}catch(t){}return r}},31030:(t,e,r)=>{"use strict";var n=r(76277),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},98619:(t,e,r)=>{"use strict";var n=r(47775),o=r(34230),i=r(31030),a=r(41398)("toStringTag"),s=Object,u="Arguments"==i(function(){return arguments}());t.exports=n?i:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=s(t),a))?r:u?i(e):"Object"==(n=i(e))&&o(e.callee)?"Arguments":n}},78704:(t,e,r)=>{"use strict";var n=r(64714),o=r(55882),i=r(82281),a=r(29910),s=r(89214),u=r(18850),c=r(29429),f=r(99825),l=r(38351),h=r(3348),p=r(44244),y=r(8420).fastKey,d=r(43023),v=d.set,g=d.getterFor;t.exports={getConstructor:function(t,e,r,f){var l=t((function(t,o){s(t,h),v(t,{type:e,index:n(null),first:void 0,last:void 0,size:0}),p||(t.size=0),u(o)||c(o,t[f],{that:t,AS_ENTRIES:r})})),h=l.prototype,d=g(e),b=function(t,e,r){var n,o,i=d(t),a=m(t,e);return a?a.value=r:(i.last=a={index:o=y(e,!0),key:e,value:r,previous:n=i.last,next:void 0,removed:!1},i.first||(i.first=a),n&&(n.next=a),p?i.size++:t.size++,"F"!==o&&(i.index[o]=a)),t},m=function(t,e){var r,n=d(t),o=y(e);if("F"!==o)return n.index[o];for(r=n.first;r;r=r.next)if(r.key==e)return r};return i(h,{clear:function(){for(var t=d(this),e=t.index,r=t.first;r;)r.removed=!0,r.previous&&(r.previous=r.previous.next=void 0),delete e[r.index],r=r.next;t.first=t.last=void 0,p?t.size=0:this.size=0},delete:function(t){var e=this,r=d(e),n=m(e,t);if(n){var o=n.next,i=n.previous;delete r.index[n.index],n.removed=!0,i&&(i.next=o),o&&(o.previous=i),r.first==n&&(r.first=o),r.last==n&&(r.last=i),p?r.size--:e.size--}return!!n},forEach:function(t){for(var e,r=d(this),n=a(t,arguments.length>1?arguments[1]:void 0);e=e?e.next:r.first;)for(n(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!m(this,t)}}),i(h,r?{get:function(t){var e=m(this,t);return e&&e.value},set:function(t,e){return b(this,0===t?0:t,e)}}:{add:function(t){return b(this,t=0===t?0:t,t)}}),p&&o(h,"size",{configurable:!0,get:function(){return d(this).size}}),l},setStrong:function(t,e,r){var n=e+" Iterator",o=g(e),i=g(n);f(t,e,(function(t,e){v(this,{type:n,target:t,state:o(t),kind:e,last:void 0})}),(function(){for(var t=i(this),e=t.kind,r=t.last;r&&r.removed;)r=r.previous;return t.target&&(t.last=r=r?r.next:t.state.first)?l("keys"==e?r.key:"values"==e?r.value:[r.key,r.value],!1):(t.target=void 0,l(void 0,!0))}),r?"entries":"values",!r,!0),h(e)}}},66263:(t,e,r)=>{"use strict";var n=r(76277),o=r(82281),i=r(8420).getWeakData,a=r(89214),s=r(96302),u=r(18850),c=r(3196),f=r(29429),l=r(87265),h=r(37058),p=r(43023),y=p.set,d=p.getterFor,v=l.find,g=l.findIndex,b=n([].splice),m=0,w=function(t){return t.frozen||(t.frozen=new x)},x=function(){this.entries=[]},k=function(t,e){return v(t.entries,(function(t){return t[0]===e}))};x.prototype={get:function(t){var e=k(this,t);if(e)return e[1]},has:function(t){return!!k(this,t)},set:function(t,e){var r=k(this,t);r?r[1]=e:this.entries.push([t,e])},delete:function(t){var e=g(this.entries,(function(e){return e[0]===t}));return~e&&b(this.entries,e,1),!!~e}},t.exports={getConstructor:function(t,e,r,n){var l=t((function(t,o){a(t,p),y(t,{type:e,id:m++,frozen:void 0}),u(o)||f(o,t[n],{that:t,AS_ENTRIES:r})})),p=l.prototype,v=d(e),g=function(t,e,r){var n=v(t),o=i(s(e),!0);return!0===o?w(n).set(e,r):o[n.id]=r,t};return o(p,{delete:function(t){var e=v(this);if(!c(t))return!1;var r=i(t);return!0===r?w(e).delete(t):r&&h(r,e.id)&&delete r[e.id]},has:function(t){var e=v(this);if(!c(t))return!1;var r=i(t);return!0===r?w(e).has(t):r&&h(r,e.id)}}),o(p,r?{get:function(t){var e=v(this);if(c(t)){var r=i(t);return!0===r?w(e).get(t):r?r[e.id]:void 0}},set:function(t,e){return g(this,t,e)}}:{add:function(t){return g(this,t,!0)}}),l}}},48756:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(76277),a=r(82615),s=r(89592),u=r(8420),c=r(29429),f=r(89214),l=r(34230),h=r(18850),p=r(3196),y=r(13894),d=r(36548),v=r(81018),g=r(2993);t.exports=function(t,e,r){var b=-1!==t.indexOf("Map"),m=-1!==t.indexOf("Weak"),w=b?"set":"add",x=o[t],k=x&&x.prototype,S=x,_={},O=function(t){var e=i(k[t]);s(k,t,"add"==t?function(t){return e(this,0===t?0:t),this}:"delete"==t?function(t){return!(m&&!p(t))&&e(this,0===t?0:t)}:"get"==t?function(t){return m&&!p(t)?void 0:e(this,0===t?0:t)}:"has"==t?function(t){return!(m&&!p(t))&&e(this,0===t?0:t)}:function(t,r){return e(this,0===t?0:t,r),this})};if(a(t,!l(x)||!(m||k.forEach&&!y((function(){(new x).entries().next()})))))S=r.getConstructor(e,t,b,w),u.enable();else if(a(t,!0)){var E=new S,A=E[w](m?{}:-0,1)!=E,P=y((function(){E.has(1)})),j=d((function(t){new x(t)})),T=!m&&y((function(){for(var t=new x,e=5;e--;)t[w](e,e);return!t.has(-0)}));j||((S=e((function(t,e){f(t,k);var r=g(new x,t,S);return h(e)||c(e,r[w],{that:r,AS_ENTRIES:b}),r}))).prototype=k,k.constructor=S),(P||T)&&(O("delete"),O("has"),b&&O("get")),(T||A)&&O(w),m&&k.clear&&delete k.clear}return _[t]=S,n({global:!0,constructor:!0,forced:S!=x},_),v(S,t),m||r.setStrong(S,t,b),S}},79129:(t,e,r)=>{"use strict";var n=r(37058),o=r(16660),i=r(77872),a=r(26337);t.exports=function(t,e,r){for(var s=o(e),u=a.f,c=i.f,f=0;f<s.length;f++){var l=s[f];n(t,l)||r&&n(r,l)||u(t,l,c(e,l))}}},86018:(t,e,r)=>{"use strict";var n=r(41398)("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(r){try{return e[n]=!1,"/./"[t](e)}catch(t){}}return!1}},66336:(t,e,r)=>{"use strict";var n=r(13894);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},38439:(t,e,r)=>{"use strict";var n=r(76277),o=r(72191),i=r(18971),a=/"/g,s=n("".replace);t.exports=function(t,e,r,n){var u=i(o(t)),c="<"+e;return""!==r&&(c+=" "+r+'="'+s(i(n),a,""")+'"'),c+">"+u+"</"+e+">"}},38351:t=>{"use strict";t.exports=function(t,e){return{value:t,done:e}}},81831:(t,e,r)=>{"use strict";var n=r(44244),o=r(26337),i=r(30654);t.exports=n?function(t,e,r){return o.f(t,e,i(1,r))}:function(t,e,r){return t[e]=r,t}},30654:t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},80955:(t,e,r)=>{"use strict";var n=r(14748),o=r(26337),i=r(30654);t.exports=function(t,e,r){var a=n(e);a in t?o.f(t,a,i(0,r)):t[a]=r}},85833:(t,e,r)=>{"use strict";var n=r(76277),o=r(13894),i=r(86424).start,a=RangeError,s=isFinite,u=Math.abs,c=Date.prototype,f=c.toISOString,l=n(c.getTime),h=n(c.getUTCDate),p=n(c.getUTCFullYear),y=n(c.getUTCHours),d=n(c.getUTCMilliseconds),v=n(c.getUTCMinutes),g=n(c.getUTCMonth),b=n(c.getUTCSeconds);t.exports=o((function(){return"0385-07-25T07:06:39.999Z"!=f.call(new Date(-50000000000001))}))||!o((function(){f.call(new Date(NaN))}))?function(){if(!s(l(this)))throw a("Invalid time value");var t=this,e=p(t),r=d(t),n=e<0?"-":e>9999?"+":"";return n+i(u(e),n?6:4,0)+"-"+i(g(t)+1,2,0)+"-"+i(h(t),2,0)+"T"+i(y(t),2,0)+":"+i(v(t),2,0)+":"+i(b(t),2,0)+"."+i(r,3,0)+"Z"}:f},72473:(t,e,r)=>{"use strict";var n=r(96302),o=r(8661),i=TypeError;t.exports=function(t){if(n(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw i("Incorrect hint");return o(this,t)}},55882:(t,e,r)=>{"use strict";var n=r(74743),o=r(26337);t.exports=function(t,e,r){return r.get&&n(r.get,e,{getter:!0}),r.set&&n(r.set,e,{setter:!0}),o.f(t,e,r)}},89592:(t,e,r)=>{"use strict";var n=r(34230),o=r(26337),i=r(74743),a=r(16085);t.exports=function(t,e,r,s){s||(s={});var u=s.enumerable,c=void 0!==s.name?s.name:e;if(n(r)&&i(r,c,s),s.global)u?t[e]=r:a(e,r);else{try{s.unsafe?t[e]&&(u=!0):delete t[e]}catch(t){}u?t[e]=r:o.f(t,e,{value:r,enumerable:!1,configurable:!s.nonConfigurable,writable:!s.nonWritable})}return t}},82281:(t,e,r)=>{"use strict";var n=r(89592);t.exports=function(t,e,r){for(var o in e)n(t,o,e[o],r);return t}},16085:(t,e,r)=>{"use strict";var n=r(54516),o=Object.defineProperty;t.exports=function(t,e){try{o(n,t,{value:e,configurable:!0,writable:!0})}catch(r){n[t]=e}return e}},8713:(t,e,r)=>{"use strict";var n=r(2854),o=TypeError;t.exports=function(t,e){if(!delete t[e])throw o("Cannot delete property "+n(e)+" of "+n(t))}},44244:(t,e,r)=>{"use strict";var n=r(13894);t.exports=!n((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},94535:t=>{"use strict";function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},e(t)}var r="object"==("undefined"==typeof document?"undefined":e(document))&&document.all,n=void 0===r&&void 0!==r;t.exports={all:r,IS_HTMLDDA:n}},23791:(t,e,r)=>{"use strict";var n=r(54516),o=r(3196),i=n.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},97614:t=>{"use strict";var e=TypeError;t.exports=function(t){if(t>9007199254740991)throw e("Maximum allowed index exceeded");return t}},43115:t=>{"use strict";t.exports={IndexSizeError:{s:"INDEX_SIZE_ERR",c:1,m:1},DOMStringSizeError:{s:"DOMSTRING_SIZE_ERR",c:2,m:0},HierarchyRequestError:{s:"HIERARCHY_REQUEST_ERR",c:3,m:1},WrongDocumentError:{s:"WRONG_DOCUMENT_ERR",c:4,m:1},InvalidCharacterError:{s:"INVALID_CHARACTER_ERR",c:5,m:1},NoDataAllowedError:{s:"NO_DATA_ALLOWED_ERR",c:6,m:0},NoModificationAllowedError:{s:"NO_MODIFICATION_ALLOWED_ERR",c:7,m:1},NotFoundError:{s:"NOT_FOUND_ERR",c:8,m:1},NotSupportedError:{s:"NOT_SUPPORTED_ERR",c:9,m:1},InUseAttributeError:{s:"INUSE_ATTRIBUTE_ERR",c:10,m:1},InvalidStateError:{s:"INVALID_STATE_ERR",c:11,m:1},SyntaxError:{s:"SYNTAX_ERR",c:12,m:1},InvalidModificationError:{s:"INVALID_MODIFICATION_ERR",c:13,m:1},NamespaceError:{s:"NAMESPACE_ERR",c:14,m:1},InvalidAccessError:{s:"INVALID_ACCESS_ERR",c:15,m:1},ValidationError:{s:"VALIDATION_ERR",c:16,m:0},TypeMismatchError:{s:"TYPE_MISMATCH_ERR",c:17,m:1},SecurityError:{s:"SECURITY_ERR",c:18,m:1},NetworkError:{s:"NETWORK_ERR",c:19,m:1},AbortError:{s:"ABORT_ERR",c:20,m:1},URLMismatchError:{s:"URL_MISMATCH_ERR",c:21,m:1},QuotaExceededError:{s:"QUOTA_EXCEEDED_ERR",c:22,m:1},TimeoutError:{s:"TIMEOUT_ERR",c:23,m:1},InvalidNodeTypeError:{s:"INVALID_NODE_TYPE_ERR",c:24,m:1},DataCloneError:{s:"DATA_CLONE_ERR",c:25,m:1}}},63464:t=>{"use strict";t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},17666:(t,e,r)=>{"use strict";var n=r(23791)("span").classList,o=n&&n.constructor&&n.constructor.prototype;t.exports=o===Object.prototype?void 0:o},50419:(t,e,r)=>{"use strict";var n=r(83309).match(/firefox\/(\d+)/i);t.exports=!!n&&+n[1]},41822:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(9923),i=r(63241);t.exports=!o&&!i&&"object"==("undefined"==typeof window?"undefined":n(window))&&"object"==("undefined"==typeof document?"undefined":n(document))},50831:t=>{"use strict";t.exports="function"==typeof Bun&&Bun&&"string"==typeof Bun.version},9923:t=>{"use strict";function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},e(t)}t.exports="object"==("undefined"==typeof Deno?"undefined":e(Deno))&&Deno&&"object"==e(Deno.version)},72693:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/MSIE|Trident/.test(n)},47181:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/ipad|iphone|ipod/i.test(n)&&"undefined"!=typeof Pebble},31681:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)},63241:(t,e,r)=>{"use strict";var n=r(31030);t.exports="undefined"!=typeof process&&"process"==n(process)},82223:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/web0s(?!.*chrome)/i.test(n)},83309:t=>{"use strict";t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},49229:(t,e,r)=>{"use strict";var n,o,i=r(54516),a=r(83309),s=i.process,u=i.Deno,c=s&&s.versions||u&&u.version,f=c&&c.v8;f&&(o=(n=f.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},90602:(t,e,r)=>{"use strict";var n=r(83309).match(/AppleWebKit\/(\d+)\./);t.exports=!!n&&+n[1]},38117:(t,e,r)=>{"use strict";var n=r(54516);t.exports=function(t){return n[t].prototype}},62507:t=>{"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},51597:(t,e,r)=>{"use strict";var n=r(76277),o=Error,i=n("".replace),a=String(o("zxcasd").stack),s=/\n\s*at [^:]*:[^\n]*/,u=s.test(a);t.exports=function(t,e){if(u&&"string"==typeof t&&!o.prepareStackTrace)for(;e--;)t=i(t,s,"");return t}},93636:(t,e,r)=>{"use strict";var n=r(81831),o=r(51597),i=r(81842),a=Error.captureStackTrace;t.exports=function(t,e,r,s){i&&(a?a(t,e):n(t,"stack",o(r,s)))}},81842:(t,e,r)=>{"use strict";var n=r(13894),o=r(30654);t.exports=!n((function(){var t=Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",o(1,7)),7!==t.stack)}))},34019:(t,e,r)=>{"use strict";var n=r(44244),o=r(13894),i=r(96302),a=r(64714),s=r(91245),u=Error.prototype.toString,c=o((function(){if(n){var t=a(Object.defineProperty({},"name",{get:function(){return this===t}}));if("true"!==u.call(t))return!0}return"2: 1"!==u.call({message:1,name:2})||"Error"!==u.call({})}));t.exports=c?function(){var t=i(this),e=s(t.name,"Error"),r=s(t.message);return e?r?e+": "+r:e:r}:u},57330:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(54516),i=r(77872).f,a=r(81831),s=r(89592),u=r(16085),c=r(79129),f=r(82615);t.exports=function(t,e){var r,l,h,p,y,d=t.target,v=t.global,g=t.stat;if(r=v?o:g?o[d]||u(d,{}):(o[d]||{}).prototype)for(l in e){if(p=e[l],h=t.dontCallGetSet?(y=i(r,l))&&y.value:r[l],!f(v?l:d+(g?".":"#")+l,t.forced)&&void 0!==h){if(n(p)==n(h))continue;c(p,h)}(t.sham||h&&h.sham)&&a(p,"sham",!0),s(r,l,p,t)}}},13894:t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},22804:(t,e,r)=>{"use strict";r(75567);var n=r(15307),o=r(89592),i=r(56021),a=r(13894),s=r(41398),u=r(81831),c=s("species"),f=RegExp.prototype;t.exports=function(t,e,r,l){var h=s(t),p=!a((function(){var e={};return e[h]=function(){return 7},7!=""[t](e)})),y=p&&!a((function(){var e=!1,r=/a/;return"split"===t&&((r={}).constructor={},r.constructor[c]=function(){return r},r.flags="",r[h]=/./[h]),r.exec=function(){return e=!0,null},r[h](""),!e}));if(!p||!y||r){var d=n(/./[h]),v=e(h,""[t],(function(t,e,r,o,a){var s=n(t),u=e.exec;return u===i||u===f.exec?p&&!a?{done:!0,value:d(e,r,o)}:{done:!0,value:s(r,e,o)}:{done:!1}}));o(String.prototype,t,v[0]),o(f,h,v[1])}l&&u(f[h],"sham",!0)}},25790:(t,e,r)=>{"use strict";var n=r(85588),o=r(43716),i=r(97614),a=r(29910);t.exports=function t(e,r,s,u,c,f,l,h){for(var p,y=c,d=0,v=!!l&&a(l,h);d<u;)d in s&&(p=v?v(s[d],d,r):s[d],f>0&&n(p)?y=t(e,r,p,o(p),y,f-1)-1:(i(y+1),e[y]=p),y++),d++;return y}},46151:(t,e,r)=>{"use strict";var n=r(13894);t.exports=!n((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2090:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(4424),i=Function.prototype,a=i.apply,s=i.call;t.exports="object"==("undefined"==typeof Reflect?"undefined":n(Reflect))&&Reflect.apply||(o?s.bind(a):function(){return s.apply(a,arguments)})},29910:(t,e,r)=>{"use strict";var n=r(15307),o=r(88965),i=r(4424),a=n(n.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?a(t,e):function(){return t.apply(e,arguments)}}},4424:(t,e,r)=>{"use strict";var n=r(13894);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},80944:(t,e,r)=>{"use strict";var n=r(76277),o=r(88965),i=r(3196),a=r(37058),s=r(52999),u=r(4424),c=Function,f=n([].concat),l=n([].join),h={};t.exports=u?c.bind:function(t){var e=o(this),r=e.prototype,n=s(arguments,1),u=function(){var r=f(n,s(arguments));return this instanceof u?function(t,e,r){if(!a(h,e)){for(var n=[],o=0;o<e;o++)n[o]="a["+o+"]";h[e]=c("C,a","return new C("+l(n,",")+")")}return h[e](t,r)}(e,r.length,r):e.apply(t,r)};return i(r)&&(u.prototype=r),u}},83264:(t,e,r)=>{"use strict";var n=r(4424),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},33385:(t,e,r)=>{"use strict";var n=r(44244),o=r(37058),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,s=o(i,"name"),u=s&&"something"===function(){}.name,c=s&&(!n||n&&a(i,"name").configurable);t.exports={EXISTS:s,PROPER:u,CONFIGURABLE:c}},89894:(t,e,r)=>{"use strict";var n=r(76277),o=r(88965);t.exports=function(t,e,r){try{return n(o(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}}},15307:(t,e,r)=>{"use strict";var n=r(31030),o=r(76277);t.exports=function(t){if("Function"===n(t))return o(t)}},76277:(t,e,r)=>{"use strict";var n=r(4424),o=Function.prototype,i=o.call,a=n&&o.bind.bind(i,i);t.exports=n?a:function(t){return function(){return i.apply(t,arguments)}}},12546:(t,e,r)=>{"use strict";var n=r(54516),o=r(34230);t.exports=function(t,e){return arguments.length<2?(r=n[t],o(r)?r:void 0):n[t]&&n[t][e];var r}},1228:(t,e,r)=>{"use strict";var n=r(98619),o=r(16040),i=r(18850),a=r(53415),s=r(41398)("iterator");t.exports=function(t){if(!i(t))return o(t,s)||o(t,"@@iterator")||a[n(t)]}},29946:(t,e,r)=>{"use strict";var n=r(83264),o=r(88965),i=r(96302),a=r(2854),s=r(1228),u=TypeError;t.exports=function(t,e){var r=arguments.length<2?s(t):e;if(o(r))return i(n(r,t));throw u(a(t)+" is not iterable")}},10042:(t,e,r)=>{"use strict";var n=r(76277),o=r(85588),i=r(34230),a=r(31030),s=r(18971),u=n([].push);t.exports=function(t){if(i(t))return t;if(o(t)){for(var e=t.length,r=[],n=0;n<e;n++){var c=t[n];"string"==typeof c?u(r,c):"number"!=typeof c&&"Number"!=a(c)&&"String"!=a(c)||u(r,s(c))}var f=r.length,l=!0;return function(t,e){if(l)return l=!1,e;if(o(this))return e;for(var n=0;n<f;n++)if(r[n]===t)return e}}}},16040:(t,e,r)=>{"use strict";var n=r(88965),o=r(18850);t.exports=function(t,e){var r=t[e];return o(r)?void 0:n(r)}},42012:(t,e,r)=>{"use strict";var n=r(76277),o=r(87706),i=Math.floor,a=n("".charAt),s=n("".replace),u=n("".slice),c=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,f=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,e,r,n,l,h){var p=r+t.length,y=n.length,d=f;return void 0!==l&&(l=o(l),d=c),s(h,d,(function(o,s){var c;switch(a(s,0)){case"$":return"$";case"&":return t;case"`":return u(e,0,r);case"'":return u(e,p);case"<":c=l[u(s,1,-1)];break;default:var f=+s;if(0===f)return o;if(f>y){var h=i(f/10);return 0===h?o:h<=y?void 0===n[h-1]?a(s,1):n[h-1]+a(s,1):o}c=n[f-1]}return void 0===c?"":c}))}},54516:function(t,e,r){"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=function(t){return t&&t.Math==Math&&t};t.exports=o("object"==("undefined"==typeof globalThis?"undefined":n(globalThis))&&globalThis)||o("object"==("undefined"==typeof window?"undefined":n(window))&&window)||o("object"==("undefined"==typeof self?"undefined":n(self))&&self)||o("object"==(void 0===r.g?"undefined":n(r.g))&&r.g)||function(){return this}()||this||Function("return this")()},37058:(t,e,r)=>{"use strict";var n=r(76277),o=r(87706),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},42570:t=>{"use strict";t.exports={}},45471:t=>{"use strict";t.exports=function(t,e){try{1==arguments.length?console.error(t):console.error(t,e)}catch(t){}}},58970:(t,e,r)=>{"use strict";var n=r(12546);t.exports=n("document","documentElement")},77320:(t,e,r)=>{"use strict";var n=r(44244),o=r(13894),i=r(23791);t.exports=!n&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},53652:t=>{"use strict";var e=Array,r=Math.abs,n=Math.pow,o=Math.floor,i=Math.log,a=Math.LN2;t.exports={pack:function(t,s,u){var c,f,l,h=e(u),p=8*u-s-1,y=(1<<p)-1,d=y>>1,v=23===s?n(2,-24)-n(2,-77):0,g=t<0||0===t&&1/t<0?1:0,b=0;for((t=r(t))!=t||t===1/0?(f=t!=t?1:0,c=y):(c=o(i(t)/a),t*(l=n(2,-c))<1&&(c--,l*=2),(t+=c+d>=1?v/l:v*n(2,1-d))*l>=2&&(c++,l/=2),c+d>=y?(f=0,c=y):c+d>=1?(f=(t*l-1)*n(2,s),c+=d):(f=t*n(2,d-1)*n(2,s),c=0));s>=8;)h[b++]=255&f,f/=256,s-=8;for(c=c<<s|f,p+=s;p>0;)h[b++]=255&c,c/=256,p-=8;return h[--b]|=128*g,h},unpack:function(t,e){var r,o=t.length,i=8*o-e-1,a=(1<<i)-1,s=a>>1,u=i-7,c=o-1,f=t[c--],l=127&f;for(f>>=7;u>0;)l=256*l+t[c--],u-=8;for(r=l&(1<<-u)-1,l>>=-u,u+=e;u>0;)r=256*r+t[c--],u-=8;if(0===l)l=1-s;else{if(l===a)return r?NaN:f?-1/0:1/0;r+=n(2,e),l-=s}return(f?-1:1)*r*n(2,l-e)}}},94015:(t,e,r)=>{"use strict";var n=r(76277),o=r(13894),i=r(31030),a=Object,s=n("".split);t.exports=o((function(){return!a("z").propertyIsEnumerable(0)}))?function(t){return"String"==i(t)?s(t,""):a(t)}:a},2993:(t,e,r)=>{"use strict";var n=r(34230),o=r(3196),i=r(14776);t.exports=function(t,e,r){var a,s;return i&&n(a=e.constructor)&&a!==r&&o(s=a.prototype)&&s!==r.prototype&&i(t,s),t}},91683:(t,e,r)=>{"use strict";var n=r(76277),o=r(34230),i=r(64111),a=n(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return a(t)}),t.exports=i.inspectSource},89804:(t,e,r)=>{"use strict";var n=r(3196),o=r(81831);t.exports=function(t,e){n(e)&&"cause"in e&&o(t,"cause",e.cause)}},8420:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(57330),i=r(76277),a=r(42570),s=r(3196),u=r(37058),c=r(26337).f,f=r(51019),l=r(53990),h=r(54284),p=r(67025),y=r(46151),d=!1,v=p("meta"),g=0,b=function(t){c(t,v,{value:{objectID:"O"+g++,weakData:{}}})},m=t.exports={enable:function(){m.enable=function(){},d=!0;var t=f.f,e=i([].splice),r={};r[v]=1,t(r).length&&(f.f=function(r){for(var n=t(r),o=0,i=n.length;o<i;o++)if(n[o]===v){e(n,o,1);break}return n},o({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:l.f}))},fastKey:function(t,e){if(!s(t))return"symbol"==n(t)?t:("string"==typeof t?"S":"P")+t;if(!u(t,v)){if(!h(t))return"F";if(!e)return"E";b(t)}return t[v].objectID},getWeakData:function(t,e){if(!u(t,v)){if(!h(t))return!0;if(!e)return!1;b(t)}return t[v].weakData},onFreeze:function(t){return y&&d&&h(t)&&!u(t,v)&&b(t),t}};a[v]=!0},43023:(t,e,r)=>{"use strict";var n,o,i,a=r(82408),s=r(54516),u=r(3196),c=r(81831),f=r(37058),l=r(64111),h=r(96894),p=r(42570),y="Object already initialized",d=s.TypeError,v=s.WeakMap;if(a||l.state){var g=l.state||(l.state=new v);g.get=g.get,g.has=g.has,g.set=g.set,n=function(t,e){if(g.has(t))throw d(y);return e.facade=t,g.set(t,e),e},o=function(t){return g.get(t)||{}},i=function(t){return g.has(t)}}else{var b=h("state");p[b]=!0,n=function(t,e){if(f(t,b))throw d(y);return e.facade=t,c(t,b,e),e},o=function(t){return f(t,b)?t[b]:{}},i=function(t){return f(t,b)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(e){var r;if(!u(e)||(r=o(e)).type!==t)throw d("Incompatible receiver, "+t+" required");return r}}}},201:(t,e,r)=>{"use strict";var n=r(41398),o=r(53415),i=n("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},85588:(t,e,r)=>{"use strict";var n=r(31030);t.exports=Array.isArray||function(t){return"Array"==n(t)}},98074:(t,e,r)=>{"use strict";var n=r(98619);t.exports=function(t){var e=n(t);return"BigInt64Array"==e||"BigUint64Array"==e}},34230:(t,e,r)=>{"use strict";var n=r(94535),o=n.all;t.exports=n.IS_HTMLDDA?function(t){return"function"==typeof t||t===o}:function(t){return"function"==typeof t}},53924:(t,e,r)=>{"use strict";var n=r(76277),o=r(13894),i=r(34230),a=r(98619),s=r(12546),u=r(91683),c=function(){},f=[],l=s("Reflect","construct"),h=/^\s*(?:class|function)\b/,p=n(h.exec),y=!h.exec(c),d=function(t){if(!i(t))return!1;try{return l(c,f,t),!0}catch(t){return!1}},v=function(t){if(!i(t))return!1;switch(a(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return y||!!p(h,u(t))}catch(t){return!0}};v.sham=!0,t.exports=!l||o((function(){var t;return d(d.call)||!d(Object)||!d((function(){t=!0}))||t}))?v:d},32674:(t,e,r)=>{"use strict";var n=r(37058);t.exports=function(t){return void 0!==t&&(n(t,"value")||n(t,"writable"))}},82615:(t,e,r)=>{"use strict";var n=r(13894),o=r(34230),i=/#|\.prototype\./,a=function(t,e){var r=u[s(t)];return r==f||r!=c&&(o(e)?n(e):!!e)},s=a.normalize=function(t){return String(t).replace(i,".").toLowerCase()},u=a.data={},c=a.NATIVE="N",f=a.POLYFILL="P";t.exports=a},18057:(t,e,r)=>{"use strict";var n=r(3196),o=Math.floor;t.exports=Number.isInteger||function(t){return!n(t)&&isFinite(t)&&o(t)===t}},18850:t=>{"use strict";t.exports=function(t){return null==t}},3196:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(34230),i=r(94535),a=i.all;t.exports=i.IS_HTMLDDA?function(t){return"object"==n(t)?null!==t:o(t)||t===a}:function(t){return"object"==n(t)?null!==t:o(t)}},43310:t=>{"use strict";t.exports=!1},15076:(t,e,r)=>{"use strict";var n=r(3196),o=r(31030),i=r(41398)("match");t.exports=function(t){var e;return n(t)&&(void 0!==(e=t[i])?!!e:"RegExp"==o(t))}},45961:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(12546),i=r(34230),a=r(34973),s=r(88477),u=Object;t.exports=s?function(t){return"symbol"==n(t)}:function(t){var e=o("Symbol");return i(e)&&a(e.prototype,u(t))}},29429:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(29910),i=r(83264),a=r(96302),s=r(2854),u=r(201),c=r(43716),f=r(34973),l=r(29946),h=r(1228),p=r(77073),y=TypeError,d=function(t,e){this.stopped=t,this.result=e},v=d.prototype;t.exports=function(t,e,r){var g,b,m,w,x,k,S,_=r&&r.that,O=!(!r||!r.AS_ENTRIES),E=!(!r||!r.IS_RECORD),A=!(!r||!r.IS_ITERATOR),P=!(!r||!r.INTERRUPTED),j=o(e,_),T=function(t){return g&&p(g,"normal",t),new d(!0,t)},M=function(t){return O?(a(t),P?j(t[0],t[1],T):j(t[0],t[1])):P?j(t,T):j(t)};if(E)g=t.iterator;else if(A)g=t;else{if(!(b=h(t)))throw y(s(t)+" is not iterable");if(u(b)){for(m=0,w=c(t);w>m;m++)if((x=M(t[m]))&&f(v,x))return x;return new d(!1)}g=l(t,b)}for(k=E?t.next:g.next;!(S=i(k,g)).done;){try{x=M(S.value)}catch(t){p(g,"throw",t)}if("object"==n(x)&&x&&f(v,x))return x}return new d(!1)}},77073:(t,e,r)=>{"use strict";var n=r(83264),o=r(96302),i=r(16040);t.exports=function(t,e,r){var a,s;o(t);try{if(!(a=i(t,"return"))){if("throw"===e)throw r;return r}a=n(a,t)}catch(t){s=!0,a=t}if("throw"===e)throw r;if(s)throw a;return o(a),r}},91740:(t,e,r)=>{"use strict";var n=r(32213).IteratorPrototype,o=r(64714),i=r(30654),a=r(81018),s=r(53415),u=function(){return this};t.exports=function(t,e,r,c){var f=e+" Iterator";return t.prototype=o(n,{next:i(+!c,r)}),a(t,f,!1,!0),s[f]=u,t}},99825:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(43310),a=r(33385),s=r(34230),u=r(91740),c=r(40175),f=r(14776),l=r(81018),h=r(81831),p=r(89592),y=r(41398),d=r(53415),v=r(32213),g=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,w=v.BUGGY_SAFARI_ITERATORS,x=y("iterator"),k="keys",S="values",_="entries",O=function(){return this};t.exports=function(t,e,r,a,y,v,E){u(r,e,a);var A,P,j,T=function(t){if(t===y&&L)return L;if(!w&&t in I)return I[t];switch(t){case k:case S:case _:return function(){return new r(this,t)}}return function(){return new r(this)}},M=e+" Iterator",R=!1,I=t.prototype,C=I[x]||I["@@iterator"]||y&&I[y],L=!w&&C||T(y),D="Array"==e&&I.entries||C;if(D&&(A=c(D.call(new t)))!==Object.prototype&&A.next&&(i||c(A)===m||(f?f(A,m):s(A[x])||p(A,x,O)),l(A,M,!0,!0),i&&(d[M]=O)),g&&y==S&&C&&C.name!==S&&(!i&&b?h(I,"name",S):(R=!0,L=function(){return o(C,this)})),y)if(P={values:T(S),keys:v?L:T(k),entries:T(_)},E)for(j in P)(w||R||!(j in I))&&p(I,j,P[j]);else n({target:e,proto:!0,forced:w||R},P);return i&&!E||I[x]===L||p(I,x,L,{name:y}),d[e]=L,P}},32213:(t,e,r)=>{"use strict";var n,o,i,a=r(13894),s=r(34230),u=r(3196),c=r(64714),f=r(40175),l=r(89592),h=r(41398),p=r(43310),y=h("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(o=f(f(i)))!==Object.prototype&&(n=o):d=!0),!u(n)||a((function(){var t={};return n[y].call(t)!==t}))?n={}:p&&(n=c(n)),s(n[y])||l(n,y,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:d}},53415:t=>{"use strict";t.exports={}},43716:(t,e,r)=>{"use strict";var n=r(6674);t.exports=function(t){return n(t.length)}},74743:(t,e,r)=>{"use strict";var n=r(76277),o=r(13894),i=r(34230),a=r(37058),s=r(44244),u=r(33385).CONFIGURABLE,c=r(91683),f=r(43023),l=f.enforce,h=f.get,p=String,y=Object.defineProperty,d=n("".slice),v=n("".replace),g=n([].join),b=s&&!o((function(){return 8!==y((function(){}),"length",{value:8}).length})),m=String(String).split("String"),w=t.exports=function(t,e,r){"Symbol("===d(p(e),0,7)&&(e="["+v(p(e),/^Symbol\(([^)]*)\)/,"$1")+"]"),r&&r.getter&&(e="get "+e),r&&r.setter&&(e="set "+e),(!a(t,"name")||u&&t.name!==e)&&(s?y(t,"name",{value:e,configurable:!0}):t.name=e),b&&r&&a(r,"arity")&&t.length!==r.arity&&y(t,"length",{value:r.arity});try{r&&a(r,"constructor")&&r.constructor?s&&y(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var n=l(t);return a(n,"source")||(n.source=g(m,"string"==typeof e?e:"")),t};Function.prototype.toString=w((function(){return i(this)&&h(this).source||c(this)}),"toString")},6482:(t,e,r)=>{"use strict";var n=r(76277),o=Map.prototype;t.exports={Map,set:n(o.set),get:n(o.get),has:n(o.has),remove:n(o.delete),proto:o}},45446:t=>{"use strict";var e=Math.expm1,r=Math.exp;t.exports=!e||e(10)>22025.465794806718||e(10)<22025.465794806718||-2e-17!=e(-2e-17)?function(t){var e=+t;return 0==e?e:e>-1e-6&&e<1e-6?e+e*e/2:r(e)-1}:e},49281:(t,e,r)=>{"use strict";var n=r(54059),o=Math.abs,i=Math.pow,a=i(2,-52),s=i(2,-23),u=i(2,127)*(2-s),c=i(2,-126);t.exports=Math.fround||function(t){var e,r,i=+t,f=o(i),l=n(i);return f<c?l*function(t){return t+1/a-1/a}(f/c/s)*c*s:(r=(e=(1+s/a)*f)-(e-f))>u||r!=r?l*(1/0):l*r}},36200:t=>{"use strict";var e=Math.log,r=Math.LOG10E;t.exports=Math.log10||function(t){return e(t)*r}},43611:t=>{"use strict";var e=Math.log;t.exports=Math.log1p||function(t){var r=+t;return r>-1e-8&&r<1e-8?r-r*r/2:e(1+r)}},54059:t=>{"use strict";t.exports=Math.sign||function(t){var e=+t;return 0==e||e!=e?e:e<0?-1:1}},78066:t=>{"use strict";var e=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?r:e)(n)}},54653:(t,e,r)=>{"use strict";var n,o,i,a,s,u=r(54516),c=r(29910),f=r(77872).f,l=r(33394).set,h=r(7822),p=r(31681),y=r(47181),d=r(82223),v=r(63241),g=u.MutationObserver||u.WebKitMutationObserver,b=u.document,m=u.process,w=u.Promise,x=f(u,"queueMicrotask"),k=x&&x.value;if(!k){var S=new h,_=function(){var t,e;for(v&&(t=m.domain)&&t.exit();e=S.get();)try{e()}catch(t){throw S.head&&n(),t}t&&t.enter()};p||v||d||!g||!b?!y&&w&&w.resolve?((a=w.resolve(void 0)).constructor=w,s=c(a.then,a),n=function(){s(_)}):v?n=function(){m.nextTick(_)}:(l=c(l,u),n=function(){l(_)}):(o=!0,i=b.createTextNode(""),new g(_).observe(i,{characterData:!0}),n=function(){i.data=o=!o}),k=function(t){S.head||n(),S.add(t)}}t.exports=k},82487:(t,e,r)=>{"use strict";var n=r(88965),o=TypeError,i=function(t){var e,r;this.promise=new t((function(t,n){if(void 0!==e||void 0!==r)throw o("Bad Promise constructor");e=t,r=n})),this.resolve=n(e),this.reject=n(r)};t.exports.f=function(t){return new i(t)}},91245:(t,e,r)=>{"use strict";var n=r(18971);t.exports=function(t,e){return void 0===t?arguments.length<2?"":e:n(t)}},50134:(t,e,r)=>{"use strict";var n=r(15076),o=TypeError;t.exports=function(t){if(n(t))throw o("The method doesn't accept regular expressions");return t}},23034:(t,e,r)=>{"use strict";var n=r(54516).isFinite;t.exports=Number.isFinite||function(t){return"number"==typeof t&&n(t)}},29818:(t,e,r)=>{"use strict";var n=r(54516),o=r(13894),i=r(76277),a=r(18971),s=r(23688).trim,u=r(79577),c=i("".charAt),f=n.parseFloat,l=n.Symbol,h=l&&l.iterator,p=1/f(u+"-0")!=-1/0||h&&!o((function(){f(Object(h))}));t.exports=p?function(t){var e=s(a(t)),r=f(e);return 0===r&&"-"==c(e,0)?-0:r}:f},20361:(t,e,r)=>{"use strict";var n=r(54516),o=r(13894),i=r(76277),a=r(18971),s=r(23688).trim,u=r(79577),c=n.parseInt,f=n.Symbol,l=f&&f.iterator,h=/^[+-]?0x/i,p=i(h.exec),y=8!==c(u+"08")||22!==c(u+"0x16")||l&&!o((function(){c(Object(l))}));t.exports=y?function(t,e){var r=s(a(t));return c(r,e>>>0||(p(h,r)?16:10))}:c},70168:(t,e,r)=>{"use strict";var n=r(44244),o=r(76277),i=r(83264),a=r(13894),s=r(68201),u=r(78586),c=r(12028),f=r(87706),l=r(94015),h=Object.assign,p=Object.defineProperty,y=o([].concat);t.exports=!h||a((function(){if(n&&1!==h({b:1},h(p({},"a",{enumerable:!0,get:function(){p(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},r=Symbol(),o="abcdefghijklmnopqrst";return t[r]=7,o.split("").forEach((function(t){e[t]=t})),7!=h({},t)[r]||s(h({},e)).join("")!=o}))?function(t,e){for(var r=f(t),o=arguments.length,a=1,h=u.f,p=c.f;o>a;)for(var d,v=l(arguments[a++]),g=h?y(s(v),h(v)):s(v),b=g.length,m=0;b>m;)d=g[m++],n&&!i(p,v,d)||(r[d]=v[d]);return r}:h},64714:(t,e,r)=>{"use strict";var n,o=r(96302),i=r(68068),a=r(62507),s=r(42570),u=r(58970),c=r(23791),f=r(96894),l="prototype",h="script",p=f("IE_PROTO"),y=function(){},d=function(t){return"<"+h+">"+t+"</"+h+">"},v=function(t){t.write(d("")),t.close();var e=t.parentWindow.Object;return t=null,e},g=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;g="undefined"!=typeof document?document.domain&&n?v(n):(e=c("iframe"),r="java"+h+":",e.style.display="none",u.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(d("document.F=Object")),t.close(),t.F):v(n);for(var o=a.length;o--;)delete g[l][a[o]];return g()};s[p]=!0,t.exports=Object.create||function(t,e){var r;return null!==t?(y[l]=o(t),r=new y,y[l]=null,r[p]=t):r=g(),void 0===e?r:i.f(r,e)}},68068:(t,e,r)=>{"use strict";var n=r(44244),o=r(29128),i=r(26337),a=r(96302),s=r(54721),u=r(68201);e.f=n&&!o?Object.defineProperties:function(t,e){a(t);for(var r,n=s(e),o=u(e),c=o.length,f=0;c>f;)i.f(t,r=o[f++],n[r]);return t}},26337:(t,e,r)=>{"use strict";var n=r(44244),o=r(77320),i=r(29128),a=r(96302),s=r(14748),u=TypeError,c=Object.defineProperty,f=Object.getOwnPropertyDescriptor,l="enumerable",h="configurable",p="writable";e.f=n?i?function(t,e,r){if(a(t),e=s(e),a(r),"function"==typeof t&&"prototype"===e&&"value"in r&&p in r&&!r[p]){var n=f(t,e);n&&n[p]&&(t[e]=r.value,r={configurable:h in r?r[h]:n[h],enumerable:l in r?r[l]:n[l],writable:!1})}return c(t,e,r)}:c:function(t,e,r){if(a(t),e=s(e),a(r),o)try{return c(t,e,r)}catch(t){}if("get"in r||"set"in r)throw u("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},77872:(t,e,r)=>{"use strict";var n=r(44244),o=r(83264),i=r(12028),a=r(30654),s=r(54721),u=r(14748),c=r(37058),f=r(77320),l=Object.getOwnPropertyDescriptor;e.f=n?l:function(t,e){if(t=s(t),e=u(e),f)try{return l(t,e)}catch(t){}if(c(t,e))return a(!o(i.f,t,e),t[e])}},53990:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(31030),i=r(54721),a=r(51019).f,s=r(68020),u="object"==("undefined"==typeof window?"undefined":n(window))&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return u&&"Window"==o(t)?function(t){try{return a(t)}catch(t){return s(u)}}(t):a(i(t))}},51019:(t,e,r)=>{"use strict";var n=r(26406),o=r(62507).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},78586:(t,e)=>{"use strict";e.f=Object.getOwnPropertySymbols},40175:(t,e,r)=>{"use strict";var n=r(37058),o=r(34230),i=r(87706),a=r(96894),s=r(66336),u=a("IE_PROTO"),c=Object,f=c.prototype;t.exports=s?c.getPrototypeOf:function(t){var e=i(t);if(n(e,u))return e[u];var r=e.constructor;return o(r)&&e instanceof r?r.prototype:e instanceof c?f:null}},54284:(t,e,r)=>{"use strict";var n=r(13894),o=r(3196),i=r(31030),a=r(47698),s=Object.isExtensible,u=n((function(){s(1)}));t.exports=u||a?function(t){return!!o(t)&&(!a||"ArrayBuffer"!=i(t))&&(!s||s(t))}:s},34973:(t,e,r)=>{"use strict";var n=r(76277);t.exports=n({}.isPrototypeOf)},26406:(t,e,r)=>{"use strict";var n=r(76277),o=r(37058),i=r(54721),a=r(60452).indexOf,s=r(42570),u=n([].push);t.exports=function(t,e){var r,n=i(t),c=0,f=[];for(r in n)!o(s,r)&&o(n,r)&&u(f,r);for(;e.length>c;)o(n,r=e[c++])&&(~a(f,r)||u(f,r));return f}},68201:(t,e,r)=>{"use strict";var n=r(26406),o=r(62507);t.exports=Object.keys||function(t){return n(t,o)}},12028:(t,e)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);e.f=o?function(t){var e=n(this,t);return!!e&&e.enumerable}:r},54046:(t,e,r)=>{"use strict";var n=r(43310),o=r(54516),i=r(13894),a=r(90602);t.exports=n||!i((function(){if(!(a&&a<535)){var t=Math.random();__defineSetter__.call(null,t,(function(){})),delete o[t]}}))},14776:(t,e,r)=>{"use strict";var n=r(89894),o=r(96302),i=r(19814);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=n(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return o(r),i(n),e?t(r,n):r.__proto__=n,r}}():void 0)},19602:(t,e,r)=>{"use strict";var n=r(44244),o=r(13894),i=r(76277),a=r(40175),s=r(68201),u=r(54721),c=i(r(12028).f),f=i([].push),l=n&&o((function(){var t=Object.create(null);return t[2]=2,!c(t,2)})),h=function(t){return function(e){for(var r,o=u(e),i=s(o),h=l&&null===a(o),p=i.length,y=0,d=[];p>y;)r=i[y++],n&&!(h?r in o:c(o,r))||f(d,t?[r,o[r]]:o[r]);return d}};t.exports={entries:h(!0),values:h(!1)}},5719:(t,e,r)=>{"use strict";var n=r(47775),o=r(98619);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},8661:(t,e,r)=>{"use strict";var n=r(83264),o=r(34230),i=r(3196),a=TypeError;t.exports=function(t,e){var r,s;if("string"===e&&o(r=t.toString)&&!i(s=n(r,t)))return s;if(o(r=t.valueOf)&&!i(s=n(r,t)))return s;if("string"!==e&&o(r=t.toString)&&!i(s=n(r,t)))return s;throw a("Can't convert object to primitive value")}},16660:(t,e,r)=>{"use strict";var n=r(12546),o=r(76277),i=r(51019),a=r(78586),s=r(96302),u=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var e=i.f(s(t)),r=a.f;return r?u(e,r(t)):e}},1612:(t,e,r)=>{"use strict";var n=r(54516);t.exports=n},93798:t=>{"use strict";t.exports=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}}},86177:(t,e,r)=>{"use strict";var n=r(54516),o=r(32522),i=r(34230),a=r(82615),s=r(91683),u=r(41398),c=r(41822),f=r(9923),l=r(43310),h=r(49229),p=o&&o.prototype,y=u("species"),d=!1,v=i(n.PromiseRejectionEvent),g=a("Promise",(function(){var t=s(o),e=t!==String(o);if(!e&&66===h)return!0;if(l&&(!p.catch||!p.finally))return!0;if(!h||h<51||!/native code/.test(t)){var r=new o((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};if((r.constructor={})[y]=n,!(d=r.then((function(){}))instanceof n))return!0}return!e&&(c||f)&&!v}));t.exports={CONSTRUCTOR:g,REJECTION_EVENT:v,SUBCLASSING:d}},32522:(t,e,r)=>{"use strict";var n=r(54516);t.exports=n.Promise},37494:(t,e,r)=>{"use strict";var n=r(96302),o=r(3196),i=r(82487);t.exports=function(t,e){if(n(t),o(e)&&e.constructor===t)return e;var r=i.f(t);return(0,r.resolve)(e),r.promise}},48006:(t,e,r)=>{"use strict";var n=r(32522),o=r(36548),i=r(86177).CONSTRUCTOR;t.exports=i||!o((function(t){n.all(t).then(void 0,(function(){}))}))},60492:(t,e,r)=>{"use strict";var n=r(26337).f;t.exports=function(t,e,r){r in t||n(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})}},7822:t=>{"use strict";var e=function(){this.head=null,this.tail=null};e.prototype={add:function(t){var e={item:t,next:null},r=this.tail;r?r.next=e:this.head=e,this.tail=e},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}},t.exports=e},10510:(t,e,r)=>{"use strict";var n=r(83264),o=r(96302),i=r(34230),a=r(31030),s=r(56021),u=TypeError;t.exports=function(t,e){var r=t.exec;if(i(r)){var c=n(r,t,e);return null!==c&&o(c),c}if("RegExp"===a(t))return n(s,t,e);throw u("RegExp#exec called on incompatible receiver")}},56021:(t,e,r)=>{"use strict";var n,o,i=r(83264),a=r(76277),s=r(18971),u=r(53941),c=r(25645),f=r(38365),l=r(64714),h=r(43023).get,p=r(51415),y=r(56002),d=f("native-string-replace",String.prototype.replace),v=RegExp.prototype.exec,g=v,b=a("".charAt),m=a("".indexOf),w=a("".replace),x=a("".slice),k=(o=/b*/g,i(v,n=/a/,"a"),i(v,o,"a"),0!==n.lastIndex||0!==o.lastIndex),S=c.BROKEN_CARET,_=void 0!==/()??/.exec("")[1];(k||_||S||p||y)&&(g=function(t){var e,r,n,o,a,c,f,p=this,y=h(p),O=s(t),E=y.raw;if(E)return E.lastIndex=p.lastIndex,e=i(g,E,O),p.lastIndex=E.lastIndex,e;var A=y.groups,P=S&&p.sticky,j=i(u,p),T=p.source,M=0,R=O;if(P&&(j=w(j,"y",""),-1===m(j,"g")&&(j+="g"),R=x(O,p.lastIndex),p.lastIndex>0&&(!p.multiline||p.multiline&&"\n"!==b(O,p.lastIndex-1))&&(T="(?: "+T+")",R=" "+R,M++),r=new RegExp("^(?:"+T+")",j)),_&&(r=new RegExp("^"+T+"$(?!\\s)",j)),k&&(n=p.lastIndex),o=i(v,P?r:p,R),P?o?(o.input=x(o.input,M),o[0]=x(o[0],M),o.index=p.lastIndex,p.lastIndex+=o[0].length):p.lastIndex=0:k&&o&&(p.lastIndex=p.global?o.index+o[0].length:n),_&&o&&o.length>1&&i(d,o[0],r,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(o[a]=void 0)})),o&&A)for(o.groups=c=l(null),a=0;a<A.length;a++)c[(f=A[a])[0]]=o[f[1]];return o}),t.exports=g},53941:(t,e,r)=>{"use strict";var n=r(96302);t.exports=function(){var t=n(this),e="";return t.hasIndices&&(e+="d"),t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.unicodeSets&&(e+="v"),t.sticky&&(e+="y"),e}},16503:(t,e,r)=>{"use strict";var n=r(83264),o=r(37058),i=r(34973),a=r(53941),s=RegExp.prototype;t.exports=function(t){var e=t.flags;return void 0!==e||"flags"in s||o(t,"flags")||!i(s,t)?e:n(a,t)}},25645:(t,e,r)=>{"use strict";var n=r(13894),o=r(54516).RegExp,i=n((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),a=i||n((function(){return!o("a","y").sticky})),s=i||n((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}));t.exports={BROKEN_CARET:s,MISSED_STICKY:a,UNSUPPORTED_Y:i}},51415:(t,e,r)=>{"use strict";var n=r(13894),o=r(54516).RegExp;t.exports=n((function(){var t=o(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)}))},56002:(t,e,r)=>{"use strict";var n=r(13894),o=r(54516).RegExp;t.exports=n((function(){var t=o("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}))},72191:(t,e,r)=>{"use strict";var n=r(18850),o=TypeError;t.exports=function(t){if(n(t))throw o("Can't call method on "+t);return t}},79094:t=>{"use strict";t.exports=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}},74710:(t,e,r)=>{"use strict";var n,o=r(54516),i=r(2090),a=r(34230),s=r(50831),u=r(83309),c=r(52999),f=r(10645),l=o.Function,h=/MSIE .\./.test(u)||s&&((n=o.Bun.version.split(".")).length<3||0==n[0]&&(n[1]<3||3==n[1]&&0==n[2]));t.exports=function(t,e){var r=e?2:1;return h?function(n,o){var s=f(arguments.length,1)>r,u=a(n)?n:l(n),h=s?c(arguments,r):[],p=s?function(){i(u,this,h)}:u;return e?t(p,o):t(p)}:t}},49164:(t,e,r)=>{"use strict";var n=r(76277),o=Set.prototype;t.exports={Set,add:n(o.add),has:n(o.has),remove:n(o.delete),proto:o}},3348:(t,e,r)=>{"use strict";var n=r(12546),o=r(55882),i=r(41398),a=r(44244),s=i("species");t.exports=function(t){var e=n(t);a&&e&&!e[s]&&o(e,s,{configurable:!0,get:function(){return this}})}},81018:(t,e,r)=>{"use strict";var n=r(26337).f,o=r(37058),i=r(41398)("toStringTag");t.exports=function(t,e,r){t&&!r&&(t=t.prototype),t&&!o(t,i)&&n(t,i,{configurable:!0,value:e})}},96894:(t,e,r)=>{"use strict";var n=r(38365),o=r(67025),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},64111:(t,e,r)=>{"use strict";var n=r(54516),o=r(16085),i="__core-js_shared__",a=n[i]||o(i,{});t.exports=a},38365:(t,e,r)=>{"use strict";var n=r(43310),o=r(64111);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.32.0",mode:n?"pure":"global",copyright:"© 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.32.0/LICENSE",source:"https://github.com/zloirock/core-js"})},72976:(t,e,r)=>{"use strict";var n=r(96302),o=r(52750),i=r(18850),a=r(41398)("species");t.exports=function(t,e){var r,s=n(t).constructor;return void 0===s||i(r=n(s)[a])?e:o(r)}},21839:(t,e,r)=>{"use strict";var n=r(13894);t.exports=function(t){return n((function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}))}},32088:(t,e,r)=>{"use strict";var n=r(76277),o=r(35206),i=r(18971),a=r(72191),s=n("".charAt),u=n("".charCodeAt),c=n("".slice),f=function(t){return function(e,r){var n,f,l=i(a(e)),h=o(r),p=l.length;return h<0||h>=p?t?"":void 0:(n=u(l,h))<55296||n>56319||h+1===p||(f=u(l,h+1))<56320||f>57343?t?s(l,h):n:t?c(l,h,h+2):f-56320+(n-55296<<10)+65536}};t.exports={codeAt:f(!1),charAt:f(!0)}},92980:(t,e,r)=>{"use strict";var n=r(83309);t.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n)},86424:(t,e,r)=>{"use strict";var n=r(76277),o=r(6674),i=r(18971),a=r(23295),s=r(72191),u=n(a),c=n("".slice),f=Math.ceil,l=function(t){return function(e,r,n){var a,l,h=i(s(e)),p=o(r),y=h.length,d=void 0===n?" ":i(n);return p<=y||""==d?h:((l=u(d,f((a=p-y)/d.length))).length>a&&(l=c(l,0,a)),t?h+l:l+h)}};t.exports={start:l(!1),end:l(!0)}},34858:(t,e,r)=>{"use strict";var n=r(76277),o=2147483647,i=/[^\0-\u007E]/,a=/[.\u3002\uFF0E\uFF61]/g,s="Overflow: input needs wider integers to process",u=RangeError,c=n(a.exec),f=Math.floor,l=String.fromCharCode,h=n("".charCodeAt),p=n([].join),y=n([].push),d=n("".replace),v=n("".split),g=n("".toLowerCase),b=function(t){return t+22+75*(t<26)},m=function(t,e,r){var n=0;for(t=r?f(t/700):t>>1,t+=f(t/e);t>455;)t=f(t/35),n+=36;return f(n+36*t/(t+38))},w=function(t){var e=[];t=function(t){for(var e=[],r=0,n=t.length;r<n;){var o=h(t,r++);if(o>=55296&&o<=56319&&r<n){var i=h(t,r++);56320==(64512&i)?y(e,((1023&o)<<10)+(1023&i)+65536):(y(e,o),r--)}else y(e,o)}return e}(t);var r,n,i=t.length,a=128,c=0,d=72;for(r=0;r<t.length;r++)(n=t[r])<128&&y(e,l(n));var v=e.length,g=v;for(v&&y(e,"-");g<i;){var w=o;for(r=0;r<t.length;r++)(n=t[r])>=a&&n<w&&(w=n);var x=g+1;if(w-a>f((o-c)/x))throw u(s);for(c+=(w-a)*x,a=w,r=0;r<t.length;r++){if((n=t[r])<a&&++c>o)throw u(s);if(n==a){for(var k=c,S=36;;){var _=S<=d?1:S>=d+26?26:S-d;if(k<_)break;var O=k-_,E=36-_;y(e,l(b(_+O%E))),k=f(O/E),S+=36}y(e,l(b(k))),d=m(c,x,g==v),c=0,g++}}c++,a++}return p(e,"")};t.exports=function(t){var e,r,n=[],o=v(d(g(t),a,"."),".");for(e=0;e<o.length;e++)r=o[e],y(n,c(i,r)?"xn--"+w(r):r);return p(n,".")}},23295:(t,e,r)=>{"use strict";var n=r(35206),o=r(18971),i=r(72191),a=RangeError;t.exports=function(t){var e=o(i(this)),r="",s=n(t);if(s<0||s==1/0)throw a("Wrong number of repetitions");for(;s>0;(s>>>=1)&&(e+=e))1&s&&(r+=e);return r}},21791:(t,e,r)=>{"use strict";var n=r(23688).end,o=r(55833);t.exports=o("trimEnd")?function(){return n(this)}:"".trimEnd},55833:(t,e,r)=>{"use strict";var n=r(33385).PROPER,o=r(13894),i=r(79577);t.exports=function(t){return o((function(){return!!i[t]()||"
"!=="
"[t]()||n&&i[t].name!==t}))}},65315:(t,e,r)=>{"use strict";var n=r(23688).start,o=r(55833);t.exports=o("trimStart")?function(){return n(this)}:"".trimStart},23688:(t,e,r)=>{"use strict";var n=r(76277),o=r(72191),i=r(18971),a=r(79577),s=n("".replace),u=RegExp("^["+a+"]+"),c=RegExp("(^|[^"+a+"])["+a+"]+$"),f=function(t){return function(e){var r=i(o(e));return 1&t&&(r=s(r,u,"")),2&t&&(r=s(r,c,"$1")),r}};t.exports={start:f(1),end:f(2),trim:f(3)}},70197:(t,e,r)=>{"use strict";var n=r(54516),o=r(13894),i=r(49229),a=r(41822),s=r(9923),u=r(63241),c=n.structuredClone;t.exports=!!c&&!o((function(){if(s&&i>92||u&&i>94||a&&i>97)return!1;var t=new ArrayBuffer(8),e=c(t,{transfer:[t]});return 0!=t.byteLength||8!=e.byteLength}))},24550:(t,e,r)=>{"use strict";var n=r(49229),o=r(13894),i=r(54516).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},52231:(t,e,r)=>{"use strict";var n=r(83264),o=r(12546),i=r(41398),a=r(89592);t.exports=function(){var t=o("Symbol"),e=t&&t.prototype,r=e&&e.valueOf,s=i("toPrimitive");e&&!e[s]&&a(e,s,(function(t){return n(r,this)}),{arity:1})}},29129:(t,e,r)=>{"use strict";var n=r(24550);t.exports=n&&!!Symbol.for&&!!Symbol.keyFor},33394:(t,e,r)=>{"use strict";var n,o,i,a,s=r(54516),u=r(2090),c=r(29910),f=r(34230),l=r(37058),h=r(13894),p=r(58970),y=r(52999),d=r(23791),v=r(10645),g=r(31681),b=r(63241),m=s.setImmediate,w=s.clearImmediate,x=s.process,k=s.Dispatch,S=s.Function,_=s.MessageChannel,O=s.String,E=0,A={},P="onreadystatechange";h((function(){n=s.location}));var j=function(t){if(l(A,t)){var e=A[t];delete A[t],e()}},T=function(t){return function(){j(t)}},M=function(t){j(t.data)},R=function(t){s.postMessage(O(t),n.protocol+"//"+n.host)};m&&w||(m=function(t){v(arguments.length,1);var e=f(t)?t:S(t),r=y(arguments,1);return A[++E]=function(){u(e,void 0,r)},o(E),E},w=function(t){delete A[t]},b?o=function(t){x.nextTick(T(t))}:k&&k.now?o=function(t){k.now(T(t))}:_&&!g?(a=(i=new _).port2,i.port1.onmessage=M,o=c(a.postMessage,a)):s.addEventListener&&f(s.postMessage)&&!s.importScripts&&n&&"file:"!==n.protocol&&!h(R)?(o=R,s.addEventListener("message",M,!1)):o=P in d("script")?function(t){p.appendChild(d("script"))[P]=function(){p.removeChild(this),j(t)}}:function(t){setTimeout(T(t),0)}),t.exports={set:m,clear:w}},71047:(t,e,r)=>{"use strict";var n=r(76277);t.exports=n(1..valueOf)},59625:(t,e,r)=>{"use strict";var n=r(35206),o=Math.max,i=Math.min;t.exports=function(t,e){var r=n(t);return r<0?o(r+e,0):i(r,e)}},1490:(t,e,r)=>{"use strict";var n=r(69155),o=TypeError;t.exports=function(t){var e=n(t,"number");if("number"==typeof e)throw o("Can't convert number to bigint");return BigInt(e)}},88821:(t,e,r)=>{"use strict";var n=r(35206),o=r(6674),i=RangeError;t.exports=function(t){if(void 0===t)return 0;var e=n(t),r=o(e);if(e!==r)throw i("Wrong length or index");return r}},54721:(t,e,r)=>{"use strict";var n=r(94015),o=r(72191);t.exports=function(t){return n(o(t))}},35206:(t,e,r)=>{"use strict";var n=r(78066);t.exports=function(t){var e=+t;return e!=e||0===e?0:n(e)}},6674:(t,e,r)=>{"use strict";var n=r(35206),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},87706:(t,e,r)=>{"use strict";var n=r(72191),o=Object;t.exports=function(t){return o(n(t))}},4408:(t,e,r)=>{"use strict";var n=r(43458),o=RangeError;t.exports=function(t,e){var r=n(t);if(r%e)throw o("Wrong offset");return r}},43458:(t,e,r)=>{"use strict";var n=r(35206),o=RangeError;t.exports=function(t){var e=n(t);if(e<0)throw o("The argument can't be less than 0");return e}},69155:(t,e,r)=>{"use strict";var n=r(83264),o=r(3196),i=r(45961),a=r(16040),s=r(8661),u=r(41398),c=TypeError,f=u("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var r,u=a(t,f);if(u){if(void 0===e&&(e="default"),r=n(u,t,e),!o(r)||i(r))return r;throw c("Can't convert object to primitive value")}return void 0===e&&(e="number"),s(t,e)}},14748:(t,e,r)=>{"use strict";var n=r(69155),o=r(45961);t.exports=function(t){var e=n(t,"string");return o(e)?e:e+""}},47775:(t,e,r)=>{"use strict";var n={};n[r(41398)("toStringTag")]="z",t.exports="[object z]"===String(n)},18971:(t,e,r)=>{"use strict";var n=r(98619),o=String;t.exports=function(t){if("Symbol"===n(t))throw TypeError("Cannot convert a Symbol value to a string");return o(t)}},42317:t=>{"use strict";var e=Math.round;t.exports=function(t){var r=e(t);return r<0?0:r>255?255:255&r}},24128:(t,e,r)=>{"use strict";var n=r(63241);t.exports=function(t){try{if(n)return Function('return require("'+t+'")')()}catch(t){}}},2854:t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},63842:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(83264),a=r(44244),s=r(93890),u=r(19548),c=r(25254),f=r(89214),l=r(30654),h=r(81831),p=r(18057),y=r(6674),d=r(88821),v=r(4408),g=r(42317),b=r(14748),m=r(37058),w=r(98619),x=r(3196),k=r(45961),S=r(64714),_=r(34973),O=r(14776),E=r(51019).f,A=r(25599),P=r(87265).forEach,j=r(3348),T=r(55882),M=r(26337),R=r(77872),I=r(43023),C=r(2993),L=I.get,D=I.set,B=I.enforce,N=M.f,F=R.f,z=o.RangeError,U=c.ArrayBuffer,Y=U.prototype,G=c.DataView,H=u.NATIVE_ARRAY_BUFFER_VIEWS,W=u.TYPED_ARRAY_TAG,X=u.TypedArray,q=u.TypedArrayPrototype,V=u.aTypedArrayConstructor,Q=u.isTypedArray,K="BYTES_PER_ELEMENT",J="Wrong length",Z=function(t,e){V(t);for(var r=0,n=e.length,o=new t(n);n>r;)o[r]=e[r++];return o},$=function(t,e){T(t,e,{configurable:!0,get:function(){return L(this)[e]}})},tt=function(t){var e;return _(Y,t)||"ArrayBuffer"==(e=w(t))||"SharedArrayBuffer"==e},et=function(t,e){return Q(t)&&!k(e)&&e in t&&p(+e)&&e>=0},rt=function(t,e){return e=b(e),et(t,e)?l(2,t[e]):F(t,e)},nt=function(t,e,r){return e=b(e),!(et(t,e)&&x(r)&&m(r,"value"))||m(r,"get")||m(r,"set")||r.configurable||m(r,"writable")&&!r.writable||m(r,"enumerable")&&!r.enumerable?N(t,e,r):(t[e]=r.value,t)};a?(H||(R.f=rt,M.f=nt,$(q,"buffer"),$(q,"byteOffset"),$(q,"byteLength"),$(q,"length")),n({target:"Object",stat:!0,forced:!H},{getOwnPropertyDescriptor:rt,defineProperty:nt}),t.exports=function(t,e,r){var a=t.match(/\d+/)[0]/8,u=t+(r?"Clamped":"")+"Array",c="get"+t,l="set"+t,p=o[u],b=p,m=b&&b.prototype,w={},k=function(t,e){N(t,e,{get:function(){return function(t,e){var r=L(t);return r.view[c](e*a+r.byteOffset,!0)}(this,e)},set:function(t){return function(t,e,n){var o=L(t);o.view[l](e*a+o.byteOffset,r?g(n):n,!0)}(this,e,t)},enumerable:!0})};H?s&&(b=e((function(t,e,r,n){return f(t,m),C(x(e)?tt(e)?void 0!==n?new p(e,v(r,a),n):void 0!==r?new p(e,v(r,a)):new p(e):Q(e)?Z(b,e):i(A,b,e):new p(d(e)),t,b)})),O&&O(b,X),P(E(p),(function(t){t in b||h(b,t,p[t])})),b.prototype=m):(b=e((function(t,e,r,n){f(t,m);var o,s,u,c=0,l=0;if(x(e)){if(!tt(e))return Q(e)?Z(b,e):i(A,b,e);o=e,l=v(r,a);var h=e.byteLength;if(void 0===n){if(h%a)throw z(J);if((s=h-l)<0)throw z(J)}else if((s=y(n)*a)+l>h)throw z(J);u=s/a}else u=d(e),o=new U(s=u*a);for(D(t,{buffer:o,byteOffset:l,byteLength:s,length:u,view:new G(o)});c<u;)k(t,c++)})),O&&O(b,X),m=b.prototype=S(q)),m.constructor!==b&&h(m,"constructor",b),B(m).TypedArrayConstructor=b,W&&h(m,W,u);var _=b!=p;w[u]=b,n({global:!0,constructor:!0,forced:_,sham:!H},w),K in b||h(b,K,a),K in m||h(m,K,a),j(u)}):t.exports=function(){}},93890:(t,e,r)=>{"use strict";var n=r(54516),o=r(13894),i=r(36548),a=r(19548).NATIVE_ARRAY_BUFFER_VIEWS,s=n.ArrayBuffer,u=n.Int8Array;t.exports=!a||!o((function(){u(1)}))||!o((function(){new u(-1)}))||!i((function(t){new u,new u(null),new u(1.5),new u(t)}),!0)||o((function(){return 1!==new u(new s(2),1,void 0).length}))},35967:(t,e,r)=>{"use strict";var n=r(35040),o=r(62718);t.exports=function(t,e){return n(o(t),e)}},25599:(t,e,r)=>{"use strict";var n=r(29910),o=r(83264),i=r(52750),a=r(87706),s=r(43716),u=r(29946),c=r(1228),f=r(201),l=r(98074),h=r(19548).aTypedArrayConstructor,p=r(1490);t.exports=function(t){var e,r,y,d,v,g,b,m,w=i(this),x=a(t),k=arguments.length,S=k>1?arguments[1]:void 0,_=void 0!==S,O=c(x);if(O&&!f(O))for(m=(b=u(x,O)).next,x=[];!(g=o(m,b)).done;)x.push(g.value);for(_&&k>2&&(S=n(S,arguments[2])),r=s(x),y=new(h(w))(r),d=l(y),e=0;r>e;e++)v=_?S(x[e],e):x[e],y[e]=d?p(v):+v;return y}},62718:(t,e,r)=>{"use strict";var n=r(19548),o=r(72976),i=n.aTypedArrayConstructor,a=n.getTypedArrayConstructor;t.exports=function(t){return i(o(t,a(t)))}},67025:(t,e,r)=>{"use strict";var n=r(76277),o=0,i=Math.random(),a=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+a(++o+i,36)}},69650:(t,e,r)=>{"use strict";var n=r(13894),o=r(41398),i=r(44244),a=r(43310),s=o("iterator");t.exports=!n((function(){var t=new URL("b?a=1&b=2&c=3","http://a"),e=t.searchParams,r=new URLSearchParams("a=1&a=2&b=3"),n="";return t.pathname="c%20d",e.forEach((function(t,r){e.delete("b"),n+=r+t})),r.delete("a",2),r.delete("b",void 0),a&&(!t.toJSON||!r.has("a",1)||r.has("a",2)||!r.has("a",void 0)||r.has("b"))||!e.size&&(a||!i)||!e.sort||"http://a/c%20d?a=1&c=3"!==t.href||"3"!==e.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!e[s]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("http://тест").host||"#%D0%B1"!==new URL("http://a#б").hash||"a1c3"!==n||"x"!==new URL("http://x",void 0).host}))},88477:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=r(24550);t.exports=o&&!Symbol.sham&&"symbol"==n(Symbol.iterator)},29128:(t,e,r)=>{"use strict";var n=r(44244),o=r(13894);t.exports=n&&o((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},10645:t=>{"use strict";var e=TypeError;t.exports=function(t,r){if(t<r)throw e("Not enough arguments");return t}},82408:(t,e,r)=>{"use strict";var n=r(54516),o=r(34230),i=n.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},46619:(t,e,r)=>{"use strict";var n=r(1612),o=r(37058),i=r(30400),a=r(26337).f;t.exports=function(t){var e=n.Symbol||(n.Symbol={});o(e,t)||a(e,t,{value:i.f(t)})}},30400:(t,e,r)=>{"use strict";var n=r(41398);e.f=n},41398:(t,e,r)=>{"use strict";var n=r(54516),o=r(38365),i=r(37058),a=r(67025),s=r(24550),u=r(88477),c=n.Symbol,f=o("wks"),l=u?c.for||c:c&&c.withoutSetter||a;t.exports=function(t){return i(f,t)||(f[t]=s&&i(c,t)?c[t]:l("Symbol."+t)),f[t]}},79577:t=>{"use strict";t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},75294:(t,e,r)=>{"use strict";var n=r(12546),o=r(37058),i=r(81831),a=r(34973),s=r(14776),u=r(79129),c=r(60492),f=r(2993),l=r(91245),h=r(89804),p=r(93636),y=r(44244),d=r(43310);t.exports=function(t,e,r,v){var g="stackTraceLimit",b=v?2:1,m=t.split("."),w=m[m.length-1],x=n.apply(null,m);if(x){var k=x.prototype;if(!d&&o(k,"cause")&&delete k.cause,!r)return x;var S=n("Error"),_=e((function(t,e){var r=l(v?e:t,void 0),n=v?new x(t):new x;return void 0!==r&&i(n,"message",r),p(n,_,n.stack,2),this&&a(k,this)&&f(n,this,_),arguments.length>b&&h(n,arguments[b]),n}));if(_.prototype=k,"Error"!==w?s?s(_,S):u(_,S,{name:!0}):y&&g in x&&(c(_,x,g),c(_,x,"prepareStackTrace")),u(_,x),!d)try{k.name!==w&&i(k,"name",w),k.constructor=_}catch(t){}return _}}},95027:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(2090),a=r(13894),s=r(75294),u="AggregateError",c=o(u),f=!a((function(){return 1!==c([1]).errors[0]}))&&a((function(){return 7!==c([1],u,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:f},{AggregateError:s(u,(function(t){return function(e,r){return i(t,this,arguments)}}),f,!0)})},33426:(t,e,r)=>{"use strict";var n=r(57330),o=r(34973),i=r(40175),a=r(14776),s=r(79129),u=r(64714),c=r(81831),f=r(30654),l=r(89804),h=r(93636),p=r(29429),y=r(91245),d=r(41398)("toStringTag"),v=Error,g=[].push,b=function(t,e){var r,n=o(m,this);a?r=a(v(),n?i(this):m):(r=n?this:u(m),c(r,d,"Error")),void 0!==e&&c(r,"message",y(e)),h(r,b,r.stack,1),arguments.length>2&&l(r,arguments[2]);var s=[];return p(t,g,{that:s}),c(r,"errors",s),r};a?a(b,v):s(b,v,{name:!0});var m=b.prototype=u(v.prototype,{constructor:f(1,b),message:f(1,""),name:f(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:b})},52309:(t,e,r)=>{"use strict";r(33426)},47185:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(25254),a=r(3348),s="ArrayBuffer",u=i[s];n({global:!0,constructor:!0,forced:o[s]!==u},{ArrayBuffer:u}),a(s)},6765:(t,e,r)=>{"use strict";var n=r(57330),o=r(19548);n({target:"ArrayBuffer",stat:!0,forced:!o.NATIVE_ARRAY_BUFFER_VIEWS},{isView:o.isView})},86927:(t,e,r)=>{"use strict";var n=r(57330),o=r(15307),i=r(13894),a=r(25254),s=r(96302),u=r(59625),c=r(6674),f=r(72976),l=a.ArrayBuffer,h=a.DataView,p=h.prototype,y=o(l.prototype.slice),d=o(p.getUint8),v=o(p.setUint8);n({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:i((function(){return!new l(2).slice(1,void 0).byteLength}))},{slice:function(t,e){if(y&&void 0===e)return y(s(this),t);for(var r=s(this).byteLength,n=u(t,r),o=u(void 0===e?r:e,r),i=new(f(this,l))(c(o-n)),a=new h(this),p=new h(i),g=0;n<o;)v(p,g++,d(a,n++));return i}})},78667:(t,e,r)=>{"use strict";var n=r(57330),o=r(87706),i=r(43716),a=r(35206),s=r(86278);n({target:"Array",proto:!0},{at:function(t){var e=o(this),r=i(e),n=a(t),s=n>=0?n:r+n;return s<0||s>=r?void 0:e[s]}}),s("at")},55549:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(85588),a=r(3196),s=r(87706),u=r(43716),c=r(97614),f=r(80955),l=r(29400),h=r(1309),p=r(41398),y=r(49229),d=p("isConcatSpreadable"),v=y>=51||!o((function(){var t=[];return t[d]=!1,t.concat()[0]!==t})),g=function(t){if(!a(t))return!1;var e=t[d];return void 0!==e?!!e:i(t)};n({target:"Array",proto:!0,arity:1,forced:!v||!h("concat")},{concat:function(t){var e,r,n,o,i,a=s(this),h=l(a,0),p=0;for(e=-1,n=arguments.length;e<n;e++)if(g(i=-1===e?a:arguments[e]))for(o=u(i),c(p+o),r=0;r<o;r++,p++)r in i&&f(h,p,i[r]);else c(p+1),f(h,p++,i);return h.length=p,h}})},12042:(t,e,r)=>{"use strict";var n=r(57330),o=r(92316),i=r(86278);n({target:"Array",proto:!0},{copyWithin:o}),i("copyWithin")},70079:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).every;n({target:"Array",proto:!0,forced:!r(39904)("every")},{every:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},69979:(t,e,r)=>{"use strict";var n=r(57330),o=r(47774),i=r(86278);n({target:"Array",proto:!0},{fill:o}),i("fill")},91910:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).filter;n({target:"Array",proto:!0,forced:!r(1309)("filter")},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},52947:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).findIndex,i=r(86278),a="findIndex",s=!0;a in[]&&Array(1)[a]((function(){s=!1})),n({target:"Array",proto:!0,forced:s},{findIndex:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i(a)},85784:(t,e,r)=>{"use strict";var n=r(57330),o=r(80728).findLastIndex,i=r(86278);n({target:"Array",proto:!0},{findLastIndex:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("findLastIndex")},41721:(t,e,r)=>{"use strict";var n=r(57330),o=r(80728).findLast,i=r(86278);n({target:"Array",proto:!0},{findLast:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i("findLast")},42426:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).find,i=r(86278),a="find",s=!0;a in[]&&Array(1)[a]((function(){s=!1})),n({target:"Array",proto:!0,forced:s},{find:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i(a)},67352:(t,e,r)=>{"use strict";var n=r(57330),o=r(25790),i=r(88965),a=r(87706),s=r(43716),u=r(29400);n({target:"Array",proto:!0},{flatMap:function(t){var e,r=a(this),n=s(r);return i(t),(e=u(r,0)).length=o(e,r,r,n,0,1,t,arguments.length>1?arguments[1]:void 0),e}})},17620:(t,e,r)=>{"use strict";var n=r(57330),o=r(25790),i=r(87706),a=r(43716),s=r(35206),u=r(29400);n({target:"Array",proto:!0},{flat:function(){var t=arguments.length?arguments[0]:void 0,e=i(this),r=a(e),n=u(e,0);return n.length=o(n,e,e,r,0,void 0===t?1:s(t)),n}})},4293:(t,e,r)=>{"use strict";var n=r(57330),o=r(39682);n({target:"Array",proto:!0,forced:[].forEach!=o},{forEach:o})},30281:(t,e,r)=>{"use strict";var n=r(57330),o=r(11956);n({target:"Array",stat:!0,forced:!r(36548)((function(t){Array.from(t)}))},{from:o})},23949:(t,e,r)=>{"use strict";var n=r(57330),o=r(60452).includes,i=r(13894),a=r(86278);n({target:"Array",proto:!0,forced:i((function(){return!Array(1).includes()}))},{includes:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),a("includes")},35963:(t,e,r)=>{"use strict";var n=r(57330),o=r(15307),i=r(60452).indexOf,a=r(39904),s=o([].indexOf),u=!!s&&1/s([1],1,-0)<0;n({target:"Array",proto:!0,forced:u||!a("indexOf")},{indexOf:function(t){var e=arguments.length>1?arguments[1]:void 0;return u?s(this,t,e)||0:i(this,t,e)}})},8851:(t,e,r)=>{"use strict";r(57330)({target:"Array",stat:!0},{isArray:r(85588)})},24133:(t,e,r)=>{"use strict";var n=r(54721),o=r(86278),i=r(53415),a=r(43023),s=r(26337).f,u=r(99825),c=r(38351),f=r(43310),l=r(44244),h="Array Iterator",p=a.set,y=a.getterFor(h);t.exports=u(Array,"Array",(function(t,e){p(this,{type:h,target:n(t),index:0,kind:e})}),(function(){var t=y(this),e=t.target,r=t.kind,n=t.index++;return!e||n>=e.length?(t.target=void 0,c(void 0,!0)):c("keys"==r?n:"values"==r?e[n]:[n,e[n]],!1)}),"values");var d=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!f&&l&&"values"!==d.name)try{s(d,"name",{value:"values"})}catch(t){}},33448:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(94015),a=r(54721),s=r(39904),u=o([].join);n({target:"Array",proto:!0,forced:i!=Object||!s("join",",")},{join:function(t){return u(a(this),void 0===t?",":t)}})},7311:(t,e,r)=>{"use strict";var n=r(57330),o=r(85773);n({target:"Array",proto:!0,forced:o!==[].lastIndexOf},{lastIndexOf:o})},16798:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).map;n({target:"Array",proto:!0,forced:!r(1309)("map")},{map:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},21145:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(53924),a=r(80955),s=Array;n({target:"Array",stat:!0,forced:o((function(){function t(){}return!(s.of.call(t)instanceof t)}))},{of:function(){for(var t=0,e=arguments.length,r=new(i(this)?this:s)(e);e>t;)a(r,t,arguments[t++]);return r.length=e,r}})},87152:(t,e,r)=>{"use strict";var n=r(57330),o=r(87706),i=r(43716),a=r(60797),s=r(97614);n({target:"Array",proto:!0,arity:1,forced:r(13894)((function(){return 4294967297!==[].push.call({length:4294967296},1)}))||!function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(t){return t instanceof TypeError}}()},{push:function(t){var e=o(this),r=i(e),n=arguments.length;s(r+n);for(var u=0;u<n;u++)e[r]=arguments[u],r++;return a(e,r),r}})},15618:(t,e,r)=>{"use strict";var n=r(57330),o=r(73333).right,i=r(39904),a=r(49229);n({target:"Array",proto:!0,forced:!r(63241)&&a>79&&a<83||!i("reduceRight")},{reduceRight:function(t){return o(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}})},9253:(t,e,r)=>{"use strict";var n=r(57330),o=r(73333).left,i=r(39904),a=r(49229);n({target:"Array",proto:!0,forced:!r(63241)&&a>79&&a<83||!i("reduce")},{reduce:function(t){var e=arguments.length;return o(this,t,e,e>1?arguments[1]:void 0)}})},81364:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(85588),a=o([].reverse),s=[1,2];n({target:"Array",proto:!0,forced:String(s)===String(s.reverse())},{reverse:function(){return i(this)&&(this.length=this.length),a(this)}})},55635:(t,e,r)=>{"use strict";var n=r(57330),o=r(85588),i=r(53924),a=r(3196),s=r(59625),u=r(43716),c=r(54721),f=r(80955),l=r(41398),h=r(1309),p=r(52999),y=h("slice"),d=l("species"),v=Array,g=Math.max;n({target:"Array",proto:!0,forced:!y},{slice:function(t,e){var r,n,l,h=c(this),y=u(h),b=s(t,y),m=s(void 0===e?y:e,y);if(o(h)&&(r=h.constructor,(i(r)&&(r===v||o(r.prototype))||a(r)&&null===(r=r[d]))&&(r=void 0),r===v||void 0===r))return p(h,b,m);for(n=new(void 0===r?v:r)(g(m-b,0)),l=0;b<m;b++,l++)b in h&&f(n,l,h[b]);return n.length=l,n}})},92550:(t,e,r)=>{"use strict";var n=r(57330),o=r(87265).some;n({target:"Array",proto:!0,forced:!r(39904)("some")},{some:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},16087:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(88965),a=r(87706),s=r(43716),u=r(8713),c=r(18971),f=r(13894),l=r(53347),h=r(39904),p=r(50419),y=r(72693),d=r(49229),v=r(90602),g=[],b=o(g.sort),m=o(g.push),w=f((function(){g.sort(void 0)})),x=f((function(){g.sort(null)})),k=h("sort"),S=!f((function(){if(d)return d<70;if(!(p&&p>3)){if(y)return!0;if(v)return v<603;var t,e,r,n,o="";for(t=65;t<76;t++){switch(e=String.fromCharCode(t),t){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(n=0;n<47;n++)g.push({k:e+n,v:r})}for(g.sort((function(t,e){return e.v-t.v})),n=0;n<g.length;n++)e=g[n].k.charAt(0),o.charAt(o.length-1)!==e&&(o+=e);return"DGBEFHACIJK"!==o}}));n({target:"Array",proto:!0,forced:w||!x||!k||!S},{sort:function(t){void 0!==t&&i(t);var e=a(this);if(S)return void 0===t?b(e):b(e,t);var r,n,o=[],f=s(e);for(n=0;n<f;n++)n in e&&m(o,e[n]);for(l(o,function(t){return function(e,r){return void 0===r?-1:void 0===e?1:void 0!==t?+t(e,r)||0:c(e)>c(r)?1:-1}}(t)),r=s(o),n=0;n<r;)e[n]=o[n++];for(;n<f;)u(e,n++);return e}})},26568:(t,e,r)=>{"use strict";r(3348)("Array")},14747:(t,e,r)=>{"use strict";var n=r(57330),o=r(87706),i=r(59625),a=r(35206),s=r(43716),u=r(60797),c=r(97614),f=r(29400),l=r(80955),h=r(8713),p=r(1309)("splice"),y=Math.max,d=Math.min;n({target:"Array",proto:!0,forced:!p},{splice:function(t,e){var r,n,p,v,g,b,m=o(this),w=s(m),x=i(t,w),k=arguments.length;for(0===k?r=n=0:1===k?(r=0,n=w-x):(r=k-2,n=d(y(a(e),0),w-x)),c(w+r-n),p=f(m,n),v=0;v<n;v++)(g=x+v)in m&&l(p,v,m[g]);if(p.length=n,r<n){for(v=x;v<w-n;v++)b=v+r,(g=v+n)in m?m[b]=m[g]:h(m,b);for(v=w;v>w-n+r;v--)h(m,v-1)}else if(r>n)for(v=w-n;v>x;v--)b=v+r-1,(g=v+n-1)in m?m[b]=m[g]:h(m,b);for(v=0;v<r;v++)m[v+x]=arguments[v+2];return u(m,w-n+r),p}})},58242:(t,e,r)=>{"use strict";var n=r(57330),o=r(13729),i=r(54721),a=r(86278),s=Array;n({target:"Array",proto:!0},{toReversed:function(){return o(i(this),s)}}),a("toReversed")},43247:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(88965),a=r(54721),s=r(35040),u=r(38117),c=r(86278),f=Array,l=o(u("Array").sort);n({target:"Array",proto:!0},{toSorted:function(t){void 0!==t&&i(t);var e=a(this),r=s(f,e);return l(r,t)}}),c("toSorted")},34830:(t,e,r)=>{"use strict";var n=r(57330),o=r(86278),i=r(97614),a=r(43716),s=r(59625),u=r(54721),c=r(35206),f=Array,l=Math.max,h=Math.min;n({target:"Array",proto:!0},{toSpliced:function(t,e){var r,n,o,p,y=u(this),d=a(y),v=s(t,d),g=arguments.length,b=0;for(0===g?r=n=0:1===g?(r=0,n=d-v):(r=g-2,n=h(l(c(e),0),d-v)),o=i(d+r-n),p=f(o);b<v;b++)p[b]=y[b];for(;b<v+r;b++)p[b]=arguments[b-v+2];for(;b<o;b++)p[b]=y[b+n-r];return p}}),o("toSpliced")},16021:(t,e,r)=>{"use strict";r(86278)("flatMap")},5162:(t,e,r)=>{"use strict";r(86278)("flat")},22767:(t,e,r)=>{"use strict";var n=r(57330),o=r(87706),i=r(43716),a=r(60797),s=r(8713),u=r(97614);n({target:"Array",proto:!0,arity:1,forced:1!==[].unshift(0)||!function(){try{Object.defineProperty([],"length",{writable:!1}).unshift()}catch(t){return t instanceof TypeError}}()},{unshift:function(t){var e=o(this),r=i(e),n=arguments.length;if(n){u(r+n);for(var c=r;c--;){var f=c+n;c in e?e[f]=e[c]:s(e,f)}for(var l=0;l<n;l++)e[l]=arguments[l]}return a(e,r+n)}})},23087:(t,e,r)=>{"use strict";var n=r(57330),o=r(33547),i=r(54721),a=Array;n({target:"Array",proto:!0},{with:function(t,e){return o(i(this),a,t,e)}})},25525:(t,e,r)=>{"use strict";var n=r(57330),o=r(25254);n({global:!0,constructor:!0,forced:!r(63956)},{DataView:o.DataView})},43542:(t,e,r)=>{"use strict";r(25525)},20623:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(13894)((function(){return 120!==new Date(16e11).getYear()})),a=o(Date.prototype.getFullYear);n({target:"Date",proto:!0,forced:i},{getYear:function(){return a(this)-1900}})},22074:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=Date,a=o(i.prototype.getTime);n({target:"Date",stat:!0},{now:function(){return a(new i)}})},44837:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(35206),a=Date.prototype,s=o(a.getTime),u=o(a.setFullYear);n({target:"Date",proto:!0},{setYear:function(t){s(this);var e=i(t);return u(this,0<=e&&e<=99?e+1900:e)}})},36688:(t,e,r)=>{"use strict";r(57330)({target:"Date",proto:!0},{toGMTString:Date.prototype.toUTCString})},45938:(t,e,r)=>{"use strict";var n=r(57330),o=r(85833);n({target:"Date",proto:!0,forced:Date.prototype.toISOString!==o},{toISOString:o})},75640:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(87706),a=r(69155);n({target:"Date",proto:!0,arity:1,forced:o((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}))},{toJSON:function(t){var e=i(this),r=a(e,"number");return"number"!=typeof r||isFinite(r)?e.toISOString():null}})},98665:(t,e,r)=>{"use strict";var n=r(37058),o=r(89592),i=r(72473),a=r(41398)("toPrimitive"),s=Date.prototype;n(s,a)||o(s,a,i)},72003:(t,e,r)=>{"use strict";var n=r(76277),o=r(89592),i=Date.prototype,a="Invalid Date",s="toString",u=n(i[s]),c=n(i.getTime);String(new Date(NaN))!=a&&o(i,s,(function(){var t=c(this);return t==t?u(this):a}))},19337:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(2090),a=r(75294),s="WebAssembly",u=o[s],c=7!==Error("e",{cause:7}).cause,f=function(t,e){var r={};r[t]=a(t,e,c),n({global:!0,constructor:!0,arity:1,forced:c},r)},l=function(t,e){if(u&&u[t]){var r={};r[t]=a(s+"."+t,e,c),n({target:s,stat:!0,constructor:!0,arity:1,forced:c},r)}};f("Error",(function(t){return function(e){return i(t,this,arguments)}})),f("EvalError",(function(t){return function(e){return i(t,this,arguments)}})),f("RangeError",(function(t){return function(e){return i(t,this,arguments)}})),f("ReferenceError",(function(t){return function(e){return i(t,this,arguments)}})),f("SyntaxError",(function(t){return function(e){return i(t,this,arguments)}})),f("TypeError",(function(t){return function(e){return i(t,this,arguments)}})),f("URIError",(function(t){return function(e){return i(t,this,arguments)}})),l("CompileError",(function(t){return function(e){return i(t,this,arguments)}})),l("LinkError",(function(t){return function(e){return i(t,this,arguments)}})),l("RuntimeError",(function(t){return function(e){return i(t,this,arguments)}}))},141:(t,e,r)=>{"use strict";var n=r(89592),o=r(34019),i=Error.prototype;i.toString!==o&&n(i,"toString",o)},15034:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(18971),a=o("".charAt),s=o("".charCodeAt),u=o(/./.exec),c=o(1..toString),f=o("".toUpperCase),l=/[\w*+\-./@]/,h=function(t,e){for(var r=c(t,16);r.length<e;)r="0"+r;return r};n({global:!0},{escape:function(t){for(var e,r,n=i(t),o="",c=n.length,p=0;p<c;)e=a(n,p++),u(l,e)?o+=e:o+=(r=s(e,0))<256?"%"+h(r,2):"%u"+f(h(r,4));return o}})},47125:(t,e,r)=>{"use strict";var n=r(57330),o=r(80944);n({target:"Function",proto:!0,forced:Function.bind!==o},{bind:o})},75004:(t,e,r)=>{"use strict";var n=r(34230),o=r(3196),i=r(26337),a=r(40175),s=r(41398),u=r(74743),c=s("hasInstance"),f=Function.prototype;c in f||i.f(f,c,{value:u((function(t){if(!n(this)||!o(t))return!1;var e=this.prototype;if(!o(e))return t instanceof this;for(;t=a(t);)if(e===t)return!0;return!1}),c)})},68825:(t,e,r)=>{"use strict";var n=r(44244),o=r(33385).EXISTS,i=r(76277),a=r(55882),s=Function.prototype,u=i(s.toString),c=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,f=i(c.exec);n&&!o&&a(s,"name",{configurable:!0,get:function(){try{return f(c,u(this))[1]}catch(t){return""}}})},78026:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516);n({global:!0,forced:o.globalThis!==o},{globalThis:o})},83761:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(2090),a=r(83264),s=r(76277),u=r(13894),c=r(34230),f=r(45961),l=r(52999),h=r(10042),p=r(24550),y=String,d=o("JSON","stringify"),v=s(/./.exec),g=s("".charAt),b=s("".charCodeAt),m=s("".replace),w=s(1..toString),x=/[\uD800-\uDFFF]/g,k=/^[\uD800-\uDBFF]$/,S=/^[\uDC00-\uDFFF]$/,_=!p||u((function(){var t=o("Symbol")();return"[null]"!=d([t])||"{}"!=d({a:t})||"{}"!=d(Object(t))})),O=u((function(){return'"\\udf06\\ud834"'!==d("\udf06\ud834")||'"\\udead"'!==d("\udead")})),E=function(t,e){var r=l(arguments),n=h(e);if(c(n)||void 0!==t&&!f(t))return r[1]=function(t,e){if(c(n)&&(e=a(n,this,y(t),e)),!f(e))return e},i(d,null,r)},A=function(t,e,r){var n=g(r,e-1),o=g(r,e+1);return v(k,t)&&!v(S,o)||v(S,t)&&!v(k,n)?"\\u"+w(b(t,0),16):t};d&&n({target:"JSON",stat:!0,arity:3,forced:_||O},{stringify:function(t,e,r){var n=l(arguments),o=i(_?E:d,null,n);return O&&"string"==typeof o?m(o,x,A):o}})},5582:(t,e,r)=>{"use strict";var n=r(54516);r(81018)(n.JSON,"JSON",!0)},69890:(t,e,r)=>{"use strict";r(48756)("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(78704))},48499:(t,e,r)=>{"use strict";r(69890)},80989:(t,e,r)=>{"use strict";var n=r(57330),o=r(43611),i=Math.acosh,a=Math.log,s=Math.sqrt,u=Math.LN2;n({target:"Math",stat:!0,forced:!i||710!=Math.floor(i(Number.MAX_VALUE))||i(1/0)!=1/0},{acosh:function(t){var e=+t;return e<1?NaN:e>94906265.62425156?a(e)+u:o(e-1+s(e-1)*s(e+1))}})},53733:(t,e,r)=>{"use strict";var n=r(57330),o=Math.asinh,i=Math.log,a=Math.sqrt;n({target:"Math",stat:!0,forced:!(o&&1/o(0)>0)},{asinh:function t(e){var r=+e;return isFinite(r)&&0!=r?r<0?-t(-r):i(r+a(r*r+1)):r}})},68747:(t,e,r)=>{"use strict";var n=r(57330),o=Math.atanh,i=Math.log;n({target:"Math",stat:!0,forced:!(o&&1/o(-0)<0)},{atanh:function(t){var e=+t;return 0==e?e:i((1+e)/(1-e))/2}})},92098:(t,e,r)=>{"use strict";var n=r(57330),o=r(54059),i=Math.abs,a=Math.pow;n({target:"Math",stat:!0},{cbrt:function(t){var e=+t;return o(e)*a(i(e),1/3)}})},73694:(t,e,r)=>{"use strict";var n=r(57330),o=Math.floor,i=Math.log,a=Math.LOG2E;n({target:"Math",stat:!0},{clz32:function(t){var e=t>>>0;return e?31-o(i(e+.5)*a):32}})},15975:(t,e,r)=>{"use strict";var n=r(57330),o=r(45446),i=Math.cosh,a=Math.abs,s=Math.E;n({target:"Math",stat:!0,forced:!i||i(710)===1/0},{cosh:function(t){var e=o(a(t)-1)+1;return(e+1/(e*s*s))*(s/2)}})},43797:(t,e,r)=>{"use strict";var n=r(57330),o=r(45446);n({target:"Math",stat:!0,forced:o!=Math.expm1},{expm1:o})},39286:(t,e,r)=>{"use strict";r(57330)({target:"Math",stat:!0},{fround:r(49281)})},56791:(t,e,r)=>{"use strict";var n=r(57330),o=Math.hypot,i=Math.abs,a=Math.sqrt;n({target:"Math",stat:!0,arity:2,forced:!!o&&o(1/0,NaN)!==1/0},{hypot:function(t,e){for(var r,n,o=0,s=0,u=arguments.length,c=0;s<u;)c<(r=i(arguments[s++]))?(o=o*(n=c/r)*n+1,c=r):o+=r>0?(n=r/c)*n:r;return c===1/0?1/0:c*a(o)}})},73992:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=Math.imul;n({target:"Math",stat:!0,forced:o((function(){return-5!=i(4294967295,5)||2!=i.length}))},{imul:function(t,e){var r=65535,n=+t,o=+e,i=r&n,a=r&o;return 0|i*a+((r&n>>>16)*a+i*(r&o>>>16)<<16>>>0)}})},28161:(t,e,r)=>{"use strict";r(57330)({target:"Math",stat:!0},{log10:r(36200)})},30368:(t,e,r)=>{"use strict";r(57330)({target:"Math",stat:!0},{log1p:r(43611)})},63358:(t,e,r)=>{"use strict";var n=r(57330),o=Math.log,i=Math.LN2;n({target:"Math",stat:!0},{log2:function(t){return o(t)/i}})},80900:(t,e,r)=>{"use strict";r(57330)({target:"Math",stat:!0},{sign:r(54059)})},85765:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(45446),a=Math.abs,s=Math.exp,u=Math.E;n({target:"Math",stat:!0,forced:o((function(){return-2e-17!=Math.sinh(-2e-17)}))},{sinh:function(t){var e=+t;return a(e)<1?(i(e)-i(-e))/2:(s(e-1)-s(-e-1))*(u/2)}})},39680:(t,e,r)=>{"use strict";var n=r(57330),o=r(45446),i=Math.exp;n({target:"Math",stat:!0},{tanh:function(t){var e=+t,r=o(e),n=o(-e);return r==1/0?1:n==1/0?-1:(r-n)/(i(e)+i(-e))}})},4141:(t,e,r)=>{"use strict";r(81018)(Math,"Math",!0)},60765:(t,e,r)=>{"use strict";r(57330)({target:"Math",stat:!0},{trunc:r(78066)})},66586:(t,e,r)=>{"use strict";var n=r(57330),o=r(43310),i=r(44244),a=r(54516),s=r(1612),u=r(76277),c=r(82615),f=r(37058),l=r(2993),h=r(34973),p=r(45961),y=r(69155),d=r(13894),v=r(51019).f,g=r(77872).f,b=r(26337).f,m=r(71047),w=r(23688).trim,x="Number",k=a[x],S=s[x],_=k.prototype,O=a.TypeError,E=u("".slice),A=u("".charCodeAt),P=c(x,!k(" 0o1")||!k("0b1")||k("+0x1")),j=function(t){var e,r=arguments.length<1?0:k(function(t){var e=y(t,"number");return"bigint"==typeof e?e:function(t){var e,r,n,o,i,a,s,u,c=y(t,"number");if(p(c))throw O("Cannot convert a Symbol value to a number");if("string"==typeof c&&c.length>2)if(c=w(c),43===(e=A(c,0))||45===e){if(88===(r=A(c,2))||120===r)return NaN}else if(48===e){switch(A(c,1)){case 66:case 98:n=2,o=49;break;case 79:case 111:n=8,o=55;break;default:return+c}for(a=(i=E(c,2)).length,s=0;s<a;s++)if((u=A(i,s))<48||u>o)return NaN;return parseInt(i,n)}return+c}(e)}(t));return h(_,e=this)&&d((function(){m(e)}))?l(Object(r),this,j):r};j.prototype=_,P&&!o&&(_.constructor=j),n({global:!0,constructor:!0,wrap:!0,forced:P},{Number:j});var T=function(t,e){for(var r,n=i?v(e):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),o=0;n.length>o;o++)f(e,r=n[o])&&!f(t,r)&&b(t,r,g(e,r))};o&&S&&T(s[x],S),(P||o)&&T(s[x],k)},5225:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:Math.pow(2,-52)})},52497:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0},{isFinite:r(23034)})},28582:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0},{isInteger:r(18057)})},53470:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0},{isNaN:function(t){return t!=t}})},42675:(t,e,r)=>{"use strict";var n=r(57330),o=r(18057),i=Math.abs;n({target:"Number",stat:!0},{isSafeInteger:function(t){return o(t)&&i(t)<=9007199254740991}})},31035:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:9007199254740991})},39192:(t,e,r)=>{"use strict";r(57330)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-9007199254740991})},68760:(t,e,r)=>{"use strict";var n=r(57330),o=r(29818);n({target:"Number",stat:!0,forced:Number.parseFloat!=o},{parseFloat:o})},92833:(t,e,r)=>{"use strict";var n=r(57330),o=r(20361);n({target:"Number",stat:!0,forced:Number.parseInt!=o},{parseInt:o})},11936:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(35206),a=r(71047),s=r(23295),u=r(36200),c=r(13894),f=RangeError,l=String,h=isFinite,p=Math.abs,y=Math.floor,d=Math.pow,v=Math.round,g=o(1..toExponential),b=o(s),m=o("".slice),w="-6.9000e-11"===g(-69e-12,4)&&"1.25e+0"===g(1.255,2)&&"1.235e+4"===g(12345,3)&&"3e+1"===g(25,0);n({target:"Number",proto:!0,forced:!w||!(c((function(){g(1,1/0)}))&&c((function(){g(1,-1/0)})))||!!c((function(){g(1/0,1/0),g(NaN,1/0)}))},{toExponential:function(t){var e=a(this);if(void 0===t)return g(e);var r=i(t);if(!h(e))return String(e);if(r<0||r>20)throw f("Incorrect fraction digits");if(w)return g(e,r);var n="",o="",s=0,c="",x="";if(e<0&&(n="-",e=-e),0===e)s=0,o=b("0",r+1);else{var k=u(e);s=y(k);var S=0,_=d(10,s-r);2*e>=(2*(S=v(e/_))+1)*_&&(S+=1),S>=d(10,r+1)&&(S/=10,s+=1),o=l(S)}return 0!==r&&(o=m(o,0,1)+"."+m(o,1)),0===s?(c="+",x="0"):(c=s>0?"+":"-",x=l(p(s))),n+(o+"e")+c+x}})},51246:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(35206),a=r(71047),s=r(23295),u=r(13894),c=RangeError,f=String,l=Math.floor,h=o(s),p=o("".slice),y=o(1..toFixed),d=function t(e,r,n){return 0===r?n:r%2==1?t(e,r-1,n*e):t(e*e,r/2,n)},v=function(t,e,r){for(var n=-1,o=r;++n<6;)o+=e*t[n],t[n]=o%1e7,o=l(o/1e7)},g=function(t,e){for(var r=6,n=0;--r>=0;)n+=t[r],t[r]=l(n/e),n=n%e*1e7},b=function(t){for(var e=6,r="";--e>=0;)if(""!==r||0===e||0!==t[e]){var n=f(t[e]);r=""===r?n:r+h("0",7-n.length)+n}return r};n({target:"Number",proto:!0,forced:u((function(){return"0.000"!==y(8e-5,3)||"1"!==y(.9,0)||"1.25"!==y(1.255,2)||"1000000000000000128"!==y(0xde0b6b3a7640080,0)}))||!u((function(){y({})}))},{toFixed:function(t){var e,r,n,o,s=a(this),u=i(t),l=[0,0,0,0,0,0],y="",m="0";if(u<0||u>20)throw c("Incorrect fraction digits");if(s!=s)return"NaN";if(s<=-1e21||s>=1e21)return f(s);if(s<0&&(y="-",s=-s),s>1e-21)if(r=(e=function(t){for(var e=0,r=t;r>=4096;)e+=12,r/=4096;for(;r>=2;)e+=1,r/=2;return e}(s*d(2,69,1))-69)<0?s*d(2,-e,1):s/d(2,e,1),r*=4503599627370496,(e=52-e)>0){for(v(l,0,r),n=u;n>=7;)v(l,1e7,0),n-=7;for(v(l,d(10,n,1),0),n=e-1;n>=23;)g(l,1<<23),n-=23;g(l,1<<n),v(l,1,1),g(l,2),m=b(l)}else v(l,0,r),v(l,1<<-e,0),m=b(l)+h("0",u);return u>0?y+((o=m.length)<=u?"0."+h("0",u-o)+m:p(m,0,o-u)+"."+p(m,o-u)):y+m}})},38778:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(13894),a=r(71047),s=o(1..toPrecision);n({target:"Number",proto:!0,forced:i((function(){return"1"!==s(1,void 0)}))||!i((function(){s({})}))},{toPrecision:function(t){return void 0===t?s(a(this)):s(a(this),t)}})},41450:(t,e,r)=>{"use strict";var n=r(57330),o=r(70168);n({target:"Object",stat:!0,arity:2,forced:Object.assign!==o},{assign:o})},90742:(t,e,r)=>{"use strict";r(57330)({target:"Object",stat:!0,sham:!r(44244)},{create:r(64714)})},63621:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(54046),a=r(88965),s=r(87706),u=r(26337);o&&n({target:"Object",proto:!0,forced:i},{__defineGetter__:function(t,e){u.f(s(this),t,{get:a(e),enumerable:!0,configurable:!0})}})},21741:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(68068).f;n({target:"Object",stat:!0,forced:Object.defineProperties!==i,sham:!o},{defineProperties:i})},52746:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(26337).f;n({target:"Object",stat:!0,forced:Object.defineProperty!==i,sham:!o},{defineProperty:i})},51834:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(54046),a=r(88965),s=r(87706),u=r(26337);o&&n({target:"Object",proto:!0,forced:i},{__defineSetter__:function(t,e){u.f(s(this),t,{set:a(e),enumerable:!0,configurable:!0})}})},71243:(t,e,r)=>{"use strict";var n=r(57330),o=r(19602).entries;n({target:"Object",stat:!0},{entries:function(t){return o(t)}})},82802:(t,e,r)=>{"use strict";var n=r(57330),o=r(46151),i=r(13894),a=r(3196),s=r(8420).onFreeze,u=Object.freeze;n({target:"Object",stat:!0,forced:i((function(){u(1)})),sham:!o},{freeze:function(t){return u&&a(t)?u(s(t)):t}})},71881:(t,e,r)=>{"use strict";var n=r(57330),o=r(29429),i=r(80955);n({target:"Object",stat:!0},{fromEntries:function(t){var e={};return o(t,(function(t,r){i(e,t,r)}),{AS_ENTRIES:!0}),e}})},16146:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(54721),a=r(77872).f,s=r(44244);n({target:"Object",stat:!0,forced:!s||o((function(){a(1)})),sham:!s},{getOwnPropertyDescriptor:function(t,e){return a(i(t),e)}})},89960:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(16660),a=r(54721),s=r(77872),u=r(80955);n({target:"Object",stat:!0,sham:!o},{getOwnPropertyDescriptors:function(t){for(var e,r,n=a(t),o=s.f,c=i(n),f={},l=0;c.length>l;)void 0!==(r=o(n,e=c[l++]))&&u(f,e,r);return f}})},13694:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(53990).f;n({target:"Object",stat:!0,forced:o((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:i})},40520:(t,e,r)=>{"use strict";var n=r(57330),o=r(24550),i=r(13894),a=r(78586),s=r(87706);n({target:"Object",stat:!0,forced:!o||i((function(){a.f(1)}))},{getOwnPropertySymbols:function(t){var e=a.f;return e?e(s(t)):[]}})},46748:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(87706),a=r(40175),s=r(66336);n({target:"Object",stat:!0,forced:o((function(){a(1)})),sham:!s},{getPrototypeOf:function(t){return a(i(t))}})},9389:(t,e,r)=>{"use strict";r(57330)({target:"Object",stat:!0},{hasOwn:r(37058)})},93406:(t,e,r)=>{"use strict";var n=r(57330),o=r(54284);n({target:"Object",stat:!0,forced:Object.isExtensible!==o},{isExtensible:o})},44292:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(3196),a=r(31030),s=r(47698),u=Object.isFrozen;n({target:"Object",stat:!0,forced:s||o((function(){u(1)}))},{isFrozen:function(t){return!i(t)||!(!s||"ArrayBuffer"!=a(t))||!!u&&u(t)}})},57285:(t,e,r)=>{"use strict";var n=r(57330),o=r(13894),i=r(3196),a=r(31030),s=r(47698),u=Object.isSealed;n({target:"Object",stat:!0,forced:s||o((function(){u(1)}))},{isSealed:function(t){return!i(t)||!(!s||"ArrayBuffer"!=a(t))||!!u&&u(t)}})},94482:(t,e,r)=>{"use strict";r(57330)({target:"Object",stat:!0},{is:r(79094)})},23484:(t,e,r)=>{"use strict";var n=r(57330),o=r(87706),i=r(68201);n({target:"Object",stat:!0,forced:r(13894)((function(){i(1)}))},{keys:function(t){return i(o(t))}})},35643:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(54046),a=r(87706),s=r(14748),u=r(40175),c=r(77872).f;o&&n({target:"Object",proto:!0,forced:i},{__lookupGetter__:function(t){var e,r=a(this),n=s(t);do{if(e=c(r,n))return e.get}while(r=u(r))}})},13148:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(54046),a=r(87706),s=r(14748),u=r(40175),c=r(77872).f;o&&n({target:"Object",proto:!0,forced:i},{__lookupSetter__:function(t){var e,r=a(this),n=s(t);do{if(e=c(r,n))return e.set}while(r=u(r))}})},93219:(t,e,r)=>{"use strict";var n=r(57330),o=r(3196),i=r(8420).onFreeze,a=r(46151),s=r(13894),u=Object.preventExtensions;n({target:"Object",stat:!0,forced:s((function(){u(1)})),sham:!a},{preventExtensions:function(t){return u&&o(t)?u(i(t)):t}})},49337:(t,e,r)=>{"use strict";var n=r(44244),o=r(55882),i=r(3196),a=r(87706),s=r(72191),u=Object.getPrototypeOf,c=Object.setPrototypeOf,f=Object.prototype,l="__proto__";if(n&&u&&c&&!(l in f))try{o(f,l,{configurable:!0,get:function(){return u(a(this))},set:function(t){var e=s(this);(i(t)||null===t)&&i(e)&&c(e,t)}})}catch(t){}},31079:(t,e,r)=>{"use strict";var n=r(57330),o=r(3196),i=r(8420).onFreeze,a=r(46151),s=r(13894),u=Object.seal;n({target:"Object",stat:!0,forced:s((function(){u(1)})),sham:!a},{seal:function(t){return u&&o(t)?u(i(t)):t}})},30419:(t,e,r)=>{"use strict";r(57330)({target:"Object",stat:!0},{setPrototypeOf:r(14776)})},69376:(t,e,r)=>{"use strict";var n=r(47775),o=r(89592),i=r(5719);n||o(Object.prototype,"toString",i,{unsafe:!0})},86242:(t,e,r)=>{"use strict";var n=r(57330),o=r(19602).values;n({target:"Object",stat:!0},{values:function(t){return o(t)}})},43161:(t,e,r)=>{"use strict";var n=r(57330),o=r(29818);n({global:!0,forced:parseFloat!=o},{parseFloat:o})},84125:(t,e,r)=>{"use strict";var n=r(57330),o=r(20361);n({global:!0,forced:parseInt!=o},{parseInt:o})},79200:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(88965),a=r(82487),s=r(93798),u=r(29429);n({target:"Promise",stat:!0,forced:r(48006)},{allSettled:function(t){var e=this,r=a.f(e),n=r.resolve,c=r.reject,f=s((function(){var r=i(e.resolve),a=[],s=0,c=1;u(t,(function(t){var i=s++,u=!1;c++,o(r,e,t).then((function(t){u||(u=!0,a[i]={status:"fulfilled",value:t},--c||n(a))}),(function(t){u||(u=!0,a[i]={status:"rejected",reason:t},--c||n(a))}))})),--c||n(a)}));return f.error&&c(f.value),r.promise}})},89396:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(88965),a=r(82487),s=r(93798),u=r(29429);n({target:"Promise",stat:!0,forced:r(48006)},{all:function(t){var e=this,r=a.f(e),n=r.resolve,c=r.reject,f=s((function(){var r=i(e.resolve),a=[],s=0,f=1;u(t,(function(t){var i=s++,u=!1;f++,o(r,e,t).then((function(t){u||(u=!0,a[i]=t,--f||n(a))}),c)})),--f||n(a)}));return f.error&&c(f.value),r.promise}})},52440:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(88965),a=r(12546),s=r(82487),u=r(93798),c=r(29429),f=r(48006),l="No one promise resolved";n({target:"Promise",stat:!0,forced:f},{any:function(t){var e=this,r=a("AggregateError"),n=s.f(e),f=n.resolve,h=n.reject,p=u((function(){var n=i(e.resolve),a=[],s=0,u=1,p=!1;c(t,(function(t){var i=s++,c=!1;u++,o(n,e,t).then((function(t){c||p||(p=!0,f(t))}),(function(t){c||p||(c=!0,a[i]=t,--u||h(new r(a,l)))}))})),--u||h(new r(a,l))}));return p.error&&h(p.value),n.promise}})},71938:(t,e,r)=>{"use strict";var n=r(57330),o=r(43310),i=r(86177).CONSTRUCTOR,a=r(32522),s=r(12546),u=r(34230),c=r(89592),f=a&&a.prototype;if(n({target:"Promise",proto:!0,forced:i,real:!0},{catch:function(t){return this.then(void 0,t)}}),!o&&u(a)){var l=s("Promise").prototype.catch;f.catch!==l&&c(f,"catch",l,{unsafe:!0})}},30993:(t,e,r)=>{"use strict";var n,o,i,a=r(57330),s=r(43310),u=r(63241),c=r(54516),f=r(83264),l=r(89592),h=r(14776),p=r(81018),y=r(3348),d=r(88965),v=r(34230),g=r(3196),b=r(89214),m=r(72976),w=r(33394).set,x=r(54653),k=r(45471),S=r(93798),_=r(7822),O=r(43023),E=r(32522),A=r(86177),P=r(82487),j="Promise",T=A.CONSTRUCTOR,M=A.REJECTION_EVENT,R=A.SUBCLASSING,I=O.getterFor(j),C=O.set,L=E&&E.prototype,D=E,B=L,N=c.TypeError,F=c.document,z=c.process,U=P.f,Y=U,G=!!(F&&F.createEvent&&c.dispatchEvent),H="unhandledrejection",W=function(t){var e;return!(!g(t)||!v(e=t.then))&&e},X=function(t,e){var r,n,o,i=e.value,a=1==e.state,s=a?t.ok:t.fail,u=t.resolve,c=t.reject,l=t.domain;try{s?(a||(2===e.rejection&&J(e),e.rejection=1),!0===s?r=i:(l&&l.enter(),r=s(i),l&&(l.exit(),o=!0)),r===t.promise?c(N("Promise-chain cycle")):(n=W(r))?f(n,r,u,c):u(r)):c(i)}catch(t){l&&!o&&l.exit(),c(t)}},q=function(t,e){t.notified||(t.notified=!0,x((function(){for(var r,n=t.reactions;r=n.get();)X(r,t);t.notified=!1,e&&!t.rejection&&Q(t)})))},V=function(t,e,r){var n,o;G?((n=F.createEvent("Event")).promise=e,n.reason=r,n.initEvent(t,!1,!0),c.dispatchEvent(n)):n={promise:e,reason:r},!M&&(o=c["on"+t])?o(n):t===H&&k("Unhandled promise rejection",r)},Q=function(t){f(w,c,(function(){var e,r=t.facade,n=t.value;if(K(t)&&(e=S((function(){u?z.emit("unhandledRejection",n,r):V(H,r,n)})),t.rejection=u||K(t)?2:1,e.error))throw e.value}))},K=function(t){return 1!==t.rejection&&!t.parent},J=function(t){f(w,c,(function(){var e=t.facade;u?z.emit("rejectionHandled",e):V("rejectionhandled",e,t.value)}))},Z=function(t,e,r){return function(n){t(e,n,r)}},$=function(t,e,r){t.done||(t.done=!0,r&&(t=r),t.value=e,t.state=2,q(t,!0))},tt=function t(e,r,n){if(!e.done){e.done=!0,n&&(e=n);try{if(e.facade===r)throw N("Promise can't be resolved itself");var o=W(r);o?x((function(){var n={done:!1};try{f(o,r,Z(t,n,e),Z($,n,e))}catch(t){$(n,t,e)}})):(e.value=r,e.state=1,q(e,!1))}catch(t){$({done:!1},t,e)}}};if(T&&(B=(D=function(t){b(this,B),d(t),f(n,this);var e=I(this);try{t(Z(tt,e),Z($,e))}catch(t){$(e,t)}}).prototype,(n=function(t){C(this,{type:j,done:!1,notified:!1,parent:!1,reactions:new _,rejection:!1,state:0,value:void 0})}).prototype=l(B,"then",(function(t,e){var r=I(this),n=U(m(this,D));return r.parent=!0,n.ok=!v(t)||t,n.fail=v(e)&&e,n.domain=u?z.domain:void 0,0==r.state?r.reactions.add(n):x((function(){X(n,r)})),n.promise})),o=function(){var t=new n,e=I(t);this.promise=t,this.resolve=Z(tt,e),this.reject=Z($,e)},P.f=U=function(t){return t===D||void 0===t?new o(t):Y(t)},!s&&v(E)&&L!==Object.prototype)){i=L.then,R||l(L,"then",(function(t,e){var r=this;return new D((function(t,e){f(i,r,t,e)})).then(t,e)}),{unsafe:!0});try{delete L.constructor}catch(t){}h&&h(L,B)}a({global:!0,constructor:!0,wrap:!0,forced:T},{Promise:D}),p(D,j,!1,!0),y(j)},6804:(t,e,r)=>{"use strict";var n=r(57330),o=r(43310),i=r(32522),a=r(13894),s=r(12546),u=r(34230),c=r(72976),f=r(37494),l=r(89592),h=i&&i.prototype;if(n({target:"Promise",proto:!0,real:!0,forced:!!i&&a((function(){h.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var e=c(this,s("Promise")),r=u(t);return this.then(r?function(r){return f(e,t()).then((function(){return r}))}:t,r?function(r){return f(e,t()).then((function(){throw r}))}:t)}}),!o&&u(i)){var p=s("Promise").prototype.finally;h.finally!==p&&l(h,"finally",p,{unsafe:!0})}},26037:(t,e,r)=>{"use strict";r(30993),r(89396),r(71938),r(84237),r(70794),r(49173)},84237:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(88965),a=r(82487),s=r(93798),u=r(29429);n({target:"Promise",stat:!0,forced:r(48006)},{race:function(t){var e=this,r=a.f(e),n=r.reject,c=s((function(){var a=i(e.resolve);u(t,(function(t){o(a,e,t).then(r.resolve,n)}))}));return c.error&&n(c.value),r.promise}})},70794:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(82487);n({target:"Promise",stat:!0,forced:r(86177).CONSTRUCTOR},{reject:function(t){var e=i.f(this);return o(e.reject,void 0,t),e.promise}})},49173:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(43310),a=r(32522),s=r(86177).CONSTRUCTOR,u=r(37494),c=o("Promise"),f=i&&!s;n({target:"Promise",stat:!0,forced:i||s},{resolve:function(t){return u(f&&this===c?a:this,t)}})},97800:(t,e,r)=>{"use strict";var n=r(57330),o=r(2090),i=r(88965),a=r(96302);n({target:"Reflect",stat:!0,forced:!r(13894)((function(){Reflect.apply((function(){}))}))},{apply:function(t,e,r){return o(i(t),e,a(r))}})},96620:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(2090),a=r(80944),s=r(52750),u=r(96302),c=r(3196),f=r(64714),l=r(13894),h=o("Reflect","construct"),p=Object.prototype,y=[].push,d=l((function(){function t(){}return!(h((function(){}),[],t)instanceof t)})),v=!l((function(){h((function(){}))})),g=d||v;n({target:"Reflect",stat:!0,forced:g,sham:g},{construct:function(t,e){s(t),u(e);var r=arguments.length<3?t:s(arguments[2]);if(v&&!d)return h(t,e,r);if(t==r){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var n=[null];return i(y,n,e),new(i(a,t,n))}var o=r.prototype,l=f(c(o)?o:p),g=i(t,l,e);return c(g)?g:l}})},78964:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(96302),a=r(14748),s=r(26337);n({target:"Reflect",stat:!0,forced:r(13894)((function(){Reflect.defineProperty(s.f({},1,{value:1}),1,{value:2})})),sham:!o},{defineProperty:function(t,e,r){i(t);var n=a(e);i(r);try{return s.f(t,n,r),!0}catch(t){return!1}}})},26204:(t,e,r)=>{"use strict";var n=r(57330),o=r(96302),i=r(77872).f;n({target:"Reflect",stat:!0},{deleteProperty:function(t,e){var r=i(o(t),e);return!(r&&!r.configurable)&&delete t[e]}})},1615:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(96302),a=r(77872);n({target:"Reflect",stat:!0,sham:!o},{getOwnPropertyDescriptor:function(t,e){return a.f(i(t),e)}})},48590:(t,e,r)=>{"use strict";var n=r(57330),o=r(96302),i=r(40175);n({target:"Reflect",stat:!0,sham:!r(66336)},{getPrototypeOf:function(t){return i(o(t))}})},88011:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(3196),a=r(96302),s=r(32674),u=r(77872),c=r(40175);n({target:"Reflect",stat:!0},{get:function t(e,r){var n,f,l=arguments.length<3?e:arguments[2];return a(e)===l?e[r]:(n=u.f(e,r))?s(n)?n.value:void 0===n.get?void 0:o(n.get,l):i(f=c(e))?t(f,r,l):void 0}})},79036:(t,e,r)=>{"use strict";r(57330)({target:"Reflect",stat:!0},{has:function(t,e){return e in t}})},76583:(t,e,r)=>{"use strict";var n=r(57330),o=r(96302),i=r(54284);n({target:"Reflect",stat:!0},{isExtensible:function(t){return o(t),i(t)}})},82590:(t,e,r)=>{"use strict";r(57330)({target:"Reflect",stat:!0},{ownKeys:r(16660)})},7158:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(96302);n({target:"Reflect",stat:!0,sham:!r(46151)},{preventExtensions:function(t){i(t);try{var e=o("Object","preventExtensions");return e&&e(t),!0}catch(t){return!1}}})},53023:(t,e,r)=>{"use strict";var n=r(57330),o=r(96302),i=r(19814),a=r(14776);a&&n({target:"Reflect",stat:!0},{setPrototypeOf:function(t,e){o(t),i(e);try{return a(t,e),!0}catch(t){return!1}}})},99498:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(96302),a=r(3196),s=r(32674),u=r(13894),c=r(26337),f=r(77872),l=r(40175),h=r(30654);n({target:"Reflect",stat:!0,forced:u((function(){var t=function(){},e=c.f(new t,"a",{configurable:!0});return!1!==Reflect.set(t.prototype,"a",1,e)}))},{set:function t(e,r,n){var u,p,y,d=arguments.length<4?e:arguments[3],v=f.f(i(e),r);if(!v){if(a(p=l(e)))return t(p,r,n,d);v=h(0)}if(s(v)){if(!1===v.writable||!a(d))return!1;if(u=f.f(d,r)){if(u.get||u.set||!1===u.writable)return!1;u.value=n,c.f(d,r,u)}else c.f(d,r,h(0,n))}else{if(void 0===(y=v.set))return!1;o(y,d,n)}return!0}})},7212:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(81018);n({global:!0},{Reflect:{}}),i(o.Reflect,"Reflect",!0)},60971:(t,e,r)=>{"use strict";var n=r(44244),o=r(54516),i=r(76277),a=r(82615),s=r(2993),u=r(81831),c=r(51019).f,f=r(34973),l=r(15076),h=r(18971),p=r(16503),y=r(25645),d=r(60492),v=r(89592),g=r(13894),b=r(37058),m=r(43023).enforce,w=r(3348),x=r(41398),k=r(51415),S=r(56002),_=x("match"),O=o.RegExp,E=O.prototype,A=o.SyntaxError,P=i(E.exec),j=i("".charAt),T=i("".replace),M=i("".indexOf),R=i("".slice),I=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,C=/a/g,L=/a/g,D=new O(C)!==C,B=y.MISSED_STICKY,N=y.UNSUPPORTED_Y;if(a("RegExp",n&&(!D||B||k||S||g((function(){return L[_]=!1,O(C)!=C||O(L)==L||"/a/i"!=O(C,"i")}))))){for(var F=function(t,e){var r,n,o,i,a,c,y=f(E,this),d=l(t),v=void 0===e,g=[],w=t;if(!y&&d&&v&&t.constructor===F)return t;if((d||f(E,t))&&(t=t.source,v&&(e=p(w))),t=void 0===t?"":h(t),e=void 0===e?"":h(e),w=t,k&&"dotAll"in C&&(n=!!e&&M(e,"s")>-1)&&(e=T(e,/s/g,"")),r=e,B&&"sticky"in C&&(o=!!e&&M(e,"y")>-1)&&N&&(e=T(e,/y/g,"")),S&&(i=function(t){for(var e,r=t.length,n=0,o="",i=[],a={},s=!1,u=!1,c=0,f="";n<=r;n++){if("\\"===(e=j(t,n)))e+=j(t,++n);else if("]"===e)s=!1;else if(!s)switch(!0){case"["===e:s=!0;break;case"("===e:P(I,R(t,n+1))&&(n+=2,u=!0),o+=e,c++;continue;case">"===e&&u:if(""===f||b(a,f))throw new A("Invalid capture group name");a[f]=!0,i[i.length]=[f,c],u=!1,f="";continue}u?f+=e:o+=e}return[o,i]}(t),t=i[0],g=i[1]),a=s(O(t,e),y?this:E,F),(n||o||g.length)&&(c=m(a),n&&(c.dotAll=!0,c.raw=F(function(t){for(var e,r=t.length,n=0,o="",i=!1;n<=r;n++)"\\"!==(e=j(t,n))?i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]":o+=e+j(t,++n);return o}(t),r)),o&&(c.sticky=!0),g.length&&(c.groups=g)),t!==w)try{u(a,"source",""===w?"(?:)":w)}catch(t){}return a},z=c(O),U=0;z.length>U;)d(F,O,z[U++]);E.constructor=F,F.prototype=E,v(o,"RegExp",F,{constructor:!0})}w("RegExp")},18045:(t,e,r)=>{"use strict";var n=r(44244),o=r(51415),i=r(31030),a=r(55882),s=r(43023).get,u=RegExp.prototype,c=TypeError;n&&o&&a(u,"dotAll",{configurable:!0,get:function(){if(this!==u){if("RegExp"===i(this))return!!s(this).dotAll;throw c("Incompatible receiver, RegExp required")}}})},75567:(t,e,r)=>{"use strict";var n=r(57330),o=r(56021);n({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},62349:(t,e,r)=>{"use strict";var n=r(54516),o=r(44244),i=r(55882),a=r(53941),s=r(13894),u=n.RegExp,c=u.prototype;o&&s((function(){var t=!0;try{u(".","d")}catch(e){t=!1}var e={},r="",n=t?"dgimsy":"gimsy",o=function(t,n){Object.defineProperty(e,t,{get:function(){return r+=n,!0}})},i={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(var a in t&&(i.hasIndices="d"),i)o(a,i[a]);return Object.getOwnPropertyDescriptor(c,"flags").get.call(e)!==n||r!==n}))&&i(c,"flags",{configurable:!0,get:a})},87803:(t,e,r)=>{"use strict";var n=r(44244),o=r(25645).MISSED_STICKY,i=r(31030),a=r(55882),s=r(43023).get,u=RegExp.prototype,c=TypeError;n&&o&&a(u,"sticky",{configurable:!0,get:function(){if(this!==u){if("RegExp"===i(this))return!!s(this).sticky;throw c("Incompatible receiver, RegExp required")}}})},43:(t,e,r)=>{"use strict";r(75567);var n,o,i=r(57330),a=r(83264),s=r(34230),u=r(96302),c=r(18971),f=(n=!1,(o=/[ac]/).exec=function(){return n=!0,/./.exec.apply(this,arguments)},!0===o.test("abc")&&n),l=/./.test;i({target:"RegExp",proto:!0,forced:!f},{test:function(t){var e=u(this),r=c(t),n=e.exec;if(!s(n))return a(l,e,r);var o=a(n,e,r);return null!==o&&(u(o),!0)}})},33043:(t,e,r)=>{"use strict";var n=r(33385).PROPER,o=r(89592),i=r(96302),a=r(18971),s=r(13894),u=r(16503),c="toString",f=RegExp.prototype[c],l=s((function(){return"/a/b"!=f.call({source:"a",flags:"b"})})),h=n&&f.name!=c;(l||h)&&o(RegExp.prototype,c,(function(){var t=i(this);return"/"+a(t.source)+"/"+a(u(t))}),{unsafe:!0})},20489:(t,e,r)=>{"use strict";r(48756)("Set",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(78704))},23252:(t,e,r)=>{"use strict";r(20489)},4319:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("anchor")},{anchor:function(t){return o(this,"a","name",t)}})},16528:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(72191),a=r(35206),s=r(18971),u=r(13894),c=o("".charAt);n({target:"String",proto:!0,forced:u((function(){return"\ud842"!=="𠮷".at(-2)}))},{at:function(t){var e=s(i(this)),r=e.length,n=a(t),o=n>=0?n:r+n;return o<0||o>=r?void 0:c(e,o)}})},39535:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("big")},{big:function(){return o(this,"big","","")}})},65667:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("blink")},{blink:function(){return o(this,"blink","","")}})},67484:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("bold")},{bold:function(){return o(this,"b","","")}})},52821:(t,e,r)=>{"use strict";var n=r(57330),o=r(32088).codeAt;n({target:"String",proto:!0},{codePointAt:function(t){return o(this,t)}})},78158:(t,e,r)=>{"use strict";var n,o=r(57330),i=r(15307),a=r(77872).f,s=r(6674),u=r(18971),c=r(50134),f=r(72191),l=r(86018),h=r(43310),p=i("".endsWith),y=i("".slice),d=Math.min,v=l("endsWith");o({target:"String",proto:!0,forced:!(!h&&!v&&(n=a(String.prototype,"endsWith"),n&&!n.writable)||v)},{endsWith:function(t){var e=u(f(this));c(t);var r=arguments.length>1?arguments[1]:void 0,n=e.length,o=void 0===r?n:d(s(r),n),i=u(t);return p?p(e,i,o):y(e,o-i.length,o)===i}})},52936:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("fixed")},{fixed:function(){return o(this,"tt","","")}})},13684:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("fontcolor")},{fontcolor:function(t){return o(this,"font","color",t)}})},4614:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("fontsize")},{fontsize:function(t){return o(this,"font","size",t)}})},52512:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(59625),a=RangeError,s=String.fromCharCode,u=String.fromCodePoint,c=o([].join);n({target:"String",stat:!0,arity:1,forced:!!u&&1!=u.length},{fromCodePoint:function(t){for(var e,r=[],n=arguments.length,o=0;n>o;){if(e=+arguments[o++],i(e,1114111)!==e)throw a(e+" is not a valid code point");r[o]=e<65536?s(e):s(55296+((e-=65536)>>10),e%1024+56320)}return c(r,"")}})},32752:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(50134),a=r(72191),s=r(18971),u=r(86018),c=o("".indexOf);n({target:"String",proto:!0,forced:!u("includes")},{includes:function(t){return!!~c(s(a(this)),s(i(t)),arguments.length>1?arguments[1]:void 0)}})},56223:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(72191),a=r(18971),s=o("".charCodeAt);n({target:"String",proto:!0},{isWellFormed:function(){for(var t=a(i(this)),e=t.length,r=0;r<e;r++){var n=s(t,r);if(55296==(63488&n)&&(n>=56320||++r>=e||56320!=(64512&s(t,r))))return!1}return!0}})},77494:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("italics")},{italics:function(){return o(this,"i","","")}})},62302:(t,e,r)=>{"use strict";var n=r(32088).charAt,o=r(18971),i=r(43023),a=r(99825),s=r(38351),u="String Iterator",c=i.set,f=i.getterFor(u);a(String,"String",(function(t){c(this,{type:u,string:o(t),index:0})}),(function(){var t,e=f(this),r=e.string,o=e.index;return o>=r.length?s(void 0,!0):(t=n(r,o),e.index+=t.length,s(t,!1))}))},40536:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("link")},{link:function(t){return o(this,"a","href",t)}})},74202:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(15307),a=r(91740),s=r(38351),u=r(72191),c=r(6674),f=r(18971),l=r(96302),h=r(18850),p=r(31030),y=r(15076),d=r(16503),v=r(16040),g=r(89592),b=r(13894),m=r(41398),w=r(72976),x=r(68279),k=r(10510),S=r(43023),_=r(43310),O=m("matchAll"),E="RegExp String",A=E+" Iterator",P=S.set,j=S.getterFor(A),T=RegExp.prototype,M=TypeError,R=i("".indexOf),I=i("".matchAll),C=!!I&&!b((function(){I("a",/./)})),L=a((function(t,e,r,n){P(this,{type:A,regexp:t,string:e,global:r,unicode:n,done:!1})}),E,(function(){var t=j(this);if(t.done)return s(void 0,!0);var e=t.regexp,r=t.string,n=k(e,r);return null===n?(t.done=!0,s(void 0,!0)):t.global?(""===f(n[0])&&(e.lastIndex=x(r,c(e.lastIndex),t.unicode)),s(n,!1)):(t.done=!0,s(n,!1))})),D=function(t){var e,r,n,o=l(this),i=f(t),a=w(o,RegExp),s=f(d(o));return e=new a(a===RegExp?o.source:o,s),r=!!~R(s,"g"),n=!!~R(s,"u"),e.lastIndex=c(o.lastIndex),new L(e,i,r,n)};n({target:"String",proto:!0,forced:C},{matchAll:function(t){var e,r,n,i,a=u(this);if(h(t)){if(C)return I(a,t)}else{if(y(t)&&(e=f(u(d(t))),!~R(e,"g")))throw M("`.matchAll` does not allow non-global regexes");if(C)return I(a,t);if(void 0===(n=v(t,O))&&_&&"RegExp"==p(t)&&(n=D),n)return o(n,t,a)}return r=f(a),i=new RegExp(t,"g"),_?o(D,i,r):i[O](r)}}),_||O in T||g(T,O,D)},92781:(t,e,r)=>{"use strict";var n=r(83264),o=r(22804),i=r(96302),a=r(18850),s=r(6674),u=r(18971),c=r(72191),f=r(16040),l=r(68279),h=r(10510);o("match",(function(t,e,r){return[function(e){var r=c(this),o=a(e)?void 0:f(e,t);return o?n(o,e,r):new RegExp(e)[t](u(r))},function(t){var n=i(this),o=u(t),a=r(e,n,o);if(a.done)return a.value;if(!n.global)return h(n,o);var c=n.unicode;n.lastIndex=0;for(var f,p=[],y=0;null!==(f=h(n,o));){var d=u(f[0]);p[y]=d,""===d&&(n.lastIndex=l(o,s(n.lastIndex),c)),y++}return 0===y?null:p}]}))},49615:(t,e,r)=>{"use strict";var n=r(57330),o=r(86424).end;n({target:"String",proto:!0,forced:r(92980)},{padEnd:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},94209:(t,e,r)=>{"use strict";var n=r(57330),o=r(86424).start;n({target:"String",proto:!0,forced:r(92980)},{padStart:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},84031:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(54721),a=r(87706),s=r(18971),u=r(43716),c=o([].push),f=o([].join);n({target:"String",stat:!0},{raw:function(t){var e=i(a(t).raw),r=u(e);if(!r)return"";for(var n=arguments.length,o=[],l=0;;){if(c(o,s(e[l++])),l===r)return f(o,"");l<n&&c(o,s(arguments[l]))}}})},33259:(t,e,r)=>{"use strict";r(57330)({target:"String",proto:!0},{repeat:r(23295)})},22152:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(76277),a=r(72191),s=r(34230),u=r(18850),c=r(15076),f=r(18971),l=r(16040),h=r(16503),p=r(42012),y=r(41398),d=r(43310),v=y("replace"),g=TypeError,b=i("".indexOf),m=i("".replace),w=i("".slice),x=Math.max,k=function(t,e,r){return r>t.length?-1:""===e?r:b(t,e,r)};n({target:"String",proto:!0},{replaceAll:function(t,e){var r,n,i,y,S,_,O,E,A,P=a(this),j=0,T=0,M="";if(!u(t)){if((r=c(t))&&(n=f(a(h(t))),!~b(n,"g")))throw g("`.replaceAll` does not allow non-global regexes");if(i=l(t,v))return o(i,t,P,e);if(d&&r)return m(f(P),t,e)}for(y=f(P),S=f(t),(_=s(e))||(e=f(e)),O=S.length,E=x(1,O),j=k(y,S,0);-1!==j;)A=_?f(e(S,j,y)):p(S,y,j,[],void 0,e),M+=w(y,T,j)+A,T=j+O,j=k(y,S,j+E);return T<y.length&&(M+=w(y,T)),M}})},68011:(t,e,r)=>{"use strict";var n=r(2090),o=r(83264),i=r(76277),a=r(22804),s=r(13894),u=r(96302),c=r(34230),f=r(18850),l=r(35206),h=r(6674),p=r(18971),y=r(72191),d=r(68279),v=r(16040),g=r(42012),b=r(10510),m=r(41398)("replace"),w=Math.max,x=Math.min,k=i([].concat),S=i([].push),_=i("".indexOf),O=i("".slice),E="$0"==="a".replace(/./,"$0"),A=!!/./[m]&&""===/./[m]("a","$0");a("replace",(function(t,e,r){var i=A?"$":"$0";return[function(t,r){var n=y(this),i=f(t)?void 0:v(t,m);return i?o(i,t,n,r):o(e,p(n),t,r)},function(t,o){var a=u(this),s=p(t);if("string"==typeof o&&-1===_(o,i)&&-1===_(o,"$<")){var f=r(e,a,s,o);if(f.done)return f.value}var y=c(o);y||(o=p(o));var v=a.global;if(v){var m=a.unicode;a.lastIndex=0}for(var E=[];;){var A=b(a,s);if(null===A)break;if(S(E,A),!v)break;""===p(A[0])&&(a.lastIndex=d(s,h(a.lastIndex),m))}for(var P,j="",T=0,M=0;M<E.length;M++){for(var R=p((A=E[M])[0]),I=w(x(l(A.index),s.length),0),C=[],L=1;L<A.length;L++)S(C,void 0===(P=A[L])?P:String(P));var D=A.groups;if(y){var B=k([R],C,I,s);void 0!==D&&S(B,D);var N=p(n(o,void 0,B))}else N=g(R,s,I,C,D,o);I>=T&&(j+=O(s,T,I)+N,T=I+R.length)}return j+O(s,T)}]}),!!s((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!E||A)},47015:(t,e,r)=>{"use strict";var n=r(83264),o=r(22804),i=r(96302),a=r(18850),s=r(72191),u=r(79094),c=r(18971),f=r(16040),l=r(10510);o("search",(function(t,e,r){return[function(e){var r=s(this),o=a(e)?void 0:f(e,t);return o?n(o,e,r):new RegExp(e)[t](c(r))},function(t){var n=i(this),o=c(t),a=r(e,n,o);if(a.done)return a.value;var s=n.lastIndex;u(s,0)||(n.lastIndex=0);var f=l(n,o);return u(n.lastIndex,s)||(n.lastIndex=s),null===f?-1:f.index}]}))},60762:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("small")},{small:function(){return o(this,"small","","")}})},45238:(t,e,r)=>{"use strict";var n=r(2090),o=r(83264),i=r(76277),a=r(22804),s=r(96302),u=r(18850),c=r(15076),f=r(72191),l=r(72976),h=r(68279),p=r(6674),y=r(18971),d=r(16040),v=r(68020),g=r(10510),b=r(56021),m=r(25645),w=r(13894),x=m.UNSUPPORTED_Y,k=4294967295,S=Math.min,_=[].push,O=i(/./.exec),E=i(_),A=i("".slice);a("split",(function(t,e,r){var i;return i="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,r){var i=y(f(this)),a=void 0===r?k:r>>>0;if(0===a)return[];if(void 0===t)return[i];if(!c(t))return o(e,i,t,a);for(var s,u,l,h=[],p=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),d=0,g=new RegExp(t.source,p+"g");(s=o(b,g,i))&&!((u=g.lastIndex)>d&&(E(h,A(i,d,s.index)),s.length>1&&s.index<i.length&&n(_,h,v(s,1)),l=s[0].length,d=u,h.length>=a));)g.lastIndex===s.index&&g.lastIndex++;return d===i.length?!l&&O(g,"")||E(h,""):E(h,A(i,d)),h.length>a?v(h,0,a):h}:"0".split(void 0,0).length?function(t,r){return void 0===t&&0===r?[]:o(e,this,t,r)}:e,[function(e,r){var n=f(this),a=u(e)?void 0:d(e,t);return a?o(a,e,n,r):o(i,y(n),e,r)},function(t,n){var o=s(this),a=y(t),u=r(i,o,a,n,i!==e);if(u.done)return u.value;var c=l(o,RegExp),f=o.unicode,d=(o.ignoreCase?"i":"")+(o.multiline?"m":"")+(o.unicode?"u":"")+(x?"g":"y"),v=new c(x?"^(?:"+o.source+")":o,d),b=void 0===n?k:n>>>0;if(0===b)return[];if(0===a.length)return null===g(v,a)?[a]:[];for(var m=0,w=0,_=[];w<a.length;){v.lastIndex=x?0:w;var O,P=g(v,x?A(a,w):a);if(null===P||(O=S(p(v.lastIndex+(x?w:0)),a.length))===m)w=h(a,w,f);else{if(E(_,A(a,m,w)),_.length===b)return _;for(var j=1;j<=P.length-1;j++)if(E(_,P[j]),_.length===b)return _;w=m=O}}return E(_,A(a,m)),_}]}),!!w((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var r="ab".split(t);return 2!==r.length||"a"!==r[0]||"b"!==r[1]})),x)},39463:(t,e,r)=>{"use strict";var n,o=r(57330),i=r(15307),a=r(77872).f,s=r(6674),u=r(18971),c=r(50134),f=r(72191),l=r(86018),h=r(43310),p=i("".startsWith),y=i("".slice),d=Math.min,v=l("startsWith");o({target:"String",proto:!0,forced:!(!h&&!v&&(n=a(String.prototype,"startsWith"),n&&!n.writable)||v)},{startsWith:function(t){var e=u(f(this));c(t);var r=s(d(arguments.length>1?arguments[1]:void 0,e.length)),n=u(t);return p?p(e,n,r):y(e,r,r+n.length)===n}})},4659:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("strike")},{strike:function(){return o(this,"strike","","")}})},5604:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("sub")},{sub:function(){return o(this,"sub","","")}})},56267:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(72191),a=r(35206),s=r(18971),u=o("".slice),c=Math.max,f=Math.min;n({target:"String",proto:!0,forced:!"".substr||"b"!=="ab".substr(-1)},{substr:function(t,e){var r,n,o=s(i(this)),l=o.length,h=a(t);return h===1/0&&(h=0),h<0&&(h=c(l+h,0)),(r=void 0===e?l:a(e))<=0||r===1/0||h>=(n=f(h+r,l))?"":u(o,h,n)}})},46073:(t,e,r)=>{"use strict";var n=r(57330),o=r(38439);n({target:"String",proto:!0,forced:r(21839)("sup")},{sup:function(){return o(this,"sup","","")}})},26395:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264),i=r(76277),a=r(72191),s=r(18971),u=r(13894),c=Array,f=i("".charAt),l=i("".charCodeAt),h=i([].join),p="".toWellFormed,y=p&&u((function(){return"1"!==o(p,1)}));n({target:"String",proto:!0,forced:y},{toWellFormed:function(){var t=s(a(this));if(y)return o(p,t);for(var e=t.length,r=c(e),n=0;n<e;n++){var i=l(t,n);55296!=(63488&i)?r[n]=f(t,n):i>=56320||n+1>=e||56320!=(64512&l(t,n+1))?r[n]="�":(r[n]=f(t,n),r[++n]=f(t,n))}return h(r,"")}})},49324:(t,e,r)=>{"use strict";r(14529);var n=r(57330),o=r(21791);n({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==o},{trimEnd:o})},57962:(t,e,r)=>{"use strict";var n=r(57330),o=r(65315);n({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==o},{trimLeft:o})},14529:(t,e,r)=>{"use strict";var n=r(57330),o=r(21791);n({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==o},{trimRight:o})},27153:(t,e,r)=>{"use strict";r(57962);var n=r(57330),o=r(65315);n({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==o},{trimStart:o})},73866:(t,e,r)=>{"use strict";var n=r(57330),o=r(23688).trim;n({target:"String",proto:!0,forced:r(55833)("trim")},{trim:function(){return o(this)}})},58055:(t,e,r)=>{"use strict";r(46619)("asyncIterator")},19539:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(83264),a=r(76277),s=r(43310),u=r(44244),c=r(24550),f=r(13894),l=r(37058),h=r(34973),p=r(96302),y=r(54721),d=r(14748),v=r(18971),g=r(30654),b=r(64714),m=r(68201),w=r(51019),x=r(53990),k=r(78586),S=r(77872),_=r(26337),O=r(68068),E=r(12028),A=r(89592),P=r(55882),j=r(38365),T=r(96894),M=r(42570),R=r(67025),I=r(41398),C=r(30400),L=r(46619),D=r(52231),B=r(81018),N=r(43023),F=r(87265).forEach,z=T("hidden"),U="Symbol",Y="prototype",G=N.set,H=N.getterFor(U),W=Object[Y],X=o.Symbol,q=X&&X[Y],V=o.TypeError,Q=o.QObject,K=S.f,J=_.f,Z=x.f,$=E.f,tt=a([].push),et=j("symbols"),rt=j("op-symbols"),nt=j("wks"),ot=!Q||!Q[Y]||!Q[Y].findChild,it=u&&f((function(){return 7!=b(J({},"a",{get:function(){return J(this,"a",{value:7}).a}})).a}))?function(t,e,r){var n=K(W,e);n&&delete W[e],J(t,e,r),n&&t!==W&&J(W,e,n)}:J,at=function(t,e){var r=et[t]=b(q);return G(r,{type:U,tag:t,description:e}),u||(r.description=e),r},st=function(t,e,r){t===W&&st(rt,e,r),p(t);var n=d(e);return p(r),l(et,n)?(r.enumerable?(l(t,z)&&t[z][n]&&(t[z][n]=!1),r=b(r,{enumerable:g(0,!1)})):(l(t,z)||J(t,z,g(1,{})),t[z][n]=!0),it(t,n,r)):J(t,n,r)},ut=function(t,e){p(t);var r=y(e),n=m(r).concat(ht(r));return F(n,(function(e){u&&!i(ct,r,e)||st(t,e,r[e])})),t},ct=function(t){var e=d(t),r=i($,this,e);return!(this===W&&l(et,e)&&!l(rt,e))&&(!(r||!l(this,e)||!l(et,e)||l(this,z)&&this[z][e])||r)},ft=function(t,e){var r=y(t),n=d(e);if(r!==W||!l(et,n)||l(rt,n)){var o=K(r,n);return!o||!l(et,n)||l(r,z)&&r[z][n]||(o.enumerable=!0),o}},lt=function(t){var e=Z(y(t)),r=[];return F(e,(function(t){l(et,t)||l(M,t)||tt(r,t)})),r},ht=function(t){var e=t===W,r=Z(e?rt:y(t)),n=[];return F(r,(function(t){!l(et,t)||e&&!l(W,t)||tt(n,et[t])})),n};c||(A(q=(X=function(){if(h(q,this))throw V("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?v(arguments[0]):void 0,e=R(t);return u&&ot&&it(W,e,{configurable:!0,set:function t(r){this===W&&i(t,rt,r),l(this,z)&&l(this[z],e)&&(this[z][e]=!1),it(this,e,g(1,r))}}),at(e,t)})[Y],"toString",(function(){return H(this).tag})),A(X,"withoutSetter",(function(t){return at(R(t),t)})),E.f=ct,_.f=st,O.f=ut,S.f=ft,w.f=x.f=lt,k.f=ht,C.f=function(t){return at(I(t),t)},u&&(P(q,"description",{configurable:!0,get:function(){return H(this).description}}),s||A(W,"propertyIsEnumerable",ct,{unsafe:!0}))),n({global:!0,constructor:!0,wrap:!0,forced:!c,sham:!c},{Symbol:X}),F(m(nt),(function(t){L(t)})),n({target:U,stat:!0,forced:!c},{useSetter:function(){ot=!0},useSimple:function(){ot=!1}}),n({target:"Object",stat:!0,forced:!c,sham:!u},{create:function(t,e){return void 0===e?b(t):ut(b(t),e)},defineProperty:st,defineProperties:ut,getOwnPropertyDescriptor:ft}),n({target:"Object",stat:!0,forced:!c},{getOwnPropertyNames:lt}),D(),B(X,U),M[z]=!0},4613:(t,e,r)=>{"use strict";var n=r(57330),o=r(44244),i=r(54516),a=r(76277),s=r(37058),u=r(34230),c=r(34973),f=r(18971),l=r(55882),h=r(79129),p=i.Symbol,y=p&&p.prototype;if(o&&u(p)&&(!("description"in y)||void 0!==p().description)){var d={},v=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:f(arguments[0]),e=c(y,this)?new p(t):void 0===t?p():p(t);return""===t&&(d[e]=!0),e};h(v,p),v.prototype=y,y.constructor=v;var g="Symbol(test)"==String(p("test")),b=a(y.valueOf),m=a(y.toString),w=/^Symbol\((.*)\)[^)]+$/,x=a("".replace),k=a("".slice);l(y,"description",{configurable:!0,get:function(){var t=b(this);if(s(d,t))return"";var e=m(t),r=g?k(e,7,-1):x(e,w,"$1");return""===r?void 0:r}}),n({global:!0,constructor:!0,forced:!0},{Symbol:v})}},14659:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(37058),a=r(18971),s=r(38365),u=r(29129),c=s("string-to-symbol-registry"),f=s("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!u},{for:function(t){var e=a(t);if(i(c,e))return c[e];var r=o("Symbol")(e);return c[e]=r,f[r]=e,r}})},86393:(t,e,r)=>{"use strict";r(46619)("hasInstance")},79040:(t,e,r)=>{"use strict";r(46619)("isConcatSpreadable")},79145:(t,e,r)=>{"use strict";r(46619)("iterator")},47180:(t,e,r)=>{"use strict";r(19539),r(14659),r(11911),r(83761),r(40520)},11911:(t,e,r)=>{"use strict";var n=r(57330),o=r(37058),i=r(45961),a=r(2854),s=r(38365),u=r(29129),c=s("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!u},{keyFor:function(t){if(!i(t))throw TypeError(a(t)+" is not a symbol");if(o(c,t))return c[t]}})},64145:(t,e,r)=>{"use strict";r(46619)("matchAll")},16517:(t,e,r)=>{"use strict";r(46619)("match")},34659:(t,e,r)=>{"use strict";r(46619)("replace")},95582:(t,e,r)=>{"use strict";r(46619)("search")},47661:(t,e,r)=>{"use strict";r(46619)("species")},63745:(t,e,r)=>{"use strict";r(46619)("split")},85270:(t,e,r)=>{"use strict";var n=r(46619),o=r(52231);n("toPrimitive"),o()},86481:(t,e,r)=>{"use strict";var n=r(12546),o=r(46619),i=r(81018);o("toStringTag"),i(n("Symbol"),"Symbol")},26606:(t,e,r)=>{"use strict";r(46619)("unscopables")},19540:(t,e,r)=>{"use strict";var n=r(19548),o=r(43716),i=r(35206),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("at",(function(t){var e=a(this),r=o(e),n=i(t),s=n>=0?n:r+n;return s<0||s>=r?void 0:e[s]}))},65049:(t,e,r)=>{"use strict";var n=r(76277),o=r(19548),i=n(r(92316)),a=o.aTypedArray;(0,o.exportTypedArrayMethod)("copyWithin",(function(t,e){return i(a(this),t,e,arguments.length>2?arguments[2]:void 0)}))},75608:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).every,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("every",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},30452:(t,e,r)=>{"use strict";var n=r(19548),o=r(47774),i=r(1490),a=r(98619),s=r(83264),u=r(76277),c=r(13894),f=n.aTypedArray,l=n.exportTypedArrayMethod,h=u("".slice);l("fill",(function(t){var e=arguments.length;f(this);var r="Big"===h(a(this),0,3)?i(t):+t;return s(o,this,r,e>1?arguments[1]:void 0,e>2?arguments[2]:void 0)}),c((function(){var t=0;return new Int8Array(2).fill({valueOf:function(){return t++}}),1!==t})))},29628:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).filter,i=r(35967),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("filter",(function(t){var e=o(a(this),t,arguments.length>1?arguments[1]:void 0);return i(this,e)}))},10901:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).findIndex,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findIndex",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},70834:(t,e,r)=>{"use strict";var n=r(19548),o=r(80728).findLastIndex,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findLastIndex",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},10386:(t,e,r)=>{"use strict";var n=r(19548),o=r(80728).findLast,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("findLast",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},71790:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).find,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("find",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},95477:(t,e,r)=>{"use strict";r(63842)("Float32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},38039:(t,e,r)=>{"use strict";r(63842)("Float64",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},73526:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).forEach,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("forEach",(function(t){o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},97913:(t,e,r)=>{"use strict";var n=r(93890);(0,r(19548).exportTypedArrayStaticMethod)("from",r(25599),n)},24319:(t,e,r)=>{"use strict";var n=r(19548),o=r(60452).includes,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("includes",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},27807:(t,e,r)=>{"use strict";var n=r(19548),o=r(60452).indexOf,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("indexOf",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},39134:(t,e,r)=>{"use strict";r(63842)("Int16",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},51257:(t,e,r)=>{"use strict";r(63842)("Int32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},88586:(t,e,r)=>{"use strict";r(63842)("Int8",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},57207:(t,e,r)=>{"use strict";var n=r(54516),o=r(13894),i=r(76277),a=r(19548),s=r(24133),u=r(41398)("iterator"),c=n.Uint8Array,f=i(s.values),l=i(s.keys),h=i(s.entries),p=a.aTypedArray,y=a.exportTypedArrayMethod,d=c&&c.prototype,v=!o((function(){d[u].call([1])})),g=!!d&&d.values&&d[u]===d.values&&"values"===d.values.name,b=function(){return f(p(this))};y("entries",(function(){return h(p(this))}),v),y("keys",(function(){return l(p(this))}),v),y("values",b,v||!g,{name:"values"}),y(u,b,v||!g,{name:"values"})},97371:(t,e,r)=>{"use strict";var n=r(19548),o=r(76277),i=n.aTypedArray,a=n.exportTypedArrayMethod,s=o([].join);a("join",(function(t){return s(i(this),t)}))},91897:(t,e,r)=>{"use strict";var n=r(19548),o=r(2090),i=r(85773),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("lastIndexOf",(function(t){var e=arguments.length;return o(i,a(this),e>1?[t,arguments[1]]:[t])}))},43418:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).map,i=r(62718),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("map",(function(t){return o(a(this),t,arguments.length>1?arguments[1]:void 0,(function(t,e){return new(i(t))(e)}))}))},68709:(t,e,r)=>{"use strict";var n=r(19548),o=r(93890),i=n.aTypedArrayConstructor;(0,n.exportTypedArrayStaticMethod)("of",(function(){for(var t=0,e=arguments.length,r=new(i(this))(e);e>t;)r[t]=arguments[t++];return r}),o)},62476:(t,e,r)=>{"use strict";var n=r(19548),o=r(73333).right,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("reduceRight",(function(t){var e=arguments.length;return o(i(this),t,e,e>1?arguments[1]:void 0)}))},46255:(t,e,r)=>{"use strict";var n=r(19548),o=r(73333).left,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("reduce",(function(t){var e=arguments.length;return o(i(this),t,e,e>1?arguments[1]:void 0)}))},42205:(t,e,r)=>{"use strict";var n=r(19548),o=n.aTypedArray,i=n.exportTypedArrayMethod,a=Math.floor;i("reverse",(function(){for(var t,e=this,r=o(e).length,n=a(r/2),i=0;i<n;)t=e[i],e[i++]=e[--r],e[r]=t;return e}))},43334:(t,e,r)=>{"use strict";var n=r(54516),o=r(83264),i=r(19548),a=r(43716),s=r(4408),u=r(87706),c=r(13894),f=n.RangeError,l=n.Int8Array,h=l&&l.prototype,p=h&&h.set,y=i.aTypedArray,d=i.exportTypedArrayMethod,v=!c((function(){var t=new Uint8ClampedArray(2);return o(p,t,{length:1,0:3},1),3!==t[1]})),g=v&&i.NATIVE_ARRAY_BUFFER_VIEWS&&c((function(){var t=new l(2);return t.set(1),t.set("2",1),0!==t[0]||2!==t[1]}));d("set",(function(t){y(this);var e=s(arguments.length>1?arguments[1]:void 0,1),r=u(t);if(v)return o(p,this,r,e);var n=this.length,i=a(r),c=0;if(i+e>n)throw f("Wrong length");for(;c<i;)this[e+c]=r[c++]}),!v||g)},75337:(t,e,r)=>{"use strict";var n=r(19548),o=r(62718),i=r(13894),a=r(52999),s=n.aTypedArray;(0,n.exportTypedArrayMethod)("slice",(function(t,e){for(var r=a(s(this),t,e),n=o(this),i=0,u=r.length,c=new n(u);u>i;)c[i]=r[i++];return c}),i((function(){new Int8Array(1).slice()})))},97598:(t,e,r)=>{"use strict";var n=r(19548),o=r(87265).some,i=n.aTypedArray;(0,n.exportTypedArrayMethod)("some",(function(t){return o(i(this),t,arguments.length>1?arguments[1]:void 0)}))},45433:(t,e,r)=>{"use strict";var n=r(54516),o=r(15307),i=r(13894),a=r(88965),s=r(53347),u=r(19548),c=r(50419),f=r(72693),l=r(49229),h=r(90602),p=u.aTypedArray,y=u.exportTypedArrayMethod,d=n.Uint16Array,v=d&&o(d.prototype.sort),g=!(!v||i((function(){v(new d(2),null)}))&&i((function(){v(new d(2),{})}))),b=!!v&&!i((function(){if(l)return l<74;if(c)return c<67;if(f)return!0;if(h)return h<602;var t,e,r=new d(516),n=Array(516);for(t=0;t<516;t++)e=t%4,r[t]=515-t,n[t]=t-2*e+3;for(v(r,(function(t,e){return(t/4|0)-(e/4|0)})),t=0;t<516;t++)if(r[t]!==n[t])return!0}));y("sort",(function(t){return void 0!==t&&a(t),b?v(this,t):s(p(this),function(t){return function(e,r){return void 0!==t?+t(e,r)||0:r!=r?-1:e!=e?1:0===e&&0===r?1/e>0&&1/r<0?1:-1:e>r}}(t))}),!b||g)},64188:(t,e,r)=>{"use strict";var n=r(19548),o=r(6674),i=r(59625),a=r(62718),s=n.aTypedArray;(0,n.exportTypedArrayMethod)("subarray",(function(t,e){var r=s(this),n=r.length,u=i(t,n);return new(a(r))(r.buffer,r.byteOffset+u*r.BYTES_PER_ELEMENT,o((void 0===e?n:i(e,n))-u))}))},84880:(t,e,r)=>{"use strict";var n=r(54516),o=r(2090),i=r(19548),a=r(13894),s=r(52999),u=n.Int8Array,c=i.aTypedArray,f=i.exportTypedArrayMethod,l=[].toLocaleString,h=!!u&&a((function(){l.call(new u(1))}));f("toLocaleString",(function(){return o(l,h?s(c(this)):c(this),s(arguments))}),a((function(){return[1,2].toLocaleString()!=new u([1,2]).toLocaleString()}))||!a((function(){u.prototype.toLocaleString.call([1,2])})))},92002:(t,e,r)=>{"use strict";var n=r(13729),o=r(19548),i=o.aTypedArray,a=o.exportTypedArrayMethod,s=o.getTypedArrayConstructor;a("toReversed",(function(){return n(i(this),s(this))}))},97288:(t,e,r)=>{"use strict";var n=r(19548),o=r(76277),i=r(88965),a=r(35040),s=n.aTypedArray,u=n.getTypedArrayConstructor,c=n.exportTypedArrayMethod,f=o(n.TypedArrayPrototype.sort);c("toSorted",(function(t){void 0!==t&&i(t);var e=s(this),r=a(u(e),e);return f(r,t)}))},38769:(t,e,r)=>{"use strict";var n=r(19548).exportTypedArrayMethod,o=r(13894),i=r(54516),a=r(76277),s=i.Uint8Array,u=s&&s.prototype||{},c=[].toString,f=a([].join);o((function(){c.call({})}))&&(c=function(){return f(this)});var l=u.toString!=c;n("toString",c,l)},19972:(t,e,r)=>{"use strict";r(63842)("Uint16",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},98902:(t,e,r)=>{"use strict";r(63842)("Uint32",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},170:(t,e,r)=>{"use strict";r(63842)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}))},68266:(t,e,r)=>{"use strict";r(63842)("Uint8",(function(t){return function(e,r,n){return t(this,e,r,n)}}),!0)},71465:(t,e,r)=>{"use strict";var n=r(33547),o=r(19548),i=r(98074),a=r(35206),s=r(1490),u=o.aTypedArray,c=o.getTypedArrayConstructor,f=o.exportTypedArrayMethod,l=!!function(){try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(t){return 8===t}}();f("with",{with:function(t,e){var r=u(this),o=a(t),f=i(r)?s(e):+e;return n(r,c(r),o,f)}}.with,!l)},50748:(t,e,r)=>{"use strict";var n=r(57330),o=r(76277),i=r(18971),a=String.fromCharCode,s=o("".charAt),u=o(/./.exec),c=o("".slice),f=/^[\da-f]{2}$/i,l=/^[\da-f]{4}$/i;n({global:!0},{unescape:function(t){for(var e,r,n=i(t),o="",h=n.length,p=0;p<h;){if("%"===(e=s(n,p++)))if("u"===s(n,p)){if(r=c(n,p+1,p+5),u(l,r)){o+=a(parseInt(r,16)),p+=5;continue}}else if(r=c(n,p,p+2),u(f,r)){o+=a(parseInt(r,16)),p+=2;continue}o+=e}return o}})},5531:(t,e,r)=>{"use strict";var n,o=r(46151),i=r(54516),a=r(76277),s=r(82281),u=r(8420),c=r(48756),f=r(66263),l=r(3196),h=r(43023).enforce,p=r(13894),y=r(82408),d=Object,v=Array.isArray,g=d.isExtensible,b=d.isFrozen,m=d.isSealed,w=d.freeze,x=d.seal,k={},S={},_=!i.ActiveXObject&&"ActiveXObject"in i,O=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},E=c("WeakMap",O,f),A=E.prototype,P=a(A.set);if(y)if(_){n=f.getConstructor(O,"WeakMap",!0),u.enable();var j=a(A.delete),T=a(A.has),M=a(A.get);s(A,{delete:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),j(this,t)||e.frozen.delete(t)}return j(this,t)},has:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),T(this,t)||e.frozen.has(t)}return T(this,t)},get:function(t){if(l(t)&&!g(t)){var e=h(this);return e.frozen||(e.frozen=new n),T(this,t)?M(this,t):e.frozen.get(t)}return M(this,t)},set:function(t,e){if(l(t)&&!g(t)){var r=h(this);r.frozen||(r.frozen=new n),T(this,t)?P(this,t,e):r.frozen.set(t,e)}else P(this,t,e);return this}})}else o&&p((function(){var t=w([]);return P(new E,t,1),!b(t)}))&&s(A,{set:function(t,e){var r;return v(t)&&(b(t)?r=k:m(t)&&(r=S)),P(this,t,e),r==k&&w(t),r==S&&x(t),this}})},74287:(t,e,r)=>{"use strict";r(5531)},40273:(t,e,r)=>{"use strict";r(48756)("WeakSet",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),r(66263))},40476:(t,e,r)=>{"use strict";r(40273)},50315:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(12546),a=r(76277),s=r(83264),u=r(13894),c=r(18971),f=r(37058),l=r(10645),h=r(19649).ctoi,p=/[^\d+/a-z]/i,y=/[\t\n\f\r ]+/g,d=/[=]{1,2}$/,v=i("atob"),g=String.fromCharCode,b=a("".charAt),m=a("".replace),w=a(p.exec),x=u((function(){return""!==v(" ")})),k=!u((function(){v("a")})),S=!x&&!k&&!u((function(){v()})),_=!x&&!k&&1!==v.length;n({global:!0,bind:!0,enumerable:!0,forced:x||k||S||_},{atob:function(t){if(l(arguments.length,1),S||_)return s(v,o,t);var e,r,n=m(c(t),y,""),a="",u=0,x=0;if(n.length%4==0&&(n=m(n,d,"")),n.length%4==1||w(p,n))throw new(i("DOMException"))("The string is not correctly encoded","InvalidCharacterError");for(;e=b(n,u++);)f(h,e)&&(r=x%4?64*r+h[e]:h[e],x++%4&&(a+=g(255&r>>(-2*x&6))));return a}})},72168:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(12546),a=r(76277),s=r(83264),u=r(13894),c=r(18971),f=r(10645),l=r(19649).itoc,h=i("btoa"),p=a("".charAt),y=a("".charCodeAt),d=!!h&&!u((function(){h()})),v=!!h&&u((function(){return"bnVsbA=="!==h(null)})),g=!!h&&1!==h.length;n({global:!0,bind:!0,enumerable:!0,forced:d||v||g},{btoa:function(t){if(f(arguments.length,1),d||v||g)return s(h,o,c(t));for(var e,r,n=c(t),a="",u=0,b=l;p(n,u)||(b="=",u%1);){if((r=y(n,u+=3/4))>255)throw new(i("DOMException"))("The string contains characters outside of the Latin1 range","InvalidCharacterError");a+=p(b,63&(e=e<<8|r)>>8-u%1*8)}return a}})},93248:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(33394).clear;n({global:!0,bind:!0,enumerable:!0,forced:o.clearImmediate!==i},{clearImmediate:i})},63923:(t,e,r)=>{"use strict";var n=r(54516),o=r(63464),i=r(17666),a=r(39682),s=r(81831),u=function(t){if(t&&t.forEach!==a)try{s(t,"forEach",a)}catch(e){t.forEach=a}};for(var c in o)o[c]&&u(n[c]&&n[c].prototype);u(i)},95240:(t,e,r)=>{"use strict";var n=r(54516),o=r(63464),i=r(17666),a=r(24133),s=r(81831),u=r(41398),c=u("iterator"),f=u("toStringTag"),l=a.values,h=function(t,e){if(t){if(t[c]!==l)try{s(t,c,l)}catch(e){t[c]=l}if(t[f]||s(t,f,e),o[e])for(var r in a)if(t[r]!==a[r])try{s(t,r,a[r])}catch(e){t[r]=a[r]}}};for(var p in o)h(n[p]&&n[p].prototype,p);h(i,"DOMTokenList")},6721:(t,e,r)=>{"use strict";var n=r(57330),o=r(24128),i=r(12546),a=r(13894),s=r(64714),u=r(30654),c=r(26337).f,f=r(89592),l=r(55882),h=r(37058),p=r(89214),y=r(96302),d=r(34019),v=r(91245),g=r(43115),b=r(51597),m=r(43023),w=r(44244),x=r(43310),k="DOMException",S="DATA_CLONE_ERR",_=i("Error"),O=i(k)||function(){try{(new(i("MessageChannel")||o("worker_threads").MessageChannel)).port1.postMessage(new WeakMap)}catch(t){if(t.name==S&&25==t.code)return t.constructor}}(),E=O&&O.prototype,A=_.prototype,P=m.set,j=m.getterFor(k),T="stack"in _(k),M=function(t){return h(g,t)&&g[t].m?g[t].c:0},R=function(){p(this,I);var t=arguments.length,e=v(t<1?void 0:arguments[0]),r=v(t<2?void 0:arguments[1],"Error"),n=M(r);if(P(this,{type:k,name:r,message:e,code:n}),w||(this.name=r,this.message=e,this.code=n),T){var o=_(e);o.name=k,c(this,"stack",u(1,b(o.stack,1)))}},I=R.prototype=s(A),C=function(t){return{enumerable:!0,configurable:!0,get:t}},L=function(t){return C((function(){return j(this)[t]}))};w&&(l(I,"code",L("code")),l(I,"message",L("message")),l(I,"name",L("name"))),c(I,"constructor",u(1,R));var D=a((function(){return!(new O instanceof _)})),B=D||a((function(){return A.toString!==d||"2: 1"!==String(new O(1,2))})),N=D||a((function(){return 25!==new O(1,"DataCloneError").code})),F=D||25!==O[S]||25!==E[S],z=x?B||N||F:D;n({global:!0,constructor:!0,forced:z},{DOMException:z?R:O});var U=i(k),Y=U.prototype;for(var G in B&&(x||O===U)&&f(Y,"toString",d),N&&w&&O===U&&l(Y,"code",C((function(){return M(y(this).name)}))),g)if(h(g,G)){var H=g[G],W=H.s,X=u(6,H.c);h(U,W)||c(U,W,X),h(Y,W)||c(Y,W,X)}},58700:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(12546),a=r(30654),s=r(26337).f,u=r(37058),c=r(89214),f=r(2993),l=r(91245),h=r(43115),p=r(51597),y=r(44244),d=r(43310),v="DOMException",g=i("Error"),b=i(v),m=function(){c(this,w);var t=arguments.length,e=l(t<1?void 0:arguments[0]),r=l(t<2?void 0:arguments[1],"Error"),n=new b(e,r),o=g(e);return o.name=v,s(n,"stack",a(1,p(o.stack,1))),f(n,this,m),n},w=m.prototype=b.prototype,x="stack"in g(v),k="stack"in new b(1,2),S=b&&y&&Object.getOwnPropertyDescriptor(o,v),_=!(!S||S.writable&&S.configurable),O=x&&!_&&!k;n({global:!0,constructor:!0,forced:d||O},{DOMException:O?m:b});var E=i(v),A=E.prototype;if(A.constructor!==E)for(var P in d||s(A,"constructor",a(1,E)),h)if(u(h,P)){var j=h[P],T=j.s;u(E,T)||s(E,T,a(6,j.c))}},79073:(t,e,r)=>{"use strict";var n=r(12546),o="DOMException";r(81018)(n(o),o)},10012:(t,e,r)=>{"use strict";r(93248),r(25404)},27457:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(54653),a=r(88965),s=r(10645),u=r(63241),c=o.process;n({global:!0,enumerable:!0,dontCallGetSet:!0},{queueMicrotask:function(t){s(arguments.length,1),a(t);var e=u&&c.domain;i(e?e.bind(t):t)}})},88805:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(55882),a=r(44244),s=TypeError,u=Object.defineProperty,c=o.self!==o;try{if(a){var f=Object.getOwnPropertyDescriptor(o,"self");!c&&f&&f.get&&f.enumerable||i(o,"self",{get:function(){return o},set:function(t){if(this!==o)throw s("Illegal invocation");u(o,"self",{value:t,writable:!0,configurable:!0,enumerable:!0})},configurable:!0,enumerable:!0})}else n({global:!0,simple:!0,forced:c},{self:o})}catch(t){}},25404:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(33394).set,a=r(74710),s=o.setImmediate?a(i,!1):i;n({global:!0,bind:!0,enumerable:!0,forced:o.setImmediate!==s},{setImmediate:s})},91300:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(74710)(o.setInterval,!0);n({global:!0,bind:!0,forced:o.setInterval!==i},{setInterval:i})},96538:(t,e,r)=>{"use strict";var n=r(57330),o=r(54516),i=r(74710)(o.setTimeout,!0);n({global:!0,bind:!0,forced:o.setTimeout!==i},{setTimeout:i})},38634:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o,i=r(43310),a=r(57330),s=r(54516),u=r(12546),c=r(76277),f=r(13894),l=r(67025),h=r(34230),p=r(53924),y=r(18850),d=r(3196),v=r(45961),g=r(29429),b=r(96302),m=r(98619),w=r(37058),x=r(80955),k=r(81831),S=r(43716),_=r(10645),O=r(16503),E=r(6482),A=r(49164),P=r(81842),j=r(70197),T=s.Object,M=s.Array,R=s.Date,I=s.Error,C=s.EvalError,L=s.RangeError,D=s.ReferenceError,B=s.SyntaxError,N=s.TypeError,F=s.URIError,z=s.PerformanceMark,U=s.WebAssembly,Y=U&&U.CompileError||I,G=U&&U.LinkError||I,H=U&&U.RuntimeError||I,W=u("DOMException"),X=E.Map,q=E.has,V=E.get,Q=E.set,K=A.Set,J=A.add,Z=u("Object","keys"),$=c([].push),tt=c((!0).valueOf),et=c(1..valueOf),rt=c("".valueOf),nt=c(R.prototype.getTime),ot=l("structuredClone"),it="DataCloneError",at="Transferring",st=function(t){return!f((function(){var e=new s.Set([7]),r=t(e),o=t(T(7));return r==e||!r.has(7)||"object"!=n(o)||7!=o}))&&t},ut=function(t,e){return!f((function(){var r=new e,n=t({a:r,b:r});return!(n&&n.a===n.b&&n.a instanceof e&&n.a.stack===r.stack)}))},ct=s.structuredClone,ft=i||!ut(ct,I)||!ut(ct,W)||(o=ct,!!f((function(){var t=o(new s.AggregateError([1],ot,{cause:3}));return"AggregateError"!=t.name||1!=t.errors[0]||t.message!=ot||3!=t.cause}))),lt=!ct&&st((function(t){return new z(ot,{detail:t}).detail})),ht=st(ct)||lt,pt=function(t){throw new W("Uncloneable type: "+t,it)},yt=function(t,e){throw new W((e||"Cloning")+" of "+t+" cannot be properly polyfilled in this engine",it)},dt=function(t,e){return ht||yt(e),ht(t)},vt=function(t,e,r){if(q(e,t))return V(e,t);var n,o,i,a,u,c;if("SharedArrayBuffer"===(r||m(t)))n=ht?ht(t):t;else{var f=s.DataView;f||"function"==typeof t.slice||yt("ArrayBuffer");try{if("function"!=typeof t.slice||t.resizable){o=t.byteLength,i="maxByteLength"in t?{maxByteLength:t.maxByteLength}:void 0,n=new ArrayBuffer(o,i),a=new f(t),u=new f(n);for(c=0;c<o;c++)u.setUint8(c,a.getUint8(c))}else n=t.slice(0)}catch(t){throw new W("ArrayBuffer is detached",it)}}return Q(e,t,n),n},gt=function(t,e,r,n,o){var i=s[e];return d(i)||yt(e),new i(vt(t.buffer,o),r,n)},bt=function(t,e,r){this.object=t,this.type=e,this.metadata=r},mt=function t(e,r,n){if(v(e)&&pt("Symbol"),!d(e))return e;if(r){if(q(r,e))return V(r,e)}else r=new X;var o,i,a,c,f,l,p,y,g=m(e);switch(g){case"Array":a=M(S(e));break;case"Object":a={};break;case"Map":a=new X;break;case"Set":a=new K;break;case"RegExp":a=new RegExp(e.source,O(e));break;case"Error":switch(i=e.name){case"AggregateError":a=u("AggregateError")([]);break;case"EvalError":a=C();break;case"RangeError":a=L();break;case"ReferenceError":a=D();break;case"SyntaxError":a=B();break;case"TypeError":a=N();break;case"URIError":a=F();break;case"CompileError":a=Y();break;case"LinkError":a=G();break;case"RuntimeError":a=H();break;default:a=I()}break;case"DOMException":a=new W(e.message,e.name);break;case"ArrayBuffer":case"SharedArrayBuffer":a=n?new bt(e,g):vt(e,r,g);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":l="DataView"===g?e.byteLength:e.length,a=n?new bt(e,g,{offset:e.byteOffset,length:l}):gt(e,g,e.byteOffset,l,r);break;case"DOMQuad":try{a=new DOMQuad(t(e.p1,r,n),t(e.p2,r,n),t(e.p3,r,n),t(e.p4,r,n))}catch(t){a=dt(e,g)}break;case"File":if(ht)try{a=ht(e),m(a)!==g&&(a=void 0)}catch(t){}if(!a)try{a=new File([e],e.name,e)}catch(t){}a||yt(g);break;case"FileList":if(c=function(){var t;try{t=new s.DataTransfer}catch(e){try{t=new s.ClipboardEvent("").clipboardData}catch(t){}}return t&&t.items&&t.files?t:null}()){for(f=0,l=S(e);f<l;f++)c.items.add(t(e[f],r,n));a=c.files}else a=dt(e,g);break;case"ImageData":try{a=new ImageData(t(e.data,r,n),e.width,e.height,{colorSpace:e.colorSpace})}catch(t){a=dt(e,g)}break;default:if(ht)a=ht(e);else switch(g){case"BigInt":a=T(e.valueOf());break;case"Boolean":a=T(tt(e));break;case"Number":a=T(et(e));break;case"String":a=T(rt(e));break;case"Date":a=new R(nt(e));break;case"Blob":try{a=e.slice(0,e.size,e.type)}catch(t){yt(g)}break;case"DOMPoint":case"DOMPointReadOnly":o=s[g];try{a=o.fromPoint?o.fromPoint(e):new o(e.x,e.y,e.z,e.w)}catch(t){yt(g)}break;case"DOMRect":case"DOMRectReadOnly":o=s[g];try{a=o.fromRect?o.fromRect(e):new o(e.x,e.y,e.width,e.height)}catch(t){yt(g)}break;case"DOMMatrix":case"DOMMatrixReadOnly":o=s[g];try{a=o.fromMatrix?o.fromMatrix(e):new o(e)}catch(t){yt(g)}break;case"AudioData":case"VideoFrame":h(e.clone)||yt(g);try{a=e.clone()}catch(t){pt(g)}break;case"CropTarget":case"CryptoKey":case"FileSystemDirectoryHandle":case"FileSystemFileHandle":case"FileSystemHandle":case"GPUCompilationInfo":case"GPUCompilationMessage":case"ImageBitmap":case"RTCCertificate":case"WebAssembly.Module":yt(g);default:pt(g)}}switch(Q(r,e,a),g){case"Array":case"Object":for(p=Z(e),f=0,l=S(p);f<l;f++)y=p[f],x(a,y,t(e[y],r,n));break;case"Map":e.forEach((function(e,o){Q(a,t(o,r,n),t(e,r,n))}));break;case"Set":e.forEach((function(e){J(a,t(e,r,n))}));break;case"Error":k(a,"message",t(e.message,r,n)),w(e,"cause")&&k(a,"cause",t(e.cause,r,n)),"AggregateError"==i&&(a.errors=t(e.errors,r,n));case"DOMException":P&&k(a,"stack",t(e.stack,r,n))}return a},wt=function t(e,r){if(!d(e))return e;if(q(r,e))return V(r,e);var n,o,i,a,s,u,c,f;if(e instanceof bt)switch(n=e.type,o=e.object,n){case"ArrayBuffer":case"SharedArrayBuffer":f=vt(o,r,n);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":i=e.metadata,f=gt(o,n,i.offset,i.length,r)}else switch(m(e)){case"Array":case"Object":for(u=Z(e),a=0,s=S(u);a<s;a++)e[c=u[a]]=t(e[c],r);break;case"Map":f=new X,e.forEach((function(e,n){Q(f,t(n,r),t(e,r))}));break;case"Set":f=new K,e.forEach((function(e){J(f,t(e,r))}));break;case"Error":e.message=t(e.message,r),w(e,"cause")&&(e.cause=t(e.cause,r)),"AggregateError"==e.name&&(e.errors=t(e.errors,r));case"DOMException":P&&(e.stack=t(e.stack,r))}return Q(r,e,f||e),f||e};a({global:!0,enumerable:!0,sham:!j,forced:ft},{structuredClone:function(t){var e,r,n=_(arguments.length,1)>1&&!y(arguments[1])?b(arguments[1]):void 0,o=n?n.transfer:void 0,i=!1;void 0!==o&&(r=function(t,e){if(!d(t))throw N("Transfer option cannot be converted to a sequence");var r=[];g(t,(function(t){$(r,b(t))}));for(var n,o,i,a,u,c=0,f=S(r),l=[];c<f;)if(n=r[c++],"ArrayBuffer"!==(o=m(n))){if(q(e,n))throw new W("Duplicate transferable",it);if(j)a=ct(n,{transfer:[n]});else switch(o){case"ImageBitmap":i=s.OffscreenCanvas,p(i)||yt(o,at);try{(u=new i(n.width,n.height)).getContext("bitmaprenderer").transferFromImageBitmap(n),a=u.transferToImageBitmap()}catch(t){}break;case"AudioData":case"VideoFrame":h(n.clone)&&h(n.close)||yt(o,at);try{a=n.clone(),n.close()}catch(t){}break;case"MediaSourceHandle":case"MessagePort":case"OffscreenCanvas":case"ReadableStream":case"TransformStream":case"WritableStream":yt(o,at)}if(void 0===a)throw new W("This object cannot be transferred: "+o,it);Q(e,n,a)}else $(l,n);return l}(o,e=new X),i=!!S(r));var a=mt(t,e,i);return i&&(function(t,e){for(var r,n,o=0,i=S(t);o<i;){if(r=t[o++],q(e,r))throw new W("Duplicate transferable",it);j?n=ct(r,{transfer:[r]}):(h(r.transfer)||yt("ArrayBuffer",at),n=r.transfer()),Q(e,r,n)}}(o,e=new X),a=wt(a,e)),a}})},76878:(t,e,r)=>{"use strict";r(91300),r(96538)},90774:(t,e,r)=>{"use strict";r(24133);var n=r(57330),o=r(54516),i=r(83264),a=r(76277),s=r(44244),u=r(69650),c=r(89592),f=r(55882),l=r(82281),h=r(81018),p=r(91740),y=r(43023),d=r(89214),v=r(34230),g=r(37058),b=r(29910),m=r(98619),w=r(96302),x=r(3196),k=r(18971),S=r(64714),_=r(30654),O=r(29946),E=r(1228),A=r(10645),P=r(41398),j=r(53347),T=P("iterator"),M="URLSearchParams",R=M+"Iterator",I=y.set,C=y.getterFor(M),L=y.getterFor(R),D=Object.getOwnPropertyDescriptor,B=function(t){if(!s)return o[t];var e=D(o,t);return e&&e.value},N=B("fetch"),F=B("Request"),z=B("Headers"),U=F&&F.prototype,Y=z&&z.prototype,G=o.RegExp,H=o.TypeError,W=o.decodeURIComponent,X=o.encodeURIComponent,q=a("".charAt),V=a([].join),Q=a([].push),K=a("".replace),J=a([].shift),Z=a([].splice),$=a("".split),tt=a("".slice),et=/\+/g,rt=Array(4),nt=function(t){return rt[t-1]||(rt[t-1]=G("((?:%[\\da-f]{2}){"+t+"})","gi"))},ot=function(t){try{return W(t)}catch(e){return t}},it=function(t){var e=K(t,et," "),r=4;try{return W(e)}catch(t){for(;r;)e=K(e,nt(r--),ot);return e}},at=/[!'()~]|%20/g,st={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},ut=function(t){return st[t]},ct=function(t){return K(X(t),at,ut)},ft=p((function(t,e){I(this,{type:R,iterator:O(C(t).entries),kind:e})}),"Iterator",(function(){var t=L(this),e=t.kind,r=t.iterator.next(),n=r.value;return r.done||(r.value="keys"===e?n.key:"values"===e?n.value:[n.key,n.value]),r}),!0),lt=function(t){this.entries=[],this.url=null,void 0!==t&&(x(t)?this.parseObject(t):this.parseQuery("string"==typeof t?"?"===q(t,0)?tt(t,1):t:k(t)))};lt.prototype={type:M,bindURL:function(t){this.url=t,this.update()},parseObject:function(t){var e,r,n,o,a,s,u,c=E(t);if(c)for(r=(e=O(t,c)).next;!(n=i(r,e)).done;){if(a=(o=O(w(n.value))).next,(s=i(a,o)).done||(u=i(a,o)).done||!i(a,o).done)throw H("Expected sequence with length 2");Q(this.entries,{key:k(s.value),value:k(u.value)})}else for(var f in t)g(t,f)&&Q(this.entries,{key:f,value:k(t[f])})},parseQuery:function(t){if(t)for(var e,r,n=$(t,"&"),o=0;o<n.length;)(e=n[o++]).length&&(r=$(e,"="),Q(this.entries,{key:it(J(r)),value:it(V(r,"="))}))},serialize:function(){for(var t,e=this.entries,r=[],n=0;n<e.length;)t=e[n++],Q(r,ct(t.key)+"="+ct(t.value));return V(r,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var ht=function(){d(this,pt);var t=I(this,new lt(arguments.length>0?arguments[0]:void 0));s||(this.size=t.entries.length)},pt=ht.prototype;if(l(pt,{append:function(t,e){var r=C(this);A(arguments.length,2),Q(r.entries,{key:k(t),value:k(e)}),s||this.length++,r.updateURL()},delete:function(t){for(var e=C(this),r=A(arguments.length,1),n=e.entries,o=k(t),i=r<2?void 0:arguments[1],a=void 0===i?i:k(i),u=0;u<n.length;){var c=n[u];if(c.key!==o||void 0!==a&&c.value!==a)u++;else if(Z(n,u,1),void 0!==a)break}s||(this.size=n.length),e.updateURL()},get:function(t){var e=C(this).entries;A(arguments.length,1);for(var r=k(t),n=0;n<e.length;n++)if(e[n].key===r)return e[n].value;return null},getAll:function(t){var e=C(this).entries;A(arguments.length,1);for(var r=k(t),n=[],o=0;o<e.length;o++)e[o].key===r&&Q(n,e[o].value);return n},has:function(t){for(var e=C(this).entries,r=A(arguments.length,1),n=k(t),o=r<2?void 0:arguments[1],i=void 0===o?o:k(o),a=0;a<e.length;){var s=e[a++];if(s.key===n&&(void 0===i||s.value===i))return!0}return!1},set:function(t,e){var r=C(this);A(arguments.length,1);for(var n,o=r.entries,i=!1,a=k(t),u=k(e),c=0;c<o.length;c++)(n=o[c]).key===a&&(i?Z(o,c--,1):(i=!0,n.value=u));i||Q(o,{key:a,value:u}),s||(this.size=o.length),r.updateURL()},sort:function(){var t=C(this);j(t.entries,(function(t,e){return t.key>e.key?1:-1})),t.updateURL()},forEach:function(t){for(var e,r=C(this).entries,n=b(t,arguments.length>1?arguments[1]:void 0),o=0;o<r.length;)n((e=r[o++]).value,e.key,this)},keys:function(){return new ft(this,"keys")},values:function(){return new ft(this,"values")},entries:function(){return new ft(this,"entries")}},{enumerable:!0}),c(pt,T,pt.entries,{name:"entries"}),c(pt,"toString",(function(){return C(this).serialize()}),{enumerable:!0}),s&&f(pt,"size",{get:function(){return C(this).entries.length},configurable:!0,enumerable:!0}),h(ht,M),n({global:!0,constructor:!0,forced:!u},{URLSearchParams:ht}),!u&&v(z)){var yt=a(Y.has),dt=a(Y.set),vt=function(t){if(x(t)){var e,r=t.body;if(m(r)===M)return e=t.headers?new z(t.headers):new z,yt(e,"content-type")||dt(e,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),S(t,{body:_(0,k(r)),headers:_(0,e)})}return t};if(v(N)&&n({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(t){return N(t,arguments.length>1?vt(arguments[1]):{})}}),v(F)){var gt=function(t){return d(this,U),new F(t,arguments.length>1?vt(arguments[1]):{})};U.constructor=gt,gt.prototype=U,n({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:gt})}}t.exports={URLSearchParams:ht,getState:C}},41573:(t,e,r)=>{"use strict";var n=r(89592),o=r(76277),i=r(18971),a=r(10645),s=URLSearchParams,u=s.prototype,c=o(u.append),f=o(u.delete),l=o(u.forEach),h=o([].push),p=new s("a=1&a=2&b=3");p.delete("a",1),p.delete("b",void 0),p+""!="a=2"&&n(u,"delete",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return f(this,t);var n=[];l(this,(function(t,e){h(n,{key:e,value:t})})),a(e,1);for(var o,s=i(t),u=i(r),p=0,y=0,d=!1,v=n.length;p<v;)o=n[p++],d||o.key===s?(d=!0,f(this,o.key)):y++;for(;y<v;)(o=n[y++]).key===s&&o.value===u||c(this,o.key,o.value)}),{enumerable:!0,unsafe:!0})},28449:(t,e,r)=>{"use strict";var n=r(89592),o=r(76277),i=r(18971),a=r(10645),s=URLSearchParams,u=s.prototype,c=o(u.getAll),f=o(u.has),l=new s("a=1");!l.has("a",2)&&l.has("a",void 0)||n(u,"has",(function(t){var e=arguments.length,r=e<2?void 0:arguments[1];if(e&&void 0===r)return f(this,t);var n=c(this,t);a(e,1);for(var o=i(r),s=0;s<n.length;)if(n[s++]===o)return!0;return!1}),{enumerable:!0,unsafe:!0})},2848:(t,e,r)=>{"use strict";r(90774)},22456:(t,e,r)=>{"use strict";var n=r(44244),o=r(76277),i=r(55882),a=URLSearchParams.prototype,s=o(a.forEach);n&&!("size"in a)&&i(a,"size",{get:function(){var t=0;return s(this,(function(){t++})),t},configurable:!0,enumerable:!0})},94119:(t,e,r)=>{"use strict";var n=r(57330),o=r(12546),i=r(13894),a=r(10645),s=r(18971),u=r(69650),c=o("URL");n({target:"URL",stat:!0,forced:!(u&&i((function(){c.canParse()})))},{canParse:function(t){var e=a(arguments.length,1),r=s(t),n=e<2||void 0===arguments[1]?void 0:s(arguments[1]);try{return!!new c(r,n)}catch(t){return!1}}})},91871:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}r(62302);var o,i=r(57330),a=r(44244),s=r(69650),u=r(54516),c=r(29910),f=r(76277),l=r(89592),h=r(55882),p=r(89214),y=r(37058),d=r(70168),v=r(11956),g=r(68020),b=r(32088).codeAt,m=r(34858),w=r(18971),x=r(81018),k=r(10645),S=r(90774),_=r(43023),O=_.set,E=_.getterFor("URL"),A=S.URLSearchParams,P=S.getState,j=u.URL,T=u.TypeError,M=u.parseInt,R=Math.floor,I=Math.pow,C=f("".charAt),L=f(/./.exec),D=f([].join),B=f(1..toString),N=f([].pop),F=f([].push),z=f("".replace),U=f([].shift),Y=f("".split),G=f("".slice),H=f("".toLowerCase),W=f([].unshift),X="Invalid scheme",q="Invalid host",V="Invalid port",Q=/[a-z]/i,K=/[\d+-.a-z]/i,J=/\d/,Z=/^0x/i,$=/^[0-7]+$/,tt=/^\d+$/,et=/^[\da-f]+$/i,rt=/[\0\t\n\r #%/:<>?@[\\\]^|]/,nt=/[\0\t\n\r #/:<>?@[\\\]^|]/,ot=/^[\u0000-\u0020]+/,it=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,at=/[\t\n\r]/g,st=function(t){var e,r,o,i;if("number"==typeof t){for(e=[],r=0;r<4;r++)W(e,t%256),t=R(t/256);return D(e,".")}if("object"==n(t)){for(e="",o=function(t){for(var e=null,r=1,n=null,o=0,i=0;i<8;i++)0!==t[i]?(o>r&&(e=n,r=o),n=null,o=0):(null===n&&(n=i),++o);return o>r&&(e=n,r=o),e}(t),r=0;r<8;r++)i&&0===t[r]||(i&&(i=!1),o===r?(e+=r?":":"::",i=!0):(e+=B(t[r],16),r<7&&(e+=":")));return"["+e+"]"}return t},ut={},ct=d({},ut,{" ":1,'"':1,"<":1,">":1,"`":1}),ft=d({},ct,{"#":1,"?":1,"{":1,"}":1}),lt=d({},ft,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),ht=function(t,e){var r=b(t,0);return r>32&&r<127&&!y(e,t)?t:encodeURIComponent(t)},pt={ftp:21,file:null,http:80,https:443,ws:80,wss:443},yt=function(t,e){var r;return 2==t.length&&L(Q,C(t,0))&&(":"==(r=C(t,1))||!e&&"|"==r)},dt=function(t){var e;return t.length>1&&yt(G(t,0,2))&&(2==t.length||"/"===(e=C(t,2))||"\\"===e||"?"===e||"#"===e)},vt=function(t){return"."===t||"%2e"===H(t)},gt={},bt={},mt={},wt={},xt={},kt={},St={},_t={},Ot={},Et={},At={},Pt={},jt={},Tt={},Mt={},Rt={},It={},Ct={},Lt={},Dt={},Bt={},Nt=function t(e,r,n){var o,i,a,s=w(e);if(r){if(i=this.parse(s))throw T(i);this.searchParams=null}else{if(void 0!==n&&(o=new t(n,!0)),i=this.parse(s,null,o))throw T(i);(a=P(new A)).bindURL(this),this.searchParams=a}};Nt.prototype={type:"URL",parse:function(t,e,r){var n,i,a,s,u,c=this,f=e||gt,l=0,h="",p=!1,d=!1,b=!1;for(t=w(t),e||(c.scheme="",c.username="",c.password="",c.host=null,c.port=null,c.path=[],c.query=null,c.fragment=null,c.cannotBeABaseURL=!1,t=z(t,ot,""),t=z(t,it,"$1")),t=z(t,at,""),n=v(t);l<=n.length;){switch(i=n[l],f){case gt:if(!i||!L(Q,i)){if(e)return X;f=mt;continue}h+=H(i),f=bt;break;case bt:if(i&&(L(K,i)||"+"==i||"-"==i||"."==i))h+=H(i);else{if(":"!=i){if(e)return X;h="",f=mt,l=0;continue}if(e&&(c.isSpecial()!=y(pt,h)||"file"==h&&(c.includesCredentials()||null!==c.port)||"file"==c.scheme&&!c.host))return;if(c.scheme=h,e)return void(c.isSpecial()&&pt[c.scheme]==c.port&&(c.port=null));h="","file"==c.scheme?f=Tt:c.isSpecial()&&r&&r.scheme==c.scheme?f=wt:c.isSpecial()?f=_t:"/"==n[l+1]?(f=xt,l++):(c.cannotBeABaseURL=!0,F(c.path,""),f=Lt)}break;case mt:if(!r||r.cannotBeABaseURL&&"#"!=i)return X;if(r.cannotBeABaseURL&&"#"==i){c.scheme=r.scheme,c.path=g(r.path),c.query=r.query,c.fragment="",c.cannotBeABaseURL=!0,f=Bt;break}f="file"==r.scheme?Tt:kt;continue;case wt:if("/"!=i||"/"!=n[l+1]){f=kt;continue}f=Ot,l++;break;case xt:if("/"==i){f=Et;break}f=Ct;continue;case kt:if(c.scheme=r.scheme,i==o)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query=r.query;else if("/"==i||"\\"==i&&c.isSpecial())f=St;else if("?"==i)c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query="",f=Dt;else{if("#"!=i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.path.length--,f=Ct;continue}c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,c.path=g(r.path),c.query=r.query,c.fragment="",f=Bt}break;case St:if(!c.isSpecial()||"/"!=i&&"\\"!=i){if("/"!=i){c.username=r.username,c.password=r.password,c.host=r.host,c.port=r.port,f=Ct;continue}f=Et}else f=Ot;break;case _t:if(f=Ot,"/"!=i||"/"!=C(h,l+1))continue;l++;break;case Ot:if("/"!=i&&"\\"!=i){f=Et;continue}break;case Et:if("@"==i){p&&(h="%40"+h),p=!0,a=v(h);for(var m=0;m<a.length;m++){var x=a[m];if(":"!=x||b){var k=ht(x,lt);b?c.password+=k:c.username+=k}else b=!0}h=""}else if(i==o||"/"==i||"?"==i||"#"==i||"\\"==i&&c.isSpecial()){if(p&&""==h)return"Invalid authority";l-=v(h).length+1,h="",f=At}else h+=i;break;case At:case Pt:if(e&&"file"==c.scheme){f=Rt;continue}if(":"!=i||d){if(i==o||"/"==i||"?"==i||"#"==i||"\\"==i&&c.isSpecial()){if(c.isSpecial()&&""==h)return q;if(e&&""==h&&(c.includesCredentials()||null!==c.port))return;if(s=c.parseHost(h))return s;if(h="",f=It,e)return;continue}"["==i?d=!0:"]"==i&&(d=!1),h+=i}else{if(""==h)return q;if(s=c.parseHost(h))return s;if(h="",f=jt,e==Pt)return}break;case jt:if(!L(J,i)){if(i==o||"/"==i||"?"==i||"#"==i||"\\"==i&&c.isSpecial()||e){if(""!=h){var S=M(h,10);if(S>65535)return V;c.port=c.isSpecial()&&S===pt[c.scheme]?null:S,h=""}if(e)return;f=It;continue}return V}h+=i;break;case Tt:if(c.scheme="file","/"==i||"\\"==i)f=Mt;else{if(!r||"file"!=r.scheme){f=Ct;continue}if(i==o)c.host=r.host,c.path=g(r.path),c.query=r.query;else if("?"==i)c.host=r.host,c.path=g(r.path),c.query="",f=Dt;else{if("#"!=i){dt(D(g(n,l),""))||(c.host=r.host,c.path=g(r.path),c.shortenPath()),f=Ct;continue}c.host=r.host,c.path=g(r.path),c.query=r.query,c.fragment="",f=Bt}}break;case Mt:if("/"==i||"\\"==i){f=Rt;break}r&&"file"==r.scheme&&!dt(D(g(n,l),""))&&(yt(r.path[0],!0)?F(c.path,r.path[0]):c.host=r.host),f=Ct;continue;case Rt:if(i==o||"/"==i||"\\"==i||"?"==i||"#"==i){if(!e&&yt(h))f=Ct;else if(""==h){if(c.host="",e)return;f=It}else{if(s=c.parseHost(h))return s;if("localhost"==c.host&&(c.host=""),e)return;h="",f=It}continue}h+=i;break;case It:if(c.isSpecial()){if(f=Ct,"/"!=i&&"\\"!=i)continue}else if(e||"?"!=i)if(e||"#"!=i){if(i!=o&&(f=Ct,"/"!=i))continue}else c.fragment="",f=Bt;else c.query="",f=Dt;break;case Ct:if(i==o||"/"==i||"\\"==i&&c.isSpecial()||!e&&("?"==i||"#"==i)){if(".."===(u=H(u=h))||"%2e."===u||".%2e"===u||"%2e%2e"===u?(c.shortenPath(),"/"==i||"\\"==i&&c.isSpecial()||F(c.path,"")):vt(h)?"/"==i||"\\"==i&&c.isSpecial()||F(c.path,""):("file"==c.scheme&&!c.path.length&&yt(h)&&(c.host&&(c.host=""),h=C(h,0)+":"),F(c.path,h)),h="","file"==c.scheme&&(i==o||"?"==i||"#"==i))for(;c.path.length>1&&""===c.path[0];)U(c.path);"?"==i?(c.query="",f=Dt):"#"==i&&(c.fragment="",f=Bt)}else h+=ht(i,ft);break;case Lt:"?"==i?(c.query="",f=Dt):"#"==i?(c.fragment="",f=Bt):i!=o&&(c.path[0]+=ht(i,ut));break;case Dt:e||"#"!=i?i!=o&&("'"==i&&c.isSpecial()?c.query+="%27":c.query+="#"==i?"%23":ht(i,ut)):(c.fragment="",f=Bt);break;case Bt:i!=o&&(c.fragment+=ht(i,ct))}l++}},parseHost:function(t){var e,r,n;if("["==C(t,0)){if("]"!=C(t,t.length-1))return q;if(e=function(t){var e,r,n,o,i,a,s,u=[0,0,0,0,0,0,0,0],c=0,f=null,l=0,h=function(){return C(t,l)};if(":"==h()){if(":"!=C(t,1))return;l+=2,f=++c}for(;h();){if(8==c)return;if(":"!=h()){for(e=r=0;r<4&&L(et,h());)e=16*e+M(h(),16),l++,r++;if("."==h()){if(0==r)return;if(l-=r,c>6)return;for(n=0;h();){if(o=null,n>0){if(!("."==h()&&n<4))return;l++}if(!L(J,h()))return;for(;L(J,h());){if(i=M(h(),10),null===o)o=i;else{if(0==o)return;o=10*o+i}if(o>255)return;l++}u[c]=256*u[c]+o,2!=++n&&4!=n||c++}if(4!=n)return;break}if(":"==h()){if(l++,!h())return}else if(h())return;u[c++]=e}else{if(null!==f)return;l++,f=++c}}if(null!==f)for(a=c-f,c=7;0!=c&&a>0;)s=u[c],u[c--]=u[f+a-1],u[f+--a]=s;else if(8!=c)return;return u}(G(t,1,-1)),!e)return q;this.host=e}else if(this.isSpecial()){if(t=m(t),L(rt,t))return q;if(e=function(t){var e,r,n,o,i,a,s,u=Y(t,".");if(u.length&&""==u[u.length-1]&&u.length--,(e=u.length)>4)return t;for(r=[],n=0;n<e;n++){if(""==(o=u[n]))return t;if(i=10,o.length>1&&"0"==C(o,0)&&(i=L(Z,o)?16:8,o=G(o,8==i?1:2)),""===o)a=0;else{if(!L(10==i?tt:8==i?$:et,o))return t;a=M(o,i)}F(r,a)}for(n=0;n<e;n++)if(a=r[n],n==e-1){if(a>=I(256,5-e))return null}else if(a>255)return null;for(s=N(r),n=0;n<r.length;n++)s+=r[n]*I(256,3-n);return s}(t),null===e)return q;this.host=e}else{if(L(nt,t))return q;for(e="",r=v(t),n=0;n<r.length;n++)e+=ht(r[n],ut);this.host=e}},cannotHaveUsernamePasswordPort:function(){return!this.host||this.cannotBeABaseURL||"file"==this.scheme},includesCredentials:function(){return""!=this.username||""!=this.password},isSpecial:function(){return y(pt,this.scheme)},shortenPath:function(){var t=this.path,e=t.length;!e||"file"==this.scheme&&1==e&&yt(t[0],!0)||t.length--},serialize:function(){var t=this,e=t.scheme,r=t.username,n=t.password,o=t.host,i=t.port,a=t.path,s=t.query,u=t.fragment,c=e+":";return null!==o?(c+="//",t.includesCredentials()&&(c+=r+(n?":"+n:"")+"@"),c+=st(o),null!==i&&(c+=":"+i)):"file"==e&&(c+="//"),c+=t.cannotBeABaseURL?a[0]:a.length?"/"+D(a,"/"):"",null!==s&&(c+="?"+s),null!==u&&(c+="#"+u),c},setHref:function(t){var e=this.parse(t);if(e)throw T(e);this.searchParams.update()},getOrigin:function(){var t=this.scheme,e=this.port;if("blob"==t)try{return new Ft(t.path[0]).origin}catch(t){return"null"}return"file"!=t&&this.isSpecial()?t+"://"+st(this.host)+(null!==e?":"+e:""):"null"},getProtocol:function(){return this.scheme+":"},setProtocol:function(t){this.parse(w(t)+":",gt)},getUsername:function(){return this.username},setUsername:function(t){var e=v(w(t));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var r=0;r<e.length;r++)this.username+=ht(e[r],lt)}},getPassword:function(){return this.password},setPassword:function(t){var e=v(w(t));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var r=0;r<e.length;r++)this.password+=ht(e[r],lt)}},getHost:function(){var t=this.host,e=this.port;return null===t?"":null===e?st(t):st(t)+":"+e},setHost:function(t){this.cannotBeABaseURL||this.parse(t,At)},getHostname:function(){var t=this.host;return null===t?"":st(t)},setHostname:function(t){this.cannotBeABaseURL||this.parse(t,Pt)},getPort:function(){var t=this.port;return null===t?"":w(t)},setPort:function(t){this.cannotHaveUsernamePasswordPort()||(""==(t=w(t))?this.port=null:this.parse(t,jt))},getPathname:function(){var t=this.path;return this.cannotBeABaseURL?t[0]:t.length?"/"+D(t,"/"):""},setPathname:function(t){this.cannotBeABaseURL||(this.path=[],this.parse(t,It))},getSearch:function(){var t=this.query;return t?"?"+t:""},setSearch:function(t){""==(t=w(t))?this.query=null:("?"==C(t,0)&&(t=G(t,1)),this.query="",this.parse(t,Dt)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var t=this.fragment;return t?"#"+t:""},setHash:function(t){""!=(t=w(t))?("#"==C(t,0)&&(t=G(t,1)),this.fragment="",this.parse(t,Bt)):this.fragment=null},update:function(){this.query=this.searchParams.serialize()||null}};var Ft=function(t){var e=p(this,zt),r=k(arguments.length,1)>1?arguments[1]:void 0,n=O(e,new Nt(t,!1,r));a||(e.href=n.serialize(),e.origin=n.getOrigin(),e.protocol=n.getProtocol(),e.username=n.getUsername(),e.password=n.getPassword(),e.host=n.getHost(),e.hostname=n.getHostname(),e.port=n.getPort(),e.pathname=n.getPathname(),e.search=n.getSearch(),e.searchParams=n.getSearchParams(),e.hash=n.getHash())},zt=Ft.prototype,Ut=function(t,e){return{get:function(){return E(this)[t]()},set:e&&function(t){return E(this)[e](t)},configurable:!0,enumerable:!0}};if(a&&(h(zt,"href",Ut("serialize","setHref")),h(zt,"origin",Ut("getOrigin")),h(zt,"protocol",Ut("getProtocol","setProtocol")),h(zt,"username",Ut("getUsername","setUsername")),h(zt,"password",Ut("getPassword","setPassword")),h(zt,"host",Ut("getHost","setHost")),h(zt,"hostname",Ut("getHostname","setHostname")),h(zt,"port",Ut("getPort","setPort")),h(zt,"pathname",Ut("getPathname","setPathname")),h(zt,"search",Ut("getSearch","setSearch")),h(zt,"searchParams",Ut("getSearchParams")),h(zt,"hash",Ut("getHash","setHash"))),l(zt,"toJSON",(function(){return E(this).serialize()}),{enumerable:!0}),l(zt,"toString",(function(){return E(this).serialize()}),{enumerable:!0}),j){var Yt=j.createObjectURL,Gt=j.revokeObjectURL;Yt&&l(Ft,"createObjectURL",c(Yt,j)),Gt&&l(Ft,"revokeObjectURL",c(Gt,j))}x(Ft,"URL"),i({global:!0,constructor:!0,forced:!s,sham:!a},{URL:Ft})},23405:(t,e,r)=>{"use strict";r(91871)},76048:(t,e,r)=>{"use strict";var n=r(57330),o=r(83264);n({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return o(URL.prototype.toString,this)}})},46280:(t,e,r)=>{"use strict";r(47180),r(4613),r(58055),r(86393),r(79040),r(79145),r(16517),r(64145),r(34659),r(95582),r(47661),r(63745),r(85270),r(86481),r(26606),r(19337),r(141),r(52309),r(95027),r(78667),r(55549),r(12042),r(70079),r(69979),r(91910),r(42426),r(52947),r(41721),r(85784),r(17620),r(67352),r(4293),r(30281),r(23949),r(35963),r(8851),r(24133),r(33448),r(7311),r(16798),r(21145),r(87152),r(9253),r(15618),r(81364),r(55635),r(92550),r(16087),r(26568),r(14747),r(58242),r(43247),r(34830),r(5162),r(16021),r(22767),r(23087),r(47185),r(6765),r(86927),r(43542),r(20623),r(22074),r(44837),r(36688),r(45938),r(75640),r(98665),r(72003),r(15034),r(47125),r(75004),r(68825),r(78026),r(83761),r(5582),r(48499),r(80989),r(53733),r(68747),r(92098),r(73694),r(15975),r(43797),r(39286),r(56791),r(73992),r(28161),r(30368),r(63358),r(80900),r(85765),r(39680),r(4141),r(60765),r(66586),r(5225),r(52497),r(28582),r(53470),r(42675),r(31035),r(39192),r(68760),r(92833),r(11936),r(51246),r(38778),r(41450),r(90742),r(63621),r(21741),r(52746),r(51834),r(71243),r(82802),r(71881),r(16146),r(89960),r(13694),r(46748),r(9389),r(94482),r(93406),r(44292),r(57285),r(23484),r(35643),r(13148),r(93219),r(49337),r(31079),r(30419),r(69376),r(86242),r(43161),r(84125),r(26037),r(79200),r(52440),r(6804),r(97800),r(96620),r(78964),r(26204),r(88011),r(1615),r(48590),r(79036),r(76583),r(82590),r(7158),r(99498),r(53023),r(7212),r(60971),r(18045),r(75567),r(62349),r(87803),r(43),r(33043),r(23252),r(16528),r(52821),r(78158),r(52512),r(32752),r(56223),r(62302),r(92781),r(74202),r(49615),r(94209),r(84031),r(33259),r(68011),r(22152),r(47015),r(45238),r(39463),r(56267),r(26395),r(73866),r(49324),r(27153),r(4319),r(39535),r(65667),r(67484),r(52936),r(13684),r(4614),r(77494),r(40536),r(60762),r(4659),r(5604),r(46073),r(95477),r(38039),r(88586),r(39134),r(51257),r(170),r(68266),r(19972),r(98902),r(19540),r(65049),r(75608),r(30452),r(29628),r(71790),r(10901),r(10386),r(70834),r(73526),r(97913),r(24319),r(27807),r(57207),r(97371),r(91897),r(43418),r(68709),r(46255),r(62476),r(42205),r(43334),r(75337),r(97598),r(45433),r(64188),r(84880),r(92002),r(97288),r(38769),r(71465),r(50748),r(74287),r(40476),r(50315),r(72168),r(63923),r(95240),r(6721),r(58700),r(79073),r(10012),r(27457),r(88805),r(38634),r(76878),r(23405),r(94119),r(76048),r(2848),r(41573),r(28449),r(22456),r(1612)},48930:(t,e,r)=>{var n,o,i;function a(){"use strict";a=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",u=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function f(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{f({},"")}catch(t){f=function(t,e,r){return t[e]=r}}function l(t,e,r,o){var i=e&&e.prototype instanceof y?e:y,a=Object.create(i.prototype),s=new A(o||[]);return n(a,"_invoke",{value:S(t,r,s)}),a}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var p={};function y(){}function d(){}function v(){}var g={};f(g,i,(function(){return this}));var b=Object.getPrototypeOf,m=b&&b(b(P([])));m&&m!==e&&r.call(m,i)&&(g=m);var w=v.prototype=y.prototype=Object.create(g);function x(t){["next","throw","return"].forEach((function(e){f(t,e,(function(t){return this._invoke(e,t)}))}))}function k(t,e){function o(n,i,a,u){var c=h(t[n],t,i);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"==s(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,u)}),(function(t){o("throw",t,a,u)})):e.resolve(l).then((function(t){f.value=t,a(f)}),(function(t){return o("throw",t,a,u)}))}u(c.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function S(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=_(a,r);if(s){if(s===p)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=h(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===p)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function _(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,_(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),p;var o=h(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,p;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,p):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,p)}function O(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function E(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function A(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(O,this),this.reset(!0)}function P(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(s(t)+" is not iterable")}return d.prototype=v,n(w,"constructor",{value:v,configurable:!0}),n(v,"constructor",{value:d,configurable:!0}),d.displayName=f(v,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===d||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,v):(t.__proto__=v,f(t,c,"GeneratorFunction")),t.prototype=Object.create(w),t},t.awrap=function(t){return{__await:t}},x(k.prototype),f(k.prototype,u,(function(){return this})),t.AsyncIterator=k,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new k(l(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},x(w),f(w,c,"Generator"),f(w,i,(function(){return this})),f(w,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=P,A.prototype={constructor:A,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(E),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,p):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),p},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),E(r),p}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;E(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:P(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),p}},t}function s(t){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},s(t)}var u,c=function(t){"use strict";var e,r=Object.prototype,n=r.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function c(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var o=e&&e.prototype instanceof g?e:g,i=Object.create(o.prototype),a=new j(n||[]);return i._invoke=function(t,e,r){var n=h;return function(o,i){if(n===y)throw new Error("Generator is already running");if(n===d){if("throw"===o)throw i;return M()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=E(a,r);if(s){if(s===v)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===h)throw n=d,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=y;var u=l(t,e,r);if("normal"===u.type){if(n=r.done?d:p,u.arg===v)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n=d,r.method="throw",r.arg=u.arg)}}}(t,r,a),i}function l(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=f;var h="suspendedStart",p="suspendedYield",y="executing",d="completed",v={};function g(){}function b(){}function m(){}var w={};c(w,i,(function(){return this}));var x=Object.getPrototypeOf,k=x&&x(x(T([])));k&&k!==r&&n.call(k,i)&&(w=k);var S=m.prototype=g.prototype=Object.create(w);function _(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function O(t,e){function r(o,i,a,u){var c=l(t[o],t,i);if("throw"!==c.type){var f=c.arg,h=f.value;return h&&"object"===s(h)&&n.call(h,"__await")?e.resolve(h.__await).then((function(t){r("next",t,a,u)}),(function(t){r("throw",t,a,u)})):e.resolve(h).then((function(t){f.value=t,a(f)}),(function(t){return r("throw",t,a,u)}))}u(c.arg)}var o;this._invoke=function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}}function E(t,r){var n=t.iterator[r.method];if(n===e){if(r.delegate=null,"throw"===r.method){if(t.iterator.return&&(r.method="return",r.arg=e,E(t,r),"throw"===r.method))return v;r.method="throw",r.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var o=l(n,t.iterator,r.arg);if("throw"===o.type)return r.method="throw",r.arg=o.arg,r.delegate=null,v;var i=o.arg;return i?i.done?(r[t.resultName]=i.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,v):i:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,v)}function A(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function P(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function j(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(A,this),this.reset(!0)}function T(t){if(t){var r=t[i];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function r(){for(;++o<t.length;)if(n.call(t,o))return r.value=t[o],r.done=!1,r;return r.value=e,r.done=!0,r};return a.next=a}}return{next:M}}function M(){return{value:e,done:!0}}return b.prototype=m,c(S,"constructor",m),c(m,"constructor",b),b.displayName=c(m,u,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,u,"GeneratorFunction")),t.prototype=Object.create(S),t},t.awrap=function(t){return{__await:t}},_(O.prototype),c(O.prototype,a,(function(){return this})),t.AsyncIterator=O,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new O(f(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},_(S),c(S,u,"Generator"),c(S,i,(function(){return this})),c(S,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){for(;e.length;){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},t.values=T,j.prototype={constructor:j,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(P),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function o(n,o){return s.type="throw",s.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var u=n.call(a,"catchLoc"),c=n.call(a,"finallyLoc");if(u&&c){if(this.prev<a.catchLoc)return o(a.catchLoc,!0);if(this.prev<a.finallyLoc)return o(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return o(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return o(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),P(r),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;P(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:T(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),v}},t}("object"===s(t=r.nmd(t))?t.exports:{});try{regeneratorRuntime=c}catch(t){"object"===("undefined"==typeof globalThis?"undefined":s(globalThis))?globalThis.regeneratorRuntime=c:Function("r","regeneratorRuntime = r")(c)}Number.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},String.fromCodePoint||function(t){var e=function(e){for(var r=[],n=0,o="",i=0,a=arguments.length;i!==a;++i){var s=+arguments[i];if(!(s<1114111&&s>>>0===s))throw RangeError("Invalid code point: "+s);s<=65535?n=r.push(s):(s-=65536,n=r.push(55296+(s>>10),s%1024+56320)),n>=16383&&(o+=t.apply(null,r),r.length=0)}return o+t.apply(null,r)};try{Object.defineProperty(String,"fromCodePoint",{value:e,configurable:!0,writable:!0})}catch(t){String.fromCodePoint=e}}(String.fromCharCode),Object.is||(Object.is=function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}),String.prototype.codePointAt||function(){"use strict";var t=function(){try{var t={},e=Object.defineProperty,r=e(t,t,t)&&e}catch(t){}return r}(),e=function(t){if(null==this)throw TypeError();var e=String(this),r=e.length,n=t?Number(t):0;if(n!=n&&(n=0),!(n<0||n>=r)){var o,i=e.charCodeAt(n);return i>=55296&&i<=56319&&r>n+1&&(o=e.charCodeAt(n+1))>=56320&&o<=57343?1024*(i-55296)+o-56320+65536:i}};t?t(String.prototype,"codePointAt",{value:e,configurable:!0,writable:!0}):String.prototype.codePointAt=e}(),Math.log10=Math.log10||function(t){return Math.log(t)*Math.LOG10E},u=function(){return function t(e,r,n){function o(a,s){if(!r[a]){if(!e[a]){if(i)return i(a,!0);var u=new Error("Cannot find module '"+a+"'");throw u.code="MODULE_NOT_FOUND",u}var c=r[a]={exports:{}};e[a][0].call(c.exports,(function(t){return o(e[a][1][t]||t)}),c,c.exports,t,e,r,n)}return r[a].exports}for(var i=void 0,a=0;a<n.length;a++)o(n[a]);return o}({1:[function(t,e,r){"use strict";var n=t("./utils"),o=function(){var t=n.stringToArray,e=["Zero","One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"],r=["Zeroth","First","Second","Third","Fourth","Fifth","Sixth","Seventh","Eighth","Ninth","Tenth","Eleventh","Twelfth","Thirteenth","Fourteenth","Fifteenth","Sixteenth","Seventeenth","Eighteenth","Nineteenth"],o=["Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety","Hundred"],i=["Thousand","Million","Billion","Trillion"],a={};e.forEach((function(t,e){a[t.toLowerCase()]=e})),r.forEach((function(t,e){a[t.toLowerCase()]=e})),o.forEach((function(t,e){var r=t.toLowerCase();a[r]=10*(e+2),a[r.substring(0,t.length-1)+"ieth"]=a[r]})),a.hundredth=100,i.forEach((function(t,e){var r=t.toLowerCase(),n=Math.pow(10,3*(e+1));a[r]=n,a[r+"th"]=n}));var s=[[1e3,"m"],[900,"cm"],[500,"d"],[400,"cd"],[100,"c"],[90,"xc"],[50,"l"],[40,"xl"],[10,"x"],[9,"ix"],[5,"v"],[4,"iv"],[1,"i"]],u={M:1e3,D:500,C:100,L:50,X:10,V:5,I:1};function c(t){for(var e=0;e<s.length;e++){var r=s[e];if(t>=r[0])return r[1]+c(t-r[0])}return""}function f(t,e){if(void 0!==t)return p(t=Math.floor(t),d(e))}var l={DECIMAL:"decimal",LETTERS:"letters",ROMAN:"roman",WORDS:"words",SEQUENCE:"sequence"},h={UPPER:"upper",LOWER:"lower",TITLE:"title"};function p(n,a){var s,u=n<0;switch(n=Math.abs(n),a.primary){case l.LETTERS:s=function(t,e){for(var r=[],n=e.charCodeAt(0);t>0;)r.unshift(String.fromCharCode((t-1)%26+n)),t=Math.floor((t-1)/26);return r.join("")}(n,a.case===h.UPPER?"A":"a");break;case l.ROMAN:s=c(n),a.case===h.UPPER&&(s=s.toUpperCase());break;case l.WORDS:s=function(t,n){return function t(n,a,s){var u="";if(n<=19)u=(a?" and ":"")+(s?r[n]:e[n]);else if(n<100){var c=Math.floor(n/10),f=n%10;u=(a?" and ":"")+o[c-2],f>0?u+="-"+t(f,!1,s):s&&(u=u.substring(0,u.length-1)+"ieth")}else if(n<1e3){var l=Math.floor(n/100),h=n%100;u=(a?", ":"")+e[l]+" Hundred",h>0?u+=t(h,!0,s):s&&(u+="th")}else{var p=Math.floor(Math.log10(n)/3);p>i.length&&(p=i.length);var y=Math.pow(10,3*p),d=Math.floor(n/y),v=n-d*y;u=(a?", ":"")+t(d,!1,!1)+" "+i[p-1],v>0?u+=t(v,!0,s):s&&(u+="th")}return u}(t,!1,n)}(n,a.ordinal),a.case===h.UPPER?s=s.toUpperCase():a.case===h.LOWER&&(s=s.toLowerCase());break;case l.DECIMAL:s=""+n;var f=a.mandatoryDigits-s.length;if(f>0){var p=new Array(f+1).join("0");s=p+s}if(48!==a.zeroCode&&(s=t(s).map((function(t){return String.fromCodePoint(t.codePointAt(0)+a.zeroCode-48)})).join("")),a.regular)for(var y=Math.floor((s.length-1)/a.groupingSeparators.position);y>0;y--){var d=s.length-y*a.groupingSeparators.position;s=s.substr(0,d)+a.groupingSeparators.character+s.substr(d)}else a.groupingSeparators.reverse().forEach((function(t){var e=s.length-t.position;s=s.substr(0,e)+t.character+s.substr(e)}));if(a.ordinal){var v={1:"st",2:"nd",3:"rd"}[s[s.length-1]];(!v||s.length>1&&"1"===s[s.length-2])&&(v="th"),s+=v}break;case l.SEQUENCE:throw{code:"D3130",value:a.token}}return u&&(s="-"+s),s}var y=[48,1632,1776,1984,2406,2534,2662,2790,2918,3046,3174,3302,3430,3558,3664,3792,3872,4160,4240,6112,6160,6470,6608,6784,6800,6992,7088,7232,7248,42528,43216,43264,43472,43504,43600,44016,65296];function d(e){var r,n={type:"integer",primary:l.DECIMAL,case:h.LOWER,ordinal:!1},o=e.lastIndexOf(";");switch(-1===o?r=e:(r=e.substring(0,o),"o"===e.substring(o+1)[0]&&(n.ordinal=!0)),r){case"A":n.case=h.UPPER;case"a":n.primary=l.LETTERS;break;case"I":n.case=h.UPPER;case"i":n.primary=l.ROMAN;break;case"W":n.case=h.UPPER,n.primary=l.WORDS;break;case"Ww":n.case=h.TITLE,n.primary=l.WORDS;break;case"w":n.primary=l.WORDS;break;default:var i=null,a=0,s=0,u=[],c=0;if(t(r).map((function(t){return t.codePointAt(0)})).reverse().forEach((function(t){for(var e=!1,r=0;r<y.length;r++){var n=y[r];if(t>=n&&t<=n+9){if(e=!0,a++,c++,null===i)i=n;else if(n!==i)throw{code:"D3131"};break}}e||(35===t?(c++,s++):u.push({position:c,character:String.fromCodePoint(t)}))})),a>0){n.primary=l.DECIMAL,n.zeroCode=i,n.mandatoryDigits=a,n.optionalDigits=s;var f=function(t){if(0===t.length)return 0;for(var e=t[0].character,r=1;r<t.length;r++)if(t[r].character!==e)return 0;for(var n=t.map((function(t){return t.position})),o=n.reduce((function t(e,r){return 0===r?e:t(r,e%r)})),i=1;i<=n.length;i++)if(-1===n.indexOf(i*o))return 0;return o}(u);f>0?(n.regular=!0,n.groupingSeparators={position:f,character:u[0].character}):(n.regular=!1,n.groupingSeparators=u)}else n.primary=l.SEQUENCE,n.token=r}return n}var v={Y:"1",M:"1",D:"1",d:"1",F:"n",W:"1",w:"1",X:"1",x:"1",H:"1",h:"1",P:"n",m:"01",s:"01",f:"1",Z:"01:01",z:"01:01",C:"n",E:"n"};function g(t){for(var e=[],r={type:"datetime",parts:e},n=function(r,n){if(n>r){var o=t.substring(r,n);o=o.split("]]").join("]"),e.push({type:"literal",value:o})}},o=0,i=0;i<t.length;){if("["===t.charAt(i)){if("["===t.charAt(i+1)){n(o,i),e.push({type:"literal",value:"["}),o=i+=2;continue}if(n(o,i),o=i,-1===(i=t.indexOf("]",o)))throw{code:"D3135"};var a,s=t.substring(o+1,i),u={type:"marker",component:(s=s.split(/\s+/).join("")).charAt(0)},c=s.lastIndexOf(",");if(-1!==c){var f=s.substring(c+1),l=f.indexOf("-"),p=void 0,y=void 0,g=function(t){return void 0===t||"*"===t?void 0:parseInt(t)};-1===l?p=f:(p=f.substring(0,l),y=f.substring(l+1));var b={min:g(p),max:g(y)};u.width=b,a=s.substring(1,c)}else a=s.substring(1);if(1===a.length)u.presentation1=a;else if(a.length>1){var m=a.charAt(a.length-1);-1!=="atco".indexOf(m)?(u.presentation2=m,"o"===m&&(u.ordinal=!0),u.presentation1=a.substring(0,a.length-1)):u.presentation1=a}else u.presentation1=v[u.component];if(void 0===u.presentation1)throw{code:"D3132",value:u.component};if("n"===u.presentation1[0])u.names=h.LOWER;else if("N"===u.presentation1[0])"n"===u.presentation1[1]?u.names=h.TITLE:u.names=h.UPPER;else if(-1!=="YMDdFWwXxHhmsf".indexOf(u.component)){var w=u.presentation1;if(u.presentation2&&(w+=";"+u.presentation2),u.integerFormat=d(w),u.width&&void 0!==u.width.min&&u.integerFormat.mandatoryDigits<u.width.min&&(u.integerFormat.mandatoryDigits=u.width.min),-1!=="YMD".indexOf(u.component))if(u.n=-1,u.width&&void 0!==u.width.max)u.n=u.width.max,u.integerFormat.mandatoryDigits=u.n;else{var x=u.integerFormat.mandatoryDigits+u.integerFormat.optionalDigits;x>=2&&(u.n=x)}}"Z"!==u.component&&"z"!==u.component||(u.integerFormat=d(u.presentation1)),e.push(u),o=i+1}i++}return n(o,i),r}var b=["","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],m=["January","February","March","April","May","June","July","August","September","October","November","December"],w=864e5,x=function(t){var e=Date.UTC(t.year,t.month),r=new Date(e).getUTCDay();return 0===r&&(r=7),r>4?e+(8-r)*w:e-(r-1)*w},k=function t(e,r){return{year:e,month:r,nextMonth:function(){return 11===r?t(e+1,0):t(e,r+1)},previousMonth:function(){return 0===r?t(e-1,11):t(e,r-1)},nextYear:function(){return t(e+1,r)},previousYear:function(){return t(e-1,r)}}},S=function(t,e){return(e-t)/6048e5+1},_=function(t,e){var r;switch(e){case"Y":r=t.getUTCFullYear();break;case"M":r=t.getUTCMonth()+1;break;case"D":r=t.getUTCDate();break;case"d":r=(Date.UTC(t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate())-Date.UTC(t.getUTCFullYear(),0))/w+1;break;case"F":0===(r=t.getUTCDay())&&(r=7);break;case"W":var n=k(t.getUTCFullYear(),0),o=x(n),i=Date.UTC(n.year,t.getUTCMonth(),t.getUTCDate()),a=S(o,i);if(a>52)i>=x(n.nextYear())&&(a=1);else if(a<1){var s=x(n.previousYear());a=S(s,i)}r=Math.floor(a);break;case"w":var u=k(t.getUTCFullYear(),t.getUTCMonth()),c=x(u),f=Date.UTC(u.year,u.month,t.getUTCDate()),l=S(c,f);if(l>4)f>=x(u.nextMonth())&&(l=1);else if(l<1){var h=x(u.previousMonth());l=S(h,f)}r=Math.floor(l);break;case"X":var p=k(t.getUTCFullYear(),0),y=x(p),d=x(p.nextYear()),v=t.getTime();r=v<y?p.year-1:v>=d?p.year+1:p.year;break;case"x":var g=k(t.getUTCFullYear(),t.getUTCMonth()),b=x(g),m=g.nextMonth(),_=x(m),O=t.getTime();r=O<b?g.previousMonth().month+1:O>=_?m.month+1:g.month+1;break;case"H":r=t.getUTCHours();break;case"h":r=t.getUTCHours(),0==(r%=12)&&(r=12);break;case"P":r=t.getUTCHours()>=12?"pm":"am";break;case"m":r=t.getUTCMinutes();break;case"s":r=t.getUTCSeconds();break;case"f":r=t.getUTCMilliseconds();break;case"Z":case"z":break;case"C":case"E":r="ISO"}return r},O=null;function E(t,e,r){var n,o=0,i=0;if(void 0!==r){var a=parseInt(r);o=Math.floor(a/100),i=a%100}void 0===e?(null===O&&(O=g("[Y0001]-[M01]-[D01]T[H01]:[m01]:[s01].[f001][Z01:01t]")),n=O):n=g(e);var s=new Date(t+60*(60*o+i)*1e3),u="";return n.parts.forEach((function(t){"literal"===t.type?u+=t.value:u+=function(t,e){var r=_(t,e.component);if(-1!=="YMDdFWwXxHhms".indexOf(e.component))if("Y"===e.component&&-1!==e.n&&(r%=Math.pow(10,e.n)),e.names){if("M"===e.component||"x"===e.component)r=m[r-1];else{if("F"!==e.component)throw{code:"D3133",value:e.component};r=b[r]}e.names===h.UPPER?r=r.toUpperCase():e.names===h.LOWER&&(r=r.toLowerCase()),e.width&&r.length>e.width.max&&(r=r.substring(0,e.width.max))}else r=p(r,e.integerFormat);else if("f"===e.component)r=p(r,e.integerFormat);else if("Z"===e.component||"z"===e.component){var n=100*o+i;if(e.integerFormat.regular)r=p(n,e.integerFormat);else{var a=e.integerFormat.mandatoryDigits;if(1===a||2===a)r=p(o,e.integerFormat),0!==i&&(r+=":"+f(i,"00"));else{if(3!==a&&4!==a)throw{code:"D3134",value:a};r=p(n,e.integerFormat)}}n>=0&&(r="+"+r),"z"===e.component&&(r="GMT"+r),0===n&&"t"===e.presentation2&&(r="Z")}return r}(s,t)})),u}function A(t){var e={};if("datetime"===t.type)e.type="datetime",e.parts=t.parts.map((function(t){var e={};if("literal"===t.type)e.regex=t.value.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");else if("Z"===t.component||"z"===t.component){var r;Array.isArray(t.integerFormat.groupingSeparators)||(r=t.integerFormat.groupingSeparators),e.regex="","z"===t.component&&(e.regex="GMT"),e.regex+="[-+][0-9]+",r&&(e.regex+=r.character+"[0-9]+"),e.parse=function(e){"z"===t.component&&(e=e.substring(3));var n=0,o=0;return r?(n=Number.parseInt(e.substring(0,e.indexOf(r.character))),o=Number.parseInt(e.substring(e.indexOf(r.character)+1))):e.length-1<=2?n=Number.parseInt(e):(n=Number.parseInt(e.substring(0,3)),o=Number.parseInt(e.substring(3))),60*n+o}}else if(t.integerFormat)t.integerFormat.n=t.n,e=A(t.integerFormat);else{e.regex="[a-zA-Z]+";var n={};if("M"===t.component||"x"===t.component)m.forEach((function(e,r){t.width&&t.width.max?n[e.substring(0,t.width.max)]=r+1:n[e]=r+1}));else if("F"===t.component)b.forEach((function(e,r){r>0&&(t.width&&t.width.max?n[e.substring(0,t.width.max)]=r:n[e]=r)}));else{if("P"!==t.component)throw{code:"D3133",value:t.component};n={am:0,AM:0,pm:1,PM:1}}e.parse=function(t){return n[t]}}return e.component=t.component,e}));else{e.type="integer";var r,n=t.case===h.UPPER;switch(r=t.n&&t.n>0?0===t.optionalDigits?"{".concat(t.n,"}"):"{".concat(t.n-t.optionalDigits,",").concat(t.n,"}"):"+",t.primary){case l.LETTERS:e.regex=n?"[A-Z]+":"[a-z]+",e.parse=function(t){return function(t,e){for(var r=e.charCodeAt(0),n=0,o=0;o<t.length;o++)n+=(t.charCodeAt(t.length-o-1)-r+1)*Math.pow(26,o);return n}(t,n?"A":"a")};break;case l.ROMAN:e.regex=n?"[MDCLXVI]+":"[mdclxvi]+",e.parse=function(t){return function(t){for(var e=0,r=1,n=t.length-1;n>=0;n--){var o=t[n],i=u[o];i<r?e-=i:(r=i,e+=i)}return e}(n?t:t.toUpperCase())};break;case l.WORDS:e.regex="(?:"+Object.keys(a).concat("and","[\\-, ]").join("|")+")+",e.parse=function(t){return e=t.toLowerCase().split(/,\s|\sand\s|[\s\\-]/).map((function(t){return a[t]})),r=[0],e.forEach((function(t){if(t<100){var e=r.pop();e>=1e3&&(r.push(e),e=0),r.push(e+t)}else r.push(r.pop()*t)})),r.reduce((function(t,e){return t+e}),0);var e,r};break;case l.DECIMAL:e.regex="[0-9]".concat(r),t.ordinal&&(e.regex+="(?:th|st|nd|rd)"),e.parse=function(e){var r=e;return t.ordinal&&(r=e.substring(0,e.length-2)),t.regular?r=r.split(",").join(""):t.groupingSeparators.forEach((function(t){r=r.split(t.character).join("")})),48!==t.zeroCode&&(r=r.split("").map((function(e){return String.fromCodePoint(e.codePointAt(0)-t.zeroCode+48)})).join("")),parseInt(r)};break;case l.SEQUENCE:throw{code:"D3130",value:t.token}}}return e}function P(t,e){var r=A(g(e)),n="^"+r.parts.map((function(t){return"("+t.regex+")"})).join("")+"$",o=new RegExp(n,"i").exec(t);if(null!==o){for(var i={},a=1;a<o.length;a++){var s=r.parts[a-1];s.parse&&(i[s.component]=s.parse(o[a]))}if(0===Object.getOwnPropertyNames(i).length)return;var u=0,c=function(t){u<<=1,u+=t?1:0},f=function(t){return!(~t&u||!(t&u))};"YXMxWwdD".split("").forEach((function(t){return c(i[t])}));var l=!f(161)&&f(130),h=f(84),p=!h&&f(72);u=0,"PHhmsf".split("").forEach((function(t){return c(i[t])}));var y=!f(23)&&f(47),d=(l?"YD":h?"XxwF":p?"XWF":"YMD")+(y?"Phmsf":"Hmsf"),v=this.environment.timestamp,b=!1,m=!1;if(d.split("").forEach((function(t){if(void 0===i[t])b?(i[t]=-1!=="MDd".indexOf(t)?1:0,m=!0):i[t]=_(v,t);else if(b=!0,m)throw{code:"D3136"}})),i.M>0?i.M-=1:i.M=0,l){var w=Date.UTC(i.Y,0),x=1e3*(i.d-1)*60*60*24,k=new Date(w+x);i.M=k.getUTCMonth(),i.D=k.getUTCDate()}if(h)throw{code:"D3136"};if(p)throw{code:"D3136"};y&&(i.H=12===i.h?0:i.h,1===i.P&&(i.H+=12));var S=Date.UTC(i.Y,i.M,i.D,i.H,i.m,i.s,i.f);return(i.Z||i.z)&&(S-=60*(i.Z||i.z)*1e3),S}}var j=new RegExp("^\\d{4}(-[01]\\d)*(-[0-3]\\d)*(T[0-2]\\d:[0-5]\\d:[0-5]\\d)*(\\.\\d+)?([+-][0-2]\\d:?[0-5]\\d|Z)?$");return{formatInteger:f,parseInteger:function(t,e){if(void 0!==t)return A(d(e)).parse(t)},fromMillis:function(t,e,r){if(void 0!==t)return E.call(this,t,e,r)},toMillis:function(t,e){if(void 0!==t){if(void 0===e){if(!j.test(t))throw{stack:(new Error).stack,code:"D3110",value:t};return Date.parse(t)}return P.call(this,t,e)}}}}();e.exports=o},{"./utils":6}],2:[function(t,e,n){(function(r){(function(){"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=t("./utils"),i=function(){var t=a().mark(j),e=a().mark(T),i=a().mark(M),s=a().mark(R),u=a().mark(I),c=a().mark(B),f=a().mark(N),l=a().mark(F),h=a().mark(z),p=a().mark(Y),y=a().mark(G),d=a().mark(H),v=o.isNumeric,g=o.isArrayOfStrings,b=o.isArrayOfNumbers,m=o.createSequence,w=o.isSequence,x=o.isFunction,k=o.isLambda,S=o.isIterable,_=o.getFunctionArity,O=o.isDeepEqual,E=o.stringToArray;function A(t,e,r){if(void 0!==t){var n=E(t),o=n.length;if(o+e<0&&(e=0),void 0!==r){if(r<=0)return"";var i=e>=0?e+r:o+e+r;return n.slice(e,i).join("")}return n.slice(e).join("")}}function P(t){if(void 0!==t)return E(t).length}function j(e,r){var n;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(n=e.apply(this,[r]),!S(n)){t.next=4;break}return t.delegateYield(n,"t0",3);case 3:n=t.t0;case 4:if(!n||"number"==typeof n.start||"number"===n.end||Array.isArray(n.groups)||x(n.next)){t.next=6;break}throw{code:"T1010",stack:(new Error).stack};case 6:return t.abrupt("return",n);case 7:case"end":return t.stop()}}),t,this)}function T(t,r){var n,o;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==t){e.next=2;break}return e.abrupt("return",void 0);case 2:if("string"!=typeof r){e.next=6;break}n=-1!==t.indexOf(r),e.next=9;break;case 6:return e.delegateYield(j(r,t),"t0",7);case 7:o=e.t0,n=void 0!==o;case 9:return e.abrupt("return",n);case 10:case"end":return e.stop()}}),e)}function M(t,e,r){var n,o,s;return a().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:if(!(r<0)){i.next=4;break}throw{stack:(new Error).stack,value:r,code:"D3040",index:3};case 4:if(n=m(),!(void 0===r||r>0)){i.next=17;break}return o=0,i.delegateYield(j(e,t),"t0",8);case 8:if(void 0===(s=i.t0)){i.next=17;break}case 10:if(void 0===s||!(void 0===r||o<r)){i.next=17;break}return n.push({match:s.match,index:s.start,groups:s.groups}),i.delegateYield(j(s.next),"t1",13);case 13:s=i.t1,o++,i.next=10;break;case 17:return i.abrupt("return",n);case 18:case"end":return i.stop()}}),i)}function R(t,e,r,n){var o,i,u,c,f,l,h,p;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:if(o=this,""!==e){a.next=5;break}throw{code:"D3010",stack:(new Error).stack,value:e,index:2};case 5:if(!(n<0)){a.next=7;break}throw{code:"D3011",stack:(new Error).stack,value:n,index:4};case 7:if(i="string"==typeof r?function(t){for(var e="",n=0,o=r.indexOf("$",n);-1!==o&&n<r.length;){e+=r.substring(n,o),n=o+1;var i=r.charAt(n);if("$"===i)e+="$",n++;else if("0"===i)e+=t.match,n++;else{var a;if(a=0===t.groups.length?1:Math.floor(Math.log(t.groups.length)*Math.LOG10E)+1,o=parseInt(r.substring(n,n+a),10),a>1&&o>t.groups.length&&(o=parseInt(r.substring(n,n+a-1),10)),isNaN(o))e+="$";else{if(t.groups.length>0){var s=t.groups[o-1];void 0!==s&&(e+=s)}n+=o.toString().length}}o=r.indexOf("$",n)}return e+r.substring(n)}:r,u="",c=0,!(void 0===n||n>0)){a.next=44;break}if(f=0,"string"!=typeof e){a.next=18;break}for(l=t.indexOf(e,c);-1!==l&&(void 0===n||f<n);)u+=t.substring(c,l),u+=r,c=l+e.length,f++,l=t.indexOf(e,c);u+=t.substring(c),a.next=42;break;case 18:return a.delegateYield(j(e,t),"t0",19);case 19:if(void 0===(h=a.t0)){a.next=41;break}case 21:if(void 0===h||!(void 0===n||f<n)){a.next=38;break}if(u+=t.substring(c,h.start),p=i.apply(o,[h]),!S(p)){a.next=27;break}return a.delegateYield(p,"t1",26);case 26:p=a.t1;case 27:if("string"!=typeof p){a.next=31;break}u+=p,a.next=32;break;case 31:throw{code:"D3012",stack:(new Error).stack,value:p};case 32:return c=h.start+h.match.length,f++,a.delegateYield(j(h.next),"t2",35);case 35:h=a.t2,a.next=21;break;case 38:u+=t.substring(c),a.next=42;break;case 41:u=t;case 42:a.next=45;break;case 44:u=t;case 45:return a.abrupt("return",u);case 46:case"end":return a.stop()}}),s,this)}function I(t,e,r){var n,o,i,s;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:if(!(r<0)){a.next=4;break}throw{code:"D3020",stack:(new Error).stack,value:r,index:3};case 4:if(n=[],!(void 0===r||r>0)){a.next=27;break}if("string"!=typeof e){a.next=10;break}n=t.split(e,r),a.next=27;break;case 10:return o=0,a.delegateYield(j(e,t),"t0",12);case 12:if(void 0===(i=a.t0)){a.next=26;break}s=0;case 15:if(void 0===i||!(void 0===r||o<r)){a.next=23;break}return n.push(t.substring(s,i.start)),s=i.end,a.delegateYield(j(i.next),"t1",19);case 19:i=a.t1,o++,a.next=15;break;case 23:(void 0===r||o<r)&&n.push(t.substring(s)),a.next=27;break;case 26:n.push(t);case 27:return a.abrupt("return",n);case 28:case"end":return a.stop()}}),u)}function C(t,e){var r;if(void 0!==t){if(e){var n=t.toString().split("e");t=+(n[0]+"e"+(n[1]?+n[1]+e:e))}var o=(r=Math.round(t))-t;return.5===Math.abs(o)&&1===Math.abs(r%2)&&(r-=1),e&&(n=r.toString().split("e"),r=+(n[0]+"e"+(n[1]?+n[1]-e:-e))),Object.is(r,-0)&&(r=0),r}}function L(t){if(void 0!==t){var e=!1;return Array.isArray(t)?1===t.length?e=L(t[0]):t.length>1&&(e=t.filter((function(t){return L(t)})).length>0):"string"==typeof t?t.length>0&&(e=!0):v(t)?0!==t&&(e=!0):null!==t&&"object"===n(t)?Object.keys(t).length>0&&(e=!0):"boolean"==typeof t&&!0===t&&(e=!0),e}}function D(t,e,r,n){var o=[e],i=_(t);return i>=2&&o.push(r),i>=3&&o.push(n),o}function B(t,e){var r,n,o,i;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:r=m(),n=0;case 4:if(!(n<t.length)){a.next=12;break}return o=D(e,t[n],n,t),a.delegateYield(e.apply(this,o),"t0",7);case 7:void 0!==(i=a.t0)&&r.push(i);case 9:n++,a.next=4;break;case 12:return a.abrupt("return",r);case 13:case"end":return a.stop()}}),c,this)}function N(t,e){var r,n,o,i;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:r=m(),n=0;case 4:if(!(n<t.length)){a.next=13;break}return o=t[n],i=D(e,o,n,t),a.delegateYield(e.apply(this,i),"t0",8);case 8:L(a.t0)&&r.push(o);case 10:n++,a.next=4;break;case 13:return a.abrupt("return",r);case 14:case"end":return a.stop()}}),f,this)}function F(t,e){var r,n,o,i,s,u,c;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:r=!1,o=0;case 4:if(!(o<t.length)){a.next=22;break}if(i=t[o],s=!0,void 0===e){a.next=12;break}return u=D(e,i,o,t),a.delegateYield(e.apply(this,u),"t0",10);case 10:c=a.t0,s=L(c);case 12:if(!s){a.next=19;break}if(r){a.next=18;break}n=i,r=!0,a.next=19;break;case 18:throw{stack:(new Error).stack,code:"D3138",index:o};case 19:o++,a.next=4;break;case 22:if(r){a.next=24;break}throw{stack:(new Error).stack,code:"D3139"};case 24:return a.abrupt("return",n);case 25:case"end":return a.stop()}}),l,this)}function z(t,e,r){var n,o,i,s;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(void 0!==t){a.next=2;break}return a.abrupt("return",void 0);case 2:if(!((o=_(e))<2)){a.next=5;break}throw{stack:(new Error).stack,code:"D3050",index:1};case 5:void 0===r&&t.length>0?(n=t[0],i=1):(n=r,i=0);case 6:if(!(i<t.length)){a.next=15;break}return s=[n,t[i]],o>=3&&s.push(i),o>=4&&s.push(t),a.delegateYield(e.apply(this,s),"t0",11);case 11:n=a.t0,i++,a.next=6;break;case 15:return a.abrupt("return",n);case 16:case"end":return a.stop()}}),h,this)}function U(t,e){return void 0===t?e:void 0===e?t:(Array.isArray(t)||(t=m(t)),Array.isArray(e)||(e=[e]),t.concat(e))}function Y(t,e){var r,n,o,i;return a().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:r=m(),s.t0=a().keys(t);case 2:if((s.t1=s.t0()).done){s.next=10;break}return n=s.t1.value,o=D(e,t[n],n,t),s.delegateYield(e.apply(this,o),"t2",6);case 6:void 0!==(i=s.t2)&&r.push(i),s.next=2;break;case 10:return s.abrupt("return",r);case 11:case"end":return s.stop()}}),p,this)}function G(t,e){var r,n,o,i;return a().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:if(void 0!==t){s.next=2;break}return s.abrupt("return",void 0);case 2:if(!(t.length<=1)){s.next=4;break}return s.abrupt("return",t);case 4:if(void 0!==e){s.next=10;break}if(b(t)||g(t)){s.next=7;break}throw{stack:(new Error).stack,code:"D3070",index:1};case 7:r=a().mark((function t(e,r){return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.abrupt("return",e>r);case 1:case"end":return t.stop()}}),t)})),s.next=11;break;case 10:r=e;case 11:return n=a().mark((function t(e,n){var o,i;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return o=a().mark((function t(e,n,o){return a().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(0!==n.length){i.next=4;break}Array.prototype.push.apply(e,o),i.next=16;break;case 4:if(0!==o.length){i.next=8;break}Array.prototype.push.apply(e,n),i.next=16;break;case 8:return i.delegateYield(r(n[0],o[0]),"t0",9);case 9:if(!i.t0){i.next=14;break}return e.push(o[0]),i.delegateYield(t(e,n,o.slice(1)),"t1",12);case 12:i.next=16;break;case 14:return e.push(n[0]),i.delegateYield(t(e,n.slice(1),o),"t2",16);case 16:case"end":return i.stop()}}),t)})),i=[],t.delegateYield(o(i,e,n),"t0",3);case 3:return t.abrupt("return",i);case 4:case"end":return t.stop()}}),t)})),o=a().mark((function t(e){var r,o,i;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(Array.isArray(e)&&!(e.length<=1)){a.next=4;break}return a.abrupt("return",e);case 4:return r=Math.floor(e.length/2),o=e.slice(0,r),i=e.slice(r),a.delegateYield(t(o),"t0",8);case 8:return o=a.t0,a.delegateYield(t(i),"t1",10);case 10:return i=a.t1,a.delegateYield(n(o,i),"t2",12);case 12:return a.abrupt("return",a.t2);case 13:case"end":return a.stop()}}),t)})),s.delegateYield(o(t),"t0",14);case 14:return i=s.t0,s.abrupt("return",i);case 16:case"end":return s.stop()}}),y)}function H(t,e){var r,n,o,i;return a().wrap((function(s){for(;;)switch(s.prev=s.next){case 0:r={},s.t0=a().keys(t);case 2:if((s.t1=s.t0()).done){s.next=11;break}return n=s.t1.value,o=t[n],i=D(e,o,n,t),s.delegateYield(e.apply(this,i),"t2",7);case 7:L(s.t2)&&(r[n]=o),s.next=2;break;case 11:return 0===Object.keys(r).length&&(r=void 0),s.abrupt("return",r);case 13:case"end":return s.stop()}}),d,this)}return{sum:function(t){if(void 0!==t){var e=0;return t.forEach((function(t){e+=t})),e}},count:function(t){return void 0===t?0:t.length},max:function(t){if(void 0!==t&&0!==t.length)return Math.max.apply(Math,t)},min:function(t){if(void 0!==t&&0!==t.length)return Math.min.apply(Math,t)},average:function(t){if(void 0!==t&&0!==t.length){var e=0;return t.forEach((function(t){e+=t})),e/t.length}},string:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(void 0!==t){var r;if("string"==typeof t)r=t;else if(x(t))r="";else{if("number"==typeof t&&!isFinite(t))throw{code:"D3001",value:t,stack:(new Error).stack};var n=e?2:0;Array.isArray(t)&&t.outerWrapper&&(t=t[0]),r=JSON.stringify(t,(function(t,e){return null!=e&&e.toPrecision&&v(e)?Number(e.toPrecision(15)):e&&x(e)?"":e}),n)}return r}},substring:A,substringBefore:function(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(0,r):t}},substringAfter:function(t,e){if(void 0!==t){var r=t.indexOf(e);return r>-1?t.substr(r+e.length):t}},lowercase:function(t){if(void 0!==t)return t.toLowerCase()},uppercase:function(t){if(void 0!==t)return t.toUpperCase()},length:P,trim:function(t){if(void 0!==t){var e=t.replace(/[ \t\n\r]+/gm," ");return" "===e.charAt(0)&&(e=e.substring(1))," "===e.charAt(e.length-1)&&(e=e.substring(0,e.length-1)),e}},pad:function(t,e,r){if(void 0!==t){var n;void 0!==r&&0!==r.length||(r=" ");var o=Math.abs(e)-P(t);if(o>0){var i=new Array(o+1).join(r);r.length>1&&(i=A(i,0,o)),n=e>0?t+i:i+t}else n=t;return n}},match:M,contains:T,replace:R,split:I,join:function(t,e){if(void 0!==t)return void 0===e&&(e=""),t.join(e)},formatNumber:function(t,e,r){if(void 0!==t){var n={"decimal-separator":".","grouping-separator":",","exponent-separator":"e",infinity:"Infinity","minus-sign":"-",NaN:"NaN",percent:"%","per-mille":"‰","zero-digit":"0",digit:"#","pattern-separator":";"};void 0!==r&&Object.keys(r).forEach((function(t){n[t]=r[t]}));for(var o=[],i=n["zero-digit"].charCodeAt(0),a=i;a<i+10;a++)o.push(String.fromCharCode(a));var s=o.concat([n["decimal-separator"],n["exponent-separator"],n["grouping-separator"],n.digit,n["pattern-separator"]]),u=e.split(n["pattern-separator"]);if(u.length>2)throw{code:"D3080",stack:(new Error).stack};var c=u.map((function(t){var e,r,o,i,a=function(){for(var e,r=0;r<t.length;r++)if(e=t.charAt(r),-1!==s.indexOf(e)&&e!==n["exponent-separator"])return t.substring(0,r)}(),u=function(){for(var e,r=t.length-1;r>=0;r--)if(e=t.charAt(r),-1!==s.indexOf(e)&&e!==n["exponent-separator"])return t.substring(r+1)}(),c=t.substring(a.length,t.length-u.length),f=t.indexOf(n["exponent-separator"],a.length);-1===f||f>t.length-u.length?(e=c,r=void 0):(e=c.substring(0,f),r=c.substring(f+1));var l=e.indexOf(n["decimal-separator"]);return-1===l?(o=e,i=u):(o=e.substring(0,l),i=e.substring(l+1)),{prefix:a,suffix:u,activePart:c,mantissaPart:e,exponentPart:r,integerPart:o,fractionalPart:i,subpicture:t}}));c.forEach((function(t){var e,r,i=t.subpicture,a=i.indexOf(n["decimal-separator"]);a!==i.lastIndexOf(n["decimal-separator"])&&(e="D3081"),i.indexOf(n.percent)!==i.lastIndexOf(n.percent)&&(e="D3082"),i.indexOf(n["per-mille"])!==i.lastIndexOf(n["per-mille"])&&(e="D3083"),-1!==i.indexOf(n.percent)&&-1!==i.indexOf(n["per-mille"])&&(e="D3084");var u=!1;for(r=0;r<t.mantissaPart.length;r++){var c=t.mantissaPart.charAt(r);if(-1!==o.indexOf(c)||c===n.digit){u=!0;break}}u||(e="D3085"),-1!==t.activePart.split("").map((function(t){return-1===s.indexOf(t)?"p":"a"})).join("").indexOf("p")&&(e="D3086"),-1!==a?i.charAt(a-1)!==n["grouping-separator"]&&i.charAt(a+1)!==n["grouping-separator"]||(e="D3087"):t.integerPart.charAt(t.integerPart.length-1)===n["grouping-separator"]&&(e="D3088"),-1!==i.indexOf(n["grouping-separator"]+n["grouping-separator"])&&(e="D3089");var f=t.integerPart.indexOf(n.digit);-1!==f&&t.integerPart.substring(0,f).split("").filter((function(t){return o.indexOf(t)>-1})).length>0&&(e="D3090"),-1!==(f=t.fractionalPart.lastIndexOf(n.digit))&&t.fractionalPart.substring(f).split("").filter((function(t){return o.indexOf(t)>-1})).length>0&&(e="D3091");var l="string"==typeof t.exponentPart;if(l&&t.exponentPart.length>0&&(-1!==i.indexOf(n.percent)||-1!==i.indexOf(n["per-mille"]))&&(e="D3092"),l&&(0===t.exponentPart.length||t.exponentPart.split("").filter((function(t){return-1===o.indexOf(t)})).length>0)&&(e="D3093"),e)throw{code:e,stack:(new Error).stack}}));var f,l,h,p,y=c.map((function(t){var e=function(e,r){for(var i=[],a=e.indexOf(n["grouping-separator"]);-1!==a;){var s=(r?e.substring(0,a):e.substring(a)).split("").filter((function(t){return-1!==o.indexOf(t)||t===n.digit})).length;i.push(s),a=t.integerPart.indexOf(n["grouping-separator"],a+1)}return i},r=e(t.integerPart),i=function(t){if(0===t.length)return 0;for(var e=t.reduce((function t(e,r){return 0===r?e:t(r,e%r)})),r=1;r<=t.length;r++)if(-1===t.indexOf(r*e))return 0;return e}(r),a=e(t.fractionalPart,!0),s=t.integerPart.split("").filter((function(t){return-1!==o.indexOf(t)})).length,u=s,c=t.fractionalPart.split(""),f=c.filter((function(t){return-1!==o.indexOf(t)})).length,l=c.filter((function(t){return-1!==o.indexOf(t)||t===n.digit})).length,h="string"==typeof t.exponentPart;0===s&&0===l&&(h?(f=1,l=1):s=1),h&&0===s&&-1!==t.integerPart.indexOf(n.digit)&&(s=1),0===s&&0===f&&(f=1);var p=0;return h&&(p=t.exponentPart.split("").filter((function(t){return-1!==o.indexOf(t)})).length),{integerPartGroupingPositions:r,regularGrouping:i,minimumIntegerPartSize:s,scalingFactor:u,prefix:t.prefix,fractionalPartGroupingPositions:a,minimumFactionalPartSize:f,maximumFactionalPartSize:l,minimumExponentSize:p,suffix:t.suffix,picture:t.subpicture}})),d=n["minus-sign"],v=n["zero-digit"],g=n["decimal-separator"],b=n["grouping-separator"];if(1===y.length&&(y.push(JSON.parse(JSON.stringify(y[0]))),y[1].prefix=d+y[1].prefix),l=-1!==(f=t>=0?y[0]:y[1]).picture.indexOf(n.percent)?100*t:-1!==f.picture.indexOf(n["per-mille"])?1e3*t:t,0===f.minimumExponentSize)h=l;else{var m=Math.pow(10,f.scalingFactor),w=Math.pow(10,f.scalingFactor-1);for(h=l,p=0;h<w;)h*=10,p-=1;for(;h>m;)h/=10,p+=1}var x=function(t,e){var r=Math.abs(t).toFixed(e);return"0"!==v&&(r=r.split("").map((function(t){return t>="0"&&t<="9"?o[t.charCodeAt(0)-48]:t})).join("")),r},k=x(C(h,f.maximumFactionalPartSize),f.maximumFactionalPartSize),S=k.indexOf(".");for(-1===S?k+=g:k=k.replace(".",g);k.charAt(0)===v;)k=k.substring(1);for(;k.charAt(k.length-1)===v;)k=k.substring(0,k.length-1);S=k.indexOf(g);var _=f.minimumIntegerPartSize-S,O=f.minimumFactionalPartSize-(k.length-S-1);if(k=(_>0?new Array(_+1).join(v):"")+k,k+=O>0?new Array(O+1).join(v):"",S=k.indexOf(g),f.regularGrouping>0)for(var E=Math.floor((S-1)/f.regularGrouping),A=1;A<=E;A++)k=[k.slice(0,S-A*f.regularGrouping),b,k.slice(S-A*f.regularGrouping)].join("");else f.integerPartGroupingPositions.forEach((function(t){k=[k.slice(0,S-t),b,k.slice(S-t)].join(""),S++}));if(S=k.indexOf(g),f.fractionalPartGroupingPositions.forEach((function(t){k=[k.slice(0,t+S+1),b,k.slice(t+S+1)].join("")})),S=k.indexOf(g),-1!==f.picture.indexOf(g)&&S!==k.length-1||(k=k.substring(0,k.length-1)),void 0!==p){var P=x(p,0);(_=f.minimumExponentSize-P.length)>0&&(P=new Array(_+1).join(v)+P),k=k+n["exponent-separator"]+(p<0?d:"")+P}return k=f.prefix+k+f.suffix}},formatBase:function(t,e){if(void 0!==t){if(t=C(t),(e=void 0===e?10:C(e))<2||e>36)throw{code:"D3100",stack:(new Error).stack,value:e};return t.toString(e)}},number:function(t){var e;if(void 0!==t){if("number"==typeof t)e=t;else if("string"==typeof t&&/^-?[0-9]+(\.[0-9]+)?([Ee][-+]?[0-9]+)?$/.test(t)&&!isNaN(parseFloat(t))&&isFinite(t))e=parseFloat(t);else if(!0===t)e=1;else{if(!1!==t)throw{code:"D3030",value:t,stack:(new Error).stack,index:1};e=0}return e}},floor:function(t){if(void 0!==t)return Math.floor(t)},ceil:function(t){if(void 0!==t)return Math.ceil(t)},round:C,abs:function(t){if(void 0!==t)return Math.abs(t)},sqrt:function(t){if(void 0!==t){if(t<0)throw{stack:(new Error).stack,code:"D3060",index:1,value:t};return Math.sqrt(t)}},power:function(t,e){var r;if(void 0!==t){if(r=Math.pow(t,e),!isFinite(r))throw{stack:(new Error).stack,code:"D3061",index:1,value:t,exp:e};return r}},random:function(){return Math.random()},boolean:L,not:function(t){if(void 0!==t)return!L(t)},map:B,zip:function(){for(var t=[],e=Array.prototype.slice.call(arguments),r=Math.min.apply(Math,e.map((function(t){return Array.isArray(t)?t.length:0}))),n=0;n<r;n++){var o=e.map((function(t){return t[n]}));t.push(o)}return t},filter:N,single:F,foldLeft:z,sift:H,keys:function t(e){var r=m();if(Array.isArray(e)){var o={};e.forEach((function(e){t(e).forEach((function(t){o[t]=!0}))})),r=t(o)}else null===e||"object"!==n(e)||k(e)||Object.keys(e).forEach((function(t){return r.push(t)}));return r},lookup:function t(e,r){var o;if(Array.isArray(e)){o=m();for(var i=0;i<e.length;i++){var a=t(e[i],r);void 0!==a&&(Array.isArray(a)?a.forEach((function(t){return o.push(t)})):o.push(a))}}else null!==e&&"object"===n(e)&&(o=e[r]);return o},append:U,exists:function(t){return void 0!==t},spread:function t(e){var r=m();if(Array.isArray(e))e.forEach((function(e){r=U(r,t(e))}));else if(null===e||"object"!==n(e)||k(e))r=e;else for(var o in e){var i={};i[o]=e[o],r.push(i)}return r},merge:function(t){if(void 0!==t){var e={};return t.forEach((function(t){for(var r in t)e[r]=t[r]})),e}},reverse:function(t){if(void 0!==t){if(t.length<=1)return t;for(var e=t.length,r=new Array(e),n=0;n<e;n++)r[e-n-1]=t[n];return r}},each:Y,error:function(t){throw{code:"D3137",stack:(new Error).stack,message:t||"$error() function evaluated"}},assert:function(t,e){if(!t)throw{code:"D3141",stack:(new Error).stack,message:e||"$assert() statement failed"}},type:function(t){if(void 0!==t)return null===t?"null":v(t)?"number":"string"==typeof t?"string":"boolean"==typeof t?"boolean":Array.isArray(t)?"array":x(t)?"function":"object"},sort:G,shuffle:function(t){if(void 0!==t){if(t.length<=1)return t;for(var e=new Array(t.length),r=0;r<t.length;r++){var n=Math.floor(Math.random()*(r+1));r!==n&&(e[r]=e[n]),e[n]=t[r]}return e}},distinct:function(t){if(void 0!==t){if(!Array.isArray(t)||t.length<=1)return t;for(var e=w(t)?m():[],r=0;r<t.length;r++){for(var n=t[r],o=!1,i=0;i<e.length;i++)if(O(n,e[i])){o=!0;break}o||e.push(n)}return e}},base64encode:function(t){if(void 0!==t){var e="undefined"!=typeof window?window.btoa:function(t){return new r.Buffer.from(t,"binary").toString("base64")};return e(t)}},base64decode:function(t){if(void 0!==t){var e="undefined"!=typeof window?window.atob:function(t){return new r.Buffer.from(t,"base64").toString("binary")};return e(t)}},encodeUrlComponent:function(t){if(void 0!==t){var e;try{e=encodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrlComponent"}}return e}},encodeUrl:function(t){if(void 0!==t){var e;try{e=encodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"encodeUrl"}}return e}},decodeUrlComponent:function(t){if(void 0!==t){var e;try{e=decodeURIComponent(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrlComponent"}}return e}},decodeUrl:function(t){if(void 0!==t){var e;try{e=decodeURI(t)}catch(e){throw{code:"D3140",stack:(new Error).stack,value:t,functionName:"decodeUrl"}}return e}}}}();e.exports=i}).call(this)}).call(this,void 0!==r.g?r.g:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./utils":6}],3:[function(t,e,r){"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=t("./datetime"),i=t("./functions"),s=t("./utils"),u=t("./parser"),c=t("./signature"),f=function(){var t=a().mark(z),e=a().mark(U),r=a().mark(G),f=a().mark(H),l=a().mark(W),h=a().mark(X),p=a().mark(q),y=a().mark(V),d=a().mark(it),v=a().mark(ut),g=a().mark(lt),b=a().mark(ht),m=a().mark(pt),w=a().mark(vt),x=a().mark(mt),k=a().mark(wt),S=a().mark(xt),_=a().mark(kt),O=a().mark(_t),E=a().mark(Et),A=a().mark(jt),P=a().mark(Rt),j=s.isNumeric,T=s.isArrayOfStrings,M=s.isArrayOfNumbers,R=s.createSequence,I=s.isSequence,C=s.isFunction,L=s.isLambda,D=s.isIterable,B=s.getFunctionArity,N=s.isDeepEqual,F=It(null);function z(e,r,n){var o,i,s,u;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:(i=n.lookup("__evaluate_entry"))&&i(e,r,n),t.t0=e.type,t.next="path"===t.t0?5:"binary"===t.t0?8:"unary"===t.t0?11:"name"===t.t0?14:"string"===t.t0||"number"===t.t0||"value"===t.t0?16:"wildcard"===t.t0?18:"descendant"===t.t0?20:"parent"===t.t0?22:"condition"===t.t0?24:"block"===t.t0?27:"bind"===t.t0?30:"regex"===t.t0?33:"function"===t.t0?35:"variable"===t.t0?38:"lambda"===t.t0?40:"partial"===t.t0?42:"apply"===t.t0?45:"transform"===t.t0?48:50;break;case 5:return t.delegateYield(U(e,r,n),"t1",6);case 6:return o=t.t1,t.abrupt("break",50);case 8:return t.delegateYield(q(e,r,n),"t2",9);case 9:return o=t.t2,t.abrupt("break",50);case 11:return t.delegateYield(V(e,r,n),"t3",12);case 12:return o=t.t3,t.abrupt("break",50);case 14:return o=Q(e,r),t.abrupt("break",50);case 16:return o=K(e),t.abrupt("break",50);case 18:return o=J(0,r),t.abrupt("break",50);case 20:return o=$(0,r),t.abrupt("break",50);case 22:return o=n.lookup(e.slot.label),t.abrupt("break",50);case 24:return t.delegateYield(ht(e,r,n),"t4",25);case 25:return o=t.t4,t.abrupt("break",50);case 27:return t.delegateYield(pt(e,r,n),"t5",28);case 28:return o=t.t5,t.abrupt("break",50);case 30:return t.delegateYield(lt(e,r,n),"t6",31);case 31:return o=t.t6,t.abrupt("break",50);case 33:return o=yt(e),t.abrupt("break",50);case 35:return t.delegateYield(wt(e,r,n),"t7",36);case 36:return o=t.t7,t.abrupt("break",50);case 38:return o=dt(e,r,n),t.abrupt("break",50);case 40:return o=St(e,r,n),t.abrupt("break",50);case 42:return t.delegateYield(_t(e,r,n),"t8",43);case 43:return o=t.t8,t.abrupt("break",50);case 45:return t.delegateYield(mt(e,r,n),"t9",46);case 46:return o=t.t9,t.abrupt("break",50);case 48:return o=gt(e,0,n),t.abrupt("break",50);case 50:if(!n.async||null!=o&&"function"==typeof o.then||(o=Promise.resolve(o)),!n.async||"function"!=typeof o.then||!e.nextFunction||"function"!=typeof o[e.nextFunction]){t.next=54;break}t.next=57;break;case 54:return t.next=56,o;case 56:o=t.sent;case 57:if(!Object.prototype.hasOwnProperty.call(e,"predicate")){t.next=65;break}s=0;case 59:if(!(s<e.predicate.length)){t.next=65;break}return t.delegateYield(X(e.predicate[s].expr,o,n),"t10",61);case 61:o=t.t10;case 62:s++,t.next=59;break;case 65:if("path"===e.type||!Object.prototype.hasOwnProperty.call(e,"group")){t.next=68;break}return t.delegateYield(ut(e.group,o,n),"t11",67);case 67:o=t.t11;case 68:return(u=n.lookup("__evaluate_exit"))&&u(e,r,n,o),o&&I(o)&&!o.tupleStream&&(e.keepArray&&(o.keepSingleton=!0),0===o.length?o=void 0:1===o.length&&(o=o.keepSingleton?o:o[0])),t.abrupt("return",o);case 72:case"end":return t.stop()}}),t)}function U(t,r,n){var o,i,s,u,c,f;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:o=Array.isArray(r)&&"variable"!==t.steps[0].type?r:R(r),s=!1,u=void 0,c=0;case 4:if(!(c<t.steps.length)){e.next=25;break}if((f=t.steps[c]).tuple&&(s=!0),0!==c||!f.consarray){e.next=12;break}return e.delegateYield(z(f,o,n),"t0",9);case 9:i=e.t0,e.next=19;break;case 12:if(!s){e.next=17;break}return e.delegateYield(W(f,o,u,n),"t1",14);case 14:u=e.t1,e.next=19;break;case 17:return e.delegateYield(G(f,o,n,c===t.steps.length-1),"t2",18);case 18:i=e.t2;case 19:if(s||void 0!==i&&0!==i.length){e.next=21;break}return e.abrupt("break",25);case 21:void 0===f.focus&&(o=i);case 22:c++,e.next=4;break;case 25:if(s)if(t.tuple)i=u;else for(i=R(),c=0;c<u.length;c++)i.push(u[c]["@"]);if(t.keepSingletonArray&&(Array.isArray(i)&&i.cons&&!i.sequence&&(i=R(i)),i.keepSingleton=!0),!t.hasOwnProperty("group")){e.next=30;break}return e.delegateYield(ut(t.group,s?u:i,n),"t3",29);case 29:i=e.t3;case 30:return e.abrupt("return",i);case 31:case"end":return e.stop()}}),e)}function Y(t,e){var r=It(t);for(var n in e)r.bind(n,e[n]);return r}function G(t,e,n,o){var i,s,u,c,f;return a().wrap((function(r){for(;;)switch(r.prev=r.next){case 0:if("sort"!==t.type){r.next=7;break}return r.delegateYield(vt(t,e,n),"t0",2);case 2:if(i=r.t0,!t.stages){r.next=6;break}return r.delegateYield(H(t.stages,i,n),"t1",5);case 5:i=r.t1;case 6:return r.abrupt("return",i);case 7:i=R(),s=0;case 9:if(!(s<e.length)){r.next=24;break}return r.delegateYield(z(t,e[s],n),"t2",11);case 11:if(u=r.t2,!t.stages){r.next=20;break}c=0;case 14:if(!(c<t.stages.length)){r.next=20;break}return r.delegateYield(X(t.stages[c].expr,u,n),"t3",16);case 16:u=r.t3;case 17:c++,r.next=14;break;case 20:void 0!==u&&i.push(u);case 21:s++,r.next=9;break;case 24:return f=R(),o&&1===i.length&&Array.isArray(i[0])&&!I(i[0])?f=i[0]:i.forEach((function(t){!Array.isArray(t)||t.cons?f.push(t):t.forEach((function(t){return f.push(t)}))})),r.abrupt("return",f);case 27:case"end":return r.stop()}}),r)}function H(t,e,r){var n,o,i,s;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:n=e,o=0;case 2:if(!(o<t.length)){a.next=15;break}i=t[o],a.t0=i.type,a.next="filter"===a.t0?7:"index"===a.t0?10:12;break;case 7:return a.delegateYield(X(i.expr,n,r),"t1",8);case 8:return n=a.t1,a.abrupt("break",12);case 10:for(s=0;s<n.length;s++)n[s][i.value]=s;return a.abrupt("break",12);case 12:o++,a.next=2;break;case 15:return a.abrupt("return",n);case 16:case"end":return a.stop()}}),f)}function W(t,e,r,n){var o,i,s,u,c,f,h,p;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if("sort"!==t.type){a.next=15;break}if(!r){a.next=6;break}return a.delegateYield(vt(t,r,n),"t0",3);case 3:o=a.t0,a.next=11;break;case 6:return a.delegateYield(vt(t,e,n),"t1",7);case 7:for(i=a.t1,(o=R()).tupleStream=!0,s=0;s<i.length;s++)(u={"@":i[s]})[t.index]=s,o.push(u);case 11:if(!t.stages){a.next=14;break}return a.delegateYield(H(t.stages,o,n),"t2",13);case 13:o=a.t2;case 14:return a.abrupt("return",o);case 15:(o=R()).tupleStream=!0,c=n,void 0===r&&(r=e.map((function(t){return{"@":t}}))),f=0;case 20:if(!(f<r.length)){a.next=28;break}return c=Y(n,r[f]),a.delegateYield(z(t,r[f]["@"],c),"t3",23);case 23:if(void 0!==(h=a.t3))for(Array.isArray(h)||(h=[h]),p=0;p<h.length;p++)u={},Object.assign(u,r[f]),h.tupleStream?Object.assign(u,h[p]):(t.focus?(u[t.focus]=h[p],u["@"]=r[f]["@"]):u["@"]=h[p],t.index&&(u[t.index]=p),t.ancestor&&(u[t.ancestor.label]=r[f]["@"])),o.push(u);case 25:f++,a.next=20;break;case 28:if(!t.stages){a.next=31;break}return a.delegateYield(H(t.stages,o,n),"t4",30);case 30:o=a.t4;case 31:return a.abrupt("return",o);case 32:case"end":return a.stop()}}),l)}function X(t,e,r){var n,o,s,u,c,f;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(n=R(),e&&e.tupleStream&&(n.tupleStream=!0),Array.isArray(e)||(e=R(e)),"number"!==t.type){a.next=10;break}(o=Math.floor(t.value))<0&&(o=e.length+o),void 0!==(s=e[o])&&(Array.isArray(s)?n=s:n.push(s)),a.next=23;break;case 10:o=0;case 11:if(!(o<e.length)){a.next=23;break}return s=e[o],u=s,c=r,e.tupleStream&&(u=s["@"],c=Y(r,s)),a.delegateYield(z(t,u,c),"t0",17);case 17:f=a.t0,j(f)&&(f=[f]),M(f)?f.forEach((function(t){var r=Math.floor(t);r<0&&(r=e.length+r),r===o&&n.push(s)})):i.boolean(f)&&n.push(s);case 20:o++,a.next=11;break;case 23:return a.abrupt("return",n);case 24:case"end":return a.stop()}}),h)}function q(t,e,r){var n,o,i,s,u;return a().wrap((function(c){for(;;)switch(c.prev=c.next){case 0:return c.delegateYield(z(t.lhs,e,r),"t0",1);case 1:if(o=c.t0,i=t.value,s=a().mark((function n(){return a().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(z(t.rhs,e,r),"t0",1);case 1:return n.abrupt("return",n.t0);case 2:case"end":return n.stop()}}),n)})),"and"!==i&&"or"!==i){c.next=15;break}return c.prev=5,c.delegateYield(it(o,s,i),"t1",7);case 7:return c.abrupt("return",c.t1);case 10:throw c.prev=10,c.t2=c.catch(5),c.t2.position=t.position,c.t2.token=i,c.t2;case 15:return c.delegateYield(s(),"t3",16);case 16:u=c.t3,c.prev=17,c.t4=i,c.next="+"===c.t4||"-"===c.t4||"*"===c.t4||"/"===c.t4||"%"===c.t4?21:"="===c.t4||"!="===c.t4?23:"<"===c.t4||"<="===c.t4||">"===c.t4||">="===c.t4?25:"&"===c.t4?27:".."===c.t4?29:"in"===c.t4?31:33;break;case 21:return n=et(o,u,i),c.abrupt("break",33);case 23:return n=rt(o,u,i),c.abrupt("break",33);case 25:return n=nt(o,u,i),c.abrupt("break",33);case 27:return n=st(o,u),c.abrupt("break",33);case 29:return n=ft(o,u),c.abrupt("break",33);case 31:return n=ot(o,u),c.abrupt("break",33);case 33:c.next=40;break;case 35:throw c.prev=35,c.t5=c.catch(17),c.t5.position=t.position,c.t5.token=i,c.t5;case 40:return c.abrupt("return",n);case 41:case"end":return c.stop()}}),p,null,[[5,10],[17,35]])}function V(t,e,r){var n,o,s,u;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:a.t0=t.value,a.next="-"===a.t0?3:"["===a.t0?15:"{"===a.t0?27:30;break;case 3:return a.delegateYield(z(t.expression,e,r),"t1",4);case 4:if(void 0!==(n=a.t1)){a.next=9;break}n=void 0,a.next=14;break;case 9:if(!j(n)){a.next=13;break}n=-n,a.next=14;break;case 13:throw{code:"D1002",stack:(new Error).stack,position:t.position,token:t.value,value:n};case 14:return a.abrupt("break",30);case 15:n=[],o=0;case 17:if(!(o<t.expressions.length)){a.next=25;break}return s=t.expressions[o],a.delegateYield(z(s,e,r),"t2",20);case 20:void 0!==(u=a.t2)&&("["===s.value?n.push(u):n=i.append(n,u));case 22:o++,a.next=17;break;case 25:return t.consarray&&Object.defineProperty(n,"cons",{enumerable:!1,configurable:!1,value:!0}),a.abrupt("break",30);case 27:return a.delegateYield(ut(t,e,r),"t3",28);case 28:return n=a.t3,a.abrupt("break",30);case 30:return a.abrupt("return",n);case 31:case"end":return a.stop()}}),y)}function Q(t,e,r){return i.lookup(e,t.value)}function K(t){return t.value}function J(t,e){var r=R();return Array.isArray(e)&&e.outerWrapper&&e.length>0&&(e=e[0]),null!==e&&"object"===n(e)&&Object.keys(e).forEach((function(t){var n=e[t];Array.isArray(n)?(n=Z(n),r=i.append(r,n)):r.push(n)})),r}function Z(t,e){return void 0===e&&(e=[]),Array.isArray(t)?t.forEach((function(t){Z(t,e)})):e.push(t),e}function $(t,e){var r,n=R();return void 0!==e&&(tt(e,n),r=1===n.length?n[0]:n),r}function tt(t,e){Array.isArray(t)||e.push(t),Array.isArray(t)?t.forEach((function(t){tt(t,e)})):null!==t&&"object"===n(t)&&Object.keys(t).forEach((function(r){tt(t[r],e)}))}function et(t,e,r){var n;if(void 0!==t&&!j(t))throw{code:"T2001",stack:(new Error).stack,value:t};if(void 0!==e&&!j(e))throw{code:"T2002",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return n;switch(r){case"+":n=t+e;break;case"-":n=t-e;break;case"*":n=t*e;break;case"/":n=t/e;break;case"%":n=t%e}return n}function rt(t,e,r){var o,i=n(t),a=n(e);if("undefined"===i||"undefined"===a)return!1;switch(r){case"=":o=N(t,e);break;case"!=":o=!N(t,e)}return o}function nt(t,e,r){var o,i=n(t),a=n(e);if("undefined"!==i&&"string"!==i&&"number"!==i||"undefined"!==a&&"string"!==a&&"number"!==a)throw{code:"T2010",stack:(new Error).stack,value:"string"!==i&&"number"!==i?t:e};if("undefined"!==i&&"undefined"!==a){if(i!==a)throw{code:"T2009",stack:(new Error).stack,value:t,value2:e};switch(r){case"<":o=t<e;break;case"<=":o=t<=e;break;case">":o=t>e;break;case">=":o=t>=e}return o}}function ot(t,e){var r=!1;if(void 0===t||void 0===e)return!1;Array.isArray(e)||(e=[e]);for(var n=0;n<e.length;n++)if(e[n]===t){r=!0;break}return r}function it(t,e,r){var n,o;return a().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:o=at(t),i.t0=r,i.next="and"===i.t0?4:"or"===i.t0?12:20;break;case 4:if(i.t1=o,!i.t1){i.next=10;break}return i.t2=at,i.delegateYield(e(),"t3",8);case 8:i.t4=i.t3,i.t1=(0,i.t2)(i.t4);case 10:return n=i.t1,i.abrupt("break",20);case 12:if(i.t5=o,i.t5){i.next=18;break}return i.t6=at,i.delegateYield(e(),"t7",16);case 16:i.t8=i.t7,i.t5=(0,i.t6)(i.t8);case 18:return n=i.t5,i.abrupt("break",20);case 20:return i.abrupt("return",n);case 21:case"end":return i.stop()}}),d)}function at(t){var e=i.boolean(t);return void 0!==e&&e}function st(t,e){var r="",n="";return void 0!==t&&(r=i.string(t)),void 0!==e&&(n=i.string(e)),r.concat(n)}function ut(t,e,r){var n,o,s,u,c,f,l,h,p,y,d,g,b;return a().wrap((function(v){for(;;)switch(v.prev=v.next){case 0:n={},o={},s=!(!e||!e.tupleStream),Array.isArray(e)||(e=R(e)),0===e.length&&e.push(void 0),u=0;case 6:if(!(u<e.length)){v.next=31;break}c=e[u],f=s?Y(r,c):r,l=0;case 10:if(!(l<t.lhs.length)){v.next=28;break}return h=t.lhs[l],v.delegateYield(z(h[0],s?c["@"]:c,f),"t0",13);case 13:if("string"==typeof(p=v.t0)||void 0===p){v.next=16;break}throw{code:"T1003",stack:(new Error).stack,position:t.position,value:p};case 16:if(void 0===p){v.next=25;break}if(y={data:c,exprIndex:l},!o.hasOwnProperty(p)){v.next=24;break}if(o[p].exprIndex===l){v.next=21;break}throw{code:"D1009",stack:(new Error).stack,position:t.position,value:p};case 21:o[p].data=i.append(o[p].data,c),v.next=25;break;case 24:o[p]=y;case 25:l++,v.next=10;break;case 28:u++,v.next=6;break;case 31:v.t1=a().keys(o);case 32:if((v.t2=v.t1()).done){v.next=43;break}return p=v.t2.value,y=o[p],d=y.data,f=r,s&&(g=ct(y.data),d=g["@"],delete g["@"],f=Y(r,g)),v.delegateYield(z(t.lhs[y.exprIndex][1],d,f),"t3",39);case 39:void 0!==(b=v.t3)&&(n[p]=b),v.next=32;break;case 43:return v.abrupt("return",n);case 44:case"end":return v.stop()}}),v)}function ct(t){if(!Array.isArray(t))return t;var e={};Object.assign(e,t[0]);for(var r=1;r<t.length;r++)for(var n in t[r])e[n]=i.append(e[n],t[r][n]);return e}function ft(t,e){var r;if(void 0!==t&&!Number.isInteger(t))throw{code:"T2003",stack:(new Error).stack,value:t};if(void 0!==e&&!Number.isInteger(e))throw{code:"T2004",stack:(new Error).stack,value:e};if(void 0===t||void 0===e)return r;if(t>e)return r;var n=e-t+1;if(n>1e7)throw{code:"D2014",stack:(new Error).stack,value:n};r=new Array(n);for(var o=t,i=0;o<=e;o++,i++)r[i]=o;return r.sequence=!0,r}function lt(t,e,r){var n;return a().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:return o.delegateYield(z(t.rhs,e,r),"t0",1);case 1:return n=o.t0,r.bind(t.lhs.value,n),o.abrupt("return",n);case 4:case"end":return o.stop()}}),g)}function ht(t,e,r){var n,o;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.delegateYield(z(t.condition,e,r),"t0",1);case 1:if(o=a.t0,!i.boolean(o)){a.next=7;break}return a.delegateYield(z(t.then,e,r),"t1",4);case 4:n=a.t1,a.next=10;break;case 7:if(void 0===t.else){a.next=10;break}return a.delegateYield(z(t.else,e,r),"t2",9);case 9:n=a.t2;case 10:return a.abrupt("return",n);case 11:case"end":return a.stop()}}),b)}function pt(t,e,r){var n,o,i;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:o=It(r),i=0;case 2:if(!(i<t.expressions.length)){a.next=8;break}return a.delegateYield(z(t.expressions[i],e,o),"t0",4);case 4:n=a.t0;case 5:i++,a.next=2;break;case 8:return a.abrupt("return",n);case 9:case"end":return a.stop()}}),m)}function yt(t){var e=new Dt.RegexEngine(t.value);return function r(n,o){var i;e.lastIndex=o||0;var a=e.exec(n);if(null!==a){if(i={match:a[0],start:a.index,end:a.index+a[0].length,groups:[]},a.length>1)for(var s=1;s<a.length;s++)i.groups.push(a[s]);i.next=function(){if(!(e.lastIndex>=n.length)){var o=r(n,e.lastIndex);if(o&&""===o.match)throw{code:"D1004",stack:(new Error).stack,position:t.position,value:t.value.source};return o}}}return i}}function dt(t,e,r){return""===t.value?e&&e.outerWrapper?e[0]:e:r.lookup(t.value)}function vt(t,e,r){var o,s,u,c,f;return a().wrap((function(l){for(;;)switch(l.prev=l.next){case 0:return s=e,u=!!e.tupleStream,c=a().mark((function e(o,i){var s,c,f,l,h,p,y,d,v;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:s=0,c=0;case 2:if(!(0===s&&c<t.terms.length)){e.next=35;break}return f=t.terms[c],l=o,h=r,u&&(l=o["@"],h=Y(r,o)),e.delegateYield(z(f.expression,l,h),"t0",8);case 8:return p=e.t0,l=i,h=r,u&&(l=i["@"],h=Y(r,i)),e.delegateYield(z(f.expression,l,h),"t1",13);case 13:if(y=e.t1,d=n(p),v=n(y),"undefined"!==d){e.next=19;break}return s="undefined"===v?0:1,e.abrupt("continue",32);case 19:if("undefined"!==v){e.next=22;break}return s=-1,e.abrupt("continue",32);case 22:if(!("string"!==d&&"number"!==d||"string"!==v&&"number"!==v)){e.next=24;break}throw{code:"T2008",stack:(new Error).stack,position:t.position,value:"string"!==d&&"number"!==d?p:y};case 24:if(d===v){e.next=26;break}throw{code:"T2007",stack:(new Error).stack,position:t.position,value:p,value2:y};case 26:if(p!==y){e.next=30;break}return e.abrupt("continue",32);case 30:s=p<y?-1:1;case 31:!0===f.descending&&(s=-s);case 32:c++,e.next=2;break;case 35:return e.abrupt("return",1===s);case 36:case"end":return e.stop()}}),e)})),f={environment:r,input:e},l.delegateYield(i.sort.apply(f,[s,c]),"t0",5);case 5:return o=l.t0,l.abrupt("return",o);case 7:case"end":return l.stop()}}),w)}function gt(t,e,r){return Mt(a().mark((function e(o){var i,s,u,c,f,l,h,p,y,d,v;return a().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0!==o){e.next=2;break}return e.abrupt("return",void 0);case 2:if(i=r.lookup("clone"),C(i)){e.next=5;break}throw{code:"T2013",stack:(new Error).stack,position:t.position};case 5:return e.delegateYield(xt(i,[o],null,r),"t0",6);case 6:return s=e.t0,e.delegateYield(z(t.pattern,s,r),"t1",8);case 8:if(void 0===(u=e.t1)){e.next=33;break}Array.isArray(u)||(u=[u]),c=0;case 12:if(!(c<u.length)){e.next=33;break}return f=u[c],e.delegateYield(z(t.update,f,r),"t2",15);case 15:if(l=e.t2,"undefined"===(h=n(l))){e.next=21;break}if("object"===h&&null!==l&&!Array.isArray(l)){e.next=20;break}throw{code:"T2011",stack:(new Error).stack,position:t.update.position,value:l};case 20:for(p in l)f[p]=l[p];case 21:if(void 0===t.delete){e.next=30;break}return e.delegateYield(z(t.delete,f,r),"t3",23);case 23:if(void 0===(y=e.t3)){e.next=30;break}if(d=y,Array.isArray(y)||(y=[y]),T(y)){e.next=29;break}throw{code:"T2012",stack:(new Error).stack,position:t.delete.position,value:d};case 29:for(v=0;v<y.length;v++)"object"===n(f)&&null!==f&&delete f[y[v]];case 30:c++,e.next=12;break;case 33:return e.abrupt("return",s);case 34:case"end":return e.stop()}}),e)})),"<(oa):o>")}var bt=u("function($f, $g) { function($x){ $g($f($x)) } }");function mt(t,e,r){var n,o,i,s;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.delegateYield(z(t.lhs,e,r),"t0",1);case 1:if(o=a.t0,"function"!==t.rhs.type){a.next=7;break}return a.delegateYield(wt(t.rhs,e,r,{context:o}),"t1",4);case 4:n=a.t1,a.next=20;break;case 7:return a.delegateYield(z(t.rhs,e,r),"t2",8);case 8:if(i=a.t2,C(i)){a.next=11;break}throw{code:"T2006",stack:(new Error).stack,position:t.position,value:i};case 11:if(!C(o)){a.next=18;break}return a.delegateYield(z(bt,null,r),"t3",13);case 13:return s=a.t3,a.delegateYield(xt(s,[o,i],null,r),"t4",15);case 15:n=a.t4,a.next=20;break;case 18:return a.delegateYield(xt(i,[o],null,r),"t5",19);case 19:n=a.t5;case 20:return a.abrupt("return",n);case 21:case"end":return a.stop()}}),x)}function wt(t,e,r,o){var i,s,u,c,f,l;return a().wrap((function(h){for(;;)switch(h.prev=h.next){case 0:return h.delegateYield(z(t.procedure,e,r),"t0",1);case 1:if(void 0!==(s=h.t0)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){h.next=4;break}throw{code:"T1005",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 4:u=[],void 0!==o&&u.push(o.context),c=a().mark((function n(){var o,i;return a().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.delegateYield(z(t.arguments[f],e,r),"t0",1);case 1:o=n.t0,C(o)?(i=a().mark((function t(){var e,n,i,s=arguments;return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:for(e=s.length,n=new Array(e),i=0;i<e;i++)n[i]=s[i];return t.delegateYield(xt(o,n,null,r),"t0",2);case 2:return t.abrupt("return",t.t0);case 3:case"end":return t.stop()}}),t)})),i.arity=B(o),u.push(i)):u.push(o);case 3:case"end":return n.stop()}}),n)})),f=0;case 8:if(!(f<t.arguments.length)){h.next=13;break}return h.delegateYield(c(),"t1",10);case 10:f++,h.next=8;break;case 13:return l="path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value,h.prev=14,"object"===n(s)&&(s.token=l,s.position=t.position),h.delegateYield(xt(s,u,e,r),"t2",17);case 17:i=h.t2,h.next=25;break;case 20:throw h.prev=20,h.t3=h.catch(14),h.t3.position||(h.t3.position=t.position),h.t3.token||(h.t3.token=l),h.t3;case 25:return h.abrupt("return",i);case 26:case"end":return h.stop()}}),k,null,[[14,20]])}function xt(t,e,r,n){var o,i,s,u;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:return a.delegateYield(kt(t,e,r,n),"t0",1);case 1:o=a.t0;case 2:if(!L(o)||!0!==o.thunk){a.next=21;break}return a.delegateYield(z(o.body.procedure,o.input,o.environment),"t1",4);case 4:i=a.t1,"variable"===o.body.procedure.type&&(i.token=o.body.procedure.value),i.position=o.body.procedure.position,s=[],u=0;case 9:if(!(u<o.body.arguments.length)){a.next=17;break}return a.t2=s,a.delegateYield(z(o.body.arguments[u],o.input,o.environment),"t3",12);case 12:a.t4=a.t3,a.t2.push.call(a.t2,a.t4);case 14:u++,a.next=9;break;case 17:return a.delegateYield(kt(i,s,r,n),"t5",18);case 18:o=a.t5,a.next=2;break;case 21:return a.abrupt("return",o);case 22:case"end":return a.stop()}}),S)}function kt(t,e,r,n){var o,i,s;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(a.prev=0,i=e,t&&(i=Ot(t.signature,e,r)),!L(t)){a.next=8;break}return a.delegateYield(Et(t,i),"t0",5);case 5:o=a.t0,a.next=24;break;case 8:if(!t||!0!==t._jsonata_function){a.next=16;break}if(s={environment:n,input:r},o=t.implementation.apply(s,i),!D(o)){a.next=14;break}return a.delegateYield(o,"t1",13);case 13:o=a.t1;case 14:a.next=24;break;case 16:if("function"!=typeof t){a.next=23;break}if(o=t.apply(r,i),!D(o)){a.next=21;break}return a.delegateYield(o,"t2",20);case 20:o=a.t2;case 21:a.next=24;break;case 23:throw{code:"T1006",stack:(new Error).stack};case 24:a.next=30;break;case 26:throw a.prev=26,a.t3=a.catch(0),t&&(void 0===a.t3.token&&void 0!==t.token&&(a.t3.token=t.token),a.t3.position=t.position),a.t3;case 30:return a.abrupt("return",o);case 31:case"end":return a.stop()}}),_,null,[[0,26]])}function St(t,e,r){var n={_jsonata_lambda:!0,input:e,environment:r,arguments:t.arguments,signature:t.signature,body:t.body};return!0===t.thunk&&(n.thunk=!0),n.apply=a().mark((function t(r,o){return a().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.delegateYield(xt(n,o,e,r.environment),"t0",1);case 1:return t.abrupt("return",t.t0);case 2:case"end":return t.stop()}}),t)})),n}function _t(t,e,r){var n,o,i,s,u;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:o=[],i=0;case 2:if(!(i<t.arguments.length)){a.next=15;break}if("operator"!==(s=t.arguments[i]).type||"?"!==s.value){a.next=8;break}o.push(s),a.next=12;break;case 8:return a.t0=o,a.delegateYield(z(s,e,r),"t1",10);case 10:a.t2=a.t1,a.t0.push.call(a.t0,a.t2);case 12:i++,a.next=2;break;case 15:return a.delegateYield(z(t.procedure,e,r),"t3",16);case 16:if(void 0!==(u=a.t3)||"path"!==t.procedure.type||!r.lookup(t.procedure.steps[0].value)){a.next=19;break}throw{code:"T1007",stack:(new Error).stack,position:t.position,token:t.procedure.steps[0].value};case 19:if(!L(u)){a.next=23;break}n=At(u,o),a.next=32;break;case 23:if(!u||!0!==u._jsonata_function){a.next=27;break}n=Pt(u.implementation,o),a.next=32;break;case 27:if("function"!=typeof u){a.next=31;break}n=Pt(u,o),a.next=32;break;case 31:throw{code:"T1008",stack:(new Error).stack,position:t.position,token:"path"===t.procedure.type?t.procedure.steps[0].value:t.procedure.value};case 32:return a.abrupt("return",n);case 33:case"end":return a.stop()}}),O)}function Ot(t,e,r){return void 0===t?e:t.validate(e,r)}function Et(t,e){var r,n;return a().wrap((function(o){for(;;)switch(o.prev=o.next){case 0:if(n=It(t.environment),t.arguments.forEach((function(t,r){n.bind(t.value,e[r])})),"function"!=typeof t.body){o.next=7;break}return o.delegateYield(jt(t.body,n),"t0",4);case 4:r=o.t0,o.next=9;break;case 7:return o.delegateYield(z(t.body,t.input,n),"t1",8);case 8:r=o.t1;case 9:return o.abrupt("return",r);case 10:case"end":return o.stop()}}),E)}function At(t,e){var r=It(t.environment),n=[];return t.arguments.forEach((function(t,o){var i=e[o];i&&"operator"===i.type&&"?"===i.value?n.push(t):r.bind(t.value,i)})),{_jsonata_lambda:!0,input:t.input,environment:r,arguments:n,body:t.body}}function Pt(t,e){var r=Tt(t),n="function("+(r=r.map((function(t){return"$"+t.trim()}))).join(", ")+"){ _ }",o=u(n);return o.body=t,At(o,e)}function jt(t,e){var r,n,o,i;return a().wrap((function(a){for(;;)switch(a.prev=a.next){case 0:if(r=Tt(t),n=r.map((function(t){return e.lookup(t.trim())})),o={environment:e},i=t.apply(o,n),!D(i)){a.next=7;break}return a.delegateYield(i,"t0",6);case 6:i=a.t0;case 7:return a.abrupt("return",i);case 8:case"end":return a.stop()}}),A)}function Tt(t){var e=t.toString();return/\(([^)]*)\)/.exec(e)[1].split(",")}function Mt(t,e){var r={_jsonata_function:!0,implementation:t};return void 0!==e&&(r.signature=c(e)),r}function Rt(t,e){var r,n,o;return a().wrap((function(i){for(;;)switch(i.prev=i.next){case 0:if(void 0!==t){i.next=2;break}return i.abrupt("return",void 0);case 2:r=this.input,void 0!==e&&(r=e,Array.isArray(r)&&!I(r)&&((r=R(r)).outerWrapper=!0)),i.prev=4,n=u(t,!1),i.next=12;break;case 8:throw i.prev=8,i.t0=i.catch(4),Lt(i.t0),{stack:(new Error).stack,code:"D3120",value:i.t0.message,error:i.t0};case 12:return i.prev=12,i.delegateYield(z(n,r,this.environment),"t1",14);case 14:o=i.t1,i.next=21;break;case 17:throw i.prev=17,i.t2=i.catch(12),Lt(i.t2),{stack:(new Error).stack,code:"D3121",value:i.t2.message,error:i.t2};case 21:return i.abrupt("return",o);case 22:case"end":return i.stop()}}),P,this,[[4,8],[12,17]])}function It(t){var e={};return{bind:function(t,r){e[t]=r},lookup:function(r){var n;return e.hasOwnProperty(r)?n=e[r]:t&&(n=t.lookup(r)),n},timestamp:t?t.timestamp:null,async:!!t&&t.async,global:t?t.global:{ancestry:[null]}}}F.bind("sum",Mt(i.sum,"<a<n>:n>")),F.bind("count",Mt(i.count,"<a:n>")),F.bind("max",Mt(i.max,"<a<n>:n>")),F.bind("min",Mt(i.min,"<a<n>:n>")),F.bind("average",Mt(i.average,"<a<n>:n>")),F.bind("string",Mt(i.string,"<x-b?:s>")),F.bind("substring",Mt(i.substring,"<s-nn?:s>")),F.bind("substringBefore",Mt(i.substringBefore,"<s-s:s>")),F.bind("substringAfter",Mt(i.substringAfter,"<s-s:s>")),F.bind("lowercase",Mt(i.lowercase,"<s-:s>")),F.bind("uppercase",Mt(i.uppercase,"<s-:s>")),F.bind("length",Mt(i.length,"<s-:n>")),F.bind("trim",Mt(i.trim,"<s-:s>")),F.bind("pad",Mt(i.pad,"<s-ns?:s>")),F.bind("match",Mt(i.match,"<s-f<s:o>n?:a<o>>")),F.bind("contains",Mt(i.contains,"<s-(sf):b>")),F.bind("replace",Mt(i.replace,"<s-(sf)(sf)n?:s>")),F.bind("split",Mt(i.split,"<s-(sf)n?:a<s>>")),F.bind("join",Mt(i.join,"<a<s>s?:s>")),F.bind("formatNumber",Mt(i.formatNumber,"<n-so?:s>")),F.bind("formatBase",Mt(i.formatBase,"<n-n?:s>")),F.bind("formatInteger",Mt(o.formatInteger,"<n-s:s>")),F.bind("parseInteger",Mt(o.parseInteger,"<s-s:n>")),F.bind("number",Mt(i.number,"<(nsb)-:n>")),F.bind("floor",Mt(i.floor,"<n-:n>")),F.bind("ceil",Mt(i.ceil,"<n-:n>")),F.bind("round",Mt(i.round,"<n-n?:n>")),F.bind("abs",Mt(i.abs,"<n-:n>")),F.bind("sqrt",Mt(i.sqrt,"<n-:n>")),F.bind("power",Mt(i.power,"<n-n:n>")),F.bind("random",Mt(i.random,"<:n>")),F.bind("boolean",Mt(i.boolean,"<x-:b>")),F.bind("not",Mt(i.not,"<x-:b>")),F.bind("map",Mt(i.map,"<af>")),F.bind("zip",Mt(i.zip,"<a+>")),F.bind("filter",Mt(i.filter,"<af>")),F.bind("single",Mt(i.single,"<af?>")),F.bind("reduce",Mt(i.foldLeft,"<afj?:j>")),F.bind("sift",Mt(i.sift,"<o-f?:o>")),F.bind("keys",Mt(i.keys,"<x-:a<s>>")),F.bind("lookup",Mt(i.lookup,"<x-s:x>")),F.bind("append",Mt(i.append,"<xx:a>")),F.bind("exists",Mt(i.exists,"<x:b>")),F.bind("spread",Mt(i.spread,"<x-:a<o>>")),F.bind("merge",Mt(i.merge,"<a<o>:o>")),F.bind("reverse",Mt(i.reverse,"<a:a>")),F.bind("each",Mt(i.each,"<o-f:a>")),F.bind("error",Mt(i.error,"<s?:x>")),F.bind("assert",Mt(i.assert,"<bs?:x>")),F.bind("type",Mt(i.type,"<x:s>")),F.bind("sort",Mt(i.sort,"<af?:a>")),F.bind("shuffle",Mt(i.shuffle,"<a:a>")),F.bind("distinct",Mt(i.distinct,"<x:x>")),F.bind("base64encode",Mt(i.base64encode,"<s-:s>")),F.bind("base64decode",Mt(i.base64decode,"<s-:s>")),F.bind("encodeUrlComponent",Mt(i.encodeUrlComponent,"<s-:s>")),F.bind("encodeUrl",Mt(i.encodeUrl,"<s-:s>")),F.bind("decodeUrlComponent",Mt(i.decodeUrlComponent,"<s-:s>")),F.bind("decodeUrl",Mt(i.decodeUrl,"<s-:s>")),F.bind("eval",Mt(Rt,"<sx?:x>")),F.bind("toMillis",Mt(o.toMillis,"<s-s?:n>")),F.bind("fromMillis",Mt(o.fromMillis,"<n-s?s?:s>")),F.bind("clone",Mt((function(t){if(void 0!==t)return JSON.parse(i.string(t))}),"<(oa)-:o>"));var Ct={S0101:"String literal must be terminated by a matching quote",S0102:"Number out of range: {{token}}",S0103:"Unsupported escape sequence: \\{{token}}",S0104:"The escape sequence \\u must be followed by 4 hex digits",S0105:"Quoted property name must be terminated with a backquote (`)",S0106:"Comment has no closing tag",S0201:"Syntax error: {{token}}",S0202:"Expected {{value}}, got {{token}}",S0203:"Expected {{value}} before end of expression",S0204:"Unknown operator: {{token}}",S0205:"Unexpected token: {{token}}",S0206:"Unknown expression type: {{token}}",S0207:"Unexpected end of expression",S0208:"Parameter {{value}} of function definition must be a variable name (start with $)",S0209:"A predicate cannot follow a grouping expression in a step",S0210:"Each step can only have one grouping expression",S0211:"The symbol {{token}} cannot be used as a unary operator",S0212:"The left side of := must be a variable name (start with $)",S0213:"The literal value {{value}} cannot be used as a step within a path expression",S0214:"The right side of {{token}} must be a variable name (start with $)",S0215:"A context variable binding must precede any predicates on a step",S0216:"A context variable binding must precede the 'order-by' clause on a step",S0217:"The object representing the 'parent' cannot be derived from this expression",S0301:"Empty regular expressions are not allowed",S0302:"No terminating / in regular expression",S0402:"Choice groups containing parameterized types are not supported",S0401:"Type parameters can only be applied to functions and arrays",S0500:"Attempted to evaluate an expression containing syntax error(s)",T0410:"Argument {{index}} of function {{token}} does not match function signature",T0411:"Context value is not a compatible type with argument {{index}} of function {{token}}",T0412:"Argument {{index}} of function {{token}} must be an array of {{type}}",D1001:"Number out of range: {{value}}",D1002:"Cannot negate a non-numeric value: {{value}}",T1003:"Key in object structure must evaluate to a string; got: {{value}}",D1004:"Regular expression matches zero length string",T1005:"Attempted to invoke a non-function. Did you mean ${{{token}}}?",T1006:"Attempted to invoke a non-function",T1007:"Attempted to partially apply a non-function. Did you mean ${{{token}}}?",T1008:"Attempted to partially apply a non-function",D1009:"Multiple key definitions evaluate to same key: {{value}}",T1010:"The matcher function argument passed to function {{token}} does not return the correct object structure",T2001:"The left side of the {{token}} operator must evaluate to a number",T2002:"The right side of the {{token}} operator must evaluate to a number",T2003:"The left side of the range operator (..) must evaluate to an integer",T2004:"The right side of the range operator (..) must evaluate to an integer",D2005:"The left side of := must be a variable name (start with $)",T2006:"The right side of the function application operator ~> must be a function",T2007:"Type mismatch when comparing values {{value}} and {{value2}} in order-by clause",T2008:"The expressions within an order-by clause must evaluate to numeric or string values",T2009:"The values {{value}} and {{value2}} either side of operator {{token}} must be of the same data type",T2010:"The expressions either side of operator {{token}} must evaluate to numeric or string values",T2011:"The insert/update clause of the transform expression must evaluate to an object: {{value}}",T2012:"The delete clause of the transform expression must evaluate to a string or array of strings: {{value}}",T2013:"The transform expression clones the input object using the $clone() function. This has been overridden in the current scope by a non-function.",D2014:"The size of the sequence allocated by the range operator (..) must not exceed 1e6. Attempted to allocate {{value}}.",D3001:"Attempting to invoke string function on Infinity or NaN",D3010:"Second argument of replace function cannot be an empty string",D3011:"Fourth argument of replace function must evaluate to a positive number",D3012:"Attempted to replace a matched string with a non-string value",D3020:"Third argument of split function must evaluate to a positive number",D3030:"Unable to cast value to a number: {{value}}",D3040:"Third argument of match function must evaluate to a positive number",D3050:"The second argument of reduce function must be a function with at least two arguments",D3060:"The sqrt function cannot be applied to a negative number: {{value}}",D3061:"The power function has resulted in a value that cannot be represented as a JSON number: base={{value}}, exponent={{exp}}",D3070:"The single argument form of the sort function can only be applied to an array of strings or an array of numbers. Use the second argument to specify a comparison function",D3080:"The picture string must only contain a maximum of two sub-pictures",D3081:"The sub-picture must not contain more than one instance of the 'decimal-separator' character",D3082:"The sub-picture must not contain more than one instance of the 'percent' character",D3083:"The sub-picture must not contain more than one instance of the 'per-mille' character",D3084:"The sub-picture must not contain both a 'percent' and a 'per-mille' character",D3085:"The mantissa part of a sub-picture must contain at least one character that is either an 'optional digit character' or a member of the 'decimal digit family'",D3086:"The sub-picture must not contain a passive character that is preceded by an active character and that is followed by another active character",D3087:"The sub-picture must not contain a 'grouping-separator' character that appears adjacent to a 'decimal-separator' character",D3088:"The sub-picture must not contain a 'grouping-separator' at the end of the integer part",D3089:"The sub-picture must not contain two adjacent instances of the 'grouping-separator' character",D3090:"The integer part of the sub-picture must not contain a member of the 'decimal digit family' that is followed by an instance of the 'optional digit character'",D3091:"The fractional part of the sub-picture must not contain an instance of the 'optional digit character' that is followed by a member of the 'decimal digit family'",D3092:"A sub-picture that contains a 'percent' or 'per-mille' character must not contain a character treated as an 'exponent-separator'",D3093:"The exponent part of the sub-picture must comprise only of one or more characters that are members of the 'decimal digit family'",D3100:"The radix of the formatBase function must be between 2 and 36. It was given {{value}}",D3110:"The argument of the toMillis function must be an ISO 8601 formatted timestamp. Given {{value}}",D3120:"Syntax error in expression passed to function eval: {{value}}",D3121:"Dynamic error evaluating the expression passed to function eval: {{value}}",D3130:"Formatting or parsing an integer as a sequence starting with {{value}} is not supported by this implementation",D3131:"In a decimal digit pattern, all digits must be from the same decimal group",D3132:"Unknown component specifier {{value}} in date/time picture string",D3133:"The 'name' modifier can only be applied to months and days in the date/time picture string, not {{value}}",D3134:"The timezone integer format specifier cannot have more than four digits",D3135:"No matching closing bracket ']' in date/time picture string",D3136:"The date/time picture string is missing specifiers required to parse the timestamp",D3137:"{{{message}}}",D3138:"The $single() function expected exactly 1 matching result. Instead it matched more.",D3139:"The $single() function expected exactly 1 matching result. Instead it matched 0.",D3140:"Malformed URL passed to ${{{functionName}}}(): {{value}}",D3141:"{{{message}}}"};function Lt(t){var e=Ct[t.code];if(void 0!==e){var r=e.replace(/\{\{\{([^}]+)}}}/g,(function(){return t[arguments[1]]}));r=r.replace(/\{\{([^}]+)}}/g,(function(){return JSON.stringify(t[arguments[1]])})),t.message=r}}function Dt(t,e){var r,n;try{r=u(t,e&&e.recover),n=r.errors,delete r.errors}catch(t){throw Lt(t),t}var i=It(F),a=new Date;return i.bind("now",Mt((function(t,e){return o.fromMillis(a.getTime(),t,e)}),"<s?s?:s>")),i.bind("millis",Mt((function(){return a.getTime()}),"<:n>")),e&&e.RegexEngine?Dt.RegexEngine=e.RegexEngine:Dt.RegexEngine=RegExp,{evaluate:function(t,e,o){if(void 0!==n){var s={code:"S0500",position:0};throw Lt(s),s}var u,c,f;if(void 0!==e)for(var l in u=It(i),e)u.bind(l,e[l]);else u=i;if(u.bind("$",t),a=new Date,u.timestamp=a,Array.isArray(t)&&!I(t)&&((t=R(t)).outerWrapper=!0),"function"==typeof o){u.async=!0;var h=function(t){Lt(t),o(t,null)};f=z(r,t,u),(c=f.next()).value.then((function t(e){(c=f.next(e)).done?o(null,c.value):c.value.then(t).catch(h)})).catch(h)}else try{for(f=z(r,t,u),c=f.next();!c.done;)c=f.next(c.value);return c.value}catch(s){throw Lt(s),s}},assign:function(t,e){i.bind(t,e)},registerFunction:function(t,e,r){var n=Mt(e,r);i.bind(t,n)},ast:function(){return r},errors:function(){return n}}}return Dt.parser=u,Dt}();e.exports=f},{"./datetime":1,"./functions":2,"./parser":4,"./signature":5,"./utils":6}],4:[function(t,e,r){"use strict";var n,o,i,a=t("./signature"),s=(n={".":75,"[":80,"]":0,"{":70,"}":0,"(":80,")":0,",":0,"@":80,"#":80,";":80,":":80,"?":20,"+":50,"-":50,"*":60,"/":60,"%":60,"|":20,"=":40,"<":40,">":40,"^":40,"**":60,"..":20,":=":10,"!=":40,"<=":40,">=":40,"~>":40,and:30,or:25,in:40,"&":50,"!":0,"~":0},o={'"':'"',"\\":"\\","/":"/",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t"},i=function(t){var e=0,r=t.length,i=function(t,r){return{type:t,value:r,position:e}};return function a(s){if(e>=r)return null;for(var u=t.charAt(e);e<r&&" \t\n\r\v".indexOf(u)>-1;)e++,u=t.charAt(e);if("/"===u&&"*"===t.charAt(e+1)){var c=e;for(e+=2,u=t.charAt(e);"*"!==u||"/"!==t.charAt(e+1);)if(u=t.charAt(++e),e>=r)throw{code:"S0106",stack:(new Error).stack,position:c};return e+=2,u=t.charAt(e),a(s)}if(!0!==s&&"/"===u)return e++,i("regex",function(){for(var n,o,i=e,a=0;e<r;){var s=t.charAt(e);if("/"===s&&"\\"!==t.charAt(e-1)&&0===a){if(""===(n=t.substring(i,e)))throw{code:"S0301",stack:(new Error).stack,position:e};for(e++,s=t.charAt(e),i=e;"i"===s||"m"===s;)e++,s=t.charAt(e);return o=t.substring(i,e)+"g",new RegExp(n,o)}"("!==s&&"["!==s&&"{"!==s||"\\"===t.charAt(e-1)||a++,")"!==s&&"]"!==s&&"}"!==s||"\\"===t.charAt(e-1)||a--,e++}throw{code:"S0302",stack:(new Error).stack,position:e}}());if("."===u&&"."===t.charAt(e+1))return e+=2,i("operator","..");if(":"===u&&"="===t.charAt(e+1))return e+=2,i("operator",":=");if("!"===u&&"="===t.charAt(e+1))return e+=2,i("operator","!=");if(">"===u&&"="===t.charAt(e+1))return e+=2,i("operator",">=");if("<"===u&&"="===t.charAt(e+1))return e+=2,i("operator","<=");if("*"===u&&"*"===t.charAt(e+1))return e+=2,i("operator","**");if("~"===u&&">"===t.charAt(e+1))return e+=2,i("operator","~>");if(Object.prototype.hasOwnProperty.call(n,u))return e++,i("operator",u);if('"'===u||"'"===u){var f=u;e++;for(var l="";e<r;){if("\\"===(u=t.charAt(e)))if(e++,u=t.charAt(e),Object.prototype.hasOwnProperty.call(o,u))l+=o[u];else{if("u"!==u)throw{code:"S0103",stack:(new Error).stack,position:e,token:u};var h=t.substr(e+1,4);if(!/^[0-9a-fA-F]+$/.test(h))throw{code:"S0104",stack:(new Error).stack,position:e};var p=parseInt(h,16);l+=String.fromCharCode(p),e+=4}else{if(u===f)return e++,i("string",l);l+=u}e++}throw{code:"S0101",stack:(new Error).stack,position:e}}var y,d=/^-?(0|([1-9][0-9]*))(\.[0-9]+)?([Ee][-+]?[0-9]+)?/.exec(t.substring(e));if(null!==d){var v=parseFloat(d[0]);if(!isNaN(v)&&isFinite(v))return e+=d[0].length,i("number",v);throw{code:"S0102",stack:(new Error).stack,position:e,token:d[0]}}if("`"===u){e++;var g=t.indexOf("`",e);if(-1!==g)return y=t.substring(e,g),e=g+1,i("name",y);throw e=r,{code:"S0105",stack:(new Error).stack,position:e}}for(var b,m=e;;)if(b=t.charAt(m),m===r||" \t\n\r\v".indexOf(b)>-1||Object.prototype.hasOwnProperty.call(n,b)){if("$"===t.charAt(e))return y=t.substring(e+1,m),e=m,i("variable",y);switch(y=t.substring(e,m),e=m,y){case"or":case"in":case"and":return i("operator",y);case"true":return i("value",!0);case"false":return i("value",!1);case"null":return i("value",null);default:return e===r&&""===y?null:i("name",y)}}else m++}},function(t,e){var r,o,s={},u=[],c=function(){var t=[];"(end)"!==r.id&&t.push({type:r.type,value:r.value,position:r.position});for(var e=o();null!==e;)t.push(e),e=o();return t},f={nud:function(){var t={code:"S0211",token:this.value,position:this.position};if(e)return t.remaining=c(),t.type="error",u.push(t),t;throw t.stack=(new Error).stack,t}},l=function(t,e){var r=s[t];return e=e||0,r?e>=r.lbp&&(r.lbp=e):((r=Object.create(f)).id=r.value=t,r.lbp=e,s[t]=r),r},h=function(t){if(e){t.remaining=c(),u.push(t);var n=s["(error)"];return(r=Object.create(n)).error=t,r.type="(error)",r}throw t.stack=(new Error).stack,t},p=function(e,n){if(e&&r.id!==e){var i={code:"(end)"===r.id?"S0203":"S0202",position:r.position,token:r.value,value:e};return h(i)}var a=o(n);if(null===a)return(r=s["(end)"]).position=t.length,r;var u,c=a.value,f=a.type;switch(f){case"name":case"variable":u=s["(name)"];break;case"operator":if(!(u=s[c]))return h({code:"S0204",stack:(new Error).stack,position:a.position,token:c});break;case"string":case"number":case"value":u=s["(literal)"];break;case"regex":f="regex",u=s["(regex)"];break;default:return h({code:"S0205",stack:(new Error).stack,position:a.position,token:c})}return(r=Object.create(u)).value=c,r.type=f,r.position=a.position,r},y=function(t){var e,n=r;for(p(null,!0),e=n.nud();t<r.lbp;)n=r,p(),e=n.led(e);return e},d=function(t){l(t,0).nud=function(){return this}},v=function(t,e,r){var o=e||n[t],i=l(t,o);return i.led=r||function(t){return this.lhs=t,this.rhs=y(o),this.type="binary",this},i},g=function(t,e,r){var n=l(t,e);return n.led=r,n},b=function(t,e){var r=l(t);return r.nud=e||function(){return this.expression=y(70),this.type="unary",this},r};d("(end)"),d("(name)"),d("(literal)"),d("(regex)"),l(":"),l(";"),l(","),l(")"),l("]"),l("}"),l(".."),v("."),v("+"),v("-"),v("*"),v("/"),v("%"),v("="),v("<"),v(">"),v("!="),v("<="),v(">="),v("&"),v("and"),v("or"),v("in"),d("and"),d("or"),d("in"),b("-"),v("~>"),g("(error)",10,(function(t){return this.lhs=t,this.error=r.error,this.remaining=c(),this.type="error",this})),b("*",(function(){return this.type="wildcard",this})),b("**",(function(){return this.type="descendant",this})),b("%",(function(){return this.type="parent",this})),v("(",n["("],(function(t){if(this.procedure=t,this.type="function",this.arguments=[],")"!==r.id)for(;"operator"===r.type&&"?"===r.id?(this.type="partial",this.arguments.push(r),p("?")):this.arguments.push(y(0)),","===r.id;)p(",");if(p(")",!0),"name"===t.type&&("function"===t.value||"λ"===t.value)){if(this.arguments.forEach((function(t,e){if("variable"!==t.type)return h({code:"S0208",stack:(new Error).stack,position:t.position,token:t.value,value:e+1})})),this.type="lambda","<"===r.id){for(var e=r.position,n=1,o="<";n>0&&"{"!==r.id&&"(end)"!==r.id;){var i=p();">"===i.id?n--:"<"===i.id&&n++,o+=i.value}p(">");try{this.signature=a(o)}catch(t){return t.position=e+t.offset,h(t)}}p("{"),this.body=y(0),p("}")}return this})),b("(",(function(){for(var t=[];")"!==r.id&&(t.push(y(0)),";"===r.id);)p(";");return p(")",!0),this.type="block",this.expressions=t,this})),b("[",(function(){var t=[];if("]"!==r.id)for(;;){var e=y(0);if(".."===r.id){var n={type:"binary",value:"..",position:r.position,lhs:e};p(".."),n.rhs=y(0),e=n}if(t.push(e),","!==r.id)break;p(",")}return p("]",!0),this.expressions=t,this.type="unary",this})),v("[",n["["],(function(t){if("]"===r.id){for(var e=t;e&&"binary"===e.type&&"["===e.value;)e=e.lhs;return e.keepArray=!0,p("]"),t}return this.lhs=t,this.rhs=y(n["]"]),this.type="binary",p("]",!0),this})),v("^",n["^"],(function(t){p("(");for(var e=[];;){var n={descending:!1};if("<"===r.id?p("<"):">"===r.id&&(n.descending=!0,p(">")),n.expression=y(0),e.push(n),","!==r.id)break;p(",")}return p(")"),this.lhs=t,this.rhs=e,this.type="binary",this}));var m=function(t){var e=[];if("}"!==r.id)for(;;){var n=y(0);p(":");var o=y(0);if(e.push([n,o]),","!==r.id)break;p(",")}return p("}",!0),void 0===t?(this.lhs=e,this.type="unary"):(this.lhs=t,this.rhs=e,this.type="binary"),this};b("{",m),v("{",n["{"],m),g(":=",n[":="],(function(t){return"variable"!==t.type?h({code:"S0212",stack:(new Error).stack,position:t.position,token:t.value}):(this.lhs=t,this.rhs=y(n[":="]-1),this.type="binary",this)})),v("@",n["@"],(function(t){return this.lhs=t,this.rhs=y(n["@"]),"variable"!==this.rhs.type?h({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"@"}):(this.type="binary",this)})),v("#",n["#"],(function(t){return this.lhs=t,this.rhs=y(n["#"]),"variable"!==this.rhs.type?h({code:"S0214",stack:(new Error).stack,position:this.rhs.position,token:"#"}):(this.type="binary",this)})),v("?",n["?"],(function(t){return this.type="condition",this.condition=t,this.then=y(0),":"===r.id&&(p(":"),this.else=y(0)),this})),b("|",(function(){return this.type="transform",this.pattern=y(0),p("|"),this.update=y(0),","===r.id&&(p(","),this.delete=y(0)),p("|"),this}));var w=function t(e){var r;if("function"!==e.type||e.predicate)if("condition"===e.type)e.then=t(e.then),void 0!==e.else&&(e.else=t(e.else)),r=e;else if("block"===e.type){var n=e.expressions.length;n>0&&(e.expressions[n-1]=t(e.expressions[n-1])),r=e}else r=e;else{var o={type:"lambda",thunk:!0,arguments:[],position:e.position};o.body=e,r=o}return r},x=0,k=0,S=[],_=function t(e,r){switch(e.type){case"name":case"wildcard":r.level--,0===r.level&&(void 0===e.ancestor||(S[r.index].slot.label=e.ancestor.label),e.ancestor=r,e.tuple=!0);break;case"parent":r.level++;break;case"block":e.expressions.length>0&&(e.tuple=!0,r=t(e.expressions[e.expressions.length-1],r));break;case"path":e.tuple=!0;var n=e.steps.length-1;for(r=t(e.steps[n--],r);r.level>0&&n>=0;)r=t(e.steps[n--],r);break;default:throw{code:"S0217",token:e.type,position:e.position}}return r},O=function(t,e){if(void 0!==e.seekingParent||"parent"===e.type){var r=void 0!==e.seekingParent?e.seekingParent:[];"parent"===e.type&&r.push(e.slot),void 0===t.seekingParent?t.seekingParent=r:Array.prototype.push.apply(t.seekingParent,r)}},E=function(t){var e=t.steps.length-1,r=t.steps[e],n=void 0!==r.seekingParent?r.seekingParent:[];"parent"===r.type&&n.push(r.slot);for(var o=0;o<n.length;o++){var i=n[o];for(e=t.steps.length-2;i.level>0;){if(e<0){void 0===t.seekingParent?t.seekingParent=[i]:t.seekingParent.push(i);break}for(var a=t.steps[e--];e>=0&&a.focus&&t.steps[e].focus;)a=t.steps[e--];i=_(a,i)}}};o=i(t),p();var A=y(0);if("(end)"!==r.id){var P={code:"S0201",position:r.position,token:r.value};h(P)}if(A=function t(r){var n;switch(r.type){case"binary":switch(r.value){case".":var o=t(r.lhs);n="path"===o.type?o:{type:"path",steps:[o]},"parent"===o.type&&(n.seekingParent=[o.slot]);var i=t(r.rhs);"function"===i.type&&"path"===i.procedure.type&&1===i.procedure.steps.length&&"name"===i.procedure.steps[0].type&&"function"===n.steps[n.steps.length-1].type&&(n.steps[n.steps.length-1].nextFunction=i.procedure.steps[0].value),"path"===i.type?Array.prototype.push.apply(n.steps,i.steps):(void 0!==i.predicate&&(i.stages=i.predicate,delete i.predicate),n.steps.push(i)),n.steps.filter((function(t){if("number"===t.type||"value"===t.type)throw{code:"S0213",stack:(new Error).stack,position:t.position,value:t.value};return"string"===t.type})).forEach((function(t){t.type="name"})),n.steps.filter((function(t){return!0===t.keepArray})).length>0&&(n.keepSingletonArray=!0);var a=n.steps[0];"unary"===a.type&&"["===a.value&&(a.consarray=!0);var s=n.steps[n.steps.length-1];"unary"===s.type&&"["===s.value&&(s.consarray=!0),E(n);break;case"[":var c=n=t(r.lhs),f="predicate";if("path"===n.type&&(c=n.steps[n.steps.length-1],f="stages"),void 0!==c.group)throw{code:"S0209",stack:(new Error).stack,position:r.position};void 0===c[f]&&(c[f]=[]);var l=t(r.rhs);void 0!==l.seekingParent&&(l.seekingParent.forEach((function(t){1===t.level?_(c,t):t.level--})),O(c,l)),c[f].push({type:"filter",expr:l,position:r.position});break;case"{":if(void 0!==(n=t(r.lhs)).group)throw{code:"S0210",stack:(new Error).stack,position:r.position};n.group={lhs:r.rhs.map((function(e){return[t(e[0]),t(e[1])]})),position:r.position};break;case"^":"path"!==(n=t(r.lhs)).type&&(n={type:"path",steps:[n]});var h={type:"sort",position:r.position};h.terms=r.rhs.map((function(e){var r=t(e.expression);return O(h,r),{descending:e.descending,expression:r}})),n.steps.push(h),E(n);break;case":=":(n={type:"bind",value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs),O(n,n.rhs);break;case"@":if(n=t(r.lhs),c=n,"path"===n.type&&(c=n.steps[n.steps.length-1]),void 0!==c.stages||void 0!==c.predicate)throw{code:"S0215",stack:(new Error).stack,position:r.position};if("sort"===c.type)throw{code:"S0216",stack:(new Error).stack,position:r.position};r.keepArray&&(c.keepArray=!0),c.focus=r.rhs.value,c.tuple=!0;break;case"#":n=t(r.lhs),c=n,"path"===n.type?c=n.steps[n.steps.length-1]:(n={type:"path",steps:[n]},void 0!==c.predicate&&(c.stages=c.predicate,delete c.predicate)),void 0===c.stages?c.index=r.rhs.value:c.stages.push({type:"index",value:r.rhs.value,position:r.position}),c.tuple=!0;break;case"~>":(n={type:"apply",value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs);break;default:(n={type:r.type,value:r.value,position:r.position}).lhs=t(r.lhs),n.rhs=t(r.rhs),O(n,n.lhs),O(n,n.rhs)}break;case"unary":n={type:r.type,value:r.value,position:r.position},"["===r.value?n.expressions=r.expressions.map((function(e){var r=t(e);return O(n,r),r})):"{"===r.value?n.lhs=r.lhs.map((function(e){var r=t(e[0]);O(n,r);var o=t(e[1]);return O(n,o),[r,o]})):(n.expression=t(r.expression),"-"===r.value&&"number"===n.expression.type?(n=n.expression).value=-n.value:O(n,n.expression));break;case"function":case"partial":(n={type:r.type,name:r.name,value:r.value,position:r.position}).arguments=r.arguments.map((function(e){var r=t(e);return O(n,r),r})),n.procedure=t(r.procedure);break;case"lambda":n={type:r.type,arguments:r.arguments,signature:r.signature,position:r.position};var p=t(r.body);n.body=w(p);break;case"condition":(n={type:r.type,position:r.position}).condition=t(r.condition),O(n,n.condition),n.then=t(r.then),O(n,n.then),void 0!==r.else&&(n.else=t(r.else),O(n,n.else));break;case"transform":(n={type:r.type,position:r.position}).pattern=t(r.pattern),n.update=t(r.update),void 0!==r.delete&&(n.delete=t(r.delete));break;case"block":(n={type:r.type,position:r.position}).expressions=r.expressions.map((function(e){var r=t(e);return O(n,r),(r.consarray||"path"===r.type&&r.steps[0].consarray)&&(n.consarray=!0),r}));break;case"name":n={type:"path",steps:[r]},r.keepArray&&(n.keepSingletonArray=!0);break;case"parent":n={type:"parent",slot:{label:"!"+x++,level:1,index:k++}},S.push(n);break;case"string":case"number":case"value":case"wildcard":case"descendant":case"variable":case"regex":n=r;break;case"operator":if("and"===r.value||"or"===r.value||"in"===r.value)r.type="name",n=t(r);else{if("?"!==r.value)throw{code:"S0201",stack:(new Error).stack,position:r.position,token:r.value};n=r}break;case"error":n=r,r.lhs&&(n=t(r.lhs));break;default:var y="S0206";"(end)"===r.id&&(y="S0207");var d={code:y,position:r.position,token:r.value};if(e)return u.push(d),{type:"error",error:d};throw d.stack=(new Error).stack,d}return r.keepArray&&(n.keepArray=!0),n}(A),"parent"===A.type||void 0!==A.seekingParent)throw{code:"S0217",token:A.type,position:A.position};return u.length>0&&(A.errors=u),A});e.exports=s},{"./signature":5}],5:[function(t,e,r){"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o,i=t("./utils"),a=(o={a:"arrays",b:"booleans",f:"functions",n:"numbers",o:"objects",s:"strings"},function(t){for(var e=1,r=[],a={},s=a;e<t.length;){var u=t.charAt(e);if(":"===u)break;var c=function(){r.push(a),s=a,a={}},f=function(t,e,r,n){for(var o=1,i=e;i<t.length;)if(i++,(u=t.charAt(i))===n){if(0==--o)break}else u===r&&o++;return i};switch(u){case"s":case"n":case"b":case"l":case"o":a.regex="["+u+"m]",a.type=u,c();break;case"a":a.regex="[asnblfom]",a.type=u,a.array=!0,c();break;case"f":a.regex="f",a.type=u,c();break;case"j":a.regex="[asnblom]",a.type=u,c();break;case"x":a.regex="[asnblfom]",a.type=u,c();break;case"-":s.context=!0,s.contextRegex=new RegExp(s.regex),s.regex+="?";break;case"?":case"+":s.regex+=u;break;case"(":var l=f(t,e,"(",")"),h=t.substring(e+1,l);if(-1!==h.indexOf("<"))throw{code:"S0402",stack:(new Error).stack,value:h,offset:e};a.regex="["+h+"m]",a.type="("+h+")",e=l,c();break;case"<":if("a"!==s.type&&"f"!==s.type)throw{code:"S0401",stack:(new Error).stack,value:s.type,offset:e};var p=f(t,e,"<",">");s.subtype=t.substring(e+1,p),e=p}e++}var y="^"+r.map((function(t){return"("+t.regex+")"})).join("")+"$",d=new RegExp(y),v=function(t){var e;if(i.isFunction(t))e="f";else switch(n(t)){case"string":e="s";break;case"number":e="n";break;case"boolean":e="b";break;case"object":e=null===t?"l":Array.isArray(t)?"a":"o";break;default:e="m"}return e};return{definition:t,validate:function(t,e){var n="";t.forEach((function(t){n+=v(t)}));var i=d.exec(n);if(i){var a=[],s=0;return r.forEach((function(r,n){var u=t[s],c=i[n+1];if(""===c)if(r.context&&r.contextRegex){var f=v(e);if(!r.contextRegex.test(f))throw{code:"T0411",stack:(new Error).stack,value:e,index:s+1};a.push(e)}else a.push(u),s++;else c.split("").forEach((function(e){if("a"===r.type){if("m"===e)u=void 0;else{u=t[s];var n=!0;if(void 0!==r.subtype)if("a"!==e&&c!==r.subtype)n=!1;else if("a"===e&&u.length>0){var i=v(u[0]);n=i===r.subtype.charAt(0)&&0===u.filter((function(t){return v(t)!==i})).length}if(!n)throw{code:"T0412",stack:(new Error).stack,value:u,index:s+1,type:o[r.subtype]};"a"!==e&&(u=[u])}a.push(u),s++}else a.push(u),s++}))})),a}!function(t,e){for(var n="^",o=0,i=0;i<r.length;i++){n+=r[i].regex;var a=e.match(n);if(null===a)throw{code:"T0410",stack:(new Error).stack,value:t[o],index:o+1};o=a[0].length}throw{code:"T0410",stack:(new Error).stack,value:t[o],index:o+1}}(t,n)}}});e.exports=a},{"./utils":6}],6:[function(t,e,r){"use strict";function n(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function o(t){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}var i=function(){function t(t){var e=!1;if("number"==typeof t&&(e=!isNaN(t))&&!isFinite(t))throw{code:"D1001",value:t,stack:(new Error).stack};return e}var e=("function"==typeof Symbol?Symbol:{}).iterator||"@@iterator";return{isNumeric:t,isArrayOfStrings:function(t){var e=!1;return Array.isArray(t)&&(e=0===t.filter((function(t){return"string"!=typeof t})).length),e},isArrayOfNumbers:function(e){var r=!1;return Array.isArray(e)&&(r=0===e.filter((function(e){return!t(e)})).length),r},createSequence:function(){var t=[];return t.sequence=!0,1===arguments.length&&t.push(arguments[0]),t},isSequence:function(t){return!0===t.sequence&&Array.isArray(t)},isFunction:function(t){return t&&(!0===t._jsonata_function||!0===t._jsonata_lambda)||"function"==typeof t},isLambda:function(t){return t&&!0===t._jsonata_lambda},isIterable:function(t){return"object"===o(t)&&null!==t&&e in t&&"next"in t&&"function"==typeof t.next},getFunctionArity:function(t){return"number"==typeof t.arity?t.arity:"function"==typeof t.implementation?t.implementation.length:"number"==typeof t.length?t.length:t.arguments.length},isDeepEqual:function t(e,r){if(e===r)return!0;if("object"===o(e)&&"object"===o(r)&&null!==e&&null!==r){if(Array.isArray(e)&&Array.isArray(r)){if(e.length!==r.length)return!1;for(var n=0;n<e.length;n++)if(!t(e[n],r[n]))return!1;return!0}var i=Object.getOwnPropertyNames(e),a=Object.getOwnPropertyNames(r);if(i.length!==a.length)return!1;for(i=i.sort(),a=a.sort(),n=0;n<i.length;n++)if(i[n]!==a[n])return!1;for(n=0;n<i.length;n++){var s=i[n];if(!t(e[s],r[s]))return!1}return!0}return!1},stringToArray:function(t){var e,r=[],o=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return n(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var o=0,i=function(){};return{s:i,n:function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,u=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return s=t.done,t},e:function(t){u=!0,a=t},f:function(){try{s||null==r.return||r.return()}finally{if(u)throw a}}}}(t);try{for(o.s();!(e=o.n()).done;){var i=e.value;r.push(i)}}catch(t){o.e(t)}finally{o.f()}return r}}}();e.exports=i},{}]},{},[3])(3)},"object"===s(e)?t.exports=u():(o=[],void 0===(i="function"==typeof(n=u)?n.apply(e,o):n)||(t.exports=i))},87751:(t,e,r)=>{function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}var o=function(t){"use strict";var e,r=Object.prototype,o=r.hasOwnProperty,i=Object.defineProperty||function(t,e,r){t[e]=r.value},a="function"==typeof Symbol?Symbol:{},s=a.iterator||"@@iterator",u=a.asyncIterator||"@@asyncIterator",c=a.toStringTag||"@@toStringTag";function f(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{f({},"")}catch(t){f=function(t,e,r){return t[e]=r}}function l(t,e,r,n){var o=e&&e.prototype instanceof b?e:b,a=Object.create(o.prototype),s=new M(n||[]);return i(a,"_invoke",{value:A(t,r,s)}),a}function h(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=l;var p="suspendedStart",y="suspendedYield",d="executing",v="completed",g={};function b(){}function m(){}function w(){}var x={};f(x,s,(function(){return this}));var k=Object.getPrototypeOf,S=k&&k(k(R([])));S&&S!==r&&o.call(S,s)&&(x=S);var _=w.prototype=b.prototype=Object.create(x);function O(t){["next","throw","return"].forEach((function(e){f(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(i,a,s,u){var c=h(t[i],t,a);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"===n(l)&&o.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,s,u)}),(function(t){r("throw",t,s,u)})):e.resolve(l).then((function(t){f.value=t,s(f)}),(function(t){return r("throw",t,s,u)}))}u(c.arg)}var a;i(this,"_invoke",{value:function(t,n){function o(){return new e((function(e,o){r(t,n,e,o)}))}return a=a?a.then(o,o):o()}})}function A(t,e,r){var n=p;return function(o,i){if(n===d)throw new Error("Generator is already running");if(n===v){if("throw"===o)throw i;return I()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=P(a,r);if(s){if(s===g)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===p)throw n=v,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=d;var u=h(t,e,r);if("normal"===u.type){if(n=r.done?v:y,u.arg===g)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n=v,r.method="throw",r.arg=u.arg)}}}function P(t,r){var n=r.method,o=t.iterator[n];if(o===e)return r.delegate=null,"throw"===n&&t.iterator.return&&(r.method="return",r.arg=e,P(t,r),"throw"===r.method)||"return"!==n&&(r.method="throw",r.arg=new TypeError("The iterator does not provide a '"+n+"' method")),g;var i=h(o,t.iterator,r.arg);if("throw"===i.type)return r.method="throw",r.arg=i.arg,r.delegate=null,g;var a=i.arg;return a?a.done?(r[t.resultName]=a.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,g):a:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,g)}function j(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function T(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function M(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(j,this),this.reset(!0)}function R(t){if(t){var r=t[s];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,i=function r(){for(;++n<t.length;)if(o.call(t,n))return r.value=t[n],r.done=!1,r;return r.value=e,r.done=!0,r};return i.next=i}}return{next:I}}function I(){return{value:e,done:!0}}return m.prototype=w,i(_,"constructor",{value:w,configurable:!0}),i(w,"constructor",{value:m,configurable:!0}),m.displayName=f(w,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===m||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,w):(t.__proto__=w,f(t,c,"GeneratorFunction")),t.prototype=Object.create(_),t},t.awrap=function(t){return{__await:t}},O(E.prototype),f(E.prototype,u,(function(){return this})),t.AsyncIterator=E,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new E(l(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},O(_),f(_,c,"Generator"),f(_,s,(function(){return this})),f(_,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=R,M.prototype={constructor:M,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(T),!t)for(var r in this)"t"===r.charAt(0)&&o.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function n(n,o){return s.type="throw",s.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i],s=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var u=o.call(a,"catchLoc"),c=o.call(a,"finallyLoc");if(u&&c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&o.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var i=n;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,g):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),g},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),T(r),g}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;T(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:R(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),g}},t}("object"===n(t=r.nmd(t))?t.exports:{});try{regeneratorRuntime=o}catch(t){"object"===("undefined"==typeof globalThis?"undefined":n(globalThis))?globalThis.regeneratorRuntime=o:Function("r","regeneratorRuntime = r")(o)}}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={id:n,loaded:!1,exports:{}};return t[n].call(i.exports,i,i.exports,r),i.loaded=!0,i.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.nmd=t=>(t.paths=[],t.children||(t.children=[]),t);var n={};return(()=>{"use strict";r.r(n),r.d(n,{AbsoluteLayout:()=>Za,AudioPlayer:()=>ly,CardLayout:()=>es,Component:()=>da,Connectable:()=>Xs,Container:()=>Eh,ContainerAbstract:()=>Ss,DEFAULT:()=>zo,DPPX:()=>Bo,DataSource:()=>Bd,Donut:()=>md,Ellipse:()=>ip,EventMap:()=>vl,FPS:()=>nv,GESTURES:()=>No,GifView:()=>oy,GlobalRef:()=>Vy,Group:()=>Ay,HTMLAbsoluteLayout:()=>Ya,HTMLOverlayContainer:()=>Fy,HTMLOverlayElement:()=>qp,ImageView:()=>Gp,InfoWindow:()=>La,KEYEVENTS:()=>Fo,Layer:()=>js,Layout:()=>za,Line:()=>$h,LinearHorizontalLayout:()=>os,LinearVerticalLayout:()=>ss,LocalRef:()=>Cy,MAX_UNDO_SIZE:()=>Do,MODE_ADD:()=>Co,MODE_EDIT:()=>Ro,MODE_SHIFT:()=>Io,MODE_VIEW:()=>Mo,Model:()=>ov,MoveHandle:()=>vs,NOTHING:()=>To,OrthoLine:()=>Dp,Path:()=>ad,Polygon:()=>hp,Polyline:()=>_p,Popup:()=>ed,Rect:()=>tu,RectPath:()=>Ea,ReferenceMap:()=>Gd,RootContainer:()=>Nl,Ruler:()=>au,SCENE_MODE:()=>Lo,Scene:()=>sh,ScenePopup:()=>Ka,ScriptLoader:()=>Zd,Shape:()=>xa,Star:()=>Ed,TableLayout:()=>cs,Text:()=>vy,Triangle:()=>hd,ValueHolder:()=>Rd,create:()=>lh,debug:()=>to,error:()=>Zn,license:()=>iv,polyfill:()=>a,version:()=>$d,warn:()=>$n});var t={};r.r(t),r.d(t,{append:()=>kn,clear:()=>jn,forEach:()=>En,getAt:()=>On,indexOf:()=>An,insertAt:()=>xn,moveBackward:()=>Mn,moveForward:()=>Tn,moveToHead:()=>Rn,moveToTail:()=>In,prepend:()=>Sn,remove:()=>_n,size:()=>Pn});var e={};r.r(e),r.d(e,{pop:()=>Ln,push:()=>Cn});var o={};r.r(o),r.d(o,{clear:()=>jo,intercept:()=>Ao,reset:()=>Po});var i={};r.r(i),r.d(i,{compile:()=>ec,duplicate:()=>rc,match:()=>Xo,select:()=>Qo}),r(46280),r(87751),r(91441);const a="done";"function"!=typeof Object.assign&&(Object.assign=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1;r<arguments.length;r++){var n=arguments[r];if(null!=n)for(var o in n)n.hasOwnProperty(o)&&(e[o]=n[o])}return e}),"function"!=typeof Object.values&&(Object.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e}),"function"!=typeof Object.keys&&(Object.values=function(t){var e=[];for(var r in t)e.push(r);return e}),"undefined"!=typeof CanvasRenderingContext2D&&null==CanvasRenderingContext2D.prototype.ellipse&&(CanvasRenderingContext2D.prototype.ellipse=function(t,e,r,n,o,i,a,s){this.save(),this.translate(t,e),this.rotate(o),this.translate(-r,-n),this.scale(r,n),this.arc(1,1,1,i,a,s),this.restore()}),function(){for(var t=0,e=["ms","moz","webkit","o"],r=0;r<e.length&&!window.requestAnimationFrame;++r)window.requestAnimationFrame=window[e[r]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[e[r]+"CancelAnimationFrame"]||window[e[r]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(console.warn("requestAnimationFrame not supported"),window.requestAnimationFrame=function(e,r){var n=performance.now(),o=Math.max(0,33-(n-t)),i=window.setTimeout((function(){e(n+o)}),o);return t=n+o,i}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(t){clearTimeout(t)})}(),String.prototype.startsWith||(String.prototype.startsWith=function(t,e){return e=e||0,this.substr(e,t.length)===t});const s=function(t,e){return t===e||t!=t&&e!=e},u=function(t,e){for(var r=t.length;r--;)if(s(t[r][0],e))return r;return-1};var c=Array.prototype.splice;function f(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}f.prototype.clear=function(){this.__data__=[],this.size=0},f.prototype.delete=function(t){var e=this.__data__,r=u(e,t);return!(r<0||(r==e.length-1?e.pop():c.call(e,r,1),--this.size,0))},f.prototype.get=function(t){var e=this.__data__,r=u(e,t);return r<0?void 0:e[r][1]},f.prototype.has=function(t){return u(this.__data__,t)>-1},f.prototype.set=function(t,e){var r=this.__data__,n=u(r,t);return n<0?(++this.size,r.push([t,e])):r[n][1]=e,this};const l=f;function h(t){return h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},h(t)}const p="object"==("undefined"==typeof global?"undefined":h(global))&&global&&global.Object===Object&&global;function y(t){return y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},y(t)}var d="object"==("undefined"==typeof self?"undefined":y(self))&&self&&self.Object===Object&&self;const v=p||d||Function("return this")(),g=v.Symbol;var b=Object.prototype,m=b.hasOwnProperty,w=b.toString,x=g?g.toStringTag:void 0;var k=Object.prototype.toString;var S=g?g.toStringTag:void 0;const _=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":S&&S in Object(t)?function(t){var e=m.call(t,x),r=t[x];try{t[x]=void 0;var n=!0}catch(t){}var o=w.call(t);return n&&(e?t[x]=r:delete t[x]),o}(t):function(t){return k.call(t)}(t)};function O(t){return O="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},O(t)}const E=function(t){var e=O(t);return null!=t&&("object"==e||"function"==e)},A=function(t){if(!E(t))return!1;var e=_(t);return"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e},P=v["__core-js_shared__"];var j,T=(j=/[^.]+$/.exec(P&&P.keys&&P.keys.IE_PROTO||""))?"Symbol(src)_1."+j:"";var M=Function.prototype.toString;const R=function(t){if(null!=t){try{return M.call(t)}catch(t){}try{return t+""}catch(t){}}return""};var I=/^\[object .+?Constructor\]$/,C=Function.prototype,L=Object.prototype,D=C.toString,B=L.hasOwnProperty,N=RegExp("^"+D.call(B).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");const F=function(t){return!(!E(t)||(e=t,T&&T in e))&&(A(t)?N:I).test(R(t));var e},z=function(t,e){var r=function(t,e){return null==t?void 0:t[e]}(t,e);return F(r)?r:void 0},U=z(v,"Map"),Y=z(Object,"create");var G=Object.prototype.hasOwnProperty;var H=Object.prototype.hasOwnProperty;function W(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}W.prototype.clear=function(){this.__data__=Y?Y(null):{},this.size=0},W.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},W.prototype.get=function(t){var e=this.__data__;if(Y){var r=e[t];return"__lodash_hash_undefined__"===r?void 0:r}return G.call(e,t)?e[t]:void 0},W.prototype.has=function(t){var e=this.__data__;return Y?void 0!==e[t]:H.call(e,t)},W.prototype.set=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=Y&&void 0===e?"__lodash_hash_undefined__":e,this};const X=W;function q(t){return q="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},q(t)}const V=function(t,e){var r=t.__data__;return function(t){var e=q(t);return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}(e)?r["string"==typeof e?"string":"hash"]:r.map};function Q(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}Q.prototype.clear=function(){this.size=0,this.__data__={hash:new X,map:new(U||l),string:new X}},Q.prototype.delete=function(t){var e=V(this,t).delete(t);return this.size-=e?1:0,e},Q.prototype.get=function(t){return V(this,t).get(t)},Q.prototype.has=function(t){return V(this,t).has(t)},Q.prototype.set=function(t,e){var r=V(this,t),n=r.size;return r.set(t,e),this.size+=r.size==n?0:1,this};const K=Q;function J(t){var e=this.__data__=new l(t);this.size=e.size}J.prototype.clear=function(){this.__data__=new l,this.size=0},J.prototype.delete=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r},J.prototype.get=function(t){return this.__data__.get(t)},J.prototype.has=function(t){return this.__data__.has(t)},J.prototype.set=function(t,e){var r=this.__data__;if(r instanceof l){var n=r.__data__;if(!U||n.length<199)return n.push([t,e]),this.size=++r.size,this;r=this.__data__=new K(n)}return r.set(t,e),this.size=r.size,this};const Z=J;function $(t){var e=-1,r=null==t?0:t.length;for(this.__data__=new K;++e<r;)this.add(t[e])}$.prototype.add=$.prototype.push=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this},$.prototype.has=function(t){return this.__data__.has(t)};const tt=$,et=function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n;)if(e(t[r],r,t))return!0;return!1},rt=function(t,e,r,n,o,i){var a=1&r,s=t.length,u=e.length;if(s!=u&&!(a&&u>s))return!1;var c=i.get(t),f=i.get(e);if(c&&f)return c==e&&f==t;var l=-1,h=!0,p=2&r?new tt:void 0;for(i.set(t,e),i.set(e,t);++l<s;){var y=t[l],d=e[l];if(n)var v=a?n(d,y,l,e,t,i):n(y,d,l,t,e,i);if(void 0!==v){if(v)continue;h=!1;break}if(p){if(!et(e,(function(t,e){if(a=e,!p.has(a)&&(y===t||o(y,t,r,n,i)))return p.push(e);var a}))){h=!1;break}}else if(y!==d&&!o(y,d,r,n,i)){h=!1;break}}return i.delete(t),i.delete(e),h},nt=v.Uint8Array,ot=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r},it=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r};var at=g?g.prototype:void 0,st=at?at.valueOf:void 0;const ut=function(t,e){for(var r=-1,n=e.length,o=t.length;++r<n;)t[o+r]=e[r];return t},ct=Array.isArray,ft=function(t,e,r){var n=e(t);return ct(t)?n:ut(n,r(t))},lt=function(){return[]};var ht=Object.prototype.propertyIsEnumerable,pt=Object.getOwnPropertySymbols;const yt=pt?function(t){return null==t?[]:(t=Object(t),function(t,e){for(var r=-1,n=null==t?0:t.length,o=0,i=[];++r<n;){var a=t[r];e(a,r,t)&&(i[o++]=a)}return i}(pt(t),(function(e){return ht.call(t,e)})))}:lt;function dt(t){return dt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},dt(t)}const vt=function(t){return null!=t&&"object"==dt(t)},gt=function(t){return vt(t)&&"[object Arguments]"==_(t)};var bt=Object.prototype,mt=bt.hasOwnProperty,wt=bt.propertyIsEnumerable,xt=gt(function(){return arguments}())?gt:function(t){return vt(t)&&mt.call(t,"callee")&&!wt.call(t,"callee")};const kt=xt;function St(t){return St="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},St(t)}var _t="object"==("undefined"==typeof exports?"undefined":St(exports))&&exports&&!exports.nodeType&&exports,Ot=_t&&"object"==("undefined"==typeof module?"undefined":St(module))&&module&&!module.nodeType&&module,Et=Ot&&Ot.exports===_t?v.Buffer:void 0;const At=(Et?Et.isBuffer:void 0)||function(){return!1};function Pt(t){return Pt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Pt(t)}var jt=/^(?:0|[1-9]\d*)$/;const Tt=function(t,e){var r=Pt(t);return!!(e=null==e?9007199254740991:e)&&("number"==r||"symbol"!=r&&jt.test(t))&&t>-1&&t%1==0&&t<e},Mt=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991};var Rt={};Rt["[object Float32Array]"]=Rt["[object Float64Array]"]=Rt["[object Int8Array]"]=Rt["[object Int16Array]"]=Rt["[object Int32Array]"]=Rt["[object Uint8Array]"]=Rt["[object Uint8ClampedArray]"]=Rt["[object Uint16Array]"]=Rt["[object Uint32Array]"]=!0,Rt["[object Arguments]"]=Rt["[object Array]"]=Rt["[object ArrayBuffer]"]=Rt["[object Boolean]"]=Rt["[object DataView]"]=Rt["[object Date]"]=Rt["[object Error]"]=Rt["[object Function]"]=Rt["[object Map]"]=Rt["[object Number]"]=Rt["[object Object]"]=Rt["[object RegExp]"]=Rt["[object Set]"]=Rt["[object String]"]=Rt["[object WeakMap]"]=!1;const It=function(t){return function(e){return t(e)}};function Ct(t){return Ct="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ct(t)}var Lt="object"==("undefined"==typeof exports?"undefined":Ct(exports))&&exports&&!exports.nodeType&&exports,Dt=Lt&&"object"==("undefined"==typeof module?"undefined":Ct(module))&&module&&!module.nodeType&&module,Bt=Dt&&Dt.exports===Lt&&p.process;const Nt=function(){try{return Dt&&Dt.require&&Dt.require("util").types||Bt&&Bt.binding&&Bt.binding("util")}catch(t){}}();var Ft=Nt&&Nt.isTypedArray;const zt=Ft?It(Ft):function(t){return vt(t)&&Mt(t.length)&&!!Rt[_(t)]};var Ut=Object.prototype.hasOwnProperty;const Yt=function(t,e){var r=ct(t),n=!r&&kt(t),o=!r&&!n&&At(t),i=!r&&!n&&!o&&zt(t),a=r||n||o||i,s=a?function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}(t.length,String):[],u=s.length;for(var c in t)!e&&!Ut.call(t,c)||a&&("length"==c||o&&("offset"==c||"parent"==c)||i&&("buffer"==c||"byteLength"==c||"byteOffset"==c)||Tt(c,u))||s.push(c);return s};var Gt=Object.prototype;const Ht=function(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||Gt)},Wt=function(t,e){return function(r){return t(e(r))}},Xt=Wt(Object.keys,Object);var qt=Object.prototype.hasOwnProperty;const Vt=function(t){if(!Ht(t))return Xt(t);var e=[];for(var r in Object(t))qt.call(t,r)&&"constructor"!=r&&e.push(r);return e},Qt=function(t){return null!=t&&Mt(t.length)&&!A(t)},Kt=function(t){return Qt(t)?Yt(t):Vt(t)},Jt=function(t){return ft(t,Kt,yt)};var Zt=Object.prototype.hasOwnProperty;const $t=z(v,"DataView"),te=z(v,"Promise"),ee=z(v,"Set"),re=z(v,"WeakMap");var ne="[object Map]",oe="[object Promise]",ie="[object Set]",ae="[object WeakMap]",se="[object DataView]",ue=R($t),ce=R(U),fe=R(te),le=R(ee),he=R(re),pe=_;($t&&pe(new $t(new ArrayBuffer(1)))!=se||U&&pe(new U)!=ne||te&&pe(te.resolve())!=oe||ee&&pe(new ee)!=ie||re&&pe(new re)!=ae)&&(pe=function(t){var e=_(t),r="[object Object]"==e?t.constructor:void 0,n=r?R(r):"";if(n)switch(n){case ue:return se;case ce:return ne;case fe:return oe;case le:return ie;case he:return ae}return e});const ye=pe;var de="[object Arguments]",ve="[object Array]",ge="[object Object]",be=Object.prototype.hasOwnProperty;const me=function(t,e,r,n,o,i){var a=ct(t),u=ct(e),c=a?ve:ye(t),f=u?ve:ye(e),l=(c=c==de?ge:c)==ge,h=(f=f==de?ge:f)==ge,p=c==f;if(p&&At(t)){if(!At(e))return!1;a=!0,l=!1}if(p&&!l)return i||(i=new Z),a||zt(t)?rt(t,e,r,n,o,i):function(t,e,r,n,o,i,a){switch(r){case"[object DataView]":if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case"[object ArrayBuffer]":return!(t.byteLength!=e.byteLength||!i(new nt(t),new nt(e)));case"[object Boolean]":case"[object Date]":case"[object Number]":return s(+t,+e);case"[object Error]":return t.name==e.name&&t.message==e.message;case"[object RegExp]":case"[object String]":return t==e+"";case"[object Map]":var u=ot;case"[object Set]":var c=1&n;if(u||(u=it),t.size!=e.size&&!c)return!1;var f=a.get(t);if(f)return f==e;n|=2,a.set(t,e);var l=rt(u(t),u(e),n,o,i,a);return a.delete(t),l;case"[object Symbol]":if(st)return st.call(t)==st.call(e)}return!1}(t,e,c,r,n,o,i);if(!(1&r)){var y=l&&be.call(t,"__wrapped__"),d=h&&be.call(e,"__wrapped__");if(y||d){var v=y?t.value():t,g=d?e.value():e;return i||(i=new Z),o(v,g,r,n,i)}}return!!p&&(i||(i=new Z),function(t,e,r,n,o,i){var a=1&r,s=Jt(t),u=s.length;if(u!=Jt(e).length&&!a)return!1;for(var c=u;c--;){var f=s[c];if(!(a?f in e:Zt.call(e,f)))return!1}var l=i.get(t),h=i.get(e);if(l&&h)return l==e&&h==t;var p=!0;i.set(t,e),i.set(e,t);for(var y=a;++c<u;){var d=t[f=s[c]],v=e[f];if(n)var g=a?n(v,d,f,e,t,i):n(d,v,f,t,e,i);if(!(void 0===g?d===v||o(d,v,r,n,i):g)){p=!1;break}y||(y="constructor"==f)}if(p&&!y){var b=t.constructor,m=e.constructor;b==m||!("constructor"in t)||!("constructor"in e)||"function"==typeof b&&b instanceof b&&"function"==typeof m&&m instanceof m||(p=!1)}return i.delete(t),i.delete(e),p}(t,e,r,n,o,i))},we=function t(e,r,n,o,i){return e===r||(null==e||null==r||!vt(e)&&!vt(r)?e!=e&&r!=r:me(e,r,n,o,t,i))},xe=function(t,e){return we(t,e)},ke=function(){try{var t=z(Object,"defineProperty");return t({},"",{}),t}catch(t){}}(),Se=function(t,e,r){"__proto__"==e&&ke?ke(t,e,{configurable:!0,enumerable:!0,value:r,writable:!0}):t[e]=r};var _e=Object.prototype.hasOwnProperty;const Oe=function(t,e,r){var n=t[e];_e.call(t,e)&&s(n,r)&&(void 0!==r||e in t)||Se(t,e,r)},Ee=function(t,e,r,n){var o=!r;r||(r={});for(var i=-1,a=e.length;++i<a;){var s=e[i],u=n?n(r[s],t[s],s,r,t):void 0;void 0===u&&(u=t[s]),o?Se(r,s,u):Oe(r,s,u)}return r},Ae=function(t){return t},Pe=function(t,e,r){switch(r.length){case 0:return t.call(e);case 1:return t.call(e,r[0]);case 2:return t.call(e,r[0],r[1]);case 3:return t.call(e,r[0],r[1],r[2])}return t.apply(e,r)};var je=Math.max;const Te=function(t){return function(){return t}},Me=ke?function(t,e){return ke(t,"toString",{configurable:!0,enumerable:!1,value:Te(e),writable:!0})}:Ae;var Re=Date.now;const Ie=function(t){var e=0,r=0;return function(){var n=Re(),o=16-(n-r);if(r=n,o>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(Me),Ce=function(t,e){return Ie(function(t,e,r){return e=je(void 0===e?t.length-1:e,0),function(){for(var n=arguments,o=-1,i=je(n.length-e,0),a=Array(i);++o<i;)a[o]=n[e+o];o=-1;for(var s=Array(e+1);++o<e;)s[o]=n[o];return s[e]=r(a),Pe(t,this,s)}}(t,e,Ae),t+"")};function Le(t){return Le="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Le(t)}const De=function(t,e,r){if(!E(r))return!1;var n=Le(e);return!!("number"==n?Qt(r)&&Tt(e,r.length):"string"==n&&e in r)&&s(r[e],t)};var Be=Object.prototype.hasOwnProperty;const Ne=function(t){if(!E(t))return function(t){var e=[];if(null!=t)for(var r in Object(t))e.push(r);return e}(t);var e=Ht(t),r=[];for(var n in t)("constructor"!=n||!e&&Be.call(t,n))&&r.push(n);return r},Fe=function(t){return Qt(t)?Yt(t,!0):Ne(t)},ze=(Ue=function(t,e,r,n){Ee(e,Fe(e),t,n)},Ce((function(t,e){var r=-1,n=e.length,o=n>1?e[n-1]:void 0,i=n>2?e[2]:void 0;for(o=Ue.length>3&&"function"==typeof o?(n--,o):void 0,i&&De(e[0],e[1],i)&&(o=n<3?void 0:o,n=1),t=Object(t);++r<n;){var a=e[r];a&&Ue(t,a,r,o)}return t})));var Ue;const Ye=Wt(Object.getPrototypeOf,Object);var Ge=Function.prototype,He=Object.prototype,We=Ge.toString,Xe=He.hasOwnProperty,qe=We.call(Object);const Ve=function(t){if(!vt(t))return!1;var e=_(t);return"[object Error]"==e||"[object DOMException]"==e||"string"==typeof t.message&&"string"==typeof t.name&&!function(t){if(!vt(t)||"[object Object]"!=_(t))return!1;var e=Ye(t);if(null===e)return!0;var r=Xe.call(e,"constructor")&&e.constructor;return"function"==typeof r&&r instanceof r&&We.call(r)==qe}(t)},Qe=Ce((function(t,e){try{return Pe(t,void 0,e)}catch(t){return Ve(t)?t:new Error(t)}})),Ke=function(t,e){for(var r=-1,n=null==t?0:t.length,o=Array(n);++r<n;)o[r]=e(t[r],r,t);return o};var Je=Object.prototype,Ze=Je.hasOwnProperty;const $e=function(t,e,r,n){return void 0===t||s(t,Je[r])&&!Ze.call(n,r)?e:t};var tr={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"};const er=function(t){return"\\"+tr[t]},rr=/<%=([\s\S]+?)%>/g,nr=(or={"&":"&","<":"<",">":">",'"':""","'":"'"},function(t){return null==or?void 0:or[t]});var or;function ir(t){return ir="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ir(t)}const ar=function(t){return"symbol"==ir(t)||vt(t)&&"[object Symbol]"==_(t)};var sr=g?g.prototype:void 0,ur=sr?sr.toString:void 0;const cr=function t(e){if("string"==typeof e)return e;if(ct(e))return Ke(e,t)+"";if(ar(e))return ur?ur.call(e):"";var r=e+"";return"0"==r&&1/e==-1/0?"-0":r},fr=function(t){return null==t?"":cr(t)};var lr=/[&<>"']/g,hr=RegExp(lr.source);const pr={escape:/<%-([\s\S]+?)%>/g,evaluate:/<%([\s\S]+?)%>/g,interpolate:rr,variable:"",imports:{_:{escape:function(t){return(t=fr(t))&&hr.test(t)?t.replace(lr,nr):t}}}};var yr=/\b__p \+= '';/g,dr=/\b(__p \+=) '' \+/g,vr=/(__e\(.*?\)|\b__t\)) \+\n'';/g,gr=/[()=,{}\[\]\/\s]/,br=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,mr=/($^)/,wr=/['\n\r\u2028\u2029\\]/g,xr=Object.prototype.hasOwnProperty;const kr={linear:function(t){return t},quad:function(t){return Math.pow(t,2)},circ:function(t){return 1-Math.sin(Math.acos(t))},back:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{x:1.5};return Math.pow(t,2)*((e.x+1)*t-e.x)},bounce:function(t){for(var e=0,r=1;;e+=r,r/=2)if(t>=(7-4*e)/11)return-Math.pow((11-6*e-11*t)/4,2)+Math.pow(r,2)},elastic:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{x:1.5};return Math.pow(2,10*(t-1))*Math.cos(20*Math.PI*e.x/3*t)}};function Sr(t){return Sr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Sr(t)}function _r(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Sr(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Sr(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Sr(o)?o:String(o)),n)}var o}var Or=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.client=e,this.config=r,this._started=!1;var n=this.config,o=n.delta,i=void 0===o?"linear":o,a=n.options,s=n.ease;"string"==typeof i&&(i=kr[i]),this.delta="out"==s?function(t,e){return function(r){return 1-t(1-r,e)}}(i,a):"inout"==s?function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(i,a):i,this.init()}var e,r;return e=t,(r=[{key:"dispose",value:function(){this.stop(),delete this.client}},{key:"init",value:function(){}},{key:"start",value:function(){var t=this;if(!this._started){var e=this.config,r=e.duration,n=void 0===r?2e3:r,o=e.delay,i=void 0===o?0:o,a=e.repeat,s=void 0!==a&&a;this._started=!0;var u=0,c=n+i;this._raf=requestAnimationFrame((function e(){if(t._started){0==u&&(u=performance.now(),t.client.touch());var r=performance.now()-u,o=Math.max(r%c-i,0)/n;t.step(t.delta(o)),t.client&&t.client.invalidate(),!(r>=c)||s&&t._started||(t.step(1),t.stop(),u=0),t._started&&(t._raf=requestAnimationFrame(e))}}))}}},{key:"stop",value:function(){this._raf&&cancelAnimationFrame(this._raf),this._raf=null,this._started=!1}},{key:"started",get:function(){return this._started},set:function(t){this.started!=!!t&&(t?this.start():this.stop())}}])&&_r(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Er(t){return Er="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Er(t)}function Ar(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Er(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Er(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Er(o)?o:String(o)),n)}var o}function Pr(t,e){return Pr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Pr(t,e)}function jr(t){return jr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},jr(t)}var Tr=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Pr(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=jr(n);if(o){var r=jr(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Er(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"step",value:function(t){var e=this.config.theta,r=void 0===e?6.28:e;this.client.delta("theta",t*r)}}],r&&Ar(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or);function Mr(t){return Mr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Mr(t)}function Rr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Mr(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Mr(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Mr(o)?o:String(o)),n)}var o}function Ir(t,e){return Ir=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ir(t,e)}function Cr(t){return Cr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Cr(t)}var Lr=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ir(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Cr(n);if(o){var r=Cr(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Mr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"step",value:function(t){var e=this.config.theta,r=void 0===e?.2617993877991494:e,n=4*r,o=t*n;t<1/4?o*=-1:t<3/4?o-=2*r:o=n-o,this.client.delta("theta",o)}}],r&&Rr(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or);function Dr(t){return Dr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Dr(t)}function Br(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Dr(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Dr(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Dr(o)?o:String(o)),n)}var o}function Nr(t,e){return Nr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Nr(t,e)}function Fr(t){return Fr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Fr(t)}var zr=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Nr(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Fr(n);if(o){var r=Fr(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Dr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"step",value:function(t){var e,r=this.config.scale,n=2*((void 0===r?1.3:r)-1);e=t<.5?1+n*t:1+(1-t)*n,this.client.delta("sx",e),this.client.delta("sy",e)}}])&&Br(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or);function Ur(t){return Ur="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ur(t)}function Yr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ur(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ur(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ur(o)?o:String(o)),n)}var o}function Gr(t,e){return Gr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Gr(t,e)}function Hr(t){return Hr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Hr(t)}var Wr=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Gr(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Hr(n);if(o){var r=Hr(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Ur(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"step",value:function(t){var e=this.config,r=e.x,n=void 0===r?0:r,o=e.y,i=void 0===o?0:o;this.client.delta("tx",t*n),this.client.delta("ty",t*i)}}])&&Yr(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or);function Xr(t){return Xr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Xr(t)}function qr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Xr(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Xr(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Xr(o)?o:String(o)),n)}var o}function Vr(t,e){return Vr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Vr(t,e)}function Qr(t){return Qr=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Qr(t)}var Kr=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Vr(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Qr(n);if(o){var r=Qr(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Xr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"step",value:function(t){var e=this.config.rideOn,r=this.client;if(e&&r&&r.root){var n=r.root.findById(e);if(n){var o=r.delta(),i=o.tx,a=o.ty,s=n.outline(t),u=r.center,c=r.transcoordS2T(u.x,u.y);n&&(r.delta("tx",s.x-c.x+i),r.delta("ty",s.y-c.y+a))}}}}])&&qr(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or);function Jr(t){return Jr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Jr(t)}function Zr(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Jr(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Jr(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Jr(o)?o:String(o)),n)}var o}function $r(t,e){return $r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},$r(t,e)}function tn(t){return tn=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},tn(t)}var en=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&$r(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=tn(n);if(o){var r=tn(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Jr(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"step",value:function(t){var e,r=this.config,n=r.startAlpha,o=void 0===n?1:n,i=r.endAlpha,a=void 0===i?0:i,s=Math.max(Math.min(o,a,1),0),u=2*(Math.min(Math.max(o,a,1),1)-s);e=t<.5?u*t:(1-t)*u,this.client.delta("fade",e)}}],r&&Zr(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Or),rn={rotation:Tr,vibration:Lr,heartbeat:zr,moving:Wr,outline:Kr,fade:en};function nn(t){var e=t.duration,r=void 0===e?1e3:e,n=(t.delay,t.step),o=t.delta,i=t.ease,a=t.options,s=t.repeat,u=void 0!==s&&s;"string"==typeof o&&(o=kr[o]),"out"==i?o=function(t,e){return function(r){return 1-t(1-r,e)}}(o,a):"inout"==i&&(o=function(t,e){return function(r){return r<.5?t(2*r,e)/2:(2-t(2*(1-r),e))/2}}(o,a));var c=!1;return{start:function(){var t=this;if(c)return this;c=!0;var e=0;return requestAnimationFrame((function i(){if(c){0==e&&(e=performance.now());var s=(performance.now()-e)/r,f=u?s%1:Math.min(s,1);n(o(f,a)),!(s>=1)||u&&c||(t.stop(),e=0),c&&requestAnimationFrame(i)}})),this},stop:function(){return c=!1,this}}}var on=/\s/;var an=/^\s+/;const sn=function(t){return t?t.slice(0,function(t){for(var e=t.length;e--&&on.test(t.charAt(e)););return e}(t)+1).replace(an,""):t};var un=/^[-+]0x[0-9a-f]+$/i,cn=/^0b[01]+$/i,fn=/^0o[0-7]+$/i,ln=parseInt;const hn=function(t){if("number"==typeof t)return t;if(ar(t))return NaN;if(E(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=E(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=sn(t);var r=cn.test(t);return r||fn.test(t)?ln(t.slice(2),r?2:8):un.test(t)?NaN:+t};const pn=function(t){var e=function(t){return t?1/0===(t=hn(t))||t===-1/0?17976931348623157e292*(t<0?-1:1):t==t?t:0:0===t?t:0}(t),r=e%1;return e==e?r?e-r:e:0},yn=function(t){return function(t,e){var r;if("function"!=typeof e)throw new TypeError("Expected a function");return t=pn(t),function(){return--t>0&&(r=e.apply(this,arguments)),t<=1&&(e=void 0),r}}(2,t)};var dn=Object.prototype.hasOwnProperty;const vn=function(t){if(null==t)return!0;if(Qt(t)&&(ct(t)||"string"==typeof t||"function"==typeof t.splice||At(t)||zt(t)||kt(t)))return!t.length;var e=ye(t);if("[object Map]"==e||"[object Set]"==e)return!t.size;if(Ht(t))return!Vt(t).length;for(var r in t)if(dn.call(t,r))return!1;return!0};function gn(t){return gn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},gn(t)}var bn=0;function mn(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};"object"!=gn(t)&&(t={});for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return r.forEach((function(e){var r=function(r){"object"!=gn(e[r])?t[r]=e[r]:e[r].length>0?t[r]=e[r].map((function(t){return"object"!=gn(e[r])?t:mn({},t)})):t[r]=mn(t[r],e[r])};for(var n in e)r(n)})),t}function wn(t){for(;t&&"object"===gn(t);){var e=t;for(var r in t){t=t[r];break}if(t===e){t=void 0;break}}return t}function xn(t,e){return this.__collection__?(-1==(t=this.__collection__.indexOf(e))&&this.__collection__.splice(t,0,e),this):this}function kn(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.push(t),this}function Sn(t){return this.__collection__||(this.__collection__=[]),-1==this.__collection__.indexOf(t)&&this.__collection__.unshift(t),this}function _n(t){if(!this.__collection__)return this;var e=this.__collection__.indexOf(t);return e>=0&&this.__collection__.splice(e,1),this}function On(t){if(this.__collection__)return this.__collection__[t]}function En(t,e){this.__collection__&&this.__collection__.forEach(t,e)}function An(t){if(this.__collection__)return this.__collection__.indexOf(t)}function Pn(){return this.__collection__?this.__collection__.length:0}function jn(){this.__collection__=[]}function Tn(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this.__collection__[e]=this.__collection__[e-1],this.__collection__[e-1]=t)}function Mn(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this.__collection__[e]=this.__collection__[e+1],this.__collection__[e+1]=t)}function Rn(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=this.__collection__.concat(r,n)}}function In(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this.__collection__.splice(0,e),n=this.__collection__.splice(1);this.__collection__=r.concat(n,this.__collection__)}}function Cn(t){throw new Error("Not Implemented Yet")}function Ln(t){throw new Error("Not Implemented Yet")}function Dn(){}function Bn(t){return Bn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Bn(t)}Dn.prototype=t;var Nn=/\s+/;function Fn(t,e,r,n){if(!r)return!0;if("object"==Bn(r)){for(var o in r){var i=r[o];t[e].apply(t,[o,i])}return!1}return!Nn.test(r)||(r.split(Nn).forEach((function(r){return t[e].apply(t,[r].concat(n))})),!1)}var zn=["on","off","once","delegate_on","delegate_off","trigger","listenTo"],Un={withEvent:function(){var t=this;zn.forEach((function(e){return t[e]=Un[e]}))},on:function(t,e,r){return Fn(this,"on",t,[e,r])&&e?(this._listeners||(this._listeners={}),(this._listeners[t]||(this._listeners[t]=[])).push({callback:e,context:r,ctx:r||this}),this):this},once:function(t,e,r){if(!Fn(this,"once",t,[e,r])||!e)return this;var n=this,o=yn((function(){n.off(t,o),e.apply(n,arguments)}));o._callback=e,this.on(t,o,r)},off:function(t,e,r){if(!this._listeners||!Fn(this,"off",t,[e,r]))return this;if(!t&&!e&&!r)return this._listeners=void 0,this;var n;n=t?[t]:Object.keys(this._listeners);for(var o=0;o<n.length;o++){var i=n[o],a=this._listeners[i];if(a){var s=[];if(this._listeners[i]=s,e||r)for(var u=0;u<a.length;u++){var c=a[u];(e&&e!==c.callback&&e!==c.callback._callback||r&&r!==c.context)&&s.push(c)}s.length||delete this._listeners[i]}}return this},delegate_on:function(t){return this._delegators||(this._delegators=new Dn),this._delegators.append(t),this},delegate_off:function(t){return this._delegators?(this._delegators.remove(t),this):this},delegate:function(){if(this._delegators&&this._delegators.size()>0&&Gn(this._delegators,arguments),!this._listeners)return this;var t=arguments.length-1,e=arguments[t];arguments[t]={origin:e.origin,name:e.name,deliverer:this};var r=this._listeners[e.name],n=this._listeners["(all)"];return r&&Yn(r,arguments),n&&Yn(n,arguments),this},trigger:function(t){var e=[].slice.call(arguments,1);if(e.push({origin:this,name:t,deliverer:this}),this._delegators&&this._delegators.size()>0&&Gn(this._delegators,e),!this._listeners)return this;if(!Fn(this,"trigger",t,e))return this;var r=this._listeners[t],n=this._listeners["(all)"];return r&&Yn(r,e),n&&Yn(n,e),this},stopListening:function(t,e,r){var n=this._listeningTo;if(!n)return this;var o=!e&&!r;for(var i in r||"object"!=Bn(e)||(r=this),t&&((n={})[t._listenId]=t),n){var a=n[i];a.off(e,r,this),(o||vn(a._events))&&delete this._listeningTo[i]}return this}};function Yn(t,e){t.forEach((function(t){return t.callback.apply(t.ctx,e)}))}function Gn(t,e){t.forEach((function(t){return Un.delegate.apply(t,e)}))}var Hn={listenTo:"on",listenToOnce:"once"};for(var Wn in Hn){var Xn=Hn[Wn];Un[Wn]=function(t,e,r){this._listeningTo||(this._listeningTo={});var n=this._listeningTo;return t._listenId||(t._listenId="".concat("l").concat(++bn)),n[t._listenId]=t,r||"object"!=Bn(e)||(r=this),t[Xn](e,r,this),this}}const qn=Un;function Vn(t,e){if(e instanceof Array)e.forEach((function(e){return Vn(t,e)}));else{if(t.mixedIn=t.hasOwnProperty("mixedIn")?t.mixedIn:[],t.mixingIn=t.hasOwnProperty("mixingIn")?t.mixingIn:[],t.mixedIn.indexOf(e)>=0)return t;if(t.mixingIn.indexOf(e)>=0)throw new Error("found cyclic dependencies between ".concat(t.mixingIn));t.mixingIn.push(e),e.call(t),t.mixingIn.pop(),t.mixedIn.push(e)}return t}"undefined"==typeof window||window;var Qn="[ERROR]",Kn="[WARN]",Jn="[DEBUG]",Zn=function(){for(var t,e=[],r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];n.forEach((function(t){return t&&t.stack&&e.push(t.stack)})),(t=console).error.apply(t,[Qn].concat(n,[e.join(" ")]))},$n=function(){for(var t,e=[],r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];n.forEach((function(t){return t&&t.stack&&e.push(t.stack)})),(t=console).warn.apply(t,[Kn].concat(n,[e.join(" ")]))},to=function(){for(var t,e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];return(t=console).log.apply(t,[Jn].concat(r))};function eo(t){return eo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},eo(t)}var ro="object"==("undefined"==typeof exports?"undefined":eo(exports))&&exports&&!exports.nodeType&&exports,no=ro&&"object"==("undefined"==typeof module?"undefined":eo(module))&&module&&!module.nodeType&&module,oo=no&&no.exports===ro?v.Buffer:void 0,io=oo?oo.allocUnsafe:void 0;const ao=Object.getOwnPropertySymbols?function(t){for(var e=[];t;)ut(e,yt(t)),t=Ye(t);return e}:lt,so=function(t){return ft(t,Fe,ao)};var uo=Object.prototype.hasOwnProperty;const co=function(t){var e=new t.constructor(t.byteLength);return new nt(e).set(new nt(t)),e};var fo=/\w*$/;var lo=g?g.prototype:void 0,ho=lo?lo.valueOf:void 0;const po=function(t,e,r){var n,o,i,a=t.constructor;switch(e){case"[object ArrayBuffer]":return co(t);case"[object Boolean]":case"[object Date]":return new a(+t);case"[object DataView]":return function(t,e){var r=e?co(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.byteLength)}(t,r);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return function(t,e){var r=e?co(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.length)}(t,r);case"[object Map]":case"[object Set]":return new a;case"[object Number]":case"[object String]":return new a(t);case"[object RegExp]":return(i=new(o=t).constructor(o.source,fo.exec(o))).lastIndex=o.lastIndex,i;case"[object Symbol]":return n=t,ho?Object(ho.call(n)):{}}};var yo=Object.create;const vo=function(){function t(){}return function(e){if(!E(e))return{};if(yo)return yo(e);t.prototype=e;var r=new t;return t.prototype=void 0,r}}();var go=Nt&&Nt.isMap;const bo=go?It(go):function(t){return vt(t)&&"[object Map]"==ye(t)};var mo=Nt&&Nt.isSet;const wo=mo?It(mo):function(t){return vt(t)&&"[object Set]"==ye(t)};var xo="[object Arguments]",ko="[object Function]",So="[object Object]",_o={};_o[xo]=_o["[object Array]"]=_o["[object ArrayBuffer]"]=_o["[object DataView]"]=_o["[object Boolean]"]=_o["[object Date]"]=_o["[object Float32Array]"]=_o["[object Float64Array]"]=_o["[object Int8Array]"]=_o["[object Int16Array]"]=_o["[object Int32Array]"]=_o["[object Map]"]=_o["[object Number]"]=_o[So]=_o["[object RegExp]"]=_o["[object Set]"]=_o["[object String]"]=_o["[object Symbol]"]=_o["[object Uint8Array]"]=_o["[object Uint8ClampedArray]"]=_o["[object Uint16Array]"]=_o["[object Uint32Array]"]=!0,_o["[object Error]"]=_o[ko]=_o["[object WeakMap]"]=!1;const Oo=function t(e,r,n,o,i,a){var s,u=1&r,c=2&r,f=4&r;if(n&&(s=i?n(e,o,i,a):n(e)),void 0!==s)return s;if(!E(e))return e;var l=ct(e);if(l){if(s=function(t){var e=t.length,r=new t.constructor(e);return e&&"string"==typeof t[0]&&uo.call(t,"index")&&(r.index=t.index,r.input=t.input),r}(e),!u)return function(t,e){var r=-1,n=t.length;for(e||(e=Array(n));++r<n;)e[r]=t[r];return e}(e,s)}else{var h=ye(e),p=h==ko||"[object GeneratorFunction]"==h;if(At(e))return function(t,e){if(e)return t.slice();var r=t.length,n=io?io(r):new t.constructor(r);return t.copy(n),n}(e,u);if(h==So||h==xo||p&&!i){if(s=c||p?{}:function(t){return"function"!=typeof t.constructor||Ht(t)?{}:vo(Ye(t))}(e),!u)return c?function(t,e){return Ee(t,ao(t),e)}(e,function(t,e){return t&&Ee(e,Fe(e),t)}(s,e)):function(t,e){return Ee(t,yt(t),e)}(e,function(t,e){return t&&Ee(e,Kt(e),t)}(s,e))}else{if(!_o[h])return i?e:{};s=po(e,h,u)}}a||(a=new Z);var y=a.get(e);if(y)return y;a.set(e,s),wo(e)?e.forEach((function(o){s.add(t(o,r,n,o,e,a))})):bo(e)&&e.forEach((function(o,i){s.set(i,t(o,r,n,i,e,a))}));var d=l?void 0:(f?c?so:Jt:c?Fe:Kt)(e);return function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n&&!1!==e(t[r],r,t););}(d||e,(function(o,i){d&&(o=e[i=o]),Oe(s,i,t(o,r,n,i,e,a))})),s},Eo=function(t){return Oo(t,4)};function Ao(t,e,r){var n=t.__lookupGetter__(e);n?r?t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),Eo(this.__cache__[e])})):t.__defineGetter__(e,(function(){return void 0===this.__cache__[e]&&(this.__cache__[e]=n.call(this)),this.__cache__[e]})):Zn("".concat(e," is not defined in ").concat(t.constructor.name))}function Po(t){t.__cache__={}}function jo(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];0==r.length?t.__cache__={}:r.forEach((function(e){return delete t.__cache__[e]}))}var To={},Mo=0,Ro=1,Io=2,Co=3,Lo={VIEW:0,EDIT:1,SHIFT:2,ADD:3},Do=30,Bo="undefined"==typeof window?1:window.devicePixelRatio||(window.matchMedia&&window.matchMedia("(min-resolution: 2dppx), (-webkit-min-device-pixel-ratio: 1.5),(-moz-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5)").matches?2:1)||1,No=["mousemove","mouseup","mousedown","mouseout","wheel","touchstart","touchmove","touchend","dblclick"],Fo=["keydown","keyup"],zo={ALPHA:1,FONT_SIZE:15,FONT_FAMILY:"serif",FONT_COLOR:"black",TEXT_ALIGN:"center",TEXT_BASELINE:"middle",TEXT_WRAP:!1,BOLD:!1,ITALIC:!1,STROKE_STYLE:"#999",LINE_DASH:"solid"},Uo={x:1,y:1};function Yo(t,e,r){var n=e.left,o=void 0===n?0:n,i=e.top,a=void 0===i?0:i,s=e.blurSize,u=void 0===s?0:s,c=e.color,f=void 0===c?"transparent":c,l=r.rootModel.get("scale")||Uo;t.shadowOffsetX=o*l.x*Bo,t.shadowOffsetY=a*l.y*Bo,t.shadowBlur=u*l.x*Bo,t.shadowColor=f}var Go={gradation:function(t,e,r){r.type;var n=r.subType,o=r.from,i=r.to,a=r.colors;switch(n){case"linear":var s=e.createLinearGradient(o.x,o.y,i.x,i.y);break;case"radial":s=e.createRadialGradient(o.x,o.y,o.r,i.x,i.y,i.r);break;default:s=e.createLinearGradient(o.x,o.y,i.x,i.y)}a&&(a.forEach((function(t){s.addColorStop(t.endPoint,t.color)})),e.fillStyle=s,e.fill())},shadow:Yo};function Ho(t,e,r,n){var o=e.get("class");return!!o&&(o.split(" ")||[]).indexOf(t.substr(1))>=0}function Wo(t,e,r,n){return t==e.get("type")}function Xo(t,e,r,n){if("(all)"==t)return!0;switch(t.charAt(0)){case"#":return function(t,e,r,n){return t.substr(1)==e.get("id")}(t,e);case".":return Ho(t,e);case"(":return function(t,e,r,n){switch(t){case"(all)":return!0;case"(self)":return n===e;case"(root)":return!n.parent&&n===e;case"(descendant)":return n!==e;case"(child)":return n===e.parent;default:return!1}}(t,e,0,n);default:return Wo(t,e)}}function qo(t,e,r,n,o,i){return t(e,r,n,o)&&i.push(r),r.components&&r.components.forEach((function(r){qo(t,e,r,n,o,i)})),i}function Vo(t,e,r,n){switch(t){case"(all)":return!0;case"(parent)":return r&&r.parent===e;case"(child)":case"(children)":return r&&r===e.parent;case"(sibling)":case"(siblings)":return r&&r.parent===e.parent&&r!==e;default:return!1}}function Qo(t,e,r){if("(root)"==t)return[e];if("(self)"==t)return r?[r]:[];var n;switch(t.charAt(0)){case"#":return e.root.findAllById(t.substr(1))||[];case".":n=Ho;break;case"(":n=Vo;break;default:n=Wo}return qo(n,t,e,r,e,[])}var Ko=r(48930),Jo=r.n(Ko),Zo=function(t){return t};function $o(t){if(!t)return Zo;try{var e=Jo()(t);return function(t){return e.evaluate(t)}}catch(t){return console.error(t),Zo}}function ti(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function ei(t){var e=wn(t);return null==e?"":String(e)}function ri(t){return Number(wn(t))}function ni(t){return t}function oi(t){return ei(t)}function ii(t){return ri(t)}function ai(t){if(this.param)return t=ei(t),this.param.hasOwnProperty(t)?this.param[t]:this.param.default}function si(t){var e,r,n=this.param;if(n){for(var o in n){var i=(e=o.split("~"),r=2,function(t){if(Array.isArray(t))return t}(e)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,r)||function(t,e){if(t){if("string"==typeof t)return ti(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?ti(t,e):void 0}}(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),a=i[0],s=i[1],u=!!a,c=!!s;if(a=parseFloat(a),s=parseFloat(s),t=ri(t),u&&!c&&t>=a)return n[o];if(!u&&c&&t<a)return n[o];if(t>=a&&t<s)return n[o]}return n.default}}function ui(t){return ri(t)*Math.PI/180}function ci(){}function fi(t,e,r,n,o){switch(r){case"value":return"text"===o||"string"===o?oi.bind(t):"number"===o?ii.bind(t):ni.bind(e);case"map":return ai.bind(t);case"range":return si.bind(t);case"radian":return ui.bind(t);case"eval":return function(t){try{return new Function("value","targets",t)}catch(t){return Zn(t),ci}}(n).bind(e);default:return ni.bind(e)}}function li(t){return li="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},li(t)}function hi(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function pi(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==li(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==li(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===li(o)?o:String(o)),n)}var o}var yi,di=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.owner=r,this.model=e}var e,r;return e=t,(r=[{key:"dispose",value:function(){delete this._model,delete this.owner,delete this.evaluator,delete this.accessor}},{key:"model",get:function(){return this._model},set:function(t){var e=t.target,r=t.property,n=t.rule,o=t.param,i=t.accessor;this._model=t,this.evaluator=fi(this,this.owner,n,o,function(t){switch(t){case"ref":case"fillStyle":case"strokeStyle":return"string";default:return}}(r)),this.accessor=$o(i);var a,s,u=e.match(/\[(.*?)\]/);if(u){var c=(a=u[1].split(":"),s=2,function(t){if(Array.isArray(t))return t}(a)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(a,s)||function(t,e){if(t){if("string"==typeof t)return hi(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?hi(t,e):void 0}}(a,s)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),f=c[0],l=c[1];this.propAccessor=$o(f),this.partAccessor=$o(l)}}},{key:"target",get:function(){return this.model.target}},{key:"property",get:function(){return this.model.property}},{key:"param",get:function(){return this.model.param}},{key:"ndnsp",get:function(){return!!this.model.ndnsp}}])&&pi(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function vi(){var t=this;(arguments.length>0&&void 0!==arguments[0]&&arguments[0]||void 0!==this.data)&&this.mappings&&this.mappings.forEach((function(e){try{var r=e.target,n=e.property,o=e.accessor,i=e.propAccessor,a=e.partAccessor,s=o(t.data);if("(root)"==(r=r.trim())||"(key)"==r){if(null==s)return;var u=Object.keys(s||{}).map((function(e){return t.root.findOrCreate(e)})).filter(Boolean).flat();u.length>0&&u.forEach((function(t){var r=e.evaluator(s[t.get("id")],[t]);!n||"(action)"===n||e.ndnsp&&!r&&0!==r&&!1!==r||(t[n]=r)}))}else if(r.startsWith("[")){if(null==s)return;if(s instanceof Array)s.forEach((function(r){var o=i(r);if(o){var s=t.root.findOrCreate(o);if(s){var u=e.evaluator(a(r),s);!n||"(action)"===n||e.ndnsp&&!u&&0!==u&&!1!==u||s.forEach((function(t){return t[n]=u}))}}}));else{if(!(s instanceof Object))throw String("mapping data should be an object to target property-id.("+s+")");var c=i(s);if(c){var f=t.root.findOrCreate(c);if(f){var l=e.evaluator(a(s),f);!n||"(action)"===n||e.ndnsp&&!l&&0!==l&&!1!==l||f.forEach((function(t){return t[n]=l}))}}}}else{var h=t.root.findAll(r,t);if(h.length>0){var p=e.evaluator(s,h);!n||"(action)"===n||e.ndnsp&&!p&&0!==p&&!1!==p||h.forEach((function(t){return t[n]=p}))}}}catch(r){Zn(r,t,e)}}))}function gi(t){return gi="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},gi(t)}function bi(t,e,r,n,o){var i=n.alpha,a=void 0===i?1:i,s=o.fillStyle;if(t.globalAlpha*=a,s)if("string"==typeof s)t.fillStyle=s,t.fill();else if("object"==gi(s))if("gradient"==s.type){t.translate(r.x,r.y);var u,c=e.width,f=e.height;if("linear"==s.gradientType){var l=3.141592653589793,h=s.rotation;if(h>=.436332&&h<=1.13446||h>=2.00713&&h<=2.70526||h>=3.57792&&h<=4.27606||h>=5.14872&&h<=5.84685){var p=Math.sqrt(Math.pow((c-4)/2,2)+Math.pow((f-4)/2,2));p-=p-(c+f)/3,u=t.createLinearGradient(p*Math.cos(h+l),p*Math.sin(h+l),p*Math.cos(h),p*Math.sin(h))}else u=t.createLinearGradient((c-4)/2*Math.cos(h+l),(f-4)/2*Math.sin(h+l),(c-4)/2*Math.cos(h),(f-4)/2*Math.sin(h))}else if("radial"==s.gradientType){var y=.95*Math.sqrt(Math.pow((c-4)/2,2)+Math.pow((f-4)/2,2));switch(s.center){case"center":default:u=t.createRadialGradient(0,0,0,0,0,y);break;case"left-top":u=t.createRadialGradient(-c/2,-f/2,0,-c/2,-f/2,2*y);break;case"right-top":u=t.createRadialGradient(c/2,-f/2,0,c/2,-f/2,2*y);break;case"left-bottom":u=t.createRadialGradient(-c/2,f/2,0,-c/2,f/2,2*y);break;case"right-bottom":u=t.createRadialGradient(c/2,f/2,0,c/2,f/2,2*y)}}s.colorStops.forEach((function(t){if(t.position>=0&&t.position<=1)try{u.addColorStop(t.position,t.color)}catch(e){$n("Invalid Color for colorstop : ",t.color),u.addColorStop(t.position,"#fff")}})),t.fillStyle=u,t.fill(),t.translate(-r.x,-r.y)}else if("pattern"==s.type&&s.image){o.prepareFillIf(!o._pattern_image_origin);var d=o._pattern_image;if(!d)return;var v=0,g=0,b=0,m=0,w=e.left,x=e.top;if(!s.fitPattern){v=s.offsetX,g=s.offsetY;var k=s.width?s.width:d.width,S=s.height?s.height:d.height;switch(s.align){case"center":b=e.width/2-k/2,m=e.height/2-S/2;break;case"left-top":b=0,m=0;break;case"left-bottom":b=0,m=e.height-S;break;case"right-top":b=e.width-k,m=0;break;case"right-bottom":b=e.width-k,m=e.height-S;break;case"left":b=0,m=e.height/2-S/2;break;case"right":b=e.width-k,m=e.height/2-S/2;break;case"top":b=e.width/2-k/2,m=0;break;case"bottom":b=e.width/2-k/2,m=e.height-S}w+=v+b,x+=g+m}t.translate(w,x),s.color&&(t.fillStyle=s.color,t.fill()),s.fitPattern?Math.abs((d.width-e.width)*(d.height-e.height))>1?(delete o._pattern_image,delete o._pattern_image_origin):t.fillStyle=t.createPattern(d,"no-repeat"):t.fillStyle=t.createPattern(d,s.noRepeat?"no-repeat":"repeat"),t.fill(),t.translate(-w,-x)}}function mi(t,e,r){var n=e.strokeStyle,o=e.lineDash,i=e.lineWidth,a=e.lineCap,s=e.lineJoin,u=e.alpha;if(n&&0!=i){if(a&&(t.lineCap=a),o){var c="round"==a;switch(o){case"solid":o=[0,0];break;case"round-dot":o=c?[0,2*i]:[i,i];break;case"square-dot":o=c?[i,2*i]:[2*i,i];break;case"dash":o=c?[3*i,2.5*i]:[4*i,1.5*i];break;case"dash-dot":o=c?[3*i,3*i,0,3*i]:[4*i,2*i,i,2*i];break;case"long-dash":o=c?[5*i,4*i]:[6*i,3*i];break;case"long-dash-dot":o=c?[5*i,3*i,0,3*i]:[6*i,2*i,i,2*i];break;case"long-dash-dot-dot":o=c?[5*i,2*i,0,2*i,0,2*i]:[6*i,i,i,i,i,i]}t.setLineDash(o)}t.globalAlpha*=u,t.strokeStyle=n,t.lineWidth=i,t.lineJoin=s,t.stroke()}}function wi(t,e,r){if(e.length<2)return e;for(var n=2;n<e.length;n++){var o=e.substring(0,n);if(!(t.measureText(o).width<r))break}return e.substring(0,n-1)}function xi(t,e,r,n){var o=String(e).split("\n");return n?[].concat.apply([],o.map((function(e){return function(t,e,r){var n,o,i=e.split(" "),a=[],s=[];for(n=0,o=1;o<=i.length;o++)if(s=i.slice(n,o),t.measureText(s.join(" ")).width>r){if(o-n==1){var u=wi(t,s[0],r);a.push([u]),i.splice(n,1,u,s[0].substring(u.length))}else{for(;""==i[o-1];)o++;a.push(i.slice(n,--o))}n=o}return o-n>1&&a.push(s),0==a.length&&a.push([""]),a}(t,e,r)}))):o.map((function(t){return t.split(" ")}))}function ki(t){return ki="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ki(t)}function Si(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function _i(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Si(Object(r),!0).forEach((function(e){Oi(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Si(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Oi(t,e,r){return(e=function(t){var e=function(t,e){if("object"!==ki(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==ki(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===ki(e)?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Ei(t,e,r,n,o){var i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,a=arguments.length>6&&void 0!==arguments[6]&&arguments[6],s=!(arguments.length>7&&void 0!==arguments[7])||arguments[7];i="number"==typeof i?{tl:i,tr:i,br:i,bl:i}:_i(_i({},{tl:0,tr:0,br:0,bl:0}),i),t.beginPath(),t.moveTo(e+i.tl,r),t.lineTo(e+n-i.tr,r),t.quadraticCurveTo(e+n,r,e+n,r+i.tr),t.lineTo(e+n,r+o-i.br),t.quadraticCurveTo(e+n,r+o,e+n-i.br,r+o),t.lineTo(e+i.bl,r+o),t.quadraticCurveTo(e,r+o,e,r+o-i.bl),t.lineTo(e,r+i.tl),t.quadraticCurveTo(e,r,e+i.tl,r),t.closePath(),a&&t.fill(),s&&t.stroke()}function Ai(t,e,r,n,o){if(!n)return[];t.save(),t.font=r;var i=xi(t,n,e,!!o);return t.restore(),i}function Pi(t){var e=t.fontFamily,r=void 0===e?zo.FONT_FAMILY:e,n=t.bold,o=void 0===n?zo.BOLD:n,i=t.italic,a=void 0===i?zo.ITALIC:i,s=t.fontSize,u=void 0===s?zo.FONT_SIZE:s,c=[];return o&&c.push("bold"),a&&c.push("italic"),c.push(u+"px"),c.push(r),c.join(" ")}function ji(t,e,r,n){var o=n.alpha,i=n.fontColor,a=void 0===i?zo.FONT_COLOR:i,s=n.textAlign,u=void 0===s?zo.TEXT_ALIGN:s,c=n.textBaseline,f=void 0===c?zo.TEXT_BASELINE:c,l=n.textBackgroundStyle,h=n.fontSize,p=n.lineHeight;o||(o=zo.FONT_COLOR),h||(h=zo.FONT_SIZE),p||(p=1.2*h),t.save(),t.beginPath();var y=e.left,d=e.top,v=e.width,g=e.height;t.font=Pi(n);var b,m,w=r.length*p;switch(f){case"top":b=d,t.textBaseline="top";break;case"bottom":b=d+g-w+p,t.textBaseline="bottom";break;default:b=d+g/2-w/2+p/2,t.textBaseline="middle"}switch(u){case"left":case"justify":m=y,t.textAlign="left";break;case"right":m=y+v,t.textAlign="right";break;default:m=y+v/2,t.textAlign="center"}t.globalAlpha*=o,t.fillStyle=a,"justify"!=u?r.forEach((function(e,r){if(l){t.fillStyle=l;var n=t.measureText(e.join(" "));Ei(t,m-n.actualBoundingBoxLeft-4,b-n.actualBoundingBoxAscent-4,n.actualBoundingBoxLeft+n.actualBoundingBoxRight+8,n.actualBoundingBoxAscent+n.actualBoundingBoxDescent+8,4,!0,!1),t.fillStyle=a}t.fillText(e.join(" "),m,b+r*p)})):r.forEach((function(e,r){var n=b+r*p;if(1==e.length){if(l){t.fillStyle=l;var o=t.measureText(e[0]);Ei(t,m-o.actualBoundingBoxLeft-4,n-o.actualBoundingBoxAscent-4,o.actualBoundingBoxLeft+o.actualBoundingBoxRight+8,o.actualBoundingBoxAscent+o.actualBoundingBoxDescent+8,4,!0,!1),t.fillStyle=a}t.fillText(e[0],m,n)}else{var i=e.map((function(e){return t.measureText(e).width})),s=i.map((function(t){return t.width})),u=s.reduce((function(t,e){return t+e}),0),c=(v-u)/(e.length-1),f=m;e.forEach((function(e,r){l&&(t.fillStyle=l,Ei(t,f-i[r].actualBoundingBoxLeft-4,n-i[r].actualBoundingBoxAscent-4,i[r].actualBoundingBoxLeft+i[r].actualBoundingBoxRight+8,i[r].actualBoundingBoxAscent+i[r].actualBoundingBoxDescent+8,4,!0,!1),t.fillStyle=a),t.fillText(e,f,n),f+=s[r]+c}))}})),t.restore()}function Ti(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{x:0,y:0},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{x:1,y:1};return t-=r.x,e-=r.y,{x:(t*Math.cos(-n)-e*Math.sin(-n)+r.x)/o.x,y:(t*Math.sin(-n)+e*Math.cos(-n)+r.y)/o.y}}function Mi(t,e){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{x:0,y:0},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{x:1,y:1};return t-=r.x,e-=r.y,{x:(t*Math.cos(n)-e*Math.sin(n)+r.x)*o.x,y:(t*Math.sin(n)+e*Math.cos(n)+r.y)*o.y}}yi="undefined"==typeof document?function(t,e){return new Canvas(t,e)}:function(t,e){var r=document.createElement("canvas");return r.width=t,r.height=e,r};var Ri={x:1,y:1},Ii={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"};function Ci(t){var e=t.state,r=e.id,n=e.scale,o=void 0===n?Ri:n,i=(e.translate,e.bold),a=e.italic,s=e.fontFamily,u=void 0===s?"":s,c=e.textAlign,f=e.textBaseline,l=e.paddingTop,h=e.paddingBottom,p=e.paddingLeft,y=e.paddingRight,d=e.fontSize,v=void 0===d?zo.FONT_SIZE:d,g=e.lineWidth,b=void 0===g?0:g,m=e.lineDash;h||(h=0),l||(l=0),p||(p=0),y||(y=0);var w=t.state.class,x=(t.text,t.strokeStyle),k=(t.fillStyle,t.rotation),S=void 0===k?0:k,_=t.fontColor,O=t.hidden,E=t.bounds,A=E.left,P=E.top,j=E.width,T=E.height,M=t.element;M.hidden=O,r&&(M.id=r),w&&(M.className=w),Object.assign(M.style,Ii,{fontFamily:u,fontSize:v+"px",left:A+"px",top:P+"px",width:j+"px",height:T+"px",paddingTop:l+"px",paddingRight:y+"px",paddingBottom:h+"px",paddingLeft:p+"px",border:b+"px",borderColor:x,borderStyle:b>0?m||zo.LINE_DASH:"",color:_,fontWeight:i?"bold":"",fontStyle:a?"italic":"",textAlign:"end"==c?"right":"start"==c?"left":c,verticalAlign:f}),function(t){var e=t.element,r=t.fillStyle,n=e.style;if(r)if("string"==typeof r)n.backgroundColor=r;else switch(r.type){case"pattern":if(n.backgroundImage="url("+r.image+")",n.backgroundColor="transparent",r.fitPattern?n.backgroundSize="100% 100%":r.width||r.height?n.backgroundSize="".concat(r.width?r.width+"px":"auto"," ").concat(r.height?r.height+"px":"auto"):n.backgroundSize="contain",r.fitPattern)n.backgroundRepeat="no-repeat";else{var o=r.offsetX,i=r.offsetY,a=r.noRepeat,s=r.align,u=r.color;if(a&&(n.backgroundRepeat="no-repeat"),u&&(n.backgroundColor=u),s)switch(s){case"center":n.backgroundPosition="center center";break;case"left-top":n.backgroundPosition="left top";break;case"left-bottom":n.backgroundPosition="left bottom";break;case"right-top":n.backgroundPosition="right top";break;case"right-bottom":n.backgroundPosition="right bottom";break;case"left":n.backgroundPosition="left center";break;case"right":n.backgroundPosition="right center";break;case"top":n.backgroundPosition="center top";break;case"bottom":n.backgroundPosition="center bottom"}else o||i?n.backgroundPosition="".concat(Number(o)||0,"px ").concat(Number(i)||0,"px"):delete n.backgroundPosition}break;case"gradient":n.background=function(t,e){var r=e.colorStops,n=e.gradientType;if(r instanceof Array&&r.length>0)switch(n){case"radial":return"radial-gradient(farthest-corner at "+function(t,e){var r=t.bounds,n=r.width,o=r.height;switch(e){case"center":return[n/2,o/2];case"left-top":return[0,0];case"right-top":return[n,0];case"left-bottom":return[0,o];default:return[n,o]}}(t,e.center||"center").map((function(t){return t+"px"})).join(" ")+","+r.map((function(t){return"".concat(t.color," ").concat(100*t.position,"%")})).join(",")+")";case"linear":return"linear-gradient("+(180*(e.rotation||0)/3.141592653589793+90)+"deg, "+r.map((function(t){return"".concat(t.color," ").concat(100*t.position,"%")})).join(",")+")"}return""}(t,r)}else n.background="transparent"}(t),function(t){if(t.isShadowable()&&t.state.shadow){var e=t.element,r=t.state.shadow,n=r.left,o=void 0===n?0:n,i=r.top,a=void 0===i?0:i,s=r.blurSize,u=void 0===s?0:s,c=r.color,f=void 0===c?"transparent":c;e.style.boxShadow="".concat(o,"px ").concat(a,"px ").concat(u,"px ").concat(f)}}(t);var R=t.delta(),I=(o&&o.x||1)*R.sx,C=(o&&o.y||1)*R.sy,L=(S||0)+R.theta,D=R.tx||0,B=R.ty||0;["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){M.style[t+"transform"]="rotate(".concat(L,"rad) translate(").concat(D,"px, ").concat(B,"px) scale(").concat(I,", ").concat(C,") perspective(1px)")}))}const Li=function(){return v.Date.now()};var Di=Math.max,Bi=Math.min;const Ni=function(t,e,r){var n,o,i,a,s,u,c=0,f=!1,l=!1,h=!0;if("function"!=typeof t)throw new TypeError("Expected a function");function p(e){var r=n,i=o;return n=o=void 0,c=e,a=t.apply(i,r)}function y(t){var r=t-u;return void 0===u||r>=e||r<0||l&&t-c>=i}function d(){var t=Li();if(y(t))return v(t);s=setTimeout(d,function(t){var r=e-(t-u);return l?Bi(r,i-(t-c)):r}(t))}function v(t){return s=void 0,h&&n?p(t):(n=o=void 0,a)}function g(){var t=Li(),r=y(t);if(n=arguments,o=this,u=t,r){if(void 0===s)return function(t){return c=t,s=setTimeout(d,e),f?p(t):a}(u);if(l)return clearTimeout(s),s=setTimeout(d,e),p(u)}return void 0===s&&(s=setTimeout(d,e)),a}return e=hn(e)||0,E(r)&&(f=!!r.leading,i=(l="maxWait"in r)?Di(hn(r.maxWait)||0,e):i,h="trailing"in r?!!r.trailing:h),g.cancel=function(){void 0!==s&&clearTimeout(s),c=0,n=u=o=s=void 0},g.flush=function(){return void 0===s?a:v(Li())},g},Fi=function(t,e,r){var n=!0,o=!0;if("function"!=typeof t)throw new TypeError("Expected a function");return E(r)&&(n="leading"in r?!!r.leading:n,o="trailing"in r?!!r.trailing:o),Ni(t,e,{leading:n,maxWait:e,trailing:o})};function zi(t){return zi="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},zi(t)}function Ui(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==zi(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==zi(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===zi(o)?o:String(o)),n)}var o}var Yi,Gi=[];function Hi(){Yi=null;var t=performance.now(),e=(Gi=Gi.filter((function(t){return Wi(t)}))).reduce((function(e,r){var n=t-r.updatedAt;return n>=r.retention?e.kills.push(r):e.next=0==e.next?r.retention-n:Math.min(e.next,r.retention-n),e}),{next:0,kills:[]});e.kills.forEach((function(t){var e=Gi.indexOf(t);-1!=e?(Gi.splice(e,1),t.removeSelf(!0)):Zn("Should not be here. Maybe reentrance problem.")})),e.next>0&&(Yi=setTimeout(Xi,Math.max(e.next,500)))}function Wi(t){return!t.disposed&&t.retention>0&&!t.isTemplate()&&t.app&&t.app.isViewMode}var Xi=Fi((function(){requestAnimationFrame(Hi)}),500);const qi=new(function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,r;return e=t,(r=[{key:"add",value:function(t){Wi(t)&&-1==Gi.indexOf(t)&&(Gi.push(t),t.touch()),this.touch()}},{key:"remove",value:function(t){var e=Gi.indexOf(t);e>0&&Gi.splice(e,1),this.touch()}},{key:"touch",value:function(){null!==Yi&&(clearTimeout(Yi),Yi=null),Xi()}},{key:"length",get:function(){return Gi.length}}])&&Ui(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}());var Vi=function(t){return t};function Qi(t){var e=t.indexOf("||"),r="",n="";-1!=e&&(r=t,n=t.substring(e+2,t.length-1).trim(),t=t.replace(t.substring(e,t.length-1),"").trim());var o=t.substr(2,t.length-3).trim().replace(/\[(\w+)\]/g,".$1").replace(/^\./,"").split(".").filter((function(t){return!!t.trim()})),i=o.slice(1);return{defaultValue:n,match:t,originText:r||t,target:o[0],accessor:i.length>0?function(t){return i.reduce((function(t,e){return t?t[e]:void 0}),t)}:Vi}}function Ki(t,e,r){if(t){var n=r||wn,o=String(t),i=(o.match(/#{[^}]*}/gi)||[]).map((function(t){return Qi(t)})),a=(o.match(/\${[^}]*}/gi)||[]).map((function(t){return Qi(t)}));if(0!=i.length||0!=a.length)return function(){var t=o;return i.forEach((function(r){var o=n(r.accessor(e.getState(r.target)));t=t.replace(r.originText,void 0===o?r.defaultValue||"":o)})),a.forEach((function(r){var o=e.root.findById(r.target),i=n(r.accessor(o&&o.data));t=t.replace(r.originText,void 0===i?r.defaultValue||"":i)})),t}}}var Ji=210*Math.PI/180,Zi=150*Math.PI/180,$i={"data-spread":function(t,e,r){if(t.app.isEditMode){var n=!1;return t.mappings&&t.mappings.forEach((function(r){var o=t.root.findAll(r.target,t);o&&(e.lineWidth=2,o.forEach((function(r){var o=t.center,i=r.center;o=t.transcoordS2C(o.x,o.y,t.rootModel),i=r.transcoordS2C(i.x,i.y,r.rootModel),e.beginPath();var a=e.createLinearGradient(o.x,o.y,i.x,i.y);["#FFA50033","#FFA500"].forEach((function(t,e){return a.addColorStop(e,t)})),e.strokeStyle=a,e.fillStyle=a,function(t,e,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10,o=r.x-e.x,i=r.y-e.y,a=Math.atan2(i,o),s=r.x+n*Math.cos(a+Ji),u=r.y+n*Math.sin(a+Ji),c=r.x+n*Math.cos(a+Zi),f=r.y+n*Math.sin(a+Zi);t.beginPath(),t.moveTo(e.x,e.y),t.lineTo(r.x,r.y),t.moveTo(r.x,r.y),t.lineTo(s,u),t.moveTo(r.x,r.y),t.lineTo(c,f),t.stroke()}(e,o,i),n=!0})))})),n}},"bouncing-arrow":function(t,e,r){var n=t.bounds,o=n.left,i=n.top,a=n.width,s=t.state.id,u=t.transcoordS2C(o+a/2,i,t.rootModel),c=u.x,f=u.y,l=2*function(t){var e=100*(1-t)%10;return e<5?e:10-e}(r||0);if(c=Math.max(c,20),f=Math.max(f,20),e.beginPath(),e.moveTo(c-10,f-16+l),e.lineTo(c+10,f-16+l),e.lineTo(c+10,f-8+l),e.lineTo(c+16,f-8+l),e.lineTo(c,f+l),e.lineTo(c-16,f-8+l),e.lineTo(c-10,f-8+l),e.lineTo(c-10,f-16+l),e.lineTo(c-10,f-16+l),e.fillStyle="#FF0000",e.fill(),s){e.beginPath(),e.font="12px Arial";var h=e.measureText(s);e.fillStyle="#FF0000",e.roundRect(c-h.actualBoundingBoxLeft-3+20,f-h.actualBoundingBoxAscent-3-6+l,h.actualBoundingBoxLeft+h.actualBoundingBoxRight+6,h.actualBoundingBoxAscent+h.actualBoundingBoxDescent+6,3),e.fill(),e.fillStyle="white",e.fillText(s,c+20,f-6+l)}return!0},decotag:function(t,e,r){var n=t.decotag;if(n){var o=t.bounds,i=o.left,a=o.top,s=t.transcoordS2C(i,a,t.rootModel),u=s.x,c=s.y;u=Math.max(u+3,5),c=Math.max(c-8,15),e.font="12px Arial";var f=e.measureText(n);return e.beginPath(),e.fillStyle="#FF0000",e.roundRect(u-f.actualBoundingBoxLeft-3,c-f.actualBoundingBoxAscent-3,f.actualBoundingBoxLeft+f.actualBoundingBoxRight+6,f.actualBoundingBoxAscent+f.actualBoundingBoxDescent+6,3),e.fill(),e.beginPath(),e.fillStyle="white",e.fillText(n,u,c),!0}return!1},anchors:function(t,e,r){if(t.app.isEditMode){var n=!1;return t.anchors&&t.anchors.forEach((function(r){var o=r.name,i=r.position||{},a=i.x,s=i.y;if(o){var u=t.transcoordS2C(a,s,t.rootModel);a=u.x,s=u.y,a+=4,s+=4,e.font="12px Arial";var c=e.measureText(o);e.fillStyle="#FF0000",Ei(e,a,s,c.width+6,16,3,!0,!1),e.fillStyle="white",e.fillText(o,a+3,s+13),n=!0}})),n}},link:function(t,e,r){var n=!1;if(t.isLine())return[t.fromEnd,t.toEnd].filter(Boolean).forEach((function(t){var r=t.component,o=t.anchor;if(o){var i=o||{},a=i.name,s=i.position;if(a&&s){var u=s||{},c=u.x,f=u.y,l=r.transcoordS2C(c,f,r.rootModel);c=l.x,f=l.y,c+=8,f+=20,e.font="12px Arial";var h=e.measureText(a);e.fillStyle="#FF0000",Ei(e,c-h.actualBoundingBoxLeft-4,f-h.actualBoundingBoxAscent-4,h.actualBoundingBoxLeft+h.actualBoundingBoxRight+8,h.actualBoundingBoxAscent+h.actualBoundingBoxDescent+8,4,!0,!1),e.fillStyle="white",e.fillText(a,c,f),n=!0}}})),n}};function ta(t){return $i[t]}function ea(t){return ea="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ea(t)}function ra(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function na(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?ra(Object(r),!0).forEach((function(e){oa(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ra(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function oa(t,e,r){return(e=ua(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function ia(){ia=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,o){var i=e&&e.prototype instanceof h?e:h,a=Object.create(i.prototype),s=new O(o||[]);return n(a,"_invoke",{value:x(t,r,s)}),a}function f(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var l={};function h(){}function p(){}function y(){}var d={};u(d,i,(function(){return this}));var v=Object.getPrototypeOf,g=v&&v(v(E([])));g&&g!==e&&r.call(g,i)&&(d=g);var b=y.prototype=h.prototype=Object.create(d);function m(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function w(t,e){function o(n,i,a,s){var u=f(t[n],t,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==ea(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,s)}),(function(t){o("throw",t,a,s)})):e.resolve(l).then((function(t){c.value=t,a(c)}),(function(t){return o("throw",t,a,s)}))}s(u.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===l)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=f(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===l)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function k(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,k(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),l;var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,l;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,l):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,l)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function E(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(ea(t)+" is not iterable")}return p.prototype=y,n(b,"constructor",{value:y,configurable:!0}),n(y,"constructor",{value:p,configurable:!0}),p.displayName=u(y,s,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===p||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,y):(t.__proto__=y,u(t,s,"GeneratorFunction")),t.prototype=Object.create(b),t},t.awrap=function(t){return{__await:t}},m(w.prototype),u(w.prototype,a,(function(){return this})),t.AsyncIterator=w,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new w(c(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},m(b),u(b,s,"Generator"),u(b,i,(function(){return this})),u(b,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=E,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,l):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),l},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),l}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:E(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),l}},t}function aa(t,e,r,n,o,i,a){try{var s=t[i](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,o)}function sa(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,ua(n.key),n)}}function ua(t){var e=function(t,e){if("object"!==ea(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==ea(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===ea(e)?e:String(e)}var ca={},fa={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},la=[],ha={theta:0,tx:0,ty:0,sx:1,sy:1,fade:0},pa=new WeakMap,ya=0,da=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._app=r,this._model=e||{},this._state={},this._delta=Eo(ha),r&&this.animation&&(this.animation.started=!0),this.clearCache(),qi.add(this),pa.set(this,ya++)}var e,r,n,i,a;return e=t,r=[{key:"created",value:function(){}},{key:"added",value:function(t){}},{key:"removed",value:function(t){}},{key:"ready",value:(i=ia().mark((function t(){var e,r,n;return ia().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!this.state.persistent){t.next=6;break}if(e=this.app,r=e.isViewMode,n=e.dataStorage,!r){t.next=6;break}return t.next=5,n.load(this);case 5:this.data=t.sent;case 6:case"end":return t.stop()}}),t,this)})),a=function(){var t=this,e=arguments;return new Promise((function(r,n){var o=i.apply(t,e);function a(t){aa(o,r,n,a,s,"next",t)}function s(t){aa(o,r,n,a,s,"throw",t)}a(void 0)}))},function(){return a.apply(this,arguments)})},{key:"touch",value:function(){this.updatedAt=performance.now()}},{key:"clearCache",value:function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];jo.apply(o,[this].concat(e))}},{key:"removeSelf",value:function(t){t?this.dispose():this.parent&&this.parent.removeComponent(this)}},{key:"dispose",value:function(){this._animation&&(this._animation.dispose(),delete this._animation),this.disposeMappings(),this.parent&&this.parent.removeComponent(this),delete this._text_substitutor,delete this._value_substitutor,this._disposed=!0,this.retention&&qi.touch(),this.clearCache(),delete this._app}},{key:"nature",get:function(){return this.constructor.nature}},{key:"disposed",get:function(){return!!this._disposed}},{key:"isLayer",value:function(){return!1}},{key:"isGroup",value:function(){return!1}},{key:"isContainer",value:function(){return!1}},{key:"isLine",value:function(){return!1}},{key:"isRoot",value:function(){return!1}},{key:"isRootModel",value:function(){return!1}},{key:"is3dish",value:function(){return!1}},{key:"isTemplate",value:function(){return!!this.get("templatePrefix")}},{key:"isHTMLElement",value:function(){return!1}},{key:"isConnectable",value:function(){return!1}},{key:"replaceRefids",value:function(t){}},{key:"retention",get:function(){return Number(this.get("retention"))||0}},{key:"hasTextProperty",get:function(){return!0}},{key:"app",get:function(){return!this._app&&this.parent&&(this._app=this.parent.app),this._app}},{key:"model",get:function(){return this._model}},{key:"state",get:function(){return Object.assign({},this._model,this._state)}},{key:"hierarchy",get:function(){var t=Eo(this._model);return this.volatile.forEach((function(e){delete t[e]})),t}},{key:"volatile",get:function(){return la}},{key:"textHidden",get:function(){return!!this._textHidden},set:function(t){this._textHidden=!!t,this.invalidate()}},{key:"get",value:function(t){return this._model[t]}},{key:"set",value:function(t,e){if("string"==typeof t)return this.set(oa({},t,e));var r={},n={},o=!1,i=(t=Eo(t),this);return Object.getOwnPropertyNames(t).forEach((function(e){var a=i._model[e],s=t[e];xe(a,s)||(n[e]=a,r[e]=s,i._model[e]=s,delete i._state[e],o=!0)})),o&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("retention")&&qi.add(this),r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("mappings")&&this.onchangeMappings(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}},{key:"getState",value:function(t){return this._state.hasOwnProperty(t)?this._state[t]:this.get(t)}},{key:"setState",value:function(t,e){if("string"==typeof t)return this.setState(oa({},t,e));var r={},n={},o=!1,i=(t=Eo(t),this),a=this.getState("sensitive");return Object.getOwnPropertyNames(t).forEach((function(e){var s=i.getState(e),u=t[e];!a&&xe(s,u)||(n[e]=s,r[e]=u,i._state[e]=u,o=!0)})),o&&(this.clearCache(),r.hasOwnProperty("text")&&delete this._text_substitutor,r.hasOwnProperty("fillStyle")&&this.onchangeFill(r,n),r.hasOwnProperty("data")&&this.onchangeData(r,n),this.onchange&&this.onchange(r,n),this.trigger("change",r,n)),this}},{key:"root",get:function(){return this.isRoot()?this:this.parent&&this.parent.root}},{key:"rootModel",get:function(){return this.isRootModel()?this:this.parent&&this.parent.rootModel}},{key:"parent",get:function(){return this._parent},set:function(t){this._parent=t}},{key:"anchors",get:function(){return this.nature.anchors||[]}},{key:"findAnchor",value:function(t){return this.anchors.find((function(e){return e.name===t}))}},{key:"isDescendible",value:function(t){return!0}},{key:"getContext",value:function(){return this._parent.getContext()}},{key:"center",get:function(){var t=this.bounds;return{x:t.left+t.width/2,y:t.top+t.height/2}},set:function(t){if(t&&!isNaN(t.x)&&!isNaN(t.y)){var e=this.center;if(Math.round(100*t.x)/100!=Math.round(100*e.x)/100||Math.round(100*t.y)/100!=Math.round(100*e.y)/100){var r=t.x-e.x,n=t.y-e.y;this.path=this.path.map((function(t){return{x:t.x+r,y:t.y+n}}))}}}},{key:"location",get:function(){return this.center},set:function(t){this.center=t}},{key:"rotate",get:function(){var t=this.state;return{x:t.rotationX,y:t.rotationY,z:-t.rotation}},set:function(t){var e=t.x,r=t.y,n=t.z;this.setState({rotationX:e,rotationY:r,rotation:-n})}},{key:"dimension",get:function(){var t=this.bounds;return{width:t.width,height:t.height,depth:this.state.depth}},set:function(t){var e=t.width,r=t.height,n=t.depth,o=this.bounds,i=o.top,a=o.left;this.bounds={top:i,left:a,width:e,height:r},this.setState("depth",n)}},{key:"bounds",get:function(){var t,e,r,n,o=this.path;t=e=o[0].x,r=n=o[0].y;for(var i=1;i<o.length;i++){var a=o[i];a.x<t?t=a.x:a.x>e&&(e=a.x),a.y<r?r=a.y:a.y>n&&(n=a.y)}return{left:t,top:r,width:e-t,height:n-r}},set:function(t){var e=this.bounds;if(Math.round(100*t.width)/100!=Math.round(100*e.width)/100||Math.round(100*t.height)/100!=Math.round(100*e.height)/100||Math.round(100*t.left)/100!=Math.round(100*e.left)/100||Math.round(100*t.top)/100!=Math.round(100*e.top)/100){var r=0==e.width?1:t.width/e.width,n=0==e.height?1:t.height/e.height;this.path=this.path.map((function(o){return{x:t.left+(o.x-e.left)*r,y:t.top+(o.y-e.top)*n}}))}}},{key:"path",get:function(){return Zn("이 컴포넌트에 get path 가 구현되어있지 않음.",this),[]},set:function(t){Zn("이 컴포넌트에 get path 가 구현되어있지 않음.",this)}},{key:"drawPath",get:function(){return this.path}},{key:"outline",value:function(t){return function(t,e){var r=t.path.slice();if(r&&r.length){var n=1,o=[];if(t.isLine()||r.push(r[0]),e<=0)return t.transcoordS2T(r[0].x,r[0].y);if(e>=1)return t.transcoordS2T(r[r.length-1].x,r[r.length-1].y);for(;r[n];){var i=r[n-1],a=r[n],s=a.x-i.x,u=a.y-i.y;o.push(Math.sqrt(s*s+u*u)),n++}var c=o.reduce((function(t,e){return t+e}),0);n=0;var f=0;do{f+=o[n++]}while(f/c<e);e=(e-(f-=o[--n])/c)*(c/o[n]);var l=r[n%r.length],h=r[(n+1)%r.length],p=l.x+Math.round((h.x-l.x)*e),y=l.y+Math.round((h.y-l.y)*e);return t.transcoordS2T(p,y)}Zn("path should not be empty")}(this,t||0)}},{key:"strokeStyle",get:function(){return this.get("strokeStyle")},set:function(t){this.set("strokeStyle",t)}},{key:"fillStyle",get:function(){return this.getState("fillStyle")},set:function(t){this.setState("fillStyle",t)}},{key:"fontColor",get:function(){return this.get("fontColor")},set:function(t){this.set("fontColor",String(wn(t)))}},{key:"rotation",get:function(){return this.getState("rotation")},set:function(t){this.setState("rotation",Number(wn(t)))}},{key:"contains",value:function(t,e){return!1}},{key:"mutable",get:function(){return this.nature.mutable}},{key:"resizable",get:function(){return this.nature.resizable&&!this.stuck}},{key:"adjustResize",value:function(t,e,r){if(r){var n=this.bounds,o=n.height/n.width,i=t.width-n.width,a=t.height-n.height;i*o>a?a=i*o:i=a/o;var s=t.left-n.left,u=t.top-n.top;return 0!=s&&0!=u?(u=-a,s=-i):0!=s?s=-i:0!=u&&(u=-a),{left:n.left+s,top:n.top+u,width:n.width+i,height:n.height+a}}return t}},{key:"rotatable",get:function(){return this.nature.rotatable&&!this.stuck}},{key:"adjustRotation",value:function(t,e){if(e||this.app.rotateStepForced){var r=this.app.rotateStep;return Math.floor((t+r/2)/r)*r}return t}},{key:"capturable",get:function(){return!1!==this.get("capturable")&&(this.app.isEditMode||!this.hidden)}},{key:"stuck",get:function(){return!!(this.parent&&this.parent.layout.isStuck(this)||this.get("locked"))}},{key:"findFirst",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if(t.apply(void 0,[this].concat(r)))return this}},{key:"findAll",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];return"string"==typeof t?Qo(t,this,r[0]||this):"function"==typeof t&&t.apply(void 0,[this].concat(r))?[this]:void 0}},{key:"capture",value:function(t,e,r){if(!this.capturable||null!=r&&r(this))return!1;var n=this.transcoordP2S(t,e);return this.contains(n.x,n.y)?this:void 0}},{key:"prepare",value:function(t,e){t(this)}},{key:"prepareIf",value:function(t){var e=this;t&&this.prepare&&this.prepare((function(t){e.invalidate()}),(function(t){Zn(t)}))}},{key:"decotag",get:function(){var t=this.state,e=t.id,r=t.tag;return(e?"#".concat(e):"")+(r?"@".concat(r):"")}},{key:"decorators",get:function(){return["decotag","data-spread"]}},{key:"reactionDecorators",get:function(){return["bouncing-arrow"]}},{key:"hidden",get:function(){return this.getState("hidden")||!this.data&&0!==this.data&&this.getState("ndns")||this.isTemplate()},set:function(t){this.setState("hidden",t)}},{key:"draw",value:function(t){t.save(),this.__proto__.hasOwnProperty("_pre_draw")?this._pre_draw(t):this.prerender(t),this.__proto__.hasOwnProperty("_draw")?this._draw(t):this.render(t),this.__proto__.hasOwnProperty("_post_draw")?this._post_draw(t):this.postrender(t),t.restore()}},{key:"delta",value:function(t,e){if(void 0===e)return t?this._delta[t]:this._delta;this._delta[t]=e}},{key:"prerender",value:function(t){var e=this.rotatePoint,r=this.state,n=r.scale,o=r.rotation,i=r.shadow,a=r.alpha,s=(n&&n.x||1)*this._delta.sx,u=(n&&n.y||1)*this._delta.sy,c=(o||0)+this._delta.theta,f=this._delta,l=f.tx,h=void 0===l?0:l,p=f.ty,y=void 0===p?0:p,d=(a||1)-this._delta.fade;(h||y)&&t.translate(h,y),(1!=s||1!=u||c)&&(t.translate(e.x,e.y),1==s&&1==u||t.scale(s,u),c&&t.rotate(c),t.translate(-e.x,-e.y)),d&&(t.globalAlpha=d),i&&Yo(t,i,this),this.app.isEditMode&&this.hidden&&(t.globalAlpha*=.5)}},{key:"render",value:function(t){}},{key:"postrender",value:function(t){this.drawText(t)}},{key:"drawText",value:function(t){!this.textHidden&&this.text&&this.hasTextProperty&&ji(t,this.textBounds,this.textLines(t),this.state)}},{key:"drawStroke",value:function(t,e){mi(t,e?na(na({},this.state),e):this.state)}},{key:"drawFill",value:function(t,e){this.fillStyle&&"transparent"!=this.fillStyle&&(bi(t,this.bounds,this.center,e?na(na({},this.state),e):this.state,this),function(t){t.shadowColor="transparent"}(t))}},{key:"animate",value:function(t){return this._animate&&this._animate.stop(),this._animate=nn(t),this._animate}},{key:"move",value:function(t){var e=t.x,r=t.y,n=this.path,o=e,i=r;this.path=n.map((function(t){return{x:t.x+o,y:t.y+i}}))}},{key:"symmetryX",value:function(t){"number"!=typeof t&&(t=this.center.x);var e=this.state.rotation,r=this.fillStyle;if(this.set("rotation",2*Math.PI-e),r&&"gradient"===r.type&&"linear"===r.gradientType){var n=Eo(r);n.rotation=(Math.PI-parseFloat(r.rotation||0))%(2*Math.PI),this.set("fillStyle",n)}this.path=this.path.map((function(e){return{x:2*t-e.x,y:e.y}}))}},{key:"symmetryY",value:function(t){this.symmetryX(),this.set("rotation",(Math.PI+this.model.rotation)%(2*Math.PI)),t&&this.move({x:0,y:2*(t-this.center.y)},!1)}},{key:"animation",get:function(){if(this.app.isViewMode&&!this.isTemplate()){if(!this._animation){var t=this.state.animation;t&&t.oncreate&&(this._animation=(this,e=t.oncreate,(r=rn[e.type])?new r(this,e):null))}var e,r;return this._animation}}},{key:"effect",value:function(t,e){return function(t,e,r){var n=Go[r.type];n&&n(t,e,r)}(this,t,e)}},{key:"started",set:function(t){this.animation&&(this.animation.started=t)}},{key:"invalidate",value:function(){this.parent&&this.parent.invalidate()}},{key:"font",get:function(){return Pi(this.model)}},{key:"lineHeight",get:function(){return this.get("lineHeight")||1.2*this.fontSize}},{key:"defaultTextSubstitutor",value:function(){var t=this.getState("text");return null==t?"":String(t)}},{key:"textSubstitutor",get:function(){return this._text_substitutor||(this._text_substitutor=Ki(this.getState("text"),this)||this.defaultTextSubstitutor),this._text_substitutor}},{key:"text",get:function(){var t=this.get("textFormat");return t?function(t,e){if(!t||isNaN(+e))return e;var r,n,o,i,a,s,u,c,f,l=t.length,h=t.search(/[0-9\-\+#]/),p=h>0?t.substring(0,h):"",y=t.split("").reverse().join(""),d=y.search(/[0-9\-\+#]/),v=l-d,g=t.substring(v,v+1),b=v+("."===g||","===g?1:0),m=d>0?t.substring(b,l):"";if(r=(e="-"===(t=t.substring(h,b)).charAt(0)?-e:+e)<0?e=-e:0,o=(n=t.match(/[^\d\-\+#]/g))&&n[1]&&n[0]||",",t=t.split("."),e=+(e=e.toFixed(t[1]&&t[1].length))+"",a=t[1]&&t[1].lastIndexOf("0"),(!(u=e.split("."))[1]||u[1]&&u[1].length<=a)&&(e=(+e).toFixed(a+1)),c=t[0].split(o),t[0]=c.join(""),(i=t[0]&&t[0].indexOf("0"))>-1)for(;u[0].length<t[0].length-i;)u[0]="0"+u[0];else 0==+u[0]&&(u[0]="");if((e=e.split("."))[0]=u[0],s=c[1]&&c[c.length-1].length){for(y="",v=(f=e[0]).length%s,l=f.length,b=0;b<l;b++)y+=f.charAt(b),!((b-v+1)%s)&&b<l-s&&(y+=o);e[0]=y}return e[1]=t[1]&&e[1]?"."+e[1]:"","0"!==(n=e.join(""))&&""!==n||(r=!1),p+("+"==t[0].substring(0,1)?r?"-":"+":r?"-":"")+n+m}(t,this.textSubstitutor()):this.textSubstitutor()},set:function(t){delete this._text_substitutor;var e=wn(t);this.setState("text",null==e?"":String(e))}},{key:"textLines",value:function(t){return Ai(t||this.getContext(),this.textBounds.width,this.font,this.text,this.get("textWrap"))}},{key:"textBounds",get:function(){var t=this.state,e=t.paddingTop,r=t.paddingLeft,n=t.paddingRight,o=t.paddingBottom;o||(o=0),e||(e=0),r||(r=0),n||(n=0);var i=this.bounds,a=i.left,s=i.top,u=i.width,c=i.height;return{left:a+r,top:s+e,width:Math.max(u-r-n,0),height:Math.max(c-e-o,0)}}},{key:"textRotation",get:function(){return 0}},{key:"rotatePoint",get:function(){return this.center}},{key:"trim",value:function(){delete this._model[""],"chartjs"!==this._model.type&&delete this._model.chart}},{key:"value",get:function(){var t=this.nature["value-property"]||"text";return"value"==t?this.getState("value"):this[t]},set:function(t){var e=this.nature["value-property"]||"text";"value"==e?this.setState("value",t):this[e]=t}},{key:"data",get:function(){return this.getState("data")},set:function(t){this.setState("data",t),this.touch()}},{key:"mappings",get:function(){return!this._mappings&&this.parent&&this.buildMappings(),this._mappings}},{key:"serialize",value:function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return JSON.stringify.apply(JSON,[this.hierarchy].concat(e))}},{key:"controls",get:function(){}},{key:"closeScene",value:function(t){this.rootModel.closeScene(t)}}],n=[{key:"nature",get:function(){return fa}},{key:"register",value:function(t,e){if(!e)return ca[t];ca[t]=e}},{key:"residents",get:function(){return pa}},{key:"registerDecorator",value:function(t,e){!function(t,e){$i[t]=e}(t,e)}}],r&&sa(e.prototype,r),n&&sa(e,n),Object.defineProperty(e,"prototype",{writable:!1}),t}();function va(t){return va="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},va(t)}function ga(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==va(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==va(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===va(o)?o:String(o)),n)}var o}function ba(){return ba="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=wa(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ba.apply(this,arguments)}function ma(t,e){return ma=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ma(t,e)}function wa(t){return wa=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},wa(t)}da.union=function(t){var e,r,n,o;return t.forEach((function(t){void 0===e?(e=t.left,r=t.top,n=t.left+t.width,o=t.top+t.height):(e=Math.min(t.left,e),r=Math.min(t.top,r),n=Math.max(t.left+t.width,n),o=Math.max(t.top+t.height,o))})),{left:e,top:r,width:n-e,height:o-r}},da.transcoordR=Ti,da.transcoordRR=Mi,da.createCanvas=yi,da.memoize=Ao,da.mixin=Vn,da.drawText=ji,da.font=Pi,da.textLines=Ai,da.drawStroke=mi,da.drawFill=bi,da.reposition=Ci,da.RetentionManager=qi,da.template=function(t,e,r){var n=pr.imports._.templateSettings||pr;r&&De(t,e,r)&&(e=void 0),t=fr(t),e=ze({},e,n,$e);var o,i,a=ze({},e.imports,n.imports,$e),s=Kt(a),u=function(t,e){return Ke(e,(function(e){return t[e]}))}(a,s),c=0,f=e.interpolate||mr,l="__p += '",h=RegExp((e.escape||mr).source+"|"+f.source+"|"+(f===rr?br:mr).source+"|"+(e.evaluate||mr).source+"|$","g"),p=xr.call(e,"sourceURL")?"//# sourceURL="+(e.sourceURL+"").replace(/\s/g," ")+"\n":"";t.replace(h,(function(e,r,n,a,s,u){return n||(n=a),l+=t.slice(c,u).replace(wr,er),r&&(o=!0,l+="' +\n__e("+r+") +\n'"),s&&(i=!0,l+="';\n"+s+";\n__p += '"),n&&(l+="' +\n((__t = ("+n+")) == null ? '' : __t) +\n'"),c=u+e.length,e})),l+="';\n";var y=xr.call(e,"variable")&&e.variable;if(y){if(gr.test(y))throw new Error("Invalid `variable` option passed into `_.template`")}else l="with (obj) {\n"+l+"\n}\n";l=(i?l.replace(yr,""):l).replace(dr,"$1").replace(vr,"$1;"),l="function("+(y||"obj")+") {\n"+(y?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(o?", __e = _.escape":"")+(i?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+l+"return __p\n}";var d=Qe((function(){return Function(s,p+"return "+l).apply(void 0,u)}));if(d.source=l,Ve(d))throw d;return d},da.buildSubstitutor=Ki,Object.assign(da.prototype,{drawEffect:function(t){var e=this;(this.state.effects||[]).forEach((function(r){e.effect(t,r)}))},prepareFill:function(t,e){var r=this.fillStyle;if(r&&"pattern"==r.type&&r.image){if("string"!=typeof r.image)return this._pattern_image_origin=this._pattern_image=r.image,void t(this);this._pattern_image=null,this._pattern_image_origin=new Image;var n=this;this._pattern_image_origin.onload=function(){if(!r.fitPattern&&!r.width&&!r.height)return n._pattern_image=n._pattern_image_origin,void t(this);var e=r.width||this.width,o=r.height||this.height;r.fitPattern&&(e=n.bounds.width,o=n.bounds.height);var i=yi(e,o);i.getContext("2d").drawImage(this,0,0,this.width,this.height,0,0,e,o),n._pattern_image=i,t(this)},this._pattern_image_origin.onerror=function(t){e(t)};try{"data"!==String(r.image).substring(0,4)?this._pattern_image_origin.crossOrigin="use-credentials":this._pattern_image_origin.crossOrigin=null,this._pattern_image_origin.src=this.app.url(r.image)}catch(t){e(t)}}else t(this)},prepareFillIf:function(t){var e=this;t&&this.prepareFill((function(t){e.invalidate()}),(function(t){Zn(t)}))},onchangeFill:function(t,e){var r=this.fillStyle;r&&"pattern"!==r.type?this._pattern_image&&(this._pattern_image=null,this._pattern_image_origin=null):(null==r?void 0:r.image)&&this.prepareFillIf(r.image)},drawImage:function(t,e,r,n,o,i){var a=this;e.complete?t.drawImage(e,r,n,o,i):e.addEventListener("load",(function(){a.invalidate()}))},mutateBounds:function(t,e){var r=this.bounds,n=this.rotatePoint,o=this.get("rotation"),i=this.get("scale");if(t){var a=t.call(e,r);a&&(r=a)}var s=r,u=s.left,c=s.top,f=[{x:u,y:c},{x:u+s.width,y:c+s.height}],l=(f=f.map((function(t){return Mi(t.x,t.y,n,o,i)})))[0],h=f[1];n={x:(l.x+h.x)/2,y:(l.y+h.y)/2},l=(f=f.map((function(t){return Ti(t.x,t.y,n,o,i)})))[0],h=f[1],this.bounds={left:l.x,top:l.y,width:h.x-l.x,height:h.y-l.y}},mutatePath:function(t,e,r){var n=this,o=this.path,i=this.rotatePoint;this.get("rotation"),this.get("scale"),t&&(o=t.call(r,o));var a=o.map((function(t){return n.transcoordS2P(t.x,t.y)}));e&&(o=e.call(r,a))&&(a=o);var s,u,c,f,l={x:0,y:0};o=a.map((function(t){return n.transcoordP2S(t.x,t.y,l)})),s=u=o[0].x,c=f=o[0].y;for(var h=1;h<o.length;h++){var p=o[h];p.x<s?s=p.x:p.x>u&&(u=p.x),p.y<c?c=p.y:p.y>f&&(f=p.y)}i={x:(s+u)/2,y:(c+f)/2},i=this.transcoordS2P(i.x,i.y,l),this.path=a.map((function(t){return n.transcoordP2S(t.x,t.y,i)}))},access:function(t){if(t){var e=String(t),r=(e.match(/#{(\S*)}/)||[]).map((function(t){return Qi(t)}))[0];if(r)return r.accessor(this.getState(r.target));var n=(e.match(/\${[^}]*}/)||[]).map((function(t){return Qi(t)}))[0];if(n){var o=this.root.findById(n.target);return n.accessor(this.getState(o))}return t}},substitute:function(t,e){var r=this;if(t){var n=String(t),o=e||wn,i=(n.match(/#{(\S*)}/gi)||[]).map((function(t){return Qi(t)})),a=(n.match(/\${[^}]*}/gi)||[]).map((function(t){return Qi(t)}));if(0==i.length&&0==a.length)return n;var s=n;return i.forEach((function(t){var e=o(t.accessor(r.getState(t.target)));s=s.replace(t.match,void 0===e?"":e)})),a.forEach((function(t){var e=r.root.findById(t.target),n=o(t.accessor(e&&e.data));s=s.replace(t.match,void 0===n?"":n)})),s}},onchangeMappings:function(t,e){this.disposeMappings(),vi.call(this)},onchangeData:function(t,e){this.state.persistent&&this.app.isViewMode&&this.app.dataStorage.save(this,t.data),vi.call(this,[!0])},buildMappings:function(){var t=this;if(this._model.mappings)return!this._model.mappings instanceof Array?(Zn("Mappings model is invalid (should be a Array) ..",this._model.mappings),void(this._mappings=[])):void(this._mappings=(this._model.mappings||[]).map((function(e){return new di(e,t)})));this._mappings=[]},executeMappings:vi,disposeMappings:function(){this._mappings&&this._mappings.forEach((function(t){return t.dispose()})),delete this._mappings},ondropfile:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void this.set("fillStyle",{type:"pattern",image:e[r],fitPattern:!0})},transcoordS2P:function(t,e,r){if(!this.parent)return{x:t,y:e};var n=this.state,o=n.rotation,i=void 0===o?0:o,a=n.scale,s=void 0===a?{x:1,y:1}:a;if(this.isLayer()){var u=this.state.translate,c=Mi(t,e,void 0,i+this._delta.theta,s);return u&&(c.x+=u.x,c.y+=u.y),c}r=r||this.rotatePoint;var f=this._delta||{},l=f.theta,h=void 0===l?0:l,p=f.tx,y=void 0===p?0:p,d=f.ty,v=void 0===d?0:d,g=f.sx,b=void 0===g?1:g,m=f.sy,w=void 0===m?1:m,x=Mi(t+y,e+v,r={x:r.x+y,y:r.y+v},i+h,s={x:s.x*b,y:s.y*w});return{x:x.x-(r.x*s.x-r.x),y:x.y-(r.y*s.y-r.y)}},transcoordP2S:function(t,e,r){if(!this.parent)return{x:t,y:e};var n=this.state,o=n.rotation,i=void 0===o?0:o,a=n.scale,s=void 0===a?{x:1,y:1}:a;if(this.isLayer()){var u=this.state.translate,c=Ti(t,e,u,i,s);return u&&(c.x-=u.x/(s?s.x:1),c.y-=u.y/(s?s.y:1)),c}var f=Ti(t,e,r=r||this.rotatePoint,i,s);return{x:f.x+(r.x-r.x/s.x),y:f.y+(r.y-r.y/s.y)}},transcoordS2T:function(t,e,r){r=r||this.rootModel;for(var n=[],o=this.parent;o&&o!==r;o=o.parent)n.push(o);var i=this.transcoordS2P(t,e);return n.forEach((function(t){var e=t.model.scale,r=t.bounds;if(e){var n=t.rotatePoint;i.x+=(n.x-r.left)*e.x,i.y+=(n.y-r.top)*e.y}else i.x+=r.left,i.y+=r.top;i=t.transcoordS2P(i.x,i.y)})),i},transcoordT2P:function(t,e,r){r=r||this.rootModel;for(var n=[],o=this.parent;o&&o!==r;o=o.parent)n.splice(0,0,o);var i={x:t,y:e};return n.forEach((function(t){var e=t.model.scale;i=t.transcoordP2S(i.x,i.y);var r=t.bounds;if(e){var n=t.rotatePoint;i.x-=(n.x-r.left)/e.x,i.y-=(n.y-r.top)/e.y}else i.x-=r.left,i.y-=r.top})),i},transcoordT2S:function(t,e,r){var n=this.transcoordT2P(t,e,r);return this.transcoordP2S(n.x,n.y)},transcoordS2TR:function(t,e,r){r=r||this.rootModel;var n=this.transcoordS2T(t,e,r);return Mi(n.x,n.y,void 0,(r.get("rotation")||0)+r._delta.theta)},transcoordS2O:function(t,e,r){var n=this.rootModel,o=this.transcoordS2T(t,e,n);return r.transcoordT2S(o.x,o.y,n)},transcoordC2S:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;var n=r.model,o=n.translate,i=void 0===o?{x:0,y:0}:o,a=n.scale,s=void 0===a?{x:1,y:1}:a,u=n.rotation,c=Ti(t,e,i,void 0===u?0:u,s);return i&&(c.x-=i.x/(s?s.x:1),c.y-=i.y/(s?s.y:1)),r===this?c:this.transcoordT2S(c.x,c.y,r)},transcoordS2C:function(t,e,r){if(!r)for(r=this;r&&!r.isLayer();)r=r.parent;if(r!==this)var n=this.transcoordS2T(t,e,r);else n={x:t,y:e};var o=r.model,i=o.translate,a=void 0===i?{x:0,y:0}:i,s=o.rotation,u=void 0===s?0:s,c=o.scale,f=void 0===c?{x:1,y:1}:c;return n=Mi(n.x,n.y,void 0,u+r._delta.theta,f),a&&(n.x+=a.x,n.y+=a.y),n},_pre_draw:da.prototype.prerender,_draw:da.prototype.render,_post_draw:da.prototype.postrender}),["rotatePoint","font","lineHeight","retention"].forEach((function(t){return da.memoize(da.prototype,t,!1)})),["bounds","center","textBounds"].forEach((function(t){return da.memoize(da.prototype,t,!0)})),da.mixin(da.prototype,qn.withEvent);var xa=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ma(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=wa(n);if(o){var r=wa(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===va(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"rotationX",get:function(){return this.getState("rotationX")},set:function(t){this.setState("rotationX",t)}},{key:"rotationY",get:function(){return this.getState("rotationY")},set:function(t){this.setState("rotationY",t)}},{key:"rotationZ",get:function(){return this.getState("rotation")},set:function(t){this.setState("rotation",t)}},{key:"zPos",get:function(){return this.getState("zPos")},set:function(t){this.setState("zPos",t)}},{key:"depth",get:function(){return this.getState("depth")},set:function(t){this.setState("depth",t)}},{key:"postrender",value:function(t){this.drawFill(t),this.drawStroke(t),ba(wa(a.prototype),"postrender",this).call(this,t)}},{key:"render",value:function(t){var e=this.drawPath,r=this.state.round,n=void 0===r?0:r;if(!(e.length<=1)){t.beginPath();for(var o=0;o<e.length;o++){var i=e[(o-1+e.length)%e.length],a=e[(o+e.length)%e.length],s=e[(o+1)%e.length];if(i.x!==a.x||i.y!==a.y){var u,c=0!==(u=Math.sqrt((i.x-a.x)*(i.x-a.x)+(i.y-a.y)*(i.y-a.y)))?Math.atan2(i.x-a.x,i.y-a.y):0,f=Math.sin(c)*Math.min(n,u/2)+a.x,l=Math.cos(c)*Math.min(n,u/2)+a.y,h=n>0||0!==u?{x:f,y:l}:a;c=0!==(u=Math.sqrt((s.x-a.x)*(s.x-a.x)+(s.y-a.y)*(s.y-a.y)))?Math.atan2(s.x-a.x,s.y-a.y):0,f=Math.sin(c)*Math.min(n,u/2)+a.x,l=Math.cos(c)*Math.min(n,u/2)+a.y;var p=n>0||0!==u?{x:f,y:l}:a;0==o?t.moveTo(h.x,h.y):t.lineTo(h.x,h.y),n>0&&t.quadraticCurveTo(a.x,a.y,p.x,p.y)}}t.closePath()}}}],r&&ga(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(da);function ka(t){return ka="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ka(t)}function Sa(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==ka(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==ka(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===ka(o)?o:String(o)),n)}var o}function _a(t,e){return _a=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},_a(t,e)}function Oa(t){return Oa=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Oa(t)}const Ea=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&_a(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Oa(n);if(o){var r=Oa(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===ka(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"contains",value:function(t,e){var r=this.state,n=r.left,o=r.top,i=r.width,a=r.height,s=r.lineWidth,u=(void 0===s?0:s)/2;return t<Math.max(n+i,n)+u&&t>Math.min(n+i,n)-u&&e<Math.max(o+a,o)+u&&e>Math.min(o+a,o)-u}},{key:"path",get:function(){var t=this.state,e=t.left,r=void 0===e?0:e,n=t.top,o=void 0===n?0:n,i=t.width,a=void 0===i?0:i,s=t.height,u=void 0===s?0:s;return[{x:r,y:o},{x:r+a,y:o},{x:r+a,y:o+u},{x:r,y:o+u}]},set:function(t){var e=t[0],r=t[2];this.set({left:e.x,top:e.y,width:r.x-e.x,height:r.y-e.y})}},{key:"anchors",get:function(){return function(t){var e=t.bounds,r=e.left,n=e.top,o=e.width,i=e.height,a=r+o/2,s=n+i/2;return[{name:"TOP",position:{x:a,y:n}},{name:"RIGHT",position:{x:r+o,y:s}},{name:"BOTTOM",position:{x:a,y:n+i}},{name:"LEFT",position:{x:r,y:s}}]}(this)}}])&&Sa(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return Ao(e.prototype,"path",!1),e};function Aa(t){return Aa="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Aa(t)}function Pa(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Aa(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Aa(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Aa(o)?o:String(o)),n)}var o}function ja(){return ja="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Ma(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ja.apply(this,arguments)}function Ta(t,e){return Ta=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ta(t,e)}function Ma(t){return Ma=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ma(t)}var Ra={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"textarea",label:"front-side-template",name:"frontSideTemplate",property:{language:"html"}},{type:"textarea",label:"back-side-template",name:"backSideTemplate",property:{language:"html"}},{type:"textarea",label:"style",name:"style",property:{language:"css"}}],help:"scene/component/info-window"},Ia=20;function Ca(t,e){var r=t.split(/\s+/),n=r.indexOf(e);return-1!=n?r.splice(n,1):r.splice(-1,0,e),r.join(" ")}var La=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ta(t,e)}(s,t);var e,r,n,o,i,a=(o=s,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ma(o);if(i){var r=Ma(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Aa(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),a.apply(this,arguments)}return e=s,n=[{key:"image",get:function(){return s._image||(s._image=new Image,s._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAAY1BMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADIAbxiAAAAIHRSTlMA+gPshCwwWFzYCeLRm7QRG6rLeDZI9JOJJDtjb1HAf1sAT80AAAQQSURBVHhe7MCBAAAAAMKw/KkzOMG2BAAAAKeu3lUohIEggO7jQi5qHqpgwML5/6+0F0y02z31FlvMMLKt86QMQ1ined2Evih1hFFjLfRWjgzDOGZ6JSiM00B9EuHALtQxJLiQBmqSBCeSUEuEGzs1BDjSaHxWOKK5Eyz/4SoMV/hp4+vtcPkdwZD/udwevNg7t1xXYRiKmkB7C+ENlPLq8fxHeX+RGjWQ1D45ldcIulBIvCvYJGBEadyTzxAcfY57NBjpLScOO/bzugcTHe7IMwiSLMcdHZhocMcMgTLjjgZM7F1bCJZ2v27ARGzYDwIk2Z+JYGJ/iiwQLMv+JAEThjkmRG64Q0Q+gIiIiIiIiIiIyFy0KRFt0bOJZAWSUigmkQaJaXhENiRnYBEpkZySRSRGcmIWEaQnYhHRSI5mESmQnIJFZIqQmGhiEYEbEnPjGlEGjYTogW/WUkOXENENSqZfEXmDiIiIiIiIiIiIiIiIiIiImq5ETIpRpBpjJCMeKy6Ri0ZS9MQjkmkkJs1YRDokp2MRyZGclkUkQnIiEQltaX3Lzb6yiGTpl2y/avqSAxGgelCOKI+Kc2isL0TUSsZ4EREREREREREREREREREREfnIQzXrNWSRTeNxnlOwIgueIr6AAyE+CpiqMEUK71IDO4E+LluEKYKnKcMUifEsTZgiJZ5lDVNkwJPcqzBFoPF/HplfxL/w6b4EPGv1h18Weya1TL8iIiIeiIiIiIiIiEjkPefxV+5YA9PPHylB+u5aqgZ39H+jKOxrqtu+pkzvr9YbzoZ6w2OFkzcrA3yE4WZlSSyFk54VoA/wR43+FaD+r9w32QdWvgvjp2ty2xq8qHPHmtyPFxfrK3hw1ejERlAlfR/Ame2OTow05d4rOLLSlHtDVhI0uRO01JeZ405op6zgNNXT+bIRfpIgn+AkU4pOxBscohojdCHu4RRzjC5EYwVHqRONDkSnEvK/CB3QSU32IRW3ZPnj9iEVoGCNTLVrh8ia1x+6wq8xvB5mz8pxu7oPwIn9lcR0AiuX1+1KX+BXqdvXzWsAC0NsGjzZsS/2Bd6yRA5RgIHkXNhSD3whASZ8rrB9mItuEAizac0fDlHxDMEwpQfD1tW4y3Hjfy5s9nOHH3uwWA+EqEJBWCjoTL/S5toBB/7hu6zer74NgqSP39zJU+qQX3ix763mHTqvIVRUVprCljlElRkEjBqNYevH8veBJ2xhiyhE8YctmhDFH7ZoQhR/2KIJUfxhiyRE8YctmhDFH7ZoQhR/2OIJUfxhC9Ppf/t1jgJACERRsHGyYRZB0Ujvf0xD8w6kP7y6RZmgf/oTFTtbbzJVxZWo2Nlqw6TVy5GowNl6ssm7v50obamfSxQAAAAAAAsKLM15fb3vpQAAAABJRU5ErkJggg=="),s._image}},{key:"toggle",value:function(t,e,r,n){if(e){var o=t.root.findById(e);o?o._findInfoWindowByComponent(t)?s.hide(t,e):s.show(t,e,r,n):console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}},{key:"hide",value:function(t,e){if(e){var r=t.root.findById(e);r?r._removeInfoWindow(t):console.warn("InfoWindow Not Found.",e)}}},{key:"show",value:function(t,e,r,n){if(e){var o=t.root.findById(e);if(o){if(!o._findInfoWindowByComponent(t)){var i=o.model,a=i.frontSideTemplate,u=void 0===a?"":a,c=i.backSideTemplate,f=[u,void 0===c?"":c].filter((function(t){return String(t).trim()}));if(0!=(f=f.map((function(t){return da.template(function(t,e,r){return(e||r?['<div class="info-window-btns">',e?'<button class="closable">X</button>':"",r?'<button class="flipable">⇌</button>':"","</div>"]:[]).concat(['<div class="info-window-content">',t,"</div>"]).join("")}(t,!r,2==f.length))}))).length){var l='\n.flip {\n backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n -ms-backface-visibility: hidden;\n -o-backface-visibility: hidden;\n -webkit-backface-visibility: hidden;\n border-radius: 7px;\n height: auto;\n font: normal 14px helvetica, arial, san serif;\n position: absolute;\n opacity:.9;\n transform-origin: 50% 50% 0px;\n -moz-transform-origin: 50% 50% 0px;\n -ms-transform-origin: 50% 50% 0px;\n -o-transform-origin: 50% 50% 0px;\n -webkit-transform-origin: 50% 50% 0px;\n transition: all 2s;\n -moz-transition: all 2s;\n -ms-transition: all 2s;\n -o-transition: all 2s;\n -webkit-transition: all 2s;\n min-width: 100px;min-height:50px;\n background-color:#3e424e;\n box-shadow: 2px 3px 2px 0px rgba(0,0,0,0.15);\n}\n\n#side-1 {\n transform: rotateY( 0deg );\n -moz-transform: rotateY( 0deg );\n -ms-transform: rotateY( 0deg );\n -o-transform: rotateY( 0deg );\n -webkit-transform: rotateY( 0deg );\n}\n.flip:after{\n content:"";\n display:block;\n position: absolute;\n opacity:.9;\n width: 0;\n height: 0;\n}\n.flip.arrow-top:after{\n left:45%;\n top:-17px;\n border-left:10px solid transparent;\n border-bottom:18px solid #323b44;\n border-right:10px solid transparent;\n}\n.flip.arrow-right:after{\n left:100%;\n top:48%;\n border-top:10px solid transparent;\n border-left:18px solid #323b44;\n border-bottom:10px solid transparent;\n}\n.flip.arrow-bottom:after{\n left:45%;\n top:100%;\n border-left:10px solid transparent;\n border-top:18px solid #323b44;\n border-right:10px solid transparent;\n}\n.flip.arrow-left:after{\n right:100%;\n top:48%;\n border-top:10px solid transparent;\n border-right:18px solid #323b44;\n border-bottom:10px solid transparent;\n}\n\n#side-2 {\n transform: rotateY( 180deg );\n -moz-transform: rotateY( 180deg );\n -ms-transform: rotateY( 180deg );\n -o-transform: rotateY( 180deg );\n -webkit-transform: rotateY( 180deg );\n}\n\n.flip-side-1 {\n transform: rotateY( 0deg ) !important;\n -moz-transform: rotateY( 0deg ) !important;\n -ms-transform: rotateY( 0deg ) !important;\n -o-transform: rotateY( 0deg ) !important;\n -webkit-transform: rotateY( 0deg ) !important;\n}\n\n.flip-side-2 {\n transform: rotateY( 180deg ) !important;\n -moz-transform: rotateY( 180deg ) !important;\n -ms-transform: rotateY( 180deg ) !important;\n -o-transform: rotateY( 180deg ) !important;\n -webkit-transform: rotateY( 180deg ) !important;\n}\n\n.info-window-btns{\n position:absolute;\n top:-18px;\n right:5px;\n overflow:hidden;\n}\n.info-window-content{\n padding:10px;\n color:#efefef;\n font-size:13px;\n line-height:1.4;\n}\n.info-window-btns button{\n width:40px;height:40px;\n float:right;\n border:0;\n border-radius:50%;\n background-color:#2a7da1;\n margin-right:3px;\n text-align:center;\n cursor:pointer;\n font-size:35px;\n color:#fff;\n line-height:0;\n}\n.info-window-btns button:hover{\n background-color:#60bb23;\n}\n'+o.get("style"),h=t.bounds,p=h.left,y=h.top,d=n?t.rootModel.transcoordC2S(n.x,n.y):t.transcoordS2T(p,y);p=d.x,y=d.y;var v=document.createElement("span");v.style.position="absolute";var g=document.createElement("style");if(g.type="text/css",g.appendChild(document.createTextNode(l)),v.appendChild(g),f[0]){var b=document.createElement("div");b.id="side-1",b.className="flip",b.style.display="inline-block",b.innerHTML=f[0](t)}if(f[1]){var m=document.createElement("div");m.id="side-2",m.className="flip",m.style.display="inline-block",m.innerHTML=f[1](t)}No.forEach((function(t){v.addEventListener(t,(function(t){t.stopPropagation()}))})),Fo.forEach((function(t){v.addEventListener(t,(function(t){t.stopPropagation()}))}));var w=t.root.model_layer.overlay;if(b&&v.appendChild(b),m&&v.appendChild(m),w.appendChild(v),o._addInfoWindow(t,v,g),b){var x=b.querySelector(".info-window-btns > .flipable");x&&x.addEventListener("click",(function(t){t.preventDefault(),m.className=Ca(m.className,"flip-side-1"),b.className=Ca(b.className,"flip-side-2")}),!1);var k=b.querySelector(".info-window-btns > .closable");k&&k.addEventListener("click",(function(r){r.preventDefault(),s.hide(t,e)}),!1)}if(m){var S=m.querySelector(".info-window-btns > .flipable");S&&S.addEventListener("click",(function(t){t.preventDefault(),m.className=Ca(m.className,"flip-side-1"),b.className=Ca(b.className,"flip-side-2")}),!1);var _=m.querySelector(".info-window-btns > .closable");_&&_.addEventListener("click",(function(r){r.preventDefault(),s.hide(t,e)}),!1)}var O=b.offsetWidth,E=b.offsetHeight,A=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight,t.rootModel.target.getBoundingClientRect()),P=[];b&&P.push(b),m&&P.push(m);var j={x:p,y},T=t.transcoordS2C(j.x,j.y);if(T.x+O/2+A.left<A.right&&T.x-O/2>A.left){if(E+Ia<T.y)return v.style.marginLeft=j.x-O/2+"px",v.style.marginTop=j.y-E-Ia+"px",void P.forEach((function(t){return t.className+=" arrow-bottom"}));if(T=t.transcoordS2C(j.x,j.y+E+Ia),A.bottom>T.y+A.top)return v.style.marginLeft=j.x-O/2+"px",v.style.marginTop=j.y+Ia+"px",void P.forEach((function(t){return t.className+=" arrow-top"}))}if((T=t.transcoordS2C(j.x,j.y)).x-(O+Ia)>A.left)return v.style.marginLeft=j.x-O-Ia+"px",v.style.marginTop=j.y-E/2+"px",void P.forEach((function(t){return t.className+=" arrow-right"}));v.style.marginLeft=j.x+Ia+"px",v.style.marginTop=j.y-E/2+"px",P.forEach((function(t){return t.className+=" arrow-left"}))}}}else console.warn("InfoWindow Not Found.",e)}else console.warn("InfoWindow not defined.")}}],(r=[{key:"dispose",value:function(){var t=this;this.infoWindows.map((function(t){return t.component})).forEach((function(e){return t._removeInfoWindow(e)})),ja(Ma(s.prototype),"dispose",this).call(this)}},{key:"infoWindows",get:function(){return this._windows||(this._windows=[]),this._windows}},{key:"_findInfoWindowByComponent",value:function(t){return this.infoWindows.find((function(e){return e.component===t}))}},{key:"_addInfoWindow",value:function(t,e,r){this._findInfoWindowByComponent(t)||this._windows.push({component:t,window:e,styleElement:r})}},{key:"_removeInfoWindow",value:function(t){var e=this._findInfoWindowByComponent(t);if(e){var r=e.window;r&&r.parentNode.removeChild(r);var n=this.infoWindows.lastIndexOf(e);this.infoWindows.splice(n,1)}}},{key:"render",value:function(t){var e=this.bounds,r=e.left,n=e.top,o=e.width,i=e.height;t.beginPath(),this.drawImage(t,s.image,r,n,o,i)}},{key:"hasTextProperty",get:function(){return!1}},{key:"nature",get:function(){return Ra}}])&&Pa(e.prototype,r),n&&Pa(e,n),Object.defineProperty(e,"prototype",{writable:!1}),s}(Ea(xa));function Da(t){return Da="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Da(t)}function Ba(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Na(t,e,r){return(e=function(t){var e=function(t,e){if("object"!==Da(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Da(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===Da(e)?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}da.register("info-window",La);var Fa={};const za={list:function(){return function(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Ba(Object(r),!0).forEach((function(e){Na(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Ba(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}({},Fa)},register:function(t,e){Fa[t]=e},unregister:function(t){delete Fa[t]},get:function(t){if(t){var e=Fa[t];return e||Zn("Layout Not Found - ",t),e}}};var Ua={reflow:function(t,e){this.drawables(t).filter((function(t){return t.isHTMLElement()})).forEach((function(t){return t.reposition()}))},capturables:function(t){return t.components},drawables:function(t){return t.app&&!t.app.isViewMode?t.components:t.components.filter((function(t){return!t.hidden}))},isStuck:function(t){return!1},ABSOLUTE:!0};za.register("html-absolute",Ua);const Ya=Ua;function Ga(t){return Ga="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ga(t)}function Ha(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ga(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ga(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ga(o)?o:String(o)),n)}var o}function Wa(t,e){if(t){if("string"==typeof t)return Xa(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Xa(t,e):void 0}}function Xa(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var qa="center",Va=new WeakMap;function Qa(t){var e=t.root,r=Va.get(e);if(r)if(e!==t){var n=r.findIndex((function(e){return e[0]===t}));if(-1!==n){var o=r[n][1],i=o.div.parentNode;i&&i.removeChild(o.div);var a=o.scene;a.target=null,a.release&&a.release(),r.splice(n,1)}}else{for(var s in r)Qa(s[0]);Va.delete(e)}}var Ka=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,r;return e=t,r=[{key:"hideAll",value:function(t){(Va.get(t)||[]).forEach((function(t){var e,r,n=(r=2,function(t){if(Array.isArray(t))return t}(e=t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,r)||Wa(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),o=n[0];return n[1],Qa(o)}))}},{key:"hide",value:function(t){Qa(t)}},{key:"show",value:function(e,r){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=n.data,i=n.location,a=void 0===i?qa:i,s=n.modal,u=void 0!==s&&s,c=n.closable,f=void 0===c||c,l=n.output,h=void 0===l||l,p=e.app.refProvider;p&&p.get(r,!0).then((function(r){var n,i=document.createElement("div"),s=i.style;if(u){var c=e.rootModel.bounds,l=c.width,p=c.height;s.position="fixed",s.zIndex=1,s.left=0,s.top=0,s.width=l+"px",s.height=p+"px",s.overflow="auto",s.backgroundColor="rgba(0,0,0,0.3)"}else s.position="absolute",s.display="inline-block";i.innerHTML=!u&&f?'\n<div class="popup-content">\n</div>\n<button class="closable-1945">X</button>\n':'\n<div class="popup-content">\n</div>\n';var y=i.querySelector(".popup-content"),d=r.root.model;l=d.width,p=d.height,y.style.width=l+"px",y.style.height=p+"px";var v=document.createElement("style");v.type="text/css",v.appendChild(document.createTextNode("\nbutton.closable-1945 {\n width: 20px;\n height: 20px;\n right: 0px;\n top: 0px;\n padding: 0;\n margin: 0;\n border: 0px;\n text-align: center;\n cursor: pointer;\n font-size: 12px;\n color: black;\n position: absolute;\n background-color: transparent;\n}\n\nbutton.closable-1945:hover {\n background-color:#60bb23;\n}\n")),i.appendChild(v);var g=i.querySelector(".popup-content");No.forEach((function(t){g.addEventListener(t,(function(t){t.stopPropagation()}))})),Fo.forEach((function(t){g.addEventListener(t,(function(t){t.stopPropagation()}))})),i.addEventListener("click",(function(r){r.target===i&&f&&t.hide(e)})),No.forEach((function(t){i.addEventListener(t,(function(t){t.stopPropagation()}))})),Fo.forEach((function(t){i.addEventListener(t,(function(t){t.stopPropagation()}))})),e.root.model_layer.overlay.appendChild(i),function(t,e,r){var n,o=t.root;if(o!==t){Qa(t);var i=Va.get(o)||[];i=[].concat(function(t){if(Array.isArray(t))return Xa(t)}(n=i)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(n)||Wa(n)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[[t,{div:e,scene:r}]]),Va.set(o,i)}}(e,i,r),null===(n=i.querySelector(".closable-1945"))||void 0===n||n.addEventListener("click",(function(r){r.preventDefault(),t.hide(e)}),!1),i.addEventListener("close-scene",(function(r){r.preventDefault(),r.stopPropagation(),t.hide(e),h&&(e.data=r.detail)}),!1),r.target=y,r.data=o||e.data,r.fit("both");var b=function(t,e,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:qa,o=t.bounds,i=e.bounds,a=Math.max(o.width/4-i.width/2,20),s=Math.min(3*o.width/4+i.width/2,o.width-20)-i.width,u=Math.max(o.height/4-i.height/2,20),c=Math.min(3*o.height/4+i.height/2,o.height-20)-i.height;switch(n){case"auto":return{x:r.x<o.width/2?s:a,y:r.y<o.height/2?c:u};case"left-top":return{x:a,y:u};case"right-top":return{x:s,y:u};case"left-bottom":return{x:a,y:c};case"right-bottom":return{x:s,y:c};default:return{x:(o.width-i.width)/2,y:(o.height-i.height)/2}}}(e.rootModel,r.root,e.center,a);u?(y.style.left=b.x+"px",y.style.top=b.y+"px",y.style.width=l+"px",y.style.height=p+"px"):(i.style.left=b.x+"px",i.style.top=b.y+"px",i.style.width=l+"px",i.style.height=p+"px")}),(function(t){console.error("cannot fetch board: "+r,t)}))}}],null&&Ha(e.prototype,null),r&&Ha(e,r),Object.defineProperty(e,"prototype",{writable:!1}),t}(),Ja={reflow:function(t,e){},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!1},ABSOLUTE:!0};za.register("absolute",Ja);const Za=Ja;function $a(t){var e=t.components.filter((function(t){return!t.hidden})),r=t.getState("layoutConfig")||{},n=e[r&&r.activeIndex||0];return n&&[n]||[]}var ts={reflow:function(t){var e=t.bounds,r=t.getState("layoutConfig")||{},n={left:0,top:0,width:e.width,height:e.height};t.forEach((function(t,e){var o=e!=r.activeIndex;t.bounds=n,t.setState("rotation",0),t.element&&(t.element.style.visibility=o?"hidden":"visible")}))},capturables:function(t){return $a(t)},drawables:function(t){return $a(t)},isStuck:function(t){return!0}};za.register("card",ts);const es=ts;function rs(t){var e=t.getState("layoutConfig");return e&&e.weight||1}var ns={reflow:function(t){var e=this.drawables(t),r=t.get("padding")||{},n=e.reduce((function(t,e){return t+rs(e)}),0),o=t.bounds,i=n>0?(o.width-((r.left||0)+(r.right||0)))/n:o.width,a=o.height-((r.top||0)+(r.bottom||0)),s=0;e.forEach((function(t){var e=rs(t),n=t.get("margin")||{};t.bounds={left:i*s+(r.left||0)+(n.left||0),top:0+(r.top||0)+(n.top||0),width:e*i-((n.left||0)+(n.right||0)),height:a-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),s+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!0}};za.register("linear-horizontal",ns);const os=ns;function is(t){var e=t.getState("layoutConfig");return e&&e.weight||1}var as={reflow:function(t){var e=this.drawables(t),r=t.getState("padding")||{},n=e.reduce((function(t,e){return t+is(e)}),0),o=t.bounds,i=n>0?(o.height-((r.top||0)+(r.bottom||0)))/n:o.height,a=o.width-((r.left||0)+(r.right||0)),s=0;e.forEach((function(t){var e=is(t),n=t.getState("margin")||{};t.bounds={left:0+(r.left||0)+(n.left||0),top:i*s+(r.top||0)+(n.top||0),width:a-((n.left||0)+(n.right||0)),height:e*i-((n.top||0)+(n.bottom||0))},t.setState("rotation",0),s+=e}))},capturables:function(t){return t.components},drawables:function(t){return t.app.isViewMode?t.components.filter((function(t){return!t.hidden})):t.components},isStuck:function(t){return!0}};za.register("linear-vertical",as);const ss=as;var us={reflow:function(t){var e=t.getState("layoutConfig"),r=e&&e.columns||t.getState("columns"),n=e&&e.rows||t.getState("rows"),o=e&&e.widths||t.getState("widths"),i=e&&e.heights||t.getState("heights"),a=o?o.filter((function(t,e){return e<r})).reduce((function(t,e){return t+e}),0):r,s=i?i.filter((function(t,e){return e<n})).reduce((function(t,e){return t+e}),0):n,u=t.textBounds,c=t.getState("paddingLeft")||0,f=t.getState("paddingTop")||0,l=u.width/a,h=u.height/s,p=0,y=0;t.components.forEach((function(t,e){for(var n=o?o[e%r]:1,a=i?i[Math.floor(e/r)]:1,s=t.colspan||1,u=0;--s>0;)u+=o?o[(e+s)%r]:1;for(var d=t.rowspan||1,v=0;--d>0;)v+=i?i[Math.floor(e/r)+d]:1;t.bounds={left:c+p,top:f+y,width:l*(n+u),height:h*(a+v)},t.setState("rotation",0),e%r==r-1?(p=0,y+=a*h):p+=n*l}))},capturables:function(t){return t.components.filter((function(t){return!t.merged}))},drawables:function(t){return t.components.filter((function(t){return!t.merged&&!t.hidden}))},isStuck:function(t){return!0},keyNavigate:function(t,e,r){var n=t.getState("layoutConfig"),o=n&&n.columns||t.getState("columns"),i=n&&n.rows||t.getState("rows"),a=t.getRowColumn(e),s=a.row,u=a.column;switch(r.code){case"ArrowUp":if(s>0)return t.getAt((s-1)*o+u);break;case"ArrowDown":if(s<i-1)return t.getAt((s+1)*o+u);break;case"ArrowRight":if(u<o-1)return t.getAt(s*o+u+1);break;case"ArrowLeft":if(u>0)return t.getAt(s*o+u-1);break;default:return e}},joinType:!0};za.register("table",us);const cs=us;function fs(t){return fs="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},fs(t)}function ls(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==fs(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==fs(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===fs(o)?o:String(o)),n)}var o}function hs(){return hs="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=ys(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},hs.apply(this,arguments)}function ps(t,e){return ps=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ps(t,e)}function ys(t){return ys=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ys(t)}var ds=new Image;ds.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAclBMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC0BbqFAAAAJXRSTlMAgAP3VSI6/g9fBk5FavJsMrariSjzPnO1enRRL5SMhmOOWB9keFTE0wAAANxJREFUOMutk9kWgyAMRLFuiLjUtdp9yf//YglVsQXz1HniMPcEMgHGvpX2O0Ypi+EgCL+IAShC+wB7QfubRDT7AFcnUPoLMLiP4PyJbsb55i05AgnR5iaQDsICgtH0cotBWoAP1c7kC6kFxEseCfZfB6gEgbNeBrira2QmH1uVYCXlA3is8UmgUCPIyQJKEmu8QtQJN0e9DPXVpzG2G216c1CqRmcBOdxXk07sWUSPv07zo0amCNQycv+NzmR6cRcwmfbuI7p2nZ/z4be0P83Foz6vIkhfZXr82XgDlZsspIq4peUAAAAASUVORK5CYII=";const vs=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ps(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=ys(n);if(o){var r=ys(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===fs(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"postrender",value:function(t){hs(ys(a.prototype),"postrender",this).call(this,t),this.app.isEditMode&&this._focused&&this.showMoveHandle&&this._draw_move_handle(t)}},{key:"_draw_move_handle",value:function(t){var e=this.bounds,r=e.left,n=e.top,o=e.width;t.save(),t.beginPath(),t.rect(r+o,n,25,25),t.fillStyle="rgba(".concat(235,", ").concat(235,", ").concat(235,", 1)"),t.fill(),t.drawImage(ds,r+o+3.75,n+3.75,17.5,17.5),t.closePath(),t.restore()}},{key:"contains",value:function(t,e){var r=hs(ys(a.prototype),"contains",this).call(this,t,e);if(this.app.isViewMode)return r;if(!r){var n=this.bounds,o=n.left,i=n.top,s=n.width,u=(n.height,o+s);this.showMoveHandle&&(r=t<Math.max(u+25,u)&&t>Math.min(u+25,u)&&e<Math.max(i+25,i)&&e>Math.min(i+25,i))}return this._focustd!==r&&(this._focused=r,this.invalidate()),r}}])&&ls(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return e};function gs(t){return gs="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},gs(t)}function bs(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==gs(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==gs(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===gs(o)?o:String(o)),n)}var o}function ms(){return ms="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=xs(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ms.apply(this,arguments)}function ws(t,e){return ws=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ws(t,e)}function xs(t){return xs=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},xs(t)}var ks=[],Ss=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ws(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=xs(n);if(o){var r=xs(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===gs(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=i.call(this,t,e))._components=[],r}return e=a,r=[{key:"replaceRefids",value:function(t){this.components.forEach((function(e){return e.replaceRefids(t)}))}},{key:"showMoveHandle",get:function(){return!0}},{key:"showOverflow",get:function(){return!1}},{key:"dispose",value:function(){this.components.slice().forEach((function(t){return t.dispose()})),ms(xs(a.prototype),"dispose",this).call(this)}},{key:"isContainer",value:function(){return!0}},{key:"containable",value:function(t){return t.isDescendible(this)}},{key:"hasTextProperty",get:function(){return!1}},{key:"components",get:function(){return this._components}},{key:"focusible",get:function(){return!0}},{key:"layout",get:function(){return za.get(this.get("layout"))||Za}},{key:"reflow",value:function(){this.layout.reflow(this),this.components&&this.components.forEach((function(t){t.isContainer()&&t.reflow()}))}},{key:"hierarchy",get:function(){var t=ms(xs(a.prototype),"hierarchy",this);return this.components&&(t.components=this.components.map((function(t){return t.hierarchy}))),t}},{key:"addComponent",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=t.parent;if(r){if(this===r)return;r.removeComponent(t,e)}var n=this._components.push(t)-1;t.parent=this,t.added(this),e||this.trigger("add",this,t,n),t.delegate_on(this),e||t.trigger("added",this,t,n),this.root&&this.root.isReady&&t.ready()}},{key:"removeComponent",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=this._components.indexOf(t);-1!=r&&(this._components.splice(r,1),t.parent=null,t.removed(this),e||(this.trigger("remove",this,t),t.trigger("removed",this,t)),t.delegate_off(this))}},{key:"insertComponentAt",value:function(t,e){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=t.parent;n&&n.removeComponent(t,r);var o=this._components.splice(0,e);this._components=o.concat(t,this._components),e=this._components.indexOf(t),t.parent=this,t.added(this),r||this.trigger("add",this,t,e),t.delegate_on(this),r||t.trigger("added",this,t,e)}},{key:"add",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t instanceof Array?(t.forEach((function(t){-1==e._components.indexOf(t)&&e.addComponent(t,r)})),this):this.add.call(this,[t],r)}},{key:"remove",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t instanceof Array?this._components?(t.forEach((function(t){e.removeComponent(t,r)})),this):this:this.remove.call(this,[t],r)}},{key:"getAt",value:function(t){if(this._components)return this._components[t]}},{key:"forEach",value:function(t,e){this._components&&this._components.forEach(t,e)}},{key:"traverse",value:function(t,e){t.call(e,this),this._components&&this._components.forEach((function(r){r.isContainer()?r.traverse(t,e):t.call(e,r)}))}},{key:"indexOf",value:function(t){return(this._components||ks).indexOf(t)}},{key:"size",value:function(){return(this._components||ks).length}},{key:"moveChildAt",value:function(t,e){var r=this.indexOf(e);if(-1!=r){var n=this._components.splice(0,r),o=this._components.splice(1);this._components=n.concat(o),t=Math.max(0,t),t=Math.min(t,this._components.length),n=this._components.splice(0,t),this._components=n.concat(e,this._components)}}},{key:"moveChildForward",value:function(t){var e=this.indexOf(t);-1!=e&&e!=this.size()-1&&(this._components[e]=this._components[e+1],this._components[e+1]=t)}},{key:"moveChildBackward",value:function(t){var e=this.indexOf(t);-1!=e&&0!=e&&(this._components[e]=this._components[e-1],this._components[e-1]=t)}},{key:"moveChildToFront",value:function(t){var e=this.indexOf(t);if(-1!=e&&e!=this.size()-1){var r=this._components.splice(0,e),n=this._components.splice(1);this._components=r.concat(n,this._components)}}},{key:"moveChildToBack",value:function(t){var e=this.indexOf(t);if(-1!=e&&0!=e){var r=this._components.splice(0,e),n=this._components.splice(0);this._components=this._components.concat(r,n)}}},{key:"symmetryX",value:function(t){ms(xs(a.prototype),"symmetryX",this).call(this,t),this.components.map((function(t){t.symmetryX(0)}))}},{key:"findAll",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if("string"==typeof t)return Qo(t,this,r[0]||this);if("function"==typeof t){for(var o=[],i=this.components.length-1;i>=0;i--){var a,s=(a=this.components[i]).findAll.apply(a,[t].concat(r));s&&(o=o.concat(s))}return t.apply(void 0,[this].concat(r))&&o.push(this),o}}},{key:"findFirst",value:function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n<e;n++)r[n-1]=arguments[n];if("string"==typeof t)return Qo(t,this,r[0])[0];if("function"==typeof t){for(var o=this.components.length-1;o>=0;o--){var i,a=(i=this.components[o]).findFirst.apply(i,[t].concat(r));if(null!=a)return a}return t.apply(void 0,[this].concat(r))?this:null}}},{key:"findById",value:function(t){return this.root.findById(t)}},{key:"findByRefid",value:function(t){return this.root.findByRefid(t)}},{key:"contains",value:function(t,e){var r=ms(xs(a.prototype),"contains",this).call(this,t,e);if(!r){var n=this.state,o=n.left,i=n.top,s=n.width,u=n.height,c=n.lineWidth,f=void 0===c?0:c,l=this.stuck?0:10+f/2;r=t<Math.max(o+s,o)+l&&t>Math.min(o+s,o)-l&&e<Math.max(i+u,i)+l&&e>Math.min(i+u,i)-l}return r}},{key:"capture",value:function(t,e,r){var n=this.transcoordP2S(t,e);if(!this.contains(n.x,n.y))return!1;var o=this.bounds;n.x-=o.left,n.y-=o.top;for(var i=this.layout.capturables(this),a=i.length-1;a>=0;a--){var s=i[a].capture(n.x,n.y,r);if(s)return s}return this.capturable&&!(null!=r&&r(this))&&this}},{key:"capturePath",value:function(t,e){if(e){if(e.indexOf(this)>-1)return!1;for(var r=0;r<e.length;r++)if(!this.containable(e[r]))return!1}for(var n=[],o=this.bounds,i=o.left,a=o.top,s=o.width,u=o.height,c=0;c<t.length;c++){var f=this.transcoordP2S(t[c].x,t[c].y);if(f.x<i||f.x>i+s||f.y<a||f.y>a+u)return!1;f.x-=i,f.y-=a,n.push(f)}for(var l=this.layout.capturables(this),h=l.length-1;h>=0;h--){var p=l[h];if(p.isContainer()){var y=p.capturePath(n,e);if(y)return y}}return this.focusible&&this}},{key:"render",value:function(t){var e=this.bounds,r=e.left,n=void 0===r?0:r,o=e.top,i=void 0===o?0:o,a=e.width,s=e.height;t.beginPath(),t.rect(n,i,a,s),t.closePath(),this.drawFill(t),this.drawStroke(t)}},{key:"postrender",value:function(t){ms(xs(a.prototype),"postrender",this).call(this,t);var e=this.bounds,r=e.left,n=void 0===r?0:r,o=e.top,i=void 0===o?0:o,s=e.width,u=e.height;this.showOverflow||(t.beginPath(),t.rect(n,i,s,u),t.clip(),t.closePath());var c=this.state;i=c.top,n=c.left,c.scale,t.translate(n,i),this.layout.drawables(this).forEach((function(e){e.draw(t)})),t.translate(-n,-i),this.drawText(t)}},{key:"trim",value:function(){this.components.forEach((function(t){t.trim()})),ms(xs(a.prototype),"trim",this).call(this)}}],r&&bs(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(vs(Ea(da)));function _s(t){return _s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_s(t)}function Os(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==_s(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==_s(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===_s(o)?o:String(o)),n)}var o}function Es(){return Es="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Ps(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Es.apply(this,arguments)}function As(t,e){return As=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},As(t,e)}function Ps(t){return Ps=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ps(t)}["layout"].forEach((function(t){return da.memoize(Ss.prototype,t,!1)}));var js=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&As(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ps(n);if(o){var r=Ps(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===_s(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),r=i.call(this,t,e),t.translate=t.translate||{x:0,y:0},r._draw_reserved=!1,r.__draw__=function(){r._draw_reserved=!1,r.trigger("redraw"),r.reflow(),r.draw()},r.throttle_render=function(){r._draw_reserved||requestAnimationFrame(r.__draw__),r._draw_reserved=!0},r}return e=a,(r=[{key:"fitSize",value:function(t,e,r,n){if(this.target){if(e){var o=getComputedStyle(this.target);r=r||(o?parseFloat(o.getPropertyValue("width")):this.target.clientWidth),n=n||(o?parseFloat(o.getPropertyValue("height")):this.target.clientHeight)}else r=this.model.width,n=this.model.height;"CANVAS"==t.tagName&&(t.setAttribute("width",r*Bo),t.setAttribute("height",n*Bo)),t.style.width=r+"px",t.style.height=n+"px"}}},{key:"resize",value:function(){this.fitSize(this.element,!0)}},{key:"isLayer",value:function(){return!0}},{key:"showOverflow",get:function(){return this.app.isEditMode}},{key:"anchors",get:function(){}},{key:"createElement",value:function(){var t=da.createCanvas(1,1);return t.style.position="absolute",t}},{key:"target",get:function(){return this._target},set:function(t){this._target&&this.element&&this._target.removeChild(this.element),this._target=t,t&&(this.element||(this.element=this.createElement()),this.resize(),t.appendChild(this.element))}},{key:"canvas",get:function(){return this.element}},{key:"dispose",value:function(){Es(Ps(a.prototype),"dispose",this).call(this),this.target=null,this.element=null}},{key:"selected",get:function(){return this.root.selected},set:function(t){this.root.selected=t}},{key:"focused",get:function(){return this.root.focused},set:function(t){this.root.focused=t}},{key:"getContext",value:function(){return this._context2D||(this._context2D=this.canvas&&this.canvas.getContext("2d")),this._context2D}},{key:"draw",value:function(t){this.canvas&&(t=t||this.getContext())&&Es(Ps(a.prototype),"draw",this).call(this,t)}},{key:"prerender",value:function(t){var e=this.model,r=e.translate,n=e.scale,o=void 0===n?{x:1,y:1}:n,i=e.rotation;t.clearRect(0,0,t.canvas.width,t.canvas.height),r&&t.translate(r.x*Bo,r.y*Bo),t.scale(o.x*Bo,o.y*Bo),i&&t.rotate(i)}},{key:"rotatePoint",get:function(){return{x:0,y:0}}},{key:"contains",value:function(t,e){return!1}},{key:"invalidate",value:function(){this.throttle_render()}},{key:"move",value:function(t){var e=this.get("translate")||{x:0,y:0};this.set({translate:{x:e.x+t.x,y:e.y+t.y}})}},{key:"centerTo",value:function(t,e){var r=t.rootModel.transcoordC2S(this.canvas.clientWidth/2,this.canvas.clientHeight/2),n=t.center,o=n.x,i=n.y,a=t.transcoordP2S(o,i),s=a.x,u=a.y,c=t.transcoordS2T(s,u),f=c.x,l=c.y,h=t.rootModel.get("translate"),p=h.x,y=h.y,d=t.rootModel.get("scale"),v=d.x,g=d.y;e?nn({step:function(e){t.rootModel.set({translate:{x:p+(r.x-f)*v*e,y:y+(r.y-l)*g*e}})},duration:1e3,delta:"circ",ease:"in"}).start():t.rootModel.set({translate:{x:p+(r.x-f)*v,y:y+(r.y-l)*g}})}}])&&Os(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Ss);function Ts(t){return Ts="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ts(t)}function Ms(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ts(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ts(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ts(o)?o:String(o)),n)}var o}function Rs(){return Rs="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Cs(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Rs.apply(this,arguments)}function Is(t,e){return Is=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Is(t,e)}function Cs(t){return Cs=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Cs(t)}var Ls={x:1,y:1},Ds={x:0,y:0},Bs=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Is(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Cs(n);if(o){var r=Cs(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Ts(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.call(this,t,e)}return e=a,r=[{key:"dispose",value:function(){Rs(Cs(a.prototype),"dispose",this).call(this),delete this._canvas,delete this._overlay}},{key:"contains",value:function(t,e){return!0}},{key:"isRootModel",value:function(){return!0}},{key:"stuck",get:function(){return!0}},{key:"layout",get:function(){return Ya}},{key:"overlay",get:function(){if(!this._overlay){var t=document.createElement("div");t.style.position="absolute",t.style.width=0,t.style.height=0,t.style.overflow="initial",t.style["user-select"]="none",t.style["transform-origin"]="top left",this.element&&this.element.appendChild(t),this._overlay=t,this._repositionOverlay()}return this._overlay}},{key:"createElement",value:function(){var t=document.createElement("div");return t.style.position="absolute",t.style["user-select"]="none",t.style.overflow="hidden",this._canvas=da.createCanvas(1,1),this._canvas.style.position="absolute",t.appendChild(this._canvas),this._overlay&&t.appendChild(this._overlay),t}},{key:"resize",value:function(){if(this.target){var t=this.model,e=t.width,r=t.height,n=t.fitMode;this.root.fitMode?n=this.root.fitMode:n||(n="ratio");try{var o=getComputedStyle(this.target)}catch(t){return void console.error(t,this.target)}var i=o?parseFloat(o.getPropertyValue("width")):this.target.clientWidth,a=o?parseFloat(o.getPropertyValue("height")):this.target.clientHeight;switch(n){case"both":case"ratio":break;case"width":a=r*i/e;break;case"height":i=e*a/r;break;default:i=Math.max(e,i),a=Math.max(r,a)}switch(this.fitSize(this.canvas,!0,i,a),n){case"ratio":case"both":break;case"width":this.element.style.overflowX="hidden",this.element.style.overflowY="auto";break;case"height":this.element.style.overflowX="auto",this.element.style.overflowY="hidden";break;default:this.element.style.overflowX=i>e?"hidden":"auto",this.element.style.overflowY=a>r?"hidden":"auto"}this.fitSize(this.element,!0)}}},{key:"canvas",get:function(){return this._canvas}},{key:"MPP",get:function(){var t=this.model,e=t.scale,r=void 0===e?{x:1,y:1}:e;switch(t.unit){case"mm":case"cm":return 1/this.app.PPM/r.x;case"in":return 1/this.app.PPI/r.x;default:return 1/r.x}}},{key:"capturePath",value:function(t,e){for(var r=this.layout.capturables(this),n=r.length-1;n>=0;n--){var o=r[n];if(o.isContainer()){var i=o.capturePath(t,e);if(i)return i}}return!1}},{key:"eventMap",get:function(){return{"(self)":{"(all)":{change:this._onchanged_all,mouseenter:this._onmouseenter_all,mouseleave:this._onmouseleave_all,click:this._onclick,mousedown:this._onmousedownup,mouseup:this._onmousedownup,touchstart:this._onmousedownup,touchend:this._onmousedownup}}}}},{key:"closeScene",value:function(t){var e=this;requestAnimationFrame((function(){return e.overlay.dispatchEvent(new CustomEvent("close-scene",{bubbles:!0,composed:!0,detail:t}))}))}},{key:"_repositionOverlay",value:function(){var t=this._overlay;if(t){var e=this.model,r=e.translate,n=void 0===r?Ds:r,o=e.scale,i=void 0===o?Ls:o,a=e.rotation,s=void 0===a?0:a,u=this.bounds,c=u.left,f=u.top;u.width,u.height,t.style.left=c+"px",t.style.top=f+"px";var l="rotate(".concat(s,"rad) scale(").concat(i.x,", ").concat(i.y,") perspective(1px)");t.style["margin-left"]=n.x+"px",t.style["margin-top"]=n.y+"px",["-webkit-","-moz-","-ms-","-o-",""].forEach((function(e){t.style[e+"transform"]=l}))}}},{key:"onchange",value:function(t){var e=this._model;delete e.id,delete e.text,delete e.class,this._repositionOverlay()}},{key:"_onchanged_all",value:function(t,e,r){this.invalidate()}},{key:"_onmouseenter_all",value:function(t,e){if(t.stopPropagation(),this.app&&!this.app.isEditMode&&e){var r=e.origin;if(!(r instanceof a)&&r.model.event&&r.model.event.hover&&!r.hidden){var n=r.model.event.hover;n&&this._doEventAction(n,r,!0,t)}}}},{key:"_onmouseleave_all",value:function(t,e){if(t.stopPropagation(),e){var r=e.origin;if(this.app&&!this.app.isEditMode){var n=r.model.event&&r.model.event.hover;n&&this._doEventAction(n,r,!1,t)}}}},{key:"_onclick",value:function(t,e){var r;if(t.stopPropagation(),!this.app.isEditMode&&e){var n=e.origin,o=null===(r=n.model.event)||void 0===r?void 0:r.tap;o&&this._doEventAction(o,n,!0,t)}}},{key:"_onmousedownup",value:function(t,e){var r;if(t.stopPropagation(),!this.app.isEditMode&&e){var n=e.origin,o=null===(r=n.model.event)||void 0===r?void 0:r.tap;o&&o.pressed&&this._doMouseDownUpEventAction(o,n,"mousedown"==t.type||"touchstart"==t.type,t)}}},{key:"_doMouseDownUpEventAction",value:function(t,e,r,n){var o=t.pressed;void 0!==o&&o&&(r?function(t){if(!t.hasOwnProperty("_backupShadow")){var e=t.get("shadow");t._backupShadow=e;var r=e||{},n=r.left,o=void 0===n?0:n,i=r.top,a=void 0===i?0:i;t.delta("tx",o),t.delta("ty",a),t.set("shadow",{})}}(e):function(t){t.hasOwnProperty("_backupShadow")&&(t.delta("tx",0),t.delta("ty",0),t.set("shadow",t._backupShadow),delete t._backupShadow)}(e))}},{key:"_doEventAction",value:function(t,e,r,n){var o,i=t.action,a=t.target,s=t.value,u=t.emphasize,c=void 0!==u&&u,f=t.restore,l=void 0!==f&&f,h=(t.pressed,t.options);if(a&&(a=e.access(a)),s&&(s=e.access(s)),c&&(r?function(t){t.hasOwnProperty("_backupStrokeStyle")||(t._backupStrokeStyle=t.model.strokeStyle,t.set("strokeStyle","#f26522"),t.hasOwnProperty("_backupLineWidth")||(t._backupLineWidth=t.model.lineWidth,t.set("lineWidth",t.model.lineWidth+5)))}(e):l&&function(t){t.hasOwnProperty("_backupStrokeStyle")&&(t.set("strokeStyle",t._backupStrokeStyle),delete t._backupStrokeStyle,t.hasOwnProperty("_backupLineWidth")&&(t.set("lineWidth",t._backupLineWidth),delete t._backupLineWidth))}(e)),i)switch(i){case"data-toggle":if(!a)return;(r||l)&&this.root.findAll(a,e).forEach((function(t){t.data=!t.data}));break;case"data-tristate":if(!a)return;(r||l)&&this.root.findAll(a,e).forEach((function(t){var e=Math.round(Math.max(Number(t.data)||0,0));t.data=(e+(r?1:2))%3}));break;case"data-set":if(!a)return;if(r){var p=s;this.root.findAll(a,e).forEach((function(t){t.data=p}))}break;case"value-set":if(!a)return;r&&(p=s,this.root.findAll(a,e).forEach((function(t){t.value=p})));break;case"infoWindow":case"info-window":if(!a)return;"click"==n.type||r?La.show(e,a,l,{x:n.offsetX,y:n.offsetY}):l&&La.hide(e,a);break;case"toggle-info-window":if(!a)return;La.toggle(e,a,!1,{x:n.offsetX,y:n.offsetY});break;case"popup":case"modal-popup":if(!a)return;var y=h&&"input"in h?h.input:"(self)",d=!h||!("output"in h)||h.output;Ka.show(e,a,{data:y&&(null===(o=this.root.findFirst(y,e))||void 0===o?void 0:o.data),output:d,modal:"modal-popup"===i});break;case"close-scene":this.closeScene(e.data);break;case"goto":this.trigger(i,a,h,e);break;default:this.trigger(i,a,s,e)}}}],r&&Ms(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Ns(t,e){var r=t.state.refid;return t.root.findAll((function(t){return t.isLine()&&t.from.component===r&&(!e||t.from.anchor===e)}))}function Fs(t,e){var r=t.state.refid;return t.root.findAll((function(t){return t.isLine()&&t.to.component===r&&(!e||t.to.anchor===e)}))}function zs(t){return zs="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},zs(t)}function Us(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Ys(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==zs(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==zs(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===zs(o)?o:String(o)),n)}var o}function Gs(){return Gs="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Ws(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Gs.apply(this,arguments)}function Hs(t,e){return Hs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Hs(t,e)}function Ws(t){return Ws=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ws(t)}Bs.Popup=Ka,da.register("model-layer",Bs);const Xs=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Hs(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ws(n);if(o){var r=Ws(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===zs(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"isConnectable",value:function(){return!0}},{key:"postrender",value:function(t){Gs(Ws(a.prototype),"postrender",this).call(this,t),this._draw_anchors(t)}},{key:"_draw_anchors",value:function(t){var e=this,r=this.anchors||[];t.save(),r.forEach((function(r){var n=r.position,o=(n.x,n.y,r.draw);if(o){t.beginPath();try{o.call(r,t,e)}catch(t){console.error(t)}t.closePath()}})),t.restore()}},{key:"contains",value:function(t,e){if(f=Gs(Ws(a.prototype),"contains",this).call(this,t,e))return f;var r,n=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return Us(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Us(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){s=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(s)throw i}}}}(this.anchors||[]);try{for(n.s();!(r=n.n()).done;){var o=r.value.bounds;if(o){var i=o.left,s=o.top,u=o.width,c=o.height,f=t<Math.max(i+u,i)&&t>Math.min(i+u,i)&&e<Math.max(s+c,s)&&e>Math.min(s+c,s);if(f)return f}}}catch(t){n.e(t)}finally{n.f()}return!1}},{key:"findInOutLines",value:function(t){return function(t,e){var r=t.state.refid;return t.root.findAll((function(t){return!(!t.isLine()||(t.from.component!==r||e&&t.from.anchor!==e)&&(t.to.component!==r||e&&t.to.anchor!==e))}))}(this,t)}},{key:"findOutletLines",value:function(t){return Ns(this,t)}},{key:"findOutletEnds",value:function(t){return function(t,e){return Ns(t,e).map((function(t){var e;return null===(e=t.toEnd)||void 0===e?void 0:e.component})).filter(Boolean)}(this,t)}},{key:"findInletLines",value:function(t){return Fs(this,t)}},{key:"findInletEnds",value:function(t){return function(t,e){return Fs(t,e).map((function(t){var e;return null===(e=t.fromEnd)||void 0===e?void 0:e.component})).filter(Boolean)}(this,t)}}],r&&Ys(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return e};function qs(t){return qs="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},qs(t)}function Vs(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==qs(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==qs(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===qs(o)?o:String(o)),n)}var o}function Qs(t,e){return Qs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Qs(t,e)}function Ks(t){return Ks=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ks(t)}var Js={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0}}],help:"scene/component/rect"},Zs={ondragmove:function(t,e,r){var n=r.model,o=n.left,i=(n.top,n.width),a=n.height,s=(r.transcoordP2S(t.x,t.y).x-o)/(i/2)*100;s=$s(s,i,a),r.set({round:s})}};function $s(t,e,r){var n=e>r?r/e*100:100;return t>=n?t=n:t<=0&&(t=0),t}var tu=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Qs(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ks(n);if(o){var r=Ks(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===qs(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"is3dish",value:function(){return!0}},{key:"controls",get:function(){var t=this.state,e=t.left,r=t.top,n=t.width,o=t.round,i=t.height;return[{x:e+n/2*((o=null==o?0:$s(o,n,i))/100),y:r,handler:Zs}]}},{key:"nature",get:function(){return Js}}])&&Vs(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Xs(Ea(xa)));function eu(t){return eu="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},eu(t)}function ru(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==eu(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==eu(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===eu(o)?o:String(o)),n)}var o}function nu(t,e){return nu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},nu(t,e)}function ou(t){return ou=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ou(t)}da.register("rect",tu);var iu=[1,2,10,20,50,50,50,50,50,50],au=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&nu(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=ou(n);if(o){var r=ou(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===eu(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"render",value:function(t){var e=this.state,r=e.lineWidth,n=void 0===r?1:r,o=e.fillStyle,i=void 0===o?"lightgray":o,a=e.font,s=void 0===a?"15px Arial":a,u=e.left,c=e.top,f=(e.rotation,e.origin),l=(e.margin,e.width),h=e.height,p=e.side,y=void 0===p?"bottom":p,d=e.strokeStyle,v=void 0===d?"#000000":d,g=e.scale,b=void 0===g?1:g;t.translate(u,c),t.beginPath();var m=Math.round(n/2);t.rect(-m,-m,l+2*m,h+2*m),t.clip(),t.beginPath(),t.rect(0,0,l,h),i&&(t.fillStyle=i,t.fill()),t.lineWidth=n,t.strokeStyle=v,t.stroke(),t.beginPath(),t.font=s;var w="bottom"!==y,x=w?0:h,k=4*h/5,S=2*h/3,_=1*h/2,O=3*h/5;w&&(k=h-k,S=h-S,_=h-_,O=h-1.5*h/5);var E=b*this.app.PPM/this.root.unitScale,A=Math.ceil(f/E),P=this.app.PPM/E,j=P<=1.1?1:iu[Math.round(P)]||100;1!=j&&(A+=(j-A%j)%j);var T=Math.ceil(A*E),M=f+l;for(t.fillStyle=v;T<M;){if(A%10==0){t.moveTo(T-f,_),t.lineTo(T-f,x);var R=(A/10).toString(),I=t.measureText(R);t.fillText(R,T-f-I.width-6,O)}else A%5==0?(t.moveTo(T-f,S),t.lineTo(T-f,x)):(t.moveTo(T-f,k),t.lineTo(T-f,x));A+=j,T=Math.ceil(A*E)}}}],r&&ru(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Ea(xa));function su(t){return su="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},su(t)}function uu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==su(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==su(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===su(o)?o:String(o)),n)}var o}function cu(){return cu="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=lu(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},cu.apply(this,arguments)}function fu(t,e){return fu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},fu(t,e)}function lu(t){return lu=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},lu(t)}da.register("ruler",au);var hu=20,pu=20,yu=90*Math.PI/180,du="9px Verdana",vu="#f4f4f4",gu="#999";function bu(t,e,r){return{left:-t.x,top:-t.y,width:hu,height:20}}function mu(t,e,r,n){return{left:hu-t.x,top:0-t.y,origin:20-t.x,width:e-hu,height:20}}function wu(t,e,r,n){var o={x:0-t.x+10,y:-t.y+pu+(r-pu)/2},i=da.transcoordRR(0-t.x,-t.y+pu,o,yu);return{left:i.x-(r-pu),top:i.y,origin:20-t.y,width:r-pu,height:20}}function xu(t){var e=t.get("translate");return{left:-e.x,top:-e.y,width:t.canvas.width/Bo,height:t.canvas.height/Bo}}var ku=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&fu(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=lu(n);if(o){var r=lu(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===su(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=i.call(this,t,e)).appScale={x:1,y:1},"disabled"!==t.ruler&&(r.hruler=new au({left:hu,top:0,origin:20,margin:0,height:20,unit:"m",rotation:0,font:du,fillStyle:vu,strokeStyle:gu,capturable:!1}),r.vruler=new au({left:0,top:0,origin:20,margin:0,height:20,unit:"m",rotation:yu,font:du,side:"top",fillStyle:vu,strokeStyle:gu,capturable:!1}),r.origin_rect=new tu({left:-20,top:-20,width:20,height:20,fillStyle:vu,strokeStyle:gu,lineWidth:1}),r.addComponent(r.hruler),r.addComponent(r.vruler),r.addComponent(r.origin_rect)),r.invalidate(),r}return e=a,(r=[{key:"capturable",get:function(){return!1}},{key:"ready",value:function(){if(cu(lu(a.prototype),"ready",this).call(this),this.hruler){var t=this.rootModel,e=Object.assign({},t.get("translate"));e.x<hu&&(e.x+=hu),e.y<pu&&(e.y+=pu);var r=t.get("scale")||{x:1,y:1};this.appScale=r,this.hruler.set("scale",r.x),this.vruler.set("scale",r.y),t.set("translate",e),this.set("translate",e),this.screen_coord=xu(this);var n=this.screen_coord,o=n.width,i=n.height;this.hruler.set(mu(e,o,0,this.hruler)),this.vruler.set(wu(e,0,i,this.vruler)),this.origin_rect.set(bu(e))}else this.screen_coord=xu(this)}},{key:"resize",value:function(){cu(lu(a.prototype),"resize",this).call(this),this.screen_coord=xu(this);var t=this.screen_coord,e=t.width,r=t.height;this.hruler&&(this.hruler.set(mu(this.model.translate,e,0,this.hruler)),this.vruler.set(wu(this.model.translate,0,r,this.vruler)),this.origin_rect.set(bu(this.model.translate)))}},{key:"render",value:function(t){if(this.guide){t.save();var e=this.guide,r=e.x,n=e.y,o=this.screen_coord,i=o.top,a=o.left,s=o.width,u=o.height;t.beginPath(),t.moveTo(r,i),t.lineTo(r,i+u),t.moveTo(a,n),t.lineTo(a+s,n),t.lineWidth=1,t.strokeStyle="tomato",t.setLineDash([2,3]),t.font="10px tahoma",t.fillStyle="#333";var c=this.transcoordS2C(r,n,this.rootModel);t.textBaseline=c.y>200?"bottom":"top",t.textAlign=c.x>200?"right":"left";var f=c.y>200?-5:5,l=c.x>200?-5:5,h=Math.round(r/this.appScale.x),p=Math.round(n/this.appScale.y);t.fillText(" ".concat(h,", ").concat(p," "),r+l,n+f),t.stroke(),t.restore()}}},{key:"guide",get:function(){return this._guide},set:function(t){this._guide=t,this.invalidate()}},{key:"contains",value:function(t,e){return!0}},{key:"eventMap",get:function(){return{"(root)":{"(descendant)":{mousemove:this.onmousemove_child,mouseout:this.onmouseout_child,dragmove:this.onmousemove_child},"model-layer":{change:this.onchange_root_model}},"(self)":{"(descendant)":{mousedown:this.onmousedown_origin}}}}},{key:"onmousedown_origin",value:function(t,e){this.rootModel.set("translate",{x:20,y:20})}},{key:"onchange_root_model",value:function(t,e,r){if(t.scale&&(this.appScale=t.scale,this.hruler&&(this.hruler.set("scale",t.scale.x),this.vruler.set("scale",t.scale.y))),t.translate&&this.set({translate:{x:t.translate.x,y:t.translate.y}}),t.scale||t.translate){if(this.screen_coord=xu(this),this.hruler){var n=this.model.translate,o=this.screen_coord,i=o.width,a=o.height;this.hruler.set(mu(n,i,0,this.hruler)),this.vruler.set(wu(n,0,a,this.vruler)),this.origin_rect.set(bu(n))}this._guide=null}this.invalidate()}},{key:"onmouseout_child",value:function(t){this._guide=null,this.invalidate()}},{key:"onmousemove_child",value:function(t,e){t.target&&"CANVAS"!==t.target.tagName?this.guide=null:this.guide=this.transcoordC2S(t.offsetX,t.offsetY)}}])&&uu(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Su(t){return Su="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Su(t)}function _u(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Su(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Su(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Su(o)?o:String(o)),n)}var o}function Ou(){return Ou="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Au(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Ou.apply(this,arguments)}function Eu(t,e){return Eu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Eu(t,e)}function Au(t){return Au=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Au(t)}da.register("guide-layer",ku);var Pu=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Eu(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Au(n);if(o){var r=Au(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Su(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"ready",value:function(){Ou(Au(a.prototype),"ready",this).call(this);var t=this.rootModel.get("translate");this.set("translate",t)}},{key:"render",value:function(t){}},{key:"contains",value:function(t,e){return!(this.app.mode!=Io)}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{keydown:this.onkeydown,keyup:this.onkeyup}}}}},{key:"onkeydown",value:function(t){"Space"===t.code&&void 0===this.before_mode&&(this.before_mode=this.app.mode,this.app.mode=Io)}},{key:"onkeyup",value:function(t){"Space"===t.code&&(void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode)}},{key:"ondragstart",value:function(t){this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}},{key:"ondragmove",value:function(t){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.rootModel.move({x:r-this.last_position.x,y:n-this.last_position.y},!1),this.last_position=this.transcoordC2S(t.offsetX,t.offsetY)}}])&&_u(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function ju(t){return ju="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ju(t)}function Tu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==ju(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==ju(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===ju(o)?o:String(o)),n)}var o}da.register("shift-layer",Pu);var Mu=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.params=Object.assign({},e)}var e,r;return e=t,(r=[{key:"excute",value:function(){}}])&&Tu(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Ru(t){return Ru="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ru(t)}function Iu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ru(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ru(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ru(o)?o:String(o)),n)}var o}function Cu(t,e){return Cu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Cu(t,e)}function Lu(t){return Lu=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Lu(t)}var Du=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Cu(t,e)}(s,t);var e,r,n,o,i,a=(o=s,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Lu(o);if(i){var r=Lu(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Ru(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),a.apply(this,arguments)}return e=s,n=[{key:"before",value:function(t){return t.map((function(t){return{component:t}}))}},{key:"after",value:function(t,e){e.execute(null,!1)}},{key:"around",value:function(t,e,r){e.call(r),t.execute(null,!1)}}],(r=[{key:"execute",value:function(){this.params.changes.forEach((function(t){return t.component.set(t.after)}))}}])&&Iu(e.prototype,r),n&&Iu(e,n),Object.defineProperty(e,"prototype",{writable:!1}),s}(Mu),Bu="left",Nu="right",Fu="center",zu="bottom",Uu="middle",Yu=[Bu,Nu,Fu,"top",Uu,zu];function Gu(t){if(-1!=Yu.indexOf(t)){var e=this.selected.filter((function(t){return!t.stuck}));if(!(e.length<=1)){var r=this.app.commander;Du.around(r,(function(){!function(t,e){for(var r=JSON.parse(JSON.stringify(e[0].bounds)),n=r.left+r.width,o=r.top+r.height,i=0;i<e.length;i++){var a=e[i].bounds;r.left=a.left>r.left?r.left:a.left,r.top=a.top>r.top?r.top:a.top,n=a.left+a.width>n?a.left+a.width:n,o=a.top+a.height>o?a.top+a.height:o}switch(r.width=n-r.left,r.height=o-r.top,t){case Bu:for(var s=0;s<e.length;s++){var u=e[s].bounds;e[s].bounds={left:r.left,top:u.top,width:u.width,height:u.height}}break;case Fu:for(var c=0;c<e.length;c++){var f=e[c].bounds;e[c].bounds={left:r.left+r.width/2-f.width/2,top:f.top,width:f.width,height:f.height}}break;case Nu:for(var l=0;l<e.length;l++){var h=e[l].bounds;e[l].bounds={left:n-h.width,top:h.top,width:h.width,height:h.height}}break;case"top":for(var p=0;p<e.length;p++){var y=e[p].bounds;e[p].bounds={left:y.left,top:r.top,width:y.width,height:y.height}}break;case Uu:for(var d=0;d<e.length;d++){var v=e[d].bounds;e[d].bounds={left:v.left,top:r.top+r.height/2-v.height/2,width:v.width,height:v.height}}break;case zu:for(var g=0;g<e.length;g++){var b=e[g].bounds;e[g].bounds={left:b.left,top:o-b.height,width:b.width,height:b.height}}}}(t,e)}))}}}var Hu="VERTICAL",Wu=[Hu,"HORIZONTAL"];function Xu(t){if(-1!=Wu.indexOf(t)){var e=this.selected;if(!(e.length<=1)){var r=this.app.commander;Du.around(r,(function(){!function(t,e){var r=e.filter((function(t){return!t.stuck})).slice(0);r.sort((function(e,r){var n=e.center,o=r.center;return t===Hu?n.y-o.y:n.x-o.x}));for(var n=r.reduce((function(e,r){return e+(t===Hu?r.bounds.height:r.bounds.width)}),0),o=r[0].bounds,i=r[r.length-1].bounds,a=((t===Hu?i.top+i.height-o.top:i.left+i.width-o.left)-n)/(r.length-1),s=t===Hu?o.top+o.height:o.left+o.width,u=1;u<r.length-1;u++){var c=r[u],f=c.bounds;s+=a,t===Hu?(f.top=s,s+=f.height):(f.left=s,s+=f.width),c.bounds=f}}(t,e)}))}}}function qu(t){return qu="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},qu(t)}function Vu(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==qu(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==qu(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===qu(o)?o:String(o)),n)}var o}function Qu(t,e){return Qu=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Qu(t,e)}function Ku(t){return Ku=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ku(t)}function Ju(t){for(var e=0;t&&!t.isRootModel();)e+=t.get("rotation")||0,t=t.parent;return e%(2*Math.PI)}var Zu=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Qu(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ku(n);if(o){var r=Ku(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===qu(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"execute",value:function(){this.params.changes.forEach((function(t){var e=t.component,r=t.to_container,n=t.to_index,o=t.to_left,i=t.to_top,a=(t.hint,function(t){if(t.isRootModel())return t.bounds;var e=t.bounds,r=t.rotatePoint,n=r;return{left:(n=t.transcoordS2T(n.x,n.y)).x-(r.x-e.left),top:n.y-(r.y-e.top),width:e.width,height:e.height}}(e)),s=Ju(e);if(e.removeSelf(!r),e.bounds=a,e.set("rotation",s),r){e.set("rotation",function(t,e){return((t.get("rotation")||0)-Ju(e))%(2*Math.PI)}(e,r));var u=function(t,e){if(e.isRootModel())return t.bounds;var r=t.bounds,n=t.rotatePoint,o=e.transcoordT2S(n.x,n.y),i=e.bounds;return{left:o.x-(n.x-r.left)-i.left,top:o.y-(n.y-r.top)-i.top,width:r.width,height:r.height}}(e,r);t.to_left=void 0!==o?o:u.left,t.to_top=void 0!==i?i:u.top,e.bounds={left:t.to_left,top:t.to_top,width:u.width,height:u.height},void 0===n?r.addComponent(e):r.insertComponentAt(e,n)}}))}}])&&Vu(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Mu);function $u(t,e,r){this.app.commander.execute(new Zu({changes:[{component:t,to_container:e,to_index:r}]}))}function tc(t){var e=this.selected.filter((function(t){return!t.stuck}));if(!(0==e.length||e[0].isRootModel()||e.length>1&&("forward"==t||"backward"==t))){var r,n=e[0].parent;if("forward"==t){var o=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:o,to_index:o+1}]}else if("backward"==t){var i=n.indexOf(e[0]);r=[{component:e[0],from_container:n,to_container:n,from_index:i,to_index:i-1}]}else r=e.filter((function(t){return t.parent===n})).sort((function(e,r){var o=n.indexOf(e)<n.indexOf(r);return"front"==t?o:!o})).map((function(e,r){return n.indexOf(e),{component:e,to_container:n,to_index:"front"==t?n.components.length-r-1:r}}));var a=new Zu({changes:r});this.app.commander.execute(a)}}function ec(t,e,r,n){var o=da.register(t.type);if(!o)return $n("Class not found",t.type),null;r&&(t.refid=r(t.refid)),t.id&&n&&n(t.id)&&delete t.id;var i=new o(t,e);return t.components&&i.isContainer()&&(t.components.forEach((function(t){var o=ec(t,e,r,n);o&&i.addComponent(o)})),delete t.components),i.created(),i}function rc(t,e){var r=Eo(t.hierarchy);return delete r.id,ec(r,t.app,e)}function nc(t,e,r){var n=this;t instanceof Array||(t=[t]),r||(r=this.model_layer);var o=[],i=new Map;this.selected=t.map((function(t){try{return ec(t,r.app,(function(t){var e=n.getNewRefid();return void 0!==t&&i.set(t,e),e}),(function(t){return(n.indexMap[t]||[])[0]}))}catch(t){return console.warn(t),!1}})).filter(Boolean).map((function(t){var n=e.left,a=e.top,s=e.width,u=e.height,c=e.x,f=e.y,l=e.cx,h=e.cy;return t.replaceRefids(i),isNaN(n)||isNaN(a)||isNaN(s)||isNaN(u)||(t.bounds={left:n,top:a,width:s,height:u}),isNaN(c)||isNaN(f)||t.move({x:c,y:f},!1),isNaN(l)||isNaN(h)||(t.center={x:l,y:h}),o.push({component:t,to_container:r}),t})),this.app.commander.execute(new Zu({changes:o}))}function oc(t){t instanceof Array||(t=[t]),this.trigger("addstart",t)}function ic(){var t=this,e=[],r=new Map;if(this.selected=this.selected.filter((function(t){return!t.isRootModel()})).map((function(n){var o=rc(n,(function(e){var n=t.getNewRefid();return void 0!==e&&r.set(e,n),n}));return o.move({x:20,y:20},!1),e.push({component:o,to_container:n.parent}),o})).map((function(t){return t.replaceRefids(r),t})),0!=e.length){var n=new Zu({changes:e});this.app.commander.execute(n)}}function ac(){var t=this.selected;this.selected=[];for(var e=null,r=t.filter((function(t){return!t.isRootModel()&&(t.parent.focusible||t.parent.isGroup())})).map((function(t){return e||(e=t.parent),{component:t,to_container:null}})),n=function(){var t=[];if(e.components.filter((function(t){return!r.find((function(e){return e.component===t}))})).forEach((function(e){return t.push(e)})),t.length>1)return 1;var n=e.parent;t.forEach((function(t){return r.push({component:t,to_container:n})})),r.push({component:e,to_container:null}),e=n};e&&e.isGroup()&&!n(););r.length>0&&this.app.commander.execute(new Zu({changes:r})),e&&e.calculateBounds&&e.calculateBounds()}function sc(t,e,r){var n,o;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.on(t,e,r);break;case"mode":null===(o=this.app)||void 0===o||o.on(t,e,r);break;default:this.on(t,e,r)}}function uc(t,e,r){var n;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.once(t,e,r);break;case"mode":this.app.once(t,e,r);break;default:this.once(t,e,r)}}function cc(t,e,r){var n,o;switch(t){case"execute":case"redo":case"undo":case"command-reset":null===(n=this.app)||void 0===n||n.commander.off(t,e,r);break;case"mode":null===(o=this.app)||void 0===o||o.off(t,e,r);break;default:this.off(t,e,r)}}function fc(t){var e=this.target_element,r=t||this.fitMode,n=this;function o(t){n.fit(r),document.fullscreen||document.mozFullScreen||document.webkitIsFullScreen||document.msFullscreenElement||["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((function(t){return document.removeEventListener(t,o)}))}["fullscreenchange","mozfullscreenchange","webkitfullscreenchange","MSFullscreenChange"].forEach((function(t){return document.addEventListener(t,o)})),e.requestFullScreen?e.requestFullScreen():e.webkitRequestFullScreen?e.webkitRequestFullScreen():e.mozRequestFullScreen?e.mozRequestFullScreen():e.msRequestFullscreen&&e.msRequestFullscreen()}var lc=0;function hc(){var t=this.selected.filter((function(t){return!t.isRootModel()})).map((function(t){return t.hierarchy}));if(0!=t.length)return lc=0,JSON.stringify(t,null,2)}function pc(){lc=0;var t=hc.call(this);return ac.call(this),t}function yc(t){if(t)try{JSON.parse(t),lc++,nc.call(this,JSON.parse(t),{x:15*lc,y:15*lc})}catch(e){Zn(e,t)}}var dc=function(){return{escape:function(t){return t.replace(/([.*+?^${}()|\[\]\/\\])/g,"\\$1")},parseExtension:e,mimeType:function(t){var r,n;return(r="application/font-woff",n="image/jpeg",{woff:r,woff2:r,ttf:"application/font-truetype",eot:"application/vnd.ms-fontobject",png:"image/png",jpg:n,jpeg:n,gif:"image/gif",tiff:"image/tiff",svg:"image/svg+xml"})[e(t).toLowerCase()]||""},dataAsUrl:function(t,e){return"data:"+e+";base64,"+t},isDataUrl:function(t){return-1!==t.search(/^(data:)/)},canvasToBlob:function(t){return t.toBlob?new Promise((function(e){t.toBlob(e)})):function(t){return new Promise((function(e){for(var r=window.atob(t.toDataURL().split(",")[1]),n=r.length,o=new Uint8Array(n),i=0;i<n;i++)o[i]=r.charCodeAt(i);e(new Blob([o],{type:"image/png"}))}))}(t)},resolveUrl:function(t,e){var r=document.implementation.createHTMLDocument(),n=r.createElement("base");r.head.appendChild(n);var o=r.createElement("a");return r.body.appendChild(o),n.href=e,o.href=t,o.href},getAndEncode:function(t){return _c.impl.options.cacheBust&&(t+=(/\?/.test(t)?"&":"?")+(new Date).getTime()),new Promise((function(e){var r,n=new XMLHttpRequest;if(n.onreadystatechange=function(){if(4===n.readyState)if(200===n.status){var o=new FileReader;o.onloadend=function(){var t=o.result.split(/,/)[1];e(t)},o.readAsDataURL(n.response)}else r?e(r):i("cannot fetch resource: "+t+", status: "+n.status)},n.ontimeout=function(){r?e(r):i("timeout of 30000ms occured while fetching resource: "+t)},n.responseType="blob",n.timeout=3e4,n.open("GET",t,!0),n.send(),_c.impl.options.imagePlaceholder){var o=_c.impl.options.imagePlaceholder.split(/,/);o&&o[1]&&(r=o[1])}function i(t){console.error(t),e("")}}))},uid:(t=0,function(){return"u"+("0000"+(Math.random()*Math.pow(36,4)<<0).toString(36)).slice(-4)+t++}),delay:function(t){return function(e){return new Promise((function(r){setTimeout((function(){r(e)}),t)}))}},asArray:function(t){for(var e=[],r=t.length,n=0;n<r;n++)e.push(t[n]);return e},escapeXhtml:function(t){return t.replace(/#/g,"%23").replace(/\n/g,"%0A")},makeImage:function(t){return new Promise((function(e,r){var n=new Image;n.onload=function(){e(n)},n.onerror=r,n.src=t}))},width:function(t){var e=r(t,"border-left-width"),n=r(t,"border-right-width");return t.scrollWidth+e+n},height:function(t){var e=r(t,"border-top-width"),n=r(t,"border-bottom-width");return t.scrollHeight+e+n}};var t;function e(t){var e=/\.([^\.\/]*?)$/g.exec(t);return e?e[1]:""}function r(t,e){var r=window.getComputedStyle(t).getPropertyValue(e);return parseFloat(r.replace("px",""))}}(),vc=function(){var t=/url\(['"]?([^'"]+?)['"]?\)/g;return{inlineAll:function(t,o,i){return e(t)?Promise.resolve(t).then(r).then((function(e){var r=Promise.resolve(t);return e.forEach((function(t){r=r.then((function(e){return n(e,t,o,i)}))})),r})):Promise.resolve(t)},shouldProcess:e,impl:{readUrls:r,inline:n}};function e(e){return-1!==e.search(t)}function r(e){for(var r,n=[];null!==(r=t.exec(e));)n.push(r[1]);return n.filter((function(t){return!dc.isDataUrl(t)}))}function n(t,e,r,n){return Promise.resolve(e).then((function(t){return r?dc.resolveUrl(t,r):t})).then(n||dc.getAndEncode).then((function(t){return dc.dataAsUrl(t,dc.mimeType(e))})).then((function(r){return t.replace(function(t){return new RegExp("(url\\(['\"]?)("+dc.escape(t)+")(['\"]?\\))","g")}(e),"$1"+r+"$3")}))}}(),gc=function(){return{resolveAll:function(){return t(document).then((function(t){return Promise.all(t.map((function(t){return t.resolve()})))})).then((function(t){return t.join("\n")}))},impl:{readAll:t}};function t(){return Promise.resolve(dc.asArray(document.styleSheets)).then((function(t){var e=[];return t.forEach((function(t){try{dc.asArray(t.cssRules||[]).forEach(e.push.bind(e))}catch(e){console.log("Error while reading CSS rules from "+t.href,e.toString())}})),e})).then((function(t){return t.filter((function(t){return t.type===CSSRule.FONT_FACE_RULE})).filter((function(t){return vc.shouldProcess(t.style.getPropertyValue("src"))}))})).then((function(e){return e.map(t)}));function t(t){return{resolve:function(){var e=(t.parentStyleSheet||{}).href;return vc.inlineAll(t.cssText,e)},src:function(){return t.style.getPropertyValue("src")}}}}}(),bc=function(){return{inlineAll:function e(r){return r instanceof Element?function(t){var e=t.style.getPropertyValue("background");return e?vc.inlineAll(e).then((function(e){t.style.setProperty("background",e,t.style.getPropertyPriority("background"))})).then((function(){return t})):Promise.resolve(t)}(r).then((function(){return r instanceof HTMLImageElement?t(r).inline():Promise.all(dc.asArray(r.childNodes).map((function(t){return e(t)})))})):Promise.resolve(r)},impl:{newImage:t}};function t(t){return{inline:function(e){return dc.isDataUrl(t.src)?Promise.resolve():Promise.resolve(t.src).then(e||dc.getAndEncode).then((function(e){return dc.dataAsUrl(e,dc.mimeType(t.src))})).then((function(e){return new Promise((function(r,n){t.onload=r,t.onerror=n,t.src=e}))}))}}}}(),mc={imagePlaceholder:void 0,cacheBust:!1};function wc(t,e){return function(t){void 0===t.imagePlaceholder?_c.impl.options.imagePlaceholder=mc.imagePlaceholder:_c.impl.options.imagePlaceholder=t.imagePlaceholder,void 0===t.cacheBust?_c.impl.options.cacheBust=mc.cacheBust:_c.impl.options.cacheBust=t.cacheBust}(e=e||{}),Promise.resolve(t).then((function(t){return kc(t,e.filter,!0)})).then(Sc).then((function(t){var r=e,n=r.bgcolor,o=r.width,i=r.height,a=r.style,s=r.sx,u=void 0===s?1:s,c=r.sy,f=void 0===c?1:c,l=t.style;return n&&(l.backgroundColor=n),o&&(l.width=o+"px"),i&&(l.height=i+"px"),l["margin-left"]="0px",l["margin-top"]="0px",["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){l[t+"transform"]="rotate(0rad) translate(0px, 0px) scale(".concat(u,", ").concat(f,") perspective(1px)")})),a&&Object.keys(a).forEach((function(t){l[t]=a[t]})),t})).then((function(r){return function(t,e,r){return Promise.resolve(t).then((function(t){return t.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),(new XMLSerializer).serializeToString(t)})).then(dc.escapeXhtml).then((function(t){return'<foreignObject x="0" y="0" width="100%" height="100%">'+t+"</foreignObject>"})).then((function(t){return'<svg xmlns="http://www.w3.org/2000/svg" width="'+e+'" height="'+r+'">'+t+"</svg>"})).then((function(t){return"data:image/svg+xml;charset=utf-8,"+t}))}(r,e.width||dc.width(t),e.height||dc.height(t))}))}function xc(t,e){return wc(t,e).then(dc.makeImage).then(dc.delay(100)).then((function(r){var n=function(t){var r=document.createElement("canvas");if(e.width,e.height,r.width=e.width||dc.width(t),r.height=e.height||dc.height(t),e.bgcolor){var n=r.getContext("2d");n.fillStyle=e.bgcolor,n.fillRect(0,0,r.width,r.height)}return r}(t);return n.getContext("2d").drawImage(r,0,0),n}))}function kc(t,e,r){return r||!e||e(t)?Promise.resolve(t).then((function(t){if(t instanceof HTMLCanvasElement)try{return dc.makeImage(t.toDataURL())}catch(t){$n(t)}return t.cloneNode(!1)})).then((function(r){return function(t,e,r){var n=t.childNodes;return 0===n.length?Promise.resolve(e):function(t,e,r){var n=Promise.resolve();return e.forEach((function(e){n=n.then((function(){return kc(e,r)})).then((function(e){e&&t.appendChild(e)}))})),n}(e,dc.asArray(n),r).then((function(){return e}))}(t,r,e)})).then((function(e){return function(t,e){return e instanceof Element?Promise.resolve().then((function(){r=window.getComputedStyle(t),n=e.style,r.cssText?n.cssText=r.cssText:function(t,e){dc.asArray(t).forEach((function(r){e.setProperty(r,t.getPropertyValue(r),t.getPropertyPriority(r))}))}(r,n);var r,n})).then((function(){[":before",":after"].forEach((function(r){!function(r){var n=window.getComputedStyle(t,r),o=n.getPropertyValue("content");if(""!==o&&"none"!==o){var i=dc.uid();e.className=e.className+" "+i;var a=document.createElement("style");a.appendChild(function(t,e,r){var n="."+t+":"+e,o=r.cssText?i(r):a(r);return document.createTextNode(n+"{"+o+"}");function i(t){var e=t.getPropertyValue("content");return t.cssText+" content: "+e+";"}function a(t){return dc.asArray(t).map(e).join("; ")+";";function e(e){return e+": "+t.getPropertyValue(e)+(t.getPropertyPriority(e)?" !important":"")}}}(i,r,n)),e.appendChild(a)}}(r)}))})).then((function(){t instanceof HTMLTextAreaElement&&(e.innerHTML=t.value),t instanceof HTMLInputElement&&e.setAttribute("value",t.value)})).then((function(){e instanceof SVGElement&&(e.setAttribute("xmlns","http://www.w3.org/2000/svg"),e instanceof SVGRectElement&&["width","height"].forEach((function(t){var r=e.getAttribute(t);r&&e.style.setProperty(t,r)})))})).then((function(){return e})):e}(t,e)})):Promise.resolve()}function Sc(t){return bc.inlineAll(t).then((function(){return t}))}var _c={toSvg:wc,toPng:function(t,e){return xc(t,e||{}).then((function(t){return t.toDataURL()}))},toJpeg:function(t,e){return xc(t,e=e||{}).then((function(t){return t.toDataURL("image/jpeg",e.quality||1)}))},toBlob:function(t,e){return xc(t,e||{}).then(dc.canvasToBlob)},toPixelData:function(t,e){return xc(t,e||{}).then((function(e){return e.getContext("2d").getImageData(0,0,dc.width(t),dc.height(t)).data}))},impl:{fontFaces:gc,images:bc,util:dc,inliner:vc,options:{}}};const Oc=_c;function Ec(t,e,r,n){var o=this.model_layer,i=o._overlay;return new Promise((function(a,s){if(o){var u=o.get("width"),c=o.get("height");r=r||u,n=n||c;var f=o.get("translate"),l=o.get("scale"),h=Math.min(r/u,n/c);r=u*h,n=c*h,o.set("translate",{x:0,y:0}),o.set("scale",{x:h/Bo,y:h/Bo});var p=da.createCanvas(r,n),y=p.getContext("2d");if(o.draw(y),o.set("translate",f),o.set("scale",l),!i)return a(p.toDataURL(t,e)),void(p=null);Oc.toPng(i,{sx:h,sy:h,width:r,height:n}).then((function(o){var i=new Image;i.onload=function(){y.drawImage(i,0,0,r,n),a(p.toDataURL(t,e)),p=null},i.src=o}),(function(r){Zn(r),a(p.toDataURL(t,e)),p=null}))}else s("No target model")}))}function Ac(){var t=this,e=this.selected.filter((function(t){return!!t.parent&&!t.stuck}));if(!(e.length<2)){var r=e[0].parent,n=[],o=e.sort((function(t,e){return r.components.indexOf(t)-r.components.indexOf(e)}));o.forEach((function(t){n.push(t.bounds)}));var i=da.union(n),a=e[0].transcoordP2S(i.left,i.top);a=e[0].transcoordS2T(a.x,a.y);var s=new Map,u=ec({type:"group",left:a.x,top:a.y,width:i.width,height:i.height},r.app,(function(e){var r=t.getNewRefid();return void 0!==e&&s.set(e,r),r}));u.replaceRefids(s);var c=[{component:u,to_container:r}];o.forEach((function(t){c.push({component:t,to_container:u})})),this.app.commander.execute(new Zu({changes:c})),this.selected=[u]}}function Pc(){if(0!==this.selected.length){var t=[],e=[];this.selected.forEach((function(r){if(r.isGroup()){var n=r.parent;r.components.forEach((function(r){t.push(r),e.push({component:r,to_container:n})})),e.push({component:r,to_container:null})}})),this.app.commander.execute(new Zu({changes:e})),this.selected=t}}function jc(){var t=this.selected;if(0!=t.length){var e=t.map((function(t){return t.bounds})),r=da.union(e),n=r.left+r.width/2;t.map((function(t){t.symmetryX(n)}))}}function Tc(){var t=this.selected;if(0!=t.length){var e=t.map((function(t){return t.bounds})),r=da.union(e),n=r.top+r.height/2;t.map((function(t){t.symmetryY(n)}))}}function Mc(){Du.around(this.app.commander,jc,this)}function Rc(){Du.around(this.app.commander,Tc,this)}function Ic(t,e,r){var n=this.findAll(t,r);return n.forEach((function(t){t.set(e)})),n}function Cc(t){Du.around(this.app.commander,t)}function Lc(){return Object.values(this.indexMap).map((function(t){return t.map((function(t){var e=t.model;return{key:e.id,value:e.data}}))})).flat().sort((function(t,e){return t.key>e.key?1:-1}))}function Dc(t){return Dc="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Dc(t)}function Bc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Dc(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Dc(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Dc(o)?o:String(o)),n)}var o}function Nc(){return Nc="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=zc(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Nc.apply(this,arguments)}function Fc(t,e){return Fc=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Fc(t,e)}function zc(t){return zc=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},zc(t)}var Uc=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Fc(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=zc(n);if(o){var r=zc(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Dc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"ready",value:function(){Nc(zc(a.prototype),"ready",this).call(this);var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}},{key:"render",value:function(t){var e=this.addbox;if(e){var r=e.sx,n=e.sy,o=e.ex,i=e.ey,a=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,o-r,i-n),t.setLineDash([2/a.x,4/a.y]),t.lineWidth=1/a.x,t.strokeStyle="black",t.stroke()}}},{key:"contains",value:function(t,e){return!(this.app.mode!=Co)}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{addstart:this.onaddstart,addstop:this.onaddstop,keydown:this.onkeydown,dragstart:this.ondragstart,dragmove:this.ondragmove,dragend:this.ondragend,mousedown:this.onmousedown,mouseup:this.onmouseup}},"model-layer":{"(self)":{change:this.onchange_root_model}}}}},{key:"onchange_root_model",value:function(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}},{key:"onaddstart",value:function(t,e){void 0===this.before_mode&&(this.before_mode=this.app.mode,this.models=t,this.app.mode=Co)}},{key:"onaddstop",value:function(){void 0!==this.before_mode&&(this.app.mode=this.before_mode),delete this.before_mode,delete this.addbox,this.invalidate()}},{key:"onkeydown",value:function(t){this.app.mode===Co&&"Esc"===t.code&&this.root.trigger("addstop")}},{key:"ondragstart",value:function(t){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.addbox={sx:r,sy:n}}},{key:"ondragmove",value:function(t){if(this.app.mode===Co){var e=this.transcoordC2S(t.offsetX,t.offsetY),r=e.x,n=e.y;this.addbox&&(this.addbox.ex=r,this.addbox.ey=n,this.invalidate())}}},{key:"ondragend",value:function(t,e){if(this.app.mode===Co){var r=this.addbox,n=r.sx,o=r.sy,i=r.ex,a=r.ey;nc.call(this.root,this.models,{left:Math.min(n,i),top:Math.min(o,a),width:Math.abs(i-n),height:Math.abs(a-o)}),this.root.trigger("addstop")}}},{key:"onmousedown",value:function(t,e){this.app.mode===Co&&(this.downpoint={x:t.offsetX,y:t.offsetY})}},{key:"onmouseup",value:function(t,e){if(this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var r=this.transcoordC2S(t.offsetX,t.offsetY),n=r.x,o=r.y;nc.call(this.root,this.models,{cx:n,cy:o}),this.root.trigger("addstop")}}}])&&Bc(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Yc(t,e,r,n,o){o||function(t,e,r,n){var o=t.selected,i=n?o.slice(0):[];n&&i.length>0?e=i[0].parent:e.isContainer()||(e=e.parent);var a=e.layout.capturables(e),s=!!e.layout.joinType;if(n&&r.selected.forEach((function(t){i.splice(i.indexOf(t),1)})),r.selected=[],a.forEach((function(t){t.capturable&&function(t,e,r){var n,o,i,a,s=e.sx,u=e.sy,c=e.ex,f=e.ey;if(s>c?(n=c,o=s):(n=s,o=c),u>f?(i=f,a=u):(i=u,a=f),r){var l=t.bounds,h=t.transcoordS2TR(l.left,l.top),p=t.transcoordS2TR(l.left+l.width,l.top+l.height),y=h.x,d=p.x,v=h.y,g=p.y,b=Math.min(n,y,o,d),m=Math.max(n,y,o,d),w=Math.min(i,v,a,g),x=Math.max(i,v,a,g);return!(m-b>Math.abs(o-n)+Math.abs(d-y)||x-w>Math.abs(a-i)+Math.abs(g-v))}var k=t.path;if(!k)return error("컴포넌트에 get path가 잘못 구현되어있음.",t),!1;for(var S=0;S<k.length;S++){var _=t.transcoordS2TR(k[S].x,k[S].y);if(n>_.x||o<_.x||i>_.y||a<_.y)return!1}return!0}(t,r,s)&&-1==i.indexOf(t)&&r.selected.push(t)})),i=i.concat(r.selected),o.length!==i.length)t.selected=i;else for(var u=0;u<i.length;u++)if(o[u]!=i[u]){t.selected=i;break}}(t,e,r,n)}function Gc(t){return Gc="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Gc(t)}function Hc(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Wc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Gc(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Gc(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Gc(o)?o:String(o)),n)}var o}function Xc(){return Xc="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Vc(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Xc.apply(this,arguments)}function qc(t,e){return qc=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},qc(t,e)}function Vc(t){return Vc=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Vc(t)}da.register("add-layer",Uc);var Qc=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&qc(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Vc(n);if(o){var r=Vc(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Gc(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"ready",value:function(){Xc(Vc(a.prototype),"ready",this).call(this);var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}},{key:"contains",value:function(t,e){return!1}},{key:"render",value:function(t){var e=this.selbox;if(e){var r=e.sx,n=e.sy,o=e.ex,i=e.ey,a=this.get("scale")||{x:1,y:1};t.beginPath(),t.rect(r,n,o-r,i-n),t.setLineDash([2/a.x,4/a.y]),t.lineWidth=1/a.x,t.strokeStyle="black",t.stroke()}}},{key:"eventMap",get:function(){return{"(root)":{"(self)":{keydown:this.onkeydown}},"model-layer":{"(self)":{change:this.onchange_root_model},"(all)":{dragstart:this.ondragstart_selbox,dragmove:this.ondragmove_selbox,dragend:this.ondragend_selbox,mousedown:this.onmousedown_comp,mouseup:this.onmouseup_comp}}}}},{key:"onkeydown",value:function(t,e){e.origin;var r=e.deliverer,n=r.selected;if(1!==n.length)return!1;var o=n[0],i=o.parent;if(!i||i===r)return!1;if("Tab"===t.code){var a=i.layout.capturables(i),s=a.indexOf(o);if(-1==s){if(!i.indexOf(o))return $n("Container not contains [",o,"] as a component"),!1;s=0}var u=a.length;t.shiftKey?s--:s++,o=a[(s+u)%u]}else{if(!i.layout.keyNavigate)return!1;o=i.layout.keyNavigate(i,o,t)||o}r.selected=[o],t.preventDefault()}},{key:"onchange_root_model",value:function(t,e,r){t.translate&&this.set("translate",t.translate),t.scale&&this.set("scale",t.scale)}},{key:"_pendingDecision",value:function(t){this.downpoint={x:t.offsetX,y:t.offsetY}}},{key:"_selectGroupItem",value:function(t,e){for(var r=this.selected.indexOf(t),n=t.parent;n.parent.isGroup();)n=n.parent;var o,i=[],a=!1,s=!1;if(this.selected.forEach((function(t){var e=t.parent;if(t!==n){for(;e.parent&&e.parent.isGroup();)e=e.parent;e===n&&(i.push(t),a=!0)}else s=!0})),a)if(e.shiftKey){if(-1!=r)return void this._pendingDecision(e);i.push(t)}else{if(-1!=r)return void this._pendingDecision(e);i=[t]}else{if(s)return void this._pendingDecision(e);if(e.shiftKey)if(this.selected.length>0){if(-1!=this.selected.indexOf(n)||this.selected[0].parent!==n.parent)return;i=[].concat(function(t){if(Array.isArray(t))return Hc(t)}(o=this.selected)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(o)||function(t,e){if(t){if("string"==typeof t)return Hc(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Hc(t,e):void 0}}(o)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[n])}else i=[n];else i=[n]}this.selected=i}},{key:"onmousedown_comp",value:function(t,e){var r=e.origin;if(this.downpoint=null,t.shiftKey){if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return void this._pendingDecision(t);var n=this.selected.filter((function(t){return!t.isRootModel()&&!!t.parent})),o=n.length>0&&n[0].parent;if(o&&o!==r.parent)return void(r.parent.isGroup()&&this._pendingDecision(t));n.push(r),this.selected=n}else{if(r.parent.isGroup())return void this._selectGroupItem(r,t);if(-1!=this.selected.indexOf(r))return;this.selected=[r]}}},{key:"onmouseup_comp",value:function(t,e){if(this.downpoint&&this.downpoint.x===t.offsetX&&this.downpoint.y===t.offsetY){var r=e.origin,n=this.selected.indexOf(r);if(-1==n&&r.parent.isGroup()&&(n=this.selected.indexOf(r.parent)),-1!==n&&t.shiftKey){var o=this.selected.slice();return n>-1&&o.splice(n,1),void(this.selected=o)}r.parent.isGroup()&&(this.selected=[r])}}},{key:"ondragstart_selbox",value:function(t,e){if(e.origin.stuck){var r=this.transcoordC2S(t.offsetX,t.offsetY),n=r.x,o=r.y;this.selbox={sx:n,sy:o,selected:[]}}}},{key:"ondragmove_selbox",value:function(t,e){var r=e.origin;if(r.stuck){var n=this.transcoordC2S(t.offsetX,t.offsetY),o=n.x,i=n.y;e.deliverer,this.selbox&&(this.selbox.ex=o,this.selbox.ey=i,Yc(this,r,this.selbox,t.shiftKey),this.invalidate())}}},{key:"ondragend_selbox",value:function(t,e){e.origin.stuck&&(this.last_pos=null,this.selbox=null,Yc(this,null,null,!1,!0),this.invalidate())}}])&&Wc(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Kc(t){return Kc="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Kc(t)}function Jc(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Kc(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Kc(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Kc(o)?o:String(o)),n)}var o}da.register("selection-layer",Qc);var Zc=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,(r=[{key:"draw",value:function(t,e,r){var n=e.bounds,o=n.left,i=n.top,a=n.width,s=n.height;0!=a&&0!=s&&(t.beginPath(),t.rect(o,i,a,s),t.clip(),t.beginPath(),t.strokeStyle="#f26522",t.lineWidth=4,t.shadowBlur=10,t.shadowColor="black",t.shadowOffsetX=0,t.shadowOffsetY=0,t.rect(o,i,a,s),t.stroke(),t.closePath())}}])&&Jc(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function $c(t){return $c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},$c(t)}function tf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==$c(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==$c(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===$c(o)?o:String(o)),n)}var o}var ef=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,(r=[{key:"draw",value:function(t,e,r){var n=e.bounds;t.beginPath(),t.rect(n.left-4/r.x,n.top-4/r.y,n.width+8/r.x,n.height+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),t.closePath()}}])&&tf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function rf(t){return rf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},rf(t)}function nf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==rf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==rf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===rf(o)?o:String(o)),n)}var o}var of=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,(r=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this,i=r.controls;return!!i&&(i.every((function(i,a){return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a,handler:i.handler}),!o.active})),!!this.active)}},{key:"draw",value:function(t,e,r){var n=e.controls;n&&n.forEach((function(e,n){t.beginPath(),t.lineWidth=1/r.x,t.ellipse(e.x,e.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.fillStyle="#ff5d72",t.fill(),t.strokeStyle="#fff",t.stroke()}))}},{key:"onevent",value:function(t,e){var r=this.active,n=r.handler,o=r.component,i=r.index,a=o.transcoordC2S(e.offsetX,e.offsetY);a=o.transcoordS2P(a.x,a.y),n&&"function"==typeof n[t]&&n[t](a,i,o)}},{key:"onmousedown",value:function(t){this.onevent("onmousedown",t)}},{key:"ondragstart",value:function(t){var e=this.active;e.changes=Du.before([e.component]),this.onevent("ondragstart",t)}},{key:"ondragmove",value:function(t){this.onevent("ondragmove",t)}},{key:"ondragend",value:function(t){this.onevent("ondragend",t);var e=this.active,r=e.component,n=e.changes;Du.after(n,r.app.commander),r.parent&&r.parent.calculateBounds&&r.parent.calculateBounds()}}])&&nf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function af(t){return af="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},af(t)}function sf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==af(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==af(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===af(o)?o:String(o)),n)}var o}function uf(t,e){return Math.atan2(e.y-t.y,e.x-t.x)}var cf=15*Math.PI/180,ff=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,r=[{key:"reset",value:function(){this.active=null,this.created=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this;return!!r.mutable&&(r.path.every((function(i,a){return Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a}),!o.active})),!!this.active)}},{key:"startLinkProcess",value:function(t,e,r){try{var n=ec(e,t.app);return t.rootModel.addComponent(n),this.layer.selected=[n],this.active={component:n,index:1},this.ondragstart(r),n}catch(t){console.warn(r)}}},{key:"draw",value:function(t,e,r){if(e.mutable&&!e.stuck){var n=e.path,o=this.active;n.forEach((function(n,i){t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,2*Math.PI,!0),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.fillStyle="#fff",o&&o.component===e&&o.index===i&&(t.strokeStyle="#fa7703",o.toFill&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke()}))}}},{key:"ondblclick",value:function(t){var e=this.active.component;if(e.pathExtendable){var r=e.path.slice();r.length<3||(r.splice(this.active.index,1),e.path=r)}}},{key:"onmousedown",value:function(t){this.active.toFill=!0}},{key:"ondragstart",value:function(t){var e=this.active,r=e.index,n=e.component;this.created||(this.active.changes=Du.before([n])),0!==r&&r!==n.path.length-1||(this.layer.counterEnd=0===r?n.toEnd||{fromto:"to"}:n.fromEnd||{fromto:"from"})}},{key:"ondragmove",value:function(t){var e,r,n=this.active||{},o=n.component,i=n.index,a=t.offsetX,s=t.offsetY,u=o.transcoordC2S(a,s);if(u=o.transcoordS2P(u.x,u.y),t.shiftKey){var c=o.path.length,f=o.isLine()&&0==i?o.path[1]:o.path[(i-1+c)%c];f=o.transcoordS2P(f.x,f.y);var l,h=0;c>2&&(o.isLine()?0==i?l=o.path[2]:1!=i&&(l=o.path[i-2]):l=o.path[(i-2+c)%c],l&&(h=uf(l=o.transcoordS2P(l.x,l.y),f)));var p=Math.round((uf(f,u)-h)/cf)*cf+h;u=function(t,e,r){return{x:Math.cos(e)*r+t.x,y:Math.sin(e)*r+t.y}}(f,p,(e=f,r=u,Math.sqrt((r.x-e.x)*(r.x-e.x)+(r.y-e.y)*(r.y-e.y))))}if(0===i||i===o.path.length-1){var y=this.layer.anchorTarget=o.rootModel.capture(a,s,(function(t){return!t.isConnectable()}));if(y){var d=y.transcoordC2S(a,s),v=d.x,g=d.y,b=this.layer.get("scale")||{x:1,y:1},m=this.layer.counterEnd,w=(y.anchors||[]).find((function(t){var e=t.name,r=t.inout,n=t.multiplicity,i=void 0===n?1/0:n,a=t.position,s=t.filter;if(m){var u=m.anchor,c=m.fromto;if(u&&("out"===u.inout&&"out"===r||"in"===u.inout&&"in"===r))return!1;if("from"===c&&"out"===r||"to"===c&&"in"===r)return!1}else console.error("should not be here.");if(Math.abs(v-a.x)>8/b.x||Math.abs(g-a.y)>8/b.y)return!1;var f=y.findInOutLines(e);return!(!f.includes(o)&&(i!==1/0&&f.length>=i||m&&s&&!s.call(t,m)))}));w?0==i?o.from={component:y.get("refid"),anchor:w.name,position:u}:o.to={component:y.get("refid"),anchor:w.name,position:u}:0==i?o.from={position:u}:o.to={position:u}}}o.mutatePath(null,(function(t){t[i]=u}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.changes;if(0===n||n===r.path.length-1){var i=t.offsetX,a=t.offsetY,s=r.rootModel.capture(i,a,(function(t){return t===r||t.isLine()})),u=s.transcoordC2S(i,a),c=u.x,f=u.y,l=this.layer.get("scale")||{x:1,y:1},h=(s.anchors||[]).find((function(t){return t&&Math.abs(c-t.position.x)<=8/l.x&&Math.abs(f-t.position.y)<=8/l.y}));h&&(0==n?r.from={component:s.get("refid"),anchor:h.name}:r.to={component:s.get("refid"),anchor:h.name}),this.layer.endLinkProcess()}if(this.created){var p=new Zu({changes:[{component:this.created,to_container:this.created.parent}]});created.app.commander.execute(p)}else Du.after(o,r.app.commander);r.parent&&r.parent.calculateBounds&&r.parent.calculateBounds()}}],r&&sf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function lf(t){return lf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},lf(t)}function hf(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function pf(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?hf(Object(r),!0).forEach((function(e){yf(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):hf(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function yf(t,e,r){return(e=vf(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function df(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,vf(n.key),n)}}function vf(t){var e=function(t,e){if("object"!==lf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==lf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===lf(e)?e:String(e)}var gf=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,r=[{key:"active",get:function(){var t;return null!==(t=this._active)&&void 0!==t&&t.component.disposed&&(this._active=null),this._active},set:function(t){this._active=t}},{key:"reset",value:function(){this.active=null}},{key:"contains",value:function(t,e,r,n){var o,i,a=this,s=(null===(o=this.active)||void 0===o?void 0:o.component)===r&&(null===(i=this.active)||void 0===i?void 0:i.anchor);this.active=null;var u=this.layer.counterEnd;return(r.isConnectable()&&!r.disposed&&r.anchors||[]).filter((function(t){var e=t.name,n=t.inout,o=t.multiplicity,i=void 0===o?1/0:o,a=t.filter;if(u){var s=u.anchor,c=u.fromto;if(s&&("out"===s.inout&&"out"===n||"in"===s.inout&&"in"===n))return!1;if("from"===c&&"out"===n||"to"===c&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&r.findInOutLines(e).length>=i||a&&u&&!a.call(t,u))})).every((function(o){var i=s===o.name?2:1;return o&&o.position&&Math.abs(t-o.position.x)<=4*i/n.x&&Math.abs(e-o.position.y)<=4*i/n.y&&(a.active={component:r,anchor:o.name,template:o.template}),!a.active})),!!this.active}},{key:"draw",value:function(t,e,r){var n,o;if(e.get("refid")&&!e.isLine()){var i=this.active,a=(null===(n=this.active)||void 0===n?void 0:n.component)===e&&(null===(o=this.active)||void 0===o?void 0:o.anchor),s=this.layer.counterEnd;(e.isConnectable()&&!e.disposed&&e.anchors||[]).filter((function(t){var r=t.name,n=t.inout,o=t.multiplicity,i=void 0===o?1/0:o,a=t.filter;if(s){var u=s.anchor,c=s.fromto;if(u&&("out"===u.inout&&"out"===n||"in"===u.inout&&"in"===n))return!1;if("from"===c&&"out"===n||"to"===c&&"in"===n)return!1}else if("in"===n)return!1;return!(i!==1/0&&e.findInOutLines(r).length>=i||s&&a&&!a.call(t,s))})).forEach((function(n){var o=n.name,s=n.position,u=a===o?2:1;s&&(t.beginPath(),t.ellipse(s.x,s.y,4*u/r.x,4*u/r.y,0,0,2*Math.PI),t.setLineDash([0,0]),t.lineWidth=1/r.x,t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",i&&i.component===e&&i.anchor===o&&(t.strokeStyle="#fa7703",i.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}},{key:"onmousedown",value:function(t){this.active.focus=!0}},{key:"ondragstart",value:function(t){var e=this.active,r=e.component,n=e.anchor,o=e.template,i=this.layer.transcoordC2S(t.offsetX,t.offsetY);this.layer.startLinkProcess(r,pf(pf({type:"ortholine",lineWidth:1,strokeStyle:"black",begin:"oval",beginSize:"size9",end:"arrow",endSize:"size9",lineDash:"solid",lineCap:"butt",round:10},o),{},{from:{component:r.get("refid"),anchor:n,position:i},to:{position:i}}),t)}},{key:"ondragmove",value:function(t){}},{key:"ondragend",value:function(t){}}],r&&df(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function bf(t){return bf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},bf(t)}function mf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==bf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==bf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===bf(o)?o:String(o)),n)}var o}function wf(t,e,r){var n,o,i=t.bounds,a=i.left,s=i.top,u=i.width,c=i.height;switch(e){case 0:n=a,o=s;break;case 1:n=a+u/2,o=s;break;case 2:n=a+u,o=s;break;case 3:n=a+u,o=s+c/2;break;case 4:n=a+u,o=s+c;break;case 5:n=a+u/2,o=s+c;break;case 6:n=a,o=s+c;break;case 7:n=a,o=s+c/2}var f=n,l=o,h=t.transcoordT2S(r.x,r.y);return{dx:h.x-f,dy:h.y-l}}function xf(t,e,r,n,o,i){var a=t.bounds,s=a.left,u=a.top,c=a.width,f=a.height,l={left:s,top:u,width:c,height:f};switch(e){case 0:s+=n,u+=o,c-=n,f-=o;break;case 1:u+=o,f-=o;break;case 2:u+=o,c+=n,f-=o;break;case 3:c+=n;break;case 4:c+=n,f+=o;break;case 5:f+=o;break;case 6:s+=n,c-=n,f+=o;break;case 7:s+=n,c-=n}if(t.mutateBounds((function(e){return Math.abs(c)<=.001&&(c=.001),Math.abs(f)<=.001&&(f=.001),t.adjustResize({left:s,top:u,width:c,height:f},l,r)}),this),t.isContainer()&&t.layout.ABSOLUTE&&!t.isGroup()){var h=l.left-s,p=l.top-u;i?t.components.forEach((function(t){t.delta("tx",0),t.delta("ty",0),t.move({x:h,y:p},!1)})):t.components.forEach((function(t){t.delta("tx",h),t.delta("ty",p)}))}else{var y=i&&t.parent;y&&y.isGroup()&&y.calculateBounds()}}function kf(t,e){var r=t.left,n=t.top,o=t.width,i=t.height,a=r+o/2,s=n+i/2,u=r+o,c=n+i,f=o*e.x>50,l=i*e.y>50;return[{x:r,y:n},f?{x:a,y:n}:null,{x:u,y:n},l?{x:u,y:s}:null,{x:u,y:c},f?{x:a,y:c}:null,{x:r,y:c},l?{x:r,y:s}:null]}var Sf=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,(r=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){var o=this;return!!r.resizable&&(kf(r.bounds,n).every((function(i,a){return i&&Math.abs(t-i.x)<=4/n.x&&Math.abs(e-i.y)<=4/n.y&&(o.active={component:r,index:a}),!o.active})),!!this.active)}},{key:"draw",value:function(t,e,r){if(!e.isLine()){var n=e.bounds,o=n.left,i=n.top,a=n.width,s=n.height;if(t.beginPath(),t.rect(o-4/r.x,i-4/r.y,a+8/r.x,s+8/r.y),t.setLineDash([3/r.x,4/r.y]),t.lineWidth=1/r.x,t.strokeStyle="black",t.stroke(),t.setLineDash([]),e.resizable){var u=this.active;kf(e.bounds,r).forEach((function(n,o){n&&(t.beginPath(),t.rect(n.x-4/r.x,n.y-4/r.y,8/r.x,8/r.y),t.setLineDash([0,0]),t.strokeStyle="#656565",t.stroke(),t.fillStyle="#fff",u&&u.component===e&&u.index===o&&(t.strokeStyle="#fa7703",u.focus&&(t.fillStyle="#ffb80c")),t.fill(),t.stroke())}))}}}},{key:"onmousedown",value:function(t){this.active.focus=!0}},{key:"ondragstart",value:function(t){var e=this.active.component;this.active.bounds=e.bounds,this.active.boundsList=this.layer.selected.filter((function(t){return t.resizable})).map((function(t){return t.bounds}))}},{key:"ondragmove",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.boundsList,i=e.bounds,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);r.bounds=i;var s=wf(r,n,a);this.layer.selected.filter((function(t){return t.resizable})).forEach((function(e,r){e.bounds=o[r],xf(e,n,t.shiftKey,s.dx,s.dy,!1)}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component,n=e.index,o=e.boundsList,i=e.bounds,a=this.layer.transcoordC2S(t.offsetX,t.offsetY);r.bounds=i;var s=wf(r,n,a);this.layer.selected.filter((function(t){return t.resizable})).forEach((function(e,r){e.bounds=o[r],xf(e,n,t.shiftKey,s.dx,s.dy,!0)})),this.active.component.app.commander.execute(null,!1)}}])&&mf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function _f(t){return _f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_f(t)}function Of(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==_f(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==_f(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===_f(o)?o:String(o)),n)}var o}var Ef=2*Math.PI,Af=Math.PI/2;function Pf(t,e){var r=t.bounds;return{x:r.left+r.width/2,y:r.top-20/e.y}}var jf=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.layer=e}var e,r;return e=t,(r=[{key:"reset",value:function(){this.active=null}},{key:"selected",get:function(){return this.layer.selected}},{key:"contains",value:function(t,e,r,n){if(!r.rotatable)return!1;var o=Pf(r,n);return Math.abs(t-o.x)<=4/n.x&&Math.abs(e-o.y)<=4/n.y&&(this.active={component:r},!0)}},{key:"draw",value:function(t,e,r){if(e.rotatable){t.beginPath();var n=Pf(e,r);t.lineWidth=1.5/r.x,t.moveTo(n.x,n.y+20/r.y),t.lineTo(n.x,n.y),t.strokeStyle="#656565",t.stroke(),t.beginPath(),t.ellipse(n.x,n.y,4/r.x,4/r.y,0,0,Ef,!0),t.stroke(),t.fillStyle="#fff",t.fill();var o=this.active;o&&o.component===e&&(t.strokeStyle="#fa7703",t.stroke(),o.toFill&&(t.fillStyle="#ffb80c",t.fill()))}}},{key:"onmousedown",value:function(t){this.active.toFill=!0}},{key:"ondragstart",value:function(t){var e=this.active;e.component,e.start_rotation=e.component.get("rotation"),e.rotations=this.layer.selected.filter((function(t){return t.rotatable})).map((function(t){return t.get("rotation")}))}},{key:"ondragmove",value:function(t){var e=this.active.component,r=e.transcoordC2S(t.offsetX,t.offsetY);r=e.transcoordS2P(r.x,r.y);var n=e.rotatePoint,o=e.get("rotation")||0,i=Math.atan((n.y-r.y)/(n.x-r.x)),a=(i=n.x>=r.x?i-Af:Af+i)-o;this.layer.selected.filter((function(t){return t.rotatable})).forEach((function(e,r){var n=((e.get("rotation")||0)+a)%Ef;e.set("rotation",e.adjustRotation(n,t.shiftKey))}))}},{key:"ondragend",value:function(t){var e=this.active,r=e.component;e.rotations,r.app.commander.execute(null,!1)}}])&&Of(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Tf(t){return Tf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Tf(t)}function Mf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Tf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Tf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Tf(o)?o:String(o)),n)}var o}function Rf(){return Rf="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Lf(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Rf.apply(this,arguments)}function If(t,e){return If=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},If(t,e)}function Cf(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Lf(t){return Lf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Lf(t)}var Df=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&If(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Lf(n);if(o){var r=Lf(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Tf(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return Cf(t)}(this,t)});function a(t,e){var r;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=i.call(this,t,e)).pathHandler=new ff(Cf(r));var n=r.pathHandler,o=new of(Cf(r)),s=new Sf(Cf(r)),u=new jf(Cf(r));return r._modelers=[n,o,s,u],r._control_mode_modelers=[o,n,s,u],r.focusOutline=new Zc(Cf(r)),r.groupOutline=new ef(Cf(r)),r.anchorHandler=new gf(Cf(r)),r._reversed_modelers=r._modelers.slice().reverse(),r._control_mode_reverse_modelers=r._control_mode_modelers.slice().reverse(),r.hovered=null,r.hoveredDest=null,r}return e=a,r=[{key:"modelers",get:function(){return this._control_mode?this._control_mode_modelers:this._modelers}},{key:"reversedModelers",get:function(){return this._control_mode?this._control_mode_reverse_modelers:this._reversed_modelers}},{key:"ready",value:function(){Rf(Lf(a.prototype),"ready",this).call(this);var t=this.rootModel,e=t.get("translate"),r=t.get("scale");this.set("translate",e),this.set("scale",r)}},{key:"contains",value:function(t,e){var r=this.selected.filter((function(t){return!!t.parent})),n=this.get("scale")||{x:1,y:1};if(this._state_dragging){if(this._counter_end){var o=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(o.x,o.y,this.anchorTarget,n))return!0}return!0}this.modelers.forEach((function(t){return t.reset()})),r=this.selected.filter((function(t){return!!t.parent}));for(var i=0;i<r.length;i++)for(var a=r[i],s=a.transcoordT2S(t,e),u=0;u<this.modelers.length;u++){var c=this.modelers[u];if(c.contains(s.x,s.y,a,n))return this.currentModeler=c,!0}if(this.anchorTarget){var f=this.anchorTarget.transcoordT2S(t,e);if(this.anchorHandler.contains(f.x,f.y,this.anchorTarget,n))return this.currentModeler=this.anchorHandler,!0}else this.anchorHandler.reset();return this.currentModeler=null,!1}},{key:"_componentDrawer",value:function(t,e,r,n){var o=[],i=e.parent;if(e.isRootModel())return t.save(),n(t,e,r),void t.restore();for(;i&&!i.isRootModel();)o.push(i),i=i.parent;t.save(),o.reverse().forEach((function(e){var r=e.rotatePoint;t.translate(r.x,r.y);var n=e.get("scale");n&&t.scale(n.x,n.y),t.rotate(e.get("rotation")),t.translate(-r.x,-r.y);var o=e.bounds;t.translate(o.left,o.top)}));var a=e.rotatePoint;t.translate(a.x,a.y);var s=e.get("scale");s&&t.scale(s.x,s.y),t.rotate(e.get("rotation")),t.translate(-a.x,-a.y),n(t,e,r),t.restore()}},{key:"prerender",value:function(t){var e=this.model,r=e.translate,n=e.scale,o=void 0===n?{x:1,y:1}:n,i=e.rotation;t.save(),t.beginPath(),t.clearRect(0,0,t.canvas.width,t.canvas.height),t.rect(0,0,t.canvas.width,t.canvas.height),t.fillStyle="black",t.globalAlpha=.5,t.fill(),t.restore(),r&&t.translate(r.x*Bo,r.y*Bo),t.scale(o.x*Bo,o.y*Bo),i&&t.rotate(i),t.clearRect(0,0,this.rootModel.get("width"),this.rootModel.get("height"))}},{key:"render",value:function(t){var e=this;t.beginPath();var r=this.get("scale")||{x:1,y:1},n=this.selected.filter((function(t){return!!t.parent}));if(this.focused&&this._componentDrawer(t,this.focused,r,(function(t,r,n){e.focusOutline.draw(t,r,n)})),n.length>0&&n[0].parent.isGroup()){for(var o=n[0].parent;o.parent.isGroup();)o=o.parent;this._componentDrawer(t,o,r,(function(t,r,n){e.groupOutline.draw(t,r,n)}))}n.forEach((function(n){e._componentDrawer(t,n,r,(function(t,r,n){e.reversedModelers.forEach((function(e){return e.draw(t,r,n)}))}))})),this.anchorTarget&&this._componentDrawer(t,this.anchorTarget,r,(function(t,r,n){e.anchorHandler.draw(t,r,n)}))}},{key:"anchorTarget",get:function(){var t;return this.currentModeler===this.anchorHandler||this.currentModeler===this.pathHandler||null!==(t=this.hovered)&&void 0!==t&&t.isLine()||(this._anchorTarget=this.hovered),this._anchorTarget},set:function(t){this._anchorTarget=t}},{key:"hovered",get:function(){return this._hovered},set:function(t){this._hovered=t,this.invalidate()}},{key:"startLinkProcess",value:function(t,e,r){this.currentModeler=this.pathHandler,this.processingLink=this.pathHandler.startLinkProcess(t,e,r),this.counterEnd=this.processingLink.fromEnd,this.processingLink.trigger("tag")}},{key:"counterEnd",get:function(){return this._counter_end},set:function(t){this.currentModeler=this.pathHandler,this._counter_end=t}},{key:"endLinkProcess",value:function(){var t;null===(t=this.processingLink)||void 0===t||t.trigger("tagreset"),this.processingLink=null,this._counter_end=null}},{key:"eventMap",get:function(){return{"model-layer":{"(all)":{change:this.onchange_model,wheel:this.onwheel_scale,drop:this.ondrop},"(descendant)":{mouseenter:this.onmouseenter,mouseleave:this.onmouseleave},"(self)":{dblclick:this.ondblclick_model}},"(root)":{"(self)":{selected:this.onselected,keydown:this.onkeydown,keyup:this.onkeyup}}}}},{key:"onmouseenter",value:function(t,e){this.hovered=null==e?void 0:e.origin}},{key:"onmouseleave",value:function(t,e){this.hovered=null}},{key:"onkeydown",value:function(t){"Alt"==t.key&&(this._control_mode=!0,this.invalidate())}},{key:"onkeyup",value:function(t){"Alt"==t.key&&(this._control_mode=!1,this.invalidate())}},{key:"onselected",value:function(t,e){this.invalidate()}},{key:"onchange_model",value:function(t,e,r){r.origin===r.deliverer&&(t.translate&&this.set("translate",t.translate),void 0!==t.rotation&&this.set("rotation",t.rotation),t.scale&&this.set("scale",t.scale)),this.invalidate()}},{key:"ondblclick_model",value:function(t,e){var r=e.origin;null==r||r.root.fit()}},{key:"ondblclick",value:function(t){"function"==typeof this.currentModeler.ondblclick&&this.currentModeler.ondblclick(t),this.invalidate()}},{key:"onmousedown",value:function(t){this.currentModeler.onmousedown(t),this.invalidate()}},{key:"onmouseup",value:function(t){"function"==typeof this.currentModeler.onmouseup&&this.currentModeler.onmouseup(t),this.invalidate()}},{key:"ondragstart",value:function(t){this.currentModeler.ondragstart(t),this._state_dragging=!0}},{key:"ondragmove",value:function(t){this.currentModeler.ondragmove(t),this.invalidate()}},{key:"ondragend",value:function(t){this._state_dragging=!1,this.currentModeler.ondragend(t),this.invalidate()}},{key:"ondrop",value:function(t,e){var r=this,n=e.origin,o=t.dataTransfer.files;if(!(o.length<1)){var i=this.rootModel.transcoordC2S(t.offsetX,t.offsetY),a=this.rootModel;Promise.all(Array.from(o).map((function(t){return new Promise((function(e,r){var n=new FileReader;n.addEventListener("loadend",(function(t){e(n.result)})),["error","abort"].forEach((function(t){return n.addEventListener(t,(function(t){r(t)}))})),n.readAsDataURL(t)}))}))).then((function(e){if(t.altKey)return Du.around(r.app.commander,(function(){n.ondropfile(o,e)})),void(r.selected=[n]);var s=[],u=e.map((function(t,e){var r,n=o[e].type,u=o[e].name;return n.startsWith("image/")?(r=ec({type:n.startsWith("image/gif")?"gif-view":"image-view",top:0,left:0,width:200,height:200,src:t},a.app),s.push(new Promise((function(e,n){var o=new Image;o.src=t,o.onload=function(){r.set({width:o.width,height:o.height}),e()},o.onerror=function(t){n(t)}})))):n.startsWith("audio/")?r=ec({type:"audio",top:0,left:0,width:100,height:100,src:t},a.app):n.startsWith("vnd.ms-excel/")||/\.xlsx?$/.test(u)?r=ec({type:"excel",top:0,left:0,width:100,height:100,src:t},a.app):console.log("droped file",o[e]),r&&(r.center=i,i.x+=50,i.y+=50),r})).filter(Boolean).map((function(t){return{component:t,to_container:a}}));u.length>0&&Promise.all(s).then((function(){r.app.commander.execute(new Zu({changes:u})),r.selected=u.map((function(t){return t.component}))}),(function(t){console.error(t)}))}),(function(t){console.error(t)}))}}},{key:"onwheel_scale",value:function(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer;if(t.shiftKey){if(-1!=navigator.userAgent.indexOf("Win"))var n=t.deltaY<0?1:-1;else n=t.deltaX<0?1:-1;Du.around(this.app.commander,(function(){r.selected.forEach((function(t){var e=t.get("fontSize")||zo.FONT_SIZE;e<1&&(e=1),e+=n,t.set("fontSize",e)}))}))}else{n=t.deltaY<0?1:-1;var o=r.get("scale")||{x:1,y:1},i=r.get("translate"),a=t.offsetX,s=t.offsetY,u=r.transcoordC2S(a,s),c=.1*n,f={x:o.x+c,y:o.y+c};if(n<0&&o.x<.2||n>0&&o.x>10)return;r.set("scale",f);var l=r.transcoordC2S(a,s);r.set("translate",{x:i.x+(l.x-u.x)*f.x,y:i.y+(l.y-u.y)*f.y})}}}}],r&&Mf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Bf(t){return Bf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Bf(t)}function Nf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Bf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Bf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Bf(o)?o:String(o)),n)}var o}function Ff(t,e){return Ff=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ff(t,e)}function zf(t){return zf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},zf(t)}da.register("modeling-layer",Df);var Uf=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ff(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=zf(n);if(o){var r=zf(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Bf(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=i.call(this,t,e))._anim_alpha=1,r}return e=a,(r=[{key:"animOnTargetChange",value:function(t){var e=this;t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:function(t){e._anim_alpha=1-t,e.invalidate()},duration:5e3,delta:"circ",ease:"in"}).start())}},{key:"decorate",value:function(t,e,r){var n=t.decorators,o=!1;return n.map((function(t){return"string"==typeof t?ta(t):t})).filter((function(t){return t&&"function"==typeof t})).map((function(n){var i=n(t,e,1-r);o||(o=i)})),o}},{key:"render",value:function(t){var e=this,r=this.decoTargets&&this.decoTargets.filter((function(t){return t.rootModel}));if(!r||0==r.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var n=!1;r.forEach((function(r){e.decorate(r,t,1-e._anim_alpha)&&(n=!0)})),n&&this.animOnTargetChange(this.decoTargets)}},{key:"decoTargets",get:function(){return this._decoTargets},set:function(t){this._decoTargets=t&&t.filter((function(t){return!t.isLayer()})),this.invalidate()}},{key:"eventMap",get:function(){return{"model-layer":{"(descendant)":{tag:this.ondecotag,tagreset:this.ondecotagreset,mouseenter:this.onmouseenter,mouseleave:this.onmouseleave}}}}},{key:"onmouseenter",value:function(t,e){this._decotagreset(),this._ondecotag(e.origin)}},{key:"onmouseleave",value:function(t,e){this._decotagreset()}},{key:"ondecotagreset",value:function(t){this._decotagreset()}},{key:"ondecotag",value:function(t){this._ondecotag(t.origin)}},{key:"offdecotag",value:function(t,e){this._offdecotag(e.origin)}},{key:"_ondecotag",value:function(t){this.decoTargets&&-1!==this.decoTargets.lastIndexOf(t)||(this.decoTargets=(this.decoTargets||[]).concat(t))}},{key:"_offdecotag",value:function(t){if(this.decoTargets){var e=this.decoTargets.slice();e.splice(this.decoTargets.lastIndexOf(t),1),this.decoTargets=e}}},{key:"_decotagreset",value:function(){this.decoTargets=[]}}])&&Nf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Yf(t){return Yf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Yf(t)}function Gf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Yf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Yf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Yf(o)?o:String(o)),n)}var o}function Hf(t,e){return Hf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Hf(t,e)}function Wf(t){return Wf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Wf(t)}da.register("decotag-layer",Uf),da.register("tag-layer",Uf);var Xf=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Hf(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Wf(n);if(o){var r=Wf(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Yf(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),(r=i.call(this,t,e))._anim_alpha=1,r}return e=a,(r=[{key:"animOnTargetChange",value:function(t){var e=this;t!==this._lastTargets&&(this._lastTargets=t,this._anim_alpha=1,this.animate({step:function(t){e._anim_alpha=1-t,e.invalidate()},duration:1e4,delta:"circ",ease:"inout"}).start())}},{key:"decorate",value:function(t,e,r){var n=t.reactionDecorators,o=!1;return n.map((function(t){return"string"==typeof t?ta(t):t})).filter((function(t){return t&&"function"==typeof t})).map((function(n){var i=n(t,e,1-r);o||(o=i)})),o}},{key:"render",value:function(t){var e=this,r=this.targets&&this.targets.filter((function(t){return t.rootModel}));if(!r||0==r.length)return this._animate&&this._animate.stop(),void delete this._animate;t.globalAlpha*=this._anim_alpha;var n=!1;r.forEach((function(r){e.decorate(r,t,1-e._anim_alpha)&&(n=!0)})),n&&this.animOnTargetChange(this.targets)}},{key:"targets",get:function(){return this._targets},set:function(t){this._targets=t&&t.filter((function(t){return!t.isLayer()})),this.invalidate()}},{key:"eventMap",get:function(){return{"model-layer":{"(descendant)":{reaction:this.onreaction,reactionreset:this.onreactionreset}}}}},{key:"onreactionreset",value:function(t){this._reactionreset()}},{key:"onreaction",value:function(t){this._onreaction(t.origin)}},{key:"offreaction",value:function(t,e){this._offreaction(e.origin)}},{key:"_onreaction",value:function(t){this.targets&&-1!==this.targets.lastIndexOf(t)||(this.targets=(this.targets||[]).concat(t))}},{key:"_offreaction",value:function(t){if(this.targets){var e=this.targets.slice();e.splice(this.targets.lastIndexOf(t),1),this.targets=e}}},{key:"_reactionreset",value:function(){this.targets=[]}}])&&Gf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function qf(t){return qf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},qf(t)}function Vf(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==qf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==qf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===qf(o)?o:String(o)),n)}var o}function Qf(t,e){return Qf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Qf(t,e)}function Kf(t){return Kf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Kf(t)}da.register("reaction-layer",Xf);var Jf=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Qf(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Kf(n);if(o){var r=Kf(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===qf(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"capturable",get:function(){return!0}},{key:"render",value:function(t){var e=this.state.scrolling;if(t.save(),t.beginPath(),t.fillStyle="#777",this.vscroller){var r=this.vscroller,n=r.left,o=r.top,i=r.width,a=r.height;t.globalAlpha="v"==e?1:.3,t.fillRect(n,o,i,a)}if(this.hscroller){var s=this.hscroller,u=s.left,c=s.top,f=s.width,l=s.height;t.globalAlpha="h"==e?1:.3,t.fillRect(u,c,f,l)}t.stroke(),t.restore()}},{key:"contains",value:function(t,e){var r=this.vscroller,n=this.hscroller;return this.setState("scrolling",r&&t>=r.left&&t<=r.left+r.width&&e>=r.top&&e<=r.top+r.height?"v":n&&t>=n.left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height?"h":null),!!this.getState("scrolling")}},{key:"eventMap",get:function(){return{"(root)":{"model-layer":{change:this.onchangeModelLayer}}}}},{key:"onchange",value:function(t){"scrolling"in t&&this.invalidate()}},{key:"ondragstart",value:function(t,e){this.lastPosition={x:t.offsetX,y:t.offsetY}}},{key:"ondragmove",value:function(t,e){var r=this.root,n=this.canvas,o=n.clientWidth,i=n.clientHeight,a=this.rootModel.model,s=a.width,u=a.height,c={x:t.offsetX,y:t.offsetY},f=c.x,l=c.y,h=this._scale,p=h.x,y=h.y,d=this.state.scrolling,v=s/o,g=u/i;d&&r.rootModel.move({x:"h"==d?(-f+this.lastPosition.x)*p*v:0,y:"v"==d?(-l+this.lastPosition.y)*y*g:0},!1),this.lastPosition={x:t.offsetX,y:t.offsetY}}},{key:"ondragend",value:function(){delete this.lastPosition,this.setState({scrolling:null})}},{key:"calcScrollerBounds",value:function(){var t=this.canvas,e=t.clientWidth,r=t.clientHeight,n=this.rootModel.model,o=n.width,i=n.height,a=this._scale||{},s=a.x,u=void 0===s?1:s,c=a.y,f=void 0===c?1:c,l=this._translate||{},h=l.x,p=void 0===h?0:h,y=l.y,d=void 0===y?0:y,v=o/e,g=i/r,b={left:-p/u/v,top:r-10,width:e/u/v,height:10};this.hscroller=b.left>1||b.width+b.left<e-1?b:null,b={left:e-10,top:-d/f/g,width:10,height:r/f/g},this.vscroller=b.top>1||b.height+b.top<r-1?b:null,this.invalidate()}},{key:"onchangeModelLayer",value:function(t,e,r){if(t.scale){var n=(null==t?void 0:t.scale)||{},o=n.x,i=void 0===o?1:o,a=n.y,s=void 0===a?1:a;this._scale={x:i,y:s},this.calcScrollerBounds()}if(t.translate){var u=t.translate||{},c=u.x,f=void 0===c?0:c,l=u.y,h=void 0===l?0:l;this._translate={x:f,y:h},this.calcScrollerBounds()}}}])&&Vf(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(js);function Zf(t){return Zf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Zf(t)}function $f(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Zf(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Zf(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Zf(o)?o:String(o)),n)}var o}function tl(){var t=arguments,e=t[t.length-1],r=this.event_pump;r.listeners.forEach((function(n){!function(t,e,r,n,o){for(var i in r){var a=r[i];if(Xo(i,n.origin,0,t))for(var s in a){var u=a[s];s==n.name&&(n.listener=e,u.apply(e,o))}}}(r.deliverer,n.listener,n.cloned_handlers,e,t)}))}da.register("scroll-layer",Jf);var el=function(){function t(e){if(function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),void 0===e.on)throw new Error("Deliverer should be a event handlable object.");this.deliverer=e,this.listeners=[]}var e,r;return e=t,r=[{key:"start",value:function(){this.deliverer.on("(all)",tl,{event_pump:this})}},{key:"stop",value:function(){this.deliverer.off("(all)",tl)}},{key:"on",value:function(t,e){var r=Object.assign({},e);Object.keys(r).forEach((function(e){if(0==e.indexOf("?")){var n=r[e],o=e.substr(1),i=t.get(o);delete r[e],i?r[i]=n:$n("EventPump#on","variable #{selector} is not evaluated on listener")}})),this.listeners.push({listener:t,handlers:e,cloned_handlers:r})}},{key:"off",value:function(t,e){for(var r=0;r<this.listeners.length;r++){var n=this.listeners[r];n.listener!==t||e&&n.handlers!==e||this.listeners.splice(r,1)}}},{key:"clear",value:function(){this.listeners=[]}},{key:"dispose",value:function(){this.stop(),this.clear()}}],r&&$f(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function rl(t){return rl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},rl(t)}function nl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==rl(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==rl(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===rl(o)?o:String(o)),n)}var o}var ol=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.eventMaps=[],this.root=e,e.eventMap&&this.add(e,e.eventMap)}var e,r;return e=t,r=[{key:"root",get:function(){return this._root},set:function(t){this._root=t}},{key:"stop",value:function(){this.eventMaps.forEach((function(t){return t.eventPump.stop()}))}},{key:"add",value:function(t,e){var r=this;if(this.root){var n=function(){var n=e[o];if("(self)"===o&&void 0===t.on)throw new Error("(self) selector not available when deliverer is not a event handlable object.");Qo(o,r.root,t).forEach((function(o){var i=new el(o);i.on(t,n),i.start(),r.eventMaps.push({eventPump:i,listener:t,handlerMap:e,deliverer:o})}))};for(var o in e)n()}}},{key:"remove",value:function(t,e){for(var r=this.eventMaps.slice(0),n=0;n<r.length;n++){var o=r[n];o.listener!==t||e&&o.handlerMap!==e||(this.eventMaps.splice(n,1),o.eventPump.dispose())}}},{key:"clear",value:function(){this.eventMaps.slice(0).forEach((function(t){return t.eventPump.dispose()})),this.eventMaps=[]}},{key:"dispose",value:function(){this.stop(),this.clear()}}],r&&nl(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function il(t){return il="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},il(t)}function al(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function sl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==il(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==il(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===il(o)?o:String(o)),n)}var o}function ul(t,e,r){return e&&sl(t.prototype,e),r&&sl(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}var cl={},fl=0,ll=function(){function t(e,r){al(this,t),this._type=r||e.type,this._ctrlKey=e.ctrlKey,this._altKey=e.altKey,this._shiftKey=e.shiftKey,this._metaKey=e.metaKey;var n=function(t){if(t.touches){var e=t.touches[0];if(!e)return cl;var r=e.target.getBoundingClientRect();return cl={x:t.offsetX||e.clientX-(r.x||r.left),y:t.offsetY||e.clientY-(r.y||r.top)}}return{x:t.offsetX,y:t.offsetY}}(e);if(this._offsetX=n.x,this._offsetY=n.y,"wheel"==e.type)this.deltaX=e.deltaX,this.deltaY=e.deltaY,this.deltaZ=e.deltaZ;else if("drop"==e.type)this.dataTransfer=e.dataTransfer;else if(e.type.match(/^touch/)&&(this._scale=e.scale,this._touches=e.touches,this._changedTouches=e.changedTouches,null==this._scale)){var o=function(t){var e,r,n=0,o=0;if(1===t.touches.length)return 0;Array.from(t.touches).forEach((function(t){e=null!=e?Math.min(t.screenX,e):t.screenX,n=Math.max(t.screenX,n),r=null!=r?Math.min(t.screenY,r):t.screenY,o=Math.max(t.screenY,o)}));var i=n-e||0,a=o-r||0;return Math.sqrt(Math.pow(i,2)+Math.pow(a,2))||0}(e);fl>0&&(this._scale=o/fl),fl=o}}return ul(t,[{key:"type",get:function(){return this._type},set:function(t){this._type=t}},{key:"offsetX",get:function(){return this._offsetX}},{key:"offsetY",get:function(){return this._offsetY}},{key:"altKey",get:function(){return this._altKey}},{key:"ctrlKey",get:function(){return this._ctrlKey}},{key:"shiftKey",get:function(){return this._shiftKey}},{key:"metaKey",get:function(){return this._metaKey}},{key:"touches",get:function(){return this._touches}},{key:"changedTouches",get:function(){return this._changedTouches}},{key:"scale",get:function(){return this._scale}},{key:"stopPropagation",value:function(){this._stop_=!0}},{key:"isPropagationStopped",value:function(){return this._stop_}}]),t}();function hl(t,e){return t.capture(e.offsetX,e.offsetY)}function pl(t,e,r){if(t&&t.app&&(!t.app.isViewMode||!t.hidden)){r instanceof ll&&e===r.type||(r=new ll(r,e));var n="on"+e;t[n]&&t[n](r),r.isPropagationStopped()||t.trigger(e,r)}}var yl=function(){function t(e,r){var n=this;al(this,t),this.container=e,this.html_element=r,this.status=0,this.last_target=null,this.gesture_handlers=No.map((function(t){return n.gestureHandlerBuilder(t)})),this.keyevent_handlers=Fo.map((function(t){return n.keyeventHandlerBuilder(t)})),No.forEach((function(t,e){return r.addEventListener(t,n.gesture_handlers[e])})),Fo.forEach((function(t,e){return r.addEventListener(t,n.keyevent_handlers[e])})),r.ondragover=this.gestureHandlerBuilder("dragover"),r.ondrop=this.gestureHandlerBuilder("drop"),r.tabIndex=1}return ul(t,[{key:"dispose",value:function(){var t=this;this.last_enter_target&&pl(this.last_enter_target,"mouseleave",new CustomEvent("mouseleave")),No.forEach((function(e,r){return t.html_element.removeEventListener(e,t.gesture_handlers[r])})),Fo.forEach((function(e,r){return t.html_element.removeEventListener(e,t.keyevent_handlers[r])})),delete this.gesture_handlers,delete this.keyevent_handlers,delete this.last_target}},{key:"gestureHandlerBuilder",value:function(t){var e=this["on".concat(t)].bind(this);return function(t){return e(new ll(t))&&t.preventDefault(),!1}}},{key:"keyeventHandlerBuilder",value:function(t){return this["on".concat(t)].bind(this)}},{key:"ondragover",value:function(t){return pl(hl(this.container,t),t.type,t),!1}},{key:"ondrop",value:function(t){return pl(hl(this.container,t),t.type,t),!1}},{key:"ondblclick",value:function(t){return pl(hl(this.container,t),t.type,t),this.last_target=null,!1}},{key:"onkeydown",value:function(t){return this.container.trigger(t.type,t),!1}},{key:"onkeyup",value:function(t){return this.container.trigger(t.type,t),!1}},{key:"onmousemove",value:function(t){switch(this.status){case 1:var e=t.offsetX-this.__dragstart_e.offsetX,r=t.offsetY-this.__dragstart_e.offsetY;if(e*e+r*r<16)break;this.status=2,pl(this.last_target,"dragstart",this.__dragstart_e),this.__dragmove_e=t,pl(this.last_target,"dragmove",t);break;case 2:this.__dragmove_e=t,pl(this.last_target,"dragmove",t);break;default:var n=hl(this.container,t);this.last_enter_target!==n&&(this.last_enter_target&&pl(this.last_enter_target,"mouseleave",t),n&&pl(n,"mouseenter",t),this.last_enter_target=n),pl(n,t.type,t),this.last_target=n}return!1}},{key:"onmousedown",value:function(t){if(2===this.status)pl(this.last_target,"dragend",t),this.last_target=null,this.status=0;else{var e=hl(this.container,t);this.last_target=e,this.status=1,this.__dragstart_e=t,pl(e,t.type,t)}return!1}},{key:"onmouseup",value:function(t){if(2===this.status)pl(this.last_target,"dragend",t);else{var e=hl(this.container,t);pl(e,t.type,t),this.last_target===e&&pl(e,"click",t)}return this.last_target=null,this.status=0,!1}},{key:"onmouseout",value:function(t){var e=hl(this.container,t);if(2===this.status)pl(this.last_target,"dragend",t);else{if(this.last_target&&this.last_target===e)return;this.last_enter_target&&(pl(this.last_enter_target,"mouseleave",t),delete this.last_enter_target)}return this.last_target=null,this.status=0,!1}},{key:"ontouchstart",value:function(t){var e=this,r=hl(this.container,t);return this.last_target=r,this.status=1,this.touchPoints||(this.touchPoints=[]),this.touchPoints.push(t.changedTouches[0]),this.holdTimer=setTimeout((function(){e.status=0,pl(e.last_target,"hold",t),delete e.holdTimer}),500),pl(r,t.type,t),!1}},{key:"ontouchmove",value:function(t){var e=this;if(!t.touches||!t.changedTouches)return pl(this.last_target,"dragstart",t),pl(this.last_target,"dragmove",t),!1;var r=hl(this.container,t);switch(this.status){case 1:Array.from(t.changedTouches).forEach((function(t){var r=e.touchPoints.find((function(e){return e.identifier===t.identifier}));if(r){var n=r.clientX-t.clientX,o=r.clientY-t.clientY;return Math.sqrt(Math.pow(n,2)+Math.pow(o,2))>=16?(e.status=2,void(e.holdTimer&&(clearTimeout(e.holdTimer),delete e.holdTimer))):void 0}}));break;case 2:if(this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer),2===t.changedTouches.length&&null!=t.scale&&1!==t.scale&&(t.scale<.9||t.scale>1.1))return pl(this.last_target,"pinch",t),!1;pl(this.last_target,"pan",t),r=this.last_target;break;default:this.last_enter_target!==r&&(this.last_enter_target&&pl(this.last_enter_target,"mouseleave",t),r&&pl(r,"mouseenter",t),this.last_enter_target=r),this.last_target=r}return pl(r,"touchmove",t),!1}},{key:"ontouchend",value:function(t){var e=hl(this.container,t);switch(this.status){case 2:e=this.last_target;break;case 1:var r=performance.now(),n=r-this.touchedAt;this.holdTimer&&(clearTimeout(this.holdTimer),delete this.holdTimer,pl(e,n<500?"doubletap":"tap",t),this.touchedAt=r)}pl(e,"touchend",t);var o=this.touchPoints.findIndex((function(e){return e.identifier===t.changedTouches[0].identifier}));return this.touchPoints.splice(o,1),this.last_target=null,this.status=0,!1}},{key:"onwheel",value:function(t){return pl(hl(this.container,t),t.type,t),!1}}]),t}(),dl={};const vl={register:function(t,e){dl[t]=e},unregister:function(t){delete dl[t]},get:function(t){return dl[t]}};function gl(t){if(t.hasTextProperty&&!t.textHidden){var e=t.model,r=e.text,n=void 0===r?"":r,o=e.bold,i=void 0===o?zo.BOLD:o,a=e.italic,s=void 0===a?zo.ITALIC:a,u=e.textWrap,c=void 0===u?zo.TEXT_WRAP:u,f=e.fontFamily,l=void 0===f?zo.FONT_FAMILY:f,h=e.fontColor,p=void 0===h?zo.FONT_COLOR:h,y=e.textAlign,d=void 0===y?zo.TEXT_ALIGN:y,v=e.textBaseline,g=void 0===v?zo.TEXT_BASELINE:v,b=e.fontSize,m=void 0===b?zo.FONT_SIZE:b,w=e.lineHeight,x=void 0===w?1.2*m:w,k=t.textBounds,S=k.left,_=k.top,O=k.width,E=k.height;m||(m=zo.FONT_SIZE),x||(x=1.2*m),t.textHidden=!0;var A=document.createElement("textarea");No.forEach((function(t){A.addEventListener(t,(function(t){t.stopPropagation()}),!0)}));var P=t.transcoordS2C(S,_),j=function(t){for(var e=0,r=1,n=t;n;){e+=n.get("rotation")||0;var o=n.get("scale")||{x:1,y:1},i=o.x,a=o.y;r*=Math.max(i,a)||1,n=n.parent}return{rotation:e,scale:r}}(t),T=j.rotation,M=j.scale;switch(A.style.position="absolute",A.style.width=O+"px",A.style.height=E+"px",A.value=n,A.style.fontFamily=l,A.style.fontSize=m+"px",A.style.lineHeight=x+"px",A.style.overflow="hidden",A.style.resize="none",A.style.outline="none",A.style.border=0,A.style.backgroundColor="transparent",A.style.display="inline-block",A.style.color=p,i&&(A.style.fontWeight="bold"),s&&(A.style.fontStyle="italic"),d){case"right":case"end":A.style.textAlign="right";break;case"justify":A.style.textAlign="justify";break;case"left":case"start":A.style.textAlign="left";break;default:A.style.textAlign="center"}var R=[i,s,m+"px",l].filter(Boolean).join(" ");B(n);var I=t.root.target_element;I.appendChild(A),A.select();var C,L=!1;A.addEventListener("keydown",(function(t){t.stopPropagation(),"Escape"!=t.code&&(t.shiftKey||"Enter"!=t.code&&"NumpadEnter"!=t.code)?setTimeout((function(){B(A.value)})):(L=C.skipUpdate="Escape"==t.code,document.createEvent?A.dispatchEvent(C):A.fireEvent(C.eventType,C))})),document.createEvent?(C=document.createEvent("HTMLEvents")).initEvent("blur",!0,!1):(C=document.createEventObject()).eventType="blur";var D=t.root.selected;A.addEventListener("blur",(function e(r){t.root.selected=D,t.textHidden=!1,A.removeEventListener("blur",e,!1),A.parentElement&&A.parentElement.removeChild(A),I.focus(),r.skipUpdate||L||t.app.commander.execute(new Du({changes:[{component:t,before:{text:n},after:{text:A.value}}]}))}),!1)}function B(e){var r={left:0,top:0},n=x*function(t,e,r,n){var o,i=t.getContext();return i.save(),i.font=r,o=xi(i,e,n,t.get("textWrap")).length,i.restore(),o}(t,e,R,O);switch(A.style.height=n+"px",g){case"top":case"hanging":break;case"bottom":case"alphabetic":r.top=E-n;break;default:r.top=E/2-n/2}if(!c){var o=function(t,e,r,n){var o=e.split("\n"),i=n,a=t.getContext();return a.save(),a.font=r,o.forEach((function(t){var e=a.measureText(t).width;e>i&&(i=e)})),a.restore(),i}(t,e,R,O);switch(A.style.width=o+"px",d){case"right":case"end":r.left=O-o;break;case"left":case"start":break;default:r.left=(O-o)/2}}A.style.marginLeft=r.left+"px",A.style.marginTop=r.top+"px";var i="translate(".concat(P.x,"px, ").concat(P.y,"px) scale(").concat(M,") rotate(").concat(T,"rad)");["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){A.style[t+"transform"]=i,A.style[t+"transform-origin"]="".concat(-r.left,"px ").concat(-r.top,"px")}))}}vl.register("text-editor",{"(root)":{"(self)":{keydown:function(t,e){e.origin;var r=e.deliverer.selected;return!(1!==r.length||!r[0].hasTextProperty||"Enter"!=t.code&&"NumpadEnter"!=t.code||(gl(r[0]),t.preventDefault(),0))}}},"model-layer":{"(descendant)":{dblclick:function(t,e){gl(e.origin)}}}});var bl,ml,wl,xl=Ni((function(t,e,r){if(r)t.focused=null;else{var n=[];e[0].parent.isGroup()?t.focused=e[0].parent:(e.forEach((function(t){t.path.forEach((function(e){n.push(t.transcoordS2T(e.x,e.y))}))})),t.focused=t.capturePath(n,e))}}),300);vl.register("move-handler",{"model-layer":{"(descendant)":{dragstart:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected,i=n.selected.filter((function(t){return!t.stuck}));if(o.length!==i.length&&(o=n.selected=i),0!=o.length){var a=o[0].transcoordC2S(t.offsetX,t.offsetY);if(a=o[0].transcoordS2P(a.x,a.y),this.last_pos=a,this.direction=0,n.focused=o[0].parent,t.altKey){var s=[],u=new Map;n.selected=n.selected.filter((function(t){return!t.isRootModel()})).map((function(t){var e=rc(t,(function(t){var e=n.root.getNewRefid();return void 0!==t&&u.set(t,e),e}));return s.push({component:e,to_container:t.parent}),e})).map((function(t){return t.replaceRefids(u),t})),s.forEach((function(t){var e=t.component;t.to_container.addComponent(e)})),this.duplicates=n.selected.map((function(t){return{component:t}}))}else this.changes=Du.before(o)}}},dragmove:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected;if(0!=o.length){var i=o[0].transcoordC2S(t.offsetX,t.offsetY),a=i.x,s=i.y,u=o[0].transcoordS2P(a,s);t.shiftKey?2==this.direction&&(this.direction=0):this.direction=2;var c=u.x-this.last_pos.x,f=u.y-this.last_pos.y;if(0==this.direction){if(c*c+f*f<25)return;Math.abs(c)>Math.abs(f)?this.direction=3:this.direction=4}3==this.direction?f=0:4==this.direction&&(c=0),o.forEach((function(t){t.move({x:c,y:f},1===o.length)})),this.last_pos=u,xl(n,o)}}},dragend:function(t,e){var r=e.origin,n=e.deliverer;if(!r.stuck){var o=n.selected;if(0!=o.length){var i=o[0].parent,a=n.focused||e.deliverer;if(this.changes&&!a.isGroup())if(a&&a!==i){var s=this.changes.map((function(t){var e=t.component;return t.before,{component:e,to_container:a}}));n.app.commander.execute(new Zu({changes:s}))}else Du.after(this.changes,n.app.commander);else if(this.duplicates){this.duplicates=this.duplicates.map((function(t){return t.to_container=a,t}));var u=new Zu({changes:this.duplicates});n.app.commander.execute(u)}o.forEach((function(t){t.parent&&t.parent.calculateBounds&&t.parent.calculateBounds()})),this.last_pos=null,this.changes=null,this.duplicates=null,xl(n,o,!0)}}}}},"(root)":{"(self)":{keydown:function(t,e){var r=e.origin,n=e.deliverer,o={},i=t.shiftKey?r.rootModel.MPP:1;switch(t.which){case 37:o.x=-i,o.y=0;break;case 38:o.x=0,o.y=-i;break;case 39:o.x=i,o.y=0;break;case 40:o.x=0,o.y=i;break;default:return}var a=n.selected;Du.around(n.app.commander,(function(){a.forEach((function(t){!t.stuck&&t.move(o,!1)}))}))}}}});var kl=Fi((function(){var t=wl,e=t.x,r=t.y,n=ml.deref();n&&(n.rootModel.move({x:e-bl.x,y:r-bl.y},!1),bl={x:e,y:r})}),60,{leading:!0,trailing:!0});function Sl(t){return Sl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Sl(t)}function _l(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=jl(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){s=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(s)throw i}}}}function Ol(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(t,e)||jl(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function El(){El=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,o){var i=e&&e.prototype instanceof h?e:h,a=Object.create(i.prototype),s=new O(o||[]);return n(a,"_invoke",{value:x(t,r,s)}),a}function f(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var l={};function h(){}function p(){}function y(){}var d={};u(d,i,(function(){return this}));var v=Object.getPrototypeOf,g=v&&v(v(E([])));g&&g!==e&&r.call(g,i)&&(d=g);var b=y.prototype=h.prototype=Object.create(d);function m(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function w(t,e){function o(n,i,a,s){var u=f(t[n],t,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==Sl(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,s)}),(function(t){o("throw",t,a,s)})):e.resolve(l).then((function(t){c.value=t,a(c)}),(function(t){return o("throw",t,a,s)}))}s(u.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===l)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=f(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===l)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function k(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,k(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),l;var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,l;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,l):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,l)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function E(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(Sl(t)+" is not iterable")}return p.prototype=y,n(b,"constructor",{value:y,configurable:!0}),n(y,"constructor",{value:p,configurable:!0}),p.displayName=u(y,s,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===p||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,y):(t.__proto__=y,u(t,s,"GeneratorFunction")),t.prototype=Object.create(b),t},t.awrap=function(t){return{__await:t}},m(w.prototype),u(w.prototype,a,(function(){return this})),t.AsyncIterator=w,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new w(c(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},m(b),u(b,s,"Generator"),u(b,i,(function(){return this})),u(b,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=E,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,l):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),l},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),l}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:E(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),l}},t}function Al(t,e,r,n,o,i,a){try{var s=t[i](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,o)}function Pl(t){return function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function a(t){Al(i,n,o,a,s,"next",t)}function s(t){Al(i,n,o,a,s,"throw",t)}a(void 0)}))}}function jl(t,e){if(t){if("string"==typeof t)return Tl(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Tl(t,e):void 0}}function Tl(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Ml(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Sl(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Sl(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Sl(o)?o:String(o)),n)}var o}function Rl(){return Rl="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Ll(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Rl.apply(this,arguments)}function Il(t,e){return Il=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Il(t,e)}function Cl(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Ll(t){return Ll=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ll(t)}vl.register("shift-handler",{"model-layer":{"(all)":{dragstart:function(t,e){bl={x:t.offsetX,y:t.offsetY}},dragmove:function(t,e){ml=new WeakRef(e.deliverer),wl={x:t.offsetX,y:t.offsetY},kl()}}}}),vl.register("zoom-handler",{"model-layer":{"(all)":{wheel:function(t,e){if(0!=t.deltaY||0!=t.deltaX){var r=e.deliverer,n=t.deltaY<0?1:-1,o=r.get("scale")||{x:1,y:1},i=r.get("translate"),a=t.offsetX,s=t.offsetY,u=r.transcoordC2S(a,s),c=.1*n,f={x:o.x+c,y:o.y+c};if(!(n<0&&o.x<.2||n>0&&o.x>10)){r.set("scale",f);var l=r.transcoordC2S(a,s);r.set("translate",{x:i.x+(l.x-u.x)*f.x,y:i.y+(l.y-u.y)*f.y})}}}},"(self)":{dblclick:function(t,e){var r=e.origin;null==r||r.root.fit()}}}});var Dl=[],Bl=Ni((function(){Dl.forEach((function(t){t.resize()}))}),100);"undefined"!=typeof window&&window.addEventListener("resize",Bl);var Nl=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Il(t,e)}(u,t);var e,r,n,o,i,a,s=(i=u,a=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ll(i);if(a){var r=Ll(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Sl(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return Cl(t)}(this,t)});function u(t,e){var r;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,u),(r=s.call(this,Object.assign({type:"root",scale:{x:1,y:1}},t||{}),e))._maxRefid=0,t=t||{},r.fitMode=t.model&&t.model.fitMode,r._app=e,r.style=t.style,r.target_element=t.target_element,r.rebuildContentModel(r.model.model),Dl.push(Cl(r)),r}return e=u,r=[{key:"dispose",value:function(){Ka.hideAll(this),this._app&&this._app.dispose(),Rl(Ll(u.prototype),"dispose",this).call(this),this._disposeAllResources(),this.target_element=null,delete this._refresh_mapping_debouncer;var t=Dl.indexOf(this);t>=0&&Dl.splice(t,1),this.refidIndexMap.clear(),this._maxRefid=0}},{key:"isRoot",value:function(){return!0}},{key:"app",get:function(){return this._app}},{key:"target_element",get:function(){return this._target_element},set:function(t){this._ua_event_handler&&(this._ua_event_handler.dispose(),delete this._ua_event_handler),t&&(t.style.position="absolute",t.style.cursor="default",t.style.overflow="hidden",this._ua_event_handler=new yl(this,t)),this.forEach((function(e){return e.target=t})),this._target_element=t}},{key:"unitScale",get:function(){switch(this.model_layer&&this.model_layer.get("unit")){case"mm":case"cm":case"in":return this.app.PPM/10;default:return 1}}},{key:"addTemplate",value:function(t,e){var r=this.templateMap[t];r&&Zn("Template replaced (duplicated)",t,e,r),this.templateMap[t]=e,delete this.templatePrefixes}},{key:"removeTemplate",value:function(t,e){var r=this.templateMap[t];r!==e?$n("Removing template failed (different)",t,e,r):delete this.templateMap[t],delete this.templatePrefixes}},{key:"findTemplateFor",value:function(t){this.templatePrefixes||(this.templatePrefixes=Object.keys(this.templateMap).sort().reverse());var e=this.templatePrefixes.find((function(e){return t.startsWith(e)}));if(e)return this.templateMap[e]}},{key:"addIndex",value:function(t,e){var r,n=this.indexMap[t]||[];this.indexMap[t]=[].concat(function(t){if(Array.isArray(t))return Tl(t)}(r=n)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(r)||jl(r)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[e])}},{key:"removeIndex",value:function(t,e){var r=this.indexMap[t]||[],n=r.indexOf(e);-1==n?$n("Removing index failed (not found)",t,e):(r.splice(n,1),0==r.length&&delete this.indexMap[t])}},{key:"addRefidIndex",value:function(t,e){void 0===t&&(t=this.getNewRefid(),e.set("refid",t)),this._maxRefid=Math.max(t,this._maxRefid);var r=this.refidIndexMap.get(t);r&&Zn("Refid Index replaced (has not to be)",t,e,r),this.refidIndexMap.set(t,e)}},{key:"removeRefidIndex",value:function(t,e){if(null!=t){var r=this.refidIndexMap.get(t);r!==e?Zn("Refid Removing index failed (has not to be)",t,e,r):this.refidIndexMap.delete(t)}}},{key:"getNewRefid",value:function(){return this._maxRefid=(this._maxRefid||0)+1,this._maxRefid}},{key:"subscribe",value:(o=Pl(El().mark((function t(e,r){return El().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!(this._app.isViewMode&&e&&this._app)){t.next=4;break}return t.next=3,this._app.subscribe(e,r);case 3:r._subscription=t.sent;case 4:case"end":return t.stop()}}),t,this)}))),function(t,e){return o.apply(this,arguments)})},{key:"unsubscribe",value:(n=Pl(El().mark((function t(e,r){return El().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!r._subscription){t.next=4;break}return t.next=3,r._subscription.unsubscribe();case 3:delete r._subscription;case 4:case"end":return t.stop()}}),t)}))),function(t,e){return n.apply(this,arguments)})},{key:"findById",value:function(t){return(this.indexMap[t.replace(/^#/,"")]||[])[0]}},{key:"findAllById",value:function(t){return this.indexMap[t.replace(/^#/,"")]||[]}},{key:"findByRefid",value:function(t){return this.refidIndexMap.get(t)}},{key:"findOrCreate",value:function(t){var e=this.findAllById(t);if(!e&&this.app&&!this.app.isEditMode){var r=this.findTemplateFor(t);if(r){var n=Object.assign(Eo(r.hierarchy),{id:t,templatePrefix:""});return component=ec(n,this.app),this.model_layer.addComponent(component),[component]}}return e}},{key:"resize",value:function(){this.components.forEach((function(t){t.resize&&t.resize()})),this.invalidate()}},{key:"_disposeAllResources",value:function(){var t=this;this.selected=[],this._focused=null,this._ready=!1,this.eventEngine&&(this.assist_handlers&&this.assist_handlers.forEach((function(e){t.eventEngine.remove(e)})),this.eventEngine.dispose(),delete this.eventEngine),this.assist_layers&&this.assist_layers.forEach((function(e){e.dispose(),t.removeComponent(e)})),delete this.assist_layers,this.model_layer&&this.model_layer.dispose(),this.model_layer&&this.removeComponent(this.model_layer),delete this.model_layer,this.indexMap={},this.refidIndexMap=new Map,this.templateMap={}}},{key:"rebuildContentModel",value:function(t){var e=this;this._disposeAllResources(),this.eventEngine=new ol(this),(t=t||{}).type="model-layer",this.model_layer=ec(t,this.app),this.addComponent(this.model_layer),this.model_layer.target=this.target_element,this.assist_layers=(this.model.layers||[]).map((function(t){var r=ec(t,e.app);return e.addComponent(r),r.target=e.target_element,r})),this.assist_handlers=(this.model.handlers||[]).map((function(t){var r={};return e.eventEngine.add(r,vl.get(t)),r})),this._ready=!0,this.traverse((function(t){return t.ready()}))}},{key:"root",get:function(){return this}},{key:"anchors",get:function(){}},{key:"isReady",get:function(){return this._ready}},{key:"rootModel",get:function(){return this.model_layer}},{key:"stuck",get:function(){return!0}},{key:"data",get:function(){return Object.values(this.indexMap).reduce((function(t,e){var r=Ol(e,1)[0];return t[r.model.id]=r.data,t}),{})},set:function(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((function(r){return r.data=t[e]}))}}},{key:"dataByRefid",get:function(){var t,e={},r=_l(this.refidIndexMap.entries());try{for(r.s();!(t=r.n()).done;){var n=Ol(t.value,2),o=n[0],i=n[1];e[o]=i.data}}catch(t){r.e(t)}finally{r.f()}return e},set:function(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.data=t[e])}}},{key:"values",get:function(){return Object.values(this.indexMap).reduce((function(t,e){var r=Ol(e,1)[0];return t[r.model.id]=r.value,t}),{})},set:function(t){for(var e in t){var r=this.findOrCreate(e);r&&r.forEach((function(r){return r.value=t[e]}))}}},{key:"valuesByRefid",get:function(){var t,e={},r=_l(this.refidIndexMap.entries());try{for(r.s();!(t=r.n()).done;){var n=Ol(t.value,2),o=n[0],i=n[1];e[o]=i.value}}catch(t){r.e(t)}finally{r.f()}return e},set:function(t){for(var e in t){var r=this.findByRefid(Number(e));r&&(r.value=t[e])}}},{key:"selected",get:function(){return(this._selected||[]).filter((function(t){return t.parent}))},set:function(t){var e=this._selected;this._selected=t,this.trigger("selected",t,e)}},{key:"focused",get:function(){return this._focused},set:function(t){this._focused!==t&&(this._focused=t,this.invalidate())}},{key:"style",get:function(){return this._style},set:function(t){this._style=t,this._compiled_style=t}},{key:"hasTextProperty",get:function(){return!1}},{key:"render",value:function(){this.components.forEach((function(t){return t.draw()}))}},{key:"contains",value:function(t,e){return!0}},{key:"capturePath",value:function(t,e){return this.model_layer.capturePath(t,e)}},{key:"invalidate",value:function(){this.components.forEach((function(t){return t.invalidate()}))}},{key:"eventMap",get:function(){return{"(root)":{"(descendant)":{added:this.onadded,removed:this.onremoved,change:this.onchanged}}}}},{key:"refreshMappings",value:function(){if(!this._refresh_mapping_debouncer){if(this.disposed)return;this._refresh_mapping_debouncer=Ni((function t(e){e.executeMappings(),e.components&&e.components.forEach((function(e){return t(e)}))}),1e3)}this._refresh_mapping_debouncer(this.model_layer)}},{key:"_addTraverse",value:function(t){var e=this;t.components&&t.components.forEach((function(t){return e._addTraverse(t)}));var r=t.model,n=r.id,o=r.refid,i=r.tag,a=r.templatePrefix;this.addRefidIndex(o,t),n&&this.addIndex(n,t),i&&this.subscribe(i,t),a&&this.addTemplate(a,t);var s=mn({},t.eventMap,t.model.eventMap);this.eventEngine.add(t,s)}},{key:"_removeTraverse",value:function(t){var e=this;t.components&&t.components.forEach((function(t){return e._removeTraverse(t)}));var r=t.model,n=r.id,o=r.refid,i=r.tag,a=r.templatePrefix;this.removeRefidIndex(o,t),n&&this.removeIndex(n,t),i&&this.unsubscribe(i,t),a&&this.removeTemplate(a,t),this.eventEngine.remove(t)}},{key:"onadded",value:function(t,e){this._addTraverse(e),this.refreshMappings(),this.invalidate()}},{key:"onremoved",value:function(t,e){this._removeTraverse(e),this.invalidate()}},{key:"onchanged",value:function(t,e,r){e.templatePrefix&&this.removeTemplate(e.templatePrefix,r.origin),t.templatePrefix&&this.addTemplate(t.templatePrefix,r.origin),e.id&&this.removeIndex(e.id,r.origin),t.id&&this.addIndex(t.id,r.origin),e.tag&&this.unsubscribe(e.tag,r.origin),t.tag&&this.subscribe(t.tag,r.origin),e.id==t.id&&e.class==t.class||this.refreshMappings()}}],r&&Ml(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),u}(Ss);Object.assign(Nl.prototype,{fit:function(t){var e=this.model_layer.model,r=e.width,n=e.height,o=e.fitMode,i=this.target_element,a=this.model_layer;if(this.fitMode=t||this.fitMode||o||"ratio",r&&n&&i&&i.clientWidth&&i.clientHeight){switch(this.fitMode){case"center":!function(t,e,r){var n=t.unitScale,o=e.model,i=o.width,a=o.height;e.set("scale",{x:n,y:n}),e.set("translate",{x:Math.max((r.clientWidth-i*n)/2,0),y:Math.max((r.clientHeight-a*n)/2,0)})}(this,a,i);break;case"both":!function(t,e,r){var n=e.model,o=n.width,i=n.height,a=r.clientWidth,s=r.clientHeight;e.set("scale",{x:a/o,y:s/i}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"width":!function(t,e,r){var n=r.clientWidth/e.get("width");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"height":!function(t,e,r){var n=r.clientHeight/e.get("height");e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(0,a,i);break;case"ratio":!function(t,e,r){var n=e.model,o=n.width,i=n.height,a=r.clientWidth,s=r.clientHeight,u=a/o,c=s/i,f=Math.min(u,c);e.set("scale",{x:f,y:f}),e.set("translate",{x:(a-o*f)/2,y:(s-i*f)/2})}(0,a,i);break;default:!function(t,e,r){var n=t.unitScale;e.set("scale",{x:n,y:n}),e.set("translate",{x:0,y:0})}(this,a)}this.resize()}}}),da.memoize(Nl.prototype,"unitScale",!1);var Fl=13.3;function zl(t){return zl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},zl(t)}function Ul(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==zl(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==zl(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===zl(o)?o:String(o)),n)}var o}var Yl="$base_url",Gl=Math.PI/12,Hl=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._mode=e,this.screen=function(t){return void 0!==t&&(Fl=t),Fl}(),this._baseUrl="undefined"!=typeof window?window.location.origin:null,this._refProvider=r,this.isEditMode&&(this._rotateStep=Gl,this._rotateStepForced=!1)}var e,r;return e=t,(r=[{key:"dispose",value:function(){this._dataSubscriptionProvider&&this._dataSubscriptionProvider.dispose(),delete this._dataStorage}},{key:"_calcScreen",value:function(){var t={width:screen.width,height:screen.height};this._PPI=function(t,e,r,n){t>0||(t=1),e>0||(e=1),n||(n="d");var o=("d"==n?Math.sqrt(t*t+e*e):"w"==n?t:e)/r;return o>0?Math.round(o):0}(t.width,t.height,this.screen),this._PPM=this._PPI/25.4}},{key:"subscribe",value:function(t,e){var r;return null===(r=this._dataSubscriptionProvider)||void 0===r?void 0:r.subscribe(t,e)}},{key:"refProvider",get:function(){return this._refProvider}},{key:"dataSubscriptionProvider",get:function(){return this._dataSubscriptionProvider},set:function(t){this._dataSubscriptionProvider=t}},{key:"commander",get:function(){return this._commander},set:function(t){this._commander=t}},{key:"screen",get:function(){return this._screen},set:function(t){this._screen=t,this._calcScreen()}},{key:"DPPX",get:function(){return Bo}},{key:"PPI",get:function(){return this._PPI}},{key:"PPM",get:function(){return this._PPM}},{key:"mode",get:function(){return this._mode},set:function(t){var e=this._mode;e!==t&&(this._mode=t,this.trigger("mode",t,e))}},{key:"isViewMode",get:function(){return this._mode==Mo}},{key:"isEditMode",get:function(){return this._mode==Ro}},{key:"baseUrl",get:function(){return this._baseUrl},set:function(t){t&&this._baseUrl!=t&&(this._baseUrl=t)}},{key:"url",value:function(t){try{return(t.includes(Yl)?new URL(t.replace(Yl,this.baseUrl),this.baseUrl):new URL(t,location.origin)).href}catch(e){$n(e,t)}}},{key:"rotateStep",get:function(){return this._rotateStep},set:function(t){this._rotateStep=Number(t)||Gl}},{key:"rotateStepForced",get:function(){return this._rotateStepForced},set:function(t){this._rotateStepForced=!!t}},{key:"dataStorage",get:function(){return this._dataStorage},set:function(t){this._dataStorage=t}}])&&Ul(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Wl(t){return Wl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Wl(t)}function Xl(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Wl(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Wl(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Wl(o)?o:String(o)),n)}var o}Vn(Hl.prototype,qn.withEvent);var ql=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),!(e=Number(e))||e<=0?(Zn("TimeCapsule maxsize should be greater than 0.",e),this.maxsize=10):this.maxsize=e,this.reset(),r&&this.snapshot(r)}var e,r;return e=t,(r=[{key:"dispose",value:function(){this.reset()}},{key:"snapshot",value:function(t){this.q.splice(this.pos+1,this.q.length-(this.pos+1),t),this.q.length>this.maxsize&&this.q.splice(0,this.q.length-this.maxsize),this.pos=this.q.length-1}},{key:"forward",value:function(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.forwardable)return this.q[++this.pos];$n("Not forwardable.")}},{key:"backward",value:function(){if(this.snapshot_taker&&this.snapshot_taker.take(),this.backwardable)return this.q[--this.pos];$n("Not backwardable.")}},{key:"current",get:function(){if(-1!==this.pos)return this.q[this.pos];$n("Non state has been recorded.")}},{key:"length",get:function(){return this.q.length}},{key:"forwardable",get:function(){return this.pos<this.q.length-1}},{key:"backwardable",get:function(){return this.pos>0}},{key:"snapshot_taker",get:function(){return this._snapshot_taker},set:function(t){this._snapshot_taker=t}},{key:"reset",value:function(){this.q=[],this.pos=-1}}])&&Xl(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Vl(t){return Vl="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Vl(t)}function Ql(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Vl(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Vl(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Vl(o)?o:String(o)),n)}var o}var Kl=Ni((function(t){t.brake||t.take()}),1e3,{leading:!0,trailing:!1});function Jl(t){!t.brake&&t.dirty&&Kl(t)}var Zl=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.brake=!1,this.dirty=!1,this.state_holder=e,this.timecapsule=r,this.timecapsule.snapshot_taker=this}var e,r;return e=t,(r=[{key:"dispose",value:function(){delete this.state_holder,delete this.timecapsule}},{key:"touch",value:function(){this.dirty=!0,Jl(this)}},{key:"take",value:function(t){(this.dirty||t)&&(this.timecapsule.snapshot(this.state_holder.state),this.dirty=!1)}},{key:"brake",get:function(){return this._brake},set:function(t){this._brake=!!t,Jl(this)}}])&&Ql(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function $l(t){return $l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},$l(t)}function th(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==$l(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==$l(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===$l(o)?o:String(o)),n)}var o}function eh(t,e){var r=e.model_layer.get("scale"),n=e.model_layer.get("translate");if(t){var o=JSON.parse(t);o.scale=r,o.translate=n,e.rebuildContentModel(o)}}var rh=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.container=e,this.timecapsule=new ql(20);var r=this;this.snapshot_taker=new Zl({get state(){var t=r.container.model_layer.hierarchy;return JSON.stringify(t)}},this.timecapsule),this.snapshot_taker.take(!0)}var e,r;return e=t,(r=[{key:"dispose",value:function(){this.reset(),this.timecapsule&&this.timecapsule.dispose(),this.snapshot_taker&&this.snapshot_taker.dispose(),delete this.container,delete this.timecapsule,delete this.snapshot_taker}},{key:"execute",value:function(t,e){!1!==e&&t&&t.execute(),this.snapshot_taker.touch(),this.trigger("execute",t,!0,!1)}},{key:"undo",value:function(){this.timecapsule.backwardable&&(eh(this.timecapsule.backward(),this.container),this.trigger("undo",this.undoable(),this.redoable()))}},{key:"redo",value:function(){this.timecapsule.forwardable&&(eh(this.timecapsule.forward(),this.container),this.trigger("redo",this.undoable(),this.redoable()))}},{key:"undoable",value:function(){return this.timecapsule.backwardable}},{key:"redoable",value:function(){return this.timecapsule.forwardable}},{key:"reset",value:function(){this.timecapsule&&this.timecapsule.reset(),this.trigger("command-reset")}}])&&th(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();function nh(t){return nh="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},nh(t)}function oh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==nh(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==nh(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===nh(o)?o:String(o)),n)}var o}Vn(rh.prototype,qn.withEvent);var ih=new WeakSet,ah=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._container=e,this.app=e.app,this._commander=new rh(this._container),this.app.commander=this._commander,ih.add(this)}var e,r,n;return e=t,r=[{key:"add",value:function(){return nc.apply(this._container,arguments)}},{key:"duplicate",value:function(){return ic.apply(this._container,arguments)}},{key:"remove",value:function(){return ac.apply(this._container,arguments)}},{key:"animate",value:function(){return nn.apply(this,arguments)}},{key:"fullscreen",value:function(){return fc.apply(this._container,arguments)}},{key:"target",get:function(){return this._container.target_element},set:function(t){var e;if("string"==typeof t){if(!(e=document.getElementById(t)))throw"target element '".concat(t,"' is not exist");if(e.firstChild)throw"target element '".concat(t,"' already has children")}else e=t;e&&e.style&&(e.style.cursor="default"),this._container.target_element=e,this._container.invalidate()}},{key:"scale",get:function(){return this.root.get("scale")},set:function(t){this.root.set("scale",t)}},{key:"translate",get:function(){return this.root.get("translate")},set:function(t){this.root.set("translate",t)}},{key:"unit",get:function(){return this.root.get("unit")||"px"}},{key:"PPM",get:function(){return this.app.PPM}},{key:"PPI",get:function(){return this.app.PPI}},{key:"DPPX",get:function(){return this.app.DPPX}},{key:"unitScale",get:function(){return this._container.unitScale}},{key:"screen",get:function(){return this.app.screen},set:function(t){this.app.screen=t,this._container.resize()}},{key:"resize",value:function(){this._container.resize()}},{key:"release",value:function(){this.dispose()}},{key:"dispose",value:function(){this._commander&&this._commander.dispose(),this._container&&this._container.dispose()}},{key:"selected",get:function(){return this._container.selected.slice()},set:function(t){this._container.selected=t}},{key:"select",value:function(t){for(var e,r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];return this._container.selected=null===(e=this.root)||void 0===e?void 0:e.findAll.apply(e,[t].concat(n)),this.selected}},{key:"commander",get:function(){return this._commander}},{key:"undo",value:function(){this.commander.undo()}},{key:"redo",value:function(){this.commander.redo()}},{key:"cut",value:function(){return pc.apply(this._container,arguments)}},{key:"copy",value:function(){return hc.apply(this._container,arguments)}},{key:"paste",value:function(){return yc.apply(this._container,arguments)}},{key:"undoableChange",value:function(){return Cc.apply(this._container,arguments)}},{key:"change",value:function(){return Ic.apply(this.root,arguments)}},{key:"model",get:function(){return this.root.hierarchy},set:function(t){this._container.rebuildContentModel(t)}},{key:"rootContainer",get:function(){return this._container}},{key:"root",get:function(){var t;return null===(t=this._container)||void 0===t?void 0:t.model_layer}},{key:"findAll",value:function(){return this.root.findAll.apply(this.root,arguments)}},{key:"findFirst",value:function(){return this.root.findFirst.apply(this.root,arguments)}},{key:"findById",value:function(){return this._container.findById.apply(this._container,arguments)}},{key:"serialize",value:function(){return this.root.trim(),this.root.serialize.apply(this.root,arguments)}},{key:"align",value:function(){return Gu.apply(this._container,arguments)}},{key:"distribute",value:function(){return Xu.apply(this._container,arguments)}},{key:"move",value:function(){return $u.apply(this._container,arguments)}},{key:"zorder",value:function(){return tc.apply(this._container,arguments)}},{key:"symmetryX",value:function(){return Mc.apply(this._container,arguments)}},{key:"symmetryY",value:function(){return Rc.apply(this._container,arguments)}},{key:"on",value:function(){return sc.apply(this._container,arguments)}},{key:"once",value:function(){return uc.apply(this._container,arguments)}},{key:"off",value:function(){return this._container&&cc.apply(this._container,arguments)}},{key:"centerTo",value:function(t,e){return this.root.centerTo(t,e)}},{key:"mode",get:function(){return this.app.mode},set:function(t){void 0!==t&&(this.app.mode=t)}},{key:"toDataURL",value:function(){return Ec.apply(this._container,arguments)}},{key:"group",value:function(){return Ac.apply(this._container,arguments)}},{key:"ungroup",value:function(){return Pc.apply(this._container,arguments)}},{key:"fit",value:function(t){var e=this;this._container.once("redraw",(function(){return e._container.fit(t)})),this._container.invalidate()}},{key:"fitMode",get:function(){return this._container.fitMode}},{key:"ids",get:function(){return Lc.apply(this._container)}},{key:"data",get:function(){return this._container.data},set:function(t){this._container.data=t}},{key:"dataByRefid",get:function(){return this._container.dataByRefid},set:function(t){this._container.dataByRefid=t}},{key:"values",get:function(){return this._container.values},set:function(t){this._container.values=t}},{key:"valuesByRefid",get:function(){return this._container.valuesByRefid},set:function(t){this._container.valuesByRefid=t}},{key:"baseUrl",get:function(){return this.app.baseUrl},set:function(t){this.app.baseUrl=t}},{key:"startAddMode",value:function(){return oc.apply(this._container,arguments)}}],n=[{key:"residents",get:function(){return ih}},{key:"DPPX",get:function(){return Bo}}],r&&oh(e.prototype,r),n&&oh(e,n),Object.defineProperty(e,"prototype",{writable:!1}),t}();const sh=ah;function uh(t){return uh="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},uh(t)}function ch(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==uh(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==uh(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===uh(o)?o:String(o)),n)}var o}var fh=new(function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,r;return e=t,(r=[{key:"load",value:function(t){}},{key:"save",value:function(t,e){}},{key:"clear",value:function(t){}}])&&ch(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),t}());function lh(t){var e=t.target,r=t.model,n=t.style,o=t.layers,i=void 0===o?[]:o,a=t.handlers,s=void 0===a?[]:a,u=t.mode,c=void 0===u?Mo:u,f=t.refProvider,l=t.dataSubscriptionProvider,h=t.dataStorage,p=void 0===h?fh:h,y=t.baseUrl,d=t.fitMode,v=null;if("string"==typeof e){if(!(v=document.getElementById(e)))throw"target element '".concat(e,"' is not exist");if(v.firstChild)throw"target element '".concat(e,"' is not empty")}else v=e;v&&v.style&&(v.style.position="absolute",v.style.cursor="default",v.style.overflow="hidden");var g=new Hl(c,f);return g.baseUrl=y,g.dataSubscriptionProvider=l,g.dataStorage=p,new sh(new Nl({target_element:v,model:r,style:n,layers:i,handlers:s,fitMode:d},g))}function hh(t){return hh="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},hh(t)}function ph(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==hh(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==hh(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===hh(o)?o:String(o)),n)}var o}function yh(){return yh="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=vh(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},yh.apply(this,arguments)}function dh(t,e){return dh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},dh(t,e)}function vh(t){return vh=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},vh(t)}var gh=["mousemove","mouseup","mousedown","mouseout","wheel","tap","click","touchstart","touchmove","touchend","mouseenter","mouseleave","dragstart","dragmove","dragend","dblclick"];const bh=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&dh(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=vh(n);if(o){var r=vh(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===hh(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"isHTMLElement",value:function(){return!0}},{key:"isShadowable",value:function(){return!0}},{key:"element",get:function(){return this._element},set:function(t){this._element=t}},{key:"tagName",get:function(){return this.get("type")}},{key:"setElementProperties",value:function(t){throw new Error("Not Implemented Yet")}},{key:"createElement",value:function(){var t=this;this.element=document.createElement(this.tagName),this.element&&(this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),gh.forEach((function(e){t.element.addEventListener(e,t.userInputEventHandler.bind(t))})),Fo.forEach((function(e){t.element.addEventListener(e,t.userInputEventHandler.bind(t))})),this.oncreate_element&&this.oncreate_element(this.element))}},{key:"userInputEventHandler",value:function(t){pl(this,t.type,t),t.stopPropagation()}},{key:"reposition",value:function(){this.element&&Ci(this)}},{key:"disposeElement",value:function(){var t=this.element;t&&t.parentElement&&t.parentElement.removeChild(t),delete this.element}},{key:"ready",value:function(){yh(vh(a.prototype),"ready",this).call(this),!this.element&&this.createElement(),this.parent.isHTMLElement()?this.parent.element.appendChild(this.element):this.root.model_layer.overlay.appendChild(this.element),this.setElementProperties(this.element),this.reposition()}},{key:"dispose",value:function(){this.disposeElement(this),yh(vh(a.prototype),"dispose",this).call(this)}},{key:"hasTextProperty",get:function(){return!0}},{key:"textHidden",get:function(){return!0}},{key:"onchange",value:function(t,e){this.element&&this.setElementProperties(this.element),this.reposition()}},{key:"isDescendible",value:function(t){return t.isHTMLElement()}}])&&ph(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return e};function mh(t){return mh="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},mh(t)}function wh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==mh(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==mh(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===mh(o)?o:String(o)),n)}var o}function xh(t,e){return xh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},xh(t,e)}function kh(t){return kh=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},kh(t)}var Sh={x:1,y:1},_h={boxSizing:"border-box",margin:"0px",position:"absolute",outline:"none"},Oh={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"layout",label:"layout",name:"layoutOption"}],help:"scene/component/container"},Eh=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&xh(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=kh(n);if(o){var r=kh(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===mh(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"tagName",get:function(){return"div"}},{key:"nature",get:function(){return Oh}},{key:"setElementProperties",value:function(t){}},{key:"layout",get:function(){return za.get(this.get("layout"))||Ya}},{key:"reposition",value:function(){if(this.element){var t=this,e=t.state,r=e.id,n=e.class,o=e.scale,i=void 0===o?Sh:o,a=t.rotation,s=void 0===a?0:a,u=t.hidden,c=t.bounds,f=c.left,l=c.top,h=c.width,p=c.height,y=h/2,d=p/2,v=t.element;v.hidden=u,r&&(v.id=r),n&&(v.className=n),Object.assign(v.style,_h,{left:f+"px",top:l+"px",width:"0px",height:"0px",backgroundColor:"transparent"});var g=t.delta(),b=(i&&i.x||1)*g.sx,m=(i&&i.y||1)*g.sy,w=(s||0)+g.theta,x=g.tx||0,k=g.ty||0;["-webkit-","-moz-","-ms-","-o-",""].forEach((function(t){v.style[t+"transform"]="translate(".concat(x+y,"px, ").concat(k+d,"px) rotate(").concat(w,"rad) translate(").concat(-y,"px, ").concat(-d,"px) scale(").concat(b,", ").concat(m,") perspective(1px)")}))}}}],r&&wh(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(bh(Ss));da.register("container",Eh);var Ah=5,Ph=Math.sqrt(3);function jh(t,e,r,n,o){var i,a,s,u,c=Ah+o,f=r.x,l=r.y,h=n.x,p=n.y;if(Math.abs(f-h)>c&&Math.abs(l-p)>c){var y=(p-l)/(h-f),d=l-y*f;if(Math.abs(e-(y*t+d))>c)return!1}return f>h?(a=f,i=h):(a=h,i=f),l>p?(u=l,s=p):(u=p,s=l),!(a+Ah<t||i-Ah>t||u+Ah<e||s-Ah>e)}function Th(t,e,r){for(var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:2,o=0;o<r.length-1;o++)if(jh(t,e,r[o],r[o+1],n))return!0;return!1}function Mh(t,e,r,n){if("arrow"!=t.slice(-5))return r;r.x,r.y;var o=Math.atan2(n.y-r.y,n.x-r.x),i=1.5*e;return{x:r.x+Math.cos(o)*i,y:r.y+Math.sin(o)*i}}function Rh(t,e,r){var n=r.lineWidth,o=void 0===n?2:n,i=r.strokeStyle,a=void 0===i?"#000000":i,s=r.lineCap,u=void 0!==s&&s,c=r.alpha,f=void 0===c?1:c,l=r.begin,h=void 0===l?"none":l,p=r.end,y=void 0===p?"none":p,d=r.beginSize,v=void 0===d?"size5":d,g=r.endSize,b=void 0===g?"size5":g;if(("none"!=h||"none"!=y)&&(o=Number(o)||2,t.lineCap=u,t.lineWidth=o,t.strokeStyle=a,t.fillStyle=a,t.globalAlpha*=f,"none"!=h&&Ih(t,e[0],e[1],o,h,Ch(v,o)),"none"!=y)){var m=e.length;Ih(t,e[m-1],e[m-2],o,y,Ch(b,o))}}function Ih(t,e,r,n,o,i){var a=e.x,s=e.y,u=Math.atan2(r.y-s,r.x-a);switch(t.beginPath(),t.translate(a,s),t.rotate(u),o){case"oval":t.ellipse(0,0,i.X,i.Y,0,0,2*Math.PI),t.fill();break;case"diamond":t.moveTo(-i.X,0),t.lineTo(0,-i.Y),t.lineTo(i.X,0),t.lineTo(0,i.Y),t.fill();break;case"arrow":t.moveTo(0,0),t.lineTo(Ph*i.X,-i.Y),t.lineTo(Ph*i.X,i.Y),t.fill();break;case"sharp-arrow":t.moveTo(0,0),t.lineTo(Ph*i.X,-i.Y),t.lineTo(-i.X/1.5+Ph*i.X,0),t.lineTo(Ph*i.X,i.Y),t.fill();break;case"open-arrow":t.moveTo(Ph*i.X+n,-i.Y),t.lineTo(n,0),t.lineTo(Ph*i.X+n,i.Y),t.stroke()}t.rotate(-u),t.translate(-a,-s),t.closePath()}function Ch(t,e){var r={};switch(e*=1.2,t){case"size1":r.X=e,r.Y=e;break;case"size2":r.X=1.5*e,r.Y=e;break;case"size3":r.X=2*e,r.Y=e;break;case"size4":r.X=e,r.Y=1.5*e;break;case"size5":default:r.X=1.5*e,r.Y=1.5*e;break;case"size6":r.X=2*e,r.Y=1.5*e;break;case"size7":r.X=e,r.Y=2*e;break;case"size8":r.X=1.5*e,r.Y=2*e;break;case"size9":r.X=2*e,r.Y=2*e}return r}function Lh(t,e){if(t){if("string"==typeof t)return Dh(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Dh(t,e):void 0}}function Dh(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Bh(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function Nh(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Bh(Object(r),!0).forEach((function(e){Fh(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Bh(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Fh(t,e,r){return(e=qh(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function zh(){return zh="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Yh(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},zh.apply(this,arguments)}function Uh(t,e){return Uh=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Uh(t,e)}function Yh(t){return Yh=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Yh(t)}function Gh(t){return Gh="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Gh(t)}function Hh(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Wh(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,qh(n.key),n)}}function Xh(t,e,r){return e&&Wh(t.prototype,e),r&&Wh(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function qh(t){var e=function(t,e){if("object"!==Gh(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Gh(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===Gh(e)?e:String(e)}var Vh="N",Qh="S",Kh="E",Jh="W",Zh=function(){function t(e){var r=e.component,n=e.anchor,o=e.position,i=e.self;Hh(this,t),this.component=r,this._anchorName=n,this._position=o,this.self=i}return Xh(t,[{key:"position",get:function(){var t=this.anchor;if(t){var e=t.position,r=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(r.x,r.y)}return this._position},set:function(t){var e=t.x,r=t.y;this._position={x:e,y:r}}},{key:"anchor",get:function(){var t;return null===(t=this.component)||void 0===t?void 0:t.findAnchor(this._anchorName)}},{key:"direction",get:function(){var t=this.component.bounds,e=this.anchor;if(!e)return Kh;var r=e.position;return r.y<=t.top?Vh:r.y>=t.top+t.height?Qh:r.x<=t.left?Jh:Kh}},{key:"boundaryPosition",get:function(){var t=this.anchor;if(t){var e=t.position,r=0,n=0;switch(this.direction){case Qh:n=20;break;case Vh:n=-20;break;case Jh:r=-20;break;default:r=20}e={x:e.x+r,y:e.y+n};var o=this.component.transcoordS2T(e.x,e.y);return this.self.transcoordT2P(o.x,o.y)}}}]),t}(),$h=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Uh(t,e)}(o,t);var e,r,n=(e=o,r=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,n=Yh(e);if(r){var o=Yh(this).constructor;t=Reflect.construct(n,arguments,o)}else t=n.apply(this,arguments);return function(t,e){if(e&&("object"===Gh(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function o(){return Hh(this,o),n.apply(this,arguments)}return Xh(o,[{key:"isLine",value:function(){return!0}},{key:"replaceRefids",value:function(t){var e=this;["from","to"].forEach((function(r){var n=e.get(r);if(null!=n&&n.component){var o=t.get(n.component)||n.component;e.set(r,Nh(Nh({},n),{},{component:o}))}}))}},{key:"fromEnd",get:function(){if(this.parent&&!this._fromEnd){var t,e=this.getState("from")||{},r=e.component,n=e.anchor,o=e.position;if(!r)return;var i=null===(t=this.root)||void 0===t?void 0:t.findByRefid(r);if(!i)return;this._fromEnd=new Zh({component:i,fromto:"from",anchor:n,position:o,self:this})}return this._fromEnd}},{key:"from",get:function(){return this.getState("from")},set:function(t){delete this._fromEnd,this.set("from",t)}},{key:"toEnd",get:function(){if(this.parent&&!this._toEnd){var t,e=this.getState("to")||{},r=e.component,n=e.anchor,o=e.position;if(!r)return;var i=null===(t=this.root)||void 0===t?void 0:t.findByRefid(r);if(!i)return;this._toEnd=new Zh({component:i,fromto:"to",anchor:n,position:o,self:this})}return this._toEnd}},{key:"to",get:function(){return this.getState("to")},set:function(t){delete this._toEnd,this.set("to",t)}},{key:"move",value:function(t,e){var r,n,i,a,s=t.x,u=t.y;e&&(this.from={position:(null===(r=this._fromEnd)||void 0===r?void 0:r.position)||(null===(n=this.getState("from"))||void 0===n?void 0:n.position)||{x:0,y:0}},this.to={position:(null===(i=this._toEnd)||void 0===i?void 0:i.position)||(null===(a=this.getState("to"))||void 0===a?void 0:a.position)||{x:0,y:0}}),zh(Yh(o.prototype),"move",this).call(this,{x:s,y:u},e)}},{key:"render",value:function(t){var e=this.state,r=e.begin,n=void 0===r?"none":r,o=e.end,i=void 0===o?"none":o,a=e.lineWidth,s=e.round,u=void 0===s?0:s,c=this.drawPath;Rh(t,c,this.state),t.beginPath();var f,l=Mh(n,a,c[0],c[1]),h=Mh(i,a,c[c.length-1],c[c.length-2]);c=[l].concat(function(t){if(Array.isArray(t))return Dh(t)}(f=c.slice(1,-1))||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(f)||Lh(f)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[h]);var p={x:l.x,y:l.y};t.moveTo(l.x,l.y);for(var y=1;y<c.length;y++){var d=p;p=c[y];var v=c[y+1];if(d.x!==p.x||d.y!==p.y){if(!v){t.lineTo(p.x,p.y);break}var g,b=0!==(g=Math.sqrt((d.x-p.x)*(d.x-p.x)+(d.y-p.y)*(d.y-p.y)))?Math.atan2(d.x-p.x,d.y-p.y):0,m=Math.sin(b)*Math.min(u,g/2)+p.x,w=Math.cos(b)*Math.min(u,g/2)+p.y,x=u>0||0!==g?{x:m,y:w}:p;b=0!==(g=Math.sqrt((v.x-p.x)*(v.x-p.x)+(v.y-p.y)*(v.y-p.y)))?Math.atan2(v.x-p.x,v.y-p.y):0,m=Math.sin(b)*Math.min(u,g/2)+p.x,w=Math.cos(b)*Math.min(u,g/2)+p.y;var k=u>0||0!==g?{x:m,y:w}:p;t.lineTo(x.x,x.y),u>0&&t.quadraticCurveTo(p.x,p.y,k.x,k.y)}}this.drawStroke(t)}},{key:"contains",value:function(t,e){var r=this.state.lineWidth;return Th(t,e,this.drawPath,r)}},{key:"resizable",get:function(){return!1}},{key:"mutable",get:function(){return!0}},{key:"rotatable",get:function(){return!1}},{key:"path",get:function(){var t,e,r=this.state,n=r.from,o=r.to,i=this.state,a=i.x1,s=i.y1,u=i.x2,c=i.y2;return[(null===(t=this.fromEnd)||void 0===t?void 0:t.position)||(null==n?void 0:n.position)||{x:a,y:s},(null===(e=this.toEnd)||void 0===e?void 0:e.position)||(null==o?void 0:o.position)||{x:u,y:c}]},set:function(t){var e,r,n=(r=2,function(t){if(Array.isArray(t))return t}(e=t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],u=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);u=!0);}catch(t){c=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return s}}(e,r)||Lh(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),o=n[0],i=n[1],a=this.state,s=a.from,u=a.to;delete this._fromEnd,delete this._toEnd,this.set({from:Nh(Nh({},s),{},{position:o}),to:Nh(Nh({},u),{},{position:i})})}},{key:"textBounds",get:function(){for(var t,e,r=this.drawPath,n=0,o=1;o<r.length;o++){var i=r[o-1],a=r[o],s=(i.x-a.x)*(i.x-a.x)+(i.y-a.y)*(i.y-a.y);s>n&&(n=Math.ceil(s),t=i,e=a)}var u=this.state,c=u.paddingTop,f=u.paddingLeft,l=u.paddingRight,h=u.paddingBottom;return h||(h=0),c||(c=0),f||(f=0),l||(l=0),{left:Math.min(t.x,e.x)+f,top:Math.min(t.y,e.y)+c,width:Math.max(Math.abs(t.x-e.x)-f-l,0),height:Math.max(Math.abs(t.y-e.y)-c-h,0)}}},{key:"decorators",get:function(){return["decotag"]}}]),o}(da);function tp(t){return tp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},tp(t)}function ep(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==tp(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==tp(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===tp(o)?o:String(o)),n)}var o}function rp(t,e){return rp=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},rp(t,e)}function np(t){return np=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},np(t)}$h.getTipNeckPos=Mh,$h.containedInPath=Th,$h.drawEndTips=Rh,da.register("line",$h);var op={mutable:!1,resizable:!0,rotatable:!0,properties:[],"value-property":"text"},ip=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&rp(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=np(n);if(o){var r=np(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===tp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"is3dish",value:function(){return!0}},{key:"render",value:function(t){var e=this.state,r=e.cx,n=e.cy,o=e.rx,i=e.ry,a=e.startAngle,s=e.endAngle,u=e.anticlockwise;t.beginPath(),t.ellipse(r,n,Math.abs(o),Math.abs(i),0,a||0,s||2*Math.PI,u)}},{key:"path",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.rx,o=t.ry;return[{x:e-n,y:r-o},{x:e+n,y:r-o},{x:e+n,y:r+o},{x:e-n,y:r+o}]},set:function(t){var e=t[0],r=t[2];this.set({cx:e.x+(r.x-e.x)/2,cy:e.y+(r.y-e.y)/2,rx:(r.x-e.x)/2,ry:(r.y-e.y)/2})}},{key:"contains",value:function(t,e){var r=this.state,n=r.cx,o=r.cy,i=(t-n)/(2*r.rx-.5),a=(e-o)/(2*r.ry-.5);return i*i+a*a<.25}},{key:"outline",value:function(t){return function(t,e){var r=t.model,n=r.cx,o=r.cy,i=r.rx,a=r.ry,s=2*Math.PI*e,u=n+i*Math.cos(s),c=o+a*Math.sin(s);return t.transcoordS2T(u,c)}(this,t)}},{key:"anchors",get:function(){return function(t){var e=t.bounds,r=e.left,n=e.top,o=e.width,i=e.height,a=r+o/2,s=n+i/2;return[{name:"TOP",position:{x:a,y:n}},{name:"RIGHT",position:{x:r+o,y:s}},{name:"BOTTOM",position:{x:a,y:n+i}},{name:"LEFT",position:{x:r,y:s}}]}(this)}},{key:"nature",get:function(){return op}}],r&&ep(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Xs(xa));function ap(t){return ap="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ap(t)}function sp(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==ap(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==ap(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===ap(o)?o:String(o)),n)}var o}function up(t,e){return up=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},up(t,e)}function cp(t){return cp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},cp(t)}da.memoize(ip.prototype,"path",!1),da.register("ellipse",ip);var fp={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e+1,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e+1]=t}))},ondragend:function(t,e,r){}},lp={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polygon"},hp=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&up(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=cp(n);if(o){var r=cp(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===ap(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"is3dish",value:function(){return!0}},{key:"mutable",get:function(){return!0}},{key:"pathExtendable",get:function(){return!0}},{key:"path",get:function(){return this.state.path},set:function(t){this.set("path",t)}},{key:"contains",value:function(t,e){var r=this.state.path,n=!1;return r.forEach((function(o,i){var a=(i+r.length+1)%r.length,s=o.x,u=o.y,c=r[a].x,f=r[a].y;u>e!=f>e&&t<(c-s)*(e-u)/(f-u)+s&&(n=!n)})),n}},{key:"controls",get:function(){var t=this.path;return t.map((function(e,r){var n=t[r+1>=t.length?0:r+1];return{x:(e.x+n.x)/2,y:(e.y+n.y)/2,handler:fp}}))}},{key:"nature",get:function(){return lp}}])&&sp(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(xa);function pp(t){return pp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},pp(t)}function yp(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function dp(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?yp(Object(r),!0).forEach((function(e){vp(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):yp(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function vp(t,e,r){return(e=mp(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function gp(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function bp(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,mp(n.key),n)}}function mp(t){var e=function(t,e){if("object"!==pp(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==pp(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===pp(e)?e:String(e)}function wp(t,e){return wp=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},wp(t,e)}function xp(t){return xp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},xp(t)}da.memoize(hp.prototype,"controls",!1),da.register("polygon",hp);var kp={ondragstart:function(t,e,r){r.mutatePath(null,(function(r){r.splice(e,0,t)}))},ondragmove:function(t,e,r){r.mutatePath(null,(function(r){r[e]=t}))},ondragend:function(t,e,r){}},Sp={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/polyline"},_p=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&wp(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=xp(n);if(o){var r=xp(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===pp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"pathExtendable",get:function(){return!0}},{key:"path",get:function(){var t,e,r,n=this.state,o=n.from,i=n.to,a=this.state.path;return[(null===(t=this.fromEnd)||void 0===t?void 0:t.position)||(null==o?void 0:o.position)||a[0]].concat(function(t){if(Array.isArray(t))return gp(t)}(r=a.slice(1,-1))||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(r)||function(t,e){if(t){if("string"==typeof t)return gp(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?gp(t,e):void 0}}(r)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[(null===(e=this.toEnd)||void 0===e?void 0:e.position)||(null==i?void 0:i.position)||a[a.length-1]])},set:function(t){var e=this.state,r=e.from,n=e.to;delete this._fromEnd,delete this._toEnd,this.set({from:dp(dp({},r),{},{position:t[0]}),to:dp(dp({},n),{},{position:t[t.length-1]}),path:t})}},{key:"controls",get:function(){for(var t=this.path,e=[],r=0;r<t.length-1;r++){var n=t[r],o=t[r+1];0==r&&e.push({x:n.x,y:n.y,handler:kp}),e.push({x:(n.x+o.x)/2,y:(n.y+o.y)/2,handler:kp}),r==t.length-2&&e.push({x:o.x,y:o.y,handler:kp})}return e}},{key:"nature",get:function(){return Sp}}])&&bp(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}($h);function Op(t){return Op="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Op(t)}function Ep(t){return function(t){if(Array.isArray(t))return Ap(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return Ap(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Ap(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ap(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Pp(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function jp(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?Pp(Object(r),!0).forEach((function(e){Tp(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Pp(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function Tp(t,e,r){return(e=Rp(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function Mp(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Rp(n.key),n)}}function Rp(t){var e=function(t,e){if("object"!==Op(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Op(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===Op(e)?e:String(e)}function Ip(t,e){return Ip=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ip(t,e)}function Cp(t){return Cp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Cp(t)}da.register("polyline",_p);var Lp={mutable:!1,resizable:!1,rotatable:!1,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/ortholine"},Dp=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ip(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Cp(n);if(o){var r=Cp(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Op(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"pathExtendable",get:function(){return!1}},{key:"drawPath",get:function(){var t=this.path[0],e=this.path[1],r=this.fromEnd||{},n=r.component,o=r.direction,i=r.boundaryPosition,a=void 0===i?t:i,s=this.toEnd||{},u=s.component,c=s.direction,f=s.boundaryPosition,l=void 0===f?e:f,h=[a,l],p=[];a&&p.push(a);var y=null==n?void 0:n.bounds;if(y){var d=n.transcoordS2T(y.left,y.top);d=this.transcoordT2P(d.x,d.y),y=jp(jp({},y),{},{left:d.x,top:d.y})}var v=y?{left:y.left-20,top:y.top-20,width:y.width+40,height:y.height+40}:{left:a.x,top:a.y,width:0,height:0};y=y||v;var g=null==u?void 0:u.bounds;g&&(d=u.transcoordS2T(g.left,g.top),d=this.transcoordT2P(d.x,d.y),g=jp(jp({},g),{},{left:d.x,top:d.y}));var b=g?{left:g.left-20,top:g.top-20,width:g.width+40,height:g.height+40}:{left:l.x,top:l.y,width:0,height:0};g=g||b;var m,w,x,k,S,_,O,E,A,P,j=[v,b],T=v.left>b.left?b.left:v.left,M=v.top>b.top?b.top:v.top,R={left:T,top:M,width:v.left+v.width>b.left+b.width?v.left+v.width-T:b.left+b.width-T,height:v.top+v.height>b.top+b.height?v.top+v.height-M:b.top+b.height-M},I=0,C=0;y.left+y.width<g.left?(k=0,S=1,A=o,P=c,m=(y.left+y.width+g.left)/2,I=g.left-m):g.left+g.width<y.left&&(k=1,S=0,A=c,P=o,m=(y.left+g.width+g.left)/2,I=y.left-m),y.top+y.height<g.top?(x=0,_=1,O=o,E=c,w=(y.top+y.height+g.top)/2,C=g.top-w):g.top+g.height<y.top&&(x=1,_=0,O=c,E=o,w=(y.top+g.height+g.top)/2,C=y.top-w);var L=[];if(m&&I>C){switch(P){case Jh:switch(A){case Kh:L.push({x:m,y:h[k].y}),L.push({x:m,y:h[S].y});break;case Jh:var D=j[k].top+j[k].height/2>h[S].y?Math.min(j[k].top,h[S].y):Math.max(j[k].top+j[k].height,h[S].y);L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:h[S].y});break;case Vh:case Qh:D=A===Qh?Math.max(h[k].y,h[S].y):Math.min(h[k].y,h[S].y),L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:h[S].y});break;default:return this.path}break;case Kh:switch(A){case Kh:var B=D=h[k].y<h[S].y?Math.min(j[S].top,h[k].y):Math.max(j[S].top+j[S].height,h[k].y);break;case Jh:B=D=void 0!==w?w:h[k].y<h[S].y?R.top-.5*I:R.top+R.height+.5*I;break;case Qh:B=D=void 0!==w?Math.max(w,h[k].y):R.top+R.height;break;case Vh:B=D=w?Math.min(w,j[k].top):R.top;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;case Qh:switch(A){case Kh:D=h[k].y,B=h[k].y>h[S].y?h[k].y:j[S].top+j[S].height;break;case Jh:B=D=w?Math.max(w,j[S].top+j[S].height):R.top+R.height;break;case Qh:B=D=R.top+R.height;break;case Vh:D=w?Math.min(w,j[k].top):j[k].top,B=w?Math.max(w,j[S].top+j[S].height):j[S].top+j[S].height;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;case Vh:switch(A){case Kh:D=h[k].y,B=h[k].y<h[S].y?h[k].y:j[S].top;break;case Jh:B=D=w?Math.min(w,j[S].top):R.top;break;case Qh:D=void 0!==w?Math.max(w,h[k].y):h[k].y,B=void 0!==w?Math.min(w,h[S].y):h[S].y;break;case Vh:B=D=R.top;break;default:return this.path}L.push({x:h[k].x,y:D}),L.push({x:m,y:D}),L.push({x:m,y:B}),L.push({x:h[S].x,y:B});break;default:return this.path}p.push.apply(p,Ep(0===k?L:L.reverse()))}else if(w){switch(E){case Vh:switch(O){case Qh:L.push({x:h[x].x,y:w}),L.push({x:h[_].x,y:w});break;case Vh:var N=j[x].left+j[x].width/2>h[_].x?Math.min(j[x].left,h[_].x):Math.max(j[x].left+j[x].width,h[_].x);L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[_].x,y:w});break;case Jh:N=Math.min(h[x].x,h[_].x),L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[_].x,y:w});break;case Kh:N=Math.max(h[x].x,h[_].x),L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:h[_].x,y:w});break;default:return this.path}break;case Qh:switch(O){case Jh:var F=N=R.left;break;case Kh:F=N=void 0!==m?Math.max(m,h[x].x):R.left+R.width;break;case Vh:F=N=void 0!==m?m:h[x].x<h[_].x?R.left-.5*C:R.left+R.width+.5*C;break;case Qh:N=h[x].x,F=h[x].x<h[_].x?Math.min(j[_].left,h[x].x):Math.max(j[_].left+j[_].width,h[x].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[_].y});break;case Kh:switch(O){case Jh:N=void 0!==m?Math.min(m,h[x].x):h[x].x,F=void 0!==m?Math.max(m,h[_].x):h[_].x;break;case Kh:F=N=R.left+R.width;break;case Vh:F=N=void 0!==m?Math.max(m,h[_].x):R.left+R.width;break;case Qh:N=h[x].x,F=Math.max(j[_].left+j[_].width,h[x].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[_].y});break;case Jh:switch(O){case Jh:F=N=R.left;break;case Kh:N=void 0!==m?Math.max(m,h[x].x):h[x].x,F=void 0!==m?Math.min(m,h[_].x):h[_].x;break;case Vh:F=N=R.left;break;case Qh:N=h[x].x<h[_].x?Math.min(j[_].left,h[x].x):h[x].x,F=Math.min(N,h[_].x);break;default:return this.path}L.push({x:N,y:h[x].y}),L.push({x:N,y:w}),L.push({x:F,y:w}),L.push({x:F,y:h[_].y});break;default:return this.path}p.push.apply(p,Ep(0===x?L:L.reverse()))}else switch(o){case Vh:switch(c){case Vh:var z=R.top;p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case Qh:var U=R.left+R.width;p.push({x:U,y:h[0].y}),p.push({x:U,y:R.top+R.height}),p.push({x:h[1].x,y:R.top+R.height});break;case Kh:U=h[1].y<h[0].y&&h[1].x<h[0].x?h[0].x:R.left+R.width,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;case Jh:U=R.left,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;default:return this.path}break;case Qh:switch(c){case Vh:U=R.left+R.width,p.push({x:U,y:h[0].y}),p.push({x:U,y:R.top}),p.push({x:h[1].x,y:R.top});break;case Qh:case Kh:case Jh:z=R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;default:return this.path}break;case Jh:switch(c){case Vh:U=h[0].x>h[1].x&&h[0].y<h[1].y?h[1].x:R.left,z=h[0].x>h[1].x&&h[0].y<h[1].y?h[1].y:Math.min(R.top,h[0].y),p.push({x:U,y:h[0].y}),p.push({x:U,y:z}),p.push({x:h[1].x,y:z});break;case Qh:U=R.left,z=Math.max(R.top+R.height,h[0].y),p.push({x:U,y:h[0].y}),p.push({x:U,y:z}),p.push({x:h[1].x,y:z});break;case Kh:U=R.left+R.width,p.push({x:h[0].x,y:R.top}),p.push({x:U,y:R.top}),p.push({x:U,y:h[1].y});break;case Jh:U=R.left,p.push({x:U,y:h[0].y}),p.push({x:U,y:h[1].y});break;default:return this.path}break;case Kh:switch(c){case Vh:z=h[0].y<h[1].y&&h[0].x<h[1].x?h[0].y:R.top,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case Qh:z=h[0].y>h[1].y&&h[0].x<h[1].x?h[0].y:R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;case Kh:case Jh:z=R.top+R.height,p.push({x:h[0].x,y:z}),p.push({x:h[1].x,y:z});break;default:return this.path}break;default:return this.path}return l&&p.push(l),[t].concat(p,[e]).filter((function(t,e,r){if(0===e)return!0;var n=r[e-1];return t.x!==n.x||t.y!==n.y})).filter((function(t,e,r){if(0===e||e>=r.length-1)return!0;var n=r[e-1],o=r[e+1];return!(t.x===n.x&&t.x===o.x||t.y===n.y&&t.y===o.y)}))}},{key:"nature",get:function(){return Lp}}])&&Mp(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}($h);function Bp(t){return Bp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Bp(t)}function Np(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Bp(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Bp(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Bp(o)?o:String(o)),n)}var o}function Fp(){return Fp="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Up(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Fp.apply(this,arguments)}function zp(t,e){return zp=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},zp(t,e)}function Up(t){return Up=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Up(t)}da.register("ortholine",Dp);var Yp={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"image-selector",label:"image-src",name:"src",property:{displayField:"id",displayFullUrl:!0,baseUrlAlias:"$base_url",defaultStorage:"scene-image",storageFilters:{type:Array,value:[{name:"category",value:"image"}]},useUpload:!0}},{type:"select",label:"cross-origin",name:"crossOrigin",property:{options:["","anonymous","use-credentials"]}}],"value-property":"src",help:"scene/component/image-view"},Gp=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&zp(t,e)}(s,t);var e,r,n,o,i,a=(o=s,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Up(o);if(i){var r=Up(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Bp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),a.apply(this,arguments)}return e=s,n=[{key:"noimage",get:function(){return s.NOIMAGE||(s.NOIMAGE=new Image,s.NOIMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABIBAMAAAD7Se1QAAAAIVBMVEUAAABHcEwBAQEREREBAQEEBAQGBgYLCwsDAwMDAwMICAi6HF9tAAAAC3RSTlNNAEAERiMYCS41Eac10lYAAAEgSURBVHhe7dY9asQwEAXgh7DNertNiJy48pIitY3SB7bYdk0ukL1BDDmA9gZecoH4pmFQ3MQayUMguPBrNPD4wD9TCMvJmt3M/AtYwXOlXiWgqADVCUBD46MAnGhMBaCiUQmAm8VA/Eh/eWl9Fn5WcxD+OLuRrUYJDKLluwH2InACUgkoACSdADxQc50Bytadb9RkM0CT13TcvlCT1HFg8UTHvasuUVACCa3El6u2UdD8LFTlKhUFFgA+d3dj10aABkUN72N3jAADCrJq7PIIsPidcxBoTHIIAjMFmyCwmGYIAA1P9gFgfCANAOsDSccCDW+uLDB+kLGg94OkZoAGkwsDDAe2DOg5oPxAg03rBR88OHpBz4N8UVeHFSwma74BTW6Ge4rIRa4AAAAASUVORK5CYII="),s.NOIMAGE}}],(r=[{key:"dispose",value:function(){Fp(Up(s.prototype),"dispose",this).call(this),this._offcanvas=null,this._image=null}},{key:"render",value:function(t){var e=this.state,r=e.left,n=e.top,o=e.width,i=e.height,a=e.isGray,u=void 0!==a&&a,c=e.alpha,f=void 0===c?1:c,l=e.src;if(this.prepareIf(!this._image&&l),t.beginPath(),t.globalAlpha*=f,this._image&&this._image.complete)if(u&&this._offcanvas)t.drawImage(this._offcanvas,r,n,o,i);else try{t.drawImage(this._image,r,n,o,i)}catch(e){t.drawImage(s.noimage,r,n,o,i)}else!this.app.isViewMode&&t.drawImage(s.noimage,r,n,o,i)}},{key:"nature",get:function(){return Yp}},{key:"hasTextProperty",get:function(){return!1}},{key:"ready",value:function(){Fp(Up(s.prototype),"ready",this).call(this),this.prepareIf(!this._image&&this.state.src)}},{key:"prepare",value:function(t,e){var r=this,n=this.state,o=n.src,i=n.crossOrigin;if(o){this._image=new Image;try{i&&(this._image.crossOrigin=i),this._image.src=this.app.url(o)||""}catch(t){return void e(t)}this._image.onload=function(){if(r.get("isGray")){var e=r._image.width,n=r._image.height;r._offcanvas=da.createCanvas(e,n);var o=r._offcanvas.getContext("2d");o.drawImage(r._image,0,0);var i=function(t,e,r){try{var n=t.getImageData(0,0,e,r)}catch(t){return Zn("Get Image Data Error: "+t.message),null}for(var o=n.data,i=0;i<e*r*4;i+=4){var a=o[i],s=o[i+1],u=o[i+2],c=parseInt((a+s+u)/3);n.data[i]=c,n.data[i+1]=c,n.data[i+2]=c}return n}(o,e,n);o.putImageData(i,0,0)}t(r)},this._image.onerror=function(t){r._image&&!r._image.currentSrc&&(r._image=null),e(t)}}else t(this)}},{key:"src",get:function(){return this.get("src")},set:function(t){this.set("src",t)}},{key:"onchange",value:function(t,e){(t.hasOwnProperty("src")||t.hasOwnProperty("isGray"))&&(this._offcanvas=null,this._image=null,this.prepareIf(t.src))}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("image/"))return void(this.src=e[r])}}])&&Np(e.prototype,r),n&&Np(e,n),Object.defineProperty(e,"prototype",{writable:!1}),s}(Ea(xa));function Hp(t){return Hp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Hp(t)}function Wp(t,e){return Wp=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Wp(t,e)}function Xp(t){return Xp=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Xp(t)}da.register("image-view",Gp);var qp=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Wp(t,e)}(i,t);var e,r,n,o=(r=i,n=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Xp(r);if(n){var o=Xp(this).constructor;t=Reflect.construct(e,arguments,o)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Hp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function i(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,i),o.apply(this,arguments)}return e=i,Object.defineProperty(e,"prototype",{writable:!1}),e}(bh(Ea(da))),Vp=r(87503);function Qp(t){return Qp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Qp(t)}function Kp(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Jp(){Jp=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,o){var i=e&&e.prototype instanceof h?e:h,a=Object.create(i.prototype),s=new O(o||[]);return n(a,"_invoke",{value:x(t,r,s)}),a}function f(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var l={};function h(){}function p(){}function y(){}var d={};u(d,i,(function(){return this}));var v=Object.getPrototypeOf,g=v&&v(v(E([])));g&&g!==e&&r.call(g,i)&&(d=g);var b=y.prototype=h.prototype=Object.create(d);function m(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function w(t,e){function o(n,i,a,s){var u=f(t[n],t,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==Qp(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,s)}),(function(t){o("throw",t,a,s)})):e.resolve(l).then((function(t){c.value=t,a(c)}),(function(t){return o("throw",t,a,s)}))}s(u.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===l)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=f(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===l)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function k(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,k(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),l;var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,l;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,l):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,l)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function E(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(Qp(t)+" is not iterable")}return p.prototype=y,n(b,"constructor",{value:y,configurable:!0}),n(y,"constructor",{value:p,configurable:!0}),p.displayName=u(y,s,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===p||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,y):(t.__proto__=y,u(t,s,"GeneratorFunction")),t.prototype=Object.create(b),t},t.awrap=function(t){return{__await:t}},m(w.prototype),u(w.prototype,a,(function(){return this})),t.AsyncIterator=w,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new w(c(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},m(b),u(b,s,"Generator"),u(b,i,(function(){return this})),u(b,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=E,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,l):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),l},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),l}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:E(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),l}},t}function Zp(t,e,r,n,o,i,a){try{var s=t[i](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,o)}function $p(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Qp(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Qp(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Qp(o)?o:String(o)),n)}var o}function ty(){return ty="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=ry(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ty.apply(this,arguments)}function ey(t,e){return ey=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},ey(t,e)}function ry(t){return ry=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},ry(t)}var ny={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"string",label:"src",name:"src"},{type:"checkbox",label:"play",name:"play"}],"value-property":"src",help:"scene/component/gif-view"},oy=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&ey(t,e)}(u,t);var e,r,n,o,i,a,s=(i=u,a=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=ry(i);if(a){var r=ry(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Qp(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function u(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,u),s.apply(this,arguments)}return e=u,r=[{key:"oncreate_element",value:(n=Jp().mark((function t(e){var r,n,o;return Jp().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:r=this.state,n=r.src,o=r.play,this.onchangesrc(n),this.onchangeplay(o);case 3:case"end":return t.stop()}}),t,this)})),o=function(){var t=this,e=arguments;return new Promise((function(r,o){var i=n.apply(t,e);function a(t){Zp(i,r,o,a,s,"next",t)}function s(t){Zp(i,r,o,a,s,"throw",t)}a(void 0)}))},function(t){return o.apply(this,arguments)})},{key:"buildImg",value:function(){var t=this.element;t.innerHTML="";var e=document.createElement("img");return e.style.width="100%",e.style.height="100%",t.appendChild(e),e}},{key:"onchange",value:function(t,e){ty(ry(u.prototype),"onchange",this).call(this,t,e),"src"in t&&this.onchangesrc(t.src),"play"in t&&this.onchangeplay(t.play)}},{key:"setElementProperties",value:function(t){}},{key:"onchangeplay",value:function(t){var e=this._superGif;e&&e.isReady()&&(t?e.play():e.pause())}},{key:"onchangesrc",value:function(t){var e=this,r=this.buildImg();t||(t="data:image/gif;base64,R0lGODlhYABIAPcAAAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4ODg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEhISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdHR0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpaWltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1tbW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CAgIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKio+Pj5iYmKCgoKampqurq66urrCwsLGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrOzs7S0tLa2tre3t7m5ubu7u7+/v8DAwMHBwcPDw8XFxcfHx8vLy8/Pz9LS0tXV1dfX193d3eTk5Onp6fj4+Pz8/P7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v///////////////////////////////////////////////////////////////////////////////yH5BAkAAPUAIf47R2VuZXJhdGVkIGJ5IGpzZ2lmIChodHRwczovL2dpdGh1Yi5jb20vYW50aW1hdHRlcjE1L2pzZ2lmLykALAAAAABgAEgAAAj+AGcJHEiwoMGDCBMqXMiwocOHECNKnEixosWLGDNq3Mixo8ePIEOKHEmypMmR9VKqXMmypcuXMGPKnJkSIs2bOHPqZGlzp8+fQOv1DEq0KMyhRpMmRaq0KVCmTqPmhCq1qkyqLrFRSyYwGTVsVo1iZXmNa8Fk18ISHasSm1mDycCq/ck2JTWF1ObSfTjz7cFken3WFbow8M7BDA3rHOwXruKpfGXeTZg3qDVrUge7RRg3KLZjx+Q2HVyvLNy0QaMJjBaVdD2tZr2K/mmNIObRkR+n9AsYt0Pddg1WXppb8bWDx1CLLW74GcJnSl3TtDY8Zu2Et4tKl7n52eyWnxXvhl7+26jqrspbnlfIWjtz2gWPZV95neH8veU9NxZYfbfD3kFt99J6Bnmn0mQO9XfYezrVxxlmx0GUXIAM4hSeffsxBN1TFd5E4Ef3QZbfTg6CNJ5gHXJ3TEntLThiTh+KFCJNAqZU4kgAitjQTheepOBMNcZI0oQ6JpbTjSZtiNN2PZ400IxHpdiSc07G911M0iFZZYtAStnWilUeBGVLrlEZpmM0elmPlmfO8iOZXl4DZpsGEYmll2bSWWCXLwJXVY1+urhjoGEBSuiSah6K36CKtpZoo4s9CimielZq6aWYZqrpppx26umnoIZ6UkAAOw=="),r.src=t,r.setAttribute("rel:animated_src",t),r.setAttribute("rel:auto_play",0),this._superGif=new Vp._(r,{autoPlay:!1}),this._superGif.init();var n,o=function(t,e){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!r){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return Kp(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Kp(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,o=function(){};return{s:o,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,a=!0,s=!1;return{s:function(){r=r.call(t)},n:function(){var t=r.next();return a=t.done,t},e:function(t){s=!0,i=t},f:function(){try{a||null==r.return||r.return()}finally{if(s)throw i}}}}(this.element.children);try{for(o.s();!(n=o.n()).done;){var i=n.value;i.style.width="100%",i.style.height="100%"}}catch(t){o.e(t)}finally{o.f()}var a=this._superGif.getCanvas();a.style.width="100%",a.style.height="100%",this._superGif.load((function(){setTimeout((function(){e._superGif.moveTo(0),e.play&&e._superGif.play()}),100)}))}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(/\.gif$/.test(t[r].name))return void(this.src=e[r])}},{key:"src",get:function(){return this.getState("src")},set:function(t){this.set("src",t)}},{key:"play",get:function(){return this.getState("play")},set:function(t){this.setState("play",t)}},{key:"nature",get:function(){return ny}},{key:"tagName",get:function(){return"div"}}],r&&$p(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),u}(qp);function iy(t){return iy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},iy(t)}function ay(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==iy(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==iy(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===iy(o)?o:String(o)),n)}var o}function sy(){return sy="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=cy(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},sy.apply(this,arguments)}function uy(t,e){return uy=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},uy(t,e)}function cy(t){return cy=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},cy(t)}da.register("gif-view",oy);var fy={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"string",label:"src",name:"src"},{type:"checkbox",label:"started",name:"started"},{type:"checkbox",label:"loop",name:"loop"}],"value-property":"src",help:"scene/component/audio"},ly=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&uy(t,e)}(s,t);var e,r,n,o,i,a=(o=s,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=cy(o);if(i){var r=cy(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===iy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),a.apply(this,arguments)}return e=s,n=[{key:"image",get:function(){return s.IMAGE||(s.IMAGE=new Image,s.IMAGE.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQCAMAAAC3Ycb+AAAAP1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACzJYIvAAAAFHRSTlMA8BAwgNBgQKB/wCBwUJDg37CvXyUlBK8AABFYSURBVHja7NsBkqIwFIThTiAQgyBq3/+sm6p1tnamZkaTMhJJf1f4S/JeEIiIiIiIiIiIiIiIiEhD7Hg4BH84TpAKjJ4f3NFCtjVd+InXz2RTs+FXlxGylYHfcVfIJmb+YFWSLUyGVJKKBJJKUo+Rd6w63l/qzLuCkryO5fe0l2xk5mMWbe+v0fNBRqf7S3je6CipQ2ACr+dWcYEpzBFS1plpguatsnomMgdIQSOTuQ5SjmE6/UgK8szgdJIUM/FG41YlFmYJ2kkKsY5ZzAwBurHDk3WGeRY0bvYrGa1+rqNI22f7dS32ZnUK1GMr0eSK3mEc9dhKMxp+ZTo8kT2emOXS5LQ1kCxbJBocSd2k5PaIjMVzjWcdJPk9ooBnmzx1t5XbIxqBKpJ4NGTgzwKiGpK4do72gb+ZUMIYtCPm9WCPMsYTE5k2hq2ZvzujlCE1iRmwf3dvmRyKsT0T7b9I7HEPCpqCiqT2IIqaT1pI0noQZdlFC8l/PbYPAnRORT56VBEE6FXkb49agmByKhJ71BME6FsvEntUFQTdqekisUdlQWCXhovEHtUFAWbTapHYo8YgmFybO3vsUWcQYGmxSOxRbRAMprkisUfFQVKmrX18sxt7VB0ENjT1xir2qDxIwkFi3v89e+xRfxAMzfzzIfZ4hyAYDR9zwVuLPd4jCDrTwoLYGb5LEFi3/+E3rweR6urX20c/Fvls2Pvwm9mDSGIPhv8YPyGf3/eo9Ye7O8B2FIShAAooakEttex/rbODad5/yTHIAjqn505IQPv+Xz06dz+4VXORHEZcgAcB8updM8F6e25jBzwIkE07l+x8amMnPDp6nsNJ+BoZ7Q6F8egqAda9VEuRNlZjBzwYkMskdXR73okd8GBAJiKYjBcZKKqG9OiKDbgdfxJ5VhsBPDiQZhaouD3p4hfw4EAmwxisz3MSHwAPEmQ1TB1N+SmXWoAHC7JbZsWl/IxLLcCDBplNo3lrfMLsmwAPGmShAxX5/1vOEzjEz3iyfQ/hI36W4TctsUesOAifPdrQg8M++KYl95iCBkjI1r8634betBAPHZDTPFAmD3zLiHgogVTziMsahz0eIh5aIGHGRSJ2mFtHPR4iHhQIP2UvWGMf8wk74qEIEib7rLjPiBfxiAcCwp8V+Nae3uMdRhAPDIR/J5f/Q2DTcC+hIB7qIGEq3Ti9bx+sryMeAAgS70OK8G2kBD8L8QBAoLWU3g3vUVIc6D0txAMAsY+4jBWowXHO64gHBGKfYJ2T5qY1BxcL98BB+PQ+XiS9xxh9EQ8ChA6C5UXWIUoE9MBB8LVHQoS7ib8/dRn3sAcJ6bQRSdH96RDxIEH4QEX+AHF4LxHEAwUh12xyr1V8lwjiQYDYF8kuf1jluUQQDwrEvkhW8Wc6LhHUgwfhi4QPlHm7LRHawx4kpE191Dq8lgjhAYDQa1cftYrPEiE8OJDb40uqyzdQCA8WhAzL4G/PT4c3WrgHD2IfllGl53V37zsgHg5ApPNvVvq4Fn4spx4oiH1W3CwtEV+PDhEPJyBSkVX4aa7emkM83ICEKWpGM7wdvYCCeDgCEYpcwhLxczhEPFyBCEUWnRL5T6X59SBASBF+9l28TL5F7uEORCZyCUvEx+S7yT0cgoRVb9JaXLR1qUdfgksQ0fTbgmhFB20d8HAKEha14+F8f1sHPNyCiL6EqK+n20/rgIdjkFC0Ho1s6Gndvcc9ICkr/ey8/rHO6vp9KawL8DAFOV6l9Fyub7IbflsCag1qRfVsXWvxHjxIejU+BHZV6uvHD1XiEb++Bw8i+dNd+Wv0eCQmhcPhRPwUUt2DB5G1sfa1aeyzAuyJj9x2HjyIdKzIKw5SI14ieFtvo3kIQERj3lVhkUOnRD7AnjV5369QkAOJZeCH+Jh41xOLs73dQwAifY6dpxCCbjTDzLf1Bm1Y93tAIDOWXcLPvrHyr2hVoEAceEAgDQzB4jetk0/c2OXRHB48EJCpa4dgpYh2ETxtrshz7zx4ICCzfuTSDn8p/EOS9OTjwgMB+cABP3yWYuOPIofs33LigYCULlpZNXJppVU30Vf14kGAUCLijf1D71lN9FW9eFiA9KgZ8FPpPUsSnufGA+8hvAg2Kpz0nrX//qp+PIgpC3i6xJRITOye9fn1VT15ICCrVlQG5rywo0H8x965bVkNwmCYQ2kR6Gmb939WXV65dFnI/tPdjPBfO7XMN4EkTUJtqZp4sCJ1+8jwkhMu0KpMxFXFA8hlVfQSMxGH5mDK1VKV8QCyvTVtUiYyo7V358VStfGoAEFMhGYhEwloxZy9WKo2Hjwg5iSOvFDXeUYd33+PuVfHgwnEBWLocDJp+IIa2fyvperjwQRiXCKGosyXqoA+YfsIELuYu4HAt+msMknfDK4jfQJIzOZ2IPAQWJtFOhQKivR2IDZ6Awis7V0iLxqBI7uEZo19dakTogLSwKvf8yk8Jq6CGK0GKvWlatG7b7kkUU/Lo1gdXWn7/4E0j0qeJDpqN/ABqQcgJgdqURb4chjQktIugDS6wFFiz3JgaJj7AGJmholAe9YKhoZLJ0Ca6smjwJ4VwVN96gVIE5GM71kHaGKxGyAtRDaB2NBhLVmpHyANRKzDO28W7FS3HQFpaIWa8TrfCXQwegJSL5k+8M9UJ+pm9QTEnCIZrR0MDQeQ9ua0iCcYQaBTV0CqNXQW/yiyYG7W1heQanPaCkciBXuH1BkQJzHcDQxmpgGkPatl4WkbCXO/bW9AqlNg4H0PPMi6A1IxkQmOZ8D0ousNSMVEEuyreTAQ6Q7IRJeCX2YZQHhv6SrBOmpkM+YUzN0BqSRQCupmTeCP9wdkhiOREwtEzgGEsWcF9BhK9R8fQDiN7A8DiR0CKXQlj/q9IM8OgXjIzcKBlAHkD6FulgNzJwPIHwpo8mQAkX3LiPq9dKUMAQk9AqmcqmjuBAJCPQIpA4guIAsKJA0gnwNy3A4kDyBIHCEPxAwgf8gPILqA5AFEF5CxZX0lIHYc6rqADLf380BmFMgxgIzUyf8MJKLTRelKHgKy9wgkjfS7LiA0gKgC8vQn3HUA4RQ5LKPIAQciWbqIEg0YkLNDIHYUyqkCsmKN5vg3+W0AYTRATaPY+uu1IwS6UMGAlO6AFPjSCQMStaNh53cdcPG7Hx1Uupo+rx+Bltn1BuTAj5BptEV/bHAAwbnJMICwRmtUDOSEA8s4Rmtw3nITGD6TwUNoG0Ca7xi2YKSPj2eKXQFxQWKA2QbGMWEMMGseOb7C7T47uJS1JyAzVbTjqZdU3zbHzMXWS+qp4Fgn8Ahy/QCRGqQcwU1vGnN7fylboWn8Bzg//hyjxltvdcl45bwFfYKzFyBy11UU9BnjuoqfWizVlQXulpzBTNbaB5Aid+VRrkBFB630AMS9BC8FK2ggE7u/FGy1kvfcB9TKQufX5uUXNWl3EjvWCi4k/u9A3Ddq1CpTIQGe6VN1qd8ArcvDQNw3S41Kn6qQmOq5e7pRr+8fAYLiIJtFrrvYRMYL0q06vj8EZLXUriJzRY8H1xEagOCK7gkghRg6RQYO0I6aWPwIEAru80AiMWSdzAeuDXUKyr+WqpAID8hMHC1Ct8F4mUsQ6W8pJMICki0JHCBczAFdBl38G3VE6ErQhhWlih4LWrCSLpaqjggHiGe9mVjRY0YPoelyqcqIcIDEe97rqJFFH7FcLlUZEQ6Qg5plvZiBFNhtri1VFREGEC/Eg4nZoU5vqi1VFREGkIXDQ8xAIhzoT/WlKiLCAFIYPOQMxOPdjfWlKiLCADJRm3YGj+pDE2xktmmpaogwgMz8d8GrumZ4xzpbvinqISJ+hiTWm7wEqoJdI9JEV9JChAEkS3xCZzKecLcgN6YwlRBhAGmweTsblg6qKMM7Vmh321UQ4QAp1VfwhqVJIh+Wm03W0qV0EOEAybXtivkCmWrKeH2EZ/xBaSBCV2L9Re+LYSqJJIxDu1ew07U0EGEBcTtmHty4JuPtQhvLh1BAhK7Uvvq0GK484QZST0GvvFDqeSJ1IA0r2mfDljvqBoJ//rVsq7yZCA6kXgVkJ2f4ijIGMjOfMVsCBBORB2Jy+sM6ijNvaBUqmw/cStZ8EiKciHwp6Rp++88qmxXQeTUxDiJWJ9wSISvBicgXW+dypn1PqWTznlwgwdZdfiLHr5OELEAEASKvJFRE5JCPKbh8OxHdQKJU0crEzRXrJ/IEkFms6tGyrUw9kQeALFRXvK2iSzsRAAi6BLxM+60xdsqJAEBuXMAMxDLVp+gmAgC57/UT4qvVj3TVRCAgSAYL91aXtyNLzUQAIFhAiP8m0/NHOp+ILiBtPFKrs6bgSOcT0QTEB8nO3QR1yKslggKRf+m11UB0HOl8IlqAeCvauXuo8HnfIqIDyCw6G8XMcGiplMingMzCnbuHFp/3LSLPA4nUpqm5YkWNzwsQeQxIDsKjH5wVSU5qJPIJIIt4jjpqNBAekQeBfJOeHWS81FQoo4/I7UDcS3wUh0liTzLqiEgDqddx4ZHDrNZAACIAEMw88HPYWb0GAhABgEDmgf9Vb5oNBCByOxD3uqWYbCHVBgIQuRlIsbfwMEG5gQBE7gSyHMDsOayrxJvHBRC5B0hOxJH1nK4SlUE6QOR+IG6ju3iYQEqDdIDIzUDyZu/jMRHpS/OiRG4FkiPRfTw8kbrvIAJEACAIDpyHC1/GQHhEbgKSXwTyqIeEur6kixEBgABHOTr7YSX1MSFAhA0E307wUU76Y0KACAsI/tvCRzkF+iIuL0AEAYLbR2QOfvhKJ/obRESBxNt5rPSFXN4f7dyNdqMgEIbhAXWwJErT/e7/Wreb5HTT07QVgWSAeW5g7b4n8qOSUCRPEId4HP93SXp5dDNGRJFcQTxihSH+NW1Bb1cXKpIryJAwnG/zhl8ZcSP6jiKZghwRaaWLnP/AkcSKKJIniEcUs8QfjFLdEmRvkSxB4lfn0QN6DY+lshQpHiT96Dlr6r5hxRUpHST9ZEY71X7DOmOZQVZLsd5Q8wzrPxYYJDiKNqOBG1ZCkZKzrNXu6lHvkjChSFqQsdTPg45ApXtYaUXKr9TNuPcvqO2pVMkitFXAL2a79/qr3HQvVSTXUtofCl79RDXh5CDpw3pwu6+9kRlvtiI5VtPhmHLltT4EKVQkfb8pcOHrXqk6nBAksUjgpKtuYsskaxGKYT0+84uYgziE4YQgMdx0m8PRfis2MbL33PMXoVjD6PEunI4HSjDjStiJP08vQk9hZzQ7oH/geoLYCUBDW4rf4FqCDFt7THUO6B+4jiDn2XNTW7zf4hqCMND4BOsGyw+yAmh0x+QeFh7EeqD5Ce8nLDrI8NpbDyIWHIQNruo4GyAPlhrEzuixBxHLDDJMnfYgYolBricHNfjIdgMWF+Qyu+pkgX4HCwuymL57ELGkIHZG7z2IWE6Q5VV7vGMhQewbtMcZiwhyHj26ne9+xs8PcvDQHnFFqCD7Au0RW4TK+fOKqw4eoOcqYqgU53HR3/5uShFPCfKey9hFDyJO/vAi7RDZnp7X5igyUH72xSDW1E2Pn4tMRCQgR8vLwbgii4gcmLvqQcSPGtIPX3M08wn6I4qYQ94cM/Yw9Xxhmw+X/59wHrtMlX1AmIkzdyaaAnLg1Nnw8WGYSk40X/BOh4+El6LMSBnN2Cd0tPq4w/LJXGrMbCX06PZ2dcM65yzlNertShSHf3SzRAyPM332IcSAHUKPi8EHmXU0l8Uglmni0yipDoi16s+jJKejhywLooz68yiMEcHr2qM4h81CJ++VPJfTu5UwBpv4Pp9DJSi6MJx0bvUwiw4ewgT8zNR0LHUL+OccOpY/3ElzyGKD5pBlMJpDlsOkMythRoNbXh95PJsdA67MrMtAEYbjeDqNo+7oKqWUUkoppZRSSimllFJKFfMXp4vmSjB8n6sAAAAASUVORK5CYII="),s.IMAGE}}],(r=[{key:"dispose",value:function(){sy(cy(s.prototype),"dispose",this).call(this),this.started=!1,delete this._audio}},{key:"ready",value:function(){var t=this;sy(cy(s.prototype),"ready",this).call(this),this._audio=new Audio,this._audio.addEventListener("canplay",(function(){t.started&&t._audio.play()}));var e=this.state,r=e.src,n=void 0===r?"":r,o=e.loop,i=void 0!==o&&o,a=e.started,u=void 0!==a&&a;this.onchangeSrc(n),this.onchangeLoop(i),this.onchangeStarted(u)}},{key:"render",value:function(t){var e=this.state,r=e.left,n=e.top,o=e.width,i=e.height;e.src,t.beginPath(),this.drawImage(t,s.image,r,n,o,i)}},{key:"nature",get:function(){return fy}},{key:"hasTextProperty",get:function(){return!1}},{key:"src",get:function(){return this.get("src")},set:function(t){this.set("src",t)}},{key:"started",get:function(){return!!this.get("started")},set:function(t){this.set("started",t)}},{key:"start",value:function(){this._audio&&(this._audio.classList.add("active"),this._audio.play())}},{key:"pause",value:function(){this._audio&&(this._audio.classList.remove("active"),this._audio.pause())}},{key:"onchangeSrc",value:function(t){try{"data"!==String(t).substring(0,4)?this._audio.crossOrigin="use-credentials":this._audio.crossOrigin=null,this._audio.src="string"==typeof t?this.app.url(t):t}catch(t){return void console.error(t)}}},{key:"onchangeStarted",value:function(t){var e=this._audio;t?4==e.readyState&&e.play():e.pause()}},{key:"onchangeLoop",value:function(t){this._audio.loop=t}},{key:"onchange",value:function(t,e){"src"in t&&this.onchangeSrc(t.src),"started"in t&&this.onchangeStarted(t.started),"loop"in t&&this.onchangeLoop(t.loop)}},{key:"ondblclick",value:function(t){this.started=!this.started}},{key:"ondropfile",value:function(t,e){for(var r=0;r<t.length;r++)if(t[r].type.startsWith("audio/"))return void(this.src=e[r])}}])&&ay(e.prototype,r),n&&ay(e,n),Object.defineProperty(e,"prototype",{writable:!1}),s}(Ea(xa));function hy(t){return hy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},hy(t)}function py(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==hy(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==hy(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===hy(o)?o:String(o)),n)}var o}function yy(t,e){return yy=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},yy(t,e)}function dy(t){return dy=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},dy(t)}da.register("audio",ly);var vy=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&yy(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=dy(n);if(o){var r=dy(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===hy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"is3dish",value:function(){return!0}}])&&py(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Ea(da));function gy(t){return gy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},gy(t)}function by(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,xy(n.key),n)}}function my(t,e,r,n){return my="undefined"!=typeof Reflect&&Reflect.set?Reflect.set:function(t,e,r,n){var o,i=Sy(t,e);if(i){if((o=Object.getOwnPropertyDescriptor(i,e)).set)return o.set.call(n,r),!0;if(!o.writable)return!1}if(o=Object.getOwnPropertyDescriptor(n,e)){if(!o.writable)return!1;o.value=r,Object.defineProperty(n,e,o)}else wy(n,e,r);return!0},my(t,e,r,n)}function wy(t,e,r){return(e=xy(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function xy(t){var e=function(t,e){if("object"!==gy(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==gy(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===gy(e)?e:String(e)}function ky(){return ky="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=Sy(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},ky.apply(this,arguments)}function Sy(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Oy(t)););return t}function _y(t,e){return _y=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},_y(t,e)}function Oy(t){return Oy=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Oy(t)}da.register("text",vy);var Ey=["refid","left","top","width","height","rotation","animation"],Ay=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&_y(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Oy(n);if(o){var r=Oy(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===gy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"isGroup",value:function(){return!0}},{key:"get",value:function(t){return this._model[t]}},{key:"set",value:function(t,e){if("string"==typeof t)return this.set(wy({},t,e));var r=Ey.reduce((function(e,r){return t.hasOwnProperty(r)&&(e[r]=t[r]),e}),{});return ky(Oy(a.prototype),"set",this).call(this,r)}},{key:"capture",value:function(t,e,r){var n=ky(Oy(a.prototype),"capture",this).call(this,t,e,r);if(n!==this)return n}},{key:"bounds",get:function(){return ky(Oy(a.prototype),"bounds",this)},set:function(t){if(this.__MUTATING__)!function(t,e,r,n,o){if(!my(t,e,r,n||t)&&o)throw new TypeError("failed to set property")}(Oy(a.prototype),"bounds",t,this,!0);else{var e=this.bounds,r=t.width/e.width,n=t.height/e.height;this.path=this.path.map((function(o){return{x:t.left+(o.x-e.left)*r,y:t.top+(o.y-e.top)*n}})),this.components&&this.components.forEach((function(t){if(t.mutable)t.mutatePath(null,(function(t){return t.map((function(t){return{x:t.x*r,y:t.y*n}}))}));else{var e=t.bounds,o=t.center,i={x:o.x*(1-r),y:o.y*(1-n)},a=e.width*(1-r),s=e.height*(1-n),u=-(i.x-a/2),c=-(i.y-s/2);t.bounds={left:e.left+u,top:e.top+c,width:e.width*r,height:e.height*n}}}))}}},{key:"focusible",get:function(){return!1}},{key:"hasTextProperty",get:function(){return!1}},{key:"calculateBounds",value:function(){this.clearCache(),this.__MUTATING__=!0,this.mutateBounds((function(t){var e=da.union(this.components.map((function(t){return t.bounds})));return this.components.forEach((function(t){var r=t.bounds;t.bounds={left:r.left-e.left,top:r.top-e.top,width:r.width,height:r.height}})),{left:t.left+e.left,top:t.top+e.top,width:e.width,height:e.height}}),this),this.__MUTATING__=!1,this.parent.isGroup()&&this.parent.calculateBounds()}},{key:"render",value:function(t){}},{key:"postrender",value:function(t){var e=this.state,r=e.top,n=e.left;e.scale,t.translate(n,r),this.layout.drawables(this).forEach((function(e){e.draw(t)})),t.translate(-n,-r)}}],r&&by(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Eh);function Py(t){return Py="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Py(t)}function jy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Py(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Py(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Py(o)?o:String(o)),n)}var o}function Ty(){return Ty="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Ry(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Ty.apply(this,arguments)}function My(t,e){return My=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},My(t,e)}function Ry(t){return Ry=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ry(t)}da.register("group",Ay);var Iy={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"id-input",label:"ref",name:"ref"},{type:"select",label:"fit",name:"fit",property:{options:["both","ratio"]}}],"value-property":"ref",help:"scene/component/local-ref"},Cy=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&My(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ry(n);if(o){var r=Ry(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Py(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"ref",get:function(){var t=this.getState("ref");return t&&"string"==typeof t?this.root.findById(t):null},set:function(t){this.setState("ref",t)}},{key:"refScale",get:function(){var t=this.ref.bounds,e=this.bounds,r=e.width/t.width,n=e.height/t.height;return"both"===this.model.fit?{x:r,y:n}:{x:Math.min(r,n),y:Math.min(r,n)}}},{key:"draw",value:function(t){this._drawing||(this._drawing=!0,Ty(Ry(a.prototype),"draw",this).call(this,t),this._drawing=!1)}},{key:"prerender",value:function(t){if(Ty(Ry(a.prototype),"prerender",this).call(this,t),this.ref){var e=this.ref.center,r=this.center,n=this.refScale;t.translate(r.x,r.y),t.scale(n.x,n.y),t.translate(-e.x,-e.y)}}},{key:"postrender",value:function(t){if(this.ref)return this.ref.postrender(t);Ty(Ry(a.prototype),"postrender",this).call(this,t)}},{key:"render",value:function(t){if(this.ref)return this.ref.render(t);this.state.round;var e=this.bounds,r=e.left,n=e.top,o=e.width,i=e.height;t.beginPath(),t.rect(r,n,o,i)}},{key:"nature",get:function(){return Iy}},{key:"hasTextProperty",get:function(){return!1}}])&&jy(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(Ea(xa));function Ly(t){return Ly="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ly(t)}function Dy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ly(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ly(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ly(o)?o:String(o)),n)}var o}function By(t,e){return By=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},By(t,e)}function Ny(t){return Ny=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ny(t)}da.memoize(Cy.prototype,"ref",!1),da.memoize(Cy.prototype,"refScale",!1),da.register("local-ref",Cy);var Fy=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&By(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Ny(n);if(o){var r=Ny(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Ly(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"render",value:function(t){}},{key:"layout",get:function(){return za.get(this.get("layout"))||Ya}}])&&Dy(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(bh(Ss));function zy(t){return zy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},zy(t)}function Uy(){Uy=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,o){var i=e&&e.prototype instanceof h?e:h,a=Object.create(i.prototype),s=new O(o||[]);return n(a,"_invoke",{value:x(t,r,s)}),a}function f(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var l={};function h(){}function p(){}function y(){}var d={};u(d,i,(function(){return this}));var v=Object.getPrototypeOf,g=v&&v(v(E([])));g&&g!==e&&r.call(g,i)&&(d=g);var b=y.prototype=h.prototype=Object.create(d);function m(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function w(t,e){function o(n,i,a,s){var u=f(t[n],t,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==zy(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,s)}),(function(t){o("throw",t,a,s)})):e.resolve(l).then((function(t){c.value=t,a(c)}),(function(t){return o("throw",t,a,s)}))}s(u.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===l)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=f(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===l)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function k(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,k(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),l;var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,l;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,l):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,l)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function E(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(zy(t)+" is not iterable")}return p.prototype=y,n(b,"constructor",{value:y,configurable:!0}),n(y,"constructor",{value:p,configurable:!0}),p.displayName=u(y,s,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===p||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,y):(t.__proto__=y,u(t,s,"GeneratorFunction")),t.prototype=Object.create(b),t},t.awrap=function(t){return{__await:t}},m(w.prototype),u(w.prototype,a,(function(){return this})),t.AsyncIterator=w,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new w(c(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},m(b),u(b,s,"Generator"),u(b,i,(function(){return this})),u(b,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=E,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,l):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),l},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),l}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:E(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),l}},t}function Yy(t,e,r,n,o,i,a){try{var s=t[i](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,o)}function Gy(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==zy(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==zy(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===zy(o)?o:String(o)),n)}var o}function Hy(){return Hy="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Xy(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Hy.apply(this,arguments)}function Wy(t,e){return Wy=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Wy(t,e)}function Xy(t){return Xy=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Xy(t)}var qy={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"scene-number",name:"ref",placeholder:"SCENE-1"},{type:"select",label:"fit",name:"fit",property:{options:["both","ratio"]}},{type:"select",label:"mode",name:"mode",property:{options:["view","interaction"]}}],"value-property":"ref",help:"scene/component/global-ref"},Vy=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Wy(t,e)}(u,t);var e,r,n,o,i,a,s=(i=u,a=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Xy(i);if(a){var r=Xy(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===zy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function u(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,u),s.apply(this,arguments)}return e=u,r=[{key:"dispose",value:function(){this._releaseRef(),Hy(Xy(u.prototype),"dispose",this).call(this)}},{key:"nature",get:function(){return qy}},{key:"hasTextProperty",get:function(){return!1}},{key:"tagName",get:function(){return"div"}},{key:"setElementProperties",value:function(t){var e=this.state.mode,r=void 0===e?"view":e;t.style.pointerEvents="view"==r?"none":"inherit"}},{key:"ready",value:function(){Hy(Xy(u.prototype),"ready",this).call(this),this.fetchRef()}},{key:"reposition",value:function(){if(this.element){Hy(Xy(u.prototype),"reposition",this).call(this);var t=this._element_bounds,e=this.element,r=e.offsetWidth,n=e.offsetHeight;if(this._element_bounds={offsetWidth:r,offsetHeight:n},(!t||t.offsetWidth!=r||t.offsetHeight!=n)&&this.ref&&this.root.target_element){var o=this.state.fit,i=void 0===o?"ratio":o;this.ref.fit(i)}}}},{key:"fetchRef",value:(n=Uy().mark((function t(){var e,r,n,o,i;return Uy().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(this._releaseRef(),e=this.state,r=e.ref,n=e.fit,o=void 0===n?"ratio":n,r){t.next=4;break}return t.abrupt("return");case 4:if(!(i=this.app.refProvider)||!r){t.next=18;break}return t.prev=6,t.next=9,i.get(r,!0);case 9:this.__ref=t.sent,this.__ref.target=this.element,this.__ref.fit(o),this.__ref.data=this.data,t.next=18;break;case 15:t.prev=15,t.t0=t.catch(6),Zn(t.t0);case 18:case"end":return t.stop()}}),t,this,[[6,15]])})),o=function(){var t=this,e=arguments;return new Promise((function(r,o){var i=n.apply(t,e);function a(t){Yy(i,r,o,a,s,"next",t)}function s(t){Yy(i,r,o,a,s,"throw",t)}a(void 0)}))},function(){return o.apply(this,arguments)})},{key:"ref",get:function(){return this.__ref},set:function(t){this.setState("ref",t)}},{key:"_releaseRef",value:function(){this.__ref&&this.__ref.release&&this.__ref.release(),delete this.__ref}},{key:"onchange",value:function(t,e,r){var n=this;Hy(Xy(u.prototype),"onchange",this).call(this,t,e,r),"ref"in t&&this.fetchRef(),"fit"in t&&this.ref&&requestAnimationFrame((function(){var t=n.state.fit;n.ref.fit(t)})),"data"in t&&this.ref&&requestAnimationFrame((function(){n.ref.data=t.data}))}}],r&&Gy(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),u}(Fy);function Qy(t){return Qy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Qy(t)}function Ky(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Qy(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Qy(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Qy(o)?o:String(o)),n)}var o}function Jy(){return Jy="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=$y(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},Jy.apply(this,arguments)}function Zy(t,e){return Zy=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Zy(t,e)}function $y(t){return $y=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},$y(t)}da.register("global-ref",Vy);var td={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"board-selector",label:"board",name:"board"},{type:"checkbox",label:"modal",name:"modal"},{type:"checkbox",label:"closable",name:"closable"},{type:"checkbox",label:"show",name:"show"},{type:"select",label:"location",name:"location",property:{options:["center","left-top","right-top","left-bottom","right-bottom","auto"]}},{type:"data",label:"value",name:"value"}],help:"scene/component/popup"},ed=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Zy(t,e)}(s,t);var e,r,n,o,i,a=(o=s,i=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=$y(o);if(i){var r=$y(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Qy(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),a.apply(this,arguments)}return e=s,r=[{key:"ready",value:function(){Jy($y(s.prototype),"ready",this).call(this),this.show&&this.onchangeShow(!0)}},{key:"render",value:function(t){var e=this.bounds,r=e.left,n=e.top,o=e.width,i=e.height;t.beginPath(),this.drawImage(t,s.image,r,n,o,i)}},{key:"onchange",value:function(t,e){"value"in t?this.show?this.onchangeShow(!0):this.show=!0:"show"in t&&this.onchangeShow(this.show)}},{key:"onchangeShow",value:function(t){!this.app.isEditMode&&this.getState("board")&&(t?Ka.show(this,this.board,{location:this.getState("location"),modal:this.getState("modal"),closable:this.getState("closable")||!1,data:this.value}):Ka.hide(this))}},{key:"board",get:function(){return this.getState("board")},set:function(t){this.set("board",t)}},{key:"show",get:function(){return this.getState("show")},set:function(t){this.setState("show",t)}},{key:"started",get:function(){return this.getState("show")},set:function(t){this.setState("show",t)}},{key:"value",get:function(){return this.getState("value")},set:function(t){this.setState("value",t)}},{key:"hasTextProperty",get:function(){return!1}},{key:"nature",get:function(){return td}}],n=[{key:"image",get:function(){return s._image||(s._image=new Image,s._image.src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGCAMAAABG8BK2AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuZGFiYWNiYiwgMjAyMS8wNC8xNC0wMDozOTo0NCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIzLjAgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkM4QzQxNUMzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkM4QzQxNUQzMzBEMTFFQ0JEMzZDMDUwQUI4MEI3QTAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpENjlENTQ3RjMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpENjlENTQ4MDMzMDkxMUVDQkQzNkMwNTBBQjgwQjdBMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsiUYSQAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA51BMVEVHcEwzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzOguTm2AAAATHRSTlMARhB73r9B7YLrsqdE+0cq9Avzeg31eQx4aQ+Ks6aUd5DsYKixEX1w8vyT2VjoZ3YezY/cCEDvl+QTvRwJ0ifwK/5T/aw6+IuFuCImAcS6MQAAAeJJREFUWMPt2FlX2zAQhuHJYmOSFhIggbC0QNn3rS1dKXSH9///Hi58CJLxKIpEWi6YO8c5z4lG/nxGEXmu/1OVLGnhrFaSVQYg1SZetTTvUibqeFZ9QlfmvRWoV1VmCaCRzroXPpsuAjTV7gLUfPahBqD1OQMW/fazAWTKvQRI/ZgUSJR7U8CM/dHZ+/2VcatWdvdEZAaYUhiAwkerJXt0rnzXwdRKmHfDM0fHD5kxjTFyVLzVfvvirn7+cDJWjhy7c7XlYuwc6Urvu2tRhRypyhwAf1sKY+TIxfQA+H39q5wxc+RgVrcBduTmZTlj5khnDgH4IzKpMGaOVCbvyyvRGTNHGtPrKypjXirM5jb910I4k69oQeKY+77EMAcALEsck/+W6f71tyCma/ZFROTrJVwMy7wmf3bv6/MX+Dgkkysblvxps/dhOKZb6IvrTakzXXuPApnpYneDGOeKvJlaSXcDmA7AicQyW84VeTOnY+NdiWcG1uiZksFEHdyAlsJEjEkmkwGNsKHNZCJGSKtVTYC1tO022mnjwUBrMdXg8dreuOBhv7D/62/8lGZ1wLxXyZKOm+iUHIQintyny0TkaATHjYgcjeAoFpEje9R/nGPqIx2aw3NU9odCQI6e6x/VLY32cKQXVBnkAAAAAElFTkSuQmCC"),s._image}}],r&&Ky(e.prototype,r),n&&Ky(e,n),Object.defineProperty(e,"prototype",{writable:!1}),s}(Ea(xa));function rd(t){return rd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},rd(t)}function nd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==rd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==rd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===rd(o)?o:String(o)),n)}var o}function od(t,e){return od=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},od(t,e)}function id(t){return id=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},id(t)}da.register("popup",ed);var ad=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&od(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=id(n);if(o){var r=id(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===rd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"render",value:function(t){var e=this.state.path,r=void 0===e?[]:e;if(!(r.length<=1)){t.beginPath(),t.moveTo(r[0].x,r[0].y);for(var n=1;n<r.length;n++)t.lineTo(r[n].x,r[n].y);t.closePath(),this.drawStroke(t)}}},{key:"path",get:function(){return this.model.path},set:function(t){this.set("path",t)}},{key:"contains",value:function(t,e){var r=this.state.path,n=!1;return r.forEach((function(o,i){var a=(i+r.length+1)%r.length,s=o.x,u=o.y,c=r[a].x,f=r[a].y;u>e!=f>e&&t<(c-s)*(e-u)/(f-u)+s&&(n=!n)})),n}}])&&nd(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(da);function sd(t){return sd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},sd(t)}function ud(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==sd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==sd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===sd(o)?o:String(o)),n)}var o}function cd(t,e){return cd=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},cd(t,e)}function fd(t){return fd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},fd(t)}da.register("path",ad);var ld={mutable:!0,resizable:!1,rotatable:!0,properties:[{type:"number",label:"round",name:"round",property:{min:0,max:100,step:1}}],help:"scene/component/triangle"},hd=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&cd(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=fd(n);if(o){var r=fd(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===sd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"contains",value:function(t,e){for(var r=this.state,n=[r.x1,r.y1,r.x2,r.y2,r.x3,r.y3],o=!1,i=0;i<n.length;i+=2){var a=(i+2)%n.length,s=n[i],u=n[i+1],c=n[a+1];u>e!=c>e&&t<(n[a]-s)*(e-u)/(c-u)+s&&(o=!o)}return o}},{key:"mutable",get:function(){return!0}},{key:"path",get:function(){var t=this.state;return[{x:t.x1,y:t.y1},{x:t.x2,y:t.y2},{x:t.x3,y:t.y3}]},set:function(t){this.set({x1:t[0].x,y1:t[0].y,x2:t[1].x,y2:t[1].y,x3:t[2].x,y3:t[2].y})}},{key:"nature",get:function(){return ld}}])&&ud(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(xa);function pd(t){return pd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},pd(t)}function yd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==pd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==pd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===pd(o)?o:String(o)),n)}var o}function dd(t,e){return dd=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},dd(t,e)}function vd(t){return vd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},vd(t)}da.memoize(hd.prototype,"path",!1),da.register("triangle",hd);var gd={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"}],help:"scene/component/donut"},bd={ondragmove:function(t,e,r){r.controls;var n=r.model,o=n.cx,i=n.rx;i=Math.abs(i);var a=(r.transcoordP2S(t.x,t.y).x-o)/i*100;a=a>=100||a<=-100?100:Math.abs(a),r.set({ratio:a})}},md=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&dd(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=vd(n);if(o){var r=vd(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===pd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"is3dish",value:function(){return!1}},{key:"render",value:function(t){var e=this.state,r=e.ratio,n=void 0===r?50:r,o=e.cx,i=e.cy,a=e.rx,s=e.ry,u=e.startAngle,c=e.endAngle,f=e.anticlockwise;a=Math.abs(a),s=Math.abs(s),t.beginPath(),t.ellipse(o,i,a,s,0,u||0,c||2*Math.PI,f),t.moveTo(o+a/100*n,i),t.ellipse(o,i,a/100*n,s/100*n,0,u||0,c||2*Math.PI,!0)}},{key:"contains",value:function(t,e){var r=this.state,n=r.cx,o=r.cy,i=r.rx,a=r.ry,s=r.ratio,u=(t-n)/(2*(i=Math.abs(i))-.5),c=(e-o)/(2*(a=Math.abs(a))-.5),f=(t-n)/(i/100*s*2-.5),l=(e-o)/(a/100*s*2-.5),h=!1;return u*u+c*c<.25&&f*f+l*l>.25&&(h=!h),h}},{key:"controls",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.rx,o=t.ratio;return[{x:e+(n=Math.abs(n))/100*o,y:r,handler:bd}]}},{key:"nature",get:function(){return gd}}])&&yd(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(ip);function wd(t){return wd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},wd(t)}function xd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==wd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==wd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===wd(o)?o:String(o)),n)}var o}function kd(t,e){return kd=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},kd(t,e)}function Sd(t){return Sd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Sd(t)}da.memoize(md.prototype,"controls",!1),da.register("donut",md);var _d={mutable:!1,resizable:!0,rotatable:!0,properties:[{type:"number",label:"ratio",name:"ratio",property:"ratio"},{type:"number",label:"wing",name:"wing",property:"wing"}],help:"scene/component/star"},Od={ondragmove:function(t,e,r){r.controls;var n=r.model,o=n.cy,i=n.ry,a=(r.transcoordP2S(t.x,t.y).y-o)/i*100+100;a>=100?a=100:a<=0&&(a=0),r.set({ratio:a})}},Ed=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&kd(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Sd(n);if(o){var r=Sd(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===wd(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"is3dish",value:function(){return!1}},{key:"render",value:function(t){var e=this.state,r=e.ratio,n=void 0===r?30:r,o=e.wing,i=void 0===o?5:o,a=e.cx,s=e.cy,u=e.rx,c=e.ry;if(e.startAngle,e.endAngle,e.anticlockwise,!(i<3)){var f=1.5707963267948966,l=2*Math.PI/i,h=u-n/100*u,p=c-n/100*c;t.save(),t.beginPath(),t.translate(a,s),t.moveTo(u*Math.cos(-f),c*Math.sin(-f)),t.lineTo((u-h)*(Math.cos(l-f)+Math.cos(0-f))/2,(c-p)*(Math.sin(l-f)+Math.sin(0-f))/2);for(var y=1;y<i;y++)t.lineTo(u*Math.cos(l*y-f),c*Math.sin(l*y-f)),t.lineTo((u-h)*(Math.cos(l*(y+1)-f)+Math.cos(l*y-f))/2,(c-p)*(Math.sin(l*(y+1)-f)+Math.sin(l*y-f))/2);t.closePath(),t.restore()}}},{key:"controls",get:function(){var t=this.state,e=t.cx,r=t.cy,n=t.ry;return[{x:e,y:r-n+n*(t.ratio/100),handler:Od}]}},{key:"nature",get:function(){return _d}}])&&xd(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(ip);function Ad(t){return Ad="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ad(t)}function Pd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Ad(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Ad(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Ad(o)?o:String(o)),n)}var o}function jd(){return jd="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,r){var n=function(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&null!==(t=Md(t)););return t}(t,e);if(n){var o=Object.getOwnPropertyDescriptor(n,e);return o.get?o.get.call(arguments.length<3?t:r):o.value}},jd.apply(this,arguments)}function Td(t,e){return Td=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Td(t,e)}function Md(t){return Md=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Md(t)}da.memoize(Ed.prototype,"controls",!1),da.register("star",Ed);const Rd=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Td(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Md(n);if(o){var r=Md(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Ad(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,r=[{key:"animOnValueChange",value:function(t){var e=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2?arguments[2]:void 0;if(t!=this._lastValue){if(r)var o=t-(Number(n)||0);else o=t-(this._lastValue||0);this._lastValue=t,this._anim_alpha=-o,this.animate({step:function(t){e._anim_alpha=o*(t-1),e.invalidate()},duration:1e3,delta:"circ",options:{x:1},ease:"out"}).start()}}},{key:"dispose",value:function(){jd(Md(a.prototype),"dispose",this).call(this),delete this._value_substitutor}},{key:"onchange",value:function(t,e){t.hasOwnProperty("value")&&delete this._value_substitutor}},{key:"animAlpha",get:function(){return this._anim_alpha||0}},{key:"animValue",get:function(){return(this._lastValue||0)+(this._anim_alpha||0)}},{key:"defaultValueSubstitutor",value:function(){return this.getState("value")}},{key:"valueSubstitutor",get:function(){return this._value_substitutor||(this._value_substitutor=Ki(this.getState("value"),this)||this.defaultValueSubstitutor),this._value_substitutor}},{key:"value",get:function(){return Number(this.valueSubstitutor())||0},set:function(t){delete this._value_substitutor,this.setState("value",Number(wn(t)))}}],r&&Pd(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return e};function Id(t){return Id="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Id(t)}function Cd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Id(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Id(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Id(o)?o:String(o)),n)}var o}function Ld(t,e){return Ld=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},Ld(t,e)}function Dd(t){return Dd=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Dd(t)}const Bd=function(t){var e=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&Ld(t,e)}(a,t);var e,r,n,o,i=(n=a,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=Dd(n);if(o){var r=Dd(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===Id(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function a(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,a),i.apply(this,arguments)}return e=a,(r=[{key:"_convertDataFormat",value:function(t,e){return"json"===e?JSON.parse(t):t}},{key:"isDataSource",value:function(){return!0}}])&&Cd(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),a}(t);return e};function Nd(t){return Nd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Nd(t)}function Fd(){Fd=function(){return t};var t={},e=Object.prototype,r=e.hasOwnProperty,n=Object.defineProperty||function(t,e,r){t[e]=r.value},o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function c(t,e,r,o){var i=e&&e.prototype instanceof h?e:h,a=Object.create(i.prototype),s=new O(o||[]);return n(a,"_invoke",{value:x(t,r,s)}),a}function f(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=c;var l={};function h(){}function p(){}function y(){}var d={};u(d,i,(function(){return this}));var v=Object.getPrototypeOf,g=v&&v(v(E([])));g&&g!==e&&r.call(g,i)&&(d=g);var b=y.prototype=h.prototype=Object.create(d);function m(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function w(t,e){function o(n,i,a,s){var u=f(t[n],t,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==Nd(l)&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){o("next",t,a,s)}),(function(t){o("throw",t,a,s)})):e.resolve(l).then((function(t){c.value=t,a(c)}),(function(t){return o("throw",t,a,s)}))}s(u.arg)}var i;n(this,"_invoke",{value:function(t,r){function n(){return new e((function(e,n){o(t,r,e,n)}))}return i=i?i.then(n,n):n()}})}function x(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=k(a,r);if(s){if(s===l)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var u=f(t,e,r);if("normal"===u.type){if(n=r.done?"completed":"suspendedYield",u.arg===l)continue;return{value:u.arg,done:r.done}}"throw"===u.type&&(n="completed",r.method="throw",r.arg=u.arg)}}}function k(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,k(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),l;var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,l;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,l):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,l)}function S(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function _(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function O(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(S,this),this.reset(!0)}function E(t){if(t||""===t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,o=function e(){for(;++n<t.length;)if(r.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=void 0,e.done=!0,e};return o.next=o}}throw new TypeError(Nd(t)+" is not iterable")}return p.prototype=y,n(b,"constructor",{value:y,configurable:!0}),n(y,"constructor",{value:p,configurable:!0}),p.displayName=u(y,s,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===p||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,y):(t.__proto__=y,u(t,s,"GeneratorFunction")),t.prototype=Object.create(b),t},t.awrap=function(t){return{__await:t}},m(w.prototype),u(w.prototype,a,(function(){return this})),t.AsyncIterator=w,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new w(c(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},m(b),u(b,s,"Generator"),u(b,i,(function(){return this})),u(b,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},t.values=E,O.prototype={constructor:O,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(_),!t)for(var e in this)"t"===e.charAt(0)&&r.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function n(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i.completion;if("root"===i.tryLoc)return n("end");if(i.tryLoc<=this.prev){var s=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(s&&u){if(this.prev<i.catchLoc)return n(i.catchLoc,!0);if(this.prev<i.finallyLoc)return n(i.finallyLoc)}else if(s){if(this.prev<i.catchLoc)return n(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return n(i.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var a=i?i.completion:{};return a.type=t,a.arg=e,i?(this.method="next",this.next=i.finallyLoc,l):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),l},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),_(r),l}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;_(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:E(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),l}},t}function zd(t,e,r,n,o,i,a){try{var s=t[i](a),u=s.value}catch(t){return void r(t)}s.done?e(u):Promise.resolve(u).then(n,o)}function Ud(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Nd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Nd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Nd(o)?o:String(o)),n)}var o}var Yd=new WeakSet,Gd=function(){function t(e,r){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.counters={},this.references={},this.creator=e,this.disposer=r,Yd.add(this)}var e,r,n;return e=t,r=[{key:"dispose",value:function(){if(this.disposer)for(var t in this.references)this.disposer.call(null,t,this.references[t]);delete this.references,delete this.counters}},{key:"ids",get:function(){return Object.keys(this.references)}},{key:"create",value:function(t){var e=this;return new Promise((function(r,n){e.creator?e.creator.call(null,t,(function(e){!function(e){e.release=function(){this.disposer&&this.disposer.call(null,t,e),delete e.release,to("RELEASED",t)},r(e)}(e)}),(function(t){n(t)})):n(Error("Reference id("+t+") could not be created. Reference creator should be defined."))}))}},{key:"add",value:function(t,e){var r=this,n=new Promise((function(n,o){var i=r.references[t];if(i)i===e?o(Error("Reference ID and target duplicate")):e?o(Error("Reference ID duplicate")):n(i);else{function a(e){e.release=function(){r.release(this)},r.references[t]=e,r.counters[t]=1,n(e)}if(e)a(e);else{if(!r.creator)return void o(Error("Reference id("+t+") is not allowed. Reference creator should be defined."));r.creator.call(null,t,(function(t){a(t)}),(function(t){o(t)}))}}}));return this.references[t]||(this.references[t]=n),n}},{key:"get",value:function(){var t,e=(t=Fd().mark((function t(e,r){var n;return Fd().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(!(n=this.references[e])){t.next=13;break}if(n instanceof Promise){t.next=7;break}if(e in this.counters){t.next=5;break}throw new Error("No Reference Count");case 5:return this.counters[e]++,t.abrupt("return",n);case 7:if(!r){t.next=13;break}return t.next=10,n;case 10:return n=t.sent,this.counters[e]++,t.abrupt("return",n);case 13:if(!r){t.next=17;break}return t.next=16,this.add(e);case 16:return t.abrupt("return",t.sent);case 17:throw new Error("No References for "+e);case 18:case"end":return t.stop()}}),t,this)})),function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function a(t){zd(i,n,o,a,s,"next",t)}function s(t){zd(i,n,o,a,s,"throw",t)}a(void 0)}))});return function(t,r){return e.apply(this,arguments)}}()},{key:"_id",value:function(t){for(var e in this.references)if(this.references[e]===t)return e;return-1}},{key:"release",value:function(t){var e=this._id(t),r=this.references[e];r?(this.counters[e]--,0==this.counters[e]&&(this.disposer&&this.disposer.call(null,e,r),delete this.references[e],delete this.counters[e],delete t.release,to("RELEASED",e))):Zn("No Referenced ID")}}],n=[{key:"residents",get:function(){return Yd}}],r&&Ud(e.prototype,r),n&&Ud(e,n),Object.defineProperty(e,"prototype",{writable:!1}),t}();function Hd(t){return Hd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Hd(t)}function Wd(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t,e){if("object"!==Hd(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,"string");if("object"!==Hd(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===Hd(o)?o:String(o)),n)}var o}var Xd={},qd={},Vd=[];function Qd(t){var e="SCRIPT"==t.target.tagName?Xd:qd,r=t.target.src||t.target.href;e[r]=!0,Vd.forEach((function(t,n){var o=t.resolve,i=t.scripts,a=t.styles;if(e==Xd){var s=i.indexOf(r);s>-1&&s<i.length-1&&Jd(i[s+1])}for(var u=0;u<i.length;u++)if(!Xd[i[u]])return;if(a)for(var c=0;c<a.length;c++)if(!qd[a[c]])return;o(),Vd[n]=null})),Vd=Vd.filter(Boolean)}function Kd(t){var e=t.target.src,r="SCRIPT"==t.target.tagName?Xd:qd;Vd.forEach((function(n,o){var i=n.reject,a=n.scripts,s=n.styles,u=!1;if(r===Xd){for(var c=0;c<a.length;c++)if(a[c]==e){u=!0;break}}else if(s)for(var f=0;f<s.length;f++)if(s[f]==e){u=!0;break}u&&(i(t),Vd[o]=null)})),Vd=Vd.filter(Boolean),delete r[e],document.head.removeChild(t.target)}function Jd(t){Xd[t]=!1;var e=document.createElement("script");e.onload=Qd,e.onerror=Kd,e.type="text/javascript",e.src=t,document.head.appendChild(e)}var Zd=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,r;return e=t,r=[{key:"load",value:function(t,e){return"string"==typeof t&&(t=[t]),"string"==typeof e&&(e=[e]),new Promise((function(r,n){if((!t||t instanceof Array)&&(!e||e instanceof Array)){var o,i=!0;if(e&&e.forEach((function(t){qd.hasOwnProperty(t)||function(t){qd[t]=!1;var e=document.createElement("link");e.onload=Qd,e.onerror=Kd,e.type="text/css",e.rel="stylesheet",e.media="screen,print",e.href=t,document.head.appendChild(e)}(t),qd[t]||(i=!1)})),t&&t.length>0&&t.forEach((function(t){Xd.hasOwnProperty(t)?Xd[t]||(i=!1):o=o||t})),o)Jd(o);else if(i)return void r();Vd.push({resolve:r,reject:n,scripts:t,styles:e})}else n("invalid sources for load")}))}}],null&&Wd(e.prototype,null),r&&Wd(e,r),Object.defineProperty(e,"prototype",{writable:!1}),t}();const $d="0.0.0";var tv=0,ev=performance.now(),rv=0;function nv(){return tv}requestAnimationFrame((function t(){requestAnimationFrame(t),rv++;var e=performance.now(),r=e-ev;r<1e3||(tv=Math.round(1e3*rv/r),ev=e,rv=0)}));var ov=i;function iv(){}})(),n})()));
|