diff --git a/cdn.jsdelivr.net-npm-@orange-games-phaser-cachebuster@2.0-build-phaser-cachebuster.min.js b/cdn.jsdelivr.net-npm-@orange-games-phaser-cachebuster@2.0-build-phaser-cachebuster.min.js new file mode 100644 index 00000000..8976f23d --- /dev/null +++ b/cdn.jsdelivr.net-npm-@orange-games-phaser-cachebuster@2.0-build-phaser-cachebuster.min.js @@ -0,0 +1,10 @@ +/*! + * phaser-cachebuster - version 2.0.0 + * Simple Phaser plugin for adding a query parameter to assets URL's so that they can be 'cache busted' + * + * OrangeGames + * Build at 20-12-2016 + * Released under MIT License + */ + +var __extends=this&&this.__extends||function(a,b){function c(){this.constructor=a}for(var d in b)b.hasOwnProperty(d)&&(a[d]=b[d]);a.prototype=null===b?Object.create(b):(c.prototype=b.prototype,new c)},PhaserCachebuster;!function(a){var b=function(a){function b(b,c){var d=a.call(this,b,c)||this;return d.patchLoader(),d}return __extends(b,a),b.prototype.patchLoader=function(){Object.defineProperty(Phaser.Loader,"cacheBuster",{value:null}),Phaser.Loader.prototype.transformUrl=function(a,b){return a?(null!==this.cacheBuster&&null===a.match(/^(data:)/)&&(a+="?v="+this.cacheBuster),a.match(/^(?:blob:|data:|http:\/\/|https:\/\/|\/\/)/)?a:this.baseURL+b.path+a):""}},b}(Phaser.Plugin);a.CacheBuster=b}(PhaserCachebuster||(PhaserCachebuster={})); \ No newline at end of file diff --git a/cdn.jsdelivr.net-npm-@orange-games-phaser-super-storage@1.0-build-phaser-super-storage.min.js b/cdn.jsdelivr.net-npm-@orange-games-phaser-super-storage@1.0-build-phaser-super-storage.min.js new file mode 100644 index 00000000..1a676a3e --- /dev/null +++ b/cdn.jsdelivr.net-npm-@orange-games-phaser-super-storage@1.0-build-phaser-super-storage.min.js @@ -0,0 +1,10 @@ +/*! + * phaser-super-storage - version 1.0.4 + * A cross platform storage plugin for Phaser + * + * OrangeGames + * Build at 02-10-2017 + * Released under MIT License + */ + +var PhaserSuperStorage;!function(a){var b;!function(a){var b=function(){function a(a){void 0===a&&(a=""),this.namespace="",this.forcePromises=!1,this.setNamespace(a)}return Object.defineProperty(a.prototype,"length",{get:function(){return null!==this.getNameSpaceMatches()?this.getNameSpaceMatches().length:0},enumerable:!0,configurable:!0}),a.prototype.key=function(a){var b=this.getNameSpaceMatches()[a],c=this.getCookiesForNameSpace()[b]||null;return this.forcePromises?this.promisefy(c):c},a.prototype.getItem=function(a){var b=this.getCookiesForNameSpace()[a]||null;return this.forcePromises?this.promisefy(b):b},a.prototype.setItem=function(a,b){if(document.cookie=encodeURIComponent(this.namespace+a)+"="+encodeURIComponent(b)+"; expires=Tue, 19 Jan 2038 03:14:07 GMT; path=/",this.forcePromises)return this.promisefy(null)},a.prototype.removeItem=function(a){if(document.cookie=encodeURIComponent(this.namespace+a)+"=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/",this.forcePromises)return this.promisefy(null)},a.prototype.clear=function(){var a=this.getCookiesForNameSpace();for(var b in a)a.hasOwnProperty(b)&&this.removeItem(b);if(this.forcePromises)return this.promisefy(null)},a.prototype.setNamespace=function(a){if(a&&(this.namespace=a+":",this.reg=new RegExp("^"+this.namespace+"[a-zA-Z0-9]*","g")),this.forcePromises)return this.promisefy(a)},a.prototype.getNameSpaceMatches=function(){var a=this,b=decodeURIComponent(document.cookie).split("; ");return b.filter(function(b){return null!==b.match(a.reg)&&b.match(a.reg).length>0})},a.prototype.getCookiesForNameSpace=function(){var a=this,b={};return this.getNameSpaceMatches().forEach(function(c){var d=c.replace(a.namespace,"").split("=");b[d[0]]=d[1]}),b},a.prototype.promisefy=function(a){return new Promise(function(b,c){b(a)})},a}();a.CookieStorage=b}(b=a.StorageAdapters||(a.StorageAdapters={}))}(PhaserSuperStorage||(PhaserSuperStorage={}));var PhaserSuperStorage;!function(a){var b;!function(a){var b=function(){function a(){this.namespace="",this.keys=[]}return Object.defineProperty(a.prototype,"forcePromises",{get:function(){return!0},set:function(a){},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"length",{get:function(){return this.keys.length},enumerable:!0,configurable:!0}),a.prototype.key=function(a){return this.promisefy(this.keys[a])},a.prototype.getItem=function(a){var b=this;return new Promise(function(c,d){NativeStorage.getItem(b.namespace+a,function(a){c(a)},function(a){2===a.code?c(null):d(a)})})},a.prototype.setItem=function(a,b){var c=this;return a.length<1?void console.error("CordovaStorage: Key cannot be an empty string!"):new Promise(function(d,e){NativeStorage.setItem(c.namespace+a,b,function(){c.keys.indexOf(a)<0&&(c.keys.push(a),c.save()),d(null)},function(a){e(a)})})},a.prototype.removeItem=function(a){var b=this;return new Promise(function(c,d){NativeStorage.remove(b.namespace+a,function(){var d=b.keys.indexOf(a);d>=0&&(b.keys.splice(d,1),b.save()),c(null)},function(a){d(a)})})},a.prototype.clear=function(){var a=this;return new Promise(function(b,c){for(var d=0,e=0;e=a.keys.length&&(a.keys=[],a.save(),b(null))},function(a){c(a)})})},a.prototype.setNamespace=function(a){var b=this;return void 0===a&&(a=""),this.namespace=a+":",this.keys=[],new Promise(function(a,c){b.load().then(a)["catch"](a)})},a.prototype.promisefy=function(a){return new Promise(function(b,c){b(a)})},a.prototype.load=function(){var a=this;return new Promise(function(b,c){NativeStorage.getItem(a.namespace,function(c){a.keys=JSON.parse(c),b(null)},function(a){c(a)})})},a.prototype.save=function(){NativeStorage.setItem(this.namespace,JSON.stringify(this.keys),function(){},function(a){console.warn("CordovaStorage: Failed to save keys of namespace.")})},a}();a.CordovaStorage=b}(b=a.StorageAdapters||(a.StorageAdapters={}))}(PhaserSuperStorage||(PhaserSuperStorage={}));var PhaserSuperStorage;!function(a){var b;!function(b){var c=function(){function b(a,b){void 0===a&&(a=""),void 0===b&&(b="*"),this.namespace="",this.expectedOrigin="",this.storageLength=0,this.enabled=!1,""!==a&&this.setNamespace(a),this.expectedOrigin=b}return Object.defineProperty(b.prototype,"forcePromises",{get:function(){return!0},set:function(a){},enumerable:!0,configurable:!0}),Object.defineProperty(b.prototype,"length",{get:function(){return this.storageLength},enumerable:!0,configurable:!0}),b.prototype.init=function(){var b=this;return this.sendMessage({command:a.StorageCommand.init}).then(function(){b.enabled=!0})},b.prototype.key=function(b){return this.sendMessage({command:a.StorageCommand.key,value:b})},b.prototype.getItem=function(b){return this.sendMessage({command:a.StorageCommand.getItem,key:b})},b.prototype.setItem=function(b,c){return this.sendMessage({command:a.StorageCommand.setItem,key:b,value:c})},b.prototype.removeItem=function(b){return this.sendMessage({command:a.StorageCommand.removeItem,key:b})},b.prototype.clear=function(){return this.sendMessage({command:a.StorageCommand.clear})},b.prototype.setNamespace=function(b){return this.sendMessage({command:a.StorageCommand.setNamespace,value:b})},b.prototype.sendMessage=function(b){var c,d=this;b.command===a.StorageCommand.init&&(c=!1);var e=new MessageChannel;return new Promise(function(f,g){d.enabled||b.command===a.StorageCommand.init||g("Messaging not enabled!"),b.command===a.StorageCommand.init&&setTimeout(function(){c||g("Unable to get a response in time")},1e3),e.port1.onmessage=function(b){console.log("Frame received message",b);var e=a.StorageUtils.validateMessage(b.data);switch(e.command===a.StorageCommand.init&&(c=!0),void 0!==e.status&&"ok"===e.status||g(e.value),void 0!==e.length&&(d.storageLength=e.length),e.command){case a.StorageCommand.setNamespace:d.namespace=e.value+":";case a.StorageCommand.getItem:case a.StorageCommand.length:case a.StorageCommand.key:f(e.value);break;case a.StorageCommand.setItem:case a.StorageCommand.removeItem:case a.StorageCommand.clear:case a.StorageCommand.init:f(e.status);break;default:g(e.value)}},(d.enabled||b.command===a.StorageCommand.init)&&(console.log("Sending message to parent: ",b),window.parent.postMessage(b,d.expectedOrigin,[e.port2]))})},b}();b.IframeStorage=c}(b=a.StorageAdapters||(a.StorageAdapters={}))}(PhaserSuperStorage||(PhaserSuperStorage={}));var PhaserSuperStorage;!function(a){var b;!function(b){var c=function(){function b(a){void 0===a&&(a=""),this.namespace="",this.forcePromises=!1,this.setNamespace(a)}return Object.defineProperty(b.prototype,"length",{get:function(){var b=Object.keys(localStorage);return a.StorageUtils.nameSpaceKeyFilter(b,this.namespace).length},enumerable:!0,configurable:!0}),b.prototype.key=function(a){return this.forcePromises?this.promisefy(this._key,arguments):this._key(a)},b.prototype._key=function(b){var c=Object.keys(localStorage),d=a.StorageUtils.nameSpaceKeyFilter(c,this.namespace),e=localStorage.getItem(d[b]);return e},b.prototype.getItem=function(a){return this.forcePromises?this.promisefy(this._getItem,arguments):this._getItem(a)},b.prototype._getItem=function(a){return localStorage.getItem(this.namespace+a)},b.prototype.setItem=function(a,b){return this.forcePromises?this.promisefy(this._setItem,arguments):this._setItem(a,b)},b.prototype._setItem=function(a,b){return localStorage.setItem(this.namespace+a,b)},b.prototype.removeItem=function(a){return this.forcePromises?this.promisefy(this._removeItem,arguments):this._removeItem(a)},b.prototype._removeItem=function(a){return localStorage.removeItem(this.namespace+a)},b.prototype.clear=function(){return this.forcePromises?this.promisefy(this._clear,arguments):this._clear()},b.prototype._clear=function(){for(var b=Object.keys(localStorage),c=a.StorageUtils.nameSpaceKeyFilter(b,this.namespace),d=0;d>>0)+"_",d=0,e=function(f){if(this instanceof e)throw new TypeError("Symbol is not a constructor");return new b(c+(f||"")+"_"+d++,f)};return e}); +p("Symbol.iterator",function(a){if(a)return a;a=Symbol("Symbol.iterator");for(var b="Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array".split(" "),c=0;cb?-c:c}});p("Object.values",function(a){return a?a:function(b){var c=[],d;for(d in b)la(b,d)&&c.push(b[d]);return c}}); +p("Object.is",function(a){return a?a:function(b,c){return b===c?0!==b||1/b===1/c:b!==b&&c!==c}});p("Array.prototype.includes",function(a){return a?a:function(b,c){var d=this;d instanceof String&&(d=String(d));var e=d.length;c=c||0;for(0>c&&(c=Math.max(c+e,0));c=f}}); +p("String.prototype.repeat",function(a){return a?a:function(b){var c=Ja(this,null,"repeat");if(0>b||1342177279>>=1)c+=c;return d}});p("String.prototype.padStart",function(a){return a?a:function(b,c){var d=Ja(this,null,"padStart");b-=d.length;c=void 0!==c?String(c):" ";return(0>>16&65535)*e+d*(c>>>16&65535)<<16>>>0)|0}});p("Object.fromEntries",function(a){return a?a:function(b){var c={};if(!(Symbol.iterator in b))throw new TypeError(""+b+" is not iterable");b=b[Symbol.iterator].call(b);for(var d=b.next();!d.done;d=b.next()){d=d.value;if(Object(d)!==d)throw new TypeError("iterable for fromEntries should yield objects");c[d[0]]=d[1]}return c}});/* + + Copyright The Closure Library Authors. + SPDX-License-Identifier: Apache-2.0 +*/ +var La=La||{},v=this||self,x=function(a,b,c){a=a.split(".");c=c||v;a[0]in c||"undefined"==typeof c.execScript||c.execScript("var "+a[0]);for(var d;a.length&&(d=a.shift());)a.length||void 0===b?c[d]&&c[d]!==Object.prototype[d]?c=c[d]:c=c[d]={}:c[d]=b},Na=function(a,b){var c=Ma("CLOSURE_FLAGS");a=c&&c[a];return null!=a?a:b},Ma=function(a,b){a=a.split(".");b=b||v;for(var c=0;c>>0),Ua=0,Xa=function(a,b,c){return a.call.apply(a.bind,arguments)},Ya=function(a,b,c){if(!a)throw Error(); +if(2b?1:0};var rb=Na(610401301,!1),sb=Na(572417392,Na(1,!0));function tb(){var a=v.navigator;return a&&(a=a.userAgent)?a:""}var ub,vb=v.navigator;ub=vb?vb.userAgentData||null:null;function wb(a){return rb?ub?ub.brands.some(function(b){return(b=b.brand)&&nb(b,a)}):!1:!1}function y(a){return nb(tb(),a)};function zb(){return rb?!!ub&&0b?null:"string"===typeof a?a.charAt(b):a[b]}function Rb(a,b){for(var c=a.length,d="string"===typeof a?a.split(""):a,e=0;eb?1:aparseFloat(uc)){tc=String(wc);break a}}tc=uc}var zc=tc,ec={},Ac=function(){return fc(function(){return 0<=qb(zc,8)})},Bc; +if(v.document&&ic){var Cc=sc();Bc=Cc?Cc:parseInt(zc,10)||void 0}else Bc=void 0;var Dc=Bc;var Ec=Cb(),Fc=y("Android")&&!(Eb()||Cb()||Ab()||y("Silk")),Gc=Eb();Db();var Hc={},Ic=null,Kc=function(a,b){void 0===b&&(b=0);Jc();b=Hc[b];for(var c=Array(Math.floor(a.length/3)),d=b[64]||"",e=0,f=0;e>2];g=b[(g&3)<<4|h>>4];h=b[(h&15)<<2|k>>6];k=b[k&63];c[f++]=""+n+g+h+k}n=0;k=d;switch(a.length-e){case 2:n=a[e+1],k=b[(n&15)<<2]||d;case 1:a=a[e],c[f]=""+b[a>>2]+b[(a&3)<<4|n>>4]+k+d}return c.join("")},Mc=function(a){var b=[];Lc(a,function(c){b.push(c)});return b},Lc=function(a,b){function c(k){for(;d>4);64!=g&&(b(f<<4&240|g>>2),64!=h&&b(g<<6&192|h))}},Jc=function(){if(!Ic){Ic={};for(var a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),b=["+/=","+/","-_=","-_.","-_"],c=0;5>c;c++){var d=a.concat(b[c].split(""));Hc[c]=d;for(var e=0;ea;a=Math.abs(a);var c=a>>>0;a=Math.floor((a-c)/4294967296);b&&(c=r(Wc(c,a)),b=c.next().value,a=c.next().value,c=b);Sc=c>>>0;Tc=a>>>0}function Xc(a,b){b>>>=0;a>>>=0;if(2097151>=b)var c=""+(4294967296*b+a);else Pc()?c=""+(BigInt(b)<>>24|b<<8)&16777215,b=b>>16&65535,a=(a&16777215)+6777216*c+6710656*b,c+=8147497*b,b*=2,1E7<=a&&(c+=Math.floor(a/1E7),a%=1E7),1E7<=c&&(b+=Math.floor(c/1E7),c%=1E7),c=b+Yc(c)+Yc(a));return c} +function Yc(a){a=String(a);return"0000000".slice(a.length)+a}function Zc(){var a=Sc,b=Tc;b&2147483648?Pc()?a=""+(BigInt(b|0)<>>0)):(b=r(Wc(a,b)),a=b.next().value,b=b.next().value,a="-"+Xc(a,b)):a=Xc(a,b);return a} +function $c(a){if(16>a.length)Vc(Number(a));else if(Pc())a=BigInt(a),Sc=Number(a&BigInt(4294967295))>>>0,Tc=Number(a>>BigInt(32)&BigInt(4294967295));else{var b=+("-"===a[0]);Tc=Sc=0;for(var c=a.length,d=0+b,e=(c-b)%6+b;e<=c;d=e,e+=6)d=Number(a.slice(d,e)),Tc*=1E6,Sc=1E6*Sc+d,4294967296<=Sc&&(Tc+=Math.trunc(Sc/4294967296),Tc>>>=0,Sc>>>=0);b&&(b=r(Wc(Sc,Tc)),a=b.next().value,b=b.next().value,Sc=a,Tc=b)}}function Wc(a,b){b=~b;a?a=~a+1:b+=1;return[a,b]};var ad=function(a,b){this.h=a>>>0;this.g=b>>>0},cd=function(a){if(!a)return bd||(bd=new ad(0,0));if(!/^\d+$/.test(a))return null;$c(a);return new ad(Sc,Tc)},bd,dd=function(a,b){this.h=a>>>0;this.g=b>>>0},fd=function(a){if(!a)return ed||(ed=new dd(0,0));if(!/^-?\d+$/.test(a))return null;$c(a);return new dd(Sc,Tc)},ed;var gd=function(){this.g=[]};gd.prototype.length=function(){return this.g.length};gd.prototype.end=function(){var a=this.g;this.g=[];return a}; +var hd=function(a,b,c){for(;0>>7|c<<25)>>>0,c>>>=7;a.g.push(b)},id=function(a,b){for(;127>>=7;a.g.push(b)},jd=function(a,b){if(0<=b)id(a,b);else{for(var c=0;9>c;c++)a.g.push(b&127|128),b>>=7;a.g.push(1)}},kd=function(a,b){a.g.push(b>>>0&255);a.g.push(b>>>8&255);a.g.push(b>>>16&255);a.g.push(b>>>24&255)};var ld=function(){this.j=[];this.h=0;this.g=new gd},md=function(a,b){0!==b.length&&(a.j.push(b),a.h+=b.length)},nd=function(a,b,c){id(a.g,8*b+c)};var od=function(a,b){this.g=a;this.ze=b};function pd(a){return Array.prototype.slice.call(a)};var qd="function"===typeof Symbol&&"symbol"===typeof Symbol()?Symbol():void 0,rd=qd?function(a,b){a[qd]|=b}:function(a,b){void 0!==a.Aa?a.Aa|=b:Object.defineProperties(a,{Aa:{value:b,configurable:!0,writable:!0,enumerable:!1}})};function sd(a){var b=vd(a);1!==(b&1)&&(Object.isFrozen(a)&&(a=pd(a)),wd(a,b|1))}var xd=qd?function(a,b){a[qd]&=~b}:function(a,b){void 0!==a.Aa&&(a.Aa&=~b)};function yd(a,b,c){return c?a|b:a&~b} +var vd=qd?function(a){return a[qd]|0}:function(a){return a.Aa|0},zd=qd?function(a){return a[qd]}:function(a){return a.Aa},wd=qd?function(a,b){a[qd]=b}:function(a,b){void 0!==a.Aa?a.Aa=b:Object.defineProperties(a,{Aa:{value:b,configurable:!0,writable:!0,enumerable:!1}})};function Ad(){var a=[];rd(a,1);return a}function Ed(a,b){wd(b,(a|0)&-14591)}function Fd(a,b){wd(b,(a|34)&-14557)}function Gd(a){a=a>>14&1023;return 0===a?536870912:a};var Hd={},Id={};function Jd(a){return!(!a||"object"!==typeof a||a.fi!==Id)}function Kd(a){return null!==a&&"object"===typeof a&&!Array.isArray(a)&&a.constructor===Object}var Ld,Md=!sb;function Nd(a,b,c){if(!Array.isArray(a)||a.length)return!1;var d=vd(a);if(d&1)return!0;if(!(b&&(Array.isArray(b)?b.includes(c):b.has(c))))return!1;wd(a,d|1);return!0}var Od,Pd=[];wd(Pd,55);Od=Object.freeze(Pd);function Qd(a){if(a&2)throw Error();};var Rd=function(a,b){a.__closure__error__context__984382||(a.__closure__error__context__984382={});a.__closure__error__context__984382.severity=b};function Sd(){var a=Error();Rd(a,"incident");ib(a)}function Td(a){a=Error(a);Rd(a,"warning");return a};function Ud(a){if(null==a)return a;if("number"===typeof a||"NaN"===a||"Infinity"===a||"-Infinity"===a)return Number(a)}function Vd(a){if(null!=a&&"boolean"!==typeof a)throw Error("Expected boolean but got "+Oa(a)+": "+a);return a}function Wd(a){if(null==a||"boolean"===typeof a)return a;if("number"===typeof a)return!!a}var Xd=/^-?([1-9][0-9]*|0)(\.[0-9]+)?$/;function Yd(a){var b=typeof a;return"number"===b?Number.isFinite(a):"string"!==b?!1:Xd.test(a)} +function Zd(a){Number.isFinite(a)||Sd();return a}function $d(a){return a}function ae(a){if("number"!==typeof a)throw Td("int32");Number.isFinite(a)||Sd();return a}function be(a){return null==a?a:ae(a)}function ce(a){if(null==a)return a;if("string"===typeof a){if(!a)return;a=+a}if("number"===typeof a)return a}function de(a){if(null==a)return a;if("string"===typeof a){if(!a)return;a=+a}if("number"===typeof a)return a} +function ee(a){if(null==a)var b=a;else{b=!!b;if(!Yd(a))throw Td("int64");"string"===typeof a?b=fe(a,b):b?(a=Math.trunc(a),!b||Number.isSafeInteger(a)?b=String(a):(b=String(a),he(b)||(Vc(a),b=Zc()))):b=ie(a)}return b}function he(a){return"-"===a[0]?20>a.length?!0:20===a.length&&-922337a.length?!0:19===a.length&&922337>Number(a.substring(0,6))}function ie(a){return a=Math.trunc(a)} +function fe(a,b){var c=Math.trunc(Number(a));if(Number.isSafeInteger(c))return String(c);c=a.indexOf(".");-1!==c&&(a=a.substring(0,c));b&&(he(a)||($c(a),a=Zc()));return a}function je(a){if(null!=a&&"string"!==typeof a)throw Error();return a}function ke(a){return null==a||"string"===typeof a?a:void 0}function le(a,b,c){if(null!=a&&"object"===typeof a&&a.od===Hd)return a;if(Array.isArray(a)){var d=vd(a),e=d;0===e&&(e|=c&32);e|=c&2;e!==d&&wd(a,e);return new b(a)}};var me;function ne(a,b){me=b;a=new a(b);me=void 0;return a}var oe,pe;function qe(a){switch(typeof a){case "boolean":return oe||(oe=[0,void 0,!0]);case "number":return 0=Gd(b)){if(b&256)return a[a.length-1][c]}else{var e=a.length;if(d&&b&256&&(d=a[e-1][c],null!=d))return d;b=c+(+!!(b&512)-1);if(b=f||e){e=b;if(b&256)f=a[a.length-1];else{if(null==d)return e;f=a[f+(+!!(b&512)-1)]={};e|=256}f[c]=d;e!==b&&wd(a,e);return e}a[c+(+!!(b&512)-1)]=d;b&256&&(a=a[a.length-1],c in a&&delete a[c]);return b} +function Ge(a,b,c,d,e){var f=b&2,g=Ce(a,b,c,e);Array.isArray(g)||(g=Od);var h=!(d&2);d=!(d&1);var k=!!(b&32),n=vd(g);0!==n||!k||f||h?n&1||(n|=1,wd(g,n)):(n|=33,wd(g,n));f?(a=!1,n&2||(rd(g,34),a=!!(4&n)),(d||a)&&Object.freeze(g)):(f=!!(2&n)||!!(2048&n),d&&f?(g=pd(g),d=1,k&&!h&&(d|=32),wd(g,d),Ee(a,b,c,g,e)):h&&n&32&&!f&&xd(g,32));return g} +function He(a,b,c){var d=void 0;d=void 0===d?2:d;a=a.P;var e=zd(a);2&e&&(d=1);var f=Ge(a,e,b,1);e=zd(a);var g=vd(f),h=g,k=!!(2&g),n=!!(4&g),m=k&&n;if(!(4&g)){n&&(f=pd(f),h=0,g=Ie(g,e,!1),k=!!(2&g),e=Ee(a,e,b,f));for(var q=n=0;n=f){Object.assign(b[b.length-1]={},h);break}g=!0}f=b;c=!c;h=zd(a.P);a=Gd(h);h=+!!(h&512)-1;for(var k,n,m=0;mg&&(q-=g,g=a[++f]);for(;k>>=7,a.h++;c.push(e);a.h++}} +var tf=pf(function(a,b,c){b=Ud(b);null!=b&&(nd(a,c,1),a=a.g,c=Uc||(Uc=new DataView(new ArrayBuffer(8))),c.setFloat64(0,+b,!0),Sc=c.getUint32(0,!0),Tc=c.getUint32(4,!0),kd(a,Sc),kd(a,Tc))}),uf=pf(function(a,b,c){b=Ud(b);null!=b&&(nd(a,c,5),a=a.g,c=Uc||(Uc=new DataView(new ArrayBuffer(8))),c.setFloat32(0,+b,!0),Tc=0,Sc=c.getUint32(0,!0),kd(a,Sc))}),vf=pf(qf),wf=pf(qf),xf=pf(function(a,b,c){a:if(null!=b){if(Yd(b)){if("string"===typeof b){var d=Math.trunc(Number(b));Number.isSafeInteger(d)?b=String(d): +(d=b.indexOf("."),-1!==d&&(b=b.substring(0,d)),("-"===b[0]?0:20>b.length||20===b.length&&184467>Number(b.substring(0,6)))||($c(b),b=Xc(Sc,Tc)));break a}if("number"===typeof b){b=Math.trunc(b);break a}}b=void 0}null!=b&&("string"===typeof b&&cd(b),null!=b&&(nd(a,c,0),"number"===typeof b?(a=a.g,Vc(b),hd(a,Sc,Tc)):(c=cd(b),hd(a.g,c.h,c.g))))}),yf=pf(rf),zf=pf(rf),Bf=pf(function(a,b,c){b=Wd(b);null!=b&&(nd(a,c,0),a.g.g.push(b?1:0))}),Cf=pf(function(a,b,c){b=ke(b);if(null!=b){var d=!1;d=void 0===d?!1: +d;if(gb){if(d&&/(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])/.test(b))throw Error("Found an unpaired surrogate");b=(fb||(fb=new TextEncoder)).encode(b)}else{for(var e=0,f=new Uint8Array(3*b.length),g=0;gh)f[e++]=h;else{if(2048>h)f[e++]=h>>6|192;else{if(55296<=h&&57343>=h){if(56319>=h&&g=k){h=1024*(h-55296)+k-56320+65536;f[e++]=h>>18|240;f[e++]=h>>12&63|128;f[e++]=h>>6&63|128; +f[e++]=h&63|128;continue}else g--}if(d)throw Error("Found an unpaired surrogate");h=65533}f[e++]=h>>12|224;f[e++]=h>>6&63|128}f[e++]=h&63|128}}b=e===f.length?f:f.subarray(0,e)}nd(a,c,2);id(a.g,b.length);md(a,a.g.end());md(a,b)}}),of=new od(sf,!0),lf=new od(sf,!0),Df;Df=new od(function(a,b,c,d,e){if(Array.isArray(b))for(var f=0;fb&&(a=a.substring(0,b-3)+"...");return a},yg=String.prototype.repeat?function(a,b){return a.repeat(b)}:function(a,b){return Array(b+1).join(a)},zg=function(a){return null==a?"":String(a)},Ag=2147483648*Math.random()|0,Bg=function(a){return String(a).replace(/\-([a-z])/g,function(b,c){return c.toUpperCase()})},Cg=function(){return"googleAvInapp".replace(/([A-Z])/g,"-$1").toLowerCase()},Dg=function(a){return a.replace(RegExp("(^|[\\s]+)([a-z])", +"g"),function(b,c,d){return c+d.toUpperCase()})},Eg=function(a){isFinite(a)&&(a=String(a));return"string"===typeof a?/^\s*-?0x/i.test(a)?parseInt(a,16):parseInt(a,10):NaN};var Hg=function(a){return a?new Fg(Gg(a)):eb||(eb=new Fg)},Ig=function(a){var b=document;return"string"===typeof a?b.getElementById(a):a},Kg=function(a,b){Rf(b,function(c,d){c&&"object"==typeof c&&c.xc&&(c=c.vc());"style"==d?a.style.cssText=c:"class"==d?a.className=c:"for"==d?a.htmlFor=c:Jg.hasOwnProperty(d)?a.setAttribute(Jg[d],c):0==d.lastIndexOf("aria-",0)||0==d.lastIndexOf("data-",0)?a.setAttribute(d,c):a[d]=c})},Jg={cellpadding:"cellPadding",cellspacing:"cellSpacing",colspan:"colSpan",frameborder:"frameBorder", +height:"height",maxlength:"maxLength",nonce:"nonce",role:"role",rowspan:"rowSpan",type:"type",usemap:"useMap",valign:"vAlign",width:"width"},Mg=function(a){a=a.document;a=Lg(a)?a.documentElement:a.body;return new z(a.clientWidth,a.clientHeight)},Ng=function(a){var b=a.scrollingElement?a.scrollingElement:!lc&&Lg(a)?a.documentElement:a.body||a.documentElement;a=a.parentWindow||a.defaultView;return ic&&a.pageYOffset!=b.scrollTop?new vg(b.scrollLeft,b.scrollTop):new vg(a.pageXOffset||b.scrollLeft,a.pageYOffset|| +b.scrollTop)},B=function(a){return a?a.parentWindow||a.defaultView:window},Qg=function(a,b,c){var d=arguments,e=document,f=d[1],g=Og(e,String(d[0]));f&&("string"===typeof f?g.className=f:Array.isArray(f)?g.className=f.join(" "):Kg(g,f));2d)return null;e=a.indexOf("&",d);if(0>e||e>c)e=c;d+=b.length+1;return wg(a.slice(d,-1!==e?e:0))};var fh=function(a){var b=[],c=[],d={},e=function(f,g){var h=g+" ";try{if(void 0===f)b.push("undefined");else if(null===f)b.push("NULL");else if("string"===typeof f)b.push('"'+f.replace(/\n/g,"\n"+g)+'"');else if("function"===typeof f)b.push(String(f).replace(/\n/g,"\n"+g));else if(Ra(f)){f[Sa]||c.push(f);var k=Va(f);if(d[k])b.push("*** reference loop detected (id="+k+") ***");else{d[k]=!0;b.push("{");for(var n in f)"function"!==typeof f[n]&&(b.push("\n"),b.push(h),b.push(n+" = "),e(f[n],h));b.push("\n"+ +g+"}");delete d[k]}}else b.push(f)}catch(m){b.push("*** "+m+" ***")}};e(a,"");for(a=0;ad++&&(!b&&!oh(c)||!a(c));)c=ph(c)},rh=function(){var a=window;qh(function(b){a=b;return!1});return a},ph=function(a){try{var b=a.parent;if(b&&b!=a)return b}catch(c){}return null},sh=function(){var a=window;return oh(a.top)?a.top:null},th=function(){if(!globalThis.crypto)return Math.random();try{var a=new Uint32Array(1);globalThis.crypto.getRandomValues(a); +return a[0]/65536/65536}catch(b){return Math.random()}},uh=function(a,b){if(a)for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b(a[c],c,a)},vh=function(a){var b=a.length;if(0==b)return 0;for(var c=305419896,d=0;d>2)+a.charCodeAt(d)&4294967295;return 0c;++c){if(yh(a,b))return a;if(!(a=ph(a)))break}return null},Ah=function(a,b){b=void 0===b?document:b;return b.createElement(String(a).toLowerCase())},Bh=function(a){for(var b=a;a&&a!=a.parent;)a=a.parent,oh(a)&&(b= +a);return b};var C=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};C.prototype.getWidth=function(){return this.right-this.left};C.prototype.getHeight=function(){return this.bottom-this.top};var Ch=function(a){return new C(a.top,a.right,a.bottom,a.left)};l=C.prototype;l.contains=function(a){return this&&a?a instanceof C?a.left>=this.left&&a.right<=this.right&&a.top>=this.top&&a.bottom<=this.bottom:a.x>=this.left&&a.x<=this.right&&a.y>=this.top&&a.y<=this.bottom:!1}; +l.expand=function(a,b,c,d){Ra(a)?(this.top-=a.top,this.right+=a.right,this.bottom+=a.bottom,this.left-=a.left):(this.top-=a,this.right+=Number(b),this.bottom+=Number(c),this.left-=Number(d));return this};l.ceil=function(){this.top=Math.ceil(this.top);this.right=Math.ceil(this.right);this.bottom=Math.ceil(this.bottom);this.left=Math.ceil(this.left);return this}; +l.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};l.round=function(){this.top=Math.round(this.top);this.right=Math.round(this.right);this.bottom=Math.round(this.bottom);this.left=Math.round(this.left);return this};var Dh=function(a,b,c){b instanceof vg?(a.left+=b.x,a.right+=b.x,a.top+=b.y,a.bottom+=b.y):(a.left+=b,a.right+=b,"number"===typeof c&&(a.top+=c,a.bottom+=c));return a};var Eh=function(a,b,c,d){this.left=a;this.top=b;this.width=c;this.height=d},Fh=function(a){return new C(a.top,a.left+a.width,a.top+a.height,a.left)};l=Eh.prototype;l.contains=function(a){return a instanceof vg?a.x>=this.left&&a.x<=this.left+this.width&&a.y>=this.top&&a.y<=this.top+this.height:this.left<=a.left&&this.left+this.width>=a.left+a.width&&this.top<=a.top&&this.top+this.height>=a.top+a.height};l.getSize=function(){return new z(this.width,this.height)}; +l.ceil=function(){this.left=Math.ceil(this.left);this.top=Math.ceil(this.top);this.width=Math.ceil(this.width);this.height=Math.ceil(this.height);return this};l.floor=function(){this.left=Math.floor(this.left);this.top=Math.floor(this.top);this.width=Math.floor(this.width);this.height=Math.floor(this.height);return this};l.round=function(){this.left=Math.round(this.left);this.top=Math.round(this.top);this.width=Math.round(this.width);this.height=Math.round(this.height);return this};function Gh(a){var b=Ia.apply(1,arguments);if(0===b.length)return kg(a[0]);for(var c=a[0],d=0;dc)return this.j;Vh(b)||(b=new Uh(b,{context:a,id:e}));if(d||this.g)b.meta={},this.g&&this.g(b.meta),d&&d(b.meta);v.google_js_errors=v.google_js_errors||[];v.google_js_errors.push(b);v.error_rep_loaded||(b=v.document,a=Ah("SCRIPT",b),mh(a,this.I),(b=b.getElementsByTagName("script")[0])&&b.parentNode&&b.parentNode.insertBefore(a,b),v.error_rep_loaded=!0);return this.j}; +l.pb=function(a,b,c){try{return b()}catch(d){if(!this.A(a,d,this.l,c,this.h))throw d;}};l.yd=function(a,b,c,d){var e=this;return function(){var f=Ia.apply(0,arguments);return e.pb(a,function(){return b.apply(c,f)},d)}};var Yh=function(a){return a.prerendering?3:{visible:1,hidden:2,prerender:3,preview:4,unloaded:5}[a.visibilityState||a.webkitVisibilityState||a.mozVisibilityState||""]||0},Zh=function(a){var b;a.visibilityState?b="visibilitychange":a.mozVisibilityState?b="mozvisibilitychange":a.webkitVisibilityState&&(b="webkitvisibilitychange");return b};var $h=null;function ai(){var a=void 0===a?v:a;return(a=a.performance)&&a.now&&a.timing?Math.floor(a.now()+a.timing.navigationStart):Date.now()}function bi(){var a=void 0===a?v:a;return(a=a.performance)&&a.now?a.now():null}function ci(a,b){b=void 0===b?v:b;var c,d;return(null==(c=b.performance)?void 0:null==(d=c.timing)?void 0:d[a])||0} +function di(){var a=void 0===a?v:a;var b=Math.min(ci("domLoading",a)||Infinity,ci("domInteractive",a)||Infinity);return Infinity===b?Math.max(ci("responseEnd",a),ci("navigationStart",a)):b};var ei=function(a,b,c,d){this.label=a;this.type=b;this.value=c;this.duration=void 0===d?0:d;this.taskId=this.slotId=void 0;this.uniqueId=Math.random()};var fi=v.performance,gi=!!(fi&&fi.mark&&fi.measure&&fi.clearMarks),hi=Jf(function(){var a;if(a=gi){var b;if(null===$h){$h="";try{a="";try{a=v.top.location.hash}catch(c){a=v.location.hash}a&&($h=(b=a.match(/\bdeid=([\d,]+)/))?b[1]:"")}catch(c){}}b=$h;a=!!b.indexOf&&0<=b.indexOf("1337")}return a}),ii=function(a,b){this.A=[];this.g=b||v;var c=null;b&&(b.google_js_reporting_queue=b.google_js_reporting_queue||[],this.A=b.google_js_reporting_queue,c=b.google_measure_js_timing);this.j=hi()||(null!=c?c:Math.random()< +a)};ii.prototype.B=function(){this.j=!1;this.A!=this.g.google_js_reporting_queue&&(hi()&&Kb(this.A,ji),this.A.length=0)};ii.prototype.I=function(a){!this.j||2048d.length&&(a.G[d]=!0))}},xi=function(a,b){for(var c in b)b[c]="object"===typeof b[c]?encodeURIComponent(JSON.stringify(b[c])):encodeURIComponent(String(b[c]));a=a.g;var d=!1;c=0;for(var e=r(Object.keys(b)),f=e.next();!f.done;f=e.next())f= +f.value,null!=a.report[f]&&(d=!0),c+=ti(a,f,b[f],!1);(8E3h?"":0==h?";expires="+(new Date(1970,1,1)).toUTCString():";expires="+(new Date(Date.now()+1E3*h)).toUTCString())+(d?";secure":"")+(null!=e?";samesite="+e:"")}; +l.get=function(a,b){for(var c=a+"=",d=(this.g.cookie||"").split(";"),e=0,f;ee?encodeURIComponent(wl(a, +b,c,d,e+1)):"...";return encodeURIComponent(String(a))},xl=function(a,b,c){a.g.push(b);a.h[b]=c},yl=function(a,b,c,d){a.g.push(b);a.h[b]=ul(c,d)},Al=function(a,b,c){b=b+"//pagead2.googlesyndication.com"+c;var d=zl(a)-c.length;if(0>d)return"";a.g.sort(function(m,q){return m-q});c=null;for(var e="",f=0;f=n.length){d-=n.length;b+=n;e=a.j;break}c=null==c?g:c}}a="";null!=c&& +(a=e+"trn="+c);return b+a},zl=function(a){var b=1,c;for(c in a.h)b=c.length>b?c.length:b;return 3997-b-a.j.length-1};var Bl=function(a,b){this.g=a;this.depth=b},Dl=function(){var a=nl(),b=Math.max(a.length-1,0),c=rl(a);a=c.g;var d=c.h,e=c.j,f=[];c=function(h,k){return null==h?k:h};e&&f.push(new Bl([e.url,e.ld?2:0],c(e.depth,1)));d&&d!=e&&f.push(new Bl([d.url,2],0));a.url&&a!=e&&f.push(new Bl([a.url,0],c(a.depth,b)));var g=Nb(f,function(h,k){return f.slice(0,f.length-k)});!a.url||(e||d)&&a!=e||(d=wh(a.url))&&g.push([new Bl([d,1],c(a.depth,b))]);g.push([]);return Nb(g,function(h){return Cl(b,h)})}; +function Cl(a,b){var c=Ob(b,function(e,f){return Math.max(e,f.depth)},-1),d=bc(c+2);d[0]=a;Kb(b,function(e){return d[e.depth+1]=e.g});return d}function El(){var a=void 0===a?Dl():a;return a.map(function(b){return vl(b)})};var Fl=function(){this.h=new ll;this.g=jl()?new kl:new il},Hl=function(){Gl();var a=L.document;return!!(a&&a.body&&a.body.getBoundingClientRect&&"function"===typeof L.setInterval&&"function"===typeof L.clearInterval&&"function"===typeof L.setTimeout&&"function"===typeof L.clearTimeout)};Fl.prototype.setTimeout=function(a,b){return L.setTimeout(a,b)};Fl.prototype.clearTimeout=function(a){L.clearTimeout(a)};var Il=function(){Gl();return El()};var Jl=function(){},Gl=function(){var a=D(Jl);if(!a.g){if(!L)throw Error("Context has not been set and window is undefined.");a.g=D(Fl)}return a.g};var Kl=function(a){this.P=re(a)};u(Kl,$e);Kl.prototype.g=Ff([0,tf,wf,-2,zf]);var Ll=function(a){this.j=a;this.g=-1;this.h=this.o=0},Ml=function(a,b){return function(){var c=Ia.apply(0,arguments);if(-1d?500:g};var mm=function(a,b,c){var d=new C(0,0,0,0);this.time=a;this.volume=null;this.j=b;this.g=d;this.h=c};var nm=function(a,b,c,d,e,f,g){this.j=a;this.h=b;this.l=c;this.g=d;this.o=e;this.B=f;this.A=g};nm.prototype.getTimestamp=function(){return this.B};var om={currentTime:1,duration:2,isVpaid:4,volume:8,isYouTube:16,isPlaying:32},ag={Ud:"start",FIRST_QUARTILE:"firstquartile",MIDPOINT:"midpoint",THIRD_QUARTILE:"thirdquartile",COMPLETE:"complete",ERROR:"error",Pe:"metric",Td:"pause",Ye:"resume",SKIPPED:"skip",VIEWABLE_IMPRESSION:"viewable_impression",Qe:"mute",cf:"unmute",FULLSCREEN:"fullscreen",Le:"exitfullscreen",Ge:"bufferstart",Fe:"bufferfinish",Od:"fully_viewable_audible_half_duration_impression",Sd:"measurable_impression",Ae:"abandon",Nd:"engagedview", +IMPRESSION:"impression",Ie:"creativeview",LOADED:"loaded",yh:"progress",yg:"close",zg:"collapse",Re:"overlay_resize",Se:"overlay_unmeasurable_impression",Te:"overlay_unviewable_impression",Ve:"overlay_viewable_immediate_impression",Ue:"overlay_viewable_end_of_session_impression",Je:"custom_metric_viewable",Ce:"audio_audible",Ee:"audio_measurable",De:"audio_impression"},pm="start firstquartile midpoint thirdquartile resume loaded".split(" "),qm=["start","firstquartile","midpoint","thirdquartile"], +rm=["abandon"],sm={Oh:-1,Ud:0,FIRST_QUARTILE:1,MIDPOINT:2,THIRD_QUARTILE:3,COMPLETE:4,Pe:5,Td:6,Ye:7,SKIPPED:8,VIEWABLE_IMPRESSION:9,Qe:10,cf:11,FULLSCREEN:12,Le:13,Od:14,Sd:15,Ae:16,Nd:17,IMPRESSION:18,Ie:19,LOADED:20,Je:21,Ge:22,Fe:23,De:27,Ee:28,Ce:29};var Uf={sg:"addEventListener",Qg:"getMaxSize",Rg:"getScreenSize",Sg:"getState",Tg:"getVersion",zh:"removeEventListener",mh:"isViewable"},tm=function(a){var b=a!==a.top,c=a.top===Bh(a),d=-1,e=0;if(b&&c&&a.top.mraid){d=3;var f=a.top.mraid}else d=(f=a.mraid)?b?c?2:1:0:-1;f&&(f.IS_GMA_SDK||(e=2),Tf(function(g){return"function"===typeof f[g]})||(e=1));return{Ba:f,lc:e,eg:d}};var um=function(){var a=window.document;return a&&"function"===typeof a.elementFromPoint};function vm(a,b,c){try{a&&(b=b.top);var d=b;a&&null!==d&&d!=d.top&&(d=d.top);try{var e=(void 0===c?0:c)?(new z(d.innerWidth,d.innerHeight)).round():Mg(d||window).round()}catch(m){e=new z(-12245933,-12245933)}a=e;var f=a.height,g=a.width;if(-12245933===g)return new C(g,g,g,g);var h=Ng(Hg(b.document).g),k=h.x,n=h.y;return new C(n,k+g,n+f,k)}catch(m){return new C(-12245933,-12245933,-12245933,-12245933)}};var xm=function(a,b){if("string"===typeof b)(b=wm(a,b))&&(a.style[b]=void 0);else for(var c in b){var d=a,e=b[c],f=wm(d,c);f&&(d.style[f]=e)}},ym={},wm=function(a,b){var c=ym[b];if(!c){var d=Bg(b);c=d;void 0===a.style[d]&&(d=(lc?"Webkit":kc?"Moz":ic?"ms":null)+Dg(d),void 0!==a.style[d]&&(c=d));ym[b]=c}return c},zm=function(a,b){var c=a.style[Bg(b)];return"undefined"!==typeof c?c:a.style[wm(a,b)]||""},Am=function(a,b){var c=Gg(a);return c.defaultView&&c.defaultView.getComputedStyle&&(a=c.defaultView.getComputedStyle(a, +null))?a[b]||a.getPropertyValue(b)||"":""},Bm=function(a){try{return a.getBoundingClientRect()}catch(b){return{left:0,top:0,right:0,bottom:0}}},Cm=function(a){var b=Gg(a),c=new vg(0,0);var d=b?Gg(b):document;d=!ic||9<=Number(Dc)||Lg(Hg(d).g)?d.documentElement:d.body;if(a==d)return c;a=Bm(a);b=Ng(Hg(b).g);c.x=a.left+b.x;c.y=a.top+b.y;return c},Dm=function(a,b){var c=new vg(0,0),d=B(Gg(a));if(!dc(d,"parent"))return c;do{if(d==b)var e=Cm(a);else e=Bm(a),e=new vg(e.left,e.top);c.x+=e.x;c.y+=e.y}while(d&& +d!=b&&d!=d.parent&&(a=d.frameElement)&&(d=d.parent));return c},Em=function(){var a="100%";"number"==typeof a&&(a=Math.round(a)+"px");return a},Gm=function(a){var b=Fm;if("none"!=(Am(a,"display")||(a.currentStyle?a.currentStyle.display:null)||a.style&&a.style.display))return b(a);var c=a.style,d=c.display,e=c.visibility,f=c.position;c.visibility="hidden";c.position="absolute";c.display="inline";a=b(a);c.display=d;c.position=f;c.visibility=e;return a},Fm=function(a){var b=a.offsetWidth,c=a.offsetHeight, +d=lc&&!b&&!c;return(void 0===b||d)&&a.getBoundingClientRect?(a=Bm(a),new z(a.right-a.left,a.bottom-a.top)):new z(b,c)},Km=function(a){var b=Gg(a),c=ic&&a.currentStyle;if(c&&Lg(Hg(b).g)&&"auto"!=c.width&&"auto"!=c.height&&!c.boxSizing)return b=Hm(a,c.width,"width","pixelWidth"),a=Hm(a,c.height,"height","pixelHeight"),new z(b,a);c=new z(a.offsetWidth,a.offsetHeight);if(ic){b=Im(a,"paddingLeft");var d=Im(a,"paddingRight"),e=Im(a,"paddingTop"),f=Im(a,"paddingBottom");b=new C(e,d,f,b)}else b=Am(a,"paddingLeft"), +d=Am(a,"paddingRight"),e=Am(a,"paddingTop"),f=Am(a,"paddingBottom"),b=new C(parseFloat(e),parseFloat(d),parseFloat(f),parseFloat(b));!ic||9<=Number(Dc)?(d=Am(a,"borderLeftWidth"),e=Am(a,"borderRightWidth"),f=Am(a,"borderTopWidth"),a=Am(a,"borderBottomWidth"),a=new C(parseFloat(f),parseFloat(e),parseFloat(a),parseFloat(d))):(d=Jm(a,"borderLeft"),e=Jm(a,"borderRight"),f=Jm(a,"borderTop"),a=Jm(a,"borderBottom"),a=new C(f,e,a,d));return new z(c.width-a.left-b.left-b.right-a.right,c.height-a.top-b.top- +b.bottom-a.bottom)},Hm=function(a,b,c,d){if(/^\d+px?$/.test(b))return parseInt(b,10);var e=a.style[c],f=a.runtimeStyle[c];a.runtimeStyle[c]=a.currentStyle[c];a.style[c]=b;b=a.style[d];a.style[c]=e;a.runtimeStyle[c]=f;return+b},Im=function(a,b){return(b=a.currentStyle?a.currentStyle[b]:null)?Hm(a,b,"left","pixelLeft"):0},Lm={thin:2,medium:4,thick:6},Jm=function(a,b){if("none"==(a.currentStyle?a.currentStyle[b+"Style"]:null))return 0;b=a.currentStyle?a.currentStyle[b+"Width"]:null;return b in Lm?Lm[b]: +Hm(a,b,"left","pixelLeft")};var Mm=function(a,b){b=Math.pow(10,b);return Math.floor(a*b)/b};function Nm(a,b,c,d){if(!a)return{value:d,done:!1};d=b(d,a);var e=c(d,a);return!e&&dc(a,"parentElement")?Nm(Sg(a),b,c,d):{done:e,value:d}}var Om=function(a,b,c,d){if(!a)return d;d=Nm(a,b,c,d);if(!d.done)try{var e=Gg(a),f=e&&B(e);return Om(f&&f.frameElement,b,c,d.value)}catch(g){}return d.value}; +function Pm(a){var b=!ic||Ac();return Om(a,function(c,d){c=dc(d,"style")&&d.style&&zm(d,"visibility");return{hidden:"hidden"===c,visible:b&&"visible"===c}},function(c){return c.hidden||c.visible},{hidden:!1,visible:!1}).hidden} +var Qm=function(a){return Om(a,function(b,c){return!(!dc(c,"style")||!c.style||"none"!==zm(c,"display"))},function(b){return b},!1)?!0:Pm(a)},Rm=function(a){return new C(a.top,a.right,a.bottom,a.left)},Sm=function(a){var b=a.top||0,c=a.left||0;return new C(b,c+(a.width||0),b+(a.height||0),c)},Tm=function(a){return null!=a&&0<=a&&1>=a};function Um(){var a=tb();return a?Pb("AmazonWebAppPlatform;Android TV;Apple TV;AppleTV;BRAVIA;BeyondTV;Freebox;GoogleTV;HbbTV;LongTV;MiBOX;MiTV;NetCast.TV;Netcast;Opera TV;PANASONIC;POV_TV;SMART-TV;SMART_TV;SWTV;Smart TV;SmartTV;TV Store;UnionTV;WebOS".split(";"),function(b){return ob(a,b)})||ob(a,"OMI/")&&!ob(a,"XiaoMi/")?!0:ob(a,"Presto")&&ob(a,"Linux")&&!ob(a,"X11")&&!ob(a,"Android")&&!ob(a,"Mobi"):!1} +function Vm(){var a=tb();return ob(a,"AppleTV")||ob(a,"Apple TV")||ob(a,"CFNetwork")||ob(a,"tvOS")}function Wm(){var a;(a=ob(tb(),"CrKey")||ob(tb(),"PlayStation")||ob(tb(),"Roku")||Um()||ob(tb(),"Xbox")||Vm())||(a=tb(),a=ob(a,"sdk_google_atv_x86")||ob(a,"Android TV"));return a};var Ym=function(){this.j=!oh(L.top);this.B=Wg()||$g();var a=nl();a=0c.height?k>m?(d=k,e=n):(d=m,e=q):k=this.K?a:this;b!==this.g?(this.B=this.g.B,fn(this)):this.B!==this.g.B&&(this.B=this.g.B,fn(this))}; +l.ab=function(a){if(a.h===this.g){var b=this.o,c=this.D;if(c=a&&(void 0===c||!c||b.volume==a.volume)&&b.j==a.j)b=b.g,c=a.g,c=b==c?!0:b&&c?b.top==c.top&&b.right==c.right&&b.bottom==c.bottom&&b.left==c.left:!1;this.o=a;!c&&ln(this)}};l.La=function(){return this.D};l.W=function(){this.M=!0};l.xa=function(){return this.M};var mn=function(a,b,c,d){this.j=a;this.g=new C(0,0,0,0);this.l=new C(0,0,0,0);this.h=b;this.T=c;this.G=d;this.F=!1;this.timestamp=-1;this.I=new nm(b.o,this.g,new C(0,0,0,0),0,0,km(),0)};l=mn.prototype;l.Vc=function(){return!0};l.Xb=function(){};l.W=function(){if(!this.xa()){var a=this.h;Ub(a.l,this);a.D&&this.La()&&kn(a);this.Xb();this.F=!0}};l.xa=function(){return this.F};l.Za=function(){return this.h.Za()};l.Pa=function(){return this.h.Pa()};l.vb=function(){return this.h.vb()};l.Lb=function(){return this.h.Lb()}; +l.xb=function(){};l.ab=function(){this.Ya()};l.La=function(){return this.G};var nn=function(a){this.l=!1;this.g=a;this.o=function(){}};l=nn.prototype;l.Pa=function(){return this.g.Pa()};l.vb=function(){return this.g.vb()};l.Lb=function(){return this.g.Lb()};l.create=function(a,b,c){var d=null;this.g&&(d=this.Yb(a,b,c),hn(this.g,d));return d};l.Pd=function(){return this.Eb()};l.Eb=function(){return!1};l.init=function(a){return this.g.initialize()?(hn(this.g,this),this.o=a,!0):!1};l.xb=function(a){0==a.Pa()&&this.o(a.vb(),this)};l.ab=function(){};l.La=function(){return!1}; +l.W=function(){this.l=!0};l.xa=function(){return this.l};l.Za=function(){return{}};var on=function(a,b,c){this.j=void 0===c?0:c;this.h=a;this.g=null==b?"":b},pn=function(a){switch(Math.trunc(a.j)){case -16:return-16;case -8:return-8;case 0:return 0;case 8:return 8;case 16:return 16;default:return 16}},qn=function(a,b){return a.jb.j?!1:a.hb.h?!1:typeof a.gtypeof b.g?!1:a.g=h;h=!(0=h)||d;En(a.g[f],g&&k,e,!g||h)}},Hn=function(a,b,c){a=Nb(a.g,function(d){return b(d)});return c?a:Qn(a)},Jn=function(a,b,c){var d=Sb(a.h,function(e){return b<=e});return-1==d?0:c(a.g[d])},Qn=function(a){return Nb(a,function(b,c,d){return 0=this.ga};if(fl&&fl.URL){var Tn=fl.URL,Un;if(Un=!!Tn){var Vn;a:{if(Tn){var Wn=RegExp(".*[&#?]google_debug(=[^&]*)?(&.*)?$");try{var Xn=Wn.exec(decodeURIComponent(Tn));if(Xn){Vn=Xn[1]&&1c++;){if(a===b)return!0;try{if(a=Sg(a)||a){var d=Gg(a),e=d&&B(d),f=e&&e.frameElement;f&&(a=f)}}catch(g){break}}return!1} +function co(a,b,c){if(!a||!b)return!1;b=Dh(Ch(a),-b.left,-b.top);a=(b.left+b.right)/2;b=(b.top+b.bottom)/2;oh(window.top)&&window.top&&window.top.document&&(window=window.top);if(!um())return!1;a=window.document.elementFromPoint(a,b);if(!a)return!1;b=(b=(b=Gg(c))&&b.defaultView&&b.defaultView.frameElement)&&bo(b,a);var d=a===c;a=!d&&a&&Vg(a,function(e){return e===c});return!(b||d||a)} +function eo(a,b,c,d){return an().j?!1:0>=a.getWidth()||0>=a.getHeight()?!0:c&&d?bm(208,function(){return co(a,b,c)}):!1};var fo=new C(0,0,0,0),ho=function(a,b,c){M.call(this);this.position=Ch(fo);this.Fc=this.uc();this.md=-2;this.ig=Date.now();this.we=-1;this.zc=b;this.yc=null;this.Ib=!1;this.Kc=null;this.opacity=-1;this.Yf=c;this.jg=!1;this.nd=function(){};this.xe=function(){};this.ta=new hl;this.ta.gb=a;this.ta.g=a;this.Qa=!1;this.kb={qd:null,pd:null};this.te=!0;this.Wb=null;this.yb=this.Lf=!1;K().A++;this.pa=this.gd();this.ve=-1;this.ca=null;this.he=this.Jf=!1;this.T=new Xk;el(this.T);go(this);1==this.Yf?$k(this.T, +"od",1):$k(this.T,"od",0)};u(ho,M);ho.prototype.L=function(){this.ta.g&&(this.kb.qd&&(Pf(this.ta.g,"mouseover",this.kb.qd),this.kb.qd=null),this.kb.pd&&(Pf(this.ta.g,"mouseout",this.kb.pd),this.kb.pd=null));this.Wb&&this.Wb.W();this.ca&&this.ca.W();delete this.Fc;delete this.nd;delete this.xe;delete this.ta.gb;delete this.ta.g;delete this.kb;delete this.Wb;delete this.ca;delete this.T;M.prototype.L.call(this)};ho.prototype.lb=function(){return this.ca?this.ca.g:this.position};ho.prototype.xd=function(a){K().xd(a)}; +var go=function(a){a=a.ta.gb;var b;if(b=a&&a.getAttribute)b=/-[a-z]/.test("googleAvInapp")?!1:gl&&a.dataset?"googleAvInapp"in a.dataset:a.hasAttribute?a.hasAttribute("data-"+Cg()):!!a.getAttribute("data-"+Cg());b&&(an().h=!0)};ho.prototype.La=function(){return!1};ho.prototype.uc=function(){return new Rn};ho.prototype.oa=function(){return this.Fc}; +var io=function(a,b){b!=a.yb&&(a.yb=b,a=an(),b?a.A++:0c?0:a};ho.prototype.ee=function(a){return ko(this,a,1E4)}; +var lo=function(a,b,c){if(a.ca){a.ca.Ya();var d=a.ca.I,e=d.j,f=e.g;if(null!=d.l){var g=d.h;a.Kc=new vg(g.left-f.left,g.top-f.top)}f=a.Sc()?Math.max(d.g,d.o):d.g;g={};null!==e.volume&&(g.volume=e.volume);e=a.ee(d);a.yc=d;a.Jd(f,b,c,!1,g,e,d.A)}},mo=function(a){if(a.Ib&&a.Wb){var b=1==al(a.T,"od"),c=an().g,d=a.Wb,e=a.ca?a.ca.getName():"ns",f=new z(c.getWidth(),c.getHeight());c=a.Sc();a={gg:e,Kc:a.Kc,rg:f,Sc:c,Y:a.pa.Y,mg:b};if(b=d.h){b.Ya();e=b.I;f=e.j.g;var g=null,h=null;null!=e.l&&f&&(g=e.h,g=new vg(g.left- +f.left,g.top-f.top),h=new z(f.right-f.left,f.bottom-f.top));e=c?Math.max(e.g,e.o):e.g;c={gg:b.getName(),Kc:g,rg:h,Sc:c,mg:!1,Y:e}}else c=null;c&&Cn(d,a,c)}};l=ho.prototype;l.Jd=function(a,b,c,d,e,f,g){this.Qa||(this.Ib&&(a=this.Xc(a,c,e,g),d=d&&this.pa.Y>=(this.ob()?.3:.5),this.Kd(f,a,d),this.zc=b,0=e||0>=b||0>=c||0>=d||(e/=b,a=Ch(a),e>c/d?(c/=e,d=(d-c)/2,0=a.bottom||a.left>=a.right?new C(0,0,0,0):a;a=this.h.o;b=e=d=0;0<(this.g.bottom-this.g.top)*(this.g.right-this.g.left)&&(this.ie(c)?c=new C(0,0,0,0):(d=an().l,b=new C(0,d.height,d.width,0),d=$n(c,this.g),e=$n(c,an().g),b=$n(c,b)));c=c.top>=c.bottom||c.left>=c.right?new C(0,0,0,0):Dh(c,-this.g.left,-this.g.top); +bn()||(e=d=0);this.I=new nm(a,this.g,c,d,e,this.timestamp,b)};l.getName=function(){return this.h.getName()};var ep=new C(0,0,0,0),fp=function(a,b,c){mn.call(this,null,a,b,c);this.B=a.isActive();this.A=0};u(fp,dp);l=fp.prototype;l.Vc=function(){this.o();return!0};l.ab=function(){dp.prototype.Ya.call(this)};l.Yd=function(){};l.Yc=function(){};l.Ya=function(){this.o();dp.prototype.Ya.call(this)};l.xb=function(a){a=a.isActive();a!==this.B&&(a?this.o():(an().g=new C(0,0,0,0),this.g=new C(0,0,0,0),this.l=new C(0,0,0,0),this.timestamp=-1));this.B=a};function gp(a){return[a.top,a.left,a.bottom,a.right]} +var hp={},ip=(hp.firstquartile=0,hp.midpoint=1,hp.thirdquartile=2,hp.complete=3,hp),jp=function(a,b,c,d,e,f){f=void 0===f?new cp:f;ho.call(this,b,c,d);this.wd=e;this.ed=0;this.ha={};this.fa=new Go;this.ye={};this.ka="";this.playerId=null;this.Na=!1;this.g=[];this.Ta=f.h();this.A=f.j();this.l=null;this.j=-1;this.X=this.F=void 0;this.H=this.G=0;this.U=-1;this.ba=this.ga=!1;this.M=this.D=this.h=this.Db=this.Fa=0;new Gn;this.V=this.Z=0;this.aa=-1;this.ia=0;this.B=If;this.J=[this.uc()];this.Wa=2;this.sb= +{};this.sb.pause="p";this.sb.resume="r";this.sb.skip="s";this.sb.mute="m";this.sb.unmute="um";this.sb.exitfullscreen="ef";this.o=null;this.ma=this.Ea=!1};u(jp,ho);jp.prototype.La=function(){return!0};var kp=function(a){a.he=!0;0!=a.ia&&(a.ia=3)},lp=function(a){return void 0===a?a:Number(a)?Mm(a,3):0};l=jp.prototype;l.ee=function(a){return ko(this,a,Math.max(1E4,this.j/3))}; +l.Jd=function(a,b,c,d,e,f,g){var h=this,k=this.B(this)||{};fg(k,e);this.j=k.duration||this.j;this.F=k.isVpaid||this.F;this.X=k.isYouTube||this.X;Gl();this.ma=!1;e=mp(this,b);1===np(this)&&(f=e);ho.prototype.Jd.call(this,a,b,c,d,k,f,g);this.Ta&&this.Ta.j&&Kb(this.A,function(n){n.h(h)})}; +l.Kd=function(a,b,c){ho.prototype.Kd.call(this,a,b,c);op(this).K(a,b,this.pa,c);this.ba=to(this.pa)&&to(b);-1==this.U&&this.ga&&(this.U=this.oa().j.g);this.fa.j=0;a=this.Ra();b.isVisible()&&this.fa.reportEvent("vs");a&&this.fa.reportEvent("vw");Tm(b.volume)&&this.fa.reportEvent("am");to(b)?this.fa.reportEvent("a"):this.fa.reportEvent("mut");this.yb&&this.fa.reportEvent("f");-1!=b.h&&(this.fa.reportEvent("bm"),1==b.h&&(this.fa.reportEvent("b"),to(b)&&this.fa.reportEvent("umutb")));to(b)&&b.isVisible()&& +this.fa.reportEvent("avs");this.ba&&a&&this.fa.reportEvent("avw");0Math.max(1E4,a.j/3)?0:b);var c=a.B(a)||{};c=void 0!==c.currentTime?c.currentTime:a.G;var d=c-a.G,e=0;0<=d?(a.H+=b,a.V+=Math.max(b-d,0),e=Math.min(d,a.H)):a.Z+=Math.abs(d);0!=d&&(a.H=0);-1==a.aa&&0=a.j/2:0=a.U:!1:!1},sp=function(a){var b={},c=an();b.insideIframe=c.j;b.unmeasurable=a.Qa;b.position=a.lb();b.exposure=a.pa.Y;b.documentSize=c.o;b.viewportSize=new z(c.g.getWidth(),c.g.getHeight());null!=a.o&&(b.presenceData=a.o);b.screenShare=a.pa.sa;return b},tp=function(a){var b=Mm(a.pa.Y,2),c=a.fa.j, +d=a.pa,e=op(a),f=lp(e.o),g=lp(e.A),h=lp(d.volume),k=Mm(e.B,2),n=Mm(e.G,2),m=Mm(d.Y,2),q=Mm(e.H,2),t=Mm(e.M,2);d=Mm(d.sa,2);a=Ch(a.lb());a.round();e=Sn(e,!1);return{qg:b,Nb:c,Gc:f,Cc:g,Fb:h,Hc:k,Dc:n,Y:m,Ic:q,Ec:t,sa:d,position:a,Jc:e}},vp=function(a,b){up(a.g,b,function(){return{qg:0,Nb:void 0,Gc:-1,Cc:-1,Fb:-1,Hc:-1,Dc:-1,Y:-1,Ic:-1,Ec:-1,sa:-1,position:void 0,Jc:[]}});a.g[b]=tp(a)},up=function(a,b,c){for(var d=a.length;dc.time?b:c},a[0])};l=Yp.prototype;l.Ya=function(){var a=$p(this);0this.g.K&&(this.g=this,fn(this)),this.K=a);return 2==a};var dq=function(){K();var a=an();return a.j||a.h?0:2};var fq=function(){};var gq=function(){this.done=!1;this.g={ff:0,Vd:0,mi:0,be:0,kd:-1,mf:0,lf:0,nf:0,fg:0};this.l=null;this.A=!1;this.j=null;this.B=0;this.h=new cn(this)},jq=function(){var a=hq;a.A||(a.A=!0,iq(a,function(){return a.o.apply(a,ka(Ia.apply(0,arguments)))}),a.o())};gq.prototype.sample=function(){kq(this,Op(),!1)}; +var lq=function(){D(fq);var a=D(Tp);null!=a.g&&a.g.g?jn(a.g.g):Xm(an())},kq=function(a,b,c){if(!a.done&&(a.h.cancel(),0!=b.length)){a.j=null;try{lq();var d=km();K().l=d;if(null!=D(Tp).g)for(var e=0;eWf(Aq).length?null:Ob(b,function(c,d){d=d.toLowerCase().split("=");if(2!=d.length||void 0=== +Bq[d[0]]||!Bq[d[0]](d[1]))throw Error("Entry ("+d[0]+", "+d[1]+") is invalid.");c[d[0]]=d[1];return c},{})}catch(c){return null}},Eq=function(a,b){if(void 0==a.g)return 0;switch(a.l){case "mtos":return a.h?Mn(b.g,a.g):Mn(b.h,a.g);case "tos":return a.h?Kn(b.g,a.g):Kn(b.h,a.g)}return 0};var Fq=function(a,b,c,d){$o.call(this,b,d);this.B=a;this.I=c};u(Fq,$o);Fq.prototype.getId=function(){return this.B};Fq.prototype.A=function(){return!0};Fq.prototype.g=function(a){var b=a.oa(),c=a.getDuration();return Pb(this.I,function(d){if(void 0!=d.g)var e=Eq(d,b);else b:{switch(d.l){case "mtos":e=d.h?b.l.j:b.j.g;break b;case "tos":e=d.h?b.l.g:b.j.g;break b}e=0}0==e?d=!1:(d=-1!=d.j?d.j:void 0!==c&&0=d);return d})};var Gq=function(){};u(Gq,Eo);Gq.prototype.g=function(a){var b=new Do;b.g=Fo(a,Ao);b.h=Fo(a,Co);return b};var Hq=function(a){$o.call(this,"fully_viewable_audible_half_duration_impression",a)};u(Hq,$o);Hq.prototype.g=function(a){return rp(a)};var Iq=function(a){this.g=a};u(Iq,bp);var Jq=function(a,b){$o.call(this,a,b)};u(Jq,$o);Jq.prototype.g=function(a){return a.oa().Ra()};var Kq=function(a){ap.call(this,"measurable_impression",a)};u(Kq,ap);Kq.prototype.g=function(a){var b=Tb(this.B,al(K().T,"ovms"));return!a.Qa&&(0!=a.ia||b)};var Lq=function(){Iq.apply(this,arguments)};u(Lq,Iq);Lq.prototype.h=function(){return new Kq(this.g)};Lq.prototype.j=function(){return[new Jq("viewable_impression",this.g),new Hq(this.g)]};var Mq=function(a,b,c){fp.call(this,a,b,c)};u(Mq,fp);Mq.prototype.o=function(){var a=Ma("ima.admob.getViewability"),b=al(this.T,"queryid");"function"===typeof a&&b&&a(b)};Mq.prototype.getName=function(){return"gsv"};var Nq=function(a){a=void 0===a?L:a;nn.call(this,new en(a,2))};u(Nq,nn);Nq.prototype.getName=function(){return"gsv"};Nq.prototype.Eb=function(){var a=an();K();return a.h&&!1};Nq.prototype.Yb=function(a,b,c){return new Mq(this.g,b,c)};var Oq=function(a,b,c){fp.call(this,a,b,c)};u(Oq,fp);Oq.prototype.o=function(){var a=this,b=Ma("ima.bridge.getNativeViewability"),c=al(this.T,"queryid");"function"===typeof b&&c&&b(c,function(d){bg(d)&&a.A++;var e=d.opt_nativeViewVisibleBounds||{},f=d.opt_nativeViewHidden;a.g=Sm(d.opt_nativeViewBounds||{});var g=a.h.o;g.g=f?Ch(ep):Sm(e);a.timestamp=d.opt_nativeTime||-1;an().g=g.g;d=d.opt_nativeVolume;void 0!==d&&(g.volume=d)})};Oq.prototype.getName=function(){return"nis"};var Pq=function(a){a=void 0===a?L:a;nn.call(this,new en(a,2))};u(Pq,nn);Pq.prototype.getName=function(){return"nis"};Pq.prototype.Eb=function(){var a=an();K();return a.h&&!1};Pq.prototype.Yb=function(a,b,c){return new Oq(this.g,b,c)};var Qq=function(){en.call(this,L,2,"mraid");this.ga=0;this.H=this.J=!1;this.I=null;this.h=tm(this.j);this.o.g=new C(0,0,0,0);this.ba=!1};u(Qq,en);Qq.prototype.F=function(){return null!=this.h.Ba};Qq.prototype.Z=function(){var a={};this.ga&&(a.mraid=this.ga);this.J&&(a.mlc=1);a.mtop=this.h.eg;this.I&&(a.mse=this.I);this.ba&&(a.msc=1);a.mcp=this.h.lc;return a}; +Qq.prototype.A=function(a){var b=Ia.apply(1,arguments);try{return this.h.Ba[a].apply(this.h.Ba,b)}catch(c){dm(538,c,.01,function(d){d.method=a})}};var Rq=function(a,b,c){a.A("addEventListener",b,c)}; +Qq.prototype.initialize=function(){var a=this;if(this.ua)return!this.Lb();this.ua=!0;if(2===this.h.lc)return this.I="ng",gn(this,"w"),!1;if(1===this.h.lc)return this.I="mm",gn(this,"w"),!1;an().K=!0;this.j.document.readyState&&"complete"==this.j.document.readyState?Sq(this):Yn(this.j,"load",function(){Gl().setTimeout(cm(292,function(){return Sq(a)}),100)},292);return!0}; +var Sq=function(a){K().o=!!a.A("isViewable");Rq(a,"viewableChange",Tq);"loading"===a.A("getState")?Rq(a,"ready",Uq):Vq(a)},Vq=function(a){"string"===typeof a.h.Ba.AFMA_LIDAR?(a.J=!0,Wq(a)):(a.h.lc=3,a.I="nc",gn(a,"w"))},Wq=function(a){a.H=!1;var b=1==al(K().T,"rmmt"),c=!!a.A("isViewable");(b?!c:1)&&Gl().setTimeout(cm(524,function(){a.H||(Xq(a),dm(540,Error()),a.I="mt",gn(a,"w"))}),500);Yq(a);Rq(a,a.h.Ba.AFMA_LIDAR,Zq)},Yq=function(a){var b=1==al(K().T,"sneio"),c=void 0!==a.h.Ba.AFMA_LIDAR_EXP_1,d= +void 0!==a.h.Ba.AFMA_LIDAR_EXP_2;(b=b&&d)&&(a.h.Ba.AFMA_LIDAR_EXP_2=!0);c&&(a.h.Ba.AFMA_LIDAR_EXP_1=!b)},Xq=function(a){a.A("removeEventListener",a.h.Ba.AFMA_LIDAR,Zq);a.J=!1};Qq.prototype.U=function(){var a=an(),b=$q(this,"getMaxSize");a.g=new C(0,b.width,b.height,0)};Qq.prototype.V=function(){an().l=$q(this,"getScreenSize")}; +var $q=function(a,b){if("loading"===a.A("getState"))return new z(-1,-1);b=a.A(b);if(!b)return new z(-1,-1);a=parseInt(b.width,10);b=parseInt(b.height,10);return isNaN(a)||isNaN(b)?new z(-1,-1):new z(a,b)};Qq.prototype.W=function(){Xq(this);en.prototype.W.call(this)}; +var Uq=function(){try{var a=D(Qq);a.A("removeEventListener","ready",Uq);Vq(a)}catch(b){dm(541,b)}},Zq=function(a,b){try{var c=D(Qq);c.H=!0;var d=a?new C(a.y,a.x+a.width,a.y+a.height,a.x):new C(0,0,0,0);var e=km(),f=bn();var g=new mm(e,f,c);g.g=d;g.volume=b;c.ab(g)}catch(h){dm(542,h)}},Tq=function(a){var b=K(),c=D(Qq);a&&!b.o&&(b.o=!0,c.ba=!0,c.I&&gn(c,"w",!0))};var Pl=new function(a,b){this.key=a;this.defaultValue=void 0===b?!1:b;this.valueType="boolean"}("45378663");var br=function(){this.j=this.ua=!1;this.g=this.h=null;var a={};this.J=(a.start=this.Gf,a.firstquartile=this.Bf,a.midpoint=this.Df,a.thirdquartile=this.Hf,a.complete=this.yf,a.error=this.zf,a.pause=this.ud,a.resume=this.se,a.skip=this.Ff,a.viewable_impression=this.Ja,a.mute=this.Cb,a.unmute=this.Cb,a.fullscreen=this.Cf,a.exitfullscreen=this.Af,a.fully_viewable_audible_half_duration_impression=this.Ja,a.measurable_impression=this.Ja,a.abandon=this.ud,a.engagedview=this.Ja,a.impression=this.Ja,a.creativeview= +this.Ja,a.progress=this.Cb,a.custom_metric_viewable=this.Ja,a.bufferstart=this.ud,a.bufferfinish=this.se,a.audio_measurable=this.Ja,a.audio_audible=this.Ja,a);a={};this.U=(a.overlay_resize=this.Ef,a.abandon=this.jd,a.close=this.jd,a.collapse=this.jd,a.overlay_unmeasurable_impression=function(b){return yp(b,"overlay_unmeasurable_impression",bn())},a.overlay_viewable_immediate_impression=function(b){return yp(b,"overlay_viewable_immediate_impression",bn())},a.overlay_unviewable_impression=function(b){return yp(b, +"overlay_unviewable_impression",bn())},a.overlay_viewable_end_of_session_impression=function(b){return yp(b,"overlay_viewable_end_of_session_impression",bn())},a);K().h=3;ar(this)};br.prototype.l=function(a){io(a,!1);Qp(a)};br.prototype.I=function(){};var cr=function(a,b,c,d){a=a.A(null,d,!0,b);a.l=c;Rp([a]);return a}; +br.prototype.A=function(a,b,c,d){var e=this;a=new jp(L,a,c?b:-1,7,this.cd(),this.ae());a.ka=d;Zk(a.T);$k(a.T,"queryid",a.ka);a.xd("");no(a,function(){return e.H.apply(e,ka(Ia.apply(0,arguments)))},function(){return e.M.apply(e,ka(Ia.apply(0,arguments)))});(d=D(Tp).g)&&jo(a,d);a.ta.gb&&D(fq);return a}; +var dr=function(a,b,c){Hk(b);var d=a.g;Kb(b,function(e){var f=Nb(e.j,function(g){var h=Dq(g);if(null==h)g=null;else if(g=new Cq,null!=h.visible&&(g.g=h.visible/100),null!=h.audible&&(g.h=1==h.audible),null!=h.time){var k="mtos"==h.timetype?"mtos":"tos",n=jb(h.time,"%")?"%":"ms";h=parseInt(h.time,10);"%"==n&&(h/=100);"ms"==n?(g.j=h,g.o=-1):(g.j=-1,g.o=h);g.l=void 0===k?"tos":k}return g});Pb(f,function(g){return null==g})||qp(c,new Fq(e.id,e.g,f,d))})},er=function(){var a=[],b=K();a.push(D(eq));al(b.T, +"mvp_lv")&&a.push(D(Qq));b=[new Nq,new Pq];b.push(new Wp(a));b.push(new cq(L));return b},gr=function(a){if(!a.ua){a.ua=!0;try{var b=km(),c=K(),d=an();gm=b;c.j=79463069;"o"!==a.h&&(pq=Bh(L));if(Hl()){hq.g.Vd=0;hq.g.kd=km()-b;var e=er(),f=D(Tp);f.h=e;Up(f,function(){fr()})?hq.done||(nq(),hn(f.g.g,a),jq()):d.j?fr():jq()}else rq=!0}catch(g){throw Np.reset(),g;}}},hr=function(a){hq.h.cancel();qq=a;hq.done=!0},ir=function(a){if(a.h)return a.h;var b=D(Tp).g;if(b)switch(b.getName()){case "nis":a.h="n";break; +case "gsv":a.h="m"}a.h||(a.h="h");return a.h},jr=function(a,b,c){if(null==a.g)return b.Db|=4,!1;a=a.g.report(c,b);b.Db|=a;return 0==a};br.prototype.xb=function(a){switch(a.Pa()){case 0:if(a=D(Tp).g)a=a.g,Ub(a.l,this),a.D&&this.La()&&kn(a);fr();break;case 2:jq()}};br.prototype.ab=function(){};br.prototype.La=function(){return!1};var fr=function(){var a=[new cq(L)],b=D(Tp);b.h=a;Up(b,function(){hr("i")})?hq.done||(nq(),jq()):hr("i")}; +br.prototype.M=function(a,b){a.Qa=!0;switch(a.va()){case 1:kr(a,b);break;case 2:this.zd(a)}this.Dd(a)};var kr=function(a,b){if(!a.Na){var c=yp(a,"start",bn());c=a.wd.g(c).g;var d={id:"lidarv"};d.r=b;d.sv="959";null!==wq&&(d.v=wq);ch(c,function(e,f){return d[e]="mtos"==e||"tos"==e?f:encodeURIComponent(f)});b=sq();ch(b,function(e,f){return d[e]=encodeURIComponent(f)});b="//pagead2.googlesyndication.com/pagead/gen_204?"+vn(tn(new rn,d));yn(b);a.Na=!0}};l=br.prototype; +l.Gf=function(a){var b=a.B(a);b&&(b=b.volume,a.Ea=Tm(b)&&0>>0),gs=function(a){if("function"===typeof a)return a;a[os]||(a[os]=function(b){return a.handleEvent(b)});return a[os]};var O=function(){M.call(this);this.o=new Zr(this);this.ac=this;this.ga=null};bb(O,M);O.prototype[Ur]=!0;l=O.prototype;l.addEventListener=function(a,b,c,d){fs(this,a,b,c,d)};l.removeEventListener=function(a,b,c,d){ms(this,a,b,c,d)}; +l.dispatchEvent=function(a){var b,c=this.ga;if(c)for(b=[];c;c=c.ga)b.push(c);c=this.ac;var d=a.type||a;if("string"===typeof a)a=new Qr(a,c);else if(a instanceof Qr)a.target=a.target||c;else{var e=a;a=new Qr(d,c);fg(a,e)}e=!0;if(b)for(var f=b.length-1;!a.h&&0<=f;f--){var g=a.currentTarget=b[f];e=ps(g,d,!0,a)&&e}a.h||(g=a.currentTarget=c,e=ps(g,d,!0,a)&&e,a.h||(e=ps(g,d,!1,a)&&e));if(b)for(f=0;!a.h&&fa.h&&(a.h++,b.next=a.g,a.g=b)};var ts,us=function(){var a=v.MessageChannel;"undefined"===typeof a&&"undefined"!==typeof window&&window.postMessage&&window.addEventListener&&!y("Presto")&&(a=function(){var e=Og(document,"IFRAME");e.style.display="none";document.documentElement.appendChild(e);var f=e.contentWindow;e=f.document;e.open();e.close();var g="callImmediate"+Math.random(),h="file:"==f.location.protocol?"*":f.location.protocol+"//"+f.location.host;e=$a(function(k){if(("*"==h||k.origin==h)&&k.data==g)this.port1.onmessage()}, +this);f.addEventListener("message",e,!1);this.port1={};this.port2={postMessage:function(){f.postMessage(g,h)}}});if("undefined"!==typeof a&&!Bb()){var b=new a,c={},d=c;b.port1.onmessage=function(){if(void 0!==c.next){c=c.next;var e=c.Zd;c.Zd=null;e()}};return function(e){d.next={Zd:e};d=d.next;b.port2.postMessage(0)}}return function(e){v.setTimeout(e,0)}};var vs=function(){this.h=this.g=null};vs.prototype.add=function(a,b){var c=ws.get();c.set(a,b);this.h?this.h.next=c:this.g=c;this.h=c};vs.prototype.remove=function(){var a=null;this.g&&(a=this.g,this.g=this.g.next,this.g||(this.h=null),a.next=null);return a};var ws=new qs(function(){return new xs},function(a){return a.reset()}),xs=function(){this.next=this.g=this.h=null};xs.prototype.set=function(a,b){this.h=a;this.g=b;this.next=null};xs.prototype.reset=function(){this.next=this.g=this.h=null};var ys,zs=!1,As=new vs,Cs=function(a,b){ys||Bs();zs||(ys(),zs=!0);As.add(a,b)},Bs=function(){if(v.Promise&&v.Promise.resolve){var a=v.Promise.resolve(void 0);ys=function(){a.then(Ds)}}else ys=function(){var b=Ds;"function"!==typeof v.setImmediate||v.Window&&v.Window.prototype&&(zb()||!y("Edge"))&&v.Window.prototype.setImmediate==v.setImmediate?(ts||(ts=us()),ts(b)):v.setImmediate(b)}},Ds=function(){for(var a;a=As.remove();){try{a.h.call(a.g)}catch(b){ib(b)}rs(ws,a)}zs=!1};var Es=function(a){if(!a)return!1;try{return!!a.$goog_Thenable}catch(b){return!1}};var Gs=function(a){this.g=0;this.B=void 0;this.o=this.h=this.j=null;this.l=this.A=!1;if(a!=If)try{var b=this;a.call(void 0,function(c){Fs(b,2,c)},function(c){Fs(b,3,c)})}catch(c){Fs(this,3,c)}},Hs=function(){this.next=this.context=this.h=this.j=this.g=null;this.o=!1};Hs.prototype.reset=function(){this.context=this.h=this.j=this.g=null;this.o=!1};var Is=new qs(function(){return new Hs},function(a){a.reset()}),Js=function(a,b,c){var d=Is.get();d.j=a;d.h=b;d.context=c;return d}; +Gs.prototype.then=function(a,b,c){return Ks(this,"function"===typeof a?a:null,"function"===typeof b?b:null,c)};Gs.prototype.$goog_Thenable=!0;Gs.prototype.I=function(a,b){return Ks(this,null,a,b)};Gs.prototype.catch=Gs.prototype.I;Gs.prototype.cancel=function(a){if(0==this.g){var b=new Ls(a);Cs(function(){Ms(this,b)},this)}}; +var Ms=function(a,b){if(0==a.g)if(a.j){var c=a.j;if(c.h){for(var d=0,e=null,f=null,g=c.h;g&&(g.o||(d++,g.g==a&&(e=g),!(e&&1=f.top&&e.topf.top):e=!1;dt(a,new ft(1024,e));d&&0=f.left&&e.leftc.left):c=!1;dt(a,new ft(4096,c))}};var lt=function(a,b){var c=0;Xf(B(),"ima","video","client","tagged")&&(c=1);var d=null;a&&(d=a());if(d){a=ct();a.g={};var e=new ft(32,!0);e.j=!1;dt(a,e);e=B().document;e=e.visibilityState||e.webkitVisibilityState||e.mozVisibilityState||e.msVisibilityState||"";dt(a,new ft(64,"hidden"!=e.toLowerCase().substring(e.length-6)?!0:!1));try{var f=B().top;try{var g=!!f.location.href||""===f.location.href}catch(m){g=!1}if(g){var h=Pr(d);var k=h&&0!=h.length?"1":"0"}else k="2"}catch(m){k="2"}dt(a,new ft(256, +"2"==k));dt(a,new ft(128,"1"==k));h=g=B().top;"2"==k&&(h=B());f=jt(d,h);dt(a,new gt("er",f));try{var n=h.document&&!h.document.body?null:Mg(h||window)}catch(m){n=null}n?(h=Ng(Hg(h.document).g),dt(a,new ft(16384,!!h)),n=h?new Eh(h.x,h.y,n.width,n.height):null):n=null;dt(a,new gt("vi",n));if(n&&"1"==k){k=Pr(d);d=[];for(h=0;h=b&&(a.g=b)},Ht=function(a,b,c,d,e){if(((void 0===d?0:d)?a.g:Math.random())<(e||.01))try{if(c instanceof tl)var f=c;else f=new tl,uh(c,function(h,k){var n=f,m=n.o++;xl(n,m,ul(k,h))});var g=Al(f,"https:","/pagead/gen_204?id="+b+"&");g&&Rh(v,g)}catch(h){}};var Et,Lt,Dt=new ii(1,window);(function(a){Et=null!=a?a:new Jt;"number"!==typeof window.google_srt&&(window.google_srt=Math.random());Kt();Lt=new Ft;Lt.Qc(function(){});Lt.Gd(!0);"complete"==window.document.readyState?window.google_measure_js_timing||Dt.B():Dt.j&&Of(window,"load",function(){window.google_measure_js_timing||Dt.B()})})();var Mt=(new Date).getTime();[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2].reduce(function(a,b){return a+b});var Nt=function(a){this.P=re(a)};u(Nt,$e);Nt.la=[3];var Ot=function(a){this.P=re(a)};u(Ot,$e);var Pt=function(a,b){return Je(a,1,b,Zd)},Qt=function(a,b){return Je(a,2,b,Zd)},Rt=function(a,b){return Je(a,3,b,ae)},St=function(a,b){Je(a,4,b,ae)};Ot.la=[1,2,3,4];var Tt=function(a){this.P=re(a)};u(Tt,$e);var Ut=function(a){this.P=re(a)};u(Ut,$e);Ut.prototype.getVersion=function(){return Ve(this,1)}; +var Vt=function(a,b){return Ke(a,1,be(b),0)},Wt=function(a,b){return Pe(a,2,b)},Xt=function(a,b){return Pe(a,3,b)},Yt=function(a,b){return Ke(a,4,be(b),0)},Zt=function(a,b){return Ke(a,5,be(b),0)},$t=function(a,b){return Ke(a,6,be(b),0)},au=function(a,b){return Ke(a,7,je(b),"")},bu=function(a,b){return Ke(a,8,be(b),0)},cu=function(a,b){return Ke(a,9,be(b),0)},du=function(a,b){return Ke(a,10,Vd(b),!1)},eu=function(a,b){return Ke(a,11,Vd(b),!1)},fu=function(a,b){return Je(a,12,b,Zd)},gu=function(a, +b){return Je(a,13,b,Zd)},hu=function(a,b){return Je(a,14,b,Zd)},iu=function(a,b){return Ke(a,15,Vd(b),!1)},ju=function(a,b){return Ke(a,16,je(b),"")},ku=function(a,b){return Je(a,17,b,ae)},lu=function(a,b){return Je(a,18,b,ae)},mu=function(a,b){return Qe(a,19,b)};Ut.la=[12,13,14,17,18,19];var nu=function(a){this.P=re(a)};u(nu,$e);var ou="a".charCodeAt(),pu=Vf({gh:0,fh:1,ah:2,Vg:3,bh:4,Wg:5,eh:6,Yg:7,Zg:8,Ug:9,Xg:10,hh:11}),qu=Vf({jh:0,kh:1,ih:2});var ru=function(a){if(/[^01]/.test(a))throw Error("Input bitstring "+a+" is malformed!");this.h=a;this.g=0},uu=function(a){a=tu(a,36);var b=new Tt;b=Ke(b,1,ee(Math.floor(a/10)),"0");return Ke(b,2,be(a%10*1E8),0)},vu=function(a){return String.fromCharCode(ou+tu(a,6))+String.fromCharCode(ou+tu(a,6))},yu=function(a){var b=tu(a,16);return!0===!!tu(a,1)?(a=wu(a),a.forEach(function(c){if(c>b)throw Error("ID "+c+" is past MaxVendorId "+b+"!");}),a):xu(a,b)},zu=function(a){for(var b=[],c=tu(a,12);c--;){var d= +tu(a,6),e=tu(a,2),f=wu(a),g=b,h=g.push,k=new Nt;d=Ke(k,1,null==d?d:Zd(d),0);e=Ke(d,2,null==e?e:Zd(e),0);f=Je(e,3,f,ae);h.call(g,f)}return b},wu=function(a){for(var b=tu(a,12),c=[];b--;){var d=!0===!!tu(a,1),e=tu(a,16);if(d)for(d=tu(a,16);e<=d;e++)c.push(e);else c.push(e)}c.sort(function(f,g){return f-g});return c},xu=function(a,b,c){for(var d=[],e=0;ea.h.length)throw Error("Requested length "+b+" is past end of string.");var c=a.h.substring(a.g,a.g+b);a.g+=b;return parseInt(c,2)};ru.prototype.skip=function(a){this.g+=a};var Au=function(a){try{var b=Mc(a).map(function(f){return f.toString(2).padStart(8,"0")}).join(""),c=new ru(b);if(3!==tu(c,3))return null;var d=Qt(Pt(new Ot,xu(c,24,pu)),xu(c,24,pu)),e=tu(c,6);0!==e&&St(Rt(d,xu(c,e)),xu(c,e));return d}catch(f){return null}};var Bu=function(a){try{var b=Mc(a).map(function(d){return d.toString(2).padStart(8,"0")}).join(""),c=new ru(b);return mu(lu(ku(ju(iu(hu(gu(fu(eu(du(cu(bu(au($t(Zt(Yt(Xt(Wt(Vt(new Ut,tu(c,6)),uu(c)),uu(c)),tu(c,12)),tu(c,12)),tu(c,6)),vu(c)),tu(c,12)),tu(c,6)),!!tu(c,1)),!!tu(c,1)),xu(c,12,qu)),xu(c,24,pu)),xu(c,24,pu)),!!tu(c,1)),vu(c)),yu(c)),yu(c)),zu(c))}catch(d){return null}};var Du=function(a){if(!a)return null;var b=a.split(".");if(4b)throw Error("Bad port number "+b);a.I=b}else a.I=null},tv=function(a,b,c){b instanceof wv?(a.g=b,Cv(a.g,a.l)):(c||(b=xv(b,Dv)),a.g=new wv(b,a.l))},Ev=function(a,b,c){a.g.set(b,c);return a}; +P.prototype.D=function(){return this.K}; +var Fv=function(a){return a instanceof P?a.F():new P(a,void 0)},vv=function(a,b){return a?b?decodeURI(a.replace(/%25/g,"%2525")):decodeURIComponent(a):""},xv=function(a,b,c){return"string"===typeof a?(a=encodeURI(a).replace(b,Gv),c&&(a=a.replace(/%25([0-9a-fA-F]{2})/g,"%$1")),a):null},Gv=function(a){a=a.charCodeAt(0);return"%"+(a>>4&15).toString(16)+(a&15).toString(16)},yv=/[#\/\?@]/g,Av=/[#\?:]/g,zv=/[#\?]/g,Dv=/[#\?@]/g,Bv=/#/g,wv=function(a,b){this.h=this.g=null;this.j=a||null;this.o=!!b},Hv=function(a){a.g|| +(a.g=new Map,a.h=0,a.j&&ch(a.j,function(b,c){a.add(wg(b),c)}))};wv.prototype.add=function(a,b){Hv(this);this.j=null;a=Iv(this,a);var c=this.g.get(a);c||this.g.set(a,c=[]);c.push(b);this.h+=1;return this};wv.prototype.remove=function(a){Hv(this);a=Iv(this,a);return this.g.has(a)?(this.j=null,this.h-=this.g.get(a).length,this.g.delete(a)):!1};wv.prototype.clear=function(){this.g=this.j=null;this.h=0};wv.prototype.isEmpty=function(){Hv(this);return 0==this.h};var Jv=function(a,b){Hv(a);b=Iv(a,b);return a.g.has(b)}; +l=wv.prototype;l.forEach=function(a,b){Hv(this);this.g.forEach(function(c,d){c.forEach(function(e){a.call(b,e,d,this)},this)},this)};l.tc=function(){Hv(this);for(var a=Array.from(this.g.values()),b=Array.from(this.g.keys()),c=[],d=0;d=b.I&&b.cancel())}this.G?this.G.call(this.F,this):this.K=!0;this.j||zy(this,new Ay(this))}};yy.prototype.D=function(a,b){this.B=!1;By(this,a,b)}; +var By=function(a,b,c){a.j=!0;a.h=c;a.o=!b;Cy(a)},Ey=function(a){if(a.j){if(!a.K)throw new Dy(a);a.K=!1}};yy.prototype.callback=function(a){Ey(this);By(this,!0,a)};var zy=function(a,b){Ey(a);By(a,!1,b)};yy.prototype.Wc=function(a){return Fy(this,a,null)};var Fy=function(a,b,c,d){a.l.push([b,c,d]);a.j&&Cy(a);return a};yy.prototype.then=function(a,b,c){var d,e,f=new Gs(function(g,h){e=g;d=h});Fy(this,e,function(g){g instanceof Ay?f.cancel():d(g);return Gy},this);return f.then(a,b,c)}; +yy.prototype.$goog_Thenable=!0; +var Hy=function(a){return Pb(a.l,function(b){return"function"===typeof b[1]})},Gy={},Cy=function(a){if(a.A&&a.j&&Hy(a)){var b=a.A,c=Iy[b];c&&(v.clearTimeout(c.g),delete Iy[b]);a.A=0}a.g&&(a.g.I--,delete a.g);b=a.h;for(var d=c=!1;a.l.length&&!a.B;){var e=a.l.shift(),f=e[0],g=e[1];e=e[2];if(f=a.o?g:f)try{var h=f.call(e||a.F,b);h===Gy&&(h=void 0);void 0!==h&&(a.o=a.o&&(h==b||h instanceof Error),a.h=b=h);if(Es(b)||"function"===typeof v.Promise&&b instanceof v.Promise)d=!0,a.B=!0}catch(k){b=k,a.o=!0,Hy(a)|| +(c=!0)}}a.h=b;d&&(h=$a(a.D,a,!0),d=$a(a.D,a,!1),b instanceof yy?(Fy(b,h,d),b.H=!0):b.then(h,d));c&&(b=new Jy(b),Iy[b.g]=b,a.A=b.g)},Dy=function(){db.call(this)};bb(Dy,db);Dy.prototype.message="Deferred has already fired";Dy.prototype.name="AlreadyCalledError";var Ay=function(){db.call(this)};bb(Ay,db);Ay.prototype.message="Deferred was canceled";Ay.prototype.name="CanceledError";var Jy=function(a){this.g=v.setTimeout($a(this.j,this),0);this.h=a}; +Jy.prototype.j=function(){delete Iy[this.g];throw this.h;};var Iy={};var Ky=function(){O.call(this)};bb(Ky,O);Ky.prototype.g=null;Ky.prototype.next=function(a){if(a)this.g["continue"](a);else this.g["continue"]()};Ky.prototype.remove=function(){var a=new yy;try{var b=this.g["delete"]()}catch(c){return zy(a,ty(c,"deleting via cursor")),a}b.onsuccess=function(){a.callback()};b.onerror=function(c){zy(a,sy(c.target,"deleting via cursor"))};return a};Ky.prototype.getValue=function(){return this.g.value}; +var Ly=function(a,b){var c=new Ky;try{var d=a.openCursor(b?b.g:null)}catch(e){throw c.W(),ty(e,a.name);}d.onsuccess=function(e){c.g=e.target.result||null;c.g?c.dispatchEvent("n"):c.dispatchEvent("c")};d.onerror=function(){c.dispatchEvent("e")};return c};var My=function(a){this.g=a};My.prototype.getName=function(){return this.g.name};var Ny=function(a,b,c){var d=new yy;try{var e=a.g.get(c)}catch(f){return b+=" with key "+fh(c),zy(d,ty(f,b)),d}e.onsuccess=function(f){d.callback(f.target.result)};e.onerror=function(f){b+=" with key "+fh(c);zy(d,sy(f.target,b))};return d};My.prototype.get=function(a){return Ny(this,"getting from index "+this.getName(),a)};var Oy=function(a,b){return Ly(a.g,b)};var Py=function(a){this.g=a};Py.prototype.getName=function(){return this.g.name};var Qy=function(a,b,c,d,e){var f=new yy;try{var g=e?a.g[b](d,e):a.g[b](d)}catch(h){return c+=fh(d),e&&(c+=", with key "+fh(e)),zy(f,ty(h,c)),f}g.onsuccess=function(h){f.callback(h.target.result)};g.onerror=function(h){c+=fh(d);e&&(c+=", with key "+fh(e));zy(f,sy(h.target,c))};return f},Ry=function(a,b){return Qy(a,"put","putting into "+a.getName()+" with value",b)}; +Py.prototype.add=function(a,b){return Qy(this,"add","adding into "+this.getName()+" with value ",a,b)};Py.prototype.remove=function(a){var b=new yy;try{var c=this.g["delete"](a instanceof uy?a.g:a)}catch(e){return c="removing from "+this.getName()+" with key "+fh(a),zy(b,ty(e,c)),b}c.onsuccess=function(){b.callback()};var d=this;c.onerror=function(e){var f="removing from "+d.getName()+" with key "+fh(a);zy(b,sy(e.target,f))};return b}; +Py.prototype.get=function(a){var b=new yy;try{var c=this.g.get(a)}catch(e){return c="getting from "+this.getName()+" with key "+fh(a),zy(b,ty(e,c)),b}c.onsuccess=function(e){b.callback(e.target.result)};var d=this;c.onerror=function(e){var f="getting from "+d.getName()+" with key "+fh(a);zy(b,sy(e.target,f))};return b}; +Py.prototype.clear=function(){var a="clearing store "+this.getName(),b=new yy;try{var c=this.g.clear()}catch(d){return zy(b,ty(d,a)),b}c.onsuccess=function(){b.callback()};c.onerror=function(d){zy(b,sy(d.target,a))};return b};var Sy=function(a){try{return new My(a.g.index("timestamp"))}catch(b){throw ty(b,"getting index timestamp");}};var Ty=function(a,b){O.call(this);this.g=a;this.j=b;this.h=new zw(this);this.h.O(this.g,"complete",$a(this.dispatchEvent,this,"complete"));this.h.O(this.g,"abort",$a(this.dispatchEvent,this,"abort"));this.h.O(this.g,"error",this.Me)};bb(Ty,O);l=Ty.prototype;l.Me=function(a){a.target instanceof fy?this.dispatchEvent({type:"error",target:a.target}):this.dispatchEvent({type:"error",target:sy(a.target,"in transaction")})}; +l.objectStore=function(a){try{return new Py(this.g.objectStore(a))}catch(b){throw ty(b,"getting object store "+a);}};l.commit=function(a){if(this.g.commit||!a)try{this.g.commit()}catch(b){throw ty(b,"cannot commit the transaction");}};l.wait=function(){var a=new yy;es(this,"complete",$a(a.callback,a));var b=es(this,"abort",function(){ns(c);zy(a,new fy(my,"waiting for transaction to complete"))});var c=es(this,"error",function(e){ns(b);zy(a,e.target)});var d=this.j;return a.Wc(function(){return d})}; +l.abort=function(){this.g.abort()};l.L=function(){Ty.Da.L.call(this);this.h.W()};var Uy=function(a){O.call(this);this.g=a;this.h=new zw(this);this.h.O(this.g,"abort",$a(this.dispatchEvent,this,"abort"));this.h.O(this.g,"error",this.Ne);this.h.O(this.g,"versionchange",this.rf);this.h.O(this.g,"close",$a(this.dispatchEvent,this,"close"))};bb(Uy,O);l=Uy.prototype;l.rd=!0;l.Ne=function(a){a=(a=a.target)&&a.error;this.dispatchEvent({type:"error",errorCode:a&&a.severity})};l.rf=function(a){this.dispatchEvent(new Vy(a.oldVersion,a.newVersion))}; +l.close=function(){this.rd&&(this.g.close(),this.rd=!1)};l.getName=function(){return this.g.name};l.getVersion=function(){return Number(this.g.version)};var Wy=function(a){var b=["MediaSourceVideoChunk"];try{var c=a.g.transaction(b,"readwrite");return new Ty(c,a)}catch(d){throw ty(d,"creating transaction");}};Uy.prototype.L=function(){Uy.Da.L.call(this);this.h.W()};var Vy=function(a,b){Qr.call(this,"versionchange");this.oldVersion=a;this.newVersion=b};bb(Vy,Qr);var Xy=function(a){var b=new yy;void 0==cy&&(cy=v.indexedDB||v.mozIndexedDB||v.webkitIndexedDB||v.moz_indexedDB);var c=cy.open("VideoChunkPersistentStorage",6);c.onsuccess=function(d){d=new Uy(d.target.result);b.callback(d)};c.onerror=function(d){zy(b,sy(d.target,"opening database VideoChunkPersistentStorage"))};c.onupgradeneeded=function(d){if(a){var e=new Uy(d.target.result);a(new Vy(d.oldVersion,d.newVersion),e,new Ty(d.target.transaction,e))}};c.onblocked=function(){};return b};var Yy=function(){O.call(this);this.g=null};u(Yy,O);Yy.prototype.initialize=function(){var a=this;return Promise.resolve(Xy(this.h)).then(function(b){return a.g=b},function(b){G(E.g(),"codf",b.message)})};var Zy=function(a){return null!==a.g&&a.g.rd};Yy.prototype.close=function(){var a=this;return(new Promise(function(b){$y(a,b)})).then(function(){return az()}).then(function(){a.g.close()})}; +var az=function(){var a;return(null==(a=navigator.storage)?0:a.estimate)?navigator.storage.estimate().then(function(b){G(E.g(),"csue",String(b.usage))}):Promise.resolve(void 0)},ez=function(a,b){return(b=bz(b))?cz(a,dz(b),b.Ac):Promise.resolve(null)},gz=function(a,b,c,d){if(c=bz(c)){var e=c.Hd;fz(a,{bi:dz(c),Hd:e,fd:e+b.byteLength-1,Ac:c.Ac,timestamp:new Date(Date.now()),ya:d,zb:c.zb,video:b})}else Promise.resolve(void 0)}; +Yy.prototype.h=function(a,b){if(b.g.objectStoreNames.contains("MediaSourceVideoChunk"))try{b.g.deleteObjectStore("MediaSourceVideoChunk")}catch(d){throw ty(d,"deleting object store MediaSourceVideoChunk");}a={keyPath:"cacheId"};try{var c=new Py(b.g.createObjectStore("MediaSourceVideoChunk",a))}catch(d){throw ty(d,"creating object store MediaSourceVideoChunk");}b={unique:!1};try{c.g.createIndex("timestamp","timestamp",b)}catch(d){throw ty(d,"creating new index timestamp with key path timestamp");}}; +var $y=function(a,b){var c=new Date(Date.now());c.setDate(c.getDate()-30);c=new uy(vy.upperBound(c,void 0));var d=Oy(Sy(Wy(a.g).objectStore("MediaSourceVideoChunk")),c),e=d.O("n",function(){d.remove();d.next()});es(d,"c",function(){ns(e);b()})},bz=function(a){var b=new Ux(a);a=b.getId();var c=Vx(b,"itag"),d=Vx(b,"source"),e=Vx(b,"lmt");(b=b.uri.g.get("range"))?(b=b.split("-")[0],b=!b||isNaN(Number(b))?null:Number(b)):b=null;var f=[];a?c?d?e?null===b&&f.push("startIndex"):f.push("lmt"):f.push("source"): +f.push("itag"):f.push("videoId");return 0b-a?3E5:0};var Az=function(a,b){var c=this;this.g=a;this.index=b;this.h=[];this.g||H("msms_sbf"+this.index);this.g.addEventListener("updateend",function(){zz(c)});this.g.addEventListener("error",function(){H("msms_sbe"+c.index)})},zz=function(a){if(0=a.X:!a.H&&b&&a.F.currentTime>=a.X);b&&(a.X=a.ac+.1,IA(a))},JA=function(a){var b=a.l&&a.G?a.G+1:a.j*a.Ga;return Ev(a.J,"range",b+"-"+(b+ +a.Ga-1)).toString()},IA=function(a){if(a.l){var b=new P(JA(a));ez(a.A,b).then(function(c){c?(a.G=Number(c.fd),a.ya=c.ya,MA(a,c.video),c=Zx("get_video_succeeded"),a.A.dispatchEvent(c),a.D++):KA(a);a.j++})}else KA(a),a.j++};DA.prototype.L=function(){this.l&&Zy(this.A)&&this.A.close();this.g.removeEventListener("load",this.ga);this.g.removeEventListener("progress",this.ba);this.g.removeEventListener("error",this.aa);ns(this.Na);ns(this.Fa);M.prototype.L.call(this)};var OA=function(a,b){M.call(this);var c=this;this.l=a;this.F=b;this.g=new MediaSource;this.D=[];this.j=[];this.h=this.o=null;this.A=!1;this.B=function(){NA(c)};this.g.addEventListener("sourceopen",this.B)};u(OA,M); +var PA=function(a){a.o&&a.l.removeEventListener("timeupdate",a.o)},NA=function(a){H("msmsw_oso");a.o=function(){if(!a.A)for(var e=r(a.j),f=e.next();!f.done;f=e.next())HA(f.value)};a.l.addEventListener("timeupdate",a.o);for(var b=0;bd;d++)8==d||13==d||18==d||23==d?a[d]="-":14==d?a[d]="4":(2>=b&&(b=33554432+16777216*Math.random()|0),c=b&15,b>>=4,a[d]=QA[19==d?c&3|8:c]);return a.join("")};var TA=function(a){P.call(this,a);this.B=new Map;a=this.j;var b=a.indexOf(";"),c=null;0<=b?(this.j=a.substring(0,b),c=a.substring(b+1)):this.j=a;SA(this,c)};u(TA,P);TA.prototype.toString=function(){return UA(this,P.prototype.toString.call(this))};TA.prototype.D=function(){return""}; +var SA=function(a,b){kb(zg(b))||b.split(";").forEach(function(c){var d=c.indexOf("=");if(!(0>=d)){var e=wg(c.substring(0,d));c=wg(c.substring(d+1));d=a.B.get(e);null!=d?d.includes(c)||d.push(c):d=[zg(c)];a.B.set(e,d)}},a)},VA=function(a){if(kb(zg("ord")))return null;a=a.B.get("ord");return null!=a?a:null},WA=function(a,b){kb(zg("ord"))||(b=b.map(zg),a.B.set("ord",b))},UA=function(a,b){b=[zg(b)];b.push.apply(b,ka(XA(a)));return b.join(";")},XA=function(a){var b=VA(a);null==b?b=[zg(Date.now())]:kb(zg("ord"))|| +a.B.delete("ord");var c=[];a.B.forEach(function(d,e){d.forEach(function(f){c.push(e+"="+f)})});c.push("ord="+b[0]);WA(a,b);return c};TA.prototype.F=function(){return new TA(this.toString())};function YA(a){var b=new TA(a);a=b.h;b=UA(b,b.j);return!jb(a,".g.doubleclick.net")&&(jb(a,"doubleclick.net")||jb(a,"pagead2.googlesyndication.com"))&&ow("/(ad|pfad)[x|i|j]?/",b)}function ZA(a){return"bid.g.doubleclick.net"==(new P(a)).h}function $A(a){a=new P(a);var b=a.j;return jb(a.h,"googleads.g.doubleclick.net")&&ow("/pagead/(live/)?ads",b)}function aB(a){a=new P(a);var b=a.j;return jb(a.h,"doubleclick.net")&&ow("/gampad/(live/)?ads",b)} +function bB(a){a=new P(a);var b=a.j;return"ad.doubleclick.net"===a.h&&ow("/dv3/adv",b)};var U={DEPRECATED_ERROR_CODE:-1,VAST_MALFORMED_RESPONSE:100,VAST_SCHEMA_VALIDATION_ERROR:101,VAST_UNSUPPORTED_VERSION:102,VAST_TRAFFICKING_ERROR:200,VAST_UNEXPECTED_LINEARITY:201,VAST_UNEXPECTED_DURATION_ERROR:202,VAST_WRAPPER_ERROR:300,VAST_LOAD_TIMEOUT:301,VAST_TOO_MANY_REDIRECTS:302,VAST_NO_ADS_AFTER_WRAPPER:303,VIDEO_PLAY_ERROR:400,VAST_MEDIA_LOAD_TIMEOUT:402,VAST_LINEAR_ASSET_MISMATCH:403,VAST_PROBLEM_DISPLAYING_MEDIA_FILE:405,OVERLAY_AD_PLAYING_FAILED:500,NONLINEAR_DIMENSIONS_ERROR:501,OVERLAY_AD_LOADING_FAILED:502, +VAST_NONLINEAR_ASSET_MISMATCH:503,COMPANION_REQUIRED_ERROR:602,COMPANION_AD_LOADING_FAILED:603,UNKNOWN_ERROR:900,VPAID_ERROR:901,FAILED_TO_REQUEST_ADS:1005,VAST_ASSET_NOT_FOUND:1007,VAST_EMPTY_RESPONSE:1009,UNKNOWN_AD_RESPONSE:1010,UNSUPPORTED_LOCALE:1011,ADS_REQUEST_NETWORK_ERROR:1012,INVALID_AD_TAG:1013,STREAM_INITIALIZATION_FAILED:1020,ASSET_FALLBACK_FAILED:1021,INVALID_ARGUMENTS:1101,NATIVE_MESSAGE_ERROR:1204,AUTOPLAY_DISALLOWED:1205,CONSENT_MANAGEMENT_PROVIDER_NOT_READY:1300,Hh:2002};U[-1]="DEPRECATED_ERROR_CODE"; +U[100]="VAST_MALFORMED_RESPONSE";U[101]="VAST_SCHEMA_VALIDATION_ERROR";U[102]="VAST_UNSUPPORTED_VERSION";U[200]="VAST_TRAFFICKING_ERROR";U[201]="VAST_UNEXPECTED_LINEARITY";U[202]="VAST_UNEXPECTED_DURATION_ERROR";U[300]="VAST_WRAPPER_ERROR";U[301]="VAST_LOAD_TIMEOUT";U[302]="VAST_TOO_MANY_REDIRECTS";U[303]="VAST_NO_ADS_AFTER_WRAPPER";U[400]="VIDEO_PLAY_ERROR";U[402]="VAST_MEDIA_LOAD_TIMEOUT";U[403]="VAST_LINEAR_ASSET_MISMATCH";U[405]="VAST_PROBLEM_DISPLAYING_MEDIA_FILE";U[500]="OVERLAY_AD_PLAYING_FAILED"; +U[501]="NONLINEAR_DIMENSIONS_ERROR";U[502]="OVERLAY_AD_LOADING_FAILED";U[503]="VAST_NONLINEAR_ASSET_MISMATCH";U[602]="COMPANION_REQUIRED_ERROR";U[603]="COMPANION_AD_LOADING_FAILED";U[900]="UNKNOWN_ERROR";U[901]="VPAID_ERROR";U[1005]="FAILED_TO_REQUEST_ADS";U[1007]="VAST_ASSET_NOT_FOUND";U[1009]="VAST_EMPTY_RESPONSE";U[1010]="UNKNOWN_AD_RESPONSE";U[1011]="UNSUPPORTED_LOCALE";U[1012]="ADS_REQUEST_NETWORK_ERROR";U[1013]="INVALID_AD_TAG";U[1020]="STREAM_INITIALIZATION_FAILED";U[1021]="ASSET_FALLBACK_FAILED"; +U[1101]="INVALID_ARGUMENTS";U[1204]="NATIVE_MESSAGE_ERROR";U[1205]="AUTOPLAY_DISALLOWED";U[1300]="CONSENT_MANAGEMENT_PROVIDER_NOT_READY";U[2002]="SUPPORTED_ADS_NOT_FOUND";var cB=function(a,b,c){var d=Error.call(this);this.message=d.message;"stack"in d&&(this.stack=d.stack);this.type=a;this.errorMessage=b;this.errorCode=c;this.ad=this.g=null};u(cB,Error);l=cB.prototype;l.getAd=function(){return this.ad};l.getInnerError=function(){return this.g};l.getMessage=function(){return this.errorMessage};l.getErrorCode=function(){return this.errorCode};l.getVastErrorCode=function(){return 1E3>this.errorCode?this.errorCode:900};l.getType=function(){return this.type}; +l.toString=function(){return"AdError "+this.getErrorCode()+": "+this.getMessage()+(null!=this.getInnerError()?" Caused by: "+this.getInnerError():"")};function dB(a){if(""===a)return null;a=new P(a);var b;var c=null!=(b=a.g.get("iu"))?b:"";b=c?(b=/\/(\d+)(?:,\d+){0,2}\//.exec(c))&&2===b.length?b[1]:null:null;if(!b){var d;b=(a=null!=(d=a.g.get("client"))?d:"")?a:null}return b};var eB=function(a){var b={};b=(b.IABUSPrivacy_String="uspString",b.IABTCF_gdprApplies="gdprApplies",b.IABTCF_TCString="tcString",b.IABTCF_AddtlConsent="addtlConsent",b.IABGPP_HDR_GppString="gppString",b.IABGPP_GppSID="gppSid",b);for(var c in b)null!=a[c]&&(a[b[c]]=a[c],delete a[c]);this.je=!!a.isGdprLoader;c=a.uspString;this.uspString="string"===typeof c?c:"";c=a.gdprApplies;this.h="boolean"===typeof c?c?"1":"0":"number"!==typeof c||1!==c&&0!==c?"string"!==typeof c||"1"!==c&&"0"!==c?"":"1"===c?"1": +"0":1===c?"1":"0";c=a.tcString;this.g="string"===typeof c?c:"";/^[\.\w_-]*$/.test(this.g)||(this.g=encodeURIComponent(this.g));a=a.gppString;this.gppString="string"===typeof a?a:""};var fB=function(a){this.g=a},gB=function(a,b){return Yf(a.g,b)&&(a=a.g[b],"boolean"===typeof a)?a:!1},hB=function(a){return Yf(a.g,"videoElementFakeDuration")&&(a=a.g.videoElementFakeDuration,"number"===typeof a)?a:NaN},iB=function(a){if(Yf(a.g,"forceExperimentIds")){a=a.g.forceExperimentIds;var b=[],c=0;Array.isArray(a)&&a.forEach(function(d){"number"===typeof d&&(b[c++]=d)});return b}return null};var V=function(){this.F="always";this.U=4;this.ppid=null;this.l=1;this.g=0;this.o=!0;this.locale="en";this.j=null;this.h=!1;this.playerVersion=this.playerType="";this.B=null;this.D=this.K=-1;this.A="";this.J=!1;this.H=!0;this.sessionId=RA();this.M={};this.I="";this.G=0;try{this.V=Dl()[0]}catch(a){}},jB=function(a){a=zg(a);kb(a)||(a=a.substring(0,20));return a};l=V.prototype;l.setCompanionBackfill=function(a){this.F=a};l.getCompanionBackfill=function(){return this.F}; +l.setNumRedirects=function(a){this.U=a};l.getNumRedirects=function(){return this.U};l.setPpid=function(a){this.ppid=a};l.getPpid=function(){return this.ppid};l.setVpaidAllowed=function(a){"boolean"===typeof a&&(this.l=a?1:0)};l.setVpaidMode=function(a){this.l=a};l.xf=function(){return this.l};l.setAutoPlayAdBreaks=function(a){this.o=a};l.If=function(){return this.o};l.bg=function(a){this.h=a};l.wf=function(){return this.h};l.setLocale=function(a){if(a=qw(a))this.locale=a};l.getLocale=function(){return this.locale}; +l.setPlayerType=function(a){this.playerType=jB(a)};l.getPlayerType=function(){return this.playerType};l.setPlayerVersion=function(a){this.playerVersion=jB(a)};l.getPlayerVersion=function(){return this.playerVersion};var kB=function(a){if(null==a.B){var b={};var c=(new P(B().location.href)).g;if(Jv(c,"tcnfp"))try{b=JSON.parse(c.get("tcnfp"))}catch(d){}a.B=new fB(b)}return a.B};l=V.prototype;l.cg=function(a){this.K=a};l.dg=function(a){this.D=a}; +l.setDisableCustomPlaybackForIOS10Plus=function(a){this.J=a};l.getDisableCustomPlaybackForIOS10Plus=function(){return this.J};l.isCookiesEnabled=function(){return this.H};l.setCookiesEnabled=function(a){null!=a&&(this.H=a)};l.setSessionId=function(a){this.sessionId=a};l.ag=function(){};l.vf=function(){return!0};l.setFeatureFlags=function(a){this.M=a};l.getFeatureFlags=function(){return this.M};V.prototype.getFeatureFlags=V.prototype.getFeatureFlags;V.prototype.setFeatureFlags=V.prototype.setFeatureFlags; +V.prototype.getDisableFlashAds=V.prototype.vf;V.prototype.setDisableFlashAds=V.prototype.ag;V.prototype.setSessionId=V.prototype.setSessionId;V.prototype.setCookiesEnabled=V.prototype.setCookiesEnabled;V.prototype.isCookiesEnabled=V.prototype.isCookiesEnabled;V.prototype.getDisableCustomPlaybackForIOS10Plus=V.prototype.getDisableCustomPlaybackForIOS10Plus;V.prototype.setDisableCustomPlaybackForIOS10Plus=V.prototype.setDisableCustomPlaybackForIOS10Plus;V.prototype.setStreamCorrelator=V.prototype.dg; +V.prototype.setPageCorrelator=V.prototype.cg;V.prototype.getPlayerVersion=V.prototype.getPlayerVersion;V.prototype.setPlayerVersion=V.prototype.setPlayerVersion;V.prototype.getPlayerType=V.prototype.getPlayerType;V.prototype.setPlayerType=V.prototype.setPlayerType;V.prototype.getLocale=V.prototype.getLocale;V.prototype.setLocale=V.prototype.setLocale;V.prototype.getIsVpaidAdapter=V.prototype.wf;V.prototype.setIsVpaidAdapter=V.prototype.bg;V.prototype.isAutoPlayAdBreaks=V.prototype.If; +V.prototype.setAutoPlayAdBreaks=V.prototype.setAutoPlayAdBreaks;V.prototype.getVpaidMode=V.prototype.xf;V.prototype.setVpaidMode=V.prototype.setVpaidMode;V.prototype.setVpaidAllowed=V.prototype.setVpaidAllowed;V.prototype.getPpid=V.prototype.getPpid;V.prototype.setPpid=V.prototype.setPpid;V.prototype.getNumRedirects=V.prototype.getNumRedirects;V.prototype.setNumRedirects=V.prototype.setNumRedirects;V.prototype.getCompanionBackfill=V.prototype.getCompanionBackfill; +V.prototype.setCompanionBackfill=V.prototype.setCompanionBackfill;var lB=new V;var mB=function(a){this.P=re(a)};u(mB,$e);mB.la=[10];function nB(a){var b={};(new P(a)).g.forEach(function(c,d){b[d]=c});return b} +var oB=function(a,b){a=void 0===a?{}:a;b=void 0===b?{}:b;var c={};a=r(Object.entries(a));for(var d=a.next();!d.done;d=a.next()){var e=r(d.value);d=e.next().value;e=e.next().value;null!=e&&(c[d]=String(e))}this.g=c;this.h=new eB(b)},pB=function(a,b){if(!($A(a)||YA(a)||aB(a)||ZA(a)||bB(a))){var c=new P(a),d=c.j;"pubads.g.doubleclick.net"===c.h&&(ow("/ssai/",d)||ow("/ondemand/",d))}return new oB(nB(a),b)},qB=function(a,b){if(a.g.hasOwnProperty(b))return a.g[b]},rB=function(a){var b=qB(a,"ltd");if(!(b= +"1"===b||"true"===b)){b=qB(a,"gdpr");var c=a.h.h;b=("1"===c||"0"===c?c:void 0!==b?b:"").toLowerCase();if("true"===b||"1"===b)if(b=a.h.g,a=qB(a,"gdpr_consent"),a=b&&"tcunavailable"!==b?b:"tcunavailable"===b?a||b:a||"","tcunavailable"===a)var d=!1;else{if((b=Du(a))&&a){var e=Me(b,Ut,1);b=Me(b,Ot,2)||new Ot;c=Ve(e,9);var f=Ve(e,4),g=Ve(e,5),h=Ue(e,10),k=Ue(e,11),n=Xe(e,16),m=Ue(e,15),q={consents:Eu(He(e,13,$d),pu),legitimateInterests:Eu(He(e,14,$d),pu)},t={consents:Eu(He(e,17,ce)),legitimateInterests:Eu(He(e, +18,ce))},w=Eu(He(e,12,$d),qu),A=Oe(e,Nt,19);e={};A=r(A);for(var F=A.next();!F.done;F=A.next()){F=F.value;var Za=Te(De(F,1),0);e[Za]=e[Za]||{};for(var Ta=r(He(F,3,ce)),ha=Ta.next();!ha.done;ha=Ta.next())e[Za][ha.value]=Te(De(F,2),0)}a={tcString:a,tcfPolicyVersion:c,gdprApplies:!0,cmpId:f,cmpVersion:g,isServiceSpecific:h,useNonStandardStacks:k,publisherCC:n,purposeOneTreatment:m,purpose:q,vendor:t,specialFeatureOptins:w,publisher:{restrictions:e,consents:Eu(He(b,1,$d),pu),legitimateInterests:Eu(He(b, +2,$d),pu),customPurposes:{consents:Eu(He(b,3,ce)),legitimateInterests:Eu(He(b,4,ce))}}}}else a=null;if(a){var ra=void 0===ra?!1:ra;if(nv(a))if(!1===a.gdprApplies||"tcunavailable"===a.tcString||void 0===a.gdprApplies&&!ra||"string"!==typeof a.tcString||!a.tcString.length)d=!0;else{d=void 0===d?"755":d;c:{if(a.publisher&&a.publisher.restrictions&&(ra=a.publisher.restrictions["1"],void 0!==ra)){ra=ra[void 0===d?"755":d];break c}ra=void 0}0===ra?d=!1:a.purpose&&a.vendor?(ra=a.vendor.consents,(d=!(!ra|| +!ra[void 0===d?"755":d]))&&a.purposeOneTreatment&&"CH"===a.publisherCC?d=!0:d&&(d=a.purpose.consents,d=!(!d||!d["1"]))):d=!0}else d=!1}else d=!1}else d=!0;b=!d}return b},sB=function(a){var b=new mB;a=!rB(a);Fe(b,5,Vd(a));return b};var tB=function(a){this.P=re(a)};u(tB,$e);tB.prototype.getVersion=function(){return Xe(this,2)};var uB=function(a){this.P=re(a)};u(uB,$e);var vB=function(a,b){return Ze(a,2,b)},wB=function(a,b){return Ze(a,3,b)},xB=function(a,b){return Ze(a,4,b)},yB=function(a,b){return Ze(a,5,b)},zB=function(a,b){return Ze(a,9,b)},AB=function(a,b){return Qe(a,10,b)},BB=function(a,b){return Fe(a,11,Vd(b))},CB=function(a,b){return Ze(a,1,b)},DB=function(a,b){return Fe(a,7,Vd(b))};uB.la=[10,6];var EB="platform platformVersion architecture model uaFullVersion bitness fullVersionList wow64".split(" ");function FB(a){var b;return null!=(b=a.google_tag_data)?b:a.google_tag_data={}}function GB(a){var b,c;return"function"===typeof(null==(b=a.navigator)?void 0:null==(c=b.userAgentData)?void 0:c.getHighEntropyValues)} +function HB(){var a=window;if(!GB(a))return null;var b=FB(a);if(b.uach_promise)return b.uach_promise;a=a.navigator.userAgentData.getHighEntropyValues(EB).then(function(c){null!=b.uach||(b.uach=c);return c});return b.uach_promise=a} +function IB(a){var b;return BB(AB(yB(vB(CB(xB(DB(zB(wB(new uB,a.architecture||""),a.bitness||""),a.mobile||!1),a.model||""),a.platform||""),a.platformVersion||""),a.uaFullVersion||""),(null==(b=a.fullVersionList)?void 0:b.map(function(c){var d=new tB;d=Ze(d,1,c.brand);return Ze(d,2,c.version)}))||[]),a.wow64||!1)}function JB(){var a,b;return null!=(b=null==(a=HB())?void 0:a.then(function(c){return IB(c)}))?b:null};var LB=function(){new oB;RA();this.deviceId="";this.g=this.referrer=this.ppid=null;KB(this)},MB=function(){LB.g();var a="h.3.605.0";lB.h&&(a+="/vpaid_adapter");return a},KB=function(a){var b=JB();b&&b.then(function(c){if(null==c)c=null;else{c=bf(c);for(var d=[],e=0,f=0;f>=8);d[e++]=g}c=Kc(d,3)}a.g=c})};LB.g=function(){return D(LB)};var OB=function(a){a=void 0===a?!1:a;var b=kB(lB);if(b&&gB(b,"forceCustomPlayback")||lB.h)return!0;if(aw()&&a)return!1;a=a&&(aw()||bw(10))&&lB.getDisableCustomPlaybackForIOS10Plus();return(oc||qc)&&!a||nc&&(!nc||!$v(Zv,4))||NB()?!0:!1},PB=function(a){return null===a?!1:lB.h?!0:rc||aw()?cw(a)?aw()||bw(10)&&lB.getDisableCustomPlaybackForIOS10Plus()?!1:!0:!0:nc&&(!nc||!$v(Zv,4))||NB()?!0:!1},QB=function(){var a=kB(lB);return a&&gB(a,"disableOnScreenDetection")?!1:!Vm()},NB=function(){return 1===RB()|| +2===RB()},RB=function(){if(I(zk))switch(LB.g(),0){case 1:return 3;case 2:return 1}return(LB.g(),LB.g(),"tvos"===(LB.g(),null))?1:Wm()?2:0};var SB=function(a,b){return 0==a.indexOf(b)?a.substr(b.length):null};function TB(){if(Vm())return window.location.href;var a=rl(),b=a.h,c=a.g;a=a.j;var d=null;if(a)try{var e=Fv(a.url),f=e.j,g=SB(f,"/v/");g||(g=SB(f,"/a/"));if(!g)throw Error("Can not extract standalone amp url.");var h=SB("/"+g,"/s/"),k=uv(e.g);k.remove("amp_js_v");k.remove("amp_lite");var n=h?Fv("https://"+h):Fv("http://"+g);tv(n,k);d=n.toString()}catch(m){d=null}return d?d:b&&b.url?b.url:c&&c.url?c.url:""} +function UB(){var a=nl();a=r(a);for(var b=a.next();!b.done;b=a.next())if(b=b.value,b.url&&b.url.includes("amp=1"))return!0;return null!=window.context?(a=Number(window.context.ampcontextVersion),isNaN(a)?!1:0=c)return a.toString();for(var d=b.slice(0,c),e=encodeURIComponent(d),f=c;0c;)d=b.slice(0,f--),e=encodeURIComponent(d);Ev(a,"url",d)}catch(g){}return a.toString()};var W={},YB=(W.creativeView="creativeview",W.start="start",W.midpoint="midpoint",W.firstQuartile="firstquartile",W.thirdQuartile="thirdquartile",W.complete="complete",W.mute="mute",W.unmute="unmute",W.pause="pause",W.rewind="rewind",W.resume="resume",W.fullscreen="fullscreen",W.exitFullscreen="exitfullscreen",W.expand="expand",W.collapse="collapse",W.close="close",W.acceptInvitation="acceptinvitation",W.adCanPlay="adCanPlay",W.adStarted="adStarted",W.abandon="abandon",W.acceptInvitationLinear="acceptinvitationlinear", +W.engagedView="engagedview",W.instreamAdComplete="instreamAdComplete",W.skipShown="skipshown",W.skippableStateChanged="skippableStateChanged",W.skip="skip",W.progress="progress",W.publisher_invoked_skip="PUBLISHER_INVOKED_SKIP",W.annotation_start="annotation_start",W.annotation_click="annotation_click",W.annotation_close="annotation_close",W.cta_annotation_shown="cta_annotation_shown",W.cta_annotation_clicked="cta_annotation_clicked",W.cta_annotation_closed="cta_annotation_closed",W.replay="replay", +W.stop="stop",W.autoplayDisallowed="autoplayDisallowed",W.error="error",W.mediaLoadTimeout="mediaLoadTimeout",W.linearChanged="linearChanged",W.click="click",W.contentPauseRequested="contentPauseRequested",W.contentResumeRequested="contentResumeRequested",W.discardAdBreak="discardAdBreak",W.updateAdsRenderingSettings="updateAdsRenderingSettings",W.durationChange="durationChange",W.expandedChanged="expandedChanged",W.autoClose="autoClose",W.userClose="userClose",W.userRecall="userRecall",W.prefetched= +"prefetched",W.loaded="loaded",W.init="init",W.allAdsCompleted="allAdsCompleted",W.adMetadata="adMetadata",W.adBreakReady="adBreakReady",W.adBreakFetchError="adBreakFetchError",W.log="log",W.volumeChange="volumeChange",W.companionBackfill="companionBackfill",W.companionInitialized="companionInitialized",W.companionImpression="companionImpression",W.companionClick="companionClick",W.impression="impression",W.interaction="interaction",W.adProgress="adProgress",W.adBuffering="adBuffering",W.trackingUrlPinged= +"trackingUrlPinged",W.measurable_impression="measurable_impression",W.custom_metric_viewable="custom_metric_viewable",W.viewable_impression="viewable_impression",W.fully_viewable_audible_half_duration_impression="fully_viewable_audible_half_duration_impression",W.audio_audible="audio_audible",W.audio_measurable="audio_measurable",W.overlay_resize="overlay_resize",W.overlay_unmeasurable_impression="overlay_unmeasurable_impression",W.overlay_unviewable_impression="overlay_unviewable_impression",W.overlay_viewable_immediate_impression= +"overlay_viewable_immediate_impression",W.overlay_viewable_end_of_session_impression="overlay_viewable_end_of_session_impression",W.externalActivityEvent="externalActivityEvent",W.adEvent="adEvent",W.configure="configure",W.remainingTime="remainingTime",W.destroy="destroy",W.resize="resize",W.volume="volume",W.authorIconClicked="videoAuthorIconClicked",W.authorNameClicked="videoAuthorClicked",W.videoClicked="videoClicked",W.videoIconClicked="videoIconClicked",W.learnMoreClicked="videoLearnMoreClicked", +W.muteClicked="videoMuteClicked",W.titleClicked="videoTitleClicked",W.videoSkipClicked="SKIPPED",W.unmuteClicked="videoUnmuteClicked",W.vpaidEvent="vpaidEvent",W.show_ad="show_ad",W.video_card_endcap_collapse="video_card_endcap_collapse",W.video_card_endcap_dismiss="video_card_endcap_dismiss",W.video_card_endcap_impression="video_card_endcap_impression",W.mediaUrlPinged="mediaUrlPinged",W.breakStart="breakstart",W.breakEnd="breakend",W.omidReady="omidReady",W.omidUnavailable="omidUnavailable",W.omidAdSessionCompleted= +"omidAdSessionCompleted",W.omidAdSessionAbandoned="omidAdSessionAbandoned",W.verificationNotExecuted="verificationNotExecuted",W.loadStart="loadStart",W.seeked="seeked",W.seeking="seeking",W);var ZB=new function(){this.g=new Map;this.j=0;this.h=null!=window.fetch};function $B(a){var b=void 0===b?ZB:b;var c=void 0===c?null:c;a=new uw(a,c?c:c);var d=void 0===d?!1:d;var e=void 0===e?!1:e;null!=a.g||e?Lx(b,a.url,d,e,a.g):Lx(b,a.url,d)};var X=function(){this.j=.01>Math.random();this.h=Math.floor(4503599627370496*Math.random());this.g=null}; +X.prototype.report=function(a,b,c){b=void 0===b?{}:b;if(null==v.G_testRunner&&(this.j||(void 0===c?0:c))){b.lid=a;MB()&&(b.sdkv=MB());this.g&&(b.palv=this.g);a=Qi().sort().join(",");kb(zg(a))||(b.e=a);b=aC(this,b);var d=new P("http://pagead2.googlesyndication.com/pagead/gen_204");Rf(b,function(e,f){null!=e&&Ev(d,f,null==e?"":"boolean"===typeof e?e?"t":"f":""+e)},this);b=WB();qv(d,b.o);b=d.toString();a=d.g.get("url");null!=a&&Bb()&&2083=this.settings.nearMatchPercent?this.settings.nearMatchPercent:90},rC=function(a,b){var c=[];b.forEach(function(d){a.settings.allowCustom&&(!kb(d.getContent())&&(isNaN(d.data.sequenceNumber)||isNaN(d.data.mainAdSequenceNumber)||d.data.mainAdSequenceNumber===d.data.sequenceNumber)&&pC(a,d)?c.push(d):(d=qC(a,d),null!=d&&!kb(d.getContent())&&c.push(d)))});return c};oC.prototype.fe=function(){return this.resourceType}; +var pC=function(a,b){var c;if(c="Flash"!==b.getContentType()){if(c="All"===a.resourceType||a.resourceType===b.fe())c=b.getContentType(),c=null==c?!0:"All"===a.creativeType||a.creativeType===c;c&&(c=b.getAdSlotId(),c=0===a.adSlotIds.length?!0:null!=c?a.adSlotIds.includes(c):!1)}if(c)if(c=b.getSize(),(b=!!b.data.fluidSize)||a.g.de)a=b&&a.g.de;else if((b="IgnoreSize"===a.sizeCriteria)||(b=a.g.size,b=b==c?!0:b&&c?b.width==c.width&&b.height==c.height:!1),b)a=!0;else{if(b="SelectNearMatch"===a.sizeCriteria)b= +c.width,c=c.height,b=b>a.g.size.width||c>a.g.size.height||bMath.random()?2:1);if(2===e.g){e={};var f=Object,g=f.assign;e.c=String(a);a=String;var h=window;if("number"!==typeof h.goog_pvsid)try{var k=Object,n=k.defineProperty,m=void 0;m=void 0===m?Math.random:m;var q=Math.floor(m()*Math.pow(2,52));n.call(k,h,"goog_pvsid",{value:q,configurable:!1})}catch(t){}e.pc=a(Number(h.goog_pvsid)||-1);e.em=c;e.lid=b;D(It);Th(g.call(f,{},(e.eids="",e),d),"esp")}};function AC(){var a=window;var b=void 0===b?function(){}:b;return new Promise(function(c){var d=function(){c(b());Pf(a,"load",d)};Of(a,"load",d)})};var BC=function(){this.cache={}},DC=function(){CC||(CC=new BC);return CC},EC=function(a){var b=Re(a,3);if(!b)return 3;if(void 0===Se(a,2))return 4;a=Date.now();return a>b+2592E5?2:a>b+432E5?1:0}; +BC.prototype.get=function(a,b){if(this.cache[a])return{Bb:this.cache[a],success:!0};var c="";try{c=b.getItem("_GESPSK-"+a)}catch(g){var d;zC(6,a,null==(d=g)?void 0:d.message);return{Bb:null,success:!1}}if(!c)return{Bb:null,success:!0};try{var e=zt(c);this.cache[a]=e;return{Bb:e,success:!0}}catch(g){var f;zC(5,a,null==(f=g)?void 0:f.message);return{Bb:null,success:!1}}}; +BC.prototype.set=function(a,b){var c=Se(a,1),d="_GESPSK-"+c;yt(a);try{b.setItem(d,bf(a))}catch(f){var e;zC(7,c,null==(e=f)?void 0:e.message);return!1}this.cache[c]=a;return!0};BC.prototype.remove=function(a,b){a=Se(a,1);try{b.removeItem("_GESPSK-"+a),delete this.cache[a]}catch(d){var c;zC(8,a,null==(c=d)?void 0:c.message)}};var CC=null;var FC=function(){var a={};this.h=function(b,c){return null!=a[b]?a[b]:c};this.j=function(){var b=Hu.g,c=Hu.defaultValue;return null!=a[b]?a[b]:c};this.g=function(b,c){return null!=a[b]?a[b]:c}};function GC(a){return D(FC).h(a.g,a.defaultValue)};var HC=function(a){M.call(this);this.l=a;this.h=[];this.g=[];this.j=[];this.o=[]};u(HC,M);var IC=function(a,b){a.g.push({dc:!1,Oa:b});GC(Ku)&&b.Wc(a.l)};HC.prototype.L=function(){this.h.length=0;this.j.length=0;if(GC(Ku))for(var a=r(this.g),b=a.next();!b.done;b=a.next())b.value.Oa.hc.length=0;this.g.length=0;this.o.length=0;M.prototype.L.call(this)};var JC=function(){var a=this;this.promise=new Promise(function(b,c){a.resolve=b;a.reject=c})};var KC=function(a){a=Error.call(this,a);this.message=a.message;"stack"in a&&(this.stack=a.stack);Object.setPrototypeOf(this,KC.prototype);this.name="InputError"};u(KC,Error);var LC=function(){this.fb=!1},MC=function(){LC.apply(this,arguments);this.hc=[];this.Lc=new JC};u(MC,LC);var OC=function(a,b){a.fb||(a.fb=!0,a.Tb=b,a.Lc.resolve(b),GC(Ku)&&NC(a))},NC=function(a){for(var b=r(a.hc),c=b.next();!c.done;c=b.next())c=c.value,c(a.Tb);a.hc.length=0};MC.prototype.Wc=function(a){GC(Ku)&&this.hc.push(a)}; +da.Object.defineProperties(MC.prototype,{promise:{configurable:!0,enumerable:!0,get:function(){return this.Lc.promise}},Vb:{configurable:!0,enumerable:!0,get:function(){return this.fb}},error:{configurable:!0,enumerable:!0,get:function(){return this.td}}});var PC=function(){MC.apply(this,arguments)};u(PC,MC);var QC=function(a,b){OC(a,b)},RC=function(a,b){b.then(function(c){OC(a,c)})};PC.prototype.ib=function(a){this.fb||(this.fb=!0,this.Tb=null,this.td=a,this.Lc.reject(a),GC(Ku)&&NC(this))}; +var SC=function(a){this.fb=!1;this.g=a};u(SC,LC);SC.prototype.Vb=function(){return this.g.fb};da.Object.defineProperties(SC.prototype,{error:{configurable:!0,enumerable:!0,get:function(){return this.g.td}}});var TC=function(a){SC.call(this,a);this.g=a};u(TC,SC);da.Object.defineProperties(TC.prototype,{value:{configurable:!0,enumerable:!0,get:function(){return this.g.Tb}}});var UC=function(a){SC.call(this,a);this.g=a};u(UC,SC); +da.Object.defineProperties(UC.prototype,{value:{configurable:!0,enumerable:!0,get:function(){var a;return null!=(a=this.g.Tb)?a:null}}});var VC=function(){MC.apply(this,arguments)};u(VC,MC);VC.prototype.notify=function(){OC(this,null)};function WC(a,b,c){var d,e,f,g,h;return Ha(function(k){if(1==k.g)return d=c?a.filter(function(n){return!n.dc}):a,ya(k,Promise.all(d.map(function(n){return n.Oa.promise})),2);if(a.length===d.length)return k.return();e=a.filter(function(n){return n.dc});if(GC(Lu)){f=r(b);for(g=f.next();!g.done;g=f.next())h=g.value,h.g();return ya(k,Promise.all(e.map(function(n){return n.Oa.promise})),0)}return ya(k,Promise.race([Promise.all(e.map(function(n){return n.Oa.promise})),new Promise(function(n){return void setTimeout(n, +c)})]),0)})}var YC=function(a,b,c){M.call(this);var d=this;this.id=a;this.timeoutMs=b;this.o=c;this.G=this.F=this.D=this.l=!1;this.g=new HC(function(){XC(d)});N(this,this.g)};u(YC,M); +YC.prototype.start=function(){var a=this,b;return Ha(function(c){if(1==c.g){if(a.l)return c.return();a.l=!0;c.j=2;return ya(c,WC(a.g.g,a.g.o,a.timeoutMs),4)}if(2!=c.g){if(!a.xa()){for(var d=0,e=r(a.g.j),f=e.next();!f.done;f=e.next()){if(null==f.value.g.Tb)throw Error("missing input: "+a.id+"/"+d);++d}a.h()}return za(c)}b=Aa(c);if(a.xa())return c.return();!(b instanceof KC)&&b instanceof Error&&(a.o?a.o(a.id,b):a.A(a.id,b),ZC(a,b));c.g=0})}; +var XC=function(a){if(!a.l&&a.D)try{var b=a.g.g,c=a.timeoutMs?b.filter(function(k){return!k.dc}):b,d=b.filter(function(k){return k.dc}),e,f=null==(e=b.find(function(k){return void 0!==k.Oa.error}))?void 0:e.Oa.error;if(f)throw a.l=!0,f;if(!c.some(function(k){return!k.Oa.Vb})){if(d.length)if(GC(Lu)){for(var g=r(a.g.o),h=g.next();!h.done;h=g.next())h.value.g();if(d.some(function(k){return!k.Oa.Vb}))return}else if(a.F||(a.F=!0,setTimeout(function(){a.G=!0;XC(a)},a.timeoutMs)),d.some(function(k){return!k.Oa.Vb})&& +!a.G)return;a.l=!0;a.h()}}catch(k){!(a.xa()||k instanceof KC)&&k instanceof Error&&(a.o?a.o(a.id,k):a.A(a.id,k),ZC(a,k))}},$C=function(a){var b=void 0===b?new PC:b;a.g.h.push(b);return b},aD=function(a){var b=void 0===b?new VC:b;a.g.h.push(b);return b},bD=function(a,b){IC(a.g,b);b=new TC(b);a.g.j.push(b);return b},cD=function(a,b){IC(a.g,b);return new UC(b)},ZC=function(a,b){if(!a.o&&a.g.h.length){b=new KC(b.message);a=r(a.g.h);for(var c=a.next();!c.done;c=a.next())if(c=c.value,!c.Vb){var d=b;c.fb= +!0;c.td=d;c.Lc.reject(d);GC(Ku)&&NC(c)}}};var dD=function(a,b){YC.call(this,a);this.id=a;this.A=b};u(dD,YC);function eD(a,b){return Oe(a,wt,2).some(function(c){return Se(c,1)===b&&null!=Se(c,2)})};function fD(a){var b=new Ct;if(a){var c=[],d=RegExp("^_GESPSK-(.+)$");try{for(var e=0;e(/^(\d+)$/.test(b)?this.H:this.J)){var d={};zC(12,b,null,(d.sl=String(c.length),d));b=a.ib(ut(108));Fe(b,2)}else c.length||zC(20,b),Fe(a,10);OC(this.j,a)}};var uD=function(a){dD.call(this,1046,a);this.output=aD(this)};u(uD,dD);uD.prototype.h=function(){var a=this;AC().then(function(){a.output.notify()})};function vD(a,b,c,d,e){var f,g,h,k,n,m,q,t,w,A,F,Za,Ta;return Ha(function(ha){return 1==ha.g?(f=new hD,g=new oD(a,c,e),iD(f,g),iD(f,new lD(g.B,void 0,d,e)),h=new sD(g.j,e),iD(f,h),k=new nD(h.j,e),iD(f,k),n=new qD(b,k.j,e),iD(f,n),iD(f,new lD(n.B,void 0,d,e)),m=new tD(n.j,n.H,300,1E3,e),iD(f,m),iD(f,new lD(m.j,void 0,d,e)),q=new uD(e),iD(f,q),t=new pD(q.output,k.B,e),iD(f,t),w=new qD(b,t.j,e),iD(f,w),A=new lD(w.j,void 0,d,e),iD(f,A),kD(f),Ta=a,ya(ha,m.j.promise,2)):ha.return({id:Ta,collectorGeneratedData:null!= +(Za=null==(F=ha.h)?void 0:Se(F,2))?Za:null})})};var wD=function(a,b,c,d){dD.call(this,1059,d);this.J=b;this.H=c;this.j=$C(this);this.M=bD(this,a);this.B=cD(this,c)};u(wD,dD);wD.prototype.h=function(){var a=this.B.value;if(a){var b=this.M.value,c=b.id,d=b.collectorFunction,e;b=null!=(e=b.networkCode)?e:c;c={};zC(42,b,null,(c.ea=String(Number(this.J)),c));RC(this.j,vD(b,d,a,this.H,this.A))}};var xD=function(a,b){dD.call(this,1057,b);this.j=a;this.B=$C(this);this.H=$C(this)};u(xD,dD); +xD.prototype.h=function(){if(this.j)if("object"!==typeof this.j)zC(46,"UNKNOWN_COLLECTOR_ID"),yD(this,"UNKNOWN_COLLECTOR_ID",112);else{var a=this.j.id,b=this.j.networkCode;a&&b&&(delete this.j.id,zC(47,a+";"+b));a=null!=b?b:a;"string"!==typeof a?(b={},zC(37,"INVALID_COLLECTOR_ID",null,(b.ii=JSON.stringify(a),b)),yD(this,"INVALID_COLLECTOR_ID",102)):"function"!==typeof this.j.collectorFunction?(zC(14,a),yD(this,a,105)):D(FC).g(Ju.g,Ju.defaultValue).includes(a)?(zC(22,a),yD(this,a,104)):OC(this.H,this.j)}else zC(39, +"UNKNOWN_COLLECTOR_ID"),yD(this,"UNKNOWN_COLLECTOR_ID",110)};var yD=function(a,b,c){b=xt(b).ib(ut(c));OC(a.B,b)};var zD=function(a,b,c,d,e){var f=document;f=void 0===f?document:f;e=void 0===e?gD:e;this.g=b;this.j=c;this.o=f;this.K=d;this.I=e;this.B=[];this.A=[];this.l=[];this.h=0;a=r(a);for(b=a.next();!b.done;b=a.next())this.push(b.value)}; +zD.prototype.push=function(a){var b=this;this.j||this.K();var c=function(f,g){return void AD(b,f,g)};a=new xD(a,c);var d=new lD(a.B,void 0,this.g,c);c=new wD(a.H,this.j,this.g,c,this.I);var e=new hD;jD(e,[a,d,c]);kD(e);a=c.j.promise;this.B.push(a);d=r(this.A);for(c=d.next();!c.done;c=d.next())a.then(c.value)};zD.prototype.addOnSignalResolveCallback=function(a){this.A.push(a);for(var b=r(this.B),c=b.next();!c.done;c=b.next())c.value.then(a)};zD.prototype.addErrorHandler=function(a){this.l.push(a)}; +zD.prototype.clearAllCache=function(){var a=this,b=this.o.currentScript instanceof HTMLScriptElement?this.o.currentScript.src:"";if(1===this.h){var c={};zC(49,"",null,(c.url=b,c))}else if(c=String(vh(null!=b?b:"")),D(FC).g(Iu.g,Iu.defaultValue).includes(c))c={},zC(48,"",null,(c.url=b,c));else{var d=new hD;c=new mD(this.g,function(e,f){return void AD(a,e,f)});iD(d,c);kD(d);this.h=1;setTimeout(function(){a.h=0},1E3*D(FC).j());d={};zC(43,"",null,(d.url=b,d));return c.j.promise}}; +var AD=function(a,b,c){a=r(a.l);for(var d=a.next();!d.done;d=a.next())d=d.value,d(b,c)},BD=function(a){this.push=function(b){a.push(b)};this.addOnSignalResolveCallback=function(b){a.addOnSignalResolveCallback(b)};this.addErrorHandler=function(b){a.addErrorHandler(b)};this.clearAllCache=function(){a.clearAllCache()}};function CD(a,b,c,d,e,f){f=void 0===f?gD:f;rh()!==sh()?zC(16,""):DD(a,"encryptedSignalProviders",c,e)&&DD(a,"secureSignalProviders",c,e)||(zC(38,""),ED(a,"encryptedSignalProviders",b,f,c,d,e),ED(a,"secureSignalProviders",b,f,c,function(){},e))}function DD(a,b,c,d){if(void 0===a[b]||a[b]instanceof Array)return!1;a=a[b];d&&a.addOnSignalResolveCallback(d);a.addErrorHandler(c);return!0} +function ED(a,b,c,d,e,f,g){var h,k=new zD(null!=(h=a[b])?h:[],c,"secureSignalProviders"===b,f,d);a[b]=new BD(k);g&&k.addOnSignalResolveCallback(g);k.addErrorHandler(e)}function FD(a,b,c,d,e){var f=void 0===f?gD:f;var g=new PC;OC(g,b);CD(a,g,c,d,e,f)} +function GD(a,b,c,d){var e=HD,f=new Map;b=b.map(function(g){var h=g.kc;return new Promise(function(k){f.set(h,k)})});FD(a,c,d,e,function(g){var h=g.collectorGeneratedData;g=g.id;var k;return void(null==(k=f.get(g))?void 0:k({collectorGeneratedData:h,id:g}))});return b};function ID(){var a;return null!=(a=v.googletag)?a:v.googletag={cmd:[]}};function JD(a){if(!a||rB(a))return null;try{return window.localStorage}catch(b){return null}}function KD(a,b){(a=JD(a))&&FD(ID(),a,function(){},HD,b)}function LD(a,b){return(b=JD(b))&&0!==a.length?GD(ID(),a,b,function(){}):null}function HD(){};function MD(a,b,c,d){var e=new JC,f="",g=function(k){try{var n="object"===typeof k.data?k.data:JSON.parse(k.data);f===n.paw_id&&(Pf(a,"message",g),n.error?e.reject(Error(n.error)):e.resolve(d(n)))}catch(m){}},h=ND(a);return h?(Of(a,"message",g),f=c(h),e.promise):(c=OD(a))?(f=String(Math.floor(2147483647*th())),Of(a,"message",g),b(c,f),e.promise):null} +function PD(a){return MD(a,function(b,c){var d,e;return void(null==(d=null!=(e=b.getGmaQueryInfo)?e:b.getGmaSig)?void 0:d.postMessage(c))},function(b){return b.getQueryInfo()},function(b){return b.signal})}function QD(){var a=window;return!!ND(a)||!!OD(a)}function ND(a){var b;if("function"===typeof(null==(b=a.gmaSdk)?void 0:b.getQueryInfo))return a.gmaSdk} +function OD(a){var b,c,d,e,f,g;if("function"===typeof(null==(b=a.webkit)?void 0:null==(c=b.messageHandlers)?void 0:null==(d=c.getGmaQueryInfo)?void 0:d.postMessage)||"function"===typeof(null==(e=a.webkit)?void 0:null==(f=e.messageHandlers)?void 0:null==(g=f.getGmaSig)?void 0:g.postMessage))return a.webkit.messageHandlers};var SD=function(){this.timeoutMs=RD;this.h=PD;this.signal=null;this.g=0},TD=function(){return I(mk)&&nc||I(kk)&&(rc||aw())},UD=function(a){if(QD()){if(I(nk)||I(lk)&&nc||I(jk)&&(rc||aw()))return Promise.resolve("0");if(I(ok)||TD()){var b;return(null!=(b=a.h(window))?b:Promise.resolve(null)).catch(function(){return"0"})}}return Promise.resolve(null)},WD=function(a){var b;return Ha(function(c){if(1==c.g){if(!TD())return c.return(VD(a));b=Date.now()-a.g;!a.signal||3E5Math.pow(5,2))a.A=!0},touchend:function(b){return void gE(a,b)}},Rf(a.G,function(b,c){a.g.addEventListener(c,b,!1)})):a.H.O(a.g,"click",a.V)},dE=function(a){a.H.rb(a.g,"click",a.V);Rf(a.G,function(b,c){this.g.removeEventListener(c,b,!1)},a);a.G={}},gE=function(a,b){!a.D||1!==a.h||a.A||a.J||a.B||!fE(a,b.changedTouches)||(a.j=window.setTimeout(function(){return void hE(a)}, +300));a.h=b.touches.length;0===a.h&&(a.D=!1,a.A=!1,a.l=[]);a.J=!1};aE.prototype.V=function(){hE(this)};var fE=function(a,b){for(var c=0;c=Number(c)?a:a=-1Number(a)?"-":0<=b.indexOf("+")?"+":0<=b.indexOf(" ")?" ":"";0<=Number(a)&&(d=f+d);if(isNaN(c)||d.length>=Number(c))return d;d=isNaN(e)?Math.abs(Number(a)).toString():Math.abs(Number(a)).toFixed(e);a=Number(c)-d.length-f.length;return d=0<=b.indexOf("-",0)?f+d+yg(" ",a):f+yg(0<=b.indexOf("0",0)?"0":" ",a)+d},d:function(a,b,c,d,e,f,g,h){return kF.f(parseInt(a, +10),b,c,d,0,f,g,h)}};kF.i=kF.d;kF.u=kF.d;function mF(){return["autoplay","attribution-reporting"].filter(function(a){var b=document.featurePolicy;return void 0!==b&&"function"==typeof b.allowedFeatures&&"object"==typeof b.allowedFeatures()&&b.allowedFeatures().includes(a)}).join(";")} +var oF=function(a,b){O.call(this);this.D=b;this.J=this.H=null;this.G=!1;this.F="goog_"+Ag++;this.A=new Map;this.h=null;var c=B();var d=Ma("google.ima.gptProxyInstance",c);null!=d?c=d:(d=new iF,x("google.ima.gptProxyInstance",d,c),c=d);this.V=c;this.B=null;this.j=new zw(this);N(this,this.j);c=this.F;d=(xh()?"https:":"http:")+lF("//imasdk.googleapis.com/js/core/bridge3.605.0_%s.html",lB.getLocale());a:{var e=window;try{do{try{if(0===e.location.href.indexOf(d)||0===e.document.referrer.indexOf(d)){var f= +!0;break a}}catch(k){}e=e.parent}while(e!==e.top)}catch(k){}f=!1}f&&(d+="?f="+c);f=window.document;if($w.length&&f.head){e=r($w);for(var g=e.next();!g.done;g=e.next())if((g=g.value)&&f.head){var h=Ah("META");f.head.appendChild(h);h.httpEquiv="origin-trial";h.content=g}}f=mF();c=Qg("IFRAME",{src:d+"#"+c,allowFullscreen:!0,allow:f,id:c,style:"border:0; opacity:0; margin:0; padding:0; position:relative; color-scheme: light;"});this.j.Ob(c,"load",this.aa);a.appendChild(c);this.g=c;this.l=nF(this);this.M= +new YE(this.l,this.D);N(this,this.M);this.D.da&&this.j.O(this.l,"displayContainer",this.U);this.j.O(this.l,"mouse",this.X);this.j.O(this.l,"touch",this.Z);NB()||(this.B=new PE(a,this.l,b.da.M.g),N(this,this.B))};u(oF,O);var nF=function(a,b){b=void 0===b?"*":b;var c=a.A.get(b);null==c&&(c=new YD(a.F,b),a.G&&(c.g=Ug(a.g),c.connect()),a.A.set(b,c));return c};oF.prototype.cc=function(a){var b;null!=(b=this.B)&&(a=a.M.g,b.o=a,b.g&&(b=b.g,b.h=a,DE(b,a)))}; +oF.prototype.L=function(){null!==this.h&&(this.h.W(),this.h=null);this.A.forEach(function(a){An(a)});this.A.clear();jF(this.V,this.F);Rg(this.g);O.prototype.L.call(this)};oF.prototype.X=function(a){var b=a.ra,c=Cm(this.g),d=document.createEvent("MouseEvent");d.initMouseEvent(a.messageType,!0,!0,window,b.detail,b.screenX,b.screenY,b.clientX+c.x,b.clientY+c.y,b.ctrlKey,b.altKey,b.shiftKey,b.metaKey,b.button,null);this.g.dispatchEvent(d)}; +var pF=function(a,b){var c=Cm(a.g),d=!!("TouchEvent"in window&&0=(window.screen.availWidth||window.screen.width)-a.width&&42>=b-a.height},vF=function(a){var b={left:a.offsetLeft,top:a.offsetTop,width:a.offsetWidth,height:a.offsetHeight};try{"function"===typeof a.getBoundingClientRect&&Tg(Gg(a),a)&&(b=a.getBoundingClientRect())}catch(c){}return b},xF=function(a,b,c,d,e){e= +void 0===e?{}:e;if(a.ua){d&&null==e.opt_osdId&&(e.opt_osdId=d);if(a.l)return a.l(b,c,e);if(a=d?a.j.get(d):lB.j)null==e.opt_fullscreen&&(e.opt_fullscreen=wF(a)),null==e.opt_adElement&&(e.opt_adElement=a);return Lt.pb(469,ab(Kr,b,c,e))||{}}return{}},yF=function(a){var b;0!==lB.g?b=D(xr).j:b=a.B;return b},zF=function(a,b){var c=String(Math.floor(1E9*Math.random()));a.j.set(c,b);if(I(dk))try{ot(function(d){if(a.g){var e={};e.engagementString=d;hC(a.g,"activityMonitor","engagementData",e)}},function(){return b})}catch(d){}0!== +lB.g&&Ir(D(xr),c,a);return c},AF=function(a,b,c){if(c)a.h.get(c)===b&&a.h.delete(c);else{var d=[];a.h.forEach(function(e,f){e===b&&d.push(f)});d.forEach(a.h.delete,a.h)}},Dr=function(a,b){a=a.h.get(b);return"function"===typeof a?a():{}},uF=function(a){if("function"===typeof window.Goog_AdSense_Lidar_getUrlSignalsArray){var b={};b.pageSignals=window.Goog_AdSense_Lidar_getUrlSignalsArray();var c;null==(c=a.g)||hC(c,"activityMonitor","pageSignals",b)}}; +sF.prototype.D=function(a){var b=a.ra,c=b.queryId,d={},e=null;d.eventId=b.eventId;switch(a.messageType){case "getPageSignals":uF(this);break;case "reportVastEvent":e=b.vastEvent;a=b.osdId;var f={};f.opt_fullscreen=b.isFullscreen;b.isOverlay&&(f.opt_bounds=b.overlayBounds);d.viewabilityData=xF(this,e,c,a,f);var g;null==(g=this.g)||hC(g,"activityMonitor","viewability",d);break;case "fetchAdTagUrl":c={},c.eventId=b.eventId,a=b.osdId,Yf(b,"isFullscreen")&&(e=b.isFullscreen),Yf(b,"loggingId")&&(b=b.loggingId, +c.loggingId=b,X.g().report(43,{step:"beforeLookup",logid:b,time:Date.now()})),c.engagementString=BF(this,a,e),this.g&&hC(this.g,"activityMonitor","engagement",c)}};var BF=function(a,b,c){var d,e=b?null!=(d=a.j.get(b))?d:null:lB.j;a={};null!=c&&(a.fullscreen=c);c="";try{c=nt(function(){return e},a)}catch(f){c=f,c="sdktle;"+xg(c.name,12)+";"+xg(c.message,40)}return c};x("ima.common.getVideoMetadata",function(a){return Dr(tF(),a)}); +x("ima.common.triggerViewabilityMeasurementUpdate",function(a,b){Hr(tF(),a,b)});var CF=function(a){this.g=a;this.j="";this.h=-1;this.o=!1},EF=function(a,b){if(0<=a.h){var c=null==b?function(){}:b,d=function(){DF(a,c);a.g.removeEventListener("loadedmetadata",d,!1)};a.g.addEventListener("loadedmetadata",d,!1);a.g.src=a.j;a.g.load()}else null!=b&&b()},DF=function(a,b){var c=0=this.getCurrentTime())return;if(Fc&&this.g.ended&&1===this.getDuration()){this.X(a);return}JF(this)}if(rc||ob(tb(),"Nintendo WiiU")){if(1.5this.B&&(this.B=this.getCurrentTime())}this.dispatchEvent("timeUpdate")};l.Wf=function(){this.dispatchEvent("volumeChange")}; +l.Tf=function(){if(this.D&&rc&&!this.Z&&(2>LF(this)||this.G)){this.A=new Vs(250);this.h.O(this.A,"tick",this.Ea);this.A.start();var a=!0}else a=!1;a||this.j||this.dispatchEvent("pause")};l.Pf=function(){var a=!0;if(rc||ob(tb(),"Nintendo WiiU"))a=this.B>=this.g.duration-1.5;!this.G&&a&&this.dispatchEvent("end")};var IF=function(a){a.dispatchEvent("beginFullscreen")};HF.prototype.ba=function(){this.dispatchEvent("endFullscreen")};HF.prototype.X=function(){this.dispatchEvent("error")}; +HF.prototype.ma=function(){this.dispatchEvent("click")};var KF=function(a){a.g instanceof HTMLElement&&(a.V=nw(a.g,GF),a.V.then(function(b){a.xa()||G(E.g(),"ps",b.width+"x"+b.height)}))};HF.prototype.Fa=function(){var a=this.getSize(),b=wF(this.g);if(a.width!==this.size.width||a.height!==this.size.height)!this.fullscreen&&b?IF(this):this.fullscreen&&!b&&this.ba(),this.size=a,this.fullscreen=b}; +HF.prototype.Ea=function(){if(!this.g.ended&&this.g.paused&&(rc||Gc?this.g.currentTimea)&&(An(this.A),WE(this))}else An(this.A)};var LF=function(a){var b;a:{for(b=a.g.buffered.length-1;0<=b;){if(a.g.buffered.start(b)<=a.g.currentTime){b=a.g.buffered.end(b);break a}b--}b=0}return b-a.g.currentTime};HF.prototype.Wa=function(){X.g().report(139);IF(this)};var MF=function(a,b){this.g=a[v.Symbol.iterator]();this.h=b};MF.prototype[Symbol.iterator]=function(){return this};MF.prototype.next=function(){var a=this.g.next();return{value:a.done?void 0:this.h.call(void 0,a.value),done:a.done}};var NF=function(a,b){return new MF(a,b)};var RF=function(a){if(a instanceof OF||a instanceof PF||a instanceof QF)return a;if("function"==typeof a.next)return new OF(function(){return a});if("function"==typeof a[Symbol.iterator])return new OF(function(){return a[Symbol.iterator]()});if("function"==typeof a.tb)return new OF(function(){return a.tb()});throw Error("Not an iterator or iterable.");},OF=function(a){this.g=a};OF.prototype.tb=function(){return new PF(this.g())};OF.prototype[Symbol.iterator]=function(){return new QF(this.g())}; +OF.prototype.h=function(){return new QF(this.g())};var PF=function(a){this.g=a};u(PF,oo);PF.prototype.next=function(){return this.g.next()};PF.prototype[Symbol.iterator]=function(){return new QF(this.g)};PF.prototype.h=function(){return new QF(this.g)};var QF=function(a){OF.call(this,function(){return a});this.j=a};u(QF,OF);QF.prototype.next=function(){return this.j.next()};var SF=function(a,b){this.h={};this.g=[];this.j=this.size=0;var c=arguments.length;if(12*this.size&&TF(this),!0):!1}; +var TF=function(a){if(a.size!=a.g.length){for(var b=0,c=0;b=d.g.length)return po;var f=d.g[b++];return{value:a?f:d.h[f],done:!1}};return e};var UF=function(a,b){return Object.prototype.hasOwnProperty.call(a,b)};var WF=function(){O.call(this);this.readyState=0;this.seeking=!1;this.currentTime=0;this.initialTime=void 0;this.duration=NaN;this.paused=!0;this.ended=!1;this.volume=1;this.muted=!1;this.currentSrc="";this.defaultPlaybackRate=1;this.playbackRate=0;this.B=null;this.j=0;this.h=this.g=null;this.buffered=new VF;this.seekable=new VF;this.A="";this.tagName="VIDEO";this.height=this.width=0;this.canPlayType=function(){return""};this.l=new zw(this);N(this,this.l);var a=kB(lB);a&&(this.duration=hB(a))}; +u(WF,O);var XF=function(){var a=["video/mp4"],b=["video/ogg"],c=new WF;c.canPlayType=function(d){return a.includes(d)?"probably":b.includes(d)?"maybe":""};return c};l=WF.prototype;l.pause=function(){if(!this.paused){var a;null==(a=this.B)||a.stop();this.paused=!0;this.dispatchEvent("timeupdate");this.dispatchEvent("pause")}}; +l.load=function(){this.readyState=0;this.paused=!0;this.seeking=!1;this.dispatchEvent("loadstart");var a;isNaN(this.duration)?a=10+20*Math.random():a=this.duration;this.setProperty("duration",a);a=this.seekable;a.g.push(new YF(this.duration));a.length=a.g.length;a=this.buffered;a.g.push(new YF(this.duration));a.length=a.g.length;this.dispatchEvent("loadedmetadata");0b.toString().length?this.K=b.toString():200>b.h.length&&(this.K=b.h));this.Md=new Map;this.Md.set("videoDisplay1",this.da);this.za&&this.Md.set("videoDisplay2", +this.za);fG(this)&&!lB.h&&console.warn("Custom media element must be a