/*! For license information please see bundle.min.js.LICENSE */ ! function(t) { var e = {}; function n(i) { if (e[i]) return e[i].exports; var r = e[i] = { i: i, l: !1, exports: {} }; return t[i].call(r.exports, r, r.exports, n), r.l = !0, r.exports } n.m = t, n.c = e, n.d = function(t, e, i) { n.o(t, e) || Object.defineProperty(t, e, { enumerable: !0, get: i }) }, n.r = function(t) { "undefined" != typeof Symbol && Symbol.toStringTag && Object.defineProperty(t, Symbol.toStringTag, { value: "Module" }), Object.defineProperty(t, "__esModule", { value: !0 }) }, n.t = function(t, e) { if (1 & e && (t = n(t)), 8 & e) return t; if (4 & e && "object" == typeof t && t && t.__esModule) return t; var i = Object.create(null); if (n.r(i), Object.defineProperty(i, "default", { enumerable: !0, value: t }), 2 & e && "string" != typeof t) for (var r in t) n.d(i, r, function(e) { return t[e] }.bind(null, r)); return i }, n.n = function(t) { var e = t && t.__esModule ? function() { return t.default } : function() { return t }; return n.d(e, "a", e), e }, n.o = function(t, e) { return Object.prototype.hasOwnProperty.call(t, e) }, n.p = "", n(n.s = 106) }([function(t, e, n) { "use strict"; (function(t) { n.d(e, "a", function() { return o }); var i = n(9); function r(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } var o = function() { function e() { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e) } return function(t, e, n) { n && r(t, n) }(e, 0, [{ key: "isBest", value: function(t) { var n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : e.currentLevel; return t > e.storage.data.score[n] } }, { key: "isGameScene", value: function() { return "game" === e.currentScene.name } }, { key: "toggleAudio", value: function() { e.storage.data.muted = !e.storage.data.muted, e.storage.save(), P3.audio.mute(e.storage.data.muted) } }, { key: "playSound", value: function(t) { var n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : { loop: !1 }, i = P3.audio.playSound(t, n); return i._howl.volume(e.storage.data.muted ? 0 : 1), i } }, { key: "playlist", value: function(t) { var n = this, i = arguments.length > 1 && void 0 !== arguments[1] && arguments[1], r = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : 0; if (0 === r && (e.playListID++, e.playListPlaying[e.playListID] = []), r === t.length) return null; var o = !(!0 !== i || r !== t.length - 1), s = e.playSound(t[r], { loop: o }); return e.playListPlaying[e.playListID].push(s), s.signals.end.once(function() { n.playlist(t, i, ++r) }), e.playListID } }, { key: "stopPlaylist", value: function(t) { for (var n = 0; n < e.playListPlaying[t].length; n++) { var i = e.playListPlaying[t][n]; e.stopSound(i._howl) } } }, { key: "pauseSound", value: function(t) { null != t && t.howl.pause() } }, { key: "resumeSound", value: function(t) { null != t && t.howl.play() } }, { key: "stopSound", value: function(t) { null != t && t.stop() } }, { key: "random", value: function() { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 1; return null === e.seed ? Math.floor(Math.random() * t) : Math.floor(Object(i.d)(0, t)) } }, { key: "dealsDamage", value: function(t) { var n = []; return n.push(e.nextRps(t)), n.push(e.nextRps(t + 1)), n } }, { key: "receivesDamage", value: function(t) { var n = []; return n.push(e.prevRps(t)), n.push(e.prevRps(t - 1)), n } }, { key: "nextRps", value: function(t) { return (t + 1) % Object.keys(e.rps).length } }, { key: "prevRps", value: function(t) { var n = Object.keys(e.rps).length; t--; do { t += n } while (t < 0); return t % n } }, { key: "getDamage", value: function(t, n) { var i = t.rps, r = n.rps, o = t.attack, s = e.dealsDamage(i), a = e.receivesDamage(i); return -1 !== s.indexOf(r) && (o += o / 100 * e.attackMultiplier), -1 !== a.indexOf(r) && (o -= o / 100 * e.attackDivider), o / n.health } }, { key: "isDev", get: function() { return t && t.env, !1 } }]), e }(); o.view = null, o.stage = null, o.renderer = null, o.bgColor = 0, o.transitions = null, o.transitionDuration = .5, o.storage = null, o.update = null, o.language = null, o.currentScene = null, o.seed = null, o.config = {}, o.tutorial = !1, o.numPaths = 9, o.levels = 55, o.target = [0, 0, 0], o.currentLevel = 0, o.nextLevel = null, o.levelSettings = { size: { x: 8, y: 6 }, tileSize: { width: 90, height: 90 }, canNotFalldown: !0, available: [0, 1, 2, 3, 4] }, o.attackMultiplier = 20, o.attackDivider = 20, o.heroRageDamage = 1e-4, o.rageCooldown = .006, o.rageMultiplier = 2, o.friendEnemyDelay = .5, o.rps = { rock: 0, scissors: 1, lizard: 2, paper: 3, spock: 4 }, o.hero = { type: 0, rps: o.rps.rock, charge: .075, attack: 20, health: 100 }, o.enemy = { type: 100, rps: o.rps.paper, charge: .1, attack: 15, health: 100, build: .1, roundsToCharge: 1 }, o.friends = [{ type: 1, rps: o.rps.scissors, charge: .1, attack: 10, texture: "btn_friend_1", colors: [16440631, 7282952] }, { type: 2, rps: o.rps.lizard, charge: .1, attack: 10, texture: "btn_friend_2", colors: [8969468, 10856] }, { type: 3, rps: o.rps.paper, charge: .1, attack: 10, texture: "btn_friend_3", colors: [8649609, 213799] }, { type: 4, rps: o.rps.spock, charge: .1, attack: 10, texture: "btn_friend_4", colors: [11692031, 1180713] }], o.unlocks = [], o.playListID = -1, o.playListPlaying = {} }).call(this, n(74)) }, function(t, e, n) { "use strict"; function i(t) { return (i = "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 })(t) } function r(t, e) { return !e || "object" !== i(e) && "function" != typeof e ? s(t) : e } function o(t) { return (o = Object.setPrototypeOf ? Object.getPrototypeOf : function(t) { return t.__proto__ || Object.getPrototypeOf(t) })(t) } function s(t) { if (void 0 === t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return t } function a(t, e) { return (a = Object.setPrototypeOf || function(t, e) { return t.__proto__ = e, t })(t, e) } var u = function(t) { function e() { var t, n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}; return function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e), "string" == typeof n.texture || n.texture instanceof String ? n.texture = P3.assets.texture(n.texture) : void 0 === n.texture && (n.texture = P3.assets._fallbackTexture), (t = r(this, o(e).call(this, n.texture))).applyParams(n, ["texture"]), r(t, s(t)) } return 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 } }), e && a(t, e) }(e, PIXI.Sprite), e }(); n.d(e, "a", function() { return u }) }, function(t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(); function r(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") } var o = function() { function t(e, n, i) { void 0 === n && (n = !1), r(this, t), this._fn = e, this._once = n, this._thisArg = i, this._next = this._prev = this._owner = null } return i(t, [{ key: "detach", value: function() { return null !== this._owner && (this._owner.detach(this), !0) } }]), t }(); function s(t, e) { return t._head ? (t._tail._next = e, e._prev = t._tail, t._tail = e) : (t._head = e, t._tail = e), e._owner = t, e } var a = function() { function t() { r(this, t), this._head = this._tail = void 0 } return i(t, [{ key: "handlers", value: function() { var t = !(arguments.length <= 0 || void 0 === arguments[0]) && arguments[0], e = this._head; if (t) return !!e; for (var n = []; e;) n.push(e), e = e._next; return n } }, { key: "has", value: function(t) { if (!(t instanceof o)) throw new Error("MiniSignal#has(): First arg must be a MiniSignalBinding object."); return t._owner === this } }, { key: "dispatch", value: function() { var t = this._head; if (!t) return !1; for (; t;) t._once && this.detach(t), t._fn.apply(t._thisArg, arguments), t = t._next; return !0 } }, { key: "add", value: function(t) { var e = arguments.length <= 1 || void 0 === arguments[1] ? null : arguments[1]; if ("function" != typeof t) throw new Error("MiniSignal#add(): First arg must be a Function."); return s(this, new o(t, !1, e)) } }, { key: "once", value: function(t) { var e = arguments.length <= 1 || void 0 === arguments[1] ? null : arguments[1]; if ("function" != typeof t) throw new Error("MiniSignal#once(): First arg must be a Function."); return s(this, new o(t, !0, e)) } }, { key: "detach", value: function(t) { if (!(t instanceof o)) throw new Error("MiniSignal#detach(): First arg must be a MiniSignalBinding object."); return t._owner !== this ? this : (t._prev && (t._prev._next = t._next), t._next && (t._next._prev = t._prev), t === this._head ? (this._head = t._next, null === t._next && (this._tail = null)) : t === this._tail && (this._tail = t._prev, this._tail._next = null), t._owner = null, this) } }, { key: "detachAll", value: function() { var t = this._head; if (!t) return this; for (this._head = this._tail = null; t;) t._owner = null, t = t._next; return this } }]), t }(); a.MiniSignalBinding = o, e.default = a, t.exports = e.default }, function(t, e, n) { "use strict"; function i(t) { return (i = "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 })(t) } function r(t, e) { return !e || "object" !== i(e) && "function" != typeof e ? s(t) : e } function o(t) { return (o = Object.setPrototypeOf ? Object.getPrototypeOf : function(t) { return t.__proto__ || Object.getPrototypeOf(t) })(t) } function s(t) { if (void 0 === t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return t } function a(t, e) { return (a = Object.setPrototypeOf || function(t, e) { return t.__proto__ = e, t })(t, e) } var u = function(t) { function e() { var t, n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}; return function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e), (t = r(this, o(e).call(this))).applyParams(n), r(t, s(t)) } return 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 } }), e && a(t, e) }(e, PIXI.Container), e }(); n.d(e, "a", function() { return u }) }, function(t, e, n) { "use strict"; e.__esModule = !0, e.VERSION = "4.8.8", e.PI_2 = 2 * Math.PI, e.RAD_TO_DEG = 180 / Math.PI, e.DEG_TO_RAD = Math.PI / 180, e.RENDERER_TYPE = { UNKNOWN: 0, WEBGL: 1, CANVAS: 2 }, e.BLEND_MODES = { NORMAL: 0, ADD: 1, MULTIPLY: 2, SCREEN: 3, OVERLAY: 4, DARKEN: 5, LIGHTEN: 6, COLOR_DODGE: 7, COLOR_BURN: 8, HARD_LIGHT: 9, SOFT_LIGHT: 10, DIFFERENCE: 11, EXCLUSION: 12, HUE: 13, SATURATION: 14, COLOR: 15, LUMINOSITY: 16, NORMAL_NPM: 17, ADD_NPM: 18, SCREEN_NPM: 19 }, e.DRAW_MODES = { POINTS: 0, LINES: 1, LINE_LOOP: 2, LINE_STRIP: 3, TRIANGLES: 4, TRIANGLE_STRIP: 5, TRIANGLE_FAN: 6 }, e.SCALE_MODES = { LINEAR: 0, NEAREST: 1 }, e.WRAP_MODES = { CLAMP: 0, REPEAT: 1, MIRRORED_REPEAT: 2 }, e.GC_MODES = { AUTO: 0, MANUAL: 1 }, e.URL_FILE_EXTENSION = /\.(\w{3,4})(?:$|\?|#)/i, e.DATA_URI = /^\s*data:(?:([\w-]+)\/([\w+.-]+))?(?:;charset=([\w-]+))?(?:;(base64))?,(.*)/i, e.SVG_SIZE = /]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*(?:\s(width|height)=('|")(\d*(?:\.\d+)?)(?:px)?('|"))[^>]*>/i, e.SHAPES = { POLY: 0, RECT: 1, CIRC: 2, ELIP: 3, RREC: 4 }, e.PRECISION = { LOW: "lowp", MEDIUM: "mediump", HIGH: "highp" }, e.TRANSFORM_MODE = { STATIC: 0, DYNAMIC: 1 }, e.TEXT_GRADIENT = { LINEAR_VERTICAL: 0, LINEAR_HORIZONTAL: 1 }, e.UPDATE_PRIORITY = { INTERACTION: 50, HIGH: 25, NORMAL: 0, LOW: -25, UTILITY: -50 } }, function(t, e, n) { "use strict"; e.__esModule = !0, e.autoDetectRenderer = e.Application = e.Filter = e.SpriteMaskFilter = e.Quad = e.RenderTarget = e.ObjectRenderer = e.WebGLManager = e.Shader = e.CanvasRenderTarget = e.TextureUvs = e.VideoBaseTexture = e.BaseRenderTexture = e.RenderTexture = e.BaseTexture = e.TextureMatrix = e.Texture = e.Spritesheet = e.CanvasGraphicsRenderer = e.GraphicsRenderer = e.GraphicsData = e.Graphics = e.TextMetrics = e.TextStyle = e.Text = e.SpriteRenderer = e.CanvasTinter = e.CanvasSpriteRenderer = e.Sprite = e.TransformBase = e.TransformStatic = e.Transform = e.Container = e.DisplayObject = e.Bounds = e.glCore = e.WebGLRenderer = e.CanvasRenderer = e.ticker = e.utils = e.settings = void 0; var i = n(4); Object.keys(i).forEach(function(t) { "default" !== t && "__esModule" !== t && Object.defineProperty(e, t, { enumerable: !0, get: function() { return i[t] } }) }); var r = n(11); Object.keys(r).forEach(function(t) { "default" !== t && "__esModule" !== t && Object.defineProperty(e, t, { enumerable: !0, get: function() { return r[t] } }) }); var o = n(12); Object.defineProperty(e, "glCore", { enumerable: !0, get: function() { return G(o).default } }); var s = n(38); Object.defineProperty(e, "Bounds", { enumerable: !0, get: function() { return G(s).default } }); var a = n(61); Object.defineProperty(e, "DisplayObject", { enumerable: !0, get: function() { return G(a).default } }); var u = n(21); Object.defineProperty(e, "Container", { enumerable: !0, get: function() { return G(u).default } }); var l = n(63); Object.defineProperty(e, "Transform", { enumerable: !0, get: function() { return G(l).default } }); var h = n(62); Object.defineProperty(e, "TransformStatic", { enumerable: !0, get: function() { return G(h).default } }); var c = n(40); Object.defineProperty(e, "TransformBase", { enumerable: !0, get: function() { return G(c).default } }); var f = n(42); Object.defineProperty(e, "Sprite", { enumerable: !0, get: function() { return G(f).default } }); var p = n(136); Object.defineProperty(e, "CanvasSpriteRenderer", { enumerable: !0, get: function() { return G(p).default } }); var d = n(28); Object.defineProperty(e, "CanvasTinter", { enumerable: !0, get: function() { return G(d).default } }); var y = n(139); Object.defineProperty(e, "SpriteRenderer", { enumerable: !0, get: function() { return G(y).default } }); var g = n(154); Object.defineProperty(e, "Text", { enumerable: !0, get: function() { return G(g).default } }); var m = n(77); Object.defineProperty(e, "TextStyle", { enumerable: !0, get: function() { return G(m).default } }); var v = n(78); Object.defineProperty(e, "TextMetrics", { enumerable: !0, get: function() { return G(v).default } }); var _ = n(156); Object.defineProperty(e, "Graphics", { enumerable: !0, get: function() { return G(_).default } }); var b = n(79); Object.defineProperty(e, "GraphicsData", { enumerable: !0, get: function() { return G(b).default } }); var x = n(158); Object.defineProperty(e, "GraphicsRenderer", { enumerable: !0, get: function() { return G(x).default } }); var w = n(165); Object.defineProperty(e, "CanvasGraphicsRenderer", { enumerable: !0, get: function() { return G(w).default } }); var T = n(166); Object.defineProperty(e, "Spritesheet", { enumerable: !0, get: function() { return G(T).default } }); var S = n(17); Object.defineProperty(e, "Texture", { enumerable: !0, get: function() { return G(S).default } }); var P = n(75); Object.defineProperty(e, "TextureMatrix", { enumerable: !0, get: function() { return G(P).default } }); var E = n(19); Object.defineProperty(e, "BaseTexture", { enumerable: !0, get: function() { return G(E).default } }); var O = n(45); Object.defineProperty(e, "RenderTexture", { enumerable: !0, get: function() { return G(O).default } }); var k = n(69); Object.defineProperty(e, "BaseRenderTexture", { enumerable: !0, get: function() { return G(k).default } }); var M = n(66); Object.defineProperty(e, "VideoBaseTexture", { enumerable: !0, get: function() { return G(M).default } }); var I = n(67); Object.defineProperty(e, "TextureUvs", { enumerable: !0, get: function() { return G(I).default } }); var A = n(70); Object.defineProperty(e, "CanvasRenderTarget", { enumerable: !0, get: function() { return G(A).default } }); var C = n(24); Object.defineProperty(e, "Shader", { enumerable: !0, get: function() { return G(C).default } }); var R = n(23); Object.defineProperty(e, "WebGLManager", { enumerable: !0, get: function() { return G(R).default } }); var D = n(29); Object.defineProperty(e, "ObjectRenderer", { enumerable: !0, get: function() { return G(D).default } }); var L = n(31); Object.defineProperty(e, "RenderTarget", { enumerable: !0, get: function() { return G(L).default } }); var j = n(76); Object.defineProperty(e, "Quad", { enumerable: !0, get: function() { return G(j).default } }); var N = n(72); Object.defineProperty(e, "SpriteMaskFilter", { enumerable: !0, get: function() { return G(N).default } }); var B = n(73); Object.defineProperty(e, "Filter", { enumerable: !0, get: function() { return G(B).default } }); var F = n(80); Object.defineProperty(e, "Application", { enumerable: !0, get: function() { return G(F).default } }); var X = n(81); Object.defineProperty(e, "autoDetectRenderer", { enumerable: !0, get: function() { return X.autoDetectRenderer } }); var U = z(n(7)), V = z(n(44)), Y = G(n(10)), H = G(n(22)), W = G(n(30)); function z(t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e } function G(t) { return t && t.__esModule ? t : { default: t } } e.settings = Y.default, e.utils = U, e.ticker = V, e.CanvasRenderer = H.default, e.WebGLRenderer = W.default }, function(t, e, n) { "use strict"; (function(t) { e.__esModule = !0, e.loader = e.prepare = e.particles = e.mesh = e.loaders = e.interaction = e.filters = e.extras = e.extract = e.accessibility = void 0; var i = n(107); Object.keys(i).forEach(function(t) { "default" !== t && "__esModule" !== t && Object.defineProperty(e, t, { enumerable: !0, get: function() { return i[t] } }) }); var r = n(5); Object.keys(r).forEach(function(t) { "default" !== t && "__esModule" !== t && Object.defineProperty(e, t, { enumerable: !0, get: function() { return r[t] } }) }); var o = function(t) { return t && t.__esModule ? t : { default: t } }(n(167)), s = y(n(168)), a = y(n(170)), u = y(n(83)), l = y(n(180)), h = y(n(187)), c = y(n(189)), f = y(n(193)), p = y(n(198)), d = y(n(203)); function y(t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e } r.utils.mixins.performMixins(); var g = c.shared || null; e.accessibility = s, e.extract = a, e.extras = u, e.filters = l, e.interaction = h, e.loaders = c, e.mesh = f, e.particles = p, e.prepare = d, e.loader = g, "function" == typeof o.default && (0, o.default)(e), t.PIXI = e }).call(this, n(27)) }, function(t, e, n) { "use strict"; e.__esModule = !0, e.premultiplyBlendMode = e.BaseTextureCache = e.TextureCache = e.earcut = e.mixins = e.pluginTarget = e.EventEmitter = e.removeItems = e.isMobile = void 0, e.uid = function() { return ++d }, e.hex2rgb = function(t, e) { return (e = e || [])[0] = (t >> 16 & 255) / 255, e[1] = (t >> 8 & 255) / 255, e[2] = (255 & t) / 255, e }, e.hex2string = function(t) { return t = t.toString(16), "#" + ("000000".substr(0, 6 - t.length) + t) }, e.rgb2hex = function(t) { return (255 * t[0] << 16) + (255 * t[1] << 8) + (255 * t[2] | 0) }, e.getResolutionOfUrl = function(t, e) { var n = r.default.RETINA_PREFIX.exec(t); return n ? parseFloat(n[1]) : void 0 !== e ? e : 1 }, e.decomposeDataUri = function(t) { var e = i.DATA_URI.exec(t); if (e) return { mediaType: e[1] ? e[1].toLowerCase() : void 0, subType: e[2] ? e[2].toLowerCase() : void 0, charset: e[3] ? e[3].toLowerCase() : void 0, encoding: e[4] ? e[4].toLowerCase() : void 0, data: e[5] } }, e.getUrlFileExtension = function(t) { var e = i.URL_FILE_EXTENSION.exec(t); if (e) return e[1].toLowerCase() }, e.getSvgSize = function(t) { var e = i.SVG_SIZE.exec(t), n = {}; return e && (n[e[1]] = Math.round(parseFloat(e[3])), n[e[5]] = Math.round(parseFloat(e[7]))), n }, e.skipHello = function() { y = !0 }, e.sayHello = function(t) { if (!y) { if (navigator.userAgent.toLowerCase().indexOf("chrome") > -1) { var e = ["\n %c %c %c PixiJS " + i.VERSION + " - ✰ " + t + " ✰ %c %c http://www.pixijs.com/ %c %c ♥%c♥%c♥ \n\n", "background: #ff66a5; padding:5px 0;", "background: #ff66a5; padding:5px 0;", "color: #ff66a5; background: #030307; padding:5px 0;", "background: #ff66a5; padding:5px 0;", "background: #ffc3dc; padding:5px 0;", "background: #ff66a5; padding:5px 0;", "color: #ff2424; background: #fff; padding:5px 0;", "color: #ff2424; background: #fff; padding:5px 0;", "color: #ff2424; background: #fff; padding:5px 0;"]; window.console.log.apply(console, e) } else window.console && window.console.log("PixiJS " + i.VERSION + " - " + t + " - http://www.pixijs.com/"); y = !0 } }, e.isWebGLSupported = function() { var t = { stencil: !0, failIfMajorPerformanceCaveat: !0 }; try { if (!window.WebGLRenderingContext) return !1; var e = document.createElement("canvas"), n = e.getContext("webgl", t) || e.getContext("experimental-webgl", t), i = !(!n || !n.getContextAttributes().stencil); if (n) { var r = n.getExtension("WEBGL_lose_context"); r && r.loseContext() } return n = null, i } catch (t) { return !1 } }, e.sign = function(t) { return 0 === t ? 0 : t < 0 ? -1 : 1 }, e.destroyTextureCache = function() { var t = void 0; for (t in g) g[t].destroy(); for (t in m) m[t].destroy() }, e.clearTextureCache = function() { var t = void 0; for (t in g) delete g[t]; for (t in m) delete m[t] }, e.correctBlendMode = function(t, e) { return v[e ? 1 : 0][t] }, e.premultiplyTint = function(t, e) { if (1 === e) return (255 * e << 24) + t; if (0 === e) return 0; var n = t >> 16 & 255, i = t >> 8 & 255, r = 255 & t; return (255 * e << 24) + ((n = n * e + .5 | 0) << 16) + ((i = i * e + .5 | 0) << 8) + (r * e + .5 | 0) }, e.premultiplyRgba = function(t, e, n, i) { return n = n || new Float32Array(4), i || void 0 === i ? (n[0] = t[0] * e, n[1] = t[1] * e, n[2] = t[2] * e) : (n[0] = t[0], n[1] = t[1], n[2] = t[2]), n[3] = e, n }, e.premultiplyTintToRgba = function(t, e, n, i) { return (n = n || new Float32Array(4))[0] = (t >> 16 & 255) / 255, n[1] = (t >> 8 & 255) / 255, n[2] = (255 & t) / 255, (i || void 0 === i) && (n[0] *= e, n[1] *= e, n[2] *= e), n[3] = e, n }; var i = n(4), r = p(n(10)), o = p(n(18)), s = p(n(124)), a = f(n(125)), u = f(n(39)), l = p(n(126)), h = p(n(127)), c = p(n(41)); function f(t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e } function p(t) { return t && t.__esModule ? t : { default: t } } var d = 0, y = !1; e.isMobile = u, e.removeItems = l.default, e.EventEmitter = o.default, e.pluginTarget = s.default, e.mixins = a, e.earcut = c.default; var g = e.TextureCache = Object.create(null), m = e.BaseTextureCache = Object.create(null), v = e.premultiplyBlendMode = (0, h.default)() }, function(t, e, n) { "use strict"; var i = n(0), r = n(9); 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 })(t) } function s(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } function a(t) { return (a = Object.setPrototypeOf ? Object.getPrototypeOf : function(t) { return t.__proto__ || Object.getPrototypeOf(t) })(t) } function u(t, e) { return (u = Object.setPrototypeOf || function(t, e) { return t.__proto__ = e, t })(t, e) } var l = function(t) { function e(t) { var n; ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var r = "defaultText"; return void 0 !== t.textID ? r = i.a.language.get(t.textID) : void 0 !== t.text && (r = t.text), (n = function(t, e) { return !e || "object" !== o(e) && "function" != typeof e ? function(t) { if (void 0 === t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return t }(t) : e }(this, a(e).call(this, r, t.style))).applyParams(t), n } return 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 } }), e && u(t, e) }(e, PIXI.extras.BitmapText), function(t, e, n) { e && s(t.prototype, e) }(e, [{ key: "doSeppuku", value: function() { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : { children: !0 }; this.destroy(t) } }]), e }(); r.b.mixin(l), n.d(e, "a", function() { return l }) }, function(t, e, n) { "use strict"; var i = n(0), r = { mixin: function(t) { ! function(t) { t.__plugins = {}, t.registerPlugin = function(e, n) { t.__plugins[e] = n }, t.prototype.destroyPlugin = function(t, e) { this.plugins[t].doSeppuku(e), this.plugins[t] = null, delete this.plugins[t] }, t.prototype.isUnused = function(t) { return void 0 === this.plugins[t].owner || null === this.plugins[t].owner }, t.prototype.initPlugin = function(e) { this.plugins = this.plugins || {}, this.plugins[e] = new t.__plugins[e](this) }, t.prototype.initPlugins = function() { for (var e in this.plugins = this.plugins || {}, t.__plugins) { try { this.plugins[e] = new t.__plugins[e](this) } catch (t) {} void 0 !== this.plugins[e] && this.isUnused(e) && this.destroyPlugin(e) } }, t.prototype.destroyPlugins = function(t) { for (var e in this.plugins) this.plugins[e].doSeppuku(t), this.plugins[e] = null; this.plugins = null }, t.prototype.destroyUnusedPlugins = function(t) { for (var e in this.plugins) void 0 !== this.plugins[e] && this.isUnused(e) && this.destroyPlugin(e, t) } }(t) } }; function o(t) { return JSON.parse(JSON.stringify(t)) } function s() { return Math.floor(Date.now() * Math.random()).toString() } function a() { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0, e = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 1; return i.a.seed = (9301 * i.a.seed + 49297) % 233280, t + i.a.seed / 233280 * (e - t) } n.d(e, "a", function() { return o }), n.d(e, "c", function() { return s }), n.d(e, "d", function() { return a }), n.d(e, "b", function() { return r }) }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = o(n(122)), r = o(n(123)); function o(t) { return t && t.__esModule ? t : { default: t } } e.default = { TARGET_FPMS: .06, MIPMAP_TEXTURES: !0, RESOLUTION: 1, FILTER_RESOLUTION: 1, SPRITE_MAX_TEXTURES: (0, i.default)(32), SPRITE_BATCH_SIZE: 4096, RETINA_PREFIX: /@([0-9\.]+)x/, RENDER_OPTIONS: { view: null, antialias: !1, forceFXAA: !1, autoResize: !1, transparent: !1, backgroundColor: 0, clearBeforeRender: !0, preserveDrawingBuffer: !1, roundPixels: !1, width: 800, height: 600, legacy: !1 }, TRANSFORM_MODE: 0, GC_MODE: 0, GC_MAX_IDLE: 3600, GC_MAX_CHECK_COUNT: 600, WRAP_MODE: 0, SCALE_MODE: 0, PRECISION_VERTEX: "highp", PRECISION_FRAGMENT: "mediump", CAN_UPLOAD_SAME_BUFFER: (0, r.default)(), MESH_CANVAS_PADDING: 0 } }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = n(34); Object.defineProperty(e, "Point", { enumerable: !0, get: function() { return f(i).default } }); var r = n(50); Object.defineProperty(e, "ObservablePoint", { enumerable: !0, get: function() { return f(r).default } }); var o = n(35); Object.defineProperty(e, "Matrix", { enumerable: !0, get: function() { return f(o).default } }); var s = n(51); Object.defineProperty(e, "GroupD8", { enumerable: !0, get: function() { return f(s).default } }); var a = n(112); Object.defineProperty(e, "Circle", { enumerable: !0, get: function() { return f(a).default } }); var u = n(113); Object.defineProperty(e, "Ellipse", { enumerable: !0, get: function() { return f(u).default } }); var l = n(114); Object.defineProperty(e, "Polygon", { enumerable: !0, get: function() { return f(l).default } }); var h = n(36); Object.defineProperty(e, "Rectangle", { enumerable: !0, get: function() { return f(h).default } }); var c = n(115); function f(t) { return t && t.__esModule ? t : { default: t } } Object.defineProperty(e, "RoundedRectangle", { enumerable: !0, get: function() { return f(c).default } }) }, function(t, e, n) { var i = { createContext: n(116), setVertexAttribArrays: n(52), GLBuffer: n(117), GLFramebuffer: n(118), GLShader: n(119), GLTexture: n(53), VertexArrayObject: n(120), shader: n(121) }; t.exports && (t.exports = i), "undefined" != typeof window && (window.PIXI = window.PIXI || {}, window.PIXI.glCore = i) }, function(t, e, n) { "use strict"; n.d(e, "a", function() { return f }); var i = n(2), r = n.n(i), o = n(33), s = n(9), a = n(1); function u(t) { return (u = "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 })(t) } function l(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } function h(t) { return (h = Object.setPrototypeOf ? Object.getPrototypeOf : function(t) { return t.__proto__ || Object.getPrototypeOf(t) })(t) } function c(t, e) { return (c = Object.setPrototypeOf || function(t, e) { return t.__proto__ = e, t })(t, e) } var f = function(t) { function e(t) { var n; return function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e), Array.isArray(t.textures) && void 0 === t.texture && (t.texture = t.textures[0]), (n = function(t, e) { return !e || "object" !== u(e) && "function" != typeof e ? function(t) { if (void 0 === t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return t }(t) : e }(this, h(e).call(this, t))).__params = t, n.createSignals(), n.id = "button", n.initState(), n.responsive = !0, n.initTextures(), n.on("pointertap", n._onPointerTap), n.on("pointerdown", n._onPointerDown), n.on("pointerup", n._onPointerUp), n.on("pointerupoutside", n._onPointerUpOutside), n.on("pointerover", n._onPointerOver), n.on("pointerout", n._onPointerOut), n.initPlugins(), n } return 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 } }), e && c(t, e) }(e, a.a), function(t, e, n) { e && l(t.prototype, e) }(e, [{ key: "initTextures", value: function() { if (!Array.isArray(this.__params.textures)) { var t = this.__params.textures; this.__params.textures = [], this.__params.textures.push(t) } this.__params.texture = this.getTexture(void 0 !== this.__params.textures ? this.__params.textures[0] : void 0), this.fillStates(this.id, this.__params.textures) } }, { key: "initState", value: function() { this.state = new o.a, this.state.signals.changed.add(this.onStateChanged, this) } }, { key: "createSignals", value: function() { this.signals = void 0 !== this.signals ? this.signals : {}, this.signals.tap = new r.a, this.signals.down = new r.a, this.signals.over = new r.a, this.signals.out = new r.a, this.signals.up = new r.a, this.signals.upOutside = new r.a, this.signals.enabled = new r.a, this.signals.enabled.add(this._onEnabled, this) } }, { key: "destroySignals", value: function() { for (var t in this.signals) this.signals[t] instanceof r.a && this.signals[t].detachAll(); this.signals = null } }, { key: "_onPointerTap", value: function(t) { this.signals.tap.dispatch(this, t) } }, { key: "_onPointerDown", value: function(t) { this.state.set(2), this.signals.down.dispatch(this, t) } }, { key: "_onPointerUp", value: function(t) { PIXI.utils.isMobile.any ? this.state.set(0) : this.state.set(1), this.signals.up.dispatch(this, t) } }, { key: "_onPointerUpOutside", value: function(t) { this.state.set(0), this.signals.upOutside.dispatch(this, t) } }, { key: "_onPointerOver", value: function(t) { this.state.set(1), this.signals.over.dispatch(this, t) } }, { key: "_onPointerOut", value: function(t) { this.state.set(0), this.signals.out.dispatch(this, t) } }, { key: "_onEnabled", value: function() { this.enabled ? this.state.set(0) : this.state.set(3) } }, { key: "onStateChanged", value: function(t) { var e = this.state.get(this.id, t); void 0 !== e && (this.texture = e) } }, { key: "getTexture", value: function(t) { return ("string" == typeof t || t instanceof String) && (t = P3.assets.texture(t)), void 0 === t && (t = P3.assets._fallbackTexture), t } }, { key: "fillStates", value: function(t, e) { for (var n, i = 0; i < this.state.toggleStep; i++) void 0 === (n = Array.isArray(e) ? e[i] : e) && (n = e[0]), this.state.add(t, this.getTexture(n)) } }, { key: "update", value: function() { this.state.previousState = -1, this.state.set(this.state.currentState) } }, { key: "togglePrevious", value: function() { this.state.togglePrevious(this.id) } }, { key: "toggleNext", value: function() { this.state.toggleNext(this.id) } }, { key: "toggle", value: function() { this.state.toggleNext(this.id) } }, { key: "doSeppuku", value: function() { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : { children: !0 }; this.off("pointertap", this._onPointerTap), this.off("pointerdown", this._onPointerDown), this.off("pointerup", this._onPointerUp), this.off("pointerupoutside", this._onPointerUpOutside), this.off("pointerover", this._onPointerOver), this.off("pointerout", this._onPointerOut), this.destroyPlugins(t), this.state.doSeppuku(), this.destroySignals(), this.destroy(t) } }, { key: "hasTextures", get: function() { return void 0 !== this.__params.textures } }, { key: "enabled", get: function() { return this.responsive }, set: function(t) { this.responsive = t, this.update(), this.signals.enabled.dispatch(this.responsive) } }]), e }(); s.b.mixin(f) }, function(t, e, n) { "use strict"; n.d(e, "a", function() { return c }); var i = n(2), r = n.n(i), o = n(33), s = n(9); function a(t) { return (a = "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 })(t) } function u(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } function l(t) { return (l = Object.setPrototypeOf ? Object.getPrototypeOf : function(t) { return t.__proto__ || Object.getPrototypeOf(t) })(t) } function h(t, e) { return (h = Object.setPrototypeOf || function(t, e) { return t.__proto__ = e, t })(t, e) } var c = function(t) { function e(t) { var n; return function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e), (n = function(t, e) { return !e || "object" !== a(e) && "function" != typeof e ? function(t) { if (void 0 === t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return t }(t) : e }(this, l(e).call(this, PIXI.Texture.EMPTY, t.slice[0], t.slice[1], t.slice[2], t.slice[3]))).__params = t, n.createSignals(), n.id = "nineSliceButton", n.initState(), n.responsive = !0, n.initTextures(), n._anchorX = 0, n._anchorY = 0, n.setParams(), n.on("pointertap", n._onPointerTap), n.on("pointerdown", n._onPointerDown), n.on("pointerup", n._onPointerUp), n.on("pointerupoutside", n._onPointerUpOutside), n.on("pointerover", n._onPointerOver), n.on("pointerout", n._onPointerOut), n.update(), n.initPlugins(), n } return 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 } }), e && h(t, e) }(e, PIXI.mesh.NineSlicePlane), function(t, e, n) { e && u(t.prototype, e) }(e, [{ key: "setParams", value: function() { var t = ["x", "y", "anchorX", "anchorY", "anchorXY", "scaleX", "scaleY", "scaleXY", "width", "height", "tint", "alpha", "visible"]; for (var e in this.__params) - 1 !== t.indexOf(e) && (this[e] = this.__params[e]); this.anchorX = this._anchorX, this.anchorY = this._anchorY } }, { key: "initTextures", value: function() { if (!Array.isArray(this.__params.textures)) { var t = this.__params.textures; this.__params.textures = [], this.__params.textures.push(t) } this.__params.texture = this.getTexture(void 0 !== this.__params.textures ? this.__params.textures[0] : void 0), this.fillStates(this.id, this.__params.textures) } }, { key: "initState", value: function() { this.buttonState = new o.a, this.buttonState.signals.changed.add(this.onStateChanged, this) } }, { key: "createSignals", value: function() { this.signals = void 0 !== this.signals ? this.signals : {}, this.signals.tap = new r.a, this.signals.down = new r.a, this.signals.over = new r.a, this.signals.out = new r.a, this.signals.up = new r.a, this.signals.upOutside = new r.a, this.signals.enabled = new r.a, this.signals.enabled.add(this._onEnabled, this) } }, { key: "destroySignals", value: function() { for (var t in this.signals) this.signals[t] instanceof r.a && this.signals[t].detachAll(); this.signals = null } }, { key: "_onPointerTap", value: function(t) { this.signals.tap.dispatch(this, t) } }, { key: "_onPointerDown", value: function(t) { this.buttonState.set(2), this.signals.down.dispatch(this, t) } }, { key: "_onPointerUp", value: function(t) { PIXI.utils.isMobile.any ? this.buttonState.set(0) : this.buttonState.set(1), this.signals.up.dispatch(this, t) } }, { key: "_onPointerUpOutside", value: function(t) { this.buttonState.set(0), this.signals.upOutside.dispatch(this, t) } }, { key: "_onPointerOver", value: function(t) { this.buttonState.set(1), this.signals.over.dispatch(this, t) } }, { key: "_onPointerOut", value: function(t) { this.buttonState.set(0), this.signals.out.dispatch(this, t) } }, { key: "_onEnabled", value: function() { this.enabled ? this.buttonState.set(0) : this.buttonState.set(3) } }, { key: "onStateChanged", value: function(t) { var e = this.buttonState.get(this.id, t); void 0 !== e && (this.texture = e) } }, { key: "getTexture", value: function(t) { return ("string" == typeof t || t instanceof String) && (t = P3.assets.texture(t)), void 0 === t && (t = P3.assets._fallbackTexture), t } }, { key: "fillStates", value: function(t, e) { for (var n, i = 0; i < this.buttonState.toggleStep; i++) void 0 === (n = Array.isArray(e) ? e[i] : e) && (n = e[0]), this.buttonState.add(t, this.getTexture(n)) } }, { key: "update", value: function() { this.buttonState.previousState = -1, this.buttonState.set(this.buttonState.currentState) } }, { key: "togglePrevious", value: function() { this.buttonState.togglePrevious(this.id) } }, { key: "toggleNext", value: function() { this.buttonState.toggleNext(this.id) } }, { key: "toggle", value: function() { this.buttonState.toggleNext(this.id) } }, { key: "doSeppuku", value: function() { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : { children: !0 }; this.off("pointertap", this._onPointerTap), this.off("pointerdown", this._onPointerDown), this.off("pointerup", this._onPointerUp), this.off("pointerupoutside", this._onPointerUpOutside), this.off("pointerover", this._onPointerOver), this.off("pointerout", this._onPointerOut), this.destroyPlugins(), this.buttonState.doSeppuku(), this.destroySignals(), this.destroy(t) } }, { key: "hasTextures", get: function() { return void 0 !== this.__params.textures } }, { key: "enabled", get: function() { return this.responsive }, set: function(t) { this.responsive = t, this.update(), this.signals.enabled.dispatch(this.responsive) } }, { key: "anchorX", get: function() { return this._anchorX }, set: function(t) { this._anchorX = t, this.pivot.x = t * this.width / this.scale.x } }, { key: "anchorY", get: function() { return this._anchorY }, set: function(t) { this._anchorY = t, this.pivot.y = t * this.height / this.scale.y } }, { key: "anchorXY", set: function(t) { this.anchorX = t, this.anchorY = t } }]), e }(); s.b.mixin(c) }, function(t, e) { var n = function(t) { this.items = [], this._name = t }, i = n.prototype; i.emit = function(t, e, n, i, r, o, s, a) { if (arguments.length > 8) throw "max arguments reached"; for (var u = this.items, l = this._name, h = 0, c = u.length; h < c; h++) u[h][l](t, e, n, i, r, o, s, a); return this }, i.dispatch = i.emit, i.run = i.emit, i.add = function(t) { return t[this._name] && (this.remove(t), this.items.push(t)), this }, i.remove = function(t) { var e = this.items.indexOf(t); return -1 !== e && this.items.splice(e, 1), this }, i.contains = function(t) { return -1 !== this.items.indexOf(t) }, i.removeAll = function() { return this.items.length = 0, this }, i.destroy = function() { this.removeAll(), this.items = null, this._name = null }, i.detachAll = i.destroy, Object.defineProperties(i, { empty: { get: function() { return 0 === this.items.length } }, name: { get: function() { return this._name } } }), t.exports = n }, function(t, e, n) { (function(t) { function n(t, e) { for (var n = 0, i = t.length - 1; i >= 0; i--) { var r = t[i]; "." === r ? t.splice(i, 1) : ".." === r ? (t.splice(i, 1), n++) : n && (t.splice(i, 1), n--) } if (e) for (; n--; n) t.unshift(".."); return t } function i(t, e) { if (t.filter) return t.filter(e); for (var n = [], i = 0; i < t.length; i++) e(t[i], i, t) && n.push(t[i]); return n } e.resolve = function() { for (var e = "", r = !1, o = arguments.length - 1; o >= -1 && !r; o--) { var s = o >= 0 ? arguments[o] : t.cwd(); if ("string" != typeof s) throw new TypeError("Arguments to path.resolve must be strings"); s && (e = s + "/" + e, r = "/" === s.charAt(0)) } return (r ? "/" : "") + (e = n(i(e.split("/"), function(t) { return !!t }), !r).join("/")) || "." }, e.normalize = function(t) { var o = e.isAbsolute(t), s = "/" === r(t, -1); return (t = n(i(t.split("/"), function(t) { return !!t }), !o).join("/")) || o || (t = "."), t && s && (t += "/"), (o ? "/" : "") + t }, e.isAbsolute = function(t) { return "/" === t.charAt(0) }, e.join = function() { var t = Array.prototype.slice.call(arguments, 0); return e.normalize(i(t, function(t, e) { if ("string" != typeof t) throw new TypeError("Arguments to path.join must be strings"); return t }).join("/")) }, e.relative = function(t, n) { function i(t) { for (var e = 0; e < t.length && "" === t[e]; e++); for (var n = t.length - 1; n >= 0 && "" === t[n]; n--); return e > n ? [] : t.slice(e, n - e + 1) } t = e.resolve(t).substr(1), n = e.resolve(n).substr(1); for (var r = i(t.split("/")), o = i(n.split("/")), s = Math.min(r.length, o.length), a = s, u = 0; u < s; u++) if (r[u] !== o[u]) { a = u; break } var l = []; for (u = a; u < r.length; u++) l.push(".."); return (l = l.concat(o.slice(a))).join("/") }, e.sep = "/", e.delimiter = ":", e.dirname = function(t) { if ("string" != typeof t && (t += ""), 0 === t.length) return "."; for (var e = t.charCodeAt(0), n = 47 === e, i = -1, r = !0, o = t.length - 1; o >= 1; --o) if (47 === (e = t.charCodeAt(o))) { if (!r) { i = o; break } } else r = !1; return -1 === i ? n ? "/" : "." : n && 1 === i ? "/" : t.slice(0, i) }, e.basename = function(t, e) { var n = function(t) { "string" != typeof t && (t += ""); var e, n = 0, i = -1, r = !0; for (e = t.length - 1; e >= 0; --e) if (47 === t.charCodeAt(e)) { if (!r) { n = e + 1; break } } else -1 === i && (r = !1, i = e + 1); return -1 === i ? "" : t.slice(n, i) }(t); return e && n.substr(-1 * e.length) === e && (n = n.substr(0, n.length - e.length)), n }, e.extname = function(t) { "string" != typeof t && (t += ""); for (var e = -1, n = 0, i = -1, r = !0, o = 0, s = t.length - 1; s >= 0; --s) { var a = t.charCodeAt(s); if (47 !== a) - 1 === i && (r = !1, i = s + 1), 46 === a ? -1 === e ? e = s : 1 !== o && (o = 1) : -1 !== e && (o = -1); else if (!r) { n = s + 1; break } } return -1 === e || -1 === i || 0 === o || 1 === o && e === i - 1 && e === n + 1 ? "" : t.slice(e, i) }; var r = "b" === "ab".substr(-1) ? function(t, e, n) { return t.substr(e, n) } : function(t, e, n) { return e < 0 && (e = t.length + e), t.substr(e, n) } }).call(this, n(74)) }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = c(n(19)), o = c(n(66)), s = c(n(67)), a = c(n(18)), u = n(11), l = n(7), h = c(n(10)); function c(t) { return t && t.__esModule ? t : { default: t } } var f = function(t) { function e(n, i, r, o, s, a) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var l = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this)); if (l.noFrame = !1, i || (l.noFrame = !0, i = new u.Rectangle(0, 0, 1, 1)), n instanceof e && (n = n.baseTexture), l.baseTexture = n, l._frame = i, l.trim = o, l.valid = !1, l.requiresUpdate = !1, l._uvs = null, l.orig = r || i, l._rotate = Number(s || 0), !0 === s) l._rotate = 2; else if (l._rotate % 2 != 0) throw new Error("attempt to use diamond-shaped UVs. If you are sure, set rotation manually"); return n.hasLoaded ? (l.noFrame && (i = new u.Rectangle(0, 0, n.width, n.height), n.on("update", l.onBaseTextureUpdated, l)), l.frame = i) : n.once("loaded", l.onBaseTextureLoaded, l), l.defaultAnchor = a ? new u.Point(a.x, a.y) : new u.Point(0, 0), l._updateID = 0, l.transform = null, l.textureCacheIds = [], l } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.update = function() { this.baseTexture.update() }, e.prototype.onBaseTextureLoaded = function(t) { this._updateID++, this.noFrame ? this.frame = new u.Rectangle(0, 0, t.width, t.height) : this.frame = this._frame, this.baseTexture.on("update", this.onBaseTextureUpdated, this), this.emit("update", this) }, e.prototype.onBaseTextureUpdated = function(t) { this._updateID++, this._frame.width = t.width, this._frame.height = t.height, this.emit("update", this) }, e.prototype.destroy = function(t) { this.baseTexture && (t && (l.TextureCache[this.baseTexture.imageUrl] && e.removeFromCache(this.baseTexture.imageUrl), this.baseTexture.destroy()), this.baseTexture.off("update", this.onBaseTextureUpdated, this), this.baseTexture.off("loaded", this.onBaseTextureLoaded, this), this.baseTexture = null), this._frame = null, this._uvs = null, this.trim = null, this.orig = null, this.valid = !1, e.removeFromCache(this), this.textureCacheIds = null }, e.prototype.clone = function() { return new e(this.baseTexture, this.frame, this.orig, this.trim, this.rotate, this.defaultAnchor) }, e.prototype._updateUvs = function() { this._uvs || (this._uvs = new s.default), this._uvs.set(this._frame, this.baseTexture, this.rotate), this._updateID++ }, e.fromImage = function(t, n, i, o) { var s = l.TextureCache[t]; return s || (s = new e(r.default.fromImage(t, n, i, o)), e.addToCache(s, t)), s }, e.fromFrame = function(t) { var e = l.TextureCache[t]; if (!e) throw new Error('The frameId "' + t + '" does not exist in the texture cache'); return e }, e.fromCanvas = function(t, n) { var i = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : "canvas"; return new e(r.default.fromCanvas(t, n, i)) }, e.fromVideo = function(t, n, i, r) { return "string" == typeof t ? e.fromVideoUrl(t, n, i, r) : new e(o.default.fromVideo(t, n, r)) }, e.fromVideoUrl = function(t, n, i, r) { return new e(o.default.fromUrl(t, n, i, r)) }, e.from = function(t) { return "string" == typeof t ? l.TextureCache[t] || (null !== t.match(/\.(mp4|webm|ogg|h264|avi|mov)$/) ? e.fromVideoUrl(t) : e.fromImage(t)) : t instanceof HTMLImageElement ? new e(r.default.from(t)) : t instanceof HTMLCanvasElement ? e.fromCanvas(t, h.default.SCALE_MODE, "HTMLCanvasElement") : t instanceof HTMLVideoElement ? e.fromVideo(t) : t instanceof r.default ? new e(t) : t }, e.fromLoader = function(t, n, i) { var o = new r.default(t, void 0, (0, l.getResolutionOfUrl)(n)), s = new e(o); return o.imageUrl = n, i || (i = n), r.default.addToCache(s.baseTexture, i), e.addToCache(s, i), i !== n && (r.default.addToCache(s.baseTexture, n), e.addToCache(s, n)), s }, e.addToCache = function(t, e) { e && (-1 === t.textureCacheIds.indexOf(e) && t.textureCacheIds.push(e), l.TextureCache[e] && console.warn("Texture added to the cache with an id [" + e + "] that already had an entry"), l.TextureCache[e] = t) }, e.removeFromCache = function(t) { if ("string" == typeof t) { var e = l.TextureCache[t]; if (e) { var n = e.textureCacheIds.indexOf(t); return n > -1 && e.textureCacheIds.splice(n, 1), delete l.TextureCache[t], e } } else if (t && t.textureCacheIds) { for (var i = 0; i < t.textureCacheIds.length; ++i) l.TextureCache[t.textureCacheIds[i]] === t && delete l.TextureCache[t.textureCacheIds[i]]; return t.textureCacheIds.length = 0, t } return null }, i(e, [{ key: "frame", get: function() { return this._frame }, set: function(t) { this._frame = t, this.noFrame = !1; var e = t.x, n = t.y, i = t.width, r = t.height, o = e + i > this.baseTexture.width, s = n + r > this.baseTexture.height; if (o || s) { var a = o && s ? "and" : "or", u = "X: " + e + " + " + i + " = " + (e + i) + " > " + this.baseTexture.width, l = "Y: " + n + " + " + r + " = " + (n + r) + " > " + this.baseTexture.height; throw new Error("Texture Error: frame does not fit inside the base Texture dimensions: " + u + " " + a + " " + l) } this.valid = i && r && this.baseTexture.hasLoaded, this.trim || this.rotate || (this.orig = t), this.valid && this._updateUvs() } }, { key: "rotate", get: function() { return this._rotate }, set: function(t) { this._rotate = t, this.valid && this._updateUvs() } }, { key: "width", get: function() { return this.orig.width } }, { key: "height", get: function() { return this.orig.height } }]), e }(a.default); function p(t) { t.destroy = function() {}, t.on = function() {}, t.once = function() {}, t.emit = function() {} } e.default = f, f.EMPTY = new f(new r.default), p(f.EMPTY), p(f.EMPTY.baseTexture), f.WHITE = function() { var t = document.createElement("canvas"); t.width = 10, t.height = 10; var e = t.getContext("2d"); return e.fillStyle = "white", e.fillRect(0, 0, 10, 10), new f(new r.default(t)) }(), p(f.WHITE), p(f.WHITE.baseTexture) }, function(t, e, n) { "use strict"; var i = Object.prototype.hasOwnProperty, r = "~"; function o() {} function s(t, e, n) { this.fn = t, this.context = e, this.once = n || !1 } function a() { this._events = new o, this._eventsCount = 0 } Object.create && (o.prototype = Object.create(null), (new o).__proto__ || (r = !1)), a.prototype.eventNames = function() { var t, e, n = []; if (0 === this._eventsCount) return n; for (e in t = this._events) i.call(t, e) && n.push(r ? e.slice(1) : e); return Object.getOwnPropertySymbols ? n.concat(Object.getOwnPropertySymbols(t)) : n }, a.prototype.listeners = function(t, e) { var n = r ? r + t : t, i = this._events[n]; if (e) return !!i; if (!i) return []; if (i.fn) return [i.fn]; for (var o = 0, s = i.length, a = new Array(s); o < s; o++) a[o] = i[o].fn; return a }, a.prototype.emit = function(t, e, n, i, o, s) { var a = r ? r + t : t; if (!this._events[a]) return !1; var u, l, h = this._events[a], c = arguments.length; if (h.fn) { switch (h.once && this.removeListener(t, h.fn, void 0, !0), c) { case 1: return h.fn.call(h.context), !0; case 2: return h.fn.call(h.context, e), !0; case 3: return h.fn.call(h.context, e, n), !0; case 4: return h.fn.call(h.context, e, n, i), !0; case 5: return h.fn.call(h.context, e, n, i, o), !0; case 6: return h.fn.call(h.context, e, n, i, o, s), !0 } for (l = 1, u = new Array(c - 1); l < c; l++) u[l - 1] = arguments[l]; h.fn.apply(h.context, u) } else { var f, p = h.length; for (l = 0; l < p; l++) switch (h[l].once && this.removeListener(t, h[l].fn, void 0, !0), c) { case 1: h[l].fn.call(h[l].context); break; case 2: h[l].fn.call(h[l].context, e); break; case 3: h[l].fn.call(h[l].context, e, n); break; case 4: h[l].fn.call(h[l].context, e, n, i); break; default: if (!u) for (f = 1, u = new Array(c - 1); f < c; f++) u[f - 1] = arguments[f]; h[l].fn.apply(h[l].context, u) } } return !0 }, a.prototype.on = function(t, e, n) { var i = new s(e, n || this), o = r ? r + t : t; return this._events[o] ? this._events[o].fn ? this._events[o] = [this._events[o], i] : this._events[o].push(i) : (this._events[o] = i, this._eventsCount++), this }, a.prototype.once = function(t, e, n) { var i = new s(e, n || this, !0), o = r ? r + t : t; return this._events[o] ? this._events[o].fn ? this._events[o] = [this._events[o], i] : this._events[o].push(i) : (this._events[o] = i, this._eventsCount++), this }, a.prototype.removeListener = function(t, e, n, i) { var s = r ? r + t : t; if (!this._events[s]) return this; if (!e) return 0 == --this._eventsCount ? this._events = new o : delete this._events[s], this; var a = this._events[s]; if (a.fn) a.fn !== e || i && !a.once || n && a.context !== n || (0 == --this._eventsCount ? this._events = new o : delete this._events[s]); else { for (var u = 0, l = [], h = a.length; u < h; u++)(a[u].fn !== e || i && !a[u].once || n && a[u].context !== n) && l.push(a[u]); l.length ? this._events[s] = 1 === l.length ? l[0] : l : 0 == --this._eventsCount ? this._events = new o : delete this._events[s] } return this }, a.prototype.removeAllListeners = function(t) { var e; return t ? (e = r ? r + t : t, this._events[e] && (0 == --this._eventsCount ? this._events = new o : delete this._events[e])) : (this._events = new o, this._eventsCount = 0), this }, a.prototype.off = a.prototype.removeListener, a.prototype.addListener = a.prototype.on, a.prototype.setMaxListeners = function() { return this }, a.prefixed = r, a.EventEmitter = a, t.exports = a }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = n(7), r = u(n(10)), o = u(n(18)), s = u(n(64)), a = u(n(43)); function u(t) { return t && t.__esModule ? t : { default: t } } var l = function(t) { function e(n, o, s) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var a = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this)); return a.uid = (0, i.uid)(), a.touched = 0, a.resolution = s || r.default.RESOLUTION, a.width = 100, a.height = 100, a.realWidth = 100, a.realHeight = 100, a.scaleMode = void 0 !== o ? o : r.default.SCALE_MODE, a.hasLoaded = !1, a.isLoading = !1, a.source = null, a.origSource = null, a.imageType = null, a.sourceScale = 1, a.premultipliedAlpha = !0, a.imageUrl = null, a.isPowerOfTwo = !1, a.mipmap = r.default.MIPMAP_TEXTURES, a.wrapMode = r.default.WRAP_MODE, a._glTextures = {}, a._enabled = 0, a._virtalBoundId = -1, a._destroyed = !1, a.textureCacheIds = [], n && a.loadSource(n), a } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.update = function() { "svg" !== this.imageType && (this.realWidth = this.source.naturalWidth || this.source.videoWidth || this.source.width, this.realHeight = this.source.naturalHeight || this.source.videoHeight || this.source.height, this._updateDimensions()), this.emit("update", this) }, e.prototype._updateDimensions = function() { this.width = this.realWidth / this.resolution, this.height = this.realHeight / this.resolution, this.isPowerOfTwo = a.default.isPow2(this.realWidth) && a.default.isPow2(this.realHeight) }, e.prototype.loadSource = function(t) { var e = this.isLoading; this.hasLoaded = !1, this.isLoading = !1, e && this.source && (this.source.onload = null, this.source.onerror = null); var n = !this.source; if (this.source = t, (t.src && t.complete || t.getContext) && t.width && t.height) this._updateImageType(), "svg" === this.imageType ? this._loadSvgSource() : this._sourceLoaded(), n && this.emit("loaded", this); else if (!t.getContext) { this.isLoading = !0; var i = this; if (t.onload = function() { i._updateImageType(), t.onload = null, t.onerror = null, i.isLoading && (i.isLoading = !1, i._sourceLoaded(), "svg" !== i.imageType ? i.emit("loaded", i) : i._loadSvgSource()) }, t.onerror = function() { t.onload = null, t.onerror = null, i.isLoading && (i.isLoading = !1, i.emit("error", i)) }, t.complete && t.src) { if (t.onload = null, t.onerror = null, "svg" === i.imageType) return void i._loadSvgSource(); this.isLoading = !1, t.width && t.height ? (this._sourceLoaded(), e && this.emit("loaded", this)) : e && this.emit("error", this) } } }, e.prototype._updateImageType = function() { if (this.imageUrl) { var t = (0, i.decomposeDataUri)(this.imageUrl), e = void 0; if (t && "image" === t.mediaType) { var n = t.subType.split("+")[0]; if (!(e = (0, i.getUrlFileExtension)("." + n))) throw new Error("Invalid image type in data URI.") } else(e = (0, i.getUrlFileExtension)(this.imageUrl)) || (e = "png"); this.imageType = e } }, e.prototype._loadSvgSource = function() { if ("svg" === this.imageType) { var t = (0, i.decomposeDataUri)(this.imageUrl); t ? this._loadSvgSourceUsingDataUri(t) : this._loadSvgSourceUsingXhr() } }, e.prototype._loadSvgSourceUsingDataUri = function(t) { var e = void 0; if ("base64" === t.encoding) { if (!atob) throw new Error("Your browser doesn't support base64 conversions."); e = atob(t.data) } else e = t.data; this._loadSvgSourceUsingString(e) }, e.prototype._loadSvgSourceUsingXhr = function() { var t = this, e = new XMLHttpRequest; e.onload = function() { if (e.readyState !== e.DONE || 200 !== e.status) throw new Error("Failed to load SVG using XHR."); t._loadSvgSourceUsingString(e.response) }, e.onerror = function() { return t.emit("error", t) }, e.open("GET", this.imageUrl, !0), e.send() }, e.prototype._loadSvgSourceUsingString = function(t) { var n = (0, i.getSvgSize)(t), r = n.width, o = n.height; if (!r || !o) throw new Error("The SVG image must have width and height defined (in pixels), canvas API needs them."); this.realWidth = Math.round(r * this.sourceScale), this.realHeight = Math.round(o * this.sourceScale), this._updateDimensions(); var s = document.createElement("canvas"); s.width = this.realWidth, s.height = this.realHeight, s._pixiId = "canvas_" + (0, i.uid)(), s.getContext("2d").drawImage(this.source, 0, 0, r, o, 0, 0, this.realWidth, this.realHeight), this.origSource = this.source, this.source = s, e.addToCache(this, s._pixiId), this.isLoading = !1, this._sourceLoaded(), this.emit("loaded", this) }, e.prototype._sourceLoaded = function() { this.hasLoaded = !0, this.update() }, e.prototype.destroy = function() { this.imageUrl && (delete i.TextureCache[this.imageUrl], this.imageUrl = null, navigator.isCocoonJS || (this.source.src = "")), this.source = null, this.dispose(), e.removeFromCache(this), this.textureCacheIds = null, this._destroyed = !0 }, e.prototype.dispose = function() { this.emit("dispose", this) }, e.prototype.updateSourceImage = function(t) { this.source.src = t, this.loadSource(this.source) }, e.fromImage = function(t, n, r, o) { var a = i.BaseTextureCache[t]; if (!a) { var u = new Image; void 0 === n && 0 !== t.indexOf("data:") ? u.crossOrigin = (0, s.default)(t) : n && (u.crossOrigin = "string" == typeof n ? n : "anonymous"), (a = new e(u, r)).imageUrl = t, o && (a.sourceScale = o), a.resolution = (0, i.getResolutionOfUrl)(t), u.src = t, e.addToCache(a, t) } return a }, e.fromCanvas = function(t, n) { var r = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : "canvas"; t._pixiId || (t._pixiId = r + "_" + (0, i.uid)()); var o = i.BaseTextureCache[t._pixiId]; return o || (o = new e(t, n), e.addToCache(o, t._pixiId)), o }, e.from = function(t, n, r) { if ("string" == typeof t) return e.fromImage(t, void 0, n, r); if (t instanceof HTMLImageElement) { var o = t.src, s = i.BaseTextureCache[o]; return s || ((s = new e(t, n)).imageUrl = o, r && (s.sourceScale = r), s.resolution = (0, i.getResolutionOfUrl)(o), e.addToCache(s, o)), s } return t instanceof HTMLCanvasElement ? e.fromCanvas(t, n) : t }, e.addToCache = function(t, e) { e && (-1 === t.textureCacheIds.indexOf(e) && t.textureCacheIds.push(e), i.BaseTextureCache[e] && console.warn("BaseTexture added to the cache with an id [" + e + "] that already had an entry"), i.BaseTextureCache[e] = t) }, e.removeFromCache = function(t) { if ("string" == typeof t) { var e = i.BaseTextureCache[t]; if (e) { var n = e.textureCacheIds.indexOf(t); return n > -1 && e.textureCacheIds.splice(n, 1), delete i.BaseTextureCache[t], e } } else if (t && t.textureCacheIds) { for (var r = 0; r < t.textureCacheIds.length; ++r) delete i.BaseTextureCache[t.textureCacheIds[r]]; return t.textureCacheIds.length = 0, t } return null }, e }(o.default); e.default = l }, function(t, e, n) { "use strict"; n.d(e, "a", function() { return f }); var i = n(2), r = n.n(i), o = n(3), s = n(1), a = n(9); function u(t) { return (u = "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 })(t) } function l(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } function h(t) { return (h = Object.setPrototypeOf ? Object.getPrototypeOf : function(t) { return t.__proto__ || Object.getPrototypeOf(t) })(t) } function c(t, e) { return (c = Object.setPrototypeOf || function(t, e) { return t.__proto__ = e, t })(t, e) } var f = function(t) { function e(t) { var n; return function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e), (n = function(t, e) { return !e || "object" !== u(e) && "function" != typeof e ? function(t) { if (void 0 === t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return t }(t) : e }(this, h(e).call(this, t))).__params = t, n.tints = [16777215, 16777215], n.tintVal = .25, n.noTint = !1, n.type = t.type, n.createSignals(), n.minValue = .001, n.maxValue = 1, n._value = void 0 !== n.__params.value ? n.__params.value : n.maxValue, "undefined" !== n.__params.value && delete n.__params.value, n.cloneTexture = void 0 !== n.__params.cloneTexture && n.__params.cloneTexture, n.clonedTexture = null, n.initBar(), n.initPlugins(), n } return 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 } }), e && c(t, e) }(e, o.a), function(t, e, n) { e && l(t.prototype, e) }(e, [{ key: "createSignals", value: function() { this.signals = { empty: new r.a, warning: new r.a, update: new r.a, full: new r.a } } }, { key: "destroySignals", value: function() { for (var t in this.signals) this.signals[t] instanceof r.a && this.signals[t].detachAll(); this.signals = null } }, { key: "initBar", value: function() { if (this.bar = new s.a(this.__params.bar).addTo(this), this.cloneTexture) { var t = this.bar.texture; this.clonedTexture = new PIXI.Texture(t.baseTexture, t.frame, t.orig, t.trim, t.rotate), this.bar.texture = this.clonedTexture } this.barFrameWidth = this.bar.texture.frame.width, this.update() } }, { key: "update", value: function() { this.bar.tint = this._value <= this.tintVal && !this.noTint ? this.tints[1] : this.tints[0], this.bar.texture.frame.width = Math.floor(this.barFrameWidth * this._value), this.bar.texture._updateUvs(), this.bar.width = this.bar.texture.frame.width, this.signals.update.dispatch(this._value, this.bar.x + this.bar.width, this.bar.y) } }, { key: "doSeppuku", value: function() { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : { children: !0 }; this.value = 1, this.bar.texture.frame.width = this.barFrameWidth, null !== this.clonedTexture && this.clonedTexture.destroy(), this.destroyPlugins(), this.destroySignals(), this.destroy(t) } }, { key: "value", get: function() { return this._value }, set: function(t) { this._value = t, this._value <= this.minValue && (this._value = 0, this.signals.empty.dispatch(this.type)), this._value < this.tintVal && this.signals.warning.dispatch(), this._value >= this.maxValue && (this._value = this.maxValue, this.signals.full.dispatch(this.type)), this.update() } }]), e }(); a.b.mixin(f) }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = n(7), o = function(t) { function e() { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var n = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this)); return n.children = [], n } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.onChildrenChange = function() {}, e.prototype.addChild = function(t) { var e = arguments.length; if (e > 1) for (var n = 0; n < e; n++) this.addChild(arguments[n]); else t.parent && t.parent.removeChild(t), t.parent = this, t.transform._parentID = -1, this.children.push(t), this._boundsID++, this.onChildrenChange(this.children.length - 1), t.emit("added", this); return t }, e.prototype.addChildAt = function(t, e) { if (e < 0 || e > this.children.length) throw new Error(t + "addChildAt: The index " + e + " supplied is out of bounds " + this.children.length); return t.parent && t.parent.removeChild(t), t.parent = this, t.transform._parentID = -1, this.children.splice(e, 0, t), this._boundsID++, this.onChildrenChange(e), t.emit("added", this), t }, e.prototype.swapChildren = function(t, e) { if (t !== e) { var n = this.getChildIndex(t), i = this.getChildIndex(e); this.children[n] = e, this.children[i] = t, this.onChildrenChange(n < i ? n : i) } }, e.prototype.getChildIndex = function(t) { var e = this.children.indexOf(t); if (-1 === e) throw new Error("The supplied DisplayObject must be a child of the caller"); return e }, e.prototype.setChildIndex = function(t, e) { if (e < 0 || e >= this.children.length) throw new Error("The index " + e + " supplied is out of bounds " + this.children.length); var n = this.getChildIndex(t); (0, r.removeItems)(this.children, n, 1), this.children.splice(e, 0, t), this.onChildrenChange(e) }, e.prototype.getChildAt = function(t) { if (t < 0 || t >= this.children.length) throw new Error("getChildAt: Index (" + t + ") does not exist."); return this.children[t] }, e.prototype.removeChild = function(t) { var e = arguments.length; if (e > 1) for (var n = 0; n < e; n++) this.removeChild(arguments[n]); else { var i = this.children.indexOf(t); if (-1 === i) return null; t.parent = null, t.transform._parentID = -1, (0, r.removeItems)(this.children, i, 1), this._boundsID++, this.onChildrenChange(i), t.emit("removed", this) } return t }, e.prototype.removeChildAt = function(t) { var e = this.getChildAt(t); return e.parent = null, e.transform._parentID = -1, (0, r.removeItems)(this.children, t, 1), this._boundsID++, this.onChildrenChange(t), e.emit("removed", this), e }, e.prototype.removeChildren = function() { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0, e = arguments[1], n = t, i = "number" == typeof e ? e : this.children.length, r = i - n, o = void 0; if (r > 0 && r <= i) { o = this.children.splice(n, r); for (var s = 0; s < o.length; ++s) o[s].parent = null, o[s].transform && (o[s].transform._parentID = -1); this._boundsID++, this.onChildrenChange(t); for (var a = 0; a < o.length; ++a) o[a].emit("removed", this); return o } if (0 === r && 0 === this.children.length) return []; throw new RangeError("removeChildren: numeric values are outside the acceptable range.") }, e.prototype.updateTransform = function() { this._boundsID++, this.transform.updateTransform(this.parent.transform), this.worldAlpha = this.alpha * this.parent.worldAlpha; for (var t = 0, e = this.children.length; t < e; ++t) { var n = this.children[t]; n.visible && n.updateTransform() } }, e.prototype.calculateBounds = function() { this._bounds.clear(), this._calculateBounds(); for (var t = 0; t < this.children.length; t++) { var e = this.children[t]; e.visible && e.renderable && (e.calculateBounds(), e._mask ? (e._mask.calculateBounds(), this._bounds.addBoundsMask(e._bounds, e._mask._bounds)) : e.filterArea ? this._bounds.addBoundsArea(e._bounds, e.filterArea) : this._bounds.addBounds(e._bounds)) } this._lastBoundsID = this._boundsID }, e.prototype._calculateBounds = function() {}, e.prototype.renderWebGL = function(t) { if (this.visible && !(this.worldAlpha <= 0) && this.renderable) if (this._mask || this._filters) this.renderAdvancedWebGL(t); else { this._renderWebGL(t); for (var e = 0, n = this.children.length; e < n; ++e) this.children[e].renderWebGL(t) } }, e.prototype.renderAdvancedWebGL = function(t) { t.flush(); var e = this._filters, n = this._mask; if (e) { this._enabledFilters || (this._enabledFilters = []), this._enabledFilters.length = 0; for (var i = 0; i < e.length; i++) e[i].enabled && this._enabledFilters.push(e[i]); this._enabledFilters.length && t.filterManager.pushFilter(this, this._enabledFilters) } n && t.maskManager.pushMask(this, this._mask), this._renderWebGL(t); for (var r = 0, o = this.children.length; r < o; r++) this.children[r].renderWebGL(t); t.flush(), n && t.maskManager.popMask(this, this._mask), e && this._enabledFilters && this._enabledFilters.length && t.filterManager.popFilter() }, e.prototype._renderWebGL = function(t) {}, e.prototype._renderCanvas = function(t) {}, e.prototype.renderCanvas = function(t) { if (this.visible && !(this.worldAlpha <= 0) && this.renderable) { this._mask && t.maskManager.pushMask(this._mask), this._renderCanvas(t); for (var e = 0, n = this.children.length; e < n; ++e) this.children[e].renderCanvas(t); this._mask && t.maskManager.popMask(t) } }, e.prototype.destroy = function(e) { t.prototype.destroy.call(this); var n = "boolean" == typeof e ? e : e && e.children, i = this.removeChildren(0, this.children.length); if (n) for (var r = 0; r < i.length; ++r) i[r].destroy(e) }, i(e, [{ key: "width", get: function() { return this.scale.x * this.getLocalBounds().width }, set: function(t) { var e = this.getLocalBounds().width; this.scale.x = 0 !== e ? t / e : 1, this._width = t } }, { key: "height", get: function() { return this.scale.y * this.getLocalBounds().height }, set: function(t) { var e = this.getLocalBounds().height; this.scale.y = 0 !== e ? t / e : 1, this._height = t } }]), e }(function(t) { return t && t.__esModule ? t : { default: t } }(n(61)).default); e.default = o, o.prototype.containerUpdateTransform = o.prototype.updateTransform }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = h(n(68)), r = h(n(137)), o = h(n(70)), s = h(n(138)), a = n(7), u = n(4), l = h(n(10)); function h(t) { return t && t.__esModule ? t : { default: t } } var c = function(t) { function e(n, i, o) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var a = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this, "Canvas", n, i, o)); return a.type = u.RENDERER_TYPE.CANVAS, a.rootContext = a.view.getContext("2d", { alpha: a.transparent }), a.context = a.rootContext, a.refresh = !0, a.maskManager = new r.default(a), a.smoothProperty = "imageSmoothingEnabled", a.rootContext.imageSmoothingEnabled || (a.rootContext.webkitImageSmoothingEnabled ? a.smoothProperty = "webkitImageSmoothingEnabled" : a.rootContext.mozImageSmoothingEnabled ? a.smoothProperty = "mozImageSmoothingEnabled" : a.rootContext.oImageSmoothingEnabled ? a.smoothProperty = "oImageSmoothingEnabled" : a.rootContext.msImageSmoothingEnabled && (a.smoothProperty = "msImageSmoothingEnabled")), a.initPlugins(), a.blendModes = (0, s.default)(), a._activeBlendMode = null, a.renderingToScreen = !1, a.resize(a.options.width, a.options.height), a } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.render = function(t, e, n, i, r) { if (this.view) { this.renderingToScreen = !e, this.emit("prerender"); var s = this.resolution; e ? ((e = e.baseTexture || e)._canvasRenderTarget || (e._canvasRenderTarget = new o.default(e.width, e.height, e.resolution), e.source = e._canvasRenderTarget.canvas, e.valid = !0), this.context = e._canvasRenderTarget.context, this.resolution = e._canvasRenderTarget.resolution) : this.context = this.rootContext; var a = this.context; if (e || (this._lastObjectRendered = t), !r) { var l = t.parent, h = this._tempDisplayObjectParent.transform.worldTransform; i ? (i.copy(h), this._tempDisplayObjectParent.transform._worldID = -1) : h.identity(), t.parent = this._tempDisplayObjectParent, t.updateTransform(), t.parent = l } a.save(), a.setTransform(1, 0, 0, 1, 0, 0), a.globalAlpha = 1, this._activeBlendMode = u.BLEND_MODES.NORMAL, a.globalCompositeOperation = this.blendModes[u.BLEND_MODES.NORMAL], navigator.isCocoonJS && this.view.screencanvas && (a.fillStyle = "black", a.clear()), (void 0 !== n ? n : this.clearBeforeRender) && this.renderingToScreen && (this.transparent ? a.clearRect(0, 0, this.width, this.height) : (a.fillStyle = this._backgroundColorString, a.fillRect(0, 0, this.width, this.height))); var c = this.context; this.context = a, t.renderCanvas(this), this.context = c, a.restore(), this.resolution = s, this.emit("postrender") } }, e.prototype.clear = function(t) { var e = this.context; t = t || this._backgroundColorString, !this.transparent && t ? (e.fillStyle = t, e.fillRect(0, 0, this.width, this.height)) : e.clearRect(0, 0, this.width, this.height) }, e.prototype.setBlendMode = function(t) { this._activeBlendMode !== t && (this._activeBlendMode = t, this.context.globalCompositeOperation = this.blendModes[t]) }, e.prototype.destroy = function(e) { this.destroyPlugins(), t.prototype.destroy.call(this, e), this.context = null, this.refresh = !0, this.maskManager.destroy(), this.maskManager = null, this.smoothProperty = null }, e.prototype.resize = function(e, n) { t.prototype.resize.call(this, e, n), this.smoothProperty && (this.rootContext[this.smoothProperty] = l.default.SCALE_MODE === u.SCALE_MODES.LINEAR) }, e.prototype.invalidateBlendMode = function() { this._activeBlendMode = this.blendModes.indexOf(this.context.globalCompositeOperation) }, e }(i.default); e.default = c, a.pluginTarget.mixin(c) }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(e) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.renderer = e, this.renderer.on("context", this.onContextChange, this) } return t.prototype.onContextChange = function() {}, t.prototype.destroy = function() { this.renderer.off("context", this.onContextChange, this), this.renderer = null }, t }(); e.default = i }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = n(12), r = function(t) { return t && t.__esModule ? t : { default: t } }(n(10)); function o(t, e) { if (t instanceof Array) { if ("precision" !== t[0].substring(0, 9)) { var n = t.slice(0); return n.unshift("precision " + e + " float;"), n } } else if ("precision" !== t.trim().substring(0, 9)) return "precision " + e + " float;\n" + t; return t } var s = function(t) { function e(n, i, s, a, u) { return function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e), function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this, n, o(i, u || r.default.PRECISION_VERTEX), o(s, u || r.default.PRECISION_FRAGMENT), void 0, a)) } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e }(i.GLShader); e.default = s }, function(t, e, n) { "use strict"; var i = n(190).Loader, r = n(47).Resource, o = n(95), s = n(96); i.Resource = r, i.async = o, i.encodeBinary = s, i.base64 = s, t.exports = i, t.exports.Loader = i, t.exports.default = i }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = function(t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }(n(5)), o = function(t) { return t && t.__esModule ? t : { default: t } }(n(17)), s = new r.Point, a = new r.Polygon, u = function(t) { function e(n, i, s, a, u) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var l = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this)); return l._texture = n || o.default.EMPTY, l.uvs = s || new Float32Array([0, 0, 1, 0, 1, 1, 0, 1]), l.vertices = i || new Float32Array([0, 0, 100, 0, 100, 100, 0, 100]), l.indices = a || new Uint16Array([0, 1, 3, 2]), l.dirty = 0, l.indexDirty = 0, l.vertexDirty = 0, l.autoUpdate = !0, l.blendMode = r.BLEND_MODES.NORMAL, l.canvasPadding = r.settings.MESH_CANVAS_PADDING, l.drawMode = u || e.DRAW_MODES.TRIANGLE_MESH, l.shader = null, l.tintRgb = new Float32Array([1, 1, 1]), l._glDatas = {}, l._uvTransform = new r.TextureMatrix(l._texture), l.uploadUvTransform = !1, l.pluginName = "mesh", l } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype._renderWebGL = function(t) { this.refresh(), t.setObjectRenderer(t.plugins[this.pluginName]), t.plugins[this.pluginName].render(this) }, e.prototype._renderCanvas = function(t) { this.refresh(), t.plugins[this.pluginName].render(this) }, e.prototype._onTextureUpdate = function() { this._uvTransform.texture = this._texture, this.refresh() }, e.prototype.multiplyUvs = function() { this.uploadUvTransform || this._uvTransform.multiplyUvs(this.uvs) }, e.prototype.refresh = function(t) { this.autoUpdate && this.vertexDirty++, this._uvTransform.update(t) && this._refresh() }, e.prototype._refresh = function() {}, e.prototype._calculateBounds = function() { this._bounds.addVertices(this.transform, this.vertices, 0, this.vertices.length) }, e.prototype.containsPoint = function(t) { if (!this.getBounds().contains(t.x, t.y)) return !1; this.worldTransform.applyInverse(t, s); for (var n = this.vertices, i = a.points, r = this.indices, o = this.indices.length, u = this.drawMode === e.DRAW_MODES.TRIANGLES ? 3 : 1, l = 0; l + 2 < o; l += u) { var h = 2 * r[l], c = 2 * r[l + 1], f = 2 * r[l + 2]; if (i[0] = n[h], i[1] = n[h + 1], i[2] = n[c], i[3] = n[c + 1], i[4] = n[f], i[5] = n[f + 1], a.contains(s.x, s.y)) return !0 } return !1 }, e.prototype.destroy = function(e) { for (var n in this._glDatas) { var i = this._glDatas[n]; i.destroy ? i.destroy() : (i.vertexBuffer && (i.vertexBuffer.destroy(), i.vertexBuffer = null), i.indexBuffer && (i.indexBuffer.destroy(), i.indexBuffer = null), i.uvBuffer && (i.uvBuffer.destroy(), i.uvBuffer = null), i.vao && (i.vao.destroy(), i.vao = null)) } this._glDatas = null, t.prototype.destroy.call(this, e) }, i(e, [{ key: "texture", get: function() { return this._texture }, set: function(t) { this._texture !== t && (this._texture = t, t && (t.baseTexture.hasLoaded ? this._onTextureUpdate() : t.once("update", this._onTextureUpdate, this))) } }, { key: "tint", get: function() { return r.utils.rgb2hex(this.tintRgb) }, set: function(t) { this.tintRgb = r.utils.hex2rgb(t, this.tintRgb) } }]), e }(r.Container); e.default = u, u.DRAW_MODES = { TRIANGLE_MESH: 0, TRIANGLES: 1 } }, function(t, e) { var n; n = function() { return this }(); try { n = n || new Function("return this")() } catch (t) { "object" == typeof window && (n = window) } t.exports = n }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = n(7), r = { getTintedTexture: function(t, e) { var n = t._texture, i = "#" + ("00000" + (0 | (e = r.roundColor(e))).toString(16)).substr(-6); n.tintCache = n.tintCache || {}; var o = n.tintCache[i], s = void 0; if (o) { if (o.tintId === n._updateID) return n.tintCache[i]; s = n.tintCache[i] } else s = r.canvas || document.createElement("canvas"); if (r.tintMethod(n, e, s), s.tintId = n._updateID, r.convertTintToImage) { var a = new Image; a.src = s.toDataURL(), n.tintCache[i] = a } else n.tintCache[i] = s, r.canvas = null; return s }, tintWithMultiply: function(t, e, n) { var i = n.getContext("2d"), r = t._frame.clone(), o = t.baseTexture.resolution; r.x *= o, r.y *= o, r.width *= o, r.height *= o, n.width = Math.ceil(r.width), n.height = Math.ceil(r.height), i.save(), i.fillStyle = "#" + ("00000" + (0 | e).toString(16)).substr(-6), i.fillRect(0, 0, r.width, r.height), i.globalCompositeOperation = "multiply", i.drawImage(t.baseTexture.source, r.x, r.y, r.width, r.height, 0, 0, r.width, r.height), i.globalCompositeOperation = "destination-atop", i.drawImage(t.baseTexture.source, r.x, r.y, r.width, r.height, 0, 0, r.width, r.height), i.restore() }, tintWithOverlay: function(t, e, n) { var i = n.getContext("2d"), r = t._frame.clone(), o = t.baseTexture.resolution; r.x *= o, r.y *= o, r.width *= o, r.height *= o, n.width = Math.ceil(r.width), n.height = Math.ceil(r.height), i.save(), i.globalCompositeOperation = "copy", i.fillStyle = "#" + ("00000" + (0 | e).toString(16)).substr(-6), i.fillRect(0, 0, r.width, r.height), i.globalCompositeOperation = "destination-atop", i.drawImage(t.baseTexture.source, r.x, r.y, r.width, r.height, 0, 0, r.width, r.height), i.restore() }, tintWithPerPixel: function(t, e, n) { var r = n.getContext("2d"), o = t._frame.clone(), s = t.baseTexture.resolution; o.x *= s, o.y *= s, o.width *= s, o.height *= s, n.width = Math.ceil(o.width), n.height = Math.ceil(o.height), r.save(), r.globalCompositeOperation = "copy", r.drawImage(t.baseTexture.source, o.x, o.y, o.width, o.height, 0, 0, o.width, o.height), r.restore(); for (var a = (0, i.hex2rgb)(e), u = a[0], l = a[1], h = a[2], c = r.getImageData(0, 0, o.width, o.height), f = c.data, p = 0; p < f.length; p += 4) f[p + 0] *= u, f[p + 1] *= l, f[p + 2] *= h; r.putImageData(c, 0, 0) }, roundColor: function(t) { var e = r.cacheStepsPerColorChannel, n = (0, i.hex2rgb)(t); return n[0] = Math.min(255, n[0] / e * e), n[1] = Math.min(255, n[1] / e * e), n[2] = Math.min(255, n[2] / e * e), (0, i.rgb2hex)(n) }, cacheStepsPerColorChannel: 8, convertTintToImage: !1, canUseMultiply: (0, function(t) { return t && t.__esModule ? t : { default: t } }(n(71)).default)(), tintMethod: 0 }; r.tintMethod = r.canUseMultiply ? r.tintWithMultiply : r.tintWithPerPixel, e.default = r }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function(t) { function e() { return function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e), function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.apply(this, arguments)) } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.start = function() {}, e.prototype.stop = function() { this.flush() }, e.prototype.flush = function() {}, e.prototype.render = function(t) {}, e }(function(t) { return t && t.__esModule ? t : { default: t } }(n(23)).default); e.default = i }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = v(n(68)), r = v(n(140)), o = v(n(142)), s = v(n(143)), a = v(n(31)), u = v(n(29)), l = v(n(145)), h = v(n(19)), c = v(n(146)), f = v(n(147)), p = v(n(149)), d = v(n(150)), y = n(7), g = v(n(12)), m = n(4); function v(t) { return t && t.__esModule ? t : { default: t } } var _ = 0, b = function(t) { function e(n, i, s) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var a = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this, "WebGL", n, i, s)); return a.legacy = a.options.legacy, a.legacy && (g.default.VertexArrayObject.FORCE_NATIVE = !0), a.type = m.RENDERER_TYPE.WEBGL, a.handleContextLost = a.handleContextLost.bind(a), a.handleContextRestored = a.handleContextRestored.bind(a), a.view.addEventListener("webglcontextlost", a.handleContextLost, !1), a.view.addEventListener("webglcontextrestored", a.handleContextRestored, !1), a._contextOptions = { alpha: a.transparent, antialias: a.options.antialias, premultipliedAlpha: a.transparent && "notMultiplied" !== a.transparent, stencil: !0, preserveDrawingBuffer: a.options.preserveDrawingBuffer, powerPreference: a.options.powerPreference }, a._backgroundColorRgba[3] = a.transparent ? 0 : 1, a.maskManager = new r.default(a), a.stencilManager = new o.default(a), a.emptyRenderer = new u.default(a), a.currentRenderer = a.emptyRenderer, a.textureManager = null, a.filterManager = null, a.initPlugins(), a.options.context && (0, d.default)(a.options.context), a.gl = a.options.context || g.default.createContext(a.view, a._contextOptions), a.CONTEXT_UID = _++, a.state = new f.default(a.gl), a.renderingToScreen = !0, a.boundTextures = null, a._activeShader = null, a._activeVao = null, a._activeRenderTarget = null, a._initContext(), a.drawModes = (0, p.default)(a.gl), a._nextTextureLocation = 0, a.setBlendMode(0), a } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype._initContext = function() { var t = this.gl; t.isContextLost() && t.getExtension("WEBGL_lose_context") && t.getExtension("WEBGL_lose_context").restoreContext(); var e = t.getParameter(t.MAX_TEXTURE_IMAGE_UNITS); this._activeShader = null, this._activeVao = null, this.boundTextures = new Array(e), this.emptyTextures = new Array(e), this._unknownBoundTextures = !1, this.textureManager = new l.default(this), this.filterManager = new s.default(this), this.textureGC = new c.default(this), this.state.resetToDefault(), this.rootRenderTarget = new a.default(t, this.width, this.height, null, this.resolution, !0), this.rootRenderTarget.clearColor = this._backgroundColorRgba, this.bindRenderTarget(this.rootRenderTarget); var n = new g.default.GLTexture.fromData(t, null, 1, 1), i = { _glTextures: {} }; i._glTextures[this.CONTEXT_UID] = {}; for (var r = 0; r < e; r++) { var o = new h.default; o._glTextures[this.CONTEXT_UID] = n, this.boundTextures[r] = i, this.emptyTextures[r] = o, this.bindTexture(null, r) } this.emit("context", t), this.resize(this.screen.width, this.screen.height) }, e.prototype.render = function(t, e, n, i, r) { if (this.renderingToScreen = !e, this.emit("prerender"), this.gl && !this.gl.isContextLost()) { if (this._nextTextureLocation = 0, e || (this._lastObjectRendered = t), !r) { var o = t.parent; t.parent = this._tempDisplayObjectParent, t.updateTransform(), t.parent = o } this.bindRenderTexture(e, i), this.currentRenderer.start(), (void 0 !== n ? n : this.clearBeforeRender) && this._activeRenderTarget.clear(), t.renderWebGL(this), this.currentRenderer.flush(), this.textureGC.update(), this.emit("postrender") } }, e.prototype.setObjectRenderer = function(t) { this.currentRenderer !== t && (this.currentRenderer.stop(), this.currentRenderer = t, this.currentRenderer.start()) }, e.prototype.flush = function() { this.setObjectRenderer(this.emptyRenderer) }, e.prototype.resize = function(t, e) { i.default.prototype.resize.call(this, t, e), this.rootRenderTarget.resize(t, e), this._activeRenderTarget === this.rootRenderTarget && (this.rootRenderTarget.activate(), this._activeShader && (this._activeShader.uniforms.projectionMatrix = this.rootRenderTarget.projectionMatrix.toArray(!0))) }, e.prototype.setBlendMode = function(t) { this.state.setBlendMode(t) }, e.prototype.clear = function(t) { this._activeRenderTarget.clear(t) }, e.prototype.setTransform = function(t) { this._activeRenderTarget.transform = t }, e.prototype.clearRenderTexture = function(t, e) { var n = t.baseTexture._glRenderTargets[this.CONTEXT_UID]; return n && n.clear(e), this }, e.prototype.bindRenderTexture = function(t, e) { var n = void 0; if (t) { var i = t.baseTexture; i._glRenderTargets[this.CONTEXT_UID] || this.textureManager.updateTexture(i, 0), this.unbindTexture(i), (n = i._glRenderTargets[this.CONTEXT_UID]).setFrame(t.frame) } else n = this.rootRenderTarget; return n.transform = e, this.bindRenderTarget(n), this }, e.prototype.bindRenderTarget = function(t) { return t !== this._activeRenderTarget && (this._activeRenderTarget = t, t.activate(), this._activeShader && (this._activeShader.uniforms.projectionMatrix = t.projectionMatrix.toArray(!0)), this.stencilManager.setMaskStack(t.stencilMaskStack)), this }, e.prototype.bindShader = function(t, e) { return this._activeShader !== t && (this._activeShader = t, t.bind(), !1 !== e && (t.uniforms.projectionMatrix = this._activeRenderTarget.projectionMatrix.toArray(!0))), this }, e.prototype.bindTexture = function(t, e, n) { if ((t = (t = t || this.emptyTextures[e]).baseTexture || t).touched = this.textureGC.count, n) e = e || 0; else { for (var i = 0; i < this.boundTextures.length; i++) if (this.boundTextures[i] === t) return i; void 0 === e && (this._nextTextureLocation++, this._nextTextureLocation %= this.boundTextures.length, e = this.boundTextures.length - this._nextTextureLocation - 1) } var r = this.gl, o = t._glTextures[this.CONTEXT_UID]; return o ? (this.boundTextures[e] = t, r.activeTexture(r.TEXTURE0 + e), r.bindTexture(r.TEXTURE_2D, o.texture)) : this.textureManager.updateTexture(t, e), e }, e.prototype.unbindTexture = function(t) { var e = this.gl; if (t = t.baseTexture || t, this._unknownBoundTextures) { this._unknownBoundTextures = !1; for (var n = 0; n < this.boundTextures.length; n++) this.boundTextures[n] === this.emptyTextures[n] && (e.activeTexture(e.TEXTURE0 + n), e.bindTexture(e.TEXTURE_2D, this.emptyTextures[n]._glTextures[this.CONTEXT_UID].texture)) } for (var i = 0; i < this.boundTextures.length; i++) this.boundTextures[i] === t && (this.boundTextures[i] = this.emptyTextures[i], e.activeTexture(e.TEXTURE0 + i), e.bindTexture(e.TEXTURE_2D, this.emptyTextures[i]._glTextures[this.CONTEXT_UID].texture)); return this }, e.prototype.createVao = function() { return new g.default.VertexArrayObject(this.gl, this.state.attribState) }, e.prototype.bindVao = function(t) { return this._activeVao === t ? this : (t ? t.bind() : this._activeVao && this._activeVao.unbind(), this._activeVao = t, this) }, e.prototype.reset = function() { this.setObjectRenderer(this.emptyRenderer), this.bindVao(null), this._activeShader = null, this._activeRenderTarget = this.rootRenderTarget, this._unknownBoundTextures = !0; for (var t = 0; t < this.boundTextures.length; t++) this.boundTextures[t] = this.emptyTextures[t]; return this.rootRenderTarget.activate(), this.state.resetToDefault(), this }, e.prototype.handleContextLost = function(t) { t.preventDefault() }, e.prototype.handleContextRestored = function() { this.textureManager.removeAll(), this.filterManager.destroy(!0), this._initContext() }, e.prototype.destroy = function(e) { this.destroyPlugins(), this.view.removeEventListener("webglcontextlost", this.handleContextLost), this.view.removeEventListener("webglcontextrestored", this.handleContextRestored), this.textureManager.destroy(), t.prototype.destroy.call(this, e), this.uid = 0, this.maskManager.destroy(), this.stencilManager.destroy(), this.filterManager.destroy(), this.maskManager = null, this.filterManager = null, this.textureManager = null, this.currentRenderer = null, this.handleContextLost = null, this.handleContextRestored = null, this._contextOptions = null, this.gl.useProgram(null), this.gl.getExtension("WEBGL_lose_context") && this.gl.getExtension("WEBGL_lose_context").loseContext(), this.gl = null }, e }(i.default); e.default = b, y.pluginTarget.mixin(b) }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = n(11), r = n(4), o = function(t) { return t && t.__esModule ? t : { default: t } }(n(10)), s = n(12), a = function() { function t(e, n, a, u, l, h) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.gl = e, this.frameBuffer = null, this.texture = null, this.clearColor = [0, 0, 0, 0], this.size = new i.Rectangle(0, 0, 1, 1), this.resolution = l || o.default.RESOLUTION, this.projectionMatrix = new i.Matrix, this.transform = null, this.frame = null, this.defaultFrame = new i.Rectangle, this.destinationFrame = null, this.sourceFrame = null, this.stencilBuffer = null, this.stencilMaskStack = [], this.filterData = null, this.filterPoolKey = "", this.scaleMode = void 0 !== u ? u : o.default.SCALE_MODE, this.root = h || !1, this.root ? (this.frameBuffer = new s.GLFramebuffer(e, 100, 100), this.frameBuffer.framebuffer = null) : (this.frameBuffer = s.GLFramebuffer.createRGBA(e, 100, 100), this.scaleMode === r.SCALE_MODES.NEAREST ? this.frameBuffer.texture.enableNearestScaling() : this.frameBuffer.texture.enableLinearScaling(), this.texture = this.frameBuffer.texture), this.setFrame(), this.resize(n, a) } return t.prototype.clear = function(t) { var e = t || this.clearColor; this.frameBuffer.clear(e[0], e[1], e[2], e[3]) }, t.prototype.attachStencilBuffer = function() { this.root || this.frameBuffer.enableStencil() }, t.prototype.setFrame = function(t, e) { this.destinationFrame = t || this.destinationFrame || this.defaultFrame, this.sourceFrame = e || this.sourceFrame || this.destinationFrame }, t.prototype.activate = function() { var t = this.gl; this.frameBuffer.bind(), this.calculateProjection(this.destinationFrame, this.sourceFrame), this.transform && this.projectionMatrix.append(this.transform), this.destinationFrame !== this.sourceFrame ? (t.enable(t.SCISSOR_TEST), t.scissor(0 | this.destinationFrame.x, 0 | this.destinationFrame.y, this.destinationFrame.width * this.resolution | 0, this.destinationFrame.height * this.resolution | 0)) : t.disable(t.SCISSOR_TEST), t.viewport(0 | this.destinationFrame.x, 0 | this.destinationFrame.y, this.destinationFrame.width * this.resolution | 0, this.destinationFrame.height * this.resolution | 0) }, t.prototype.calculateProjection = function(t, e) { var n = this.projectionMatrix; e = e || t, n.identity(), this.root ? (n.a = 1 / t.width * 2, n.d = -1 / t.height * 2, n.tx = -1 - e.x * n.a, n.ty = 1 - e.y * n.d) : (n.a = 1 / t.width * 2, n.d = 1 / t.height * 2, n.tx = -1 - e.x * n.a, n.ty = -1 - e.y * n.d) }, t.prototype.resize = function(t, e) { if (t |= 0, e |= 0, this.size.width !== t || this.size.height !== e) { this.size.width = t, this.size.height = e, this.defaultFrame.width = t, this.defaultFrame.height = e, this.frameBuffer.resize(t * this.resolution, e * this.resolution); var n = this.frame || this.size; this.calculateProjection(n) } }, t.prototype.destroy = function() { this.frameBuffer.stencil && this.gl.deleteRenderbuffer(this.frameBuffer.stencil), this.frameBuffer.destroy(), this.frameBuffer = null, this.texture = null }, t }(); e.default = a }, function(t, e, n) { "use strict"; e.__esModule = !0, e.default = function(t, e, n) { t.nativeLines ? function(t, e) { var n = 0, i = t.points; if (0 !== i.length) { var o = e.points, s = i.length / 2, a = (0, r.hex2rgb)(t.lineColor), u = t.lineAlpha, l = a[0] * u, h = a[1] * u, c = a[2] * u; for (n = 1; n < s; n++) { var f = i[2 * (n - 1)], p = i[2 * (n - 1) + 1], d = i[2 * n], y = i[2 * n + 1]; o.push(f, p), o.push(l, h, c, u), o.push(d, y), o.push(l, h, c, u) } } }(t, n) : function(t, e) { var n = t.points; if (0 !== n.length) { var o = new i.Point(n[0], n[1]), s = new i.Point(n[n.length - 2], n[n.length - 1]); if (o.x === s.x && o.y === s.y) { (n = n.slice()).pop(), n.pop(); var a = (s = new i.Point(n[n.length - 2], n[n.length - 1])).x + .5 * (o.x - s.x), u = s.y + .5 * (o.y - s.y); n.unshift(a, u), n.push(a, u) } var l = e.points, h = e.indices, c = n.length / 2, f = n.length, p = l.length / 6, d = t.lineWidth / 2, y = (0, r.hex2rgb)(t.lineColor), g = t.lineAlpha, m = y[0] * g, v = y[1] * g, _ = y[2] * g, b = n[0], x = n[1], w = n[2], T = n[3], S = 0, P = 0, E = -(x - T), O = b - w, k = 0, M = 0, I = 0, A = 0, C = Math.sqrt(E * E + O * O); E /= C, O /= C, E *= d, O *= d; var R = t.lineAlignment, D = 2 * (1 - R), L = 2 * R; l.push(b - E * D, x - O * D, m, v, _, g), l.push(b + E * L, x + O * L, m, v, _, g); for (var j = 1; j < c - 1; ++j) { b = n[2 * (j - 1)], x = n[2 * (j - 1) + 1], w = n[2 * j], T = n[2 * j + 1], S = n[2 * (j + 1)], P = n[2 * (j + 1) + 1], E = -(x - T), O = b - w, E /= C = Math.sqrt(E * E + O * O), O /= C, E *= d, O *= d, k = -(T - P), M = w - S, k /= C = Math.sqrt(k * k + M * M), M /= C; var N = -O + x - (-O + T), B = -E + w - (-E + b), F = (-E + b) * (-O + T) - (-E + w) * (-O + x), X = -(M *= d) + P - (-M + T), U = -(k *= d) + w - (-k + S), V = (-k + S) * (-M + T) - (-k + w) * (-M + P), Y = N * U - X * B; if (Math.abs(Y) < .1) Y += 10.1, l.push(w - E * D, T - O * D, m, v, _, g), l.push(w + E * L, T + O * L, m, v, _, g); else { var H = (B * V - U * F) / Y, W = (X * F - N * V) / Y; (H - w) * (H - w) + (W - T) * (W - T) > 196 * d * d ? (I = E - k, A = O - M, I /= C = Math.sqrt(I * I + A * A), A /= C, I *= d, A *= d, l.push(w - I * D, T - A * D), l.push(m, v, _, g), l.push(w + I * L, T + A * L), l.push(m, v, _, g), l.push(w - I * L * D, T - A * D), l.push(m, v, _, g), f++) : (l.push(w + (H - w) * D, T + (W - T) * D), l.push(m, v, _, g), l.push(w - (H - w) * L, T - (W - T) * L), l.push(m, v, _, g)) } } b = n[2 * (c - 2)], x = n[2 * (c - 2) + 1], w = n[2 * (c - 1)], E = -(x - (T = n[2 * (c - 1) + 1])), O = b - w, E /= C = Math.sqrt(E * E + O * O), O /= C, E *= d, O *= d, l.push(w - E * D, T - O * D), l.push(m, v, _, g), l.push(w + E * L, T + O * L), l.push(m, v, _, g), h.push(p); for (var z = 0; z < f; ++z) h.push(p++); h.push(p - 1) } }(t, e) }; var i = n(11), r = n(7) }, function(t, e, n) { "use strict"; var i = n(2), r = n.n(i); function o(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } var s = function() { function t() { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.createSignals(), this.currentState = 0, this.previousState = 0, this.toggleStep = 4, this.currentToggle = 0, this.stateTextures = [] } return function(t, e, n) { e && o(t.prototype, e) }(t, [{ key: "createSignals", value: function() { this.signals = void 0 !== this.signals ? this.signals : {}, this.signals.changed = new r.a } }, { key: "destroySignals", value: function() { for (var t in this.signals) this.signals[t] instanceof r.a && this.signals[t].detachAll(); this.signals = null } }, { key: "flatten", value: function() { for (var t in this.stateTextures) this.stateTextures[t].length = this.toggleStep; this.currentToggle = 0, this.previousState = -1, this.set(0) } }, { key: "add", value: function(t, e) { this.stateTextures[t] || (this.stateTextures[t] = []), this.stateTextures[t].push(e) } }, { key: "has", value: function(t, e) { return !!this.stateTextures[t] && void 0 !== this.stateTextures[t][e + this.toggleOffset] } }, { key: "get", value: function(t, e) { if (this.has(t, e)) return this.stateTextures[t][e + this.toggleOffset] } }, { key: "set", value: function(t) { this.currentState = t, this.previousState !== this.currentState && (this.previousState = this.currentState, this.signals.changed.dispatch(this.currentState)) } }, { key: "togglePrevious", value: function(t) { this.currentToggle--; var e = this.stateTextures[t].length / this.toggleStep - 1; this.toggleOffset < 0 && (this.currentToggle = e), this.previousState = -1, this.set(this.currentState) } }, { key: "toggleNext", value: function(t) { this.currentToggle++; var e = this.stateTextures[t].length; this.toggleOffset > e - this.toggleStep && (this.currentToggle = 0), this.previousState = -1, this.set(this.currentState) } }, { key: "doSeppuku", value: function() { this.destroySignals(), this.stateTextures = null } }, { key: "current", get: function() { return this.currentState } }, { key: "toggleOffset", get: function() { return this.currentToggle * this.toggleStep } }]), t }(); n.d(e, "a", function() { return s }) }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t() { var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0, n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0; ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.x = e, this.y = n } return t.prototype.clone = function() { return new t(this.x, this.y) }, t.prototype.copy = function(t) { this.set(t.x, t.y) }, t.prototype.equals = function(t) { return t.x === this.x && t.y === this.y }, t.prototype.set = function(t, e) { this.x = t || 0, this.y = e || (0 !== e ? this.x : 0) }, t }(); e.default = i }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = function(t) { return t && t.__esModule ? t : { default: t } }(n(34)), o = n(4), s = function() { function t() { var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 1, n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, i = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : 0, r = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : 1, o = arguments.length > 4 && void 0 !== arguments[4] ? arguments[4] : 0, s = arguments.length > 5 && void 0 !== arguments[5] ? arguments[5] : 0; ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.a = e, this.b = n, this.c = i, this.d = r, this.tx = o, this.ty = s, this.array = null } return t.prototype.fromArray = function(t) { this.a = t[0], this.b = t[1], this.c = t[3], this.d = t[4], this.tx = t[2], this.ty = t[5] }, t.prototype.set = function(t, e, n, i, r, o) { return this.a = t, this.b = e, this.c = n, this.d = i, this.tx = r, this.ty = o, this }, t.prototype.toArray = function(t, e) { this.array || (this.array = new Float32Array(9)); var n = e || this.array; return t ? (n[0] = this.a, n[1] = this.b, n[2] = 0, n[3] = this.c, n[4] = this.d, n[5] = 0, n[6] = this.tx, n[7] = this.ty, n[8] = 1) : (n[0] = this.a, n[1] = this.c, n[2] = this.tx, n[3] = this.b, n[4] = this.d, n[5] = this.ty, n[6] = 0, n[7] = 0, n[8] = 1), n }, t.prototype.apply = function(t, e) { e = e || new r.default; var n = t.x, i = t.y; return e.x = this.a * n + this.c * i + this.tx, e.y = this.b * n + this.d * i + this.ty, e }, t.prototype.applyInverse = function(t, e) { e = e || new r.default; var n = 1 / (this.a * this.d + this.c * -this.b), i = t.x, o = t.y; return e.x = this.d * n * i + -this.c * n * o + (this.ty * this.c - this.tx * this.d) * n, e.y = this.a * n * o + -this.b * n * i + (-this.ty * this.a + this.tx * this.b) * n, e }, t.prototype.translate = function(t, e) { return this.tx += t, this.ty += e, this }, t.prototype.scale = function(t, e) { return this.a *= t, this.d *= e, this.c *= t, this.b *= e, this.tx *= t, this.ty *= e, this }, t.prototype.rotate = function(t) { var e = Math.cos(t), n = Math.sin(t), i = this.a, r = this.c, o = this.tx; return this.a = i * e - this.b * n, this.b = i * n + this.b * e, this.c = r * e - this.d * n, this.d = r * n + this.d * e, this.tx = o * e - this.ty * n, this.ty = o * n + this.ty * e, this }, t.prototype.append = function(t) { var e = this.a, n = this.b, i = this.c, r = this.d; return this.a = t.a * e + t.b * i, this.b = t.a * n + t.b * r, this.c = t.c * e + t.d * i, this.d = t.c * n + t.d * r, this.tx = t.tx * e + t.ty * i + this.tx, this.ty = t.tx * n + t.ty * r + this.ty, this }, t.prototype.setTransform = function(t, e, n, i, r, o, s, a, u) { return this.a = Math.cos(s + u) * r, this.b = Math.sin(s + u) * r, this.c = -Math.sin(s - a) * o, this.d = Math.cos(s - a) * o, this.tx = t - (n * this.a + i * this.c), this.ty = e - (n * this.b + i * this.d), this }, t.prototype.prepend = function(t) { var e = this.tx; if (1 !== t.a || 0 !== t.b || 0 !== t.c || 1 !== t.d) { var n = this.a, i = this.c; this.a = n * t.a + this.b * t.c, this.b = n * t.b + this.b * t.d, this.c = i * t.a + this.d * t.c, this.d = i * t.b + this.d * t.d } return this.tx = e * t.a + this.ty * t.c + t.tx, this.ty = e * t.b + this.ty * t.d + t.ty, this }, t.prototype.decompose = function(t) { var e = this.a, n = this.b, i = this.c, r = this.d, s = -Math.atan2(-i, r), a = Math.atan2(n, e), u = Math.abs(s + a); return u < 1e-5 || Math.abs(o.PI_2 - u) < 1e-5 ? (t.rotation = a, t.skew.x = t.skew.y = 0) : (t.rotation = 0, t.skew.x = s, t.skew.y = a), t.scale.x = Math.sqrt(e * e + n * n), t.scale.y = Math.sqrt(i * i + r * r), t.position.x = this.tx, t.position.y = this.ty, t }, t.prototype.invert = function() { var t = this.a, e = this.b, n = this.c, i = this.d, r = this.tx, o = t * i - e * n; return this.a = i / o, this.b = -e / o, this.c = -n / o, this.d = t / o, this.tx = (n * this.ty - i * r) / o, this.ty = -(t * this.ty - e * r) / o, this }, t.prototype.identity = function() { return this.a = 1, this.b = 0, this.c = 0, this.d = 1, this.tx = 0, this.ty = 0, this }, t.prototype.clone = function() { var e = new t; return e.a = this.a, e.b = this.b, e.c = this.c, e.d = this.d, e.tx = this.tx, e.ty = this.ty, e }, t.prototype.copy = function(t) { return t.a = this.a, t.b = this.b, t.c = this.c, t.d = this.d, t.tx = this.tx, t.ty = this.ty, t }, i(t, null, [{ key: "IDENTITY", get: function() { return new t } }, { key: "TEMP_MATRIX", get: function() { return new t } }]), t }(); e.default = s }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = n(4), o = function() { function t() { var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0, n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, i = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : 0, o = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : 0; ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.x = Number(e), this.y = Number(n), this.width = Number(i), this.height = Number(o), this.type = r.SHAPES.RECT } return t.prototype.clone = function() { return new t(this.x, this.y, this.width, this.height) }, t.prototype.copy = function(t) { return this.x = t.x, this.y = t.y, this.width = t.width, this.height = t.height, this }, t.prototype.contains = function(t, e) { return !(this.width <= 0 || this.height <= 0) && t >= this.x && t < this.x + this.width && e >= this.y && e < this.y + this.height }, t.prototype.pad = function(t, e) { t = t || 0, e = e || (0 !== e ? t : 0), this.x -= t, this.y -= e, this.width += 2 * t, this.height += 2 * e }, t.prototype.fit = function(t) { var e = Math.max(this.x, t.x), n = Math.min(this.x + this.width, t.x + t.width), i = Math.max(this.y, t.y), r = Math.min(this.y + this.height, t.y + t.height); this.x = e, this.width = Math.max(n - e, 0), this.y = i, this.height = Math.max(r - i, 0) }, t.prototype.enlarge = function(t) { var e = Math.min(this.x, t.x), n = Math.max(this.x + this.width, t.x + t.width), i = Math.min(this.y, t.y), r = Math.max(this.y + this.height, t.y + t.height); this.x = e, this.width = n - e, this.y = i, this.height = r - i }, t.prototype.ceil = function() { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 1, e = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : .001, n = Math.ceil((this.x + this.width - e) * t) / t, i = Math.ceil((this.y + this.height - e) * t) / t; this.x = Math.floor((this.x + e) * t) / t, this.y = Math.floor((this.y + e) * t) / t, this.width = n - this.x, this.height = i - this.y }, i(t, [{ key: "left", get: function() { return this.x } }, { key: "right", get: function() { return this.x + this.width } }, { key: "top", get: function() { return this.y } }, { key: "bottom", get: function() { return this.y + this.height } }], [{ key: "EMPTY", get: function() { return new t(0, 0, 0, 0) } }]), t }(); e.default = o }, function(t, e) { var n = null, i = { FLOAT: "float", FLOAT_VEC2: "vec2", FLOAT_VEC3: "vec3", FLOAT_VEC4: "vec4", INT: "int", INT_VEC2: "ivec2", INT_VEC3: "ivec3", INT_VEC4: "ivec4", BOOL: "bool", BOOL_VEC2: "bvec2", BOOL_VEC3: "bvec3", BOOL_VEC4: "bvec4", FLOAT_MAT2: "mat2", FLOAT_MAT3: "mat3", FLOAT_MAT4: "mat4", SAMPLER_2D: "sampler2D" }; t.exports = function(t, e) { if (!n) { var r = Object.keys(i); n = {}; for (var o = 0; o < r.length; ++o) { var s = r[o]; n[t[s]] = i[s] } } return n[e] } }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = n(11), r = function() { function t() { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.minX = 1 / 0, this.minY = 1 / 0, this.maxX = -1 / 0, this.maxY = -1 / 0, this.rect = null } return t.prototype.isEmpty = function() { return this.minX > this.maxX || this.minY > this.maxY }, t.prototype.clear = function() { this.updateID++, this.minX = 1 / 0, this.minY = 1 / 0, this.maxX = -1 / 0, this.maxY = -1 / 0 }, t.prototype.getRectangle = function(t) { return this.minX > this.maxX || this.minY > this.maxY ? i.Rectangle.EMPTY : ((t = t || new i.Rectangle(0, 0, 1, 1)).x = this.minX, t.y = this.minY, t.width = this.maxX - this.minX, t.height = this.maxY - this.minY, t) }, t.prototype.addPoint = function(t) { this.minX = Math.min(this.minX, t.x), this.maxX = Math.max(this.maxX, t.x), this.minY = Math.min(this.minY, t.y), this.maxY = Math.max(this.maxY, t.y) }, t.prototype.addQuad = function(t) { var e = this.minX, n = this.minY, i = this.maxX, r = this.maxY, o = t[0], s = t[1]; e = o < e ? o : e, n = s < n ? s : n, i = o > i ? o : i, r = s > r ? s : r, e = (o = t[2]) < e ? o : e, n = (s = t[3]) < n ? s : n, i = o > i ? o : i, r = s > r ? s : r, e = (o = t[4]) < e ? o : e, n = (s = t[5]) < n ? s : n, i = o > i ? o : i, r = s > r ? s : r, e = (o = t[6]) < e ? o : e, n = (s = t[7]) < n ? s : n, i = o > i ? o : i, r = s > r ? s : r, this.minX = e, this.minY = n, this.maxX = i, this.maxY = r }, t.prototype.addFrame = function(t, e, n, i, r) { var o = t.worldTransform, s = o.a, a = o.b, u = o.c, l = o.d, h = o.tx, c = o.ty, f = this.minX, p = this.minY, d = this.maxX, y = this.maxY, g = s * e + u * n + h, m = a * e + l * n + c; f = g < f ? g : f, p = m < p ? m : p, d = g > d ? g : d, y = m > y ? m : y, f = (g = s * i + u * n + h) < f ? g : f, p = (m = a * i + l * n + c) < p ? m : p, d = g > d ? g : d, y = m > y ? m : y, f = (g = s * e + u * r + h) < f ? g : f, p = (m = a * e + l * r + c) < p ? m : p, d = g > d ? g : d, y = m > y ? m : y, f = (g = s * i + u * r + h) < f ? g : f, p = (m = a * i + l * r + c) < p ? m : p, d = g > d ? g : d, y = m > y ? m : y, this.minX = f, this.minY = p, this.maxX = d, this.maxY = y }, t.prototype.addVertices = function(t, e, n, i) { for (var r = t.worldTransform, o = r.a, s = r.b, a = r.c, u = r.d, l = r.tx, h = r.ty, c = this.minX, f = this.minY, p = this.maxX, d = this.maxY, y = n; y < i; y += 2) { var g = e[y], m = e[y + 1], v = o * g + a * m + l, _ = u * m + s * g + h; c = v < c ? v : c, f = _ < f ? _ : f, p = v > p ? v : p, d = _ > d ? _ : d } this.minX = c, this.minY = f, this.maxX = p, this.maxY = d }, t.prototype.addBounds = function(t) { var e = this.minX, n = this.minY, i = this.maxX, r = this.maxY; this.minX = t.minX < e ? t.minX : e, this.minY = t.minY < n ? t.minY : n, this.maxX = t.maxX > i ? t.maxX : i, this.maxY = t.maxY > r ? t.maxY : r }, t.prototype.addBoundsMask = function(t, e) { var n = t.minX > e.minX ? t.minX : e.minX, i = t.minY > e.minY ? t.minY : e.minY, r = t.maxX < e.maxX ? t.maxX : e.maxX, o = t.maxY < e.maxY ? t.maxY : e.maxY; if (n <= r && i <= o) { var s = this.minX, a = this.minY, u = this.maxX, l = this.maxY; this.minX = n < s ? n : s, this.minY = i < a ? i : a, this.maxX = r > u ? r : u, this.maxY = o > l ? o : l } }, t.prototype.addBoundsArea = function(t, e) { var n = t.minX > e.x ? t.minX : e.x, i = t.minY > e.y ? t.minY : e.y, r = t.maxX < e.x + e.width ? t.maxX : e.x + e.width, o = t.maxY < e.y + e.height ? t.maxY : e.y + e.height; if (n <= r && i <= o) { var s = this.minX, a = this.minY, u = this.maxX, l = this.maxY; this.minX = n < s ? n : s, this.minY = i < a ? i : a, this.maxX = r > u ? r : u, this.maxY = o > l ? o : l } }, t }(); e.default = r }, function(t, e, n) { var i, r, o; ! function(n) { var s = /iPhone/i, a = /iPod/i, u = /iPad/i, l = /\bAndroid(?:.+)Mobile\b/i, h = /Android/i, c = /\bAndroid(?:.+)SD4930UR\b/i, f = /\bAndroid(?:.+)(?:KF[A-Z]{2,4})\b/i, p = /Windows Phone/i, d = /\bWindows(?:.+)ARM\b/i, y = /BlackBerry/i, g = /BB10/i, m = /Opera Mini/i, v = /\b(CriOS|Chrome)(?:.+)Mobile/i, _ = /Mobile(?:.+)Firefox\b/i; function b(t, e) { return t.test(e) } function x(t) { var e = t || ("undefined" != typeof navigator ? navigator.userAgent : ""), n = e.split("[FBAN"); void 0 !== n[1] && (e = n[0]), void 0 !== (n = e.split("Twitter"))[1] && (e = n[0]); var i = { apple: { phone: b(s, e) && !b(p, e), ipod: b(a, e), tablet: !b(s, e) && b(u, e) && !b(p, e), device: (b(s, e) || b(a, e) || b(u, e)) && !b(p, e) }, amazon: { phone: b(c, e), tablet: !b(c, e) && b(f, e), device: b(c, e) || b(f, e) }, android: { phone: !b(p, e) && b(c, e) || !b(p, e) && b(l, e), tablet: !b(p, e) && !b(c, e) && !b(l, e) && (b(f, e) || b(h, e)), device: !b(p, e) && (b(c, e) || b(f, e) || b(l, e) || b(h, e)) || b(/\bokhttp\b/i, e) }, windows: { phone: b(p, e), tablet: b(d, e), device: b(p, e) || b(d, e) }, other: { blackberry: b(y, e), blackberry10: b(g, e), opera: b(m, e), firefox: b(_, e), chrome: b(v, e), device: b(y, e) || b(g, e) || b(m, e) || b(_, e) || b(v, e) } }; return i.any = i.apple.device || i.android.device || i.windows.device || i.other.device, i.phone = i.apple.phone || i.android.phone || i.windows.phone, i.tablet = i.apple.tablet || i.android.tablet || i.windows.tablet, i } t.exports && "undefined" == typeof window ? t.exports = x : t.exports && "undefined" != typeof window ? (t.exports = x(), t.exports.isMobile = x) : (r = [], i = n.isMobile = x(), void 0 === (o = "function" == typeof i ? i.apply(e, r) : i) || (t.exports = o)) }(this) }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = n(11), r = function() { function t() { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.worldTransform = new i.Matrix, this.localTransform = new i.Matrix, this._worldID = 0, this._parentID = 0 } return t.prototype.updateLocalTransform = function() {}, t.prototype.updateTransform = function(t) { var e = t.worldTransform, n = this.worldTransform, i = this.localTransform; n.a = i.a * e.a + i.b * e.c, n.b = i.a * e.b + i.b * e.d, n.c = i.c * e.a + i.d * e.c, n.d = i.c * e.b + i.d * e.d, n.tx = i.tx * e.a + i.ty * e.c + e.tx, n.ty = i.tx * e.b + i.ty * e.d + e.ty, this._worldID++ }, t }(); e.default = r, r.prototype.updateWorldTransform = r.prototype.updateTransform, r.IDENTITY = new r }, function(t, e, n) { "use strict"; function i(t, e, n) { n = n || 2; var i, a, u, l, h, p, y, g = e && e.length, m = g ? e[0] * n : t.length, v = r(t, 0, m, n, !0), _ = []; if (!v || v.next === v.prev) return _; if (g && (v = function(t, e, n, i) { var s, a, u, l = []; for (s = 0, a = e.length; s < a; s++)(u = r(t, e[s] * i, s < a - 1 ? e[s + 1] * i : t.length, i, !1)) === u.next && (u.steiner = !0), l.push(d(u)); for (l.sort(c), s = 0; s < l.length; s++) f(l[s], n), n = o(n, n.next); return n }(t, e, v, n)), t.length > 80 * n) { i = u = t[0], a = l = t[1]; for (var b = n; b < m; b += n)(h = t[b]) < i && (i = h), (p = t[b + 1]) < a && (a = p), h > u && (u = h), p > l && (l = p); y = 0 !== (y = Math.max(u - i, l - a)) ? 1 / y : 0 } return s(v, _, n, i, a, y), _ } function r(t, e, n, i, r) { var o, s; if (r === P(t, e, n, i) > 0) for (o = e; o < n; o += i) s = w(o, t[o], t[o + 1], s); else for (o = n - i; o >= e; o -= i) s = w(o, t[o], t[o + 1], s); return s && v(s, s.next) && (T(s), s = s.next), s } function o(t, e) { if (!t) return t; e || (e = t); var n, i = t; do { if (n = !1, i.steiner || !v(i, i.next) && 0 !== m(i.prev, i, i.next)) i = i.next; else { if (T(i), (i = e = i.prev) === i.next) break; n = !0 } } while (n || i !== e); return e } function s(t, e, n, i, r, c, f) { if (t) { !f && c && function(t, e, n, i) { var r = t; do { null === r.z && (r.z = p(r.x, r.y, e, n, i)), r.prevZ = r.prev, r.nextZ = r.next, r = r.next } while (r !== t); r.prevZ.nextZ = null, r.prevZ = null, function(t) { var e, n, i, r, o, s, a, u, l = 1; do { for (n = t, t = null, o = null, s = 0; n;) { for (s++, i = n, a = 0, e = 0; e < l && (a++, i = i.nextZ); e++); for (u = l; a > 0 || u > 0 && i;) 0 !== a && (0 === u || !i || n.z <= i.z) ? (r = n, n = n.nextZ, a--) : (r = i, i = i.nextZ, u--), o ? o.nextZ = r : t = r, r.prevZ = o, o = r; n = i } o.nextZ = null, l *= 2 } while (s > 1) }(r) }(t, i, r, c); for (var d, y, g = t; t.prev !== t.next;) if (d = t.prev, y = t.next, c ? u(t, i, r, c) : a(t)) e.push(d.i / n), e.push(t.i / n), e.push(y.i / n), T(t), t = y.next, g = y.next; else if ((t = y) === g) { f ? 1 === f ? s(t = l(t, e, n), e, n, i, r, c, 2) : 2 === f && h(t, e, n, i, r, c) : s(o(t), e, n, i, r, c, 1); break } } } function a(t) { var e = t.prev, n = t, i = t.next; if (m(e, n, i) >= 0) return !1; for (var r = t.next.next; r !== t.prev;) { if (y(e.x, e.y, n.x, n.y, i.x, i.y, r.x, r.y) && m(r.prev, r, r.next) >= 0) return !1; r = r.next } return !0 } function u(t, e, n, i) { var r = t.prev, o = t, s = t.next; if (m(r, o, s) >= 0) return !1; for (var a = r.x < o.x ? r.x < s.x ? r.x : s.x : o.x < s.x ? o.x : s.x, u = r.y < o.y ? r.y < s.y ? r.y : s.y : o.y < s.y ? o.y : s.y, l = r.x > o.x ? r.x > s.x ? r.x : s.x : o.x > s.x ? o.x : s.x, h = r.y > o.y ? r.y > s.y ? r.y : s.y : o.y > s.y ? o.y : s.y, c = p(a, u, e, n, i), f = p(l, h, e, n, i), d = t.prevZ, g = t.nextZ; d && d.z >= c && g && g.z <= f;) { if (d !== t.prev && d !== t.next && y(r.x, r.y, o.x, o.y, s.x, s.y, d.x, d.y) && m(d.prev, d, d.next) >= 0) return !1; if (d = d.prevZ, g !== t.prev && g !== t.next && y(r.x, r.y, o.x, o.y, s.x, s.y, g.x, g.y) && m(g.prev, g, g.next) >= 0) return !1; g = g.nextZ } for (; d && d.z >= c;) { if (d !== t.prev && d !== t.next && y(r.x, r.y, o.x, o.y, s.x, s.y, d.x, d.y) && m(d.prev, d, d.next) >= 0) return !1; d = d.prevZ } for (; g && g.z <= f;) { if (g !== t.prev && g !== t.next && y(r.x, r.y, o.x, o.y, s.x, s.y, g.x, g.y) && m(g.prev, g, g.next) >= 0) return !1; g = g.nextZ } return !0 } function l(t, e, n) { var i = t; do { var r = i.prev, o = i.next.next; !v(r, o) && _(r, i, i.next, o) && b(r, o) && b(o, r) && (e.push(r.i / n), e.push(i.i / n), e.push(o.i / n), T(i), T(i.next), i = t = o), i = i.next } while (i !== t); return i } function h(t, e, n, i, r, a) { var u = t; do { for (var l = u.next.next; l !== u.prev;) { if (u.i !== l.i && g(u, l)) { var h = x(u, l); return u = o(u, u.next), h = o(h, h.next), s(u, e, n, i, r, a), void s(h, e, n, i, r, a) } l = l.next } u = u.next } while (u !== t) } function c(t, e) { return t.x - e.x } function f(t, e) { if (e = function(t, e) { var n, i = e, r = t.x, o = t.y, s = -1 / 0; do { if (o <= i.y && o >= i.next.y && i.next.y !== i.y) { var a = i.x + (o - i.y) * (i.next.x - i.x) / (i.next.y - i.y); if (a <= r && a > s) { if (s = a, a === r) { if (o === i.y) return i; if (o === i.next.y) return i.next } n = i.x < i.next.x ? i : i.next } } i = i.next } while (i !== e); if (!n) return null; if (r === s) return n.prev; var u, l = n, h = n.x, c = n.y, f = 1 / 0; for (i = n.next; i !== l;) r >= i.x && i.x >= h && r !== i.x && y(o < c ? r : s, o, h, c, o < c ? s : r, o, i.x, i.y) && ((u = Math.abs(o - i.y) / (r - i.x)) < f || u === f && i.x > n.x) && b(i, t) && (n = i, f = u), i = i.next; return n }(t, e)) { var n = x(e, t); o(n, n.next) } } function p(t, e, n, i, r) { return (t = 1431655765 & ((t = 858993459 & ((t = 252645135 & ((t = 16711935 & ((t = 32767 * (t - n) * r) | t << 8)) | t << 4)) | t << 2)) | t << 1)) | (e = 1431655765 & ((e = 858993459 & ((e = 252645135 & ((e = 16711935 & ((e = 32767 * (e - i) * r) | e << 8)) | e << 4)) | e << 2)) | e << 1)) << 1 } function d(t) { var e = t, n = t; do { (e.x < n.x || e.x === n.x && e.y < n.y) && (n = e), e = e.next } while (e !== t); return n } function y(t, e, n, i, r, o, s, a) { return (r - s) * (e - a) - (t - s) * (o - a) >= 0 && (t - s) * (i - a) - (n - s) * (e - a) >= 0 && (n - s) * (o - a) - (r - s) * (i - a) >= 0 } function g(t, e) { return t.next.i !== e.i && t.prev.i !== e.i && ! function(t, e) { var n = t; do { if (n.i !== t.i && n.next.i !== t.i && n.i !== e.i && n.next.i !== e.i && _(n, n.next, t, e)) return !0; n = n.next } while (n !== t); return !1 }(t, e) && b(t, e) && b(e, t) && function(t, e) { var n = t, i = !1, r = (t.x + e.x) / 2, o = (t.y + e.y) / 2; do { n.y > o != n.next.y > o && n.next.y !== n.y && r < (n.next.x - n.x) * (o - n.y) / (n.next.y - n.y) + n.x && (i = !i), n = n.next } while (n !== t); return i }(t, e) } function m(t, e, n) { return (e.y - t.y) * (n.x - e.x) - (e.x - t.x) * (n.y - e.y) } function v(t, e) { return t.x === e.x && t.y === e.y } function _(t, e, n, i) { return !!(v(t, e) && v(n, i) || v(t, i) && v(n, e)) || m(t, e, n) > 0 != m(t, e, i) > 0 && m(n, i, t) > 0 != m(n, i, e) > 0 } function b(t, e) { return m(t.prev, t, t.next) < 0 ? m(t, e, t.next) >= 0 && m(t, t.prev, e) >= 0 : m(t, e, t.prev) < 0 || m(t, t.next, e) < 0 } function x(t, e) { var n = new S(t.i, t.x, t.y), i = new S(e.i, e.x, e.y), r = t.next, o = e.prev; return t.next = e, e.prev = t, n.next = r, r.prev = n, i.next = n, n.prev = i, o.next = i, i.prev = o, i } function w(t, e, n, i) { var r = new S(t, e, n); return i ? (r.next = i.next, r.prev = i, i.next.prev = r, i.next = r) : (r.prev = r, r.next = r), r } function T(t) { t.next.prev = t.prev, t.prev.next = t.next, t.prevZ && (t.prevZ.nextZ = t.nextZ), t.nextZ && (t.nextZ.prevZ = t.prevZ) } function S(t, e, n) { this.i = t, this.x = e, this.y = n, this.prev = null, this.next = null, this.z = null, this.prevZ = null, this.nextZ = null, this.steiner = !1 } function P(t, e, n, i) { for (var r = 0, o = e, s = n - i; o < n; o += i) r += (t[s] - t[o]) * (t[o + 1] + t[s + 1]), s = o; return r } t.exports = i, t.exports.default = i, i.deviation = function(t, e, n, i) { var r = e && e.length, o = r ? e[0] * n : t.length, s = Math.abs(P(t, 0, o, n)); if (r) for (var a = 0, u = e.length; a < u; a++) { var l = e[a] * n, h = a < u - 1 ? e[a + 1] * n : t.length; s -= Math.abs(P(t, l, h, n)) } var c = 0; for (a = 0; a < i.length; a += 3) { var f = i[a] * n, p = i[a + 1] * n, d = i[a + 2] * n; c += Math.abs((t[f] - t[d]) * (t[p + 1] - t[f + 1]) - (t[f] - t[p]) * (t[d + 1] - t[f + 1])) } return 0 === s && 0 === c ? 0 : Math.abs((c - s) / s) }, i.flatten = function(t) { for (var e = t[0][0].length, n = { vertices: [], holes: [], dimensions: e }, i = 0, r = 0; r < t.length; r++) { for (var o = 0; o < t[r].length; o++) for (var s = 0; s < e; s++) n.vertices.push(t[r][o][s]); r > 0 && (i += t[r - 1].length, n.holes.push(i)) } return n } }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = n(11), o = n(7), s = n(4), a = l(n(17)), u = l(n(21)); function l(t) { return t && t.__esModule ? t : { default: t } } var h = new r.Point, c = function(t) { function e(n) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var i = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this)); return i._anchor = new r.ObservablePoint(i._onAnchorUpdate, i, n ? n.defaultAnchor.x : 0, n ? n.defaultAnchor.y : 0), i._texture = null, i._width = 0, i._height = 0, i._tint = null, i._tintRGB = null, i.tint = 16777215, i.blendMode = s.BLEND_MODES.NORMAL, i.shader = null, i.cachedTint = 16777215, i.texture = n || a.default.EMPTY, i.vertexData = new Float32Array(8), i.vertexTrimmedData = null, i._transformID = -1, i._textureID = -1, i._transformTrimmedID = -1, i._textureTrimmedID = -1, i.pluginName = "sprite", i } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype._onTextureUpdate = function() { this._textureID = -1, this._textureTrimmedID = -1, this.cachedTint = 16777215, this._width && (this.scale.x = (0, o.sign)(this.scale.x) * this._width / this._texture.orig.width), this._height && (this.scale.y = (0, o.sign)(this.scale.y) * this._height / this._texture.orig.height) }, e.prototype._onAnchorUpdate = function() { this._transformID = -1, this._transformTrimmedID = -1 }, e.prototype.calculateVertices = function() { if (this._transformID !== this.transform._worldID || this._textureID !== this._texture._updateID) { this._transformID = this.transform._worldID, this._textureID = this._texture._updateID; var t = this._texture, e = this.transform.worldTransform, n = e.a, i = e.b, r = e.c, o = e.d, s = e.tx, a = e.ty, u = this.vertexData, l = t.trim, h = t.orig, c = this._anchor, f = 0, p = 0, d = 0, y = 0; l ? (f = (p = l.x - c._x * h.width) + l.width, d = (y = l.y - c._y * h.height) + l.height) : (f = (p = -c._x * h.width) + h.width, d = (y = -c._y * h.height) + h.height), u[0] = n * p + r * y + s, u[1] = o * y + i * p + a, u[2] = n * f + r * y + s, u[3] = o * y + i * f + a, u[4] = n * f + r * d + s, u[5] = o * d + i * f + a, u[6] = n * p + r * d + s, u[7] = o * d + i * p + a } }, e.prototype.calculateTrimmedVertices = function() { if (this.vertexTrimmedData) { if (this._transformTrimmedID === this.transform._worldID && this._textureTrimmedID === this._texture._updateID) return } else this.vertexTrimmedData = new Float32Array(8); this._transformTrimmedID = this.transform._worldID, this._textureTrimmedID = this._texture._updateID; var t = this._texture, e = this.vertexTrimmedData, n = t.orig, i = this._anchor, r = this.transform.worldTransform, o = r.a, s = r.b, a = r.c, u = r.d, l = r.tx, h = r.ty, c = -i._x * n.width, f = c + n.width, p = -i._y * n.height, d = p + n.height; e[0] = o * c + a * p + l, e[1] = u * p + s * c + h, e[2] = o * f + a * p + l, e[3] = u * p + s * f + h, e[4] = o * f + a * d + l, e[5] = u * d + s * f + h, e[6] = o * c + a * d + l, e[7] = u * d + s * c + h }, e.prototype._renderWebGL = function(t) { this.calculateVertices(), t.setObjectRenderer(t.plugins[this.pluginName]), t.plugins[this.pluginName].render(this) }, e.prototype._renderCanvas = function(t) { t.plugins[this.pluginName].render(this) }, e.prototype._calculateBounds = function() { var t = this._texture.trim, e = this._texture.orig; !t || t.width === e.width && t.height === e.height ? (this.calculateVertices(), this._bounds.addQuad(this.vertexData)) : (this.calculateTrimmedVertices(), this._bounds.addQuad(this.vertexTrimmedData)) }, e.prototype.getLocalBounds = function(e) { return 0 === this.children.length ? (this._bounds.minX = this._texture.orig.width * -this._anchor._x, this._bounds.minY = this._texture.orig.height * -this._anchor._y, this._bounds.maxX = this._texture.orig.width * (1 - this._anchor._x), this._bounds.maxY = this._texture.orig.height * (1 - this._anchor._y), e || (this._localBoundsRect || (this._localBoundsRect = new r.Rectangle), e = this._localBoundsRect), this._bounds.getRectangle(e)) : t.prototype.getLocalBounds.call(this, e) }, e.prototype.containsPoint = function(t) { this.worldTransform.applyInverse(t, h); var e = this._texture.orig.width, n = this._texture.orig.height, i = -e * this.anchor.x, r = 0; return h.x >= i && h.x < i + e && (r = -n * this.anchor.y, h.y >= r && h.y < r + n) }, e.prototype.destroy = function(e) { if (t.prototype.destroy.call(this, e), this._texture.off("update", this._onTextureUpdate, this), this._anchor = null, "boolean" == typeof e ? e : e && e.texture) { var n = "boolean" == typeof e ? e : e && e.baseTexture; this._texture.destroy(!!n) } this._texture = null, this.shader = null }, e.from = function(t) { return new e(a.default.from(t)) }, e.fromFrame = function(t) { var n = o.TextureCache[t]; if (!n) throw new Error('The frameId "' + t + '" does not exist in the texture cache'); return new e(n) }, e.fromImage = function(t, n, i) { return new e(a.default.fromImage(t, n, i)) }, i(e, [{ key: "width", get: function() { return Math.abs(this.scale.x) * this._texture.orig.width }, set: function(t) { var e = (0, o.sign)(this.scale.x) || 1; this.scale.x = e * t / this._texture.orig.width, this._width = t } }, { key: "height", get: function() { return Math.abs(this.scale.y) * this._texture.orig.height }, set: function(t) { var e = (0, o.sign)(this.scale.y) || 1; this.scale.y = e * t / this._texture.orig.height, this._height = t } }, { key: "anchor", get: function() { return this._anchor }, set: function(t) { this._anchor.copy(t) } }, { key: "tint", get: function() { return this._tint }, set: function(t) { this._tint = t, this._tintRGB = (t >> 16) + (65280 & t) + ((255 & t) << 16) } }, { key: "texture", get: function() { return this._texture }, set: function(t) { this._texture !== t && (this._texture = t || a.default.EMPTY, this.cachedTint = 16777215, this._textureID = -1, this._textureTrimmedID = -1, t && (t.baseTexture.hasLoaded ? this._onTextureUpdate() : t.once("update", this._onTextureUpdate, this))) } }]), e }(u.default); e.default = c }, function(t, e, n) { "use strict"; function i(t) { var e = 32; return (t &= -t) && e--, 65535 & t && (e -= 16), 16711935 & t && (e -= 8), 252645135 & t && (e -= 4), 858993459 & t && (e -= 2), 1431655765 & t && (e -= 1), e } e.INT_BITS = 32, e.INT_MAX = 2147483647, e.INT_MIN = -1 << 31, e.sign = function(t) { return (t > 0) - (t < 0) }, e.abs = function(t) { var e = t >> 31; return (t ^ e) - e }, e.min = function(t, e) { return e ^ (t ^ e) & -(t < e) }, e.max = function(t, e) { return t ^ (t ^ e) & -(t < e) }, e.isPow2 = function(t) { return !(t & t - 1 || !t) }, e.log2 = function(t) { var e, n; return e = (t > 65535) << 4, e |= n = ((t >>>= e) > 255) << 3, e |= n = ((t >>>= n) > 15) << 2, (e |= n = ((t >>>= n) > 3) << 1) | (t >>>= n) >> 1 }, e.log10 = function(t) { return t >= 1e9 ? 9 : t >= 1e8 ? 8 : t >= 1e7 ? 7 : t >= 1e6 ? 6 : t >= 1e5 ? 5 : t >= 1e4 ? 4 : t >= 1e3 ? 3 : t >= 100 ? 2 : t >= 10 ? 1 : 0 }, e.popCount = function(t) { return 16843009 * ((t = (858993459 & (t -= t >>> 1 & 1431655765)) + (t >>> 2 & 858993459)) + (t >>> 4) & 252645135) >>> 24 }, e.countTrailingZeros = i, e.nextPow2 = function(t) { return t += 0 === t, --t, t |= t >>> 1, t |= t >>> 2, t |= t >>> 4, t |= t >>> 8, 1 + (t |= t >>> 16) }, e.prevPow2 = function(t) { return t |= t >>> 1, t |= t >>> 2, t |= t >>> 4, t |= t >>> 8, (t |= t >>> 16) - (t >>> 1) }, e.parity = function(t) { return t ^= t >>> 16, t ^= t >>> 8, t ^= t >>> 4, 27030 >>> (t &= 15) & 1 }; var r = new Array(256); ! function(t) { for (var e = 0; e < 256; ++e) { var n = e, i = e, r = 7; for (n >>>= 1; n; n >>>= 1) i <<= 1, i |= 1 & n, --r; t[e] = i << r & 255 } }(r), e.reverse = function(t) { return r[255 & t] << 24 | r[t >>> 8 & 255] << 16 | r[t >>> 16 & 255] << 8 | r[t >>> 24 & 255] }, e.interleave2 = function(t, e) { return (t = 1431655765 & ((t = 858993459 & ((t = 252645135 & ((t = 16711935 & ((t &= 65535) | t << 8)) | t << 4)) | t << 2)) | t << 1)) | (e = 1431655765 & ((e = 858993459 & ((e = 252645135 & ((e = 16711935 & ((e &= 65535) | e << 8)) | e << 4)) | e << 2)) | e << 1)) << 1 }, e.deinterleave2 = function(t, e) { return (t = 65535 & ((t = 16711935 & ((t = 252645135 & ((t = 858993459 & ((t = t >>> e & 1431655765) | t >>> 1)) | t >>> 2)) | t >>> 4)) | t >>> 16)) << 16 >> 16 }, e.interleave3 = function(t, e, n) { return t = 1227133513 & ((t = 3272356035 & ((t = 251719695 & ((t = 4278190335 & ((t &= 1023) | t << 16)) | t << 8)) | t << 4)) | t << 2), (t |= (e = 1227133513 & ((e = 3272356035 & ((e = 251719695 & ((e = 4278190335 & ((e &= 1023) | e << 16)) | e << 8)) | e << 4)) | e << 2)) << 1) | (n = 1227133513 & ((n = 3272356035 & ((n = 251719695 & ((n = 4278190335 & ((n &= 1023) | n << 16)) | n << 8)) | n << 4)) | n << 2)) << 2 }, e.deinterleave3 = function(t, e) { return (t = 1023 & ((t = 4278190335 & ((t = 251719695 & ((t = 3272356035 & ((t = t >>> e & 1227133513) | t >>> 2)) | t >>> 4)) | t >>> 8)) | t >>> 16)) << 22 >> 22 }, e.nextCombination = function(t) { var e = t | t - 1; return e + 1 | (~e & -~e) - 1 >>> i(t) + 1 } }, function(t, e, n) { "use strict"; e.__esModule = !0, e.Ticker = e.shared = void 0; var i = function(t) { return t && t.__esModule ? t : { default: t } }(n(134)), r = new i.default; r.autoStart = !0, r.destroy = function() {}, e.shared = r, e.Ticker = i.default }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = r(n(69)); function r(t) { return t && t.__esModule ? t : { default: t } } var o = function(t) { function e(n, r) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var o = null; if (!(n instanceof i.default)) { var s = arguments[1], a = arguments[2], u = arguments[3], l = arguments[4]; console.warn("Please use RenderTexture.create(" + s + ", " + a + ") instead of the ctor directly."), o = arguments[0], r = null, n = new i.default(s, a, u, l) } var h = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this, n, r)); return h.legacyRenderer = o, h.valid = !0, h._updateUvs(), h } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.resize = function(t, e, n) { t = Math.ceil(t), e = Math.ceil(e), this.valid = t > 0 && e > 0, this._frame.width = this.orig.width = t, this._frame.height = this.orig.height = e, n || this.baseTexture.resize(t, e), this._updateUvs() }, e.create = function(t, n, r, o) { return new e(new i.default(t, n, r, o)) }, e }(r(n(17)).default); e.default = o }, function(t, e, n) { "use strict"; e.__esModule = !0, e.default = function(t) { for (var e = 6 * t, n = new Uint16Array(e), i = 0, r = 0; i < e; i += 6, r += 4) n[i + 0] = r + 0, n[i + 1] = r + 1, n[i + 2] = r + 2, n[i + 3] = r + 0, n[i + 4] = r + 2, n[i + 5] = r + 3; return n } }, function(t, e, n) { "use strict"; e.__esModule = !0, e.Resource = void 0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = s(n(94)), o = s(n(2)); function s(t) { return t && t.__esModule ? t : { default: t } } var a = !(!window.XDomainRequest || "withCredentials" in new XMLHttpRequest), u = null; function l() {} var h = e.Resource = function() { function t(e, n, i) { if (function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), "string" != typeof e || "string" != typeof n) throw new Error("Both name and url are required for constructing a resource."); i = i || {}, this._flags = 0, this._setFlag(t.STATUS_FLAGS.DATA_URL, 0 === n.indexOf("data:")), this.name = e, this.url = n, this.extension = this._getExtension(), this.data = null, this.crossOrigin = !0 === i.crossOrigin ? "anonymous" : i.crossOrigin, this.timeout = i.timeout || 0, this.loadType = i.loadType || this._determineLoadType(), this.xhrType = i.xhrType, this.metadata = i.metadata || {}, this.error = null, this.xhr = null, this.children = [], this.type = t.TYPE.UNKNOWN, this.progressChunk = 0, this._dequeue = l, this._onLoadBinding = null, this._elementTimer = 0, this._boundComplete = this.complete.bind(this), this._boundOnError = this._onError.bind(this), this._boundOnProgress = this._onProgress.bind(this), this._boundOnTimeout = this._onTimeout.bind(this), this._boundXhrOnError = this._xhrOnError.bind(this), this._boundXhrOnTimeout = this._xhrOnTimeout.bind(this), this._boundXhrOnAbort = this._xhrOnAbort.bind(this), this._boundXhrOnLoad = this._xhrOnLoad.bind(this), this.onStart = new o.default, this.onProgress = new o.default, this.onComplete = new o.default, this.onAfterMiddleware = new o.default } return t.setExtensionLoadType = function(e, n) { c(t._loadTypeMap, e, n) }, t.setExtensionXhrType = function(e, n) { c(t._xhrTypeMap, e, n) }, t.prototype.complete = function() { this._clearEvents(), this._finish() }, t.prototype.abort = function(e) { if (!this.error) { if (this.error = new Error(e), this._clearEvents(), this.xhr) this.xhr.abort(); else if (this.xdr) this.xdr.abort(); else if (this.data) if (this.data.src) this.data.src = t.EMPTY_GIF; else for (; this.data.firstChild;) this.data.removeChild(this.data.firstChild); this._finish() } }, t.prototype.load = function(e) { var n = this; if (!this.isLoading) if (this.isComplete) e && setTimeout(function() { return e(n) }, 1); else switch (e && this.onComplete.once(e), this._setFlag(t.STATUS_FLAGS.LOADING, !0), this.onStart.dispatch(this), !1 !== this.crossOrigin && "string" == typeof this.crossOrigin || (this.crossOrigin = this._determineCrossOrigin(this.url)), this.loadType) { case t.LOAD_TYPE.IMAGE: this.type = t.TYPE.IMAGE, this._loadElement("image"); break; case t.LOAD_TYPE.AUDIO: this.type = t.TYPE.AUDIO, this._loadSourceElement("audio"); break; case t.LOAD_TYPE.VIDEO: this.type = t.TYPE.VIDEO, this._loadSourceElement("video"); break; case t.LOAD_TYPE.XHR: default: a && this.crossOrigin ? this._loadXdr() : this._loadXhr() } }, t.prototype._hasFlag = function(t) { return 0 != (this._flags & t) }, t.prototype._setFlag = function(t, e) { this._flags = e ? this._flags | t : this._flags & ~t }, t.prototype._clearEvents = function() { clearTimeout(this._elementTimer), this.data && this.data.removeEventListener && (this.data.removeEventListener("error", this._boundOnError, !1), this.data.removeEventListener("load", this._boundComplete, !1), this.data.removeEventListener("progress", this._boundOnProgress, !1), this.data.removeEventListener("canplaythrough", this._boundComplete, !1)), this.xhr && (this.xhr.removeEventListener ? (this.xhr.removeEventListener("error", this._boundXhrOnError, !1), this.xhr.removeEventListener("timeout", this._boundXhrOnTimeout, !1), this.xhr.removeEventListener("abort", this._boundXhrOnAbort, !1), this.xhr.removeEventListener("progress", this._boundOnProgress, !1), this.xhr.removeEventListener("load", this._boundXhrOnLoad, !1)) : (this.xhr.onerror = null, this.xhr.ontimeout = null, this.xhr.onprogress = null, this.xhr.onload = null)) }, t.prototype._finish = function() { if (this.isComplete) throw new Error("Complete called again for an already completed resource."); this._setFlag(t.STATUS_FLAGS.COMPLETE, !0), this._setFlag(t.STATUS_FLAGS.LOADING, !1), this.onComplete.dispatch(this) }, t.prototype._loadElement = function(t) { this.metadata.loadElement ? this.data = this.metadata.loadElement : "image" === t && void 0 !== window.Image ? this.data = new Image : this.data = document.createElement(t), this.crossOrigin && (this.data.crossOrigin = this.crossOrigin), this.metadata.skipSource || (this.data.src = this.url), this.data.addEventListener("error", this._boundOnError, !1), this.data.addEventListener("load", this._boundComplete, !1), this.data.addEventListener("progress", this._boundOnProgress, !1), this.timeout && (this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout)) }, t.prototype._loadSourceElement = function(t) { if (this.metadata.loadElement ? this.data = this.metadata.loadElement : "audio" === t && void 0 !== window.Audio ? this.data = new Audio : this.data = document.createElement(t), null !== this.data) { if (this.crossOrigin && (this.data.crossOrigin = this.crossOrigin), !this.metadata.skipSource) if (navigator.isCocoonJS) this.data.src = Array.isArray(this.url) ? this.url[0] : this.url; else if (Array.isArray(this.url)) for (var e = this.metadata.mimeType, n = 0; n < this.url.length; ++n) this.data.appendChild(this._createSource(t, this.url[n], Array.isArray(e) ? e[n] : e)); else { var i = this.metadata.mimeType; this.data.appendChild(this._createSource(t, this.url, Array.isArray(i) ? i[0] : i)) } this.data.addEventListener("error", this._boundOnError, !1), this.data.addEventListener("load", this._boundComplete, !1), this.data.addEventListener("progress", this._boundOnProgress, !1), this.data.addEventListener("canplaythrough", this._boundComplete, !1), this.data.load(), this.timeout && (this._elementTimer = setTimeout(this._boundOnTimeout, this.timeout)) } else this.abort("Unsupported element: " + t) }, t.prototype._loadXhr = function() { "string" != typeof this.xhrType && (this.xhrType = this._determineXhrType()); var e = this.xhr = new XMLHttpRequest; e.open("GET", this.url, !0), e.timeout = this.timeout, this.xhrType === t.XHR_RESPONSE_TYPE.JSON || this.xhrType === t.XHR_RESPONSE_TYPE.DOCUMENT ? e.responseType = t.XHR_RESPONSE_TYPE.TEXT : e.responseType = this.xhrType, e.addEventListener("error", this._boundXhrOnError, !1), e.addEventListener("timeout", this._boundXhrOnTimeout, !1), e.addEventListener("abort", this._boundXhrOnAbort, !1), e.addEventListener("progress", this._boundOnProgress, !1), e.addEventListener("load", this._boundXhrOnLoad, !1), e.send() }, t.prototype._loadXdr = function() { "string" != typeof this.xhrType && (this.xhrType = this._determineXhrType()); var t = this.xhr = new XDomainRequest; t.timeout = this.timeout || 5e3, t.onerror = this._boundXhrOnError, t.ontimeout = this._boundXhrOnTimeout, t.onprogress = this._boundOnProgress, t.onload = this._boundXhrOnLoad, t.open("GET", this.url, !0), setTimeout(function() { return t.send() }, 1) }, t.prototype._createSource = function(t, e, n) { n || (n = t + "/" + this._getExtension(e)); var i = document.createElement("source"); return i.src = e, i.type = n, i }, t.prototype._onError = function(t) { this.abort("Failed to load element using: " + t.target.nodeName) }, t.prototype._onProgress = function(t) { t && t.lengthComputable && this.onProgress.dispatch(this, t.loaded / t.total) }, t.prototype._onTimeout = function() { this.abort("Load timed out.") }, t.prototype._xhrOnError = function() { var t = this.xhr; this.abort(f(t) + " Request failed. Status: " + t.status + ', text: "' + t.statusText + '"') }, t.prototype._xhrOnTimeout = function() { var t = this.xhr; this.abort(f(t) + " Request timed out.") }, t.prototype._xhrOnAbort = function() { var t = this.xhr; this.abort(f(t) + " Request was aborted by the user.") }, t.prototype._xhrOnLoad = function() { var e = this.xhr, n = "", i = void 0 === e.status ? 200 : e.status; if ("" !== e.responseType && "text" !== e.responseType && void 0 !== e.responseType || (n = e.responseText), 0 === i && (n.length > 0 || e.responseType === t.XHR_RESPONSE_TYPE.BUFFER) ? i = 200 : 1223 === i && (i = 204), 2 == (i / 100 | 0)) { if (this.xhrType === t.XHR_RESPONSE_TYPE.TEXT) this.data = n, this.type = t.TYPE.TEXT; else if (this.xhrType === t.XHR_RESPONSE_TYPE.JSON) try { this.data = JSON.parse(n), this.type = t.TYPE.JSON } catch (t) { return void this.abort("Error trying to parse loaded json: " + t) } else if (this.xhrType === t.XHR_RESPONSE_TYPE.DOCUMENT) try { if (window.DOMParser) { var r = new DOMParser; this.data = r.parseFromString(n, "text/xml") } else { var o = document.createElement("div"); o.innerHTML = n, this.data = o } this.type = t.TYPE.XML } catch (t) { return void this.abort("Error trying to parse loaded xml: " + t) } else this.data = e.response || n; this.complete() } else this.abort("[" + e.status + "] " + e.statusText + ": " + e.responseURL) }, t.prototype._determineCrossOrigin = function(t, e) { if (0 === t.indexOf("data:")) return ""; if (window.origin !== window.location.origin) return "anonymous"; e = e || window.location, u || (u = document.createElement("a")), u.href = t; var n = !(t = (0, r.default)(u.href, { strictMode: !0 })).port && "" === e.port || t.port === e.port, i = t.protocol ? t.protocol + ":" : ""; return t.host === e.hostname && n && i === e.protocol ? "" : "anonymous" }, t.prototype._determineXhrType = function() { return t._xhrTypeMap[this.extension] || t.XHR_RESPONSE_TYPE.TEXT }, t.prototype._determineLoadType = function() { return t._loadTypeMap[this.extension] || t.LOAD_TYPE.XHR }, t.prototype._getExtension = function() { var t = this.url, e = ""; if (this.isDataUrl) { var n = t.indexOf("/"); e = t.substring(n + 1, t.indexOf(";", n)) } else { var i = t.indexOf("?"), r = t.indexOf("#"), o = Math.min(i > -1 ? i : t.length, r > -1 ? r : t.length); e = (t = t.substring(0, o)).substring(t.lastIndexOf(".") + 1) } return e.toLowerCase() }, t.prototype._getMimeFromXhrType = function(e) { switch (e) { case t.XHR_RESPONSE_TYPE.BUFFER: return "application/octet-binary"; case t.XHR_RESPONSE_TYPE.BLOB: return "application/blob"; case t.XHR_RESPONSE_TYPE.DOCUMENT: return "application/xml"; case t.XHR_RESPONSE_TYPE.JSON: return "application/json"; case t.XHR_RESPONSE_TYPE.DEFAULT: case t.XHR_RESPONSE_TYPE.TEXT: default: return "text/plain" } }, i(t, [{ key: "isDataUrl", get: function() { return this._hasFlag(t.STATUS_FLAGS.DATA_URL) } }, { key: "isComplete", get: function() { return this._hasFlag(t.STATUS_FLAGS.COMPLETE) } }, { key: "isLoading", get: function() { return this._hasFlag(t.STATUS_FLAGS.LOADING) } }]), t }(); function c(t, e, n) { e && 0 === e.indexOf(".") && (e = e.substring(1)), e && (t[e] = n) } function f(t) { return t.toString().replace("object ", "") } h.STATUS_FLAGS = { NONE: 0, DATA_URL: 1, COMPLETE: 2, LOADING: 4 }, h.TYPE = { UNKNOWN: 0, JSON: 1, XML: 2, IMAGE: 3, AUDIO: 4, VIDEO: 5, TEXT: 6 }, h.LOAD_TYPE = { XHR: 1, IMAGE: 2, AUDIO: 3, VIDEO: 4 }, h.XHR_RESPONSE_TYPE = { DEFAULT: "text", BUFFER: "arraybuffer", BLOB: "blob", DOCUMENT: "document", JSON: "json", TEXT: "text" }, h._loadTypeMap = { gif: h.LOAD_TYPE.IMAGE, png: h.LOAD_TYPE.IMAGE, bmp: h.LOAD_TYPE.IMAGE, jpg: h.LOAD_TYPE.IMAGE, jpeg: h.LOAD_TYPE.IMAGE, tif: h.LOAD_TYPE.IMAGE, tiff: h.LOAD_TYPE.IMAGE, webp: h.LOAD_TYPE.IMAGE, tga: h.LOAD_TYPE.IMAGE, svg: h.LOAD_TYPE.IMAGE, "svg+xml": h.LOAD_TYPE.IMAGE, mp3: h.LOAD_TYPE.AUDIO, ogg: h.LOAD_TYPE.AUDIO, wav: h.LOAD_TYPE.AUDIO, mp4: h.LOAD_TYPE.VIDEO, webm: h.LOAD_TYPE.VIDEO }, h._xhrTypeMap = { xhtml: h.XHR_RESPONSE_TYPE.DOCUMENT, html: h.XHR_RESPONSE_TYPE.DOCUMENT, htm: h.XHR_RESPONSE_TYPE.DOCUMENT, xml: h.XHR_RESPONSE_TYPE.DOCUMENT, tmx: h.XHR_RESPONSE_TYPE.DOCUMENT, svg: h.XHR_RESPONSE_TYPE.DOCUMENT, tsx: h.XHR_RESPONSE_TYPE.DOCUMENT, gif: h.XHR_RESPONSE_TYPE.BLOB, png: h.XHR_RESPONSE_TYPE.BLOB, bmp: h.XHR_RESPONSE_TYPE.BLOB, jpg: h.XHR_RESPONSE_TYPE.BLOB, jpeg: h.XHR_RESPONSE_TYPE.BLOB, tif: h.XHR_RESPONSE_TYPE.BLOB, tiff: h.XHR_RESPONSE_TYPE.BLOB, webp: h.XHR_RESPONSE_TYPE.BLOB, tga: h.XHR_RESPONSE_TYPE.BLOB, json: h.XHR_RESPONSE_TYPE.JSON, text: h.XHR_RESPONSE_TYPE.TEXT, txt: h.XHR_RESPONSE_TYPE.TEXT, ttf: h.XHR_RESPONSE_TYPE.BUFFER, otf: h.XHR_RESPONSE_TYPE.BUFFER }, h.EMPTY_GIF = "data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==", t.exports.default = h }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function(t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }(n(5)), r = function(t) { return t && t.__esModule ? t : { default: t } }(n(100)), o = i.ticker.shared; i.settings.UPLOADS_PER_FRAME = 4; var s = function() { function t(e) { var n = this; ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.limiter = new r.default(i.settings.UPLOADS_PER_FRAME), this.renderer = e, this.uploadHookHelper = null, this.queue = [], this.addHooks = [], this.uploadHooks = [], this.completes = [], this.ticking = !1, this.delayedTick = function() { n.queue && n.prepareItems() }, this.registerFindHook(f), this.registerFindHook(p), this.registerFindHook(a), this.registerFindHook(u), this.registerFindHook(l), this.registerUploadHook(h), this.registerUploadHook(c) } return t.prototype.upload = function(t, e) { "function" == typeof t && (e = t, t = null), t && this.add(t), this.queue.length ? (e && this.completes.push(e), this.ticking || (this.ticking = !0, o.addOnce(this.tick, this, i.UPDATE_PRIORITY.UTILITY))) : e && e() }, t.prototype.tick = function() { setTimeout(this.delayedTick, 0) }, t.prototype.prepareItems = function() { for (this.limiter.beginFrame(); this.queue.length && this.limiter.allowedToUpload();) { var t = this.queue[0], e = !1; if (t && !t._destroyed) for (var n = 0, r = this.uploadHooks.length; n < r; n++) if (this.uploadHooks[n](this.uploadHookHelper, t)) { this.queue.shift(), e = !0; break } e || this.queue.shift() } if (this.queue.length) o.addOnce(this.tick, this, i.UPDATE_PRIORITY.UTILITY); else { this.ticking = !1; var s = this.completes.slice(0); this.completes.length = 0; for (var a = 0, u = s.length; a < u; a++) s[a]() } }, t.prototype.registerFindHook = function(t) { return t && this.addHooks.push(t), this }, t.prototype.registerUploadHook = function(t) { return t && this.uploadHooks.push(t), this }, t.prototype.add = function(t) { for (var e = 0, n = this.addHooks.length; e < n && !this.addHooks[e](t, this.queue); e++); if (t instanceof i.Container) for (var r = t.children.length - 1; r >= 0; r--) this.add(t.children[r]); return this }, t.prototype.destroy = function() { this.ticking && o.remove(this.tick, this), this.ticking = !1, this.addHooks = null, this.uploadHooks = null, this.renderer = null, this.completes = null, this.queue = null, this.limiter = null, this.uploadHookHelper = null }, t }(); function a(t, e) { var n = !1; if (t && t._textures && t._textures.length) for (var r = 0; r < t._textures.length; r++) if (t._textures[r] instanceof i.Texture) { var o = t._textures[r].baseTexture; - 1 === e.indexOf(o) && (e.push(o), n = !0) } return n } function u(t, e) { return t instanceof i.BaseTexture && (-1 === e.indexOf(t) && e.push(t), !0) } function l(t, e) { if (t._texture && t._texture instanceof i.Texture) { var n = t._texture.baseTexture; return -1 === e.indexOf(n) && e.push(n), !0 } return !1 } function h(t, e) { return e instanceof i.Text && (e.updateText(!0), !0) } function c(t, e) { if (e instanceof i.TextStyle) { var n = e.toFontString(); return i.TextMetrics.measureFont(n), !0 } return !1 } function f(t, e) { if (t instanceof i.Text) { -1 === e.indexOf(t.style) && e.push(t.style), -1 === e.indexOf(t) && e.push(t); var n = t._texture.baseTexture; return -1 === e.indexOf(n) && e.push(n), !0 } return !1 } function p(t, e) { return t instanceof i.TextStyle && (-1 === e.indexOf(t) && e.push(t), !0) } e.default = s }, function(t, e, n) { "use strict"; var i = Object.getOwnPropertySymbols, r = Object.prototype.hasOwnProperty, o = Object.prototype.propertyIsEnumerable; t.exports = function() { try { if (!Object.assign) return !1; var t = new String("abc"); if (t[5] = "de", "5" === Object.getOwnPropertyNames(t)[0]) return !1; for (var e = {}, n = 0; n < 10; n++) e["_" + String.fromCharCode(n)] = n; if ("0123456789" !== Object.getOwnPropertyNames(e).map(function(t) { return e[t] }).join("")) return !1; var i = {}; return "abcdefghijklmnopqrst".split("").forEach(function(t) { i[t] = t }), "abcdefghijklmnopqrst" === Object.keys(Object.assign({}, i)).join("") } catch (t) { return !1 } }() ? Object.assign : function(t, e) { for (var n, s, a = function(t) { if (null == t) throw new TypeError("Object.assign cannot be called with null or undefined"); return Object(t) }(t), u = 1; u < arguments.length; u++) { for (var l in n = Object(arguments[u])) r.call(n, l) && (a[l] = n[l]); if (i) { s = i(n); for (var h = 0; h < s.length; h++) o.call(n, s[h]) && (a[s[h]] = n[s[h]]) } } return a } }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = function() { function t(e, n) { var i = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : 0, r = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : 0; ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this._x = i, this._y = r, this.cb = e, this.scope = n } return t.prototype.clone = function() { var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : null, n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : null; return new t(e || this.cb, n || this.scope, this._x, this._y) }, t.prototype.set = function(t, e) { var n = t || 0, i = e || (0 !== e ? n : 0); this._x === n && this._y === i || (this._x = n, this._y = i, this.cb.call(this.scope)) }, t.prototype.copy = function(t) { this._x === t.x && this._y === t.y || (this._x = t.x, this._y = t.y, this.cb.call(this.scope)) }, t.prototype.equals = function(t) { return t.x === this._x && t.y === this._y }, i(t, [{ key: "x", get: function() { return this._x }, set: function(t) { this._x !== t && (this._x = t, this.cb.call(this.scope)) } }, { key: "y", get: function() { return this._y }, set: function(t) { this._y !== t && (this._y = t, this.cb.call(this.scope)) } }]), t }(); e.default = r }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function(t) { return t && t.__esModule ? t : { default: t } }(n(35)), r = [1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1, 0, 1], o = [0, 1, 1, 1, 0, -1, -1, -1, 0, 1, 1, 1, 0, -1, -1, -1], s = [0, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, -1], a = [1, 1, 0, -1, -1, -1, 0, 1, -1, -1, 0, 1, 1, 1, 0, -1], u = [], l = []; function h(t) { return t < 0 ? -1 : t > 0 ? 1 : 0 }! function() { for (var t = 0; t < 16; t++) { var e = []; l.push(e); for (var n = 0; n < 16; n++) for (var c = h(r[t] * r[n] + s[t] * o[n]), f = h(o[t] * r[n] + a[t] * o[n]), p = h(r[t] * s[n] + s[t] * a[n]), d = h(o[t] * s[n] + a[t] * a[n]), y = 0; y < 16; y++) if (r[y] === c && o[y] === f && s[y] === p && a[y] === d) { e.push(y); break } } for (var g = 0; g < 16; g++) { var m = new i.default; m.set(r[g], o[g], s[g], a[g], 0, 0), u.push(m) } }(); var c = { E: 0, SE: 1, S: 2, SW: 3, W: 4, NW: 5, N: 6, NE: 7, MIRROR_VERTICAL: 8, MIRROR_HORIZONTAL: 12, uX: function(t) { return r[t] }, uY: function(t) { return o[t] }, vX: function(t) { return s[t] }, vY: function(t) { return a[t] }, inv: function(t) { return 8 & t ? 15 & t : 7 & -t }, add: function(t, e) { return l[t][e] }, sub: function(t, e) { return l[t][c.inv(e)] }, rotate180: function(t) { return 4 ^ t }, isVertical: function(t) { return 2 == (3 & t) }, byDirection: function(t, e) { return 2 * Math.abs(t) <= Math.abs(e) ? e >= 0 ? c.S : c.N : 2 * Math.abs(e) <= Math.abs(t) ? t > 0 ? c.E : c.W : e > 0 ? t > 0 ? c.SE : c.SW : t > 0 ? c.NE : c.NW }, matrixAppendRotationInv: function(t, e) { var n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : 0, i = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : 0, r = u[c.inv(e)]; r.tx = n, r.ty = i, t.append(r) } }; e.default = c }, function(t, e) { t.exports = function(t, e, n) { var i; if (n) { var r = n.tempAttribState, o = n.attribState; for (i = 0; i < r.length; i++) r[i] = !1; for (i = 0; i < e.length; i++) r[e[i].attribute.location] = !0; for (i = 0; i < o.length; i++) o[i] !== r[i] && (o[i] = r[i], n.attribState[i] ? t.enableVertexAttribArray(i) : t.disableVertexAttribArray(i)) } else for (i = 0; i < e.length; i++) { var s = e[i]; t.enableVertexAttribArray(s.attribute.location) } } }, function(t, e) { var n = function(t, e, n, i, r) { this.gl = t, this.texture = t.createTexture(), this.mipmap = !1, this.premultiplyAlpha = !1, this.width = e || -1, this.height = n || -1, this.format = i || t.RGBA, this.type = r || t.UNSIGNED_BYTE }; n.prototype.upload = function(t) { this.bind(); var e = this.gl; e.pixelStorei(e.UNPACK_PREMULTIPLY_ALPHA_WEBGL, this.premultiplyAlpha); var n = t.videoWidth || t.width, i = t.videoHeight || t.height; i !== this.height || n !== this.width ? e.texImage2D(e.TEXTURE_2D, 0, this.format, this.format, this.type, t) : e.texSubImage2D(e.TEXTURE_2D, 0, 0, 0, this.format, this.type, t), this.width = n, this.height = i }; var i = !1; n.prototype.uploadData = function(t, e, n) { this.bind(); var r = this.gl; if (t instanceof Float32Array) { if (!i) { if (!r.getExtension("OES_texture_float")) throw new Error("floating point textures not available"); i = !0 } this.type = r.FLOAT } else this.type = this.type || r.UNSIGNED_BYTE; r.pixelStorei(r.UNPACK_PREMULTIPLY_ALPHA_WEBGL, this.premultiplyAlpha), e !== this.width || n !== this.height ? r.texImage2D(r.TEXTURE_2D, 0, this.format, e, n, 0, this.format, this.type, t || null) : r.texSubImage2D(r.TEXTURE_2D, 0, 0, 0, e, n, this.format, this.type, t || null), this.width = e, this.height = n }, n.prototype.bind = function(t) { var e = this.gl; void 0 !== t && e.activeTexture(e.TEXTURE0 + t), e.bindTexture(e.TEXTURE_2D, this.texture) }, n.prototype.unbind = function() { var t = this.gl; t.bindTexture(t.TEXTURE_2D, null) }, n.prototype.minFilter = function(t) { var e = this.gl; this.bind(), this.mipmap ? e.texParameteri(e.TEXTURE_2D, e.TEXTURE_MIN_FILTER, t ? e.LINEAR_MIPMAP_LINEAR : e.NEAREST_MIPMAP_NEAREST) : e.texParameteri(e.TEXTURE_2D, e.TEXTURE_MIN_FILTER, t ? e.LINEAR : e.NEAREST) }, n.prototype.magFilter = function(t) { var e = this.gl; this.bind(), e.texParameteri(e.TEXTURE_2D, e.TEXTURE_MAG_FILTER, t ? e.LINEAR : e.NEAREST) }, n.prototype.enableMipmap = function() { var t = this.gl; this.bind(), this.mipmap = !0, t.generateMipmap(t.TEXTURE_2D) }, n.prototype.enableLinearScaling = function() { this.minFilter(!0), this.magFilter(!0) }, n.prototype.enableNearestScaling = function() { this.minFilter(!1), this.magFilter(!1) }, n.prototype.enableWrapClamp = function() { var t = this.gl; this.bind(), t.texParameteri(t.TEXTURE_2D, t.TEXTURE_WRAP_S, t.CLAMP_TO_EDGE), t.texParameteri(t.TEXTURE_2D, t.TEXTURE_WRAP_T, t.CLAMP_TO_EDGE) }, n.prototype.enableWrapRepeat = function() { var t = this.gl; this.bind(), t.texParameteri(t.TEXTURE_2D, t.TEXTURE_WRAP_S, t.REPEAT), t.texParameteri(t.TEXTURE_2D, t.TEXTURE_WRAP_T, t.REPEAT) }, n.prototype.enableWrapMirrorRepeat = function() { var t = this.gl; this.bind(), t.texParameteri(t.TEXTURE_2D, t.TEXTURE_WRAP_S, t.MIRRORED_REPEAT), t.texParameteri(t.TEXTURE_2D, t.TEXTURE_WRAP_T, t.MIRRORED_REPEAT) }, n.prototype.destroy = function() { this.gl.deleteTexture(this.texture) }, n.fromSource = function(t, e, i) { var r = new n(t); return r.premultiplyAlpha = i || !1, r.upload(e), r }, n.fromData = function(t, e, i, r) { var o = new n(t); return o.uploadData(e, i, r), o }, t.exports = n }, function(t, e) { var n = function(t, e, n) { var i = t.createShader(e); return t.shaderSource(i, n), t.compileShader(i), t.getShaderParameter(i, t.COMPILE_STATUS) ? i : (console.log(t.getShaderInfoLog(i)), null) }; t.exports = function(t, e, i, r) { var o = n(t, t.VERTEX_SHADER, e), s = n(t, t.FRAGMENT_SHADER, i), a = t.createProgram(); if (t.attachShader(a, o), t.attachShader(a, s), r) for (var u in r) t.bindAttribLocation(a, r[u], u); return t.linkProgram(a), t.getProgramParameter(a, t.LINK_STATUS) || (console.error("Pixi.js Error: Could not initialize shader."), console.error("gl.VALIDATE_STATUS", t.getProgramParameter(a, t.VALIDATE_STATUS)), console.error("gl.getError()", t.getError()), "" !== t.getProgramInfoLog(a) && console.warn("Pixi.js Warning: gl.getProgramInfoLog()", t.getProgramInfoLog(a)), t.deleteProgram(a), a = null), t.deleteShader(o), t.deleteShader(s), a } }, function(t, e, n) { var i = n(37), r = n(56), o = function(t, e, n, i) { gl.vertexAttribPointer(this.location, this.size, t || gl.FLOAT, e || !1, n || 0, i || 0) }; t.exports = function(t, e) { for (var n = {}, s = t.getProgramParameter(e, t.ACTIVE_ATTRIBUTES), a = 0; a < s; a++) { var u = t.getActiveAttrib(e, a), l = i(t, u.type); n[u.name] = { type: l, size: r(l), location: t.getAttribLocation(e, u.name), pointer: o } } return n } }, function(t, e) { var n = { float: 1, vec2: 2, vec3: 3, vec4: 4, int: 1, ivec2: 2, ivec3: 3, ivec4: 4, bool: 1, bvec2: 2, bvec3: 3, bvec4: 4, mat2: 4, mat3: 9, mat4: 16, sampler2D: 1 }; t.exports = function(t) { return n[t] } }, function(t, e, n) { var i = n(37), r = n(58); t.exports = function(t, e) { for (var n = {}, o = t.getProgramParameter(e, t.ACTIVE_UNIFORMS), s = 0; s < o; s++) { var a = t.getActiveUniform(e, s), u = a.name.replace(/\[.*?\]/, ""), l = i(t, a.type); n[u] = { type: l, size: a.size, location: t.getUniformLocation(e, u), value: r(l, a.size) } } return n } }, function(t, e) { var n = function(t) { for (var e = new Array(t), n = 0; n < e.length; n++) e[n] = !1; return e }; t.exports = function(t, e) { switch (t) { case "float": return 0; case "vec2": return new Float32Array(2 * e); case "vec3": return new Float32Array(3 * e); case "vec4": return new Float32Array(4 * e); case "int": case "sampler2D": return 0; case "ivec2": return new Int32Array(2 * e); case "ivec3": return new Int32Array(3 * e); case "ivec4": return new Int32Array(4 * e); case "bool": return !1; case "bvec2": return n(2 * e); case "bvec3": return n(3 * e); case "bvec4": return n(4 * e); case "mat2": return new Float32Array([1, 0, 0, 1]); case "mat3": return new Float32Array([1, 0, 0, 0, 1, 0, 0, 0, 1]); case "mat4": return new Float32Array([1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]) } } }, function(t, e) { t.exports = function(t, e) { return "precision" !== t.substring(0, 9) ? "precision " + e + " float;\n" + t : t } }, function(t, e) { var n = function(t) { return function() { return this.data[t].value } }, i = { float: function(t, e, n) { t.uniform1f(e, n) }, vec2: function(t, e, n) { t.uniform2f(e, n[0], n[1]) }, vec3: function(t, e, n) { t.uniform3f(e, n[0], n[1], n[2]) }, vec4: function(t, e, n) { t.uniform4f(e, n[0], n[1], n[2], n[3]) }, int: function(t, e, n) { t.uniform1i(e, n) }, ivec2: function(t, e, n) { t.uniform2i(e, n[0], n[1]) }, ivec3: function(t, e, n) { t.uniform3i(e, n[0], n[1], n[2]) }, ivec4: function(t, e, n) { t.uniform4i(e, n[0], n[1], n[2], n[3]) }, bool: function(t, e, n) { t.uniform1i(e, n) }, bvec2: function(t, e, n) { t.uniform2i(e, n[0], n[1]) }, bvec3: function(t, e, n) { t.uniform3i(e, n[0], n[1], n[2]) }, bvec4: function(t, e, n) { t.uniform4i(e, n[0], n[1], n[2], n[3]) }, mat2: function(t, e, n) { t.uniformMatrix2fv(e, !1, n) }, mat3: function(t, e, n) { t.uniformMatrix3fv(e, !1, n) }, mat4: function(t, e, n) { t.uniformMatrix4fv(e, !1, n) }, sampler2D: function(t, e, n) { t.uniform1i(e, n) } }, r = { float: function(t, e, n) { t.uniform1fv(e, n) }, vec2: function(t, e, n) { t.uniform2fv(e, n) }, vec3: function(t, e, n) { t.uniform3fv(e, n) }, vec4: function(t, e, n) { t.uniform4fv(e, n) }, int: function(t, e, n) { t.uniform1iv(e, n) }, ivec2: function(t, e, n) { t.uniform2iv(e, n) }, ivec3: function(t, e, n) { t.uniform3iv(e, n) }, ivec4: function(t, e, n) { t.uniform4iv(e, n) }, bool: function(t, e, n) { t.uniform1iv(e, n) }, bvec2: function(t, e, n) { t.uniform2iv(e, n) }, bvec3: function(t, e, n) { t.uniform3iv(e, n) }, bvec4: function(t, e, n) { t.uniform4iv(e, n) }, sampler2D: function(t, e, n) { t.uniform1iv(e, n) } }; function o(t, e) { return function(n) { this.data[t].value = n; var o = this.data[t].location; 1 === e.size ? i[e.type](this.gl, o, n) : r[e.type](this.gl, o, n) } } function s(t, e) { for (var n = e, i = 0; i < t.length - 1; i++) { var r = n[t[i]] || { data: {} }; n[t[i]] = r, n = r } return n } t.exports = function(t, e) { var i = { data: {} }; i.gl = t; for (var r = Object.keys(e), a = 0; a < r.length; a++) { var u = r[a], l = u.split("."), h = l[l.length - 1], c = s(l, i), f = e[u]; c.data[h] = f, c.gl = t, Object.defineProperty(c, h, { get: n(h), set: o(h, f) }) } return i } }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = c(n(18)), o = n(4), s = c(n(10)), a = c(n(62)), u = c(n(63)), l = c(n(38)), h = n(11); function c(t) { return t && t.__esModule ? t : { default: t } } var f = function(t) { function e() { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var n = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this)), i = s.default.TRANSFORM_MODE === o.TRANSFORM_MODE.STATIC ? a.default : u.default; return n.tempDisplayObjectParent = null, n.transform = new i, n.alpha = 1, n.visible = !0, n.renderable = !0, n.parent = null, n.worldAlpha = 1, n.filterArea = null, n._filters = null, n._enabledFilters = null, n._bounds = new l.default, n._boundsID = 0, n._lastBoundsID = -1, n._boundsRect = null, n._localBoundsRect = null, n._mask = null, n._destroyed = !1, n } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.updateTransform = function() { this.transform.updateTransform(this.parent.transform), this.worldAlpha = this.alpha * this.parent.worldAlpha, this._bounds.updateID++ }, e.prototype._recursivePostUpdateTransform = function() { this.parent ? (this.parent._recursivePostUpdateTransform(), this.transform.updateTransform(this.parent.transform)) : this.transform.updateTransform(this._tempDisplayObjectParent.transform) }, e.prototype.getBounds = function(t, e) { return t || (this.parent ? (this._recursivePostUpdateTransform(), this.updateTransform()) : (this.parent = this._tempDisplayObjectParent, this.updateTransform(), this.parent = null)), this._boundsID !== this._lastBoundsID && this.calculateBounds(), e || (this._boundsRect || (this._boundsRect = new h.Rectangle), e = this._boundsRect), this._bounds.getRectangle(e) }, e.prototype.getLocalBounds = function(t) { var e = this.transform, n = this.parent; this.parent = null, this.transform = this._tempDisplayObjectParent.transform, t || (this._localBoundsRect || (this._localBoundsRect = new h.Rectangle), t = this._localBoundsRect); var i = this.getBounds(!1, t); return this.parent = n, this.transform = e, i }, e.prototype.toGlobal = function(t, e) { return arguments.length > 2 && void 0 !== arguments[2] && arguments[2] || (this._recursivePostUpdateTransform(), this.parent ? this.displayObjectUpdateTransform() : (this.parent = this._tempDisplayObjectParent, this.displayObjectUpdateTransform(), this.parent = null)), this.worldTransform.apply(t, e) }, e.prototype.toLocal = function(t, e, n, i) { return e && (t = e.toGlobal(t, n, i)), i || (this._recursivePostUpdateTransform(), this.parent ? this.displayObjectUpdateTransform() : (this.parent = this._tempDisplayObjectParent, this.displayObjectUpdateTransform(), this.parent = null)), this.worldTransform.applyInverse(t, n) }, e.prototype.renderWebGL = function(t) {}, e.prototype.renderCanvas = function(t) {}, e.prototype.setParent = function(t) { if (!t || !t.addChild) throw new Error("setParent: Argument must be a Container"); return t.addChild(this), t }, e.prototype.setTransform = function() { var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 0, e = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : 1, i = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : 1, r = arguments.length > 4 && void 0 !== arguments[4] ? arguments[4] : 0, o = arguments.length > 5 && void 0 !== arguments[5] ? arguments[5] : 0, s = arguments.length > 6 && void 0 !== arguments[6] ? arguments[6] : 0, a = arguments.length > 7 && void 0 !== arguments[7] ? arguments[7] : 0, u = arguments.length > 8 && void 0 !== arguments[8] ? arguments[8] : 0; return this.position.x = t, this.position.y = e, this.scale.x = n || 1, this.scale.y = i || 1, this.rotation = r, this.skew.x = o, this.skew.y = s, this.pivot.x = a, this.pivot.y = u, this }, e.prototype.destroy = function() { this.removeAllListeners(), this.parent && this.parent.removeChild(this), this.transform = null, this.parent = null, this._bounds = null, this._currentBounds = null, this._mask = null, this.filterArea = null, this.interactive = !1, this.interactiveChildren = !1, this._destroyed = !0 }, i(e, [{ key: "_tempDisplayObjectParent", get: function() { return null === this.tempDisplayObjectParent && (this.tempDisplayObjectParent = new e), this.tempDisplayObjectParent } }, { key: "x", get: function() { return this.position.x }, set: function(t) { this.transform.position.x = t } }, { key: "y", get: function() { return this.position.y }, set: function(t) { this.transform.position.y = t } }, { key: "worldTransform", get: function() { return this.transform.worldTransform } }, { key: "localTransform", get: function() { return this.transform.localTransform } }, { key: "position", get: function() { return this.transform.position }, set: function(t) { this.transform.position.copy(t) } }, { key: "scale", get: function() { return this.transform.scale }, set: function(t) { this.transform.scale.copy(t) } }, { key: "pivot", get: function() { return this.transform.pivot }, set: function(t) { this.transform.pivot.copy(t) } }, { key: "skew", get: function() { return this.transform.skew }, set: function(t) { this.transform.skew.copy(t) } }, { key: "rotation", get: function() { return this.transform.rotation }, set: function(t) { this.transform.rotation = t } }, { key: "worldVisible", get: function() { var t = this; do { if (!t.visible) return !1; t = t.parent } while (t); return !0 } }, { key: "mask", get: function() { return this._mask }, set: function(t) { this._mask && (this._mask.renderable = !0, this._mask.isMask = !1), this._mask = t, this._mask && (this._mask.renderable = !1, this._mask.isMask = !0) } }, { key: "filters", get: function() { return this._filters && this._filters.slice() }, set: function(t) { this._filters = t && t.slice() } }]), e }(r.default); e.default = f, f.prototype.displayObjectUpdateTransform = f.prototype.updateTransform }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = n(11), o = function(t) { function e() { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var n = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this)); return n.position = new r.ObservablePoint(n.onChange, n, 0, 0), n.scale = new r.ObservablePoint(n.onChange, n, 1, 1), n.pivot = new r.ObservablePoint(n.onChange, n, 0, 0), n.skew = new r.ObservablePoint(n.updateSkew, n, 0, 0), n._rotation = 0, n._cx = 1, n._sx = 0, n._cy = 0, n._sy = 1, n._localID = 0, n._currentLocalID = 0, n } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.onChange = function() { this._localID++ }, e.prototype.updateSkew = function() { this._cx = Math.cos(this._rotation + this.skew._y), this._sx = Math.sin(this._rotation + this.skew._y), this._cy = -Math.sin(this._rotation - this.skew._x), this._sy = Math.cos(this._rotation - this.skew._x), this._localID++ }, e.prototype.updateLocalTransform = function() { var t = this.localTransform; this._localID !== this._currentLocalID && (t.a = this._cx * this.scale._x, t.b = this._sx * this.scale._x, t.c = this._cy * this.scale._y, t.d = this._sy * this.scale._y, t.tx = this.position._x - (this.pivot._x * t.a + this.pivot._y * t.c), t.ty = this.position._y - (this.pivot._x * t.b + this.pivot._y * t.d), this._currentLocalID = this._localID, this._parentID = -1) }, e.prototype.updateTransform = function(t) { var e = this.localTransform; if (this._localID !== this._currentLocalID && (e.a = this._cx * this.scale._x, e.b = this._sx * this.scale._x, e.c = this._cy * this.scale._y, e.d = this._sy * this.scale._y, e.tx = this.position._x - (this.pivot._x * e.a + this.pivot._y * e.c), e.ty = this.position._y - (this.pivot._x * e.b + this.pivot._y * e.d), this._currentLocalID = this._localID, this._parentID = -1), this._parentID !== t._worldID) { var n = t.worldTransform, i = this.worldTransform; i.a = e.a * n.a + e.b * n.c, i.b = e.a * n.b + e.b * n.d, i.c = e.c * n.a + e.d * n.c, i.d = e.c * n.b + e.d * n.d, i.tx = e.tx * n.a + e.ty * n.c + n.tx, i.ty = e.tx * n.b + e.ty * n.d + n.ty, this._parentID = t._worldID, this._worldID++ } }, e.prototype.setFromMatrix = function(t) { t.decompose(this), this._localID++ }, i(e, [{ key: "rotation", get: function() { return this._rotation }, set: function(t) { this._rotation !== t && (this._rotation = t, this.updateSkew()) } }]), e }(function(t) { return t && t.__esModule ? t : { default: t } }(n(40)).default); e.default = o }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = n(11), o = function(t) { function e() { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var n = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this)); return n.position = new r.Point(0, 0), n.scale = new r.Point(1, 1), n.skew = new r.ObservablePoint(n.updateSkew, n, 0, 0), n.pivot = new r.Point(0, 0), n._rotation = 0, n._cx = 1, n._sx = 0, n._cy = 0, n._sy = 1, n } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.updateSkew = function() { this._cx = Math.cos(this._rotation + this.skew._y), this._sx = Math.sin(this._rotation + this.skew._y), this._cy = -Math.sin(this._rotation - this.skew._x), this._sy = Math.cos(this._rotation - this.skew._x) }, e.prototype.updateLocalTransform = function() { var t = this.localTransform; t.a = this._cx * this.scale.x, t.b = this._sx * this.scale.x, t.c = this._cy * this.scale.y, t.d = this._sy * this.scale.y, t.tx = this.position.x - (this.pivot.x * t.a + this.pivot.y * t.c), t.ty = this.position.y - (this.pivot.x * t.b + this.pivot.y * t.d) }, e.prototype.updateTransform = function(t) { var e = this.localTransform; e.a = this._cx * this.scale.x, e.b = this._sx * this.scale.x, e.c = this._cy * this.scale.y, e.d = this._sy * this.scale.y, e.tx = this.position.x - (this.pivot.x * e.a + this.pivot.y * e.c), e.ty = this.position.y - (this.pivot.x * e.b + this.pivot.y * e.d); var n = t.worldTransform, i = this.worldTransform; i.a = e.a * n.a + e.b * n.c, i.b = e.a * n.b + e.b * n.d, i.c = e.c * n.a + e.d * n.c, i.d = e.c * n.b + e.d * n.d, i.tx = e.tx * n.a + e.ty * n.c + n.tx, i.ty = e.tx * n.b + e.ty * n.d + n.ty, this._worldID++ }, e.prototype.setFromMatrix = function(t) { t.decompose(this) }, i(e, [{ key: "rotation", get: function() { return this._rotation }, set: function(t) { this._rotation = t, this.updateSkew() } }]), e }(function(t) { return t && t.__esModule ? t : { default: t } }(n(40)).default); e.default = o }, function(t, e, n) { "use strict"; e.__esModule = !0, e.default = function(t) { var e = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : window.location; if (0 === t.indexOf("data:")) return ""; e = e || window.location, r || (r = document.createElement("a")), r.href = t; var n = !(t = i.default.parse(r.href)).port && "" === e.port || t.port === e.port; return t.hostname === e.hostname && n && t.protocol === e.protocol ? "" : "anonymous" }; var i = function(t) { return t && t.__esModule ? t : { default: t } }(n(65)), r = void 0 }, function(t, e, n) { "use strict"; var i = n(128), r = n(130); function o() { this.protocol = null, this.slashes = null, this.auth = null, this.host = null, this.port = null, this.hostname = null, this.hash = null, this.search = null, this.query = null, this.pathname = null, this.path = null, this.href = null } e.parse = _, e.resolve = function(t, e) { return _(t, !1, !0).resolve(e) }, e.resolveObject = function(t, e) { return t ? _(t, !1, !0).resolveObject(e) : e }, e.format = function(t) { return r.isString(t) && (t = _(t)), t instanceof o ? t.format() : o.prototype.format.call(t) }, e.Url = o; var s = /^([a-z0-9.+-]+:)/i, a = /:[0-9]*$/, u = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/, l = ["{", "}", "|", "\\", "^", "`"].concat(["<", ">", '"', "`", " ", "\r", "\n", "\t"]), h = ["'"].concat(l), c = ["%", "/", "?", ";", "#"].concat(h), f = ["/", "?", "#"], p = /^[+a-z0-9A-Z_-]{0,63}$/, d = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, y = { javascript: !0, "javascript:": !0 }, g = { javascript: !0, "javascript:": !0 }, m = { http: !0, https: !0, ftp: !0, gopher: !0, file: !0, "http:": !0, "https:": !0, "ftp:": !0, "gopher:": !0, "file:": !0 }, v = n(131); function _(t, e, n) { if (t && r.isObject(t) && t instanceof o) return t; var i = new o; return i.parse(t, e, n), i } o.prototype.parse = function(t, e, n) { if (!r.isString(t)) throw new TypeError("Parameter 'url' must be a string, not " + typeof t); var o = t.indexOf("?"), a = -1 !== o && o < t.indexOf("#") ? "?" : "#", l = t.split(a); l[0] = l[0].replace(/\\/g, "/"); var _ = t = l.join(a); if (_ = _.trim(), !n && 1 === t.split("#").length) { var b = u.exec(_); if (b) return this.path = _, this.href = _, this.pathname = b[1], b[2] ? (this.search = b[2], this.query = e ? v.parse(this.search.substr(1)) : this.search.substr(1)) : e && (this.search = "", this.query = {}), this } var x = s.exec(_); if (x) { var w = (x = x[0]).toLowerCase(); this.protocol = w, _ = _.substr(x.length) } if (n || x || _.match(/^\/\/[^@\/]+@[^@\/]+/)) { var T = "//" === _.substr(0, 2); !T || x && g[x] || (_ = _.substr(2), this.slashes = !0) } if (!g[x] && (T || x && !m[x])) { for (var S, P, E = -1, O = 0; O < f.length; O++) - 1 !== (k = _.indexOf(f[O])) && (-1 === E || k < E) && (E = k); for (-1 !== (P = -1 === E ? _.lastIndexOf("@") : _.lastIndexOf("@", E)) && (S = _.slice(0, P), _ = _.slice(P + 1), this.auth = decodeURIComponent(S)), E = -1, O = 0; O < c.length; O++) { var k; - 1 !== (k = _.indexOf(c[O])) && (-1 === E || k < E) && (E = k) } - 1 === E && (E = _.length), this.host = _.slice(0, E), _ = _.slice(E), this.parseHost(), this.hostname = this.hostname || ""; var M = "[" === this.hostname[0] && "]" === this.hostname[this.hostname.length - 1]; if (!M) for (var I = this.hostname.split(/\./), A = (O = 0, I.length); O < A; O++) { var C = I[O]; if (C && !C.match(p)) { for (var R = "", D = 0, L = C.length; D < L; D++) C.charCodeAt(D) > 127 ? R += "x" : R += C[D]; if (!R.match(p)) { var j = I.slice(0, O), N = I.slice(O + 1), B = C.match(d); B && (j.push(B[1]), N.unshift(B[2])), N.length && (_ = "/" + N.join(".") + _), this.hostname = j.join("."); break } } } this.hostname.length > 255 ? this.hostname = "" : this.hostname = this.hostname.toLowerCase(), M || (this.hostname = i.toASCII(this.hostname)); var F = this.port ? ":" + this.port : "", X = this.hostname || ""; this.host = X + F, this.href += this.host, M && (this.hostname = this.hostname.substr(1, this.hostname.length - 2), "/" !== _[0] && (_ = "/" + _)) } if (!y[w]) for (O = 0, A = h.length; O < A; O++) { var U = h[O]; if (-1 !== _.indexOf(U)) { var V = encodeURIComponent(U); V === U && (V = escape(U)), _ = _.split(U).join(V) } } var Y = _.indexOf("#"); - 1 !== Y && (this.hash = _.substr(Y), _ = _.slice(0, Y)); var H = _.indexOf("?"); if (-1 !== H ? (this.search = _.substr(H), this.query = _.substr(H + 1), e && (this.query = v.parse(this.query)), _ = _.slice(0, H)) : e && (this.search = "", this.query = {}), _ && (this.pathname = _), m[w] && this.hostname && !this.pathname && (this.pathname = "/"), this.pathname || this.search) { F = this.pathname || ""; var W = this.search || ""; this.path = F + W } return this.href = this.format(), this }, o.prototype.format = function() { var t = this.auth || ""; t && (t = (t = encodeURIComponent(t)).replace(/%3A/i, ":"), t += "@"); var e = this.protocol || "", n = this.pathname || "", i = this.hash || "", o = !1, s = ""; this.host ? o = t + this.host : this.hostname && (o = t + (-1 === this.hostname.indexOf(":") ? this.hostname : "[" + this.hostname + "]"), this.port && (o += ":" + this.port)), this.query && r.isObject(this.query) && Object.keys(this.query).length && (s = v.stringify(this.query)); var a = this.search || s && "?" + s || ""; return e && ":" !== e.substr(-1) && (e += ":"), this.slashes || (!e || m[e]) && !1 !== o ? (o = "//" + (o || ""), n && "/" !== n.charAt(0) && (n = "/" + n)) : o || (o = ""), i && "#" !== i.charAt(0) && (i = "#" + i), a && "?" !== a.charAt(0) && (a = "?" + a), e + o + (n = n.replace(/[?#]/g, function(t) { return encodeURIComponent(t) })) + (a = a.replace("#", "%23")) + i }, o.prototype.resolve = function(t) { return this.resolveObject(_(t, !1, !0)).format() }, o.prototype.resolveObject = function(t) { if (r.isString(t)) { var e = new o; e.parse(t, !1, !0), t = e } for (var n = new o, i = Object.keys(this), s = 0; s < i.length; s++) { var a = i[s]; n[a] = this[a] } if (n.hash = t.hash, "" === t.href) return n.href = n.format(), n; if (t.slashes && !t.protocol) { for (var u = Object.keys(t), l = 0; l < u.length; l++) { var h = u[l]; "protocol" !== h && (n[h] = t[h]) } return m[n.protocol] && n.hostname && !n.pathname && (n.path = n.pathname = "/"), n.href = n.format(), n } if (t.protocol && t.protocol !== n.protocol) { if (!m[t.protocol]) { for (var c = Object.keys(t), f = 0; f < c.length; f++) { var p = c[f]; n[p] = t[p] } return n.href = n.format(), n } if (n.protocol = t.protocol, t.host || g[t.protocol]) n.pathname = t.pathname; else { for (var d = (t.pathname || "").split("/"); d.length && !(t.host = d.shift());); t.host || (t.host = ""), t.hostname || (t.hostname = ""), "" !== d[0] && d.unshift(""), d.length < 2 && d.unshift(""), n.pathname = d.join("/") } if (n.search = t.search, n.query = t.query, n.host = t.host || "", n.auth = t.auth, n.hostname = t.hostname || t.host, n.port = t.port, n.pathname || n.search) { var y = n.pathname || "", v = n.search || ""; n.path = y + v } return n.slashes = n.slashes || t.slashes, n.href = n.format(), n } var _ = n.pathname && "/" === n.pathname.charAt(0), b = t.host || t.pathname && "/" === t.pathname.charAt(0), x = b || _ || n.host && t.pathname, w = x, T = n.pathname && n.pathname.split("/") || [], S = (d = t.pathname && t.pathname.split("/") || [], n.protocol && !m[n.protocol]); if (S && (n.hostname = "", n.port = null, n.host && ("" === T[0] ? T[0] = n.host : T.unshift(n.host)), n.host = "", t.protocol && (t.hostname = null, t.port = null, t.host && ("" === d[0] ? d[0] = t.host : d.unshift(t.host)), t.host = null), x = x && ("" === d[0] || "" === T[0])), b) n.host = t.host || "" === t.host ? t.host : n.host, n.hostname = t.hostname || "" === t.hostname ? t.hostname : n.hostname, n.search = t.search, n.query = t.query, T = d; else if (d.length) T || (T = []), T.pop(), T = T.concat(d), n.search = t.search, n.query = t.query; else if (!r.isNullOrUndefined(t.search)) return S && (n.hostname = n.host = T.shift(), (M = !!(n.host && n.host.indexOf("@") > 0) && n.host.split("@")) && (n.auth = M.shift(), n.host = n.hostname = M.shift())), n.search = t.search, n.query = t.query, r.isNull(n.pathname) && r.isNull(n.search) || (n.path = (n.pathname ? n.pathname : "") + (n.search ? n.search : "")), n.href = n.format(), n; if (!T.length) return n.pathname = null, n.search ? n.path = "/" + n.search : n.path = null, n.href = n.format(), n; for (var P = T.slice(-1)[0], E = (n.host || t.host || T.length > 1) && ("." === P || ".." === P) || "" === P, O = 0, k = T.length; k >= 0; k--) "." === (P = T[k]) ? T.splice(k, 1) : ".." === P ? (T.splice(k, 1), O++) : O && (T.splice(k, 1), O--); if (!x && !w) for (; O--; O) T.unshift(".."); !x || "" === T[0] || T[0] && "/" === T[0].charAt(0) || T.unshift(""), E && "/" !== T.join("/").substr(-1) && T.push(""); var M, I = "" === T[0] || T[0] && "/" === T[0].charAt(0); return S && (n.hostname = n.host = I ? "" : T.length ? T.shift() : "", (M = !!(n.host && n.host.indexOf("@") > 0) && n.host.split("@")) && (n.auth = M.shift(), n.host = n.hostname = M.shift())), (x = x || n.host && T.length) && !I && T.unshift(""), T.length ? n.pathname = T.join("/") : (n.pathname = null, n.path = null), r.isNull(n.pathname) && r.isNull(n.search) || (n.path = (n.pathname ? n.pathname : "") + (n.search ? n.search : "")), n.auth = t.auth || n.auth, n.slashes = n.slashes || t.slashes, n.href = n.format(), n }, o.prototype.parseHost = function() { var t = this.host, e = a.exec(t); e && (":" !== (e = e[0]) && (this.port = e.substr(1)), t = t.substr(0, t.length - e.length)), t && (this.hostname = t) } }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = l(n(19)), o = n(7), s = n(44), a = n(4), u = l(n(64)); function l(t) { return t && t.__esModule ? t : { default: t } } var h = function(t) { function e(n, i) { var r = !(arguments.length > 2 && void 0 !== arguments[2]) || arguments[2]; if (function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e), !n) throw new Error("No video source element specified."); (n.readyState === n.HAVE_ENOUGH_DATA || n.readyState === n.HAVE_FUTURE_DATA) && n.width && n.height && (n.complete = !0); var o = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this, n, i)); return o.width = n.videoWidth, o.height = n.videoHeight, o._autoUpdate = !0, o._isAutoUpdating = !1, o.autoPlay = r, o.update = o.update.bind(o), o._onCanPlay = o._onCanPlay.bind(o), n.addEventListener("play", o._onPlayStart.bind(o)), n.addEventListener("pause", o._onPlayStop.bind(o)), o.hasLoaded = !1, o.__loaded = !1, o._isSourceReady() ? o._onCanPlay() : (n.addEventListener("canplay", o._onCanPlay), n.addEventListener("canplaythrough", o._onCanPlay)), o } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype._isSourcePlaying = function() { var t = this.source; return t.currentTime > 0 && !1 === t.paused && !1 === t.ended && t.readyState > 2 }, e.prototype._isSourceReady = function() { return 3 === this.source.readyState || 4 === this.source.readyState }, e.prototype._onPlayStart = function() { this.hasLoaded || this._onCanPlay(), !this._isAutoUpdating && this.autoUpdate && (s.shared.add(this.update, this, a.UPDATE_PRIORITY.HIGH), this._isAutoUpdating = !0) }, e.prototype._onPlayStop = function() { this._isAutoUpdating && (s.shared.remove(this.update, this), this._isAutoUpdating = !1) }, e.prototype._onCanPlay = function() { this.hasLoaded = !0, this.source && (this.source.removeEventListener("canplay", this._onCanPlay), this.source.removeEventListener("canplaythrough", this._onCanPlay), this.width = this.source.videoWidth, this.height = this.source.videoHeight, this.__loaded || (this.__loaded = !0, this.emit("loaded", this)), this._isSourcePlaying() ? this._onPlayStart() : this.autoPlay && this.source.play()) }, e.prototype.destroy = function() { this._isAutoUpdating && s.shared.remove(this.update, this), this.source && this.source._pixiId && (r.default.removeFromCache(this.source._pixiId), delete this.source._pixiId, this.source.pause(), this.source.src = "", this.source.load()), t.prototype.destroy.call(this) }, e.fromVideo = function(t, n, i) { t._pixiId || (t._pixiId = "video_" + (0, o.uid)()); var s = o.BaseTextureCache[t._pixiId]; return s || (s = new e(t, n, i), r.default.addToCache(s, t._pixiId)), s }, e.fromUrl = function(t, n, i, r) { var o = document.createElement("video"); o.setAttribute("webkit-playsinline", ""), o.setAttribute("playsinline", ""); var s = Array.isArray(t) ? t[0].src || t[0] : t.src || t; if (void 0 === i && 0 !== s.indexOf("data:") ? o.crossOrigin = (0, u.default)(s) : i && (o.crossOrigin = "string" == typeof i ? i : "anonymous"), Array.isArray(t)) for (var a = 0; a < t.length; ++a) o.appendChild(c(t[a].src || t[a], t[a].mime)); else o.appendChild(c(s, t.mime)); return o.load(), e.fromVideo(o, n, r) }, i(e, [{ key: "autoUpdate", get: function() { return this._autoUpdate }, set: function(t) { t !== this._autoUpdate && (this._autoUpdate = t, !this._autoUpdate && this._isAutoUpdating ? (s.shared.remove(this.update, this), this._isAutoUpdating = !1) : this._autoUpdate && !this._isAutoUpdating && (s.shared.add(this.update, this, a.UPDATE_PRIORITY.HIGH), this._isAutoUpdating = !0)) } }]), e }(r.default); function c(t, e) { if (!e) { var n = t.split("?").shift().toLowerCase(); e = "video/" + n.substr(n.lastIndexOf(".") + 1) } var i = document.createElement("source"); return i.src = t, i.type = e, i } e.default = h, h.fromUrls = h.fromUrl }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function(t) { return t && t.__esModule ? t : { default: t } }(n(51)), r = function() { function t() { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.x0 = 0, this.y0 = 0, this.x1 = 1, this.y1 = 0, this.x2 = 1, this.y2 = 1, this.x3 = 0, this.y3 = 1, this.uvsUint32 = new Uint32Array(4) } return t.prototype.set = function(t, e, n) { var r = e.width, o = e.height; if (n) { var s = t.width / 2 / r, a = t.height / 2 / o, u = t.x / r + s, l = t.y / o + a; n = i.default.add(n, i.default.NW), this.x0 = u + s * i.default.uX(n), this.y0 = l + a * i.default.uY(n), n = i.default.add(n, 2), this.x1 = u + s * i.default.uX(n), this.y1 = l + a * i.default.uY(n), n = i.default.add(n, 2), this.x2 = u + s * i.default.uX(n), this.y2 = l + a * i.default.uY(n), n = i.default.add(n, 2), this.x3 = u + s * i.default.uX(n), this.y3 = l + a * i.default.uY(n) } else this.x0 = t.x / r, this.y0 = t.y / o, this.x1 = (t.x + t.width) / r, this.y1 = t.y / o, this.x2 = (t.x + t.width) / r, this.y2 = (t.y + t.height) / o, this.x3 = t.x / r, this.y3 = (t.y + t.height) / o; this.uvsUint32[0] = (65535 & Math.round(65535 * this.y0)) << 16 | 65535 & Math.round(65535 * this.x0), this.uvsUint32[1] = (65535 & Math.round(65535 * this.y1)) << 16 | 65535 & Math.round(65535 * this.x1), this.uvsUint32[2] = (65535 & Math.round(65535 * this.y2)) << 16 | 65535 & Math.round(65535 * this.x2), this.uvsUint32[3] = (65535 & Math.round(65535 * this.y3)) << 16 | 65535 & Math.round(65535 * this.x3) }, t }(); e.default = r }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = n(7), o = n(11), s = n(4), a = c(n(10)), u = c(n(21)), l = c(n(45)), h = c(n(18)); function c(t) { return t && t.__esModule ? t : { default: t } } var f = new o.Matrix, p = function(t) { function e(n, i, l, h) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var c = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this)); return (0, r.sayHello)(n), "number" == typeof i && (i = Object.assign({ width: i, height: l || a.default.RENDER_OPTIONS.height }, h)), i = Object.assign({}, a.default.RENDER_OPTIONS, i), c.options = i, c.type = s.RENDERER_TYPE.UNKNOWN, c.screen = new o.Rectangle(0, 0, i.width, i.height), c.view = i.view || document.createElement("canvas"), c.resolution = i.resolution || a.default.RESOLUTION, c.transparent = i.transparent, c.autoResize = i.autoResize || !1, c.blendModes = null, c.preserveDrawingBuffer = i.preserveDrawingBuffer, c.clearBeforeRender = i.clearBeforeRender, c.roundPixels = i.roundPixels, c._backgroundColor = 0, c._backgroundColorRgba = [0, 0, 0, 0], c._backgroundColorString = "#000000", c.backgroundColor = i.backgroundColor || c._backgroundColor, c._tempDisplayObjectParent = new u.default, c._lastObjectRendered = c._tempDisplayObjectParent, c } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.resize = function(t, e) { this.screen.width = t, this.screen.height = e, this.view.width = t * this.resolution, this.view.height = e * this.resolution, this.autoResize && (this.view.style.width = t + "px", this.view.style.height = e + "px") }, e.prototype.generateTexture = function(t, e, n, i) { i = i || t.getLocalBounds(); var r = l.default.create(0 | i.width, 0 | i.height, e, n); return f.tx = -i.x, f.ty = -i.y, this.render(t, r, !1, f, !!t.parent), r }, e.prototype.destroy = function(t) { t && this.view.parentNode && this.view.parentNode.removeChild(this.view), this.type = s.RENDERER_TYPE.UNKNOWN, this.view = null, this.screen = null, this.resolution = 0, this.transparent = !1, this.autoResize = !1, this.blendModes = null, this.options = null, this.preserveDrawingBuffer = !1, this.clearBeforeRender = !1, this.roundPixels = !1, this._backgroundColor = 0, this._backgroundColorRgba = null, this._backgroundColorString = null, this._tempDisplayObjectParent = null, this._lastObjectRendered = null }, i(e, [{ key: "width", get: function() { return this.view.width } }, { key: "height", get: function() { return this.view.height } }, { key: "backgroundColor", get: function() { return this._backgroundColor }, set: function(t) { this._backgroundColor = t, this._backgroundColorString = (0, r.hex2string)(t), (0, r.hex2rgb)(t, this._backgroundColorRgba) } }]), e }(h.default); e.default = p }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = o(n(19)), r = o(n(10)); function o(t) { return t && t.__esModule ? t : { default: t } } var s = function(t) { function e() { var n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 100, i = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 100, o = arguments[2], s = arguments[3]; ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var a = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this, null, o)); return a.resolution = s || r.default.RESOLUTION, a.width = Math.ceil(n), a.height = Math.ceil(i), a.realWidth = a.width * a.resolution, a.realHeight = a.height * a.resolution, a.scaleMode = void 0 !== o ? o : r.default.SCALE_MODE, a.hasLoaded = !0, a._glRenderTargets = {}, a._canvasRenderTarget = null, a.valid = !1, a } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.resize = function(t, e) { t = Math.ceil(t), e = Math.ceil(e), t === this.width && e === this.height || (this.valid = t > 0 && e > 0, this.width = t, this.height = e, this.realWidth = this.width * this.resolution, this.realHeight = this.height * this.resolution, this.valid && this.emit("update", this)) }, e.prototype.destroy = function() { t.prototype.destroy.call(this, !0), this.renderer = null }, e }(i.default); e.default = s }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = function(t) { return t && t.__esModule ? t : { default: t } }(n(10)), o = function() { function t(e, n, i) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.canvas = document.createElement("canvas"), this.context = this.canvas.getContext("2d"), this.resolution = i || r.default.RESOLUTION, this.resize(e, n) } return t.prototype.clear = function() { this.context.setTransform(1, 0, 0, 1, 0, 0), this.context.clearRect(0, 0, this.canvas.width, this.canvas.height) }, t.prototype.resize = function(t, e) { this.canvas.width = t * this.resolution, this.canvas.height = e * this.resolution }, t.prototype.destroy = function() { this.context = null, this.canvas = null }, i(t, [{ key: "width", get: function() { return this.canvas.width }, set: function(t) { this.canvas.width = t } }, { key: "height", get: function() { return this.canvas.height }, set: function(t) { this.canvas.height = t } }]), t }(); e.default = o }, function(t, e, n) { "use strict"; function i(t) { var e = document.createElement("canvas"); e.width = 6, e.height = 1; var n = e.getContext("2d"); return n.fillStyle = t, n.fillRect(0, 0, 6, 1), e } e.__esModule = !0, e.default = function() { if ("undefined" == typeof document) return !1; var t = i("#ff00ff"), e = i("#ffff00"), n = document.createElement("canvas"); n.width = 6, n.height = 1; var r = n.getContext("2d"); r.globalCompositeOperation = "multiply", r.drawImage(t, 0, 0), r.drawImage(e, 2, 0); var o = r.getImageData(2, 0, 1, 1); if (!o) return !1; var s = o.data; return 255 === s[0] && 0 === s[1] && 0 === s[2] } }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = s(n(73)), r = n(11), o = (n(16), s(n(75))); function s(t) { return t && t.__esModule ? t : { default: t } } var a = function(t) { function e(n) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var i = new r.Matrix, o = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this, "attribute vec2 aVertexPosition;\nattribute vec2 aTextureCoord;\n\nuniform mat3 projectionMatrix;\nuniform mat3 otherMatrix;\n\nvarying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nvoid main(void)\n{\n gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);\n\n vTextureCoord = aTextureCoord;\n vMaskCoord = ( otherMatrix * vec3( aTextureCoord, 1.0) ).xy;\n}\n", "varying vec2 vMaskCoord;\nvarying vec2 vTextureCoord;\n\nuniform sampler2D uSampler;\nuniform sampler2D mask;\nuniform float alpha;\nuniform vec4 maskClamp;\n\nvoid main(void)\n{\n float clip = step(3.5,\n step(maskClamp.x, vMaskCoord.x) +\n step(maskClamp.y, vMaskCoord.y) +\n step(vMaskCoord.x, maskClamp.z) +\n step(vMaskCoord.y, maskClamp.w));\n\n vec4 original = texture2D(uSampler, vTextureCoord);\n vec4 masky = texture2D(mask, vMaskCoord);\n\n original *= (masky.r * masky.a * alpha * clip);\n\n gl_FragColor = original;\n}\n")); return n.renderable = !1, o.maskSprite = n, o.maskMatrix = i, o } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.apply = function(t, e, n, i) { var r = this.maskSprite, s = this.maskSprite.texture; s.valid && (s.transform || (s.transform = new o.default(s, 0)), s.transform.update(), this.uniforms.mask = s, this.uniforms.otherMatrix = t.calculateSpriteMatrix(this.maskMatrix, r).prepend(s.transform.mapCoord), this.uniforms.alpha = r.worldAlpha, this.uniforms.maskClamp = s.transform.uClampFrame, t.applyFilter(this, e, n, i)) }, e }(i.default); e.default = a }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = u(n(141)), o = n(7), s = n(4), a = u(n(10)); function u(t) { return t && t.__esModule ? t : { default: t } } var l = {}, h = function() { function t(e, n, i) { for (var u in function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.vertexSrc = e || t.defaultVertexSrc, this.fragmentSrc = n || t.defaultFragmentSrc, this._blendMode = s.BLEND_MODES.NORMAL, this.uniformData = i || (0, r.default)(this.vertexSrc, this.fragmentSrc, "projectionMatrix|uSampler"), this.uniforms = {}, this.uniformData) this.uniforms[u] = this.uniformData[u].value, this.uniformData[u].type && (this.uniformData[u].type = this.uniformData[u].type.toLowerCase()); this.glShaders = {}, l[this.vertexSrc + this.fragmentSrc] || (l[this.vertexSrc + this.fragmentSrc] = (0, o.uid)()), this.glShaderKey = l[this.vertexSrc + this.fragmentSrc], this.padding = 4, this.resolution = a.default.FILTER_RESOLUTION, this.enabled = !0, this.autoFit = !0 } return t.prototype.apply = function(t, e, n, i, r) { t.applyFilter(this, e, n, i) }, i(t, [{ key: "blendMode", get: function() { return this._blendMode }, set: function(t) { this._blendMode = t } }], [{ key: "defaultVertexSrc", get: function() { return ["attribute vec2 aVertexPosition;", "attribute vec2 aTextureCoord;", "uniform mat3 projectionMatrix;", "uniform mat3 filterMatrix;", "varying vec2 vTextureCoord;", "varying vec2 vFilterCoord;", "void main(void){", " gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);", " vFilterCoord = ( filterMatrix * vec3( aTextureCoord, 1.0) ).xy;", " vTextureCoord = aTextureCoord ;", "}"].join("\n") } }, { key: "defaultFragmentSrc", get: function() { return ["varying vec2 vTextureCoord;", "varying vec2 vFilterCoord;", "uniform sampler2D uSampler;", "uniform sampler2D filterSampler;", "void main(void){", " vec4 masky = texture2D(filterSampler, vFilterCoord);", " vec4 sample = texture2D(uSampler, vTextureCoord);", " vec4 color;", " if(mod(vFilterCoord.x, 1.0) > 0.5)", " {", " color = vec4(1.0, 0.0, 0.0, 1.0);", " }", " else", " {", " color = vec4(0.0, 1.0, 0.0, 1.0);", " }", " gl_FragColor = mix(sample, masky, 0.5);", " gl_FragColor *= sample.a;", "}"].join("\n") } }]), t }(); e.default = h }, function(t, e) { var n, i, r = t.exports = {}; function o() { throw new Error("setTimeout has not been defined") } function s() { throw new Error("clearTimeout has not been defined") } function a(t) { if (n === setTimeout) return setTimeout(t, 0); if ((n === o || !n) && setTimeout) return n = setTimeout, setTimeout(t, 0); try { return n(t, 0) } catch (e) { try { return n.call(null, t, 0) } catch (e) { return n.call(this, t, 0) } } }! function() { try { n = "function" == typeof setTimeout ? setTimeout : o } catch (t) { n = o } try { i = "function" == typeof clearTimeout ? clearTimeout : s } catch (t) { i = s } }(); var u, l = [], h = !1, c = -1; function f() { h && u && (h = !1, u.length ? l = u.concat(l) : c = -1, l.length && p()) } function p() { if (!h) { var t = a(f); h = !0; for (var e = l.length; e;) { for (u = l, l = []; ++c < e;) u && u[c].run(); c = -1, e = l.length } u = null, h = !1, function(t) { if (i === clearTimeout) return clearTimeout(t); if ((i === s || !i) && clearTimeout) return i = clearTimeout, clearTimeout(t); try { i(t) } catch (e) { try { return i.call(null, t) } catch (e) { return i.call(this, t) } } }(t) } } function d(t, e) { this.fun = t, this.array = e } function y() {} r.nextTick = function(t) { var e = new Array(arguments.length - 1); if (arguments.length > 1) for (var n = 1; n < arguments.length; n++) e[n - 1] = arguments[n]; l.push(new d(t, e)), 1 !== l.length || h || a(p) }, d.prototype.run = function() { this.fun.apply(null, this.array) }, r.title = "browser", r.browser = !0, r.env = {}, r.argv = [], r.version = "", r.versions = {}, r.on = y, r.addListener = y, r.once = y, r.off = y, r.removeListener = y, r.removeAllListeners = y, r.emit = y, r.prependListener = y, r.prependOnceListener = y, r.listeners = function(t) { return [] }, r.binding = function(t) { throw new Error("process.binding is not supported") }, r.cwd = function() { return "/" }, r.chdir = function(t) { throw new Error("process.chdir is not supported") }, r.umask = function() { return 0 } }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = function(t) { return t && t.__esModule ? t : { default: t } }(n(35)), o = new r.default, s = function() { function t(e, n) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this._texture = e, this.mapCoord = new r.default, this.uClampFrame = new Float32Array(4), this.uClampOffset = new Float32Array(2), this._lastTextureID = -1, this.clampOffset = 0, this.clampMargin = void 0 === n ? .5 : n } return t.prototype.multiplyUvs = function(t, e) { void 0 === e && (e = t); for (var n = this.mapCoord, i = 0; i < t.length; i += 2) { var r = t[i], o = t[i + 1]; e[i] = r * n.a + o * n.c + n.tx, e[i + 1] = r * n.b + o * n.d + n.ty } return e }, t.prototype.update = function(t) { var e = this._texture; if (!e || !e.valid) return !1; if (!t && this._lastTextureID === e._updateID) return !1; this._lastTextureID = e._updateID; var n = e._uvs; this.mapCoord.set(n.x1 - n.x0, n.y1 - n.y0, n.x3 - n.x0, n.y3 - n.y0, n.x0, n.y0); var i = e.orig, r = e.trim; r && (o.set(i.width / r.width, 0, 0, i.height / r.height, -r.x / r.width, -r.y / r.height), this.mapCoord.append(o)); var s = e.baseTexture, a = this.uClampFrame, u = this.clampMargin / s.resolution, l = this.clampOffset; return a[0] = (e._frame.x + u + l) / s.width, a[1] = (e._frame.y + u + l) / s.height, a[2] = (e._frame.x + e._frame.width - u + l) / s.width, a[3] = (e._frame.y + e._frame.height - u + l) / s.height, this.uClampOffset[0] = l / s.realWidth, this.uClampOffset[1] = l / s.realHeight, !0 }, i(t, [{ key: "texture", get: function() { return this._texture }, set: function(t) { this._texture = t, this._lastTextureID = -1 } }]), t }(); e.default = s }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = o(n(12)), r = o(n(46)); function o(t) { return t && t.__esModule ? t : { default: t } } var s = function() { function t(e, n) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.gl = e, this.vertices = new Float32Array([-1, -1, 1, -1, 1, 1, -1, 1]), this.uvs = new Float32Array([0, 0, 1, 0, 1, 1, 0, 1]), this.interleaved = new Float32Array(16); for (var o = 0; o < 4; o++) this.interleaved[4 * o] = this.vertices[2 * o], this.interleaved[4 * o + 1] = this.vertices[2 * o + 1], this.interleaved[4 * o + 2] = this.uvs[2 * o], this.interleaved[4 * o + 3] = this.uvs[2 * o + 1]; this.indices = (0, r.default)(1), this.vertexBuffer = i.default.GLBuffer.createVertexBuffer(e, this.interleaved, e.STATIC_DRAW), this.indexBuffer = i.default.GLBuffer.createIndexBuffer(e, this.indices, e.STATIC_DRAW), this.vao = new i.default.VertexArrayObject(e, n) } return t.prototype.initVao = function(t) { this.vao.clear().addIndex(this.indexBuffer).addAttribute(this.vertexBuffer, t.attributes.aVertexPosition, this.gl.FLOAT, !1, 16, 0).addAttribute(this.vertexBuffer, t.attributes.aTextureCoord, this.gl.FLOAT, !1, 16, 8) }, t.prototype.map = function(t, e) { var n = 0, i = 0; return this.uvs[0] = n, this.uvs[1] = i, this.uvs[2] = n + e.width / t.width, this.uvs[3] = i, this.uvs[4] = n + e.width / t.width, this.uvs[5] = i + e.height / t.height, this.uvs[6] = n, this.uvs[7] = i + e.height / t.height, n = e.x, i = e.y, this.vertices[0] = n, this.vertices[1] = i, this.vertices[2] = n + e.width, this.vertices[3] = i, this.vertices[4] = n + e.width, this.vertices[5] = i + e.height, this.vertices[6] = n, this.vertices[7] = i + e.height, this }, t.prototype.upload = function() { for (var t = 0; t < 4; t++) this.interleaved[4 * t] = this.vertices[2 * t], this.interleaved[4 * t + 1] = this.vertices[2 * t + 1], this.interleaved[4 * t + 2] = this.uvs[2 * t], this.interleaved[4 * t + 3] = this.uvs[2 * t + 1]; return this.vertexBuffer.upload(this.interleaved), this }, t.prototype.destroy = function() { var t = this.gl; t.deleteBuffer(this.vertexBuffer), t.deleteBuffer(this.indexBuffer) }, t }(); e.default = s }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = n(4), o = n(7), s = { align: "left", breakWords: !1, dropShadow: !1, dropShadowAlpha: 1, dropShadowAngle: Math.PI / 6, dropShadowBlur: 0, dropShadowColor: "black", dropShadowDistance: 5, fill: "black", fillGradientType: r.TEXT_GRADIENT.LINEAR_VERTICAL, fillGradientStops: [], fontFamily: "Arial", fontSize: 26, fontStyle: "normal", fontVariant: "normal", fontWeight: "normal", letterSpacing: 0, lineHeight: 0, lineJoin: "miter", miterLimit: 10, padding: 0, stroke: "black", strokeThickness: 0, textBaseline: "alphabetic", trim: !1, whiteSpace: "pre", wordWrap: !1, wordWrapWidth: 100, leading: 0 }, a = ["serif", "sans-serif", "monospace", "cursive", "fantasy", "system-ui"], u = function() { function t(e) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.styleID = 0, this.reset(), c(this, e, e) } return t.prototype.clone = function() { var e = {}; return c(e, this, s), new t(e) }, t.prototype.reset = function() { c(this, s, s) }, t.prototype.toFontString = function() { var t = "number" == typeof this.fontSize ? this.fontSize + "px" : this.fontSize, e = this.fontFamily; Array.isArray(this.fontFamily) || (e = this.fontFamily.split(",")); for (var n = e.length - 1; n >= 0; n--) { var i = e[n].trim(); !/([\"\'])[^\'\"]+\1/.test(i) && a.indexOf(i) < 0 && (i = '"' + i + '"'), e[n] = i } return this.fontStyle + " " + this.fontVariant + " " + this.fontWeight + " " + t + " " + e.join(",") }, i(t, [{ key: "align", get: function() { return this._align }, set: function(t) { this._align !== t && (this._align = t, this.styleID++) } }, { key: "breakWords", get: function() { return this._breakWords }, set: function(t) { this._breakWords !== t && (this._breakWords = t, this.styleID++) } }, { key: "dropShadow", get: function() { return this._dropShadow }, set: function(t) { this._dropShadow !== t && (this._dropShadow = t, this.styleID++) } }, { key: "dropShadowAlpha", get: function() { return this._dropShadowAlpha }, set: function(t) { this._dropShadowAlpha !== t && (this._dropShadowAlpha = t, this.styleID++) } }, { key: "dropShadowAngle", get: function() { return this._dropShadowAngle }, set: function(t) { this._dropShadowAngle !== t && (this._dropShadowAngle = t, this.styleID++) } }, { key: "dropShadowBlur", get: function() { return this._dropShadowBlur }, set: function(t) { this._dropShadowBlur !== t && (this._dropShadowBlur = t, this.styleID++) } }, { key: "dropShadowColor", get: function() { return this._dropShadowColor }, set: function(t) { var e = h(t); this._dropShadowColor !== e && (this._dropShadowColor = e, this.styleID++) } }, { key: "dropShadowDistance", get: function() { return this._dropShadowDistance }, set: function(t) { this._dropShadowDistance !== t && (this._dropShadowDistance = t, this.styleID++) } }, { key: "fill", get: function() { return this._fill }, set: function(t) { var e = h(t); this._fill !== e && (this._fill = e, this.styleID++) } }, { key: "fillGradientType", get: function() { return this._fillGradientType }, set: function(t) { this._fillGradientType !== t && (this._fillGradientType = t, this.styleID++) } }, { key: "fillGradientStops", get: function() { return this._fillGradientStops }, set: function(t) { (function(t, e) { if (!Array.isArray(t) || !Array.isArray(e)) return !1; if (t.length !== e.length) return !1; for (var n = 0; n < t.length; ++n) if (t[n] !== e[n]) return !1; return !0 })(this._fillGradientStops, t) || (this._fillGradientStops = t, this.styleID++) } }, { key: "fontFamily", get: function() { return this._fontFamily }, set: function(t) { this.fontFamily !== t && (this._fontFamily = t, this.styleID++) } }, { key: "fontSize", get: function() { return this._fontSize }, set: function(t) { this._fontSize !== t && (this._fontSize = t, this.styleID++) } }, { key: "fontStyle", get: function() { return this._fontStyle }, set: function(t) { this._fontStyle !== t && (this._fontStyle = t, this.styleID++) } }, { key: "fontVariant", get: function() { return this._fontVariant }, set: function(t) { this._fontVariant !== t && (this._fontVariant = t, this.styleID++) } }, { key: "fontWeight", get: function() { return this._fontWeight }, set: function(t) { this._fontWeight !== t && (this._fontWeight = t, this.styleID++) } }, { key: "letterSpacing", get: function() { return this._letterSpacing }, set: function(t) { this._letterSpacing !== t && (this._letterSpacing = t, this.styleID++) } }, { key: "lineHeight", get: function() { return this._lineHeight }, set: function(t) { this._lineHeight !== t && (this._lineHeight = t, this.styleID++) } }, { key: "leading", get: function() { return this._leading }, set: function(t) { this._leading !== t && (this._leading = t, this.styleID++) } }, { key: "lineJoin", get: function() { return this._lineJoin }, set: function(t) { this._lineJoin !== t && (this._lineJoin = t, this.styleID++) } }, { key: "miterLimit", get: function() { return this._miterLimit }, set: function(t) { this._miterLimit !== t && (this._miterLimit = t, this.styleID++) } }, { key: "padding", get: function() { return this._padding }, set: function(t) { this._padding !== t && (this._padding = t, this.styleID++) } }, { key: "stroke", get: function() { return this._stroke }, set: function(t) { var e = h(t); this._stroke !== e && (this._stroke = e, this.styleID++) } }, { key: "strokeThickness", get: function() { return this._strokeThickness }, set: function(t) { this._strokeThickness !== t && (this._strokeThickness = t, this.styleID++) } }, { key: "textBaseline", get: function() { return this._textBaseline }, set: function(t) { this._textBaseline !== t && (this._textBaseline = t, this.styleID++) } }, { key: "trim", get: function() { return this._trim }, set: function(t) { this._trim !== t && (this._trim = t, this.styleID++) } }, { key: "whiteSpace", get: function() { return this._whiteSpace }, set: function(t) { this._whiteSpace !== t && (this._whiteSpace = t, this.styleID++) } }, { key: "wordWrap", get: function() { return this._wordWrap }, set: function(t) { this._wordWrap !== t && (this._wordWrap = t, this.styleID++) } }, { key: "wordWrapWidth", get: function() { return this._wordWrapWidth }, set: function(t) { this._wordWrapWidth !== t && (this._wordWrapWidth = t, this.styleID++) } }]), t }(); function l(t) { return "number" == typeof t ? (0, o.hex2string)(t) : ("string" == typeof t && 0 === t.indexOf("0x") && (t = t.replace("0x", "#")), t) } function h(t) { if (Array.isArray(t)) { for (var e = 0; e < t.length; ++e) t[e] = l(t[e]); return t } return l(t) } function c(t, e, n) { for (var i in n) Array.isArray(e[i]) ? t[i] = e[i].slice() : t[i] = e[i] } e.default = u }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(e, n, i, r, o, s, a, u, l) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.text = e, this.style = n, this.width = i, this.height = r, this.lines = o, this.lineWidths = s, this.lineHeight = a, this.maxLineWidth = u, this.fontProperties = l } return t.measureText = function(e, n, i) { var r = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : t._canvas; i = null == i ? n.wordWrap : i; var o = n.toFontString(), s = t.measureFont(o), a = r.getContext("2d"); a.font = o; for (var u = (i ? t.wordWrap(e, n, r) : e).split(/(?:\r\n|\r|\n)/), l = new Array(u.length), h = 0, c = 0; c < u.length; c++) { var f = a.measureText(u[c]).width + (u[c].length - 1) * n.letterSpacing; l[c] = f, h = Math.max(h, f) } var p = h + n.strokeThickness; n.dropShadow && (p += n.dropShadowDistance); var d = n.lineHeight || s.fontSize + n.strokeThickness, y = Math.max(d, s.fontSize + n.strokeThickness) + (u.length - 1) * (d + n.leading); return n.dropShadow && (y += n.dropShadowDistance), new t(e, n, p, y, u, l, d + n.leading, h, s) }, t.wordWrap = function(e, n) { for (var i = (arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : t._canvas).getContext("2d"), r = 0, o = "", s = "", a = {}, u = n.letterSpacing, l = n.whiteSpace, h = t.collapseSpaces(l), c = t.collapseNewlines(l), f = !h, p = n.wordWrapWidth + u, d = t.tokenize(e), y = 0; y < d.length; y++) { var g = d[y]; if (t.isNewline(g)) { if (!c) { s += t.addLine(o), f = !h, o = "", r = 0; continue } g = " " } if (h) { var m = t.isBreakingSpace(g), v = t.isBreakingSpace(o[o.length - 1]); if (m && v) continue } var _ = t.getFromCache(g, u, a, i); if (_ > p) if ("" !== o && (s += t.addLine(o), o = "", r = 0), t.canBreakWords(g, n.breakWords)) for (var b = g.split(""), x = 0; x < b.length; x++) { for (var w = b[x], T = 1; b[x + T];) { var S = b[x + T], P = w[w.length - 1]; if (t.canBreakChars(P, S, g, x, n.breakWords)) break; w += S, T++ } x += w.length - 1; var E = t.getFromCache(w, u, a, i); E + r > p && (s += t.addLine(o), f = !1, o = "", r = 0), o += w, r += E } else { o.length > 0 && (s += t.addLine(o), o = "", r = 0); var O = y === d.length - 1; s += t.addLine(g, !O), f = !1, o = "", r = 0 } else _ + r > p && (f = !1, s += t.addLine(o), o = "", r = 0), (o.length > 0 || !t.isBreakingSpace(g) || f) && (o += g, r += _) } return s + t.addLine(o, !1) }, t.addLine = function(e) { var n = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1]; return e = t.trimRight(e), n ? e + "\n" : e }, t.getFromCache = function(t, e, n, i) { var r = n[t]; if (void 0 === r) { var o = t.length * e; r = i.measureText(t).width + o, n[t] = r } return r }, t.collapseSpaces = function(t) { return "normal" === t || "pre-line" === t }, t.collapseNewlines = function(t) { return "normal" === t }, t.trimRight = function(e) { if ("string" != typeof e) return ""; for (var n = e.length - 1; n >= 0; n--) { var i = e[n]; if (!t.isBreakingSpace(i)) break; e = e.slice(0, -1) } return e }, t.isNewline = function(e) { return "string" == typeof e && t._newlines.indexOf(e.charCodeAt(0)) >= 0 }, t.isBreakingSpace = function(e) { return "string" == typeof e && t._breakingSpaces.indexOf(e.charCodeAt(0)) >= 0 }, t.tokenize = function(e) { var n = [], i = ""; if ("string" != typeof e) return n; for (var r = 0; r < e.length; r++) { var o = e[r]; t.isBreakingSpace(o) || t.isNewline(o) ? ("" !== i && (n.push(i), i = ""), n.push(o)) : i += o } return "" !== i && n.push(i), n }, t.canBreakWords = function(t, e) { return e }, t.canBreakChars = function(t, e, n, i, r) { return !0 }, t.measureFont = function(e) { if (t._fonts[e]) return t._fonts[e]; var n = {}, i = t._canvas, r = t._context; r.font = e; var o = t.METRICS_STRING + t.BASELINE_SYMBOL, s = Math.ceil(r.measureText(o).width), a = Math.ceil(r.measureText(t.BASELINE_SYMBOL).width), u = 2 * a; a = a * t.BASELINE_MULTIPLIER | 0, i.width = s, i.height = u, r.fillStyle = "#f00", r.fillRect(0, 0, s, u), r.font = e, r.textBaseline = "alphabetic", r.fillStyle = "#000", r.fillText(o, 0, a); var l = r.getImageData(0, 0, s, u).data, h = l.length, c = 4 * s, f = 0, p = 0, d = !1; for (f = 0; f < a; ++f) { for (var y = 0; y < c; y += 4) if (255 !== l[p + y]) { d = !0; break } if (d) break; p += c } for (n.ascent = a - f, p = h - c, d = !1, f = u; f > a; --f) { for (var g = 0; g < c; g += 4) if (255 !== l[p + g]) { d = !0; break } if (d) break; p -= c } return n.descent = f - a, n.fontSize = n.ascent + n.descent, t._fonts[e] = n, n }, t.clearMetrics = function() { var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : ""; e ? delete t._fonts[e] : t._fonts = {} }, t }(); e.default = i; var r = document.createElement("canvas"); r.width = r.height = 10, i._canvas = r, i._context = r.getContext("2d"), i._fonts = {}, i.METRICS_STRING = "|Éq", i.BASELINE_SYMBOL = "M", i.BASELINE_MULTIPLIER = 1.4, i._newlines = [10, 13], i._breakingSpaces = [9, 32, 8192, 8193, 8194, 8195, 8196, 8197, 8198, 8200, 8201, 8202, 8287, 12288] }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(e, n, i, r, o, s, a, u, l) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.lineWidth = e, this.lineAlignment = l, this.nativeLines = a, this.lineColor = n, this.lineAlpha = i, this._lineTint = n, this.fillColor = r, this.fillAlpha = o, this._fillTint = r, this.fill = s, this.holes = [], this.shape = u, this.type = u.type } return t.prototype.clone = function() { return new t(this.lineWidth, this.lineColor, this.lineAlpha, this.fillColor, this.fillAlpha, this.fill, this.nativeLines, this.shape, this.lineAlignment) }, t.prototype.addHole = function(t) { this.holes.push(t) }, t.prototype.destroy = function() { this.shape = null, this.holes = null }, t }(); e.default = i }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = n(81), o = l(n(21)), s = n(44), a = l(n(10)), u = n(4); function l(t) { return t && t.__esModule ? t : { default: t } } var h = function() { function t(e, n, i, u, l) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), "number" == typeof e && (e = Object.assign({ width: e, height: n || a.default.RENDER_OPTIONS.height, forceCanvas: !!u, sharedTicker: !!l }, i)), this._options = e = Object.assign({ autoStart: !0, sharedTicker: !1, forceCanvas: !1, sharedLoader: !1 }, e), this.renderer = (0, r.autoDetectRenderer)(e), this.stage = new o.default, this._ticker = null, this.ticker = e.sharedTicker ? s.shared : new s.Ticker, e.autoStart && this.start() } return t.prototype.render = function() { this.renderer.render(this.stage) }, t.prototype.stop = function() { this._ticker.stop() }, t.prototype.start = function() { this._ticker.start() }, t.prototype.destroy = function(t, e) { if (this._ticker) { var n = this._ticker; this.ticker = null, n.destroy() } this.stage.destroy(e), this.stage = null, this.renderer.destroy(t), this.renderer = null, this._options = null }, i(t, [{ key: "ticker", set: function(t) { this._ticker && this._ticker.remove(this.render, this), this._ticker = t, t && t.add(this.render, this, u.UPDATE_PRIORITY.LOW) }, get: function() { return this._ticker } }, { key: "view", get: function() { return this.renderer.view } }, { key: "screen", get: function() { return this.renderer.screen } }]), t }(); e.default = h }, function(t, e, n) { "use strict"; e.__esModule = !0, e.autoDetectRenderer = function(t, e, n, s) { var a = t && t.forceCanvas; return void 0 !== s && (a = s), !a && i.isWebGLSupported() ? new o.default(t, e, n) : new r.default(t, e, n) }; var i = function(t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }(n(7)), r = s(n(22)), o = s(n(30)); function s(t) { return t && t.__esModule ? t : { default: t } } }, function(t, e, n) { "use strict"; e.__esModule = !0, e.default = { accessible: !1, accessibleTitle: null, accessibleHint: null, tabIndex: 0, _accessibleActive: !1, _accessibleDiv: !1 } }, function(t, e, n) { "use strict"; e.__esModule = !0, e.BitmapText = e.TilingSpriteRenderer = e.TilingSprite = e.AnimatedSprite = void 0; var i = n(173); Object.defineProperty(e, "AnimatedSprite", { enumerable: !0, get: function() { return a(i).default } }); var r = n(174); Object.defineProperty(e, "TilingSprite", { enumerable: !0, get: function() { return a(r).default } }); var o = n(175); Object.defineProperty(e, "TilingSpriteRenderer", { enumerable: !0, get: function() { return a(o).default } }); var s = n(176); function a(t) { return t && t.__esModule ? t : { default: t } } Object.defineProperty(e, "BitmapText", { enumerable: !0, get: function() { return a(s).default } }), n(177), n(178), n(179) }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = function(t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }(n(5)), o = u(n(85)), s = u(n(86)), a = u(n(87)); function u(t) { return t && t.__esModule ? t : { default: t } } var l = function(t) { function e(n, i, a, u) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e), u = u || 5; var l = (0, o.default)(u, !0), h = (0, s.default)(u), c = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this, l, h)); return c.resolution = a || r.settings.RESOLUTION, c._quality = 0, c.quality = i || 4, c.strength = n || 8, c.firstRun = !0, c } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.apply = function(t, e, n, i) { if (this.firstRun) { var r = t.renderer.gl, u = (0, a.default)(r); this.vertexSrc = (0, o.default)(u, !0), this.fragmentSrc = (0, s.default)(u), this.firstRun = !1 } if (this.uniforms.strength = 1 / n.size.width * (n.size.width / e.size.width), this.uniforms.strength *= this.strength, this.uniforms.strength /= this.passes, 1 === this.passes) t.applyFilter(this, e, n, i); else { for (var l = t.getRenderTarget(!0), h = e, c = l, f = 0; f < this.passes - 1; f++) { t.applyFilter(this, h, c, !0); var p = c; c = h, h = p } t.applyFilter(this, h, n, i), t.returnRenderTarget(l) } }, i(e, [{ key: "blur", get: function() { return this.strength }, set: function(t) { this.padding = 2 * Math.abs(t), this.strength = t } }, { key: "quality", get: function() { return this._quality }, set: function(t) { this._quality = t, this.passes = t } }]), e }(r.Filter); e.default = l }, function(t, e, n) { "use strict"; e.__esModule = !0, e.default = function(t, e) { var n = Math.ceil(t / 2), r = i, o = "", s = void 0; s = e ? "vBlurTexCoords[%index%] = aTextureCoord + vec2(%sampleIndex% * strength, 0.0);" : "vBlurTexCoords[%index%] = aTextureCoord + vec2(0.0, %sampleIndex% * strength);"; for (var a = 0; a < t; a++) { var u = s.replace("%index%", a); o += u = u.replace("%sampleIndex%", a - (n - 1) + ".0"), o += "\n" } return (r = r.replace("%blur%", o)).replace("%size%", t) }; var i = ["attribute vec2 aVertexPosition;", "attribute vec2 aTextureCoord;", "uniform float strength;", "uniform mat3 projectionMatrix;", "varying vec2 vBlurTexCoords[%size%];", "void main(void)", "{", "gl_Position = vec4((projectionMatrix * vec3((aVertexPosition), 1.0)).xy, 0.0, 1.0);", "%blur%", "}"].join("\n") }, function(t, e, n) { "use strict"; e.__esModule = !0, e.default = function(t) { for (var e = i[t], n = e.length, o = r, s = "", a = void 0, u = 0; u < t; u++) { var l = "gl_FragColor += texture2D(uSampler, vBlurTexCoords[%index%]) * %value%;".replace("%index%", u); a = u, u >= n && (a = t - u - 1), s += l = l.replace("%value%", e[a]), s += "\n" } return (o = o.replace("%blur%", s)).replace("%size%", t) }; var i = { 5: [.153388, .221461, .250301], 7: [.071303, .131514, .189879, .214607], 9: [.028532, .067234, .124009, .179044, .20236], 11: [.0093, .028002, .065984, .121703, .175713, .198596], 13: [.002406, .009255, .027867, .065666, .121117, .174868, .197641], 15: [489e-6, .002403, .009246, .02784, .065602, .120999, .174697, .197448] }, r = ["varying vec2 vBlurTexCoords[%size%];", "uniform sampler2D uSampler;", "void main(void)", "{", " gl_FragColor = vec4(0.0);", " %blur%", "}"].join("\n") }, function(t, e, n) { "use strict"; e.__esModule = !0, e.default = function(t) { for (var e = t.getParameter(t.MAX_VARYING_VECTORS), n = 15; n > e;) n -= 2; return n } }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = function(t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }(n(5)), o = u(n(85)), s = u(n(86)), a = u(n(87)); function u(t) { return t && t.__esModule ? t : { default: t } } var l = function(t) { function e(n, i, a, u) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e), u = u || 5; var l = (0, o.default)(u, !1), h = (0, s.default)(u), c = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this, l, h)); return c.resolution = a || r.settings.RESOLUTION, c._quality = 0, c.quality = i || 4, c.strength = n || 8, c.firstRun = !0, c } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype.apply = function(t, e, n, i) { if (this.firstRun) { var r = t.renderer.gl, u = (0, a.default)(r); this.vertexSrc = (0, o.default)(u, !1), this.fragmentSrc = (0, s.default)(u), this.firstRun = !1 } if (this.uniforms.strength = 1 / n.size.height * (n.size.height / e.size.height), this.uniforms.strength *= this.strength, this.uniforms.strength /= this.passes, 1 === this.passes) t.applyFilter(this, e, n, i); else { for (var l = t.getRenderTarget(!0), h = e, c = l, f = 0; f < this.passes - 1; f++) { t.applyFilter(this, h, c, !0); var p = c; c = h, h = p } t.applyFilter(this, h, n, i), t.returnRenderTarget(l) } }, i(e, [{ key: "blur", get: function() { return this.strength }, set: function(t) { this.padding = 2 * Math.abs(t), this.strength = t } }, { key: "quality", get: function() { return this._quality }, set: function(t) { this._quality = t, this.passes = t } }]), e }(r.Filter); e.default = l }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = function(t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }(n(5)), o = function() { function t() { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.global = new r.Point, this.target = null, this.originalEvent = null, this.identifier = null, this.isPrimary = !1, this.button = 0, this.buttons = 0, this.width = 0, this.height = 0, this.tiltX = 0, this.tiltY = 0, this.pointerType = null, this.pressure = 0, this.rotationAngle = 0, this.twist = 0, this.tangentialPressure = 0 } return t.prototype.getLocalPosition = function(t, e, n) { return t.worldTransform.applyInverse(n || this.global, e) }, t.prototype.copyEvent = function(t) { t.isPrimary && (this.isPrimary = !0), this.button = t.button, this.buttons = Number.isInteger(t.buttons) ? t.buttons : t.which, this.width = t.width, this.height = t.height, this.tiltX = t.tiltX, this.tiltY = t.tiltY, this.pointerType = t.pointerType, this.pressure = t.pressure, this.rotationAngle = t.rotationAngle, this.twist = t.twist || 0, this.tangentialPressure = t.tangentialPressure || 0 }, t.prototype.reset = function() { this.isPrimary = !1 }, i(t, [{ key: "pointerId", get: function() { return this.identifier } }]), t }(); e.default = o }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t() { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.stopped = !1, this.target = null, this.currentTarget = null, this.type = null, this.data = null } return t.prototype.stopPropagation = function() { this.stopped = !0 }, t.prototype.reset = function() { this.stopped = !1, this.currentTarget = null, this.target = null }, t }(); e.default = i }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(t, e) { for (var n = 0; n < e.length; n++) { var i = e[n]; i.enumerable = i.enumerable || !1, i.configurable = !0, "value" in i && (i.writable = !0), Object.defineProperty(t, i.key, i) } } return function(e, n, i) { return n && t(e.prototype, n), i && t(e, i), e } }(), r = function() { function t(e) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this._pointerId = e, this._flags = t.FLAGS.NONE } return t.prototype._doSet = function(t, e) { this._flags = e ? this._flags | t : this._flags & ~t }, i(t, [{ key: "pointerId", get: function() { return this._pointerId } }, { key: "flags", get: function() { return this._flags }, set: function(t) { this._flags = t } }, { key: "none", get: function() { return this._flags === this.constructor.FLAGS.NONE } }, { key: "over", get: function() { return 0 != (this._flags & this.constructor.FLAGS.OVER) }, set: function(t) { this._doSet(this.constructor.FLAGS.OVER, t) } }, { key: "rightDown", get: function() { return 0 != (this._flags & this.constructor.FLAGS.RIGHT_DOWN) }, set: function(t) { this._doSet(this.constructor.FLAGS.RIGHT_DOWN, t) } }, { key: "leftDown", get: function() { return 0 != (this._flags & this.constructor.FLAGS.LEFT_DOWN) }, set: function(t) { this._doSet(this.constructor.FLAGS.LEFT_DOWN, t) } }]), t }(); e.default = r, r.FLAGS = Object.freeze({ NONE: 0, OVER: 1, LEFT_DOWN: 2, RIGHT_DOWN: 4 }) }, function(t, e, n) { "use strict"; e.__esModule = !0, e.default = { interactive: !1, interactiveChildren: !0, hitArea: null, get buttonMode() { return "pointer" === this.cursor }, set buttonMode(t) { t ? this.cursor = "pointer" : "pointer" === this.cursor && (this.cursor = null) }, cursor: null, get trackedPointers() { return void 0 === this._trackedPointers && (this._trackedPointers = {}), this._trackedPointers }, _trackedPointers: void 0 } }, function(t, e, n) { "use strict"; e.__esModule = !0, e.parse = s, e.default = function() { return function(t, e) { if (t.data && t.type === r.Resource.TYPE.XML) if (0 !== t.data.getElementsByTagName("page").length && 0 !== t.data.getElementsByTagName("info").length && null !== t.data.getElementsByTagName("info")[0].getAttribute("face")) { var n = t.isDataUrl ? "" : i.dirname(t.url); t.isDataUrl && ("." === n && (n = ""), this.baseUrl && n && "/" === this.baseUrl.charAt(this.baseUrl.length - 1) && (n += "/")), (n = n.replace(this.baseUrl, "")) && "/" !== n.charAt(n.length - 1) && (n += "/"); for (var o = t.data.getElementsByTagName("page"), a = {}, u = function(n) { a[n.metadata.pageFile] = n.texture, Object.keys(a).length === o.length && (s(t, a), e()) }, l = 0; l < o.length; ++l) { var h = o[l].getAttribute("file"), c = n + h, f = !1; for (var p in this.resources) { var d = this.resources[p]; if (d.url === c) { d.metadata.pageFile = h, d.texture ? u(d) : d.onAfterMiddleware.add(u), f = !0; break } } if (!f) { var y = { crossOrigin: t.crossOrigin, loadType: r.Resource.LOAD_TYPE.IMAGE, metadata: Object.assign({ pageFile: h }, t.metadata.imageMetadata), parentResource: t }; this.add(c, y, u) } } } else e(); else e() } }; var i = function(t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.prototype.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }(n(16)), r = n(25), o = n(83); function s(t, e) { t.bitmapFont = o.BitmapText.registerFont(t.data, e) } }, function(t, e, n) { "use strict"; t.exports = function(t, e) { e = e || {}; for (var n = { key: ["source", "protocol", "authority", "userInfo", "user", "password", "host", "port", "relative", "path", "directory", "file", "query", "anchor"], q: { name: "queryKey", parser: /(?:^|&)([^&=]*)=?([^&]*)/g }, parser: { strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ } }, i = n.parser[e.strictMode ? "strict" : "loose"].exec(t), r = {}, o = 14; o--;) r[n.key[o]] = i[o] || ""; return r[n.q.name] = {}, r[n.key[12]].replace(n.q.parser, function(t, e, i) { e && (r[n.q.name][e] = i) }), r } }, function(t, e, n) { "use strict"; function i() {} function r(t) { return function() { if (null === t) throw new Error("Callback was already called."); var e = t; t = null, e.apply(this, arguments) } } e.__esModule = !0, e.eachSeries = function(t, e, n, i) { var r = 0, o = t.length; ! function s(a) { a || r === o ? n && n(a) : i ? setTimeout(function() { e(t[r++], s) }, 1) : e(t[r++], s) }() }, e.queue = function(t, e) { if (null == e) e = 1; else if (0 === e) throw new Error("Concurrency must not be zero"); var n = 0, o = { _tasks: [], concurrency: e, saturated: i, unsaturated: i, buffer: e / 4, empty: i, drain: i, error: i, started: !1, paused: !1, push: function(t, e) { s(t, !1, e) }, kill: function() { n = 0, o.drain = i, o.started = !1, o._tasks = [] }, unshift: function(t, e) { s(t, !0, e) }, process: function() { for (; !o.paused && n < o.concurrency && o._tasks.length;) { var e = o._tasks.shift(); 0 === o._tasks.length && o.empty(), (n += 1) === o.concurrency && o.saturated(), t(e.data, r(a(e))) } }, length: function() { return o._tasks.length }, running: function() { return n }, idle: function() { return o._tasks.length + n === 0 }, pause: function() { !0 !== o.paused && (o.paused = !0) }, resume: function() { if (!1 !== o.paused) { o.paused = !1; for (var t = 1; t <= o.concurrency; t++) o.process() } } }; function s(t, e, n) { if (null != n && "function" != typeof n) throw new Error("task callback must be a function"); if (o.started = !0, null == t && o.idle()) setTimeout(function() { return o.drain() }, 1); else { var r = { data: t, callback: "function" == typeof n ? n : i }; e ? o._tasks.unshift(r) : o._tasks.push(r), setTimeout(function() { return o.process() }, 1) } } function a(t) { return function() { n -= 1, t.callback.apply(t, arguments), null != arguments[0] && o.error(arguments[0], t.data), n <= o.concurrency - o.buffer && o.unsaturated(), o.idle() && o.drain(), o.process() } } return o } }, function(t, e, n) { "use strict"; e.__esModule = !0, e.encodeBinary = r; var i = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; function r(t) { for (var e = "", n = 0; n < t.length;) { for (var r = [0, 0, 0], o = [0, 0, 0, 0], s = 0; s < r.length; ++s) n < t.length ? r[s] = 255 & t.charCodeAt(n++) : r[s] = 0; switch (o[0] = r[0] >> 2, o[1] = (3 & r[0]) << 4 | r[1] >> 4, o[2] = (15 & r[1]) << 2 | r[2] >> 6, o[3] = 63 & r[2], n - (t.length - 1)) { case 2: o[3] = 64, o[2] = 64; break; case 1: o[3] = 64 } for (var a = 0; a < o.length; ++a) e += i.charAt(o[a]) } return e } t.exports.default = r }, function(t, e, n) { "use strict"; e.__esModule = !0, e.default = function() { return function(t, e) { var n = t.name + "_image"; if (t.data && t.type === i.Resource.TYPE.JSON && t.data.frames && !this.resources[n]) { var r = { crossOrigin: t.crossOrigin, metadata: t.metadata.imageMetadata, parentResource: t }, a = s(t, this.baseUrl); this.add(n, a, r, function(n) { if (n.error) e(n.error); else { var i = new o.Spritesheet(n.texture.baseTexture, t.data, t.url); i.parse(function() { t.spritesheet = i, t.textures = i.textures, e() }) } }) } else e() } }, e.getResourcePath = s; var i = n(25), r = function(t) { return t && t.__esModule ? t : { default: t } }(n(65)), o = n(5); function s(t, e) { return t.isDataUrl ? t.data.meta.image : r.default.resolve(t.url.replace(e, ""), t.data.meta.image) } }, function(t, e, n) { "use strict"; e.__esModule = !0, e.default = function() { return function(t, e) { t.data && t.type === i.Resource.TYPE.IMAGE && (t.texture = r.default.fromLoader(t.data, t.url, t.name)), e() } }; var i = n(25), r = function(t) { return t && t.__esModule ? t : { default: t } }(n(17)) }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function(t) { return t && t.__esModule ? t : { default: t } }(n(26)), r = function(t) { function e(n, r, o) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, e); var s = function(t, e) { if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return !e || "object" != typeof e && "function" != typeof e ? t : e }(this, t.call(this, n)); return s._ready = !0, s.verticesX = r || 10, s.verticesY = o || 10, s.drawMode = i.default.DRAW_MODES.TRIANGLES, s.refresh(), s } return function(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, enumerable: !1, writable: !0, configurable: !0 } }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) }(e, t), e.prototype._refresh = function() { for (var t = this._texture, e = this.verticesX * this.verticesY, n = [], i = [], r = [], o = this.verticesX - 1, s = this.verticesY - 1, a = t.width / o, u = t.height / s, l = 0; l < e; l++) { var h = l % this.verticesX, c = l / this.verticesX | 0; n.push(h * a, c * u), i.push(h / o, c / s) } for (var f = o * s, p = 0; p < f; p++) { var d = p % o, y = p / o | 0, g = y * this.verticesX + d, m = y * this.verticesX + d + 1, v = (y + 1) * this.verticesX + d, _ = (y + 1) * this.verticesX + d + 1; r.push(g, m, v), r.push(m, _, v) } this.vertices = new Float32Array(n), this.uvs = new Float32Array(i), this.colors = new Float32Array([]), this.indices = new Uint16Array(r), this.dirty++, this.indexDirty++, this.multiplyUvs() }, e.prototype._onTextureUpdate = function() { i.default.prototype._onTextureUpdate.call(this), this._ready && this.refresh() }, e }(i.default); e.default = r }, function(t, e, n) { "use strict"; e.__esModule = !0; var i = function() { function t(e) { ! function(t, e) { if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") }(this, t), this.maxItemsPerFrame = e, this.itemsLeft = 0 } return t.prototype.beginFrame = function() { this.itemsLeft = this.maxItemsPerFrame }, t.prototype.allowedToUpload = function() { return this.itemsLeft-- > 0 }, t }(); e.default = i }, function(t, e) { PIXI.DisplayObject.prototype.applyParams = function(t) { var e = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : []; for (var n in t) - 1 === e.indexOf(n) && (this[n] = t[n]); return this }, PIXI.DisplayObject.prototype.addTo = function(t, e) { return void 0 === e ? t.addChild(this) : t.addChildAt(this, e), this }, Object.defineProperties(PIXI.DisplayObject.prototype, { responsive: { get: function() { return this.interactive }, set: function(t) { this.interactive = t, this.buttonMode = t } }, anchorX: { get: function() { return this.anchor.x }, set: function(t) { this.anchor.x = t } }, anchorY: { get: function() { return this.anchor.y }, set: function(t) { this.anchor.y = t } }, anchorXY: { get: function() { return { x: this.anchor.x, y: this.anchor.y } }, set: function(t) { this.anchor.x = t, this.anchor.y = t } }, scaleX: { get: function() { return this.scale.x }, set: function(t) { this.scale.x = t } }, scaleY: { get: function() { return this.scale.y }, set: function(t) { this.scale.y = t } }, scaleXY: { get: function() { return { x: this.scale.x, y: this.scale.y } }, set: function(t) { this.scale.x = t, this.scale.y = t } } }) }, function(t, e, n) { "use strict"; n(210); var i = n(49), r = n.n(i); Object.assign || (Object.assign = r.a), n(211), n(212), n(213), n(214) }, function(t, e) { t.exports = "precision lowp float;\r\n\r\nvarying vec2 vTextureCoord;\r\nuniform sampler2D uSampler;\r\nuniform float offset;\r\nuniform float intensity;\r\n\r\nfloat draw(vec2 tc, float y)\r\n{\r\n\treturn smoothstep(y - 0.4, y, tc.y) - smoothstep(y, y + 0.4, tc.y);\r\n}\r\n\r\nvoid main(void)\r\n{\r\n\tvec4 mask = texture2D(uSampler, vTextureCoord);\r\n\tfloat y = vTextureCoord.x + 2.0 * (offset - 0.5);\r\n\tfloat line = draw(vTextureCoord, y);\r\n\r\n\tgl_FragColor = mask;\r\n\tgl_FragColor.rgb += line * vec3(intensity) * mask.a;\r\n}" }, function(t, e, n) { var i; ! function(e, n) { "use strict"; "object" == typeof t.exports ? t.exports = e.document ? n(e, !0) : function(t) { if (!t.document) throw new Error("jQuery requires a window with a document"); return n(t) } : n(e) }("undefined" != typeof window ? window : this, function(n, r) { "use strict"; var o = [], s = n.document, a = Object.getPrototypeOf, u = o.slice, l = o.concat, h = o.push, c = o.indexOf, f = {}, p = f.toString, d = f.hasOwnProperty, y = d.toString, g = y.call(Object), m = {}, v = function(t) { return "function" == typeof t && "number" != typeof t.nodeType }, _ = function(t) { return null != t && t === t.window }, b = { type: !0, src: !0, nonce: !0, noModule: !0 }; function x(t, e, n) { var i, r, o = (n = n || s).createElement("script"); if (o.text = t, e) for (i in b)(r = e[i] || e.getAttribute && e.getAttribute(i)) && o.setAttribute(i, r); n.head.appendChild(o).parentNode.removeChild(o) } function w(t) { return null == t ? t + "" : "object" == typeof t || "function" == typeof t ? f[p.call(t)] || "object" : typeof t } var T = function(t, e) { return new T.fn.init(t, e) }, S = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; function P(t) { var e = !!t && "length" in t && t.length, n = w(t); return !v(t) && !_(t) && ("array" === n || 0 === e || "number" == typeof e && e > 0 && e - 1 in t) } T.fn = T.prototype = { jquery: "3.4.1", constructor: T, length: 0, toArray: function() { return u.call(this) }, get: function(t) { return null == t ? u.call(this) : t < 0 ? this[t + this.length] : this[t] }, pushStack: function(t) { var e = T.merge(this.constructor(), t); return e.prevObject = this, e }, each: function(t) { return T.each(this, t) }, map: function(t) { return this.pushStack(T.map(this, function(e, n) { return t.call(e, n, e) })) }, slice: function() { return this.pushStack(u.apply(this, arguments)) }, first: function() { return this.eq(0) }, last: function() { return this.eq(-1) }, eq: function(t) { var e = this.length, n = +t + (t < 0 ? e : 0); return this.pushStack(n >= 0 && n < e ? [this[n]] : []) }, end: function() { return this.prevObject || this.constructor() }, push: h, sort: o.sort, splice: o.splice }, T.extend = T.fn.extend = function() { var t, e, n, i, r, o, s = arguments[0] || {}, a = 1, u = arguments.length, l = !1; for ("boolean" == typeof s && (l = s, s = arguments[a] || {}, a++), "object" == typeof s || v(s) || (s = {}), a === u && (s = this, a--); a < u; a++) if (null != (t = arguments[a])) for (e in t) i = t[e], "__proto__" !== e && s !== i && (l && i && (T.isPlainObject(i) || (r = Array.isArray(i))) ? (n = s[e], o = r && !Array.isArray(n) ? [] : r || T.isPlainObject(n) ? n : {}, r = !1, s[e] = T.extend(l, o, i)) : void 0 !== i && (s[e] = i)); return s }, T.extend({ expando: "jQuery" + ("3.4.1" + Math.random()).replace(/\D/g, ""), isReady: !0, error: function(t) { throw new Error(t) }, noop: function() {}, isPlainObject: function(t) { var e, n; return !(!t || "[object Object]" !== p.call(t) || (e = a(t)) && ("function" != typeof(n = d.call(e, "constructor") && e.constructor) || y.call(n) !== g)) }, isEmptyObject: function(t) { var e; for (e in t) return !1; return !0 }, globalEval: function(t, e) { x(t, { nonce: e && e.nonce }) }, each: function(t, e) { var n, i = 0; if (P(t)) for (n = t.length; i < n && !1 !== e.call(t[i], i, t[i]); i++); else for (i in t) if (!1 === e.call(t[i], i, t[i])) break; return t }, trim: function(t) { return null == t ? "" : (t + "").replace(S, "") }, makeArray: function(t, e) { var n = e || []; return null != t && (P(Object(t)) ? T.merge(n, "string" == typeof t ? [t] : t) : h.call(n, t)), n }, inArray: function(t, e, n) { return null == e ? -1 : c.call(e, t, n) }, merge: function(t, e) { for (var n = +e.length, i = 0, r = t.length; i < n; i++) t[r++] = e[i]; return t.length = r, t }, grep: function(t, e, n) { for (var i = [], r = 0, o = t.length, s = !n; r < o; r++) !e(t[r], r) !== s && i.push(t[r]); return i }, map: function(t, e, n) { var i, r, o = 0, s = []; if (P(t)) for (i = t.length; o < i; o++) null != (r = e(t[o], o, n)) && s.push(r); else for (o in t) null != (r = e(t[o], o, n)) && s.push(r); return l.apply([], s) }, guid: 1, support: m }), "function" == typeof Symbol && (T.fn[Symbol.iterator] = o[Symbol.iterator]), T.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "), function(t, e) { f["[object " + e + "]"] = e.toLowerCase() }); var E = function(t) { var e, n, i, r, o, s, a, u, l, h, c, f, p, d, y, g, m, v, _, b = "sizzle" + 1 * new Date, x = t.document, w = 0, T = 0, S = ut(), P = ut(), E = ut(), O = ut(), k = function(t, e) { return t === e && (c = !0), 0 }, M = {}.hasOwnProperty, I = [], A = I.pop, C = I.push, R = I.push, D = I.slice, L = function(t, e) { for (var n = 0, i = t.length; n < i; n++) if (t[n] === e) return n; return -1 }, j = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", N = "[\\x20\\t\\r\\n\\f]", B = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", F = "\\[" + N + "*(" + B + ")(?:" + N + "*([*^$|!~]?=)" + N + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + B + "))|)" + N + "*\\]", X = ":(" + B + ")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|" + F + ")*)|.*)\\)|)", U = new RegExp(N + "+", "g"), V = new RegExp("^" + N + "+|((?:^|[^\\\\])(?:\\\\.)*)" + N + "+$", "g"), Y = new RegExp("^" + N + "*," + N + "*"), H = new RegExp("^" + N + "*([>+~]|" + N + ")" + N + "*"), W = new RegExp(N + "|>"), z = new RegExp(X), G = new RegExp("^" + B + "$"), q = { ID: new RegExp("^#(" + B + ")"), CLASS: new RegExp("^\\.(" + B + ")"), TAG: new RegExp("^(" + B + "|[*])"), ATTR: new RegExp("^" + F), PSEUDO: new RegExp("^" + X), CHILD: new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + N + "*(even|odd|(([+-]|)(\\d*)n|)" + N + "*(?:([+-]|)" + N + "*(\\d+)|))" + N + "*\\)|)", "i"), bool: new RegExp("^(?:" + j + ")$", "i"), needsContext: new RegExp("^" + N + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + N + "*((?:-\\d)?\\d*)" + N + "*\\)|)(?=[^-]|$)", "i") }, Z = /HTML$/i, K = /^(?:input|select|textarea|button)$/i, J = /^h\d$/i, Q = /^[^{]+\{\s*\[native \w/, $ = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, tt = /[+~]/, et = new RegExp("\\\\([\\da-f]{1,6}" + N + "?|(" + N + ")|.)", "ig"), nt = function(t, e, n) { var i = "0x" + e - 65536; return i != i || n ? e : i < 0 ? String.fromCharCode(i + 65536) : String.fromCharCode(i >> 10 | 55296, 1023 & i | 56320) }, it = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, rt = function(t, e) { return e ? "\0" === t ? "�" : t.slice(0, -1) + "\\" + t.charCodeAt(t.length - 1).toString(16) + " " : "\\" + t }, ot = function() { f() }, st = bt(function(t) { return !0 === t.disabled && "fieldset" === t.nodeName.toLowerCase() }, { dir: "parentNode", next: "legend" }); try { R.apply(I = D.call(x.childNodes), x.childNodes), I[x.childNodes.length].nodeType } catch (t) { R = { apply: I.length ? function(t, e) { C.apply(t, D.call(e)) } : function(t, e) { for (var n = t.length, i = 0; t[n++] = e[i++];); t.length = n - 1 } } } function at(t, e, i, r) { var o, a, l, h, c, d, m, v = e && e.ownerDocument, w = e ? e.nodeType : 9; if (i = i || [], "string" != typeof t || !t || 1 !== w && 9 !== w && 11 !== w) return i; if (!r && ((e ? e.ownerDocument || e : x) !== p && f(e), e = e || p, y)) { if (11 !== w && (c = $.exec(t))) if (o = c[1]) { if (9 === w) { if (!(l = e.getElementById(o))) return i; if (l.id === o) return i.push(l), i } else if (v && (l = v.getElementById(o)) && _(e, l) && l.id === o) return i.push(l), i } else { if (c[2]) return R.apply(i, e.getElementsByTagName(t)), i; if ((o = c[3]) && n.getElementsByClassName && e.getElementsByClassName) return R.apply(i, e.getElementsByClassName(o)), i } if (n.qsa && !O[t + " "] && (!g || !g.test(t)) && (1 !== w || "object" !== e.nodeName.toLowerCase())) { if (m = t, v = e, 1 === w && W.test(t)) { for ((h = e.getAttribute("id")) ? h = h.replace(it, rt) : e.setAttribute("id", h = b), a = (d = s(t)).length; a--;) d[a] = "#" + h + " " + _t(d[a]); m = d.join(","), v = tt.test(t) && mt(e.parentNode) || e } try { return R.apply(i, v.querySelectorAll(m)), i } catch (e) { O(t, !0) } finally { h === b && e.removeAttribute("id") } } } return u(t.replace(V, "$1"), e, i, r) } function ut() { var t = []; return function e(n, r) { return t.push(n + " ") > i.cacheLength && delete e[t.shift()], e[n + " "] = r } } function lt(t) { return t[b] = !0, t } function ht(t) { var e = p.createElement("fieldset"); try { return !!t(e) } catch (t) { return !1 } finally { e.parentNode && e.parentNode.removeChild(e), e = null } } function ct(t, e) { for (var n = t.split("|"), r = n.length; r--;) i.attrHandle[n[r]] = e } function ft(t, e) { var n = e && t, i = n && 1 === t.nodeType && 1 === e.nodeType && t.sourceIndex - e.sourceIndex; if (i) return i; if (n) for (; n = n.nextSibling;) if (n === e) return -1; return t ? 1 : -1 } function pt(t) { return function(e) { return "input" === e.nodeName.toLowerCase() && e.type === t } } function dt(t) { return function(e) { var n = e.nodeName.toLowerCase(); return ("input" === n || "button" === n) && e.type === t } } function yt(t) { return function(e) { return "form" in e ? e.parentNode && !1 === e.disabled ? "label" in e ? "label" in e.parentNode ? e.parentNode.disabled === t : e.disabled === t : e.isDisabled === t || e.isDisabled !== !t && st(e) === t : e.disabled === t : "label" in e && e.disabled === t } } function gt(t) { return lt(function(e) { return e = +e, lt(function(n, i) { for (var r, o = t([], n.length, e), s = o.length; s--;) n[r = o[s]] && (n[r] = !(i[r] = n[r])) }) }) } function mt(t) { return t && void 0 !== t.getElementsByTagName && t } for (e in n = at.support = {}, o = at.isXML = function(t) { var e = t.namespaceURI, n = (t.ownerDocument || t).documentElement; return !Z.test(e || n && n.nodeName || "HTML") }, f = at.setDocument = function(t) { var e, r, s = t ? t.ownerDocument || t : x; return s !== p && 9 === s.nodeType && s.documentElement ? (d = (p = s).documentElement, y = !o(p), x !== p && (r = p.defaultView) && r.top !== r && (r.addEventListener ? r.addEventListener("unload", ot, !1) : r.attachEvent && r.attachEvent("onunload", ot)), n.attributes = ht(function(t) { return t.className = "i", !t.getAttribute("className") }), n.getElementsByTagName = ht(function(t) { return t.appendChild(p.createComment("")), !t.getElementsByTagName("*").length }), n.getElementsByClassName = Q.test(p.getElementsByClassName), n.getById = ht(function(t) { return d.appendChild(t).id = b, !p.getElementsByName || !p.getElementsByName(b).length }), n.getById ? (i.filter.ID = function(t) { var e = t.replace(et, nt); return function(t) { return t.getAttribute("id") === e } }, i.find.ID = function(t, e) { if (void 0 !== e.getElementById && y) { var n = e.getElementById(t); return n ? [n] : [] } }) : (i.filter.ID = function(t) { var e = t.replace(et, nt); return function(t) { var n = void 0 !== t.getAttributeNode && t.getAttributeNode("id"); return n && n.value === e } }, i.find.ID = function(t, e) { if (void 0 !== e.getElementById && y) { var n, i, r, o = e.getElementById(t); if (o) { if ((n = o.getAttributeNode("id")) && n.value === t) return [o]; for (r = e.getElementsByName(t), i = 0; o = r[i++];) if ((n = o.getAttributeNode("id")) && n.value === t) return [o] } return [] } }), i.find.TAG = n.getElementsByTagName ? function(t, e) { return void 0 !== e.getElementsByTagName ? e.getElementsByTagName(t) : n.qsa ? e.querySelectorAll(t) : void 0 } : function(t, e) { var n, i = [], r = 0, o = e.getElementsByTagName(t); if ("*" === t) { for (; n = o[r++];) 1 === n.nodeType && i.push(n); return i } return o }, i.find.CLASS = n.getElementsByClassName && function(t, e) { if (void 0 !== e.getElementsByClassName && y) return e.getElementsByClassName(t) }, m = [], g = [], (n.qsa = Q.test(p.querySelectorAll)) && (ht(function(t) { d.appendChild(t).innerHTML = "", t.querySelectorAll("[msallowcapture^='']").length && g.push("[*^$]=" + N + "*(?:''|\"\")"), t.querySelectorAll("[selected]").length || g.push("\\[" + N + "*(?:value|" + j + ")"), t.querySelectorAll("[id~=" + b + "-]").length || g.push("~="), t.querySelectorAll(":checked").length || g.push(":checked"), t.querySelectorAll("a#" + b + "+*").length || g.push(".#.+[+~]") }), ht(function(t) { t.innerHTML = ""; var e = p.createElement("input"); e.setAttribute("type", "hidden"), t.appendChild(e).setAttribute("name", "D"), t.querySelectorAll("[name=d]").length && g.push("name" + N + "*[*^$|!~]?="), 2 !== t.querySelectorAll(":enabled").length && g.push(":enabled", ":disabled"), d.appendChild(t).disabled = !0, 2 !== t.querySelectorAll(":disabled").length && g.push(":enabled", ":disabled"), t.querySelectorAll("*,:x"), g.push(",.*:") })), (n.matchesSelector = Q.test(v = d.matches || d.webkitMatchesSelector || d.mozMatchesSelector || d.oMatchesSelector || d.msMatchesSelector)) && ht(function(t) { n.disconnectedMatch = v.call(t, "*"), v.call(t, "[s!='']:x"), m.push("!=", X) }), g = g.length && new RegExp(g.join("|")), m = m.length && new RegExp(m.join("|")), e = Q.test(d.compareDocumentPosition), _ = e || Q.test(d.contains) ? function(t, e) { var n = 9 === t.nodeType ? t.documentElement : t, i = e && e.parentNode; return t === i || !(!i || 1 !== i.nodeType || !(n.contains ? n.contains(i) : t.compareDocumentPosition && 16 & t.compareDocumentPosition(i))) } : function(t, e) { if (e) for (; e = e.parentNode;) if (e === t) return !0; return !1 }, k = e ? function(t, e) { if (t === e) return c = !0, 0; var i = !t.compareDocumentPosition - !e.compareDocumentPosition; return i || (1 & (i = (t.ownerDocument || t) === (e.ownerDocument || e) ? t.compareDocumentPosition(e) : 1) || !n.sortDetached && e.compareDocumentPosition(t) === i ? t === p || t.ownerDocument === x && _(x, t) ? -1 : e === p || e.ownerDocument === x && _(x, e) ? 1 : h ? L(h, t) - L(h, e) : 0 : 4 & i ? -1 : 1) } : function(t, e) { if (t === e) return c = !0, 0; var n, i = 0, r = t.parentNode, o = e.parentNode, s = [t], a = [e]; if (!r || !o) return t === p ? -1 : e === p ? 1 : r ? -1 : o ? 1 : h ? L(h, t) - L(h, e) : 0; if (r === o) return ft(t, e); for (n = t; n = n.parentNode;) s.unshift(n); for (n = e; n = n.parentNode;) a.unshift(n); for (; s[i] === a[i];) i++; return i ? ft(s[i], a[i]) : s[i] === x ? -1 : a[i] === x ? 1 : 0 }, p) : p }, at.matches = function(t, e) { return at(t, null, null, e) }, at.matchesSelector = function(t, e) { if ((t.ownerDocument || t) !== p && f(t), n.matchesSelector && y && !O[e + " "] && (!m || !m.test(e)) && (!g || !g.test(e))) try { var i = v.call(t, e); if (i || n.disconnectedMatch || t.document && 11 !== t.document.nodeType) return i } catch (t) { O(e, !0) } return at(e, p, null, [t]).length > 0 }, at.contains = function(t, e) { return (t.ownerDocument || t) !== p && f(t), _(t, e) }, at.attr = function(t, e) { (t.ownerDocument || t) !== p && f(t); var r = i.attrHandle[e.toLowerCase()], o = r && M.call(i.attrHandle, e.toLowerCase()) ? r(t, e, !y) : void 0; return void 0 !== o ? o : n.attributes || !y ? t.getAttribute(e) : (o = t.getAttributeNode(e)) && o.specified ? o.value : null }, at.escape = function(t) { return (t + "").replace(it, rt) }, at.error = function(t) { throw new Error("Syntax error, unrecognized expression: " + t) }, at.uniqueSort = function(t) { var e, i = [], r = 0, o = 0; if (c = !n.detectDuplicates, h = !n.sortStable && t.slice(0), t.sort(k), c) { for (; e = t[o++];) e === t[o] && (r = i.push(o)); for (; r--;) t.splice(i[r], 1) } return h = null, t }, r = at.getText = function(t) { var e, n = "", i = 0, o = t.nodeType; if (o) { if (1 === o || 9 === o || 11 === o) { if ("string" == typeof t.textContent) return t.textContent; for (t = t.firstChild; t; t = t.nextSibling) n += r(t) } else if (3 === o || 4 === o) return t.nodeValue } else for (; e = t[i++];) n += r(e); return n }, (i = at.selectors = { cacheLength: 50, createPseudo: lt, match: q, attrHandle: {}, find: {}, relative: { ">": { dir: "parentNode", first: !0 }, " ": { dir: "parentNode" }, "+": { dir: "previousSibling", first: !0 }, "~": { dir: "previousSibling" } }, preFilter: { ATTR: function(t) { return t[1] = t[1].replace(et, nt), t[3] = (t[3] || t[4] || t[5] || "").replace(et, nt), "~=" === t[2] && (t[3] = " " + t[3] + " "), t.slice(0, 4) }, CHILD: function(t) { return t[1] = t[1].toLowerCase(), "nth" === t[1].slice(0, 3) ? (t[3] || at.error(t[0]), t[4] = +(t[4] ? t[5] + (t[6] || 1) : 2 * ("even" === t[3] || "odd" === t[3])), t[5] = +(t[7] + t[8] || "odd" === t[3])) : t[3] && at.error(t[0]), t }, PSEUDO: function(t) { var e, n = !t[6] && t[2]; return q.CHILD.test(t[0]) ? null : (t[3] ? t[2] = t[4] || t[5] || "" : n && z.test(n) && (e = s(n, !0)) && (e = n.indexOf(")", n.length - e) - n.length) && (t[0] = t[0].slice(0, e), t[2] = n.slice(0, e)), t.slice(0, 3)) } }, filter: { TAG: function(t) { var e = t.replace(et, nt).toLowerCase(); return "*" === t ? function() { return !0 } : function(t) { return t.nodeName && t.nodeName.toLowerCase() === e } }, CLASS: function(t) { var e = S[t + " "]; return e || (e = new RegExp("(^|" + N + ")" + t + "(" + N + "|$)")) && S(t, function(t) { return e.test("string" == typeof t.className && t.className || void 0 !== t.getAttribute && t.getAttribute("class") || "") }) }, ATTR: function(t, e, n) { return function(i) { var r = at.attr(i, t); return null == r ? "!=" === e : !e || (r += "", "=" === e ? r === n : "!=" === e ? r !== n : "^=" === e ? n && 0 === r.indexOf(n) : "*=" === e ? n && r.indexOf(n) > -1 : "$=" === e ? n && r.slice(-n.length) === n : "~=" === e ? (" " + r.replace(U, " ") + " ").indexOf(n) > -1 : "|=" === e && (r === n || r.slice(0, n.length + 1) === n + "-")) } }, CHILD: function(t, e, n, i, r) { var o = "nth" !== t.slice(0, 3), s = "last" !== t.slice(-4), a = "of-type" === e; return 1 === i && 0 === r ? function(t) { return !!t.parentNode } : function(e, n, u) { var l, h, c, f, p, d, y = o !== s ? "nextSibling" : "previousSibling", g = e.parentNode, m = a && e.nodeName.toLowerCase(), v = !u && !a, _ = !1; if (g) { if (o) { for (; y;) { for (f = e; f = f[y];) if (a ? f.nodeName.toLowerCase() === m : 1 === f.nodeType) return !1; d = y = "only" === t && !d && "nextSibling" } return !0 } if (d = [s ? g.firstChild : g.lastChild], s && v) { for (_ = (p = (l = (h = (c = (f = g)[b] || (f[b] = {}))[f.uniqueID] || (c[f.uniqueID] = {}))[t] || [])[0] === w && l[1]) && l[2], f = p && g.childNodes[p]; f = ++p && f && f[y] || (_ = p = 0) || d.pop();) if (1 === f.nodeType && ++_ && f === e) { h[t] = [w, p, _]; break } } else if (v && (_ = p = (l = (h = (c = (f = e)[b] || (f[b] = {}))[f.uniqueID] || (c[f.uniqueID] = {}))[t] || [])[0] === w && l[1]), !1 === _) for (; (f = ++p && f && f[y] || (_ = p = 0) || d.pop()) && ((a ? f.nodeName.toLowerCase() !== m : 1 !== f.nodeType) || !++_ || (v && ((h = (c = f[b] || (f[b] = {}))[f.uniqueID] || (c[f.uniqueID] = {}))[t] = [w, _]), f !== e));); return (_ -= r) === i || _ % i == 0 && _ / i >= 0 } } }, PSEUDO: function(t, e) { var n, r = i.pseudos[t] || i.setFilters[t.toLowerCase()] || at.error("unsupported pseudo: " + t); return r[b] ? r(e) : r.length > 1 ? (n = [t, t, "", e], i.setFilters.hasOwnProperty(t.toLowerCase()) ? lt(function(t, n) { for (var i, o = r(t, e), s = o.length; s--;) t[i = L(t, o[s])] = !(n[i] = o[s]) }) : function(t) { return r(t, 0, n) }) : r } }, pseudos: { not: lt(function(t) { var e = [], n = [], i = a(t.replace(V, "$1")); return i[b] ? lt(function(t, e, n, r) { for (var o, s = i(t, null, r, []), a = t.length; a--;)(o = s[a]) && (t[a] = !(e[a] = o)) }) : function(t, r, o) { return e[0] = t, i(e, null, o, n), e[0] = null, !n.pop() } }), has: lt(function(t) { return function(e) { return at(t, e).length > 0 } }), contains: lt(function(t) { return t = t.replace(et, nt), function(e) { return (e.textContent || r(e)).indexOf(t) > -1 } }), lang: lt(function(t) { return G.test(t || "") || at.error("unsupported lang: " + t), t = t.replace(et, nt).toLowerCase(), function(e) { var n; do { if (n = y ? e.lang : e.getAttribute("xml:lang") || e.getAttribute("lang")) return (n = n.toLowerCase()) === t || 0 === n.indexOf(t + "-") } while ((e = e.parentNode) && 1 === e.nodeType); return !1 } }), target: function(e) { var n = t.location && t.location.hash; return n && n.slice(1) === e.id }, root: function(t) { return t === d }, focus: function(t) { return t === p.activeElement && (!p.hasFocus || p.hasFocus()) && !!(t.type || t.href || ~t.tabIndex) }, enabled: yt(!1), disabled: yt(!0), checked: function(t) { var e = t.nodeName.toLowerCase(); return "input" === e && !!t.checked || "option" === e && !!t.selected }, selected: function(t) { return t.parentNode && t.parentNode.selectedIndex, !0 === t.selected }, empty: function(t) { for (t = t.firstChild; t; t = t.nextSibling) if (t.nodeType < 6) return !1; return !0 }, parent: function(t) { return !i.pseudos.empty(t) }, header: function(t) { return J.test(t.nodeName) }, input: function(t) { return K.test(t.nodeName) }, button: function(t) { var e = t.nodeName.toLowerCase(); return "input" === e && "button" === t.type || "button" === e }, text: function(t) { var e; return "input" === t.nodeName.toLowerCase() && "text" === t.type && (null == (e = t.getAttribute("type")) || "text" === e.toLowerCase()) }, first: gt(function() { return [0] }), last: gt(function(t, e) { return [e - 1] }), eq: gt(function(t, e, n) { return [n < 0 ? n + e : n] }), even: gt(function(t, e) { for (var n = 0; n < e; n += 2) t.push(n); return t }), odd: gt(function(t, e) { for (var n = 1; n < e; n += 2) t.push(n); return t }), lt: gt(function(t, e, n) { for (var i = n < 0 ? n + e : n > e ? e : n; --i >= 0;) t.push(i); return t }), gt: gt(function(t, e, n) { for (var i = n < 0 ? n + e : n; ++i < e;) t.push(i); return t }) } }).pseudos.nth = i.pseudos.eq, { radio: !0, checkbox: !0, file: !0, password: !0, image: !0 }) i.pseudos[e] = pt(e); for (e in { submit: !0, reset: !0 }) i.pseudos[e] = dt(e); function vt() {} function _t(t) { for (var e = 0, n = t.length, i = ""; e < n; e++) i += t[e].value; return i } function bt(t, e, n) { var i = e.dir, r = e.next, o = r || i, s = n && "parentNode" === o, a = T++; return e.first ? function(e, n, r) { for (; e = e[i];) if (1 === e.nodeType || s) return t(e, n, r); return !1 } : function(e, n, u) { var l, h, c, f = [w, a]; if (u) { for (; e = e[i];) if ((1 === e.nodeType || s) && t(e, n, u)) return !0 } else for (; e = e[i];) if (1 === e.nodeType || s) if (h = (c = e[b] || (e[b] = {}))[e.uniqueID] || (c[e.uniqueID] = {}), r && r === e.nodeName.toLowerCase()) e = e[i] || e; else { if ((l = h[o]) && l[0] === w && l[1] === a) return f[2] = l[2]; if (h[o] = f, f[2] = t(e, n, u)) return !0 } return !1 } } function xt(t) { return t.length > 1 ? function(e, n, i) { for (var r = t.length; r--;) if (!t[r](e, n, i)) return !1; return !0 } : t[0] } function wt(t, e, n, i, r) { for (var o, s = [], a = 0, u = t.length, l = null != e; a < u; a++)(o = t[a]) && (n && !n(o, i, r) || (s.push(o), l && e.push(a))); return s } function Tt(t, e, n, i, r, o) { return i && !i[b] && (i = Tt(i)), r && !r[b] && (r = Tt(r, o)), lt(function(o, s, a, u) { var l, h, c, f = [], p = [], d = s.length, y = o || function(t, e, n) { for (var i = 0, r = e.length; i < r; i++) at(t, e[i], n); return n }(e || "*", a.nodeType ? [a] : a, []), g = !t || !o && e ? y : wt(y, f, t, a, u), m = n ? r || (o ? t : d || i) ? [] : s : g; if (n && n(g, m, a, u), i) for (l = wt(m, p), i(l, [], a, u), h = l.length; h--;)(c = l[h]) && (m[p[h]] = !(g[p[h]] = c)); if (o) { if (r || t) { if (r) { for (l = [], h = m.length; h--;)(c = m[h]) && l.push(g[h] = c); r(null, m = [], l, u) } for (h = m.length; h--;)(c = m[h]) && (l = r ? L(o, c) : f[h]) > -1 && (o[l] = !(s[l] = c)) } } else m = wt(m === s ? m.splice(d, m.length) : m), r ? r(null, s, m, u) : R.apply(s, m) }) } function St(t) { for (var e, n, r, o = t.length, s = i.relative[t[0].type], a = s || i.relative[" "], u = s ? 1 : 0, h = bt(function(t) { return t === e }, a, !0), c = bt(function(t) { return L(e, t) > -1 }, a, !0), f = [function(t, n, i) { var r = !s && (i || n !== l) || ((e = n).nodeType ? h(t, n, i) : c(t, n, i)); return e = null, r }]; u < o; u++) if (n = i.relative[t[u].type]) f = [bt(xt(f), n)]; else { if ((n = i.filter[t[u].type].apply(null, t[u].matches))[b]) { for (r = ++u; r < o && !i.relative[t[r].type]; r++); return Tt(u > 1 && xt(f), u > 1 && _t(t.slice(0, u - 1).concat({ value: " " === t[u - 2].type ? "*" : "" })).replace(V, "$1"), n, u < r && St(t.slice(u, r)), r < o && St(t = t.slice(r)), r < o && _t(t)) } f.push(n) } return xt(f) } return vt.prototype = i.filters = i.pseudos, i.setFilters = new vt, s = at.tokenize = function(t, e) { var n, r, o, s, a, u, l, h = P[t + " "]; if (h) return e ? 0 : h.slice(0); for (a = t, u = [], l = i.preFilter; a;) { for (s in n && !(r = Y.exec(a)) || (r && (a = a.slice(r[0].length) || a), u.push(o = [])), n = !1, (r = H.exec(a)) && (n = r.shift(), o.push({ value: n, type: r[0].replace(V, " ") }), a = a.slice(n.length)), i.filter) !(r = q[s].exec(a)) || l[s] && !(r = l[s](r)) || (n = r.shift(), o.push({ value: n, type: s, matches: r }), a = a.slice(n.length)); if (!n) break } return e ? a.length : a ? at.error(t) : P(t, u).slice(0) }, a = at.compile = function(t, e) { var n, r = [], o = [], a = E[t + " "]; if (!a) { for (e || (e = s(t)), n = e.length; n--;)(a = St(e[n]))[b] ? r.push(a) : o.push(a); (a = E(t, function(t, e) { var n = e.length > 0, r = t.length > 0, o = function(o, s, a, u, h) { var c, d, g, m = 0, v = "0", _ = o && [], b = [], x = l, T = o || r && i.find.TAG("*", h), S = w += null == x ? 1 : Math.random() || .1, P = T.length; for (h && (l = s === p || s || h); v !== P && null != (c = T[v]); v++) { if (r && c) { for (d = 0, s || c.ownerDocument === p || (f(c), a = !y); g = t[d++];) if (g(c, s || p, a)) { u.push(c); break } h && (w = S) } n && ((c = !g && c) && m--, o && _.push(c)) } if (m += v, n && v !== m) { for (d = 0; g = e[d++];) g(_, b, s, a); if (o) { if (m > 0) for (; v--;) _[v] || b[v] || (b[v] = A.call(u)); b = wt(b) } R.apply(u, b), h && !o && b.length > 0 && m + e.length > 1 && at.uniqueSort(u) } return h && (w = S, l = x), _ }; return n ? lt(o) : o }(o, r))).selector = t } return a }, u = at.select = function(t, e, n, r) { var o, u, l, h, c, f = "function" == typeof t && t, p = !r && s(t = f.selector || t); if (n = n || [], 1 === p.length) { if ((u = p[0] = p[0].slice(0)).length > 2 && "ID" === (l = u[0]).type && 9 === e.nodeType && y && i.relative[u[1].type]) { if (!(e = (i.find.ID(l.matches[0].replace(et, nt), e) || [])[0])) return n; f && (e = e.parentNode), t = t.slice(u.shift().value.length) } for (o = q.needsContext.test(t) ? 0 : u.length; o-- && (l = u[o], !i.relative[h = l.type]);) if ((c = i.find[h]) && (r = c(l.matches[0].replace(et, nt), tt.test(u[0].type) && mt(e.parentNode) || e))) { if (u.splice(o, 1), !(t = r.length && _t(u))) return R.apply(n, r), n; break } } return (f || a(t, p))(r, e, !y, n, !e || tt.test(t) && mt(e.parentNode) || e), n }, n.sortStable = b.split("").sort(k).join("") === b, n.detectDuplicates = !!c, f(), n.sortDetached = ht(function(t) { return 1 & t.compareDocumentPosition(p.createElement("fieldset")) }), ht(function(t) { return t.innerHTML = "", "#" === t.firstChild.getAttribute("href") }) || ct("type|href|height|width", function(t, e, n) { if (!n) return t.getAttribute(e, "type" === e.toLowerCase() ? 1 : 2) }), n.attributes && ht(function(t) { return t.innerHTML = "", t.firstChild.setAttribute("value", ""), "" === t.firstChild.getAttribute("value") }) || ct("value", function(t, e, n) { if (!n && "input" === t.nodeName.toLowerCase()) return t.defaultValue }), ht(function(t) { return null == t.getAttribute("disabled") }) || ct(j, function(t, e, n) { var i; if (!n) return !0 === t[e] ? e.toLowerCase() : (i = t.getAttributeNode(e)) && i.specified ? i.value : null }), at }(n); T.find = E, T.expr = E.selectors, T.expr[":"] = T.expr.pseudos, T.uniqueSort = T.unique = E.uniqueSort, T.text = E.getText, T.isXMLDoc = E.isXML, T.contains = E.contains, T.escapeSelector = E.escape; var O = function(t, e, n) { for (var i = [], r = void 0 !== n; (t = t[e]) && 9 !== t.nodeType;) if (1 === t.nodeType) { if (r && T(t).is(n)) break; i.push(t) } return i }, k = function(t, e) { for (var n = []; t; t = t.nextSibling) 1 === t.nodeType && t !== e && n.push(t); return n }, M = T.expr.match.needsContext; function I(t, e) { return t.nodeName && t.nodeName.toLowerCase() === e.toLowerCase() } var A = /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i; function C(t, e, n) { return v(e) ? T.grep(t, function(t, i) { return !!e.call(t, i, t) !== n }) : e.nodeType ? T.grep(t, function(t) { return t === e !== n }) : "string" != typeof e ? T.grep(t, function(t) { return c.call(e, t) > -1 !== n }) : T.filter(e, t, n) } T.filter = function(t, e, n) { var i = e[0]; return n && (t = ":not(" + t + ")"), 1 === e.length && 1 === i.nodeType ? T.find.matchesSelector(i, t) ? [i] : [] : T.find.matches(t, T.grep(e, function(t) { return 1 === t.nodeType })) }, T.fn.extend({ find: function(t) { var e, n, i = this.length, r = this; if ("string" != typeof t) return this.pushStack(T(t).filter(function() { for (e = 0; e < i; e++) if (T.contains(r[e], this)) return !0 })); for (n = this.pushStack([]), e = 0; e < i; e++) T.find(t, r[e], n); return i > 1 ? T.uniqueSort(n) : n }, filter: function(t) { return this.pushStack(C(this, t || [], !1)) }, not: function(t) { return this.pushStack(C(this, t || [], !0)) }, is: function(t) { return !!C(this, "string" == typeof t && M.test(t) ? T(t) : t || [], !1).length } }); var R, D = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/; (T.fn.init = function(t, e, n) { var i, r; if (!t) return this; if (n = n || R, "string" == typeof t) { if (!(i = "<" === t[0] && ">" === t[t.length - 1] && t.length >= 3 ? [null, t, null] : D.exec(t)) || !i[1] && e) return !e || e.jquery ? (e || n).find(t) : this.constructor(e).find(t); if (i[1]) { if (e = e instanceof T ? e[0] : e, T.merge(this, T.parseHTML(i[1], e && e.nodeType ? e.ownerDocument || e : s, !0)), A.test(i[1]) && T.isPlainObject(e)) for (i in e) v(this[i]) ? this[i](e[i]) : this.attr(i, e[i]); return this } return (r = s.getElementById(i[2])) && (this[0] = r, this.length = 1), this } return t.nodeType ? (this[0] = t, this.length = 1, this) : v(t) ? void 0 !== n.ready ? n.ready(t) : t(T) : T.makeArray(t, this) }).prototype = T.fn, R = T(s); var L = /^(?:parents|prev(?:Until|All))/, j = { children: !0, contents: !0, next: !0, prev: !0 }; function N(t, e) { for (; (t = t[e]) && 1 !== t.nodeType;); return t } T.fn.extend({ has: function(t) { var e = T(t, this), n = e.length; return this.filter(function() { for (var t = 0; t < n; t++) if (T.contains(this, e[t])) return !0 }) }, closest: function(t, e) { var n, i = 0, r = this.length, o = [], s = "string" != typeof t && T(t); if (!M.test(t)) for (; i < r; i++) for (n = this[i]; n && n !== e; n = n.parentNode) if (n.nodeType < 11 && (s ? s.index(n) > -1 : 1 === n.nodeType && T.find.matchesSelector(n, t))) { o.push(n); break } return this.pushStack(o.length > 1 ? T.uniqueSort(o) : o) }, index: function(t) { return t ? "string" == typeof t ? c.call(T(t), this[0]) : c.call(this, t.jquery ? t[0] : t) : this[0] && this[0].parentNode ? this.first().prevAll().length : -1 }, add: function(t, e) { return this.pushStack(T.uniqueSort(T.merge(this.get(), T(t, e)))) }, addBack: function(t) { return this.add(null == t ? this.prevObject : this.prevObject.filter(t)) } }), T.each({ parent: function(t) { var e = t.parentNode; return e && 11 !== e.nodeType ? e : null }, parents: function(t) { return O(t, "parentNode") }, parentsUntil: function(t, e, n) { return O(t, "parentNode", n) }, next: function(t) { return N(t, "nextSibling") }, prev: function(t) { return N(t, "previousSibling") }, nextAll: function(t) { return O(t, "nextSibling") }, prevAll: function(t) { return O(t, "previousSibling") }, nextUntil: function(t, e, n) { return O(t, "nextSibling", n) }, prevUntil: function(t, e, n) { return O(t, "previousSibling", n) }, siblings: function(t) { return k((t.parentNode || {}).firstChild, t) }, children: function(t) { return k(t.firstChild) }, contents: function(t) { return void 0 !== t.contentDocument ? t.contentDocument : (I(t, "template") && (t = t.content || t), T.merge([], t.childNodes)) } }, function(t, e) { T.fn[t] = function(n, i) { var r = T.map(this, e, n); return "Until" !== t.slice(-5) && (i = n), i && "string" == typeof i && (r = T.filter(i, r)), this.length > 1 && (j[t] || T.uniqueSort(r), L.test(t) && r.reverse()), this.pushStack(r) } }); var B = /[^\x20\t\r\n\f]+/g; function F(t) { return t } function X(t) { throw t } function U(t, e, n, i) { var r; try { t && v(r = t.promise) ? r.call(t).done(e).fail(n) : t && v(r = t.then) ? r.call(t, e, n) : e.apply(void 0, [t].slice(i)) } catch (t) { n.apply(void 0, [t]) } } T.Callbacks = function(t) { t = "string" == typeof t ? function(t) { var e = {}; return T.each(t.match(B) || [], function(t, n) { e[n] = !0 }), e }(t) : T.extend({}, t); var e, n, i, r, o = [], s = [], a = -1, u = function() { for (r = r || t.once, i = e = !0; s.length; a = -1) for (n = s.shift(); ++a < o.length;) !1 === o[a].apply(n[0], n[1]) && t.stopOnFalse && (a = o.length, n = !1); t.memory || (n = !1), e = !1, r && (o = n ? [] : "") }, l = { add: function() { return o && (n && !e && (a = o.length - 1, s.push(n)), function e(n) { T.each(n, function(n, i) { v(i) ? t.unique && l.has(i) || o.push(i) : i && i.length && "string" !== w(i) && e(i) }) }(arguments), n && !e && u()), this }, remove: function() { return T.each(arguments, function(t, e) { for (var n; (n = T.inArray(e, o, n)) > -1;) o.splice(n, 1), n <= a && a-- }), this }, has: function(t) { return t ? T.inArray(t, o) > -1 : o.length > 0 }, empty: function() { return o && (o = []), this }, disable: function() { return r = s = [], o = n = "", this }, disabled: function() { return !o }, lock: function() { return r = s = [], n || e || (o = n = ""), this }, locked: function() { return !!r }, fireWith: function(t, n) { return r || (n = [t, (n = n || []).slice ? n.slice() : n], s.push(n), e || u()), this }, fire: function() { return l.fireWith(this, arguments), this }, fired: function() { return !!i } }; return l }, T.extend({ Deferred: function(t) { var e = [ ["notify", "progress", T.Callbacks("memory"), T.Callbacks("memory"), 2], ["resolve", "done", T.Callbacks("once memory"), T.Callbacks("once memory"), 0, "resolved"], ["reject", "fail", T.Callbacks("once memory"), T.Callbacks("once memory"), 1, "rejected"] ], i = "pending", r = { state: function() { return i }, always: function() { return o.done(arguments).fail(arguments), this }, catch: function(t) { return r.then(null, t) }, pipe: function() { var t = arguments; return T.Deferred(function(n) { T.each(e, function(e, i) { var r = v(t[i[4]]) && t[i[4]]; o[i[1]](function() { var t = r && r.apply(this, arguments); t && v(t.promise) ? t.promise().progress(n.notify).done(n.resolve).fail(n.reject) : n[i[0] + "With"](this, r ? [t] : arguments) }) }), t = null }).promise() }, then: function(t, i, r) { var o = 0; function s(t, e, i, r) { return function() { var a = this, u = arguments, l = function() { var n, l; if (!(t < o)) { if ((n = i.apply(a, u)) === e.promise()) throw new TypeError("Thenable self-resolution"); l = n && ("object" == typeof n || "function" == typeof n) && n.then, v(l) ? r ? l.call(n, s(o, e, F, r), s(o, e, X, r)) : (o++, l.call(n, s(o, e, F, r), s(o, e, X, r), s(o, e, F, e.notifyWith))) : (i !== F && (a = void 0, u = [n]), (r || e.resolveWith)(a, u)) } }, h = r ? l : function() { try { l() } catch (n) { T.Deferred.exceptionHook && T.Deferred.exceptionHook(n, h.stackTrace), t + 1 >= o && (i !== X && (a = void 0, u = [n]), e.rejectWith(a, u)) } }; t ? h() : (T.Deferred.getStackHook && (h.stackTrace = T.Deferred.getStackHook()), n.setTimeout(h)) } } return T.Deferred(function(n) { e[0][3].add(s(0, n, v(r) ? r : F, n.notifyWith)), e[1][3].add(s(0, n, v(t) ? t : F)), e[2][3].add(s(0, n, v(i) ? i : X)) }).promise() }, promise: function(t) { return null != t ? T.extend(t, r) : r } }, o = {}; return T.each(e, function(t, n) { var s = n[2], a = n[5]; r[n[1]] = s.add, a && s.add(function() { i = a }, e[3 - t][2].disable, e[3 - t][3].disable, e[0][2].lock, e[0][3].lock), s.add(n[3].fire), o[n[0]] = function() { return o[n[0] + "With"](this === o ? void 0 : this, arguments), this }, o[n[0] + "With"] = s.fireWith }), r.promise(o), t && t.call(o, o), o }, when: function(t) { var e = arguments.length, n = e, i = Array(n), r = u.call(arguments), o = T.Deferred(), s = function(t) { return function(n) { i[t] = this, r[t] = arguments.length > 1 ? u.call(arguments) : n, --e || o.resolveWith(i, r) } }; if (e <= 1 && (U(t, o.done(s(n)).resolve, o.reject, !e), "pending" === o.state() || v(r[n] && r[n].then))) return o.then(); for (; n--;) U(r[n], s(n), o.reject); return o.promise() } }); var V = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; T.Deferred.exceptionHook = function(t, e) { n.console && n.console.warn && t && V.test(t.name) && n.console.warn("jQuery.Deferred exception: " + t.message, t.stack, e) }, T.readyException = function(t) { n.setTimeout(function() { throw t }) }; var Y = T.Deferred(); function H() { s.removeEventListener("DOMContentLoaded", H), n.removeEventListener("load", H), T.ready() } T.fn.ready = function(t) { return Y.then(t).catch(function(t) { T.readyException(t) }), this }, T.extend({ isReady: !1, readyWait: 1, ready: function(t) { (!0 === t ? --T.readyWait : T.isReady) || (T.isReady = !0, !0 !== t && --T.readyWait > 0 || Y.resolveWith(s, [T])) } }), T.ready.then = Y.then, "complete" === s.readyState || "loading" !== s.readyState && !s.documentElement.doScroll ? n.setTimeout(T.ready) : (s.addEventListener("DOMContentLoaded", H), n.addEventListener("load", H)); var W = function(t, e, n, i, r, o, s) { var a = 0, u = t.length, l = null == n; if ("object" === w(n)) for (a in r = !0, n) W(t, e, a, n[a], !0, o, s); else if (void 0 !== i && (r = !0, v(i) || (s = !0), l && (s ? (e.call(t, i), e = null) : (l = e, e = function(t, e, n) { return l.call(T(t), n) })), e)) for (; a < u; a++) e(t[a], n, s ? i : i.call(t[a], a, e(t[a], n))); return r ? t : l ? e.call(t) : u ? e(t[0], n) : o }, z = /^-ms-/, G = /-([a-z])/g; function q(t, e) { return e.toUpperCase() } function Z(t) { return t.replace(z, "ms-").replace(G, q) } var K = function(t) { return 1 === t.nodeType || 9 === t.nodeType || !+t.nodeType }; function J() { this.expando = T.expando + J.uid++ } J.uid = 1, J.prototype = { cache: function(t) { var e = t[this.expando]; return e || (e = {}, K(t) && (t.nodeType ? t[this.expando] = e : Object.defineProperty(t, this.expando, { value: e, configurable: !0 }))), e }, set: function(t, e, n) { var i, r = this.cache(t); if ("string" == typeof e) r[Z(e)] = n; else for (i in e) r[Z(i)] = e[i]; return r }, get: function(t, e) { return void 0 === e ? this.cache(t) : t[this.expando] && t[this.expando][Z(e)] }, access: function(t, e, n) { return void 0 === e || e && "string" == typeof e && void 0 === n ? this.get(t, e) : (this.set(t, e, n), void 0 !== n ? n : e) }, remove: function(t, e) { var n, i = t[this.expando]; if (void 0 !== i) { if (void 0 !== e) { n = (e = Array.isArray(e) ? e.map(Z) : (e = Z(e)) in i ? [e] : e.match(B) || []).length; for (; n--;) delete i[e[n]] }(void 0 === e || T.isEmptyObject(i)) && (t.nodeType ? t[this.expando] = void 0 : delete t[this.expando]) } }, hasData: function(t) { var e = t[this.expando]; return void 0 !== e && !T.isEmptyObject(e) } }; var Q = new J, $ = new J, tt = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, et = /[A-Z]/g; function nt(t, e, n) { var i; if (void 0 === n && 1 === t.nodeType) if (i = "data-" + e.replace(et, "-$&").toLowerCase(), "string" == typeof(n = t.getAttribute(i))) { try { n = function(t) { return "true" === t || "false" !== t && ("null" === t ? null : t === +t + "" ? +t : tt.test(t) ? JSON.parse(t) : t) }(n) } catch (t) {} $.set(t, e, n) } else n = void 0; return n } T.extend({ hasData: function(t) { return $.hasData(t) || Q.hasData(t) }, data: function(t, e, n) { return $.access(t, e, n) }, removeData: function(t, e) { $.remove(t, e) }, _data: function(t, e, n) { return Q.access(t, e, n) }, _removeData: function(t, e) { Q.remove(t, e) } }), T.fn.extend({ data: function(t, e) { var n, i, r, o = this[0], s = o && o.attributes; if (void 0 === t) { if (this.length && (r = $.get(o), 1 === o.nodeType && !Q.get(o, "hasDataAttrs"))) { for (n = s.length; n--;) s[n] && 0 === (i = s[n].name).indexOf("data-") && (i = Z(i.slice(5)), nt(o, i, r[i])); Q.set(o, "hasDataAttrs", !0) } return r } return "object" == typeof t ? this.each(function() { $.set(this, t) }) : W(this, function(e) { var n; if (o && void 0 === e) return void 0 !== (n = $.get(o, t)) ? n : void 0 !== (n = nt(o, t)) ? n : void 0; this.each(function() { $.set(this, t, e) }) }, null, e, arguments.length > 1, null, !0) }, removeData: function(t) { return this.each(function() { $.remove(this, t) }) } }), T.extend({ queue: function(t, e, n) { var i; if (t) return e = (e || "fx") + "queue", i = Q.get(t, e), n && (!i || Array.isArray(n) ? i = Q.access(t, e, T.makeArray(n)) : i.push(n)), i || [] }, dequeue: function(t, e) { e = e || "fx"; var n = T.queue(t, e), i = n.length, r = n.shift(), o = T._queueHooks(t, e); "inprogress" === r && (r = n.shift(), i--), r && ("fx" === e && n.unshift("inprogress"), delete o.stop, r.call(t, function() { T.dequeue(t, e) }, o)), !i && o && o.empty.fire() }, _queueHooks: function(t, e) { var n = e + "queueHooks"; return Q.get(t, n) || Q.access(t, n, { empty: T.Callbacks("once memory").add(function() { Q.remove(t, [e + "queue", n]) }) }) } }), T.fn.extend({ queue: function(t, e) { var n = 2; return "string" != typeof t && (e = t, t = "fx", n--), arguments.length < n ? T.queue(this[0], t) : void 0 === e ? this : this.each(function() { var n = T.queue(this, t, e); T._queueHooks(this, t), "fx" === t && "inprogress" !== n[0] && T.dequeue(this, t) }) }, dequeue: function(t) { return this.each(function() { T.dequeue(this, t) }) }, clearQueue: function(t) { return this.queue(t || "fx", []) }, promise: function(t, e) { var n, i = 1, r = T.Deferred(), o = this, s = this.length, a = function() { --i || r.resolveWith(o, [o]) }; for ("string" != typeof t && (e = t, t = void 0), t = t || "fx"; s--;)(n = Q.get(o[s], t + "queueHooks")) && n.empty && (i++, n.empty.add(a)); return a(), r.promise(e) } }); var it = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, rt = new RegExp("^(?:([+-])=|)(" + it + ")([a-z%]*)$", "i"), ot = ["Top", "Right", "Bottom", "Left"], st = s.documentElement, at = function(t) { return T.contains(t.ownerDocument, t) }, ut = { composed: !0 }; st.getRootNode && (at = function(t) { return T.contains(t.ownerDocument, t) || t.getRootNode(ut) === t.ownerDocument }); var lt = function(t, e) { return "none" === (t = e || t).style.display || "" === t.style.display && at(t) && "none" === T.css(t, "display") }, ht = function(t, e, n, i) { var r, o, s = {}; for (o in e) s[o] = t.style[o], t.style[o] = e[o]; for (o in r = n.apply(t, i || []), e) t.style[o] = s[o]; return r }; function ct(t, e, n, i) { var r, o, s = 20, a = i ? function() { return i.cur() } : function() { return T.css(t, e, "") }, u = a(), l = n && n[3] || (T.cssNumber[e] ? "" : "px"), h = t.nodeType && (T.cssNumber[e] || "px" !== l && +u) && rt.exec(T.css(t, e)); if (h && h[3] !== l) { for (u /= 2, l = l || h[3], h = +u || 1; s--;) T.style(t, e, h + l), (1 - o) * (1 - (o = a() / u || .5)) <= 0 && (s = 0), h /= o; h *= 2, T.style(t, e, h + l), n = n || [] } return n && (h = +h || +u || 0, r = n[1] ? h + (n[1] + 1) * n[2] : +n[2], i && (i.unit = l, i.start = h, i.end = r)), r } var ft = {}; function pt(t) { var e, n = t.ownerDocument, i = t.nodeName, r = ft[i]; return r || (e = n.body.appendChild(n.createElement(i)), r = T.css(e, "display"), e.parentNode.removeChild(e), "none" === r && (r = "block"), ft[i] = r, r) } function dt(t, e) { for (var n, i, r = [], o = 0, s = t.length; o < s; o++)(i = t[o]).style && (n = i.style.display, e ? ("none" === n && (r[o] = Q.get(i, "display") || null, r[o] || (i.style.display = "")), "" === i.style.display && lt(i) && (r[o] = pt(i))) : "none" !== n && (r[o] = "none", Q.set(i, "display", n))); for (o = 0; o < s; o++) null != r[o] && (t[o].style.display = r[o]); return t } T.fn.extend({ show: function() { return dt(this, !0) }, hide: function() { return dt(this) }, toggle: function(t) { return "boolean" == typeof t ? t ? this.show() : this.hide() : this.each(function() { lt(this) ? T(this).show() : T(this).hide() }) } }); var yt = /^(?:checkbox|radio)$/i, gt = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i, mt = /^$|^module$|\/(?:java|ecma)script/i, vt = { option: [1, ""], thead: [1, "", "
"], col: [2, "", "
"], tr: [2, "", "
"], td: [3, "", "
"], _default: [0, "", ""] }; function _t(t, e) { var n; return n = void 0 !== t.getElementsByTagName ? t.getElementsByTagName(e || "*") : void 0 !== t.querySelectorAll ? t.querySelectorAll(e || "*") : [], void 0 === e || e && I(t, e) ? T.merge([t], n) : n } function bt(t, e) { for (var n = 0, i = t.length; n < i; n++) Q.set(t[n], "globalEval", !e || Q.get(e[n], "globalEval")) } vt.optgroup = vt.option, vt.tbody = vt.tfoot = vt.colgroup = vt.caption = vt.thead, vt.th = vt.td; var xt = /<|&#?\w+;/; function wt(t, e, n, i, r) { for (var o, s, a, u, l, h, c = e.createDocumentFragment(), f = [], p = 0, d = t.length; p < d; p++) if ((o = t[p]) || 0 === o) if ("object" === w(o)) T.merge(f, o.nodeType ? [o] : o); else if (xt.test(o)) { for (s = s || c.appendChild(e.createElement("div")), a = (gt.exec(o) || ["", ""])[1].toLowerCase(), u = vt[a] || vt._default, s.innerHTML = u[1] + T.htmlPrefilter(o) + u[2], h = u[0]; h--;) s = s.lastChild; T.merge(f, s.childNodes), (s = c.firstChild).textContent = "" } else f.push(e.createTextNode(o)); for (c.textContent = "", p = 0; o = f[p++];) if (i && T.inArray(o, i) > -1) r && r.push(o); else if (l = at(o), s = _t(c.appendChild(o), "script"), l && bt(s), n) for (h = 0; o = s[h++];) mt.test(o.type || "") && n.push(o); return c }! function() { var t = s.createDocumentFragment().appendChild(s.createElement("div")), e = s.createElement("input"); e.setAttribute("type", "radio"), e.setAttribute("checked", "checked"), e.setAttribute("name", "t"), t.appendChild(e), m.checkClone = t.cloneNode(!0).cloneNode(!0).lastChild.checked, t.innerHTML = "", m.noCloneChecked = !!t.cloneNode(!0).lastChild.defaultValue }(); var Tt = /^key/, St = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, Pt = /^([^.]*)(?:\.(.+)|)/; function Et() { return !0 } function Ot() { return !1 } function kt(t, e) { return t === function() { try { return s.activeElement } catch (t) {} }() == ("focus" === e) } function Mt(t, e, n, i, r, o) { var s, a; if ("object" == typeof e) { for (a in "string" != typeof n && (i = i || n, n = void 0), e) Mt(t, a, n, i, e[a], o); return t } if (null == i && null == r ? (r = n, i = n = void 0) : null == r && ("string" == typeof n ? (r = i, i = void 0) : (r = i, i = n, n = void 0)), !1 === r) r = Ot; else if (!r) return t; return 1 === o && (s = r, (r = function(t) { return T().off(t), s.apply(this, arguments) }).guid = s.guid || (s.guid = T.guid++)), t.each(function() { T.event.add(this, e, r, i, n) }) } function It(t, e, n) { n ? (Q.set(t, e, !1), T.event.add(t, e, { namespace: !1, handler: function(t) { var i, r, o = Q.get(this, e); if (1 & t.isTrigger && this[e]) { if (o.length)(T.event.special[e] || {}).delegateType && t.stopPropagation(); else if (o = u.call(arguments), Q.set(this, e, o), i = n(this, e), this[e](), o !== (r = Q.get(this, e)) || i ? Q.set(this, e, !1) : r = {}, o !== r) return t.stopImmediatePropagation(), t.preventDefault(), r.value } else o.length && (Q.set(this, e, { value: T.event.trigger(T.extend(o[0], T.Event.prototype), o.slice(1), this) }), t.stopImmediatePropagation()) } })) : void 0 === Q.get(t, e) && T.event.add(t, e, Et) } T.event = { global: {}, add: function(t, e, n, i, r) { var o, s, a, u, l, h, c, f, p, d, y, g = Q.get(t); if (g) for (n.handler && (n = (o = n).handler, r = o.selector), r && T.find.matchesSelector(st, r), n.guid || (n.guid = T.guid++), (u = g.events) || (u = g.events = {}), (s = g.handle) || (s = g.handle = function(e) { return void 0 !== T && T.event.triggered !== e.type ? T.event.dispatch.apply(t, arguments) : void 0 }), l = (e = (e || "").match(B) || [""]).length; l--;) p = y = (a = Pt.exec(e[l]) || [])[1], d = (a[2] || "").split(".").sort(), p && (c = T.event.special[p] || {}, p = (r ? c.delegateType : c.bindType) || p, c = T.event.special[p] || {}, h = T.extend({ type: p, origType: y, data: i, handler: n, guid: n.guid, selector: r, needsContext: r && T.expr.match.needsContext.test(r), namespace: d.join(".") }, o), (f = u[p]) || ((f = u[p] = []).delegateCount = 0, c.setup && !1 !== c.setup.call(t, i, d, s) || t.addEventListener && t.addEventListener(p, s)), c.add && (c.add.call(t, h), h.handler.guid || (h.handler.guid = n.guid)), r ? f.splice(f.delegateCount++, 0, h) : f.push(h), T.event.global[p] = !0) }, remove: function(t, e, n, i, r) { var o, s, a, u, l, h, c, f, p, d, y, g = Q.hasData(t) && Q.get(t); if (g && (u = g.events)) { for (l = (e = (e || "").match(B) || [""]).length; l--;) if (p = y = (a = Pt.exec(e[l]) || [])[1], d = (a[2] || "").split(".").sort(), p) { for (c = T.event.special[p] || {}, f = u[p = (i ? c.delegateType : c.bindType) || p] || [], a = a[2] && new RegExp("(^|\\.)" + d.join("\\.(?:.*\\.|)") + "(\\.|$)"), s = o = f.length; o--;) h = f[o], !r && y !== h.origType || n && n.guid !== h.guid || a && !a.test(h.namespace) || i && i !== h.selector && ("**" !== i || !h.selector) || (f.splice(o, 1), h.selector && f.delegateCount--, c.remove && c.remove.call(t, h)); s && !f.length && (c.teardown && !1 !== c.teardown.call(t, d, g.handle) || T.removeEvent(t, p, g.handle), delete u[p]) } else for (p in u) T.event.remove(t, p + e[l], n, i, !0); T.isEmptyObject(u) && Q.remove(t, "handle events") } }, dispatch: function(t) { var e, n, i, r, o, s, a = T.event.fix(t), u = new Array(arguments.length), l = (Q.get(this, "events") || {})[a.type] || [], h = T.event.special[a.type] || {}; for (u[0] = a, e = 1; e < arguments.length; e++) u[e] = arguments[e]; if (a.delegateTarget = this, !h.preDispatch || !1 !== h.preDispatch.call(this, a)) { for (s = T.event.handlers.call(this, a, l), e = 0; (r = s[e++]) && !a.isPropagationStopped();) for (a.currentTarget = r.elem, n = 0; (o = r.handlers[n++]) && !a.isImmediatePropagationStopped();) a.rnamespace && !1 !== o.namespace && !a.rnamespace.test(o.namespace) || (a.handleObj = o, a.data = o.data, void 0 !== (i = ((T.event.special[o.origType] || {}).handle || o.handler).apply(r.elem, u)) && !1 === (a.result = i) && (a.preventDefault(), a.stopPropagation())); return h.postDispatch && h.postDispatch.call(this, a), a.result } }, handlers: function(t, e) { var n, i, r, o, s, a = [], u = e.delegateCount, l = t.target; if (u && l.nodeType && !("click" === t.type && t.button >= 1)) for (; l !== this; l = l.parentNode || this) if (1 === l.nodeType && ("click" !== t.type || !0 !== l.disabled)) { for (o = [], s = {}, n = 0; n < u; n++) void 0 === s[r = (i = e[n]).selector + " "] && (s[r] = i.needsContext ? T(r, this).index(l) > -1 : T.find(r, this, null, [l]).length), s[r] && o.push(i); o.length && a.push({ elem: l, handlers: o }) } return l = this, u < e.length && a.push({ elem: l, handlers: e.slice(u) }), a }, addProp: function(t, e) { Object.defineProperty(T.Event.prototype, t, { enumerable: !0, configurable: !0, get: v(e) ? function() { if (this.originalEvent) return e(this.originalEvent) } : function() { if (this.originalEvent) return this.originalEvent[t] }, set: function(e) { Object.defineProperty(this, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) } }) }, fix: function(t) { return t[T.expando] ? t : new T.Event(t) }, special: { load: { noBubble: !0 }, click: { setup: function(t) { var e = this || t; return yt.test(e.type) && e.click && I(e, "input") && It(e, "click", Et), !1 }, trigger: function(t) { var e = this || t; return yt.test(e.type) && e.click && I(e, "input") && It(e, "click"), !0 }, _default: function(t) { var e = t.target; return yt.test(e.type) && e.click && I(e, "input") && Q.get(e, "click") || I(e, "a") } }, beforeunload: { postDispatch: function(t) { void 0 !== t.result && t.originalEvent && (t.originalEvent.returnValue = t.result) } } } }, T.removeEvent = function(t, e, n) { t.removeEventListener && t.removeEventListener(e, n) }, T.Event = function(t, e) { if (!(this instanceof T.Event)) return new T.Event(t, e); t && t.type ? (this.originalEvent = t, this.type = t.type, this.isDefaultPrevented = t.defaultPrevented || void 0 === t.defaultPrevented && !1 === t.returnValue ? Et : Ot, this.target = t.target && 3 === t.target.nodeType ? t.target.parentNode : t.target, this.currentTarget = t.currentTarget, this.relatedTarget = t.relatedTarget) : this.type = t, e && T.extend(this, e), this.timeStamp = t && t.timeStamp || Date.now(), this[T.expando] = !0 }, T.Event.prototype = { constructor: T.Event, isDefaultPrevented: Ot, isPropagationStopped: Ot, isImmediatePropagationStopped: Ot, isSimulated: !1, preventDefault: function() { var t = this.originalEvent; this.isDefaultPrevented = Et, t && !this.isSimulated && t.preventDefault() }, stopPropagation: function() { var t = this.originalEvent; this.isPropagationStopped = Et, t && !this.isSimulated && t.stopPropagation() }, stopImmediatePropagation: function() { var t = this.originalEvent; this.isImmediatePropagationStopped = Et, t && !this.isSimulated && t.stopImmediatePropagation(), this.stopPropagation() } }, T.each({ altKey: !0, bubbles: !0, cancelable: !0, changedTouches: !0, ctrlKey: !0, detail: !0, eventPhase: !0, metaKey: !0, pageX: !0, pageY: !0, shiftKey: !0, view: !0, char: !0, code: !0, charCode: !0, key: !0, keyCode: !0, button: !0, buttons: !0, clientX: !0, clientY: !0, offsetX: !0, offsetY: !0, pointerId: !0, pointerType: !0, screenX: !0, screenY: !0, targetTouches: !0, toElement: !0, touches: !0, which: function(t) { var e = t.button; return null == t.which && Tt.test(t.type) ? null != t.charCode ? t.charCode : t.keyCode : !t.which && void 0 !== e && St.test(t.type) ? 1 & e ? 1 : 2 & e ? 3 : 4 & e ? 2 : 0 : t.which } }, T.event.addProp), T.each({ focus: "focusin", blur: "focusout" }, function(t, e) { T.event.special[t] = { setup: function() { return It(this, t, kt), !1 }, trigger: function() { return It(this, t), !0 }, delegateType: e } }), T.each({ mouseenter: "mouseover", mouseleave: "mouseout", pointerenter: "pointerover", pointerleave: "pointerout" }, function(t, e) { T.event.special[t] = { delegateType: e, bindType: e, handle: function(t) { var n, i = t.relatedTarget, r = t.handleObj; return i && (i === this || T.contains(this, i)) || (t.type = r.origType, n = r.handler.apply(this, arguments), t.type = e), n } } }), T.fn.extend({ on: function(t, e, n, i) { return Mt(this, t, e, n, i) }, one: function(t, e, n, i) { return Mt(this, t, e, n, i, 1) }, off: function(t, e, n) { var i, r; if (t && t.preventDefault && t.handleObj) return i = t.handleObj, T(t.delegateTarget).off(i.namespace ? i.origType + "." + i.namespace : i.origType, i.selector, i.handler), this; if ("object" == typeof t) { for (r in t) this.off(r, e, t[r]); return this } return !1 !== e && "function" != typeof e || (n = e, e = void 0), !1 === n && (n = Ot), this.each(function() { T.event.remove(this, t, n, e) }) } }); var At = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi, Ct = /\s*$/g; function Lt(t, e) { return I(t, "table") && I(11 !== e.nodeType ? e : e.firstChild, "tr") && T(t).children("tbody")[0] || t } function jt(t) { return t.type = (null !== t.getAttribute("type")) + "/" + t.type, t } function Nt(t) { return "true/" === (t.type || "").slice(0, 5) ? t.type = t.type.slice(5) : t.removeAttribute("type"), t } function Bt(t, e) { var n, i, r, o, s, a, u, l; if (1 === e.nodeType) { if (Q.hasData(t) && (o = Q.access(t), s = Q.set(e, o), l = o.events)) for (r in delete s.handle, s.events = {}, l) for (n = 0, i = l[r].length; n < i; n++) T.event.add(e, r, l[r][n]); $.hasData(t) && (a = $.access(t), u = T.extend({}, a), $.set(e, u)) } } function Ft(t, e) { var n = e.nodeName.toLowerCase(); "input" === n && yt.test(t.type) ? e.checked = t.checked : "input" !== n && "textarea" !== n || (e.defaultValue = t.defaultValue) } function Xt(t, e, n, i) { e = l.apply([], e); var r, o, s, a, u, h, c = 0, f = t.length, p = f - 1, d = e[0], y = v(d); if (y || f > 1 && "string" == typeof d && !m.checkClone && Rt.test(d)) return t.each(function(r) { var o = t.eq(r); y && (e[0] = d.call(this, r, o.html())), Xt(o, e, n, i) }); if (f && (o = (r = wt(e, t[0].ownerDocument, !1, t, i)).firstChild, 1 === r.childNodes.length && (r = o), o || i)) { for (a = (s = T.map(_t(r, "script"), jt)).length; c < f; c++) u = r, c !== p && (u = T.clone(u, !0, !0), a && T.merge(s, _t(u, "script"))), n.call(t[c], u, c); if (a) for (h = s[s.length - 1].ownerDocument, T.map(s, Nt), c = 0; c < a; c++) u = s[c], mt.test(u.type || "") && !Q.access(u, "globalEval") && T.contains(h, u) && (u.src && "module" !== (u.type || "").toLowerCase() ? T._evalUrl && !u.noModule && T._evalUrl(u.src, { nonce: u.nonce || u.getAttribute("nonce") }) : x(u.textContent.replace(Dt, ""), u, h)) } return t } function Ut(t, e, n) { for (var i, r = e ? T.filter(e, t) : t, o = 0; null != (i = r[o]); o++) n || 1 !== i.nodeType || T.cleanData(_t(i)), i.parentNode && (n && at(i) && bt(_t(i, "script")), i.parentNode.removeChild(i)); return t } T.extend({ htmlPrefilter: function(t) { return t.replace(At, "<$1>") }, clone: function(t, e, n) { var i, r, o, s, a = t.cloneNode(!0), u = at(t); if (!(m.noCloneChecked || 1 !== t.nodeType && 11 !== t.nodeType || T.isXMLDoc(t))) for (s = _t(a), i = 0, r = (o = _t(t)).length; i < r; i++) Ft(o[i], s[i]); if (e) if (n) for (o = o || _t(t), s = s || _t(a), i = 0, r = o.length; i < r; i++) Bt(o[i], s[i]); else Bt(t, a); return (s = _t(a, "script")).length > 0 && bt(s, !u && _t(t, "script")), a }, cleanData: function(t) { for (var e, n, i, r = T.event.special, o = 0; void 0 !== (n = t[o]); o++) if (K(n)) { if (e = n[Q.expando]) { if (e.events) for (i in e.events) r[i] ? T.event.remove(n, i) : T.removeEvent(n, i, e.handle); n[Q.expando] = void 0 } n[$.expando] && (n[$.expando] = void 0) } } }), T.fn.extend({ detach: function(t) { return Ut(this, t, !0) }, remove: function(t) { return Ut(this, t) }, text: function(t) { return W(this, function(t) { return void 0 === t ? T.text(this) : this.empty().each(function() { 1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || (this.textContent = t) }) }, null, t, arguments.length) }, append: function() { return Xt(this, arguments, function(t) { 1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || Lt(this, t).appendChild(t) }) }, prepend: function() { return Xt(this, arguments, function(t) { if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) { var e = Lt(this, t); e.insertBefore(t, e.firstChild) } }) }, before: function() { return Xt(this, arguments, function(t) { this.parentNode && this.parentNode.insertBefore(t, this) }) }, after: function() { return Xt(this, arguments, function(t) { this.parentNode && this.parentNode.insertBefore(t, this.nextSibling) }) }, empty: function() { for (var t, e = 0; null != (t = this[e]); e++) 1 === t.nodeType && (T.cleanData(_t(t, !1)), t.textContent = ""); return this }, clone: function(t, e) { return t = null != t && t, e = null == e ? t : e, this.map(function() { return T.clone(this, t, e) }) }, html: function(t) { return W(this, function(t) { var e = this[0] || {}, n = 0, i = this.length; if (void 0 === t && 1 === e.nodeType) return e.innerHTML; if ("string" == typeof t && !Ct.test(t) && !vt[(gt.exec(t) || ["", ""])[1].toLowerCase()]) { t = T.htmlPrefilter(t); try { for (; n < i; n++) 1 === (e = this[n] || {}).nodeType && (T.cleanData(_t(e, !1)), e.innerHTML = t); e = 0 } catch (t) {} } e && this.empty().append(t) }, null, t, arguments.length) }, replaceWith: function() { var t = []; return Xt(this, arguments, function(e) { var n = this.parentNode; T.inArray(this, t) < 0 && (T.cleanData(_t(this)), n && n.replaceChild(e, this)) }, t) } }), T.each({ appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after", replaceAll: "replaceWith" }, function(t, e) { T.fn[t] = function(t) { for (var n, i = [], r = T(t), o = r.length - 1, s = 0; s <= o; s++) n = s === o ? this : this.clone(!0), T(r[s])[e](n), h.apply(i, n.get()); return this.pushStack(i) } }); var Vt = new RegExp("^(" + it + ")(?!px)[a-z%]+$", "i"), Yt = function(t) { var e = t.ownerDocument.defaultView; return e && e.opener || (e = n), e.getComputedStyle(t) }, Ht = new RegExp(ot.join("|"), "i"); function Wt(t, e, n) { var i, r, o, s, a = t.style; return (n = n || Yt(t)) && ("" !== (s = n.getPropertyValue(e) || n[e]) || at(t) || (s = T.style(t, e)), !m.pixelBoxStyles() && Vt.test(s) && Ht.test(e) && (i = a.width, r = a.minWidth, o = a.maxWidth, a.minWidth = a.maxWidth = a.width = s, s = n.width, a.width = i, a.minWidth = r, a.maxWidth = o)), void 0 !== s ? s + "" : s } function zt(t, e) { return { get: function() { if (!t()) return (this.get = e).apply(this, arguments); delete this.get } } }! function() { function t() { if (h) { l.style.cssText = "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0", h.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%", st.appendChild(l).appendChild(h); var t = n.getComputedStyle(h); i = "1%" !== t.top, u = 12 === e(t.marginLeft), h.style.right = "60%", a = 36 === e(t.right), r = 36 === e(t.width), h.style.position = "absolute", o = 12 === e(h.offsetWidth / 3), st.removeChild(l), h = null } } function e(t) { return Math.round(parseFloat(t)) } var i, r, o, a, u, l = s.createElement("div"), h = s.createElement("div"); h.style && (h.style.backgroundClip = "content-box", h.cloneNode(!0).style.backgroundClip = "", m.clearCloneStyle = "content-box" === h.style.backgroundClip, T.extend(m, { boxSizingReliable: function() { return t(), r }, pixelBoxStyles: function() { return t(), a }, pixelPosition: function() { return t(), i }, reliableMarginLeft: function() { return t(), u }, scrollboxSize: function() { return t(), o } })) }(); var Gt = ["Webkit", "Moz", "ms"], qt = s.createElement("div").style, Zt = {}; function Kt(t) { return T.cssProps[t] || Zt[t] || (t in qt ? t : Zt[t] = function(t) { for (var e = t[0].toUpperCase() + t.slice(1), n = Gt.length; n--;) if ((t = Gt[n] + e) in qt) return t }(t) || t) } var Jt = /^(none|table(?!-c[ea]).+)/, Qt = /^--/, $t = { position: "absolute", visibility: "hidden", display: "block" }, te = { letterSpacing: "0", fontWeight: "400" }; function ee(t, e, n) { var i = rt.exec(e); return i ? Math.max(0, i[2] - (n || 0)) + (i[3] || "px") : e } function ne(t, e, n, i, r, o) { var s = "width" === e ? 1 : 0, a = 0, u = 0; if (n === (i ? "border" : "content")) return 0; for (; s < 4; s += 2) "margin" === n && (u += T.css(t, n + ot[s], !0, r)), i ? ("content" === n && (u -= T.css(t, "padding" + ot[s], !0, r)), "margin" !== n && (u -= T.css(t, "border" + ot[s] + "Width", !0, r))) : (u += T.css(t, "padding" + ot[s], !0, r), "padding" !== n ? u += T.css(t, "border" + ot[s] + "Width", !0, r) : a += T.css(t, "border" + ot[s] + "Width", !0, r)); return !i && o >= 0 && (u += Math.max(0, Math.ceil(t["offset" + e[0].toUpperCase() + e.slice(1)] - o - u - a - .5)) || 0), u } function ie(t, e, n) { var i = Yt(t), r = (!m.boxSizingReliable() || n) && "border-box" === T.css(t, "boxSizing", !1, i), o = r, s = Wt(t, e, i), a = "offset" + e[0].toUpperCase() + e.slice(1); if (Vt.test(s)) { if (!n) return s; s = "auto" } return (!m.boxSizingReliable() && r || "auto" === s || !parseFloat(s) && "inline" === T.css(t, "display", !1, i)) && t.getClientRects().length && (r = "border-box" === T.css(t, "boxSizing", !1, i), (o = a in t) && (s = t[a])), (s = parseFloat(s) || 0) + ne(t, e, n || (r ? "border" : "content"), o, i, s) + "px" } function re(t, e, n, i, r) { return new re.prototype.init(t, e, n, i, r) } T.extend({ cssHooks: { opacity: { get: function(t, e) { if (e) { var n = Wt(t, "opacity"); return "" === n ? "1" : n } } } }, cssNumber: { animationIterationCount: !0, columnCount: !0, fillOpacity: !0, flexGrow: !0, flexShrink: !0, fontWeight: !0, gridArea: !0, gridColumn: !0, gridColumnEnd: !0, gridColumnStart: !0, gridRow: !0, gridRowEnd: !0, gridRowStart: !0, lineHeight: !0, opacity: !0, order: !0, orphans: !0, widows: !0, zIndex: !0, zoom: !0 }, cssProps: {}, style: function(t, e, n, i) { if (t && 3 !== t.nodeType && 8 !== t.nodeType && t.style) { var r, o, s, a = Z(e), u = Qt.test(e), l = t.style; if (u || (e = Kt(a)), s = T.cssHooks[e] || T.cssHooks[a], void 0 === n) return s && "get" in s && void 0 !== (r = s.get(t, !1, i)) ? r : l[e]; "string" == (o = typeof n) && (r = rt.exec(n)) && r[1] && (n = ct(t, e, r), o = "number"), null != n && n == n && ("number" !== o || u || (n += r && r[3] || (T.cssNumber[a] ? "" : "px")), m.clearCloneStyle || "" !== n || 0 !== e.indexOf("background") || (l[e] = "inherit"), s && "set" in s && void 0 === (n = s.set(t, n, i)) || (u ? l.setProperty(e, n) : l[e] = n)) } }, css: function(t, e, n, i) { var r, o, s, a = Z(e); return Qt.test(e) || (e = Kt(a)), (s = T.cssHooks[e] || T.cssHooks[a]) && "get" in s && (r = s.get(t, !0, n)), void 0 === r && (r = Wt(t, e, i)), "normal" === r && e in te && (r = te[e]), "" === n || n ? (o = parseFloat(r), !0 === n || isFinite(o) ? o || 0 : r) : r } }), T.each(["height", "width"], function(t, e) { T.cssHooks[e] = { get: function(t, n, i) { if (n) return !Jt.test(T.css(t, "display")) || t.getClientRects().length && t.getBoundingClientRect().width ? ie(t, e, i) : ht(t, $t, function() { return ie(t, e, i) }) }, set: function(t, n, i) { var r, o = Yt(t), s = !m.scrollboxSize() && "absolute" === o.position, a = (s || i) && "border-box" === T.css(t, "boxSizing", !1, o), u = i ? ne(t, e, i, a, o) : 0; return a && s && (u -= Math.ceil(t["offset" + e[0].toUpperCase() + e.slice(1)] - parseFloat(o[e]) - ne(t, e, "border", !1, o) - .5)), u && (r = rt.exec(n)) && "px" !== (r[3] || "px") && (t.style[e] = n, n = T.css(t, e)), ee(0, n, u) } } }), T.cssHooks.marginLeft = zt(m.reliableMarginLeft, function(t, e) { if (e) return (parseFloat(Wt(t, "marginLeft")) || t.getBoundingClientRect().left - ht(t, { marginLeft: 0 }, function() { return t.getBoundingClientRect().left })) + "px" }), T.each({ margin: "", padding: "", border: "Width" }, function(t, e) { T.cssHooks[t + e] = { expand: function(n) { for (var i = 0, r = {}, o = "string" == typeof n ? n.split(" ") : [n]; i < 4; i++) r[t + ot[i] + e] = o[i] || o[i - 2] || o[0]; return r } }, "margin" !== t && (T.cssHooks[t + e].set = ee) }), T.fn.extend({ css: function(t, e) { return W(this, function(t, e, n) { var i, r, o = {}, s = 0; if (Array.isArray(e)) { for (i = Yt(t), r = e.length; s < r; s++) o[e[s]] = T.css(t, e[s], !1, i); return o } return void 0 !== n ? T.style(t, e, n) : T.css(t, e) }, t, e, arguments.length > 1) } }), T.Tween = re, re.prototype = { constructor: re, init: function(t, e, n, i, r, o) { this.elem = t, this.prop = n, this.easing = r || T.easing._default, this.options = e, this.start = this.now = this.cur(), this.end = i, this.unit = o || (T.cssNumber[n] ? "" : "px") }, cur: function() { var t = re.propHooks[this.prop]; return t && t.get ? t.get(this) : re.propHooks._default.get(this) }, run: function(t) { var e, n = re.propHooks[this.prop]; return this.options.duration ? this.pos = e = T.easing[this.easing](t, this.options.duration * t, 0, 1, this.options.duration) : this.pos = e = t, this.now = (this.end - this.start) * e + this.start, this.options.step && this.options.step.call(this.elem, this.now, this), n && n.set ? n.set(this) : re.propHooks._default.set(this), this } }, re.prototype.init.prototype = re.prototype, re.propHooks = { _default: { get: function(t) { var e; return 1 !== t.elem.nodeType || null != t.elem[t.prop] && null == t.elem.style[t.prop] ? t.elem[t.prop] : (e = T.css(t.elem, t.prop, "")) && "auto" !== e ? e : 0 }, set: function(t) { T.fx.step[t.prop] ? T.fx.step[t.prop](t) : 1 !== t.elem.nodeType || !T.cssHooks[t.prop] && null == t.elem.style[Kt(t.prop)] ? t.elem[t.prop] = t.now : T.style(t.elem, t.prop, t.now + t.unit) } } }, re.propHooks.scrollTop = re.propHooks.scrollLeft = { set: function(t) { t.elem.nodeType && t.elem.parentNode && (t.elem[t.prop] = t.now) } }, T.easing = { linear: function(t) { return t }, swing: function(t) { return .5 - Math.cos(t * Math.PI) / 2 }, _default: "swing" }, T.fx = re.prototype.init, T.fx.step = {}; var oe, se, ae = /^(?:toggle|show|hide)$/, ue = /queueHooks$/; function le() { se && (!1 === s.hidden && n.requestAnimationFrame ? n.requestAnimationFrame(le) : n.setTimeout(le, T.fx.interval), T.fx.tick()) } function he() { return n.setTimeout(function() { oe = void 0 }), oe = Date.now() } function ce(t, e) { var n, i = 0, r = { height: t }; for (e = e ? 1 : 0; i < 4; i += 2 - e) r["margin" + (n = ot[i])] = r["padding" + n] = t; return e && (r.opacity = r.width = t), r } function fe(t, e, n) { for (var i, r = (pe.tweeners[e] || []).concat(pe.tweeners["*"]), o = 0, s = r.length; o < s; o++) if (i = r[o].call(n, e, t)) return i } function pe(t, e, n) { var i, r, o = 0, s = pe.prefilters.length, a = T.Deferred().always(function() { delete u.elem }), u = function() { if (r) return !1; for (var e = oe || he(), n = Math.max(0, l.startTime + l.duration - e), i = 1 - (n / l.duration || 0), o = 0, s = l.tweens.length; o < s; o++) l.tweens[o].run(i); return a.notifyWith(t, [l, i, n]), i < 1 && s ? n : (s || a.notifyWith(t, [l, 1, 0]), a.resolveWith(t, [l]), !1) }, l = a.promise({ elem: t, props: T.extend({}, e), opts: T.extend(!0, { specialEasing: {}, easing: T.easing._default }, n), originalProperties: e, originalOptions: n, startTime: oe || he(), duration: n.duration, tweens: [], createTween: function(e, n) { var i = T.Tween(t, l.opts, e, n, l.opts.specialEasing[e] || l.opts.easing); return l.tweens.push(i), i }, stop: function(e) { var n = 0, i = e ? l.tweens.length : 0; if (r) return this; for (r = !0; n < i; n++) l.tweens[n].run(1); return e ? (a.notifyWith(t, [l, 1, 0]), a.resolveWith(t, [l, e])) : a.rejectWith(t, [l, e]), this } }), h = l.props; for (function(t, e) { var n, i, r, o, s; for (n in t) if (r = e[i = Z(n)], o = t[n], Array.isArray(o) && (r = o[1], o = t[n] = o[0]), n !== i && (t[i] = o, delete t[n]), (s = T.cssHooks[i]) && "expand" in s) for (n in o = s.expand(o), delete t[i], o) n in t || (t[n] = o[n], e[n] = r); else e[i] = r }(h, l.opts.specialEasing); o < s; o++) if (i = pe.prefilters[o].call(l, t, h, l.opts)) return v(i.stop) && (T._queueHooks(l.elem, l.opts.queue).stop = i.stop.bind(i)), i; return T.map(h, fe, l), v(l.opts.start) && l.opts.start.call(t, l), l.progress(l.opts.progress).done(l.opts.done, l.opts.complete).fail(l.opts.fail).always(l.opts.always), T.fx.timer(T.extend(u, { elem: t, anim: l, queue: l.opts.queue })), l } T.Animation = T.extend(pe, { tweeners: { "*": [function(t, e) { var n = this.createTween(t, e); return ct(n.elem, t, rt.exec(e), n), n }] }, tweener: function(t, e) { v(t) ? (e = t, t = ["*"]) : t = t.match(B); for (var n, i = 0, r = t.length; i < r; i++) n = t[i], pe.tweeners[n] = pe.tweeners[n] || [], pe.tweeners[n].unshift(e) }, prefilters: [function(t, e, n) { var i, r, o, s, a, u, l, h, c = "width" in e || "height" in e, f = this, p = {}, d = t.style, y = t.nodeType && lt(t), g = Q.get(t, "fxshow"); for (i in n.queue || (null == (s = T._queueHooks(t, "fx")).unqueued && (s.unqueued = 0, a = s.empty.fire, s.empty.fire = function() { s.unqueued || a() }), s.unqueued++, f.always(function() { f.always(function() { s.unqueued--, T.queue(t, "fx").length || s.empty.fire() }) })), e) if (r = e[i], ae.test(r)) { if (delete e[i], o = o || "toggle" === r, r === (y ? "hide" : "show")) { if ("show" !== r || !g || void 0 === g[i]) continue; y = !0 } p[i] = g && g[i] || T.style(t, i) } if ((u = !T.isEmptyObject(e)) || !T.isEmptyObject(p)) for (i in c && 1 === t.nodeType && (n.overflow = [d.overflow, d.overflowX, d.overflowY], null == (l = g && g.display) && (l = Q.get(t, "display")), "none" === (h = T.css(t, "display")) && (l ? h = l : (dt([t], !0), l = t.style.display || l, h = T.css(t, "display"), dt([t]))), ("inline" === h || "inline-block" === h && null != l) && "none" === T.css(t, "float") && (u || (f.done(function() { d.display = l }), null == l && (h = d.display, l = "none" === h ? "" : h)), d.display = "inline-block")), n.overflow && (d.overflow = "hidden", f.always(function() { d.overflow = n.overflow[0], d.overflowX = n.overflow[1], d.overflowY = n.overflow[2] })), u = !1, p) u || (g ? "hidden" in g && (y = g.hidden) : g = Q.access(t, "fxshow", { display: l }), o && (g.hidden = !y), y && dt([t], !0), f.done(function() { for (i in y || dt([t]), Q.remove(t, "fxshow"), p) T.style(t, i, p[i]) })), u = fe(y ? g[i] : 0, i, f), i in g || (g[i] = u.start, y && (u.end = u.start, u.start = 0)) }], prefilter: function(t, e) { e ? pe.prefilters.unshift(t) : pe.prefilters.push(t) } }), T.speed = function(t, e, n) { var i = t && "object" == typeof t ? T.extend({}, t) : { complete: n || !n && e || v(t) && t, duration: t, easing: n && e || e && !v(e) && e }; return T.fx.off ? i.duration = 0 : "number" != typeof i.duration && (i.duration in T.fx.speeds ? i.duration = T.fx.speeds[i.duration] : i.duration = T.fx.speeds._default), null != i.queue && !0 !== i.queue || (i.queue = "fx"), i.old = i.complete, i.complete = function() { v(i.old) && i.old.call(this), i.queue && T.dequeue(this, i.queue) }, i }, T.fn.extend({ fadeTo: function(t, e, n, i) { return this.filter(lt).css("opacity", 0).show().end().animate({ opacity: e }, t, n, i) }, animate: function(t, e, n, i) { var r = T.isEmptyObject(t), o = T.speed(e, n, i), s = function() { var e = pe(this, T.extend({}, t), o); (r || Q.get(this, "finish")) && e.stop(!0) }; return s.finish = s, r || !1 === o.queue ? this.each(s) : this.queue(o.queue, s) }, stop: function(t, e, n) { var i = function(t) { var e = t.stop; delete t.stop, e(n) }; return "string" != typeof t && (n = e, e = t, t = void 0), e && !1 !== t && this.queue(t || "fx", []), this.each(function() { var e = !0, r = null != t && t + "queueHooks", o = T.timers, s = Q.get(this); if (r) s[r] && s[r].stop && i(s[r]); else for (r in s) s[r] && s[r].stop && ue.test(r) && i(s[r]); for (r = o.length; r--;) o[r].elem !== this || null != t && o[r].queue !== t || (o[r].anim.stop(n), e = !1, o.splice(r, 1)); !e && n || T.dequeue(this, t) }) }, finish: function(t) { return !1 !== t && (t = t || "fx"), this.each(function() { var e, n = Q.get(this), i = n[t + "queue"], r = n[t + "queueHooks"], o = T.timers, s = i ? i.length : 0; for (n.finish = !0, T.queue(this, t, []), r && r.stop && r.stop.call(this, !0), e = o.length; e--;) o[e].elem === this && o[e].queue === t && (o[e].anim.stop(!0), o.splice(e, 1)); for (e = 0; e < s; e++) i[e] && i[e].finish && i[e].finish.call(this); delete n.finish }) } }), T.each(["toggle", "show", "hide"], function(t, e) { var n = T.fn[e]; T.fn[e] = function(t, i, r) { return null == t || "boolean" == typeof t ? n.apply(this, arguments) : this.animate(ce(e, !0), t, i, r) } }), T.each({ slideDown: ce("show"), slideUp: ce("hide"), slideToggle: ce("toggle"), fadeIn: { opacity: "show" }, fadeOut: { opacity: "hide" }, fadeToggle: { opacity: "toggle" } }, function(t, e) { T.fn[t] = function(t, n, i) { return this.animate(e, t, n, i) } }), T.timers = [], T.fx.tick = function() { var t, e = 0, n = T.timers; for (oe = Date.now(); e < n.length; e++)(t = n[e])() || n[e] !== t || n.splice(e--, 1); n.length || T.fx.stop(), oe = void 0 }, T.fx.timer = function(t) { T.timers.push(t), T.fx.start() }, T.fx.interval = 13, T.fx.start = function() { se || (se = !0, le()) }, T.fx.stop = function() { se = null }, T.fx.speeds = { slow: 600, fast: 200, _default: 400 }, T.fn.delay = function(t, e) { return t = T.fx && T.fx.speeds[t] || t, e = e || "fx", this.queue(e, function(e, i) { var r = n.setTimeout(e, t); i.stop = function() { n.clearTimeout(r) } }) }, function() { var t = s.createElement("input"), e = s.createElement("select").appendChild(s.createElement("option")); t.type = "checkbox", m.checkOn = "" !== t.value, m.optSelected = e.selected, (t = s.createElement("input")).value = "t", t.type = "radio", m.radioValue = "t" === t.value }(); var de, ye = T.expr.attrHandle; T.fn.extend({ attr: function(t, e) { return W(this, T.attr, t, e, arguments.length > 1) }, removeAttr: function(t) { return this.each(function() { T.removeAttr(this, t) }) } }), T.extend({ attr: function(t, e, n) { var i, r, o = t.nodeType; if (3 !== o && 8 !== o && 2 !== o) return void 0 === t.getAttribute ? T.prop(t, e, n) : (1 === o && T.isXMLDoc(t) || (r = T.attrHooks[e.toLowerCase()] || (T.expr.match.bool.test(e) ? de : void 0)), void 0 !== n ? null === n ? void T.removeAttr(t, e) : r && "set" in r && void 0 !== (i = r.set(t, n, e)) ? i : (t.setAttribute(e, n + ""), n) : r && "get" in r && null !== (i = r.get(t, e)) ? i : null == (i = T.find.attr(t, e)) ? void 0 : i) }, attrHooks: { type: { set: function(t, e) { if (!m.radioValue && "radio" === e && I(t, "input")) { var n = t.value; return t.setAttribute("type", e), n && (t.value = n), e } } } }, removeAttr: function(t, e) { var n, i = 0, r = e && e.match(B); if (r && 1 === t.nodeType) for (; n = r[i++];) t.removeAttribute(n) } }), de = { set: function(t, e, n) { return !1 === e ? T.removeAttr(t, n) : t.setAttribute(n, n), n } }, T.each(T.expr.match.bool.source.match(/\w+/g), function(t, e) { var n = ye[e] || T.find.attr; ye[e] = function(t, e, i) { var r, o, s = e.toLowerCase(); return i || (o = ye[s], ye[s] = r, r = null != n(t, e, i) ? s : null, ye[s] = o), r } }); var ge = /^(?:input|select|textarea|button)$/i, me = /^(?:a|area)$/i; function ve(t) { return (t.match(B) || []).join(" ") } function _e(t) { return t.getAttribute && t.getAttribute("class") || "" } function be(t) { return Array.isArray(t) ? t : "string" == typeof t && t.match(B) || [] } T.fn.extend({ prop: function(t, e) { return W(this, T.prop, t, e, arguments.length > 1) }, removeProp: function(t) { return this.each(function() { delete this[T.propFix[t] || t] }) } }), T.extend({ prop: function(t, e, n) { var i, r, o = t.nodeType; if (3 !== o && 8 !== o && 2 !== o) return 1 === o && T.isXMLDoc(t) || (e = T.propFix[e] || e, r = T.propHooks[e]), void 0 !== n ? r && "set" in r && void 0 !== (i = r.set(t, n, e)) ? i : t[e] = n : r && "get" in r && null !== (i = r.get(t, e)) ? i : t[e] }, propHooks: { tabIndex: { get: function(t) { var e = T.find.attr(t, "tabindex"); return e ? parseInt(e, 10) : ge.test(t.nodeName) || me.test(t.nodeName) && t.href ? 0 : -1 } } }, propFix: { for: "htmlFor", class: "className" } }), m.optSelected || (T.propHooks.selected = { get: function(t) { var e = t.parentNode; return e && e.parentNode && e.parentNode.selectedIndex, null }, set: function(t) { var e = t.parentNode; e && (e.selectedIndex, e.parentNode && e.parentNode.selectedIndex) } }), T.each(["tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable"], function() { T.propFix[this.toLowerCase()] = this }), T.fn.extend({ addClass: function(t) { var e, n, i, r, o, s, a, u = 0; if (v(t)) return this.each(function(e) { T(this).addClass(t.call(this, e, _e(this))) }); if ((e = be(t)).length) for (; n = this[u++];) if (r = _e(n), i = 1 === n.nodeType && " " + ve(r) + " ") { for (s = 0; o = e[s++];) i.indexOf(" " + o + " ") < 0 && (i += o + " "); r !== (a = ve(i)) && n.setAttribute("class", a) } return this }, removeClass: function(t) { var e, n, i, r, o, s, a, u = 0; if (v(t)) return this.each(function(e) { T(this).removeClass(t.call(this, e, _e(this))) }); if (!arguments.length) return this.attr("class", ""); if ((e = be(t)).length) for (; n = this[u++];) if (r = _e(n), i = 1 === n.nodeType && " " + ve(r) + " ") { for (s = 0; o = e[s++];) for (; i.indexOf(" " + o + " ") > -1;) i = i.replace(" " + o + " ", " "); r !== (a = ve(i)) && n.setAttribute("class", a) } return this }, toggleClass: function(t, e) { var n = typeof t, i = "string" === n || Array.isArray(t); return "boolean" == typeof e && i ? e ? this.addClass(t) : this.removeClass(t) : v(t) ? this.each(function(n) { T(this).toggleClass(t.call(this, n, _e(this), e), e) }) : this.each(function() { var e, r, o, s; if (i) for (r = 0, o = T(this), s = be(t); e = s[r++];) o.hasClass(e) ? o.removeClass(e) : o.addClass(e); else void 0 !== t && "boolean" !== n || ((e = _e(this)) && Q.set(this, "__className__", e), this.setAttribute && this.setAttribute("class", e || !1 === t ? "" : Q.get(this, "__className__") || "")) }) }, hasClass: function(t) { var e, n, i = 0; for (e = " " + t + " "; n = this[i++];) if (1 === n.nodeType && (" " + ve(_e(n)) + " ").indexOf(e) > -1) return !0; return !1 } }); var xe = /\r/g; T.fn.extend({ val: function(t) { var e, n, i, r = this[0]; return arguments.length ? (i = v(t), this.each(function(n) { var r; 1 === this.nodeType && (null == (r = i ? t.call(this, n, T(this).val()) : t) ? r = "" : "number" == typeof r ? r += "" : Array.isArray(r) && (r = T.map(r, function(t) { return null == t ? "" : t + "" })), (e = T.valHooks[this.type] || T.valHooks[this.nodeName.toLowerCase()]) && "set" in e && void 0 !== e.set(this, r, "value") || (this.value = r)) })) : r ? (e = T.valHooks[r.type] || T.valHooks[r.nodeName.toLowerCase()]) && "get" in e && void 0 !== (n = e.get(r, "value")) ? n : "string" == typeof(n = r.value) ? n.replace(xe, "") : null == n ? "" : n : void 0 } }), T.extend({ valHooks: { option: { get: function(t) { var e = T.find.attr(t, "value"); return null != e ? e : ve(T.text(t)) } }, select: { get: function(t) { var e, n, i, r = t.options, o = t.selectedIndex, s = "select-one" === t.type, a = s ? null : [], u = s ? o + 1 : r.length; for (i = o < 0 ? u : s ? o : 0; i < u; i++) if (((n = r[i]).selected || i === o) && !n.disabled && (!n.parentNode.disabled || !I(n.parentNode, "optgroup"))) { if (e = T(n).val(), s) return e; a.push(e) } return a }, set: function(t, e) { for (var n, i, r = t.options, o = T.makeArray(e), s = r.length; s--;)((i = r[s]).selected = T.inArray(T.valHooks.option.get(i), o) > -1) && (n = !0); return n || (t.selectedIndex = -1), o } } } }), T.each(["radio", "checkbox"], function() { T.valHooks[this] = { set: function(t, e) { if (Array.isArray(e)) return t.checked = T.inArray(T(t).val(), e) > -1 } }, m.checkOn || (T.valHooks[this].get = function(t) { return null === t.getAttribute("value") ? "on" : t.value }) }), m.focusin = "onfocusin" in n; var we = /^(?:focusinfocus|focusoutblur)$/, Te = function(t) { t.stopPropagation() }; T.extend(T.event, { trigger: function(t, e, i, r) { var o, a, u, l, h, c, f, p, y = [i || s], g = d.call(t, "type") ? t.type : t, m = d.call(t, "namespace") ? t.namespace.split(".") : []; if (a = p = u = i = i || s, 3 !== i.nodeType && 8 !== i.nodeType && !we.test(g + T.event.triggered) && (g.indexOf(".") > -1 && (g = (m = g.split(".")).shift(), m.sort()), h = g.indexOf(":") < 0 && "on" + g, (t = t[T.expando] ? t : new T.Event(g, "object" == typeof t && t)).isTrigger = r ? 2 : 3, t.namespace = m.join("."), t.rnamespace = t.namespace ? new RegExp("(^|\\.)" + m.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, t.result = void 0, t.target || (t.target = i), e = null == e ? [t] : T.makeArray(e, [t]), f = T.event.special[g] || {}, r || !f.trigger || !1 !== f.trigger.apply(i, e))) { if (!r && !f.noBubble && !_(i)) { for (l = f.delegateType || g, we.test(l + g) || (a = a.parentNode); a; a = a.parentNode) y.push(a), u = a; u === (i.ownerDocument || s) && y.push(u.defaultView || u.parentWindow || n) } for (o = 0; (a = y[o++]) && !t.isPropagationStopped();) p = a, t.type = o > 1 ? l : f.bindType || g, (c = (Q.get(a, "events") || {})[t.type] && Q.get(a, "handle")) && c.apply(a, e), (c = h && a[h]) && c.apply && K(a) && (t.result = c.apply(a, e), !1 === t.result && t.preventDefault()); return t.type = g, r || t.isDefaultPrevented() || f._default && !1 !== f._default.apply(y.pop(), e) || !K(i) || h && v(i[g]) && !_(i) && ((u = i[h]) && (i[h] = null), T.event.triggered = g, t.isPropagationStopped() && p.addEventListener(g, Te), i[g](), t.isPropagationStopped() && p.removeEventListener(g, Te), T.event.triggered = void 0, u && (i[h] = u)), t.result } }, simulate: function(t, e, n) { var i = T.extend(new T.Event, n, { type: t, isSimulated: !0 }); T.event.trigger(i, null, e) } }), T.fn.extend({ trigger: function(t, e) { return this.each(function() { T.event.trigger(t, e, this) }) }, triggerHandler: function(t, e) { var n = this[0]; if (n) return T.event.trigger(t, e, n, !0) } }), m.focusin || T.each({ focus: "focusin", blur: "focusout" }, function(t, e) { var n = function(t) { T.event.simulate(e, t.target, T.event.fix(t)) }; T.event.special[e] = { setup: function() { var i = this.ownerDocument || this, r = Q.access(i, e); r || i.addEventListener(t, n, !0), Q.access(i, e, (r || 0) + 1) }, teardown: function() { var i = this.ownerDocument || this, r = Q.access(i, e) - 1; r ? Q.access(i, e, r) : (i.removeEventListener(t, n, !0), Q.remove(i, e)) } } }); var Se = n.location, Pe = Date.now(), Ee = /\?/; T.parseXML = function(t) { var e; if (!t || "string" != typeof t) return null; try { e = (new n.DOMParser).parseFromString(t, "text/xml") } catch (t) { e = void 0 } return e && !e.getElementsByTagName("parsererror").length || T.error("Invalid XML: " + t), e }; var Oe = /\[\]$/, ke = /\r?\n/g, Me = /^(?:submit|button|image|reset|file)$/i, Ie = /^(?:input|select|textarea|keygen)/i; function Ae(t, e, n, i) { var r; if (Array.isArray(e)) T.each(e, function(e, r) { n || Oe.test(t) ? i(t, r) : Ae(t + "[" + ("object" == typeof r && null != r ? e : "") + "]", r, n, i) }); else if (n || "object" !== w(e)) i(t, e); else for (r in e) Ae(t + "[" + r + "]", e[r], n, i) } T.param = function(t, e) { var n, i = [], r = function(t, e) { var n = v(e) ? e() : e; i[i.length] = encodeURIComponent(t) + "=" + encodeURIComponent(null == n ? "" : n) }; if (null == t) return ""; if (Array.isArray(t) || t.jquery && !T.isPlainObject(t)) T.each(t, function() { r(this.name, this.value) }); else for (n in t) Ae(n, t[n], e, r); return i.join("&") }, T.fn.extend({ serialize: function() { return T.param(this.serializeArray()) }, serializeArray: function() { return this.map(function() { var t = T.prop(this, "elements"); return t ? T.makeArray(t) : this }).filter(function() { var t = this.type; return this.name && !T(this).is(":disabled") && Ie.test(this.nodeName) && !Me.test(t) && (this.checked || !yt.test(t)) }).map(function(t, e) { var n = T(this).val(); return null == n ? null : Array.isArray(n) ? T.map(n, function(t) { return { name: e.name, value: t.replace(ke, "\r\n") } }) : { name: e.name, value: n.replace(ke, "\r\n") } }).get() } }); var Ce = /%20/g, Re = /#.*$/, De = /([?&])_=[^&]*/, Le = /^(.*?):[ \t]*([^\r\n]*)$/gm, je = /^(?:GET|HEAD)$/, Ne = /^\/\//, Be = {}, Fe = {}, Xe = "*/".concat("*"), Ue = s.createElement("a"); function Ve(t) { return function(e, n) { "string" != typeof e && (n = e, e = "*"); var i, r = 0, o = e.toLowerCase().match(B) || []; if (v(n)) for (; i = o[r++];) "+" === i[0] ? (i = i.slice(1) || "*", (t[i] = t[i] || []).unshift(n)) : (t[i] = t[i] || []).push(n) } } function Ye(t, e, n, i) { var r = {}, o = t === Fe; function s(a) { var u; return r[a] = !0, T.each(t[a] || [], function(t, a) { var l = a(e, n, i); return "string" != typeof l || o || r[l] ? o ? !(u = l) : void 0 : (e.dataTypes.unshift(l), s(l), !1) }), u } return s(e.dataTypes[0]) || !r["*"] && s("*") } function He(t, e) { var n, i, r = T.ajaxSettings.flatOptions || {}; for (n in e) void 0 !== e[n] && ((r[n] ? t : i || (i = {}))[n] = e[n]); return i && T.extend(!0, t, i), t } Ue.href = Se.href, T.extend({ active: 0, lastModified: {}, etag: {}, ajaxSettings: { url: Se.href, type: "GET", isLocal: /^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Se.protocol), global: !0, processData: !0, async: !0, contentType: "application/x-www-form-urlencoded; charset=UTF-8", accepts: { "*": Xe, text: "text/plain", html: "text/html", xml: "application/xml, text/xml", json: "application/json, text/javascript" }, contents: { xml: /\bxml\b/, html: /\bhtml/, json: /\bjson\b/ }, responseFields: { xml: "responseXML", text: "responseText", json: "responseJSON" }, converters: { "* text": String, "text html": !0, "text json": JSON.parse, "text xml": T.parseXML }, flatOptions: { url: !0, context: !0 } }, ajaxSetup: function(t, e) { return e ? He(He(t, T.ajaxSettings), e) : He(T.ajaxSettings, t) }, ajaxPrefilter: Ve(Be), ajaxTransport: Ve(Fe), ajax: function(t, e) { "object" == typeof t && (e = t, t = void 0), e = e || {}; var i, r, o, a, u, l, h, c, f, p, d = T.ajaxSetup({}, e), y = d.context || d, g = d.context && (y.nodeType || y.jquery) ? T(y) : T.event, m = T.Deferred(), v = T.Callbacks("once memory"), _ = d.statusCode || {}, b = {}, x = {}, w = "canceled", S = { readyState: 0, getResponseHeader: function(t) { var e; if (h) { if (!a) for (a = {}; e = Le.exec(o);) a[e[1].toLowerCase() + " "] = (a[e[1].toLowerCase() + " "] || []).concat(e[2]); e = a[t.toLowerCase() + " "] } return null == e ? null : e.join(", ") }, getAllResponseHeaders: function() { return h ? o : null }, setRequestHeader: function(t, e) { return null == h && (t = x[t.toLowerCase()] = x[t.toLowerCase()] || t, b[t] = e), this }, overrideMimeType: function(t) { return null == h && (d.mimeType = t), this }, statusCode: function(t) { var e; if (t) if (h) S.always(t[S.status]); else for (e in t) _[e] = [_[e], t[e]]; return this }, abort: function(t) { var e = t || w; return i && i.abort(e), P(0, e), this } }; if (m.promise(S), d.url = ((t || d.url || Se.href) + "").replace(Ne, Se.protocol + "//"), d.type = e.method || e.type || d.method || d.type, d.dataTypes = (d.dataType || "*").toLowerCase().match(B) || [""], null == d.crossDomain) { l = s.createElement("a"); try { l.href = d.url, l.href = l.href, d.crossDomain = Ue.protocol + "//" + Ue.host != l.protocol + "//" + l.host } catch (t) { d.crossDomain = !0 } } if (d.data && d.processData && "string" != typeof d.data && (d.data = T.param(d.data, d.traditional)), Ye(Be, d, e, S), h) return S; for (f in (c = T.event && d.global) && 0 == T.active++ && T.event.trigger("ajaxStart"), d.type = d.type.toUpperCase(), d.hasContent = !je.test(d.type), r = d.url.replace(Re, ""), d.hasContent ? d.data && d.processData && 0 === (d.contentType || "").indexOf("application/x-www-form-urlencoded") && (d.data = d.data.replace(Ce, "+")) : (p = d.url.slice(r.length), d.data && (d.processData || "string" == typeof d.data) && (r += (Ee.test(r) ? "&" : "?") + d.data, delete d.data), !1 === d.cache && (r = r.replace(De, "$1"), p = (Ee.test(r) ? "&" : "?") + "_=" + Pe++ + p), d.url = r + p), d.ifModified && (T.lastModified[r] && S.setRequestHeader("If-Modified-Since", T.lastModified[r]), T.etag[r] && S.setRequestHeader("If-None-Match", T.etag[r])), (d.data && d.hasContent && !1 !== d.contentType || e.contentType) && S.setRequestHeader("Content-Type", d.contentType), S.setRequestHeader("Accept", d.dataTypes[0] && d.accepts[d.dataTypes[0]] ? d.accepts[d.dataTypes[0]] + ("*" !== d.dataTypes[0] ? ", " + Xe + "; q=0.01" : "") : d.accepts["*"]), d.headers) S.setRequestHeader(f, d.headers[f]); if (d.beforeSend && (!1 === d.beforeSend.call(y, S, d) || h)) return S.abort(); if (w = "abort", v.add(d.complete), S.done(d.success), S.fail(d.error), i = Ye(Fe, d, e, S)) { if (S.readyState = 1, c && g.trigger("ajaxSend", [S, d]), h) return S; d.async && d.timeout > 0 && (u = n.setTimeout(function() { S.abort("timeout") }, d.timeout)); try { h = !1, i.send(b, P) } catch (t) { if (h) throw t; P(-1, t) } } else P(-1, "No Transport"); function P(t, e, s, a) { var l, f, p, b, x, w = e; h || (h = !0, u && n.clearTimeout(u), i = void 0, o = a || "", S.readyState = t > 0 ? 4 : 0, l = t >= 200 && t < 300 || 304 === t, s && (b = function(t, e, n) { for (var i, r, o, s, a = t.contents, u = t.dataTypes; "*" === u[0];) u.shift(), void 0 === i && (i = t.mimeType || e.getResponseHeader("Content-Type")); if (i) for (r in a) if (a[r] && a[r].test(i)) { u.unshift(r); break } if (u[0] in n) o = u[0]; else { for (r in n) { if (!u[0] || t.converters[r + " " + u[0]]) { o = r; break } s || (s = r) } o = o || s } if (o) return o !== u[0] && u.unshift(o), n[o] }(d, S, s)), b = function(t, e, n, i) { var r, o, s, a, u, l = {}, h = t.dataTypes.slice(); if (h[1]) for (s in t.converters) l[s.toLowerCase()] = t.converters[s]; for (o = h.shift(); o;) if (t.responseFields[o] && (n[t.responseFields[o]] = e), !u && i && t.dataFilter && (e = t.dataFilter(e, t.dataType)), u = o, o = h.shift()) if ("*" === o) o = u; else if ("*" !== u && u !== o) { if (!(s = l[u + " " + o] || l["* " + o])) for (r in l) if ((a = r.split(" "))[1] === o && (s = l[u + " " + a[0]] || l["* " + a[0]])) { !0 === s ? s = l[r] : !0 !== l[r] && (o = a[0], h.unshift(a[1])); break } if (!0 !== s) if (s && t.throws) e = s(e); else try { e = s(e) } catch (t) { return { state: "parsererror", error: s ? t : "No conversion from " + u + " to " + o } } } return { state: "success", data: e } }(d, b, S, l), l ? (d.ifModified && ((x = S.getResponseHeader("Last-Modified")) && (T.lastModified[r] = x), (x = S.getResponseHeader("etag")) && (T.etag[r] = x)), 204 === t || "HEAD" === d.type ? w = "nocontent" : 304 === t ? w = "notmodified" : (w = b.state, f = b.data, l = !(p = b.error))) : (p = w, !t && w || (w = "error", t < 0 && (t = 0))), S.status = t, S.statusText = (e || w) + "", l ? m.resolveWith(y, [f, w, S]) : m.rejectWith(y, [S, w, p]), S.statusCode(_), _ = void 0, c && g.trigger(l ? "ajaxSuccess" : "ajaxError", [S, d, l ? f : p]), v.fireWith(y, [S, w]), c && (g.trigger("ajaxComplete", [S, d]), --T.active || T.event.trigger("ajaxStop"))) } return S }, getJSON: function(t, e, n) { return T.get(t, e, n, "json") }, getScript: function(t, e) { return T.get(t, void 0, e, "script") } }), T.each(["get", "post"], function(t, e) { T[e] = function(t, n, i, r) { return v(n) && (r = r || i, i = n, n = void 0), T.ajax(T.extend({ url: t, type: e, dataType: r, data: n, success: i }, T.isPlainObject(t) && t)) } }), T._evalUrl = function(t, e) { return T.ajax({ url: t, type: "GET", dataType: "script", cache: !0, async: !1, global: !1, converters: { "text script": function() {} }, dataFilter: function(t) { T.globalEval(t, e) } }) }, T.fn.extend({ wrapAll: function(t) { var e; return this[0] && (v(t) && (t = t.call(this[0])), e = T(t, this[0].ownerDocument).eq(0).clone(!0), this[0].parentNode && e.insertBefore(this[0]), e.map(function() { for (var t = this; t.firstElementChild;) t = t.firstElementChild; return t }).append(this)), this }, wrapInner: function(t) { return v(t) ? this.each(function(e) { T(this).wrapInner(t.call(this, e)) }) : this.each(function() { var e = T(this), n = e.contents(); n.length ? n.wrapAll(t) : e.append(t) }) }, wrap: function(t) { var e = v(t); return this.each(function(n) { T(this).wrapAll(e ? t.call(this, n) : t) }) }, unwrap: function(t) { return this.parent(t).not("body").each(function() { T(this).replaceWith(this.childNodes) }), this } }), T.expr.pseudos.hidden = function(t) { return !T.expr.pseudos.visible(t) }, T.expr.pseudos.visible = function(t) { return !!(t.offsetWidth || t.offsetHeight || t.getClientRects().length) }, T.ajaxSettings.xhr = function() { try { return new n.XMLHttpRequest } catch (t) {} }; var We = { 0: 200, 1223: 204 }, ze = T.ajaxSettings.xhr(); m.cors = !!ze && "withCredentials" in ze, m.ajax = ze = !!ze, T.ajaxTransport(function(t) { var e, i; if (m.cors || ze && !t.crossDomain) return { send: function(r, o) { var s, a = t.xhr(); if (a.open(t.type, t.url, t.async, t.username, t.password), t.xhrFields) for (s in t.xhrFields) a[s] = t.xhrFields[s]; for (s in t.mimeType && a.overrideMimeType && a.overrideMimeType(t.mimeType), t.crossDomain || r["X-Requested-With"] || (r["X-Requested-With"] = "XMLHttpRequest"), r) a.setRequestHeader(s, r[s]); e = function(t) { return function() { e && (e = i = a.onload = a.onerror = a.onabort = a.ontimeout = a.onreadystatechange = null, "abort" === t ? a.abort() : "error" === t ? "number" != typeof a.status ? o(0, "error") : o(a.status, a.statusText) : o(We[a.status] || a.status, a.statusText, "text" !== (a.responseType || "text") || "string" != typeof a.responseText ? { binary: a.response } : { text: a.responseText }, a.getAllResponseHeaders())) } }, a.onload = e(), i = a.onerror = a.ontimeout = e("error"), void 0 !== a.onabort ? a.onabort = i : a.onreadystatechange = function() { 4 === a.readyState && n.setTimeout(function() { e && i() }) }, e = e("abort"); try { a.send(t.hasContent && t.data || null) } catch (t) { if (e) throw t } }, abort: function() { e && e() } } }), T.ajaxPrefilter(function(t) { t.crossDomain && (t.contents.script = !1) }), T.ajaxSetup({ accepts: { script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" }, contents: { script: /\b(?:java|ecma)script\b/ }, converters: { "text script": function(t) { return T.globalEval(t), t } } }), T.ajaxPrefilter("script", function(t) { void 0 === t.cache && (t.cache = !1), t.crossDomain && (t.type = "GET") }), T.ajaxTransport("script", function(t) { var e, n; if (t.crossDomain || t.scriptAttrs) return { send: function(i, r) { e = T("