@jolibox/implement 1.2.3 → 1.2.5-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/.rush/temp/package-deps_build.json +44 -28
  2. package/.rush/temp/shrinkwrap-deps.json +2 -1
  3. package/CHANGELOG.json +11 -0
  4. package/CHANGELOG.md +9 -0
  5. package/dist/common/context/index.d.ts +5 -0
  6. package/dist/common/report/base-tracker.d.ts +2 -1
  7. package/dist/common/rewards/cached-fetch-reward.d.ts +46 -0
  8. package/dist/common/rewards/cached-reward-service.d.ts +24 -0
  9. package/dist/common/rewards/fetch-reward.d.ts +2 -3
  10. package/dist/common/rewards/index.d.ts +3 -0
  11. package/dist/common/rewards/registers/use-subscription.d.ts +7 -0
  12. package/dist/common/rewards/registers/utils/coins/jolicoin/cached-fetch-balance.d.ts +34 -0
  13. package/dist/common/rewards/registers/utils/coins/jolicoin/fetch-balance.d.ts +2 -1
  14. package/dist/common/rewards/registers/utils/coins/joligem/cached-fetch-gem-balance.d.ts +34 -0
  15. package/dist/common/rewards/registers/utils/coins/joligem/fetch-gem-balance.d.ts +2 -1
  16. package/dist/common/rewards/registers/utils/subscription/commands/index.d.ts +1 -0
  17. package/dist/common/rewards/registers/utils/subscription/commands/use-subscription.d.ts +4 -0
  18. package/dist/common/rewards/registers/utils/subscription/sub-handler.d.ts +13 -0
  19. package/dist/common/rewards/reward-emitter.d.ts +7 -0
  20. package/dist/common/rewards/reward-helper.d.ts +2 -1
  21. package/dist/common/utils/index.d.ts +18 -0
  22. package/dist/h5/api/platformAdsHandle/JoliboxAdsHandler.d.ts +1 -0
  23. package/dist/h5/bootstrap/auth/__tests__/auth.test.d.ts +1 -0
  24. package/dist/h5/bootstrap/auth/index.d.ts +2 -0
  25. package/dist/h5/bootstrap/auth/sub.d.ts +2 -0
  26. package/dist/index.js +9 -13
  27. package/dist/index.native.js +49 -53
  28. package/dist/native/api/index.d.ts +1 -0
  29. package/dist/native/api/payment.d.ts +1 -0
  30. package/dist/native/payment/__tests__/payment-service-simple.test.d.ts +1 -0
  31. package/dist/native/payment/payment-helper.d.ts +8 -5
  32. package/dist/native/payment/payment-service.d.ts +44 -0
  33. package/implement.build.log +2 -2
  34. package/package.json +8 -7
  35. package/src/common/context/index.ts +12 -0
  36. package/src/common/report/base-tracker.ts +2 -2
  37. package/src/common/rewards/cached-fetch-reward.ts +258 -0
  38. package/src/common/rewards/cached-reward-service.ts +255 -0
  39. package/src/common/rewards/fetch-reward.ts +17 -93
  40. package/src/common/rewards/index.ts +4 -0
  41. package/src/common/rewards/registers/use-subscription.ts +34 -0
  42. package/src/common/rewards/registers/utils/coins/jolicoin/cached-fetch-balance.ts +177 -0
  43. package/src/common/rewards/registers/utils/coins/jolicoin/fetch-balance.ts +13 -1
  44. package/src/common/rewards/registers/utils/coins/jolicoin/jolicoin-handler.ts +2 -0
  45. package/src/common/rewards/registers/utils/coins/joligem/cached-fetch-gem-balance.ts +181 -0
  46. package/src/common/rewards/registers/utils/coins/joligem/fetch-gem-balance.ts +13 -1
  47. package/src/common/rewards/registers/utils/coins/joligem/gem-handler.ts +2 -0
  48. package/src/common/rewards/registers/utils/subscription/commands/index.ts +1 -0
  49. package/src/common/rewards/registers/utils/subscription/commands/use-subscription.ts +29 -0
  50. package/src/common/rewards/registers/utils/subscription/sub-handler.ts +88 -0
  51. package/src/common/rewards/reward-emitter.ts +8 -0
  52. package/src/common/rewards/reward-helper.ts +8 -1
  53. package/src/common/utils/index.ts +23 -0
  54. package/src/h5/api/ads.ts +18 -12
  55. package/src/h5/api/platformAdsHandle/JoliboxAdsHandler.ts +25 -1
  56. package/src/h5/api/storage.ts +2 -2
  57. package/src/h5/bootstrap/auth/__tests__/auth.test.ts +308 -0
  58. package/src/h5/bootstrap/auth/index.ts +20 -0
  59. package/src/h5/bootstrap/auth/sub.ts +56 -0
  60. package/src/h5/bootstrap/index.ts +4 -19
  61. package/src/h5/http/index.ts +2 -2
  62. package/src/h5/report/event-tracker.ts +2 -2
  63. package/src/h5/rewards/index.ts +18 -1
  64. package/src/native/api/ads.ts +7 -1
  65. package/src/native/api/call-host-method.ts +1 -1
  66. package/src/native/api/index.ts +1 -0
  67. package/src/native/api/navigate.ts +10 -1
  68. package/src/native/api/payment.ts +56 -0
  69. package/src/native/payment/__tests__/payment-service-simple.test.ts +274 -0
  70. package/src/native/payment/payment-helper.ts +10 -4
  71. package/src/native/payment/payment-service.ts +293 -0
  72. package/src/native/payment/registers/jolicoin-iap.ts +4 -4
  73. package/src/native/report/index.ts +4 -1
  74. package/src/native/rewards/ui/payment-modal.ts +20 -60
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
- var Qc=Object.create;var fi=Object.defineProperty,Xc=Object.defineProperties,Zc=Object.getOwnPropertyDescriptor,ed=Object.getOwnPropertyDescriptors,td=Object.getOwnPropertyNames,Pr=Object.getOwnPropertySymbols,ka=Object.getPrototypeOf,hi=Object.prototype.hasOwnProperty,Ta=Object.prototype.propertyIsEnumerable,rd=Reflect.get;var Ra=(e,t,r)=>t in e?fi(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,Y=(e,t)=>{for(var r in t||(t={}))hi.call(t,r)&&Ra(e,r,t[r]);if(Pr)for(var r of Pr(t))Ta.call(t,r)&&Ra(e,r,t[r]);return e},Re=(e,t)=>Xc(e,ed(t));var Qt=(e=>typeof require!="undefined"?require:typeof Proxy!="undefined"?new Proxy(e,{get:(t,r)=>(typeof require!="undefined"?require:t)[r]}):e)(function(e){if(typeof require!="undefined")return require.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')});var xa=(e,t)=>{var r={};for(var n in e)hi.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&Pr)for(var n of Pr(e))t.indexOf(n)<0&&Ta.call(e,n)&&(r[n]=e[n]);return r};var Z=(e,t)=>()=>(e&&(t=e(e=0)),t);var mi=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var nd=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of td(t))!hi.call(e,i)&&i!==r&&fi(e,i,{get:()=>t[i],enumerable:!(n=Zc(t,i))||n.enumerable});return e};var pi=(e,t,r)=>(r=e!=null?Qc(ka(e)):{},nd(t||!e||!e.__esModule?fi(r,"default",{value:e,enumerable:!0}):r,e));var La=(e,t,r)=>rd(ka(e),r,t);var L=(e,t,r)=>new Promise((n,i)=>{var o=u=>{try{s(r.next(u))}catch(d){i(d)}},a=u=>{try{s(r.throw(u))}catch(d){i(d)}},s=u=>u.done?n(u.value):Promise.resolve(u.value).then(o,a);s((r=r.apply(e,t)).next())});function fd(e){return new Promise(t=>{setTimeout(()=>{t()},e)})}function Ii(e){return typeof e=="string"}function Fa(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)&&!(e instanceof RegExp)&&!(e instanceof Date)}function Ga(e){return typeof e=="object"&&Array.isArray(e)}function hd(e){return typeof e=="undefined"}function md(e){return hd(e)||e===null}function pd(e){return typeof e=="function"}function ja(e){let t=e,r=null,n=function(...i){return r||(r=new t(...i)),r};return n.prototype=t.prototype,n}function Ha(e,t,r){if(typeof r!="function")throw new Error("[Jolibox SDK]Customizer must be a function");function n(i,o){for(let a in o)if(Object.prototype.hasOwnProperty.call(o,a)){let s=i[a],u=o[a],d=r(s,u,a,i,o);d!==void 0?i[a]=d:Na(u)&&Na(s)?i[a]=n(Ba({},s),u):Array.isArray(u)&&Array.isArray(s)?i[a]=[...s,...u]:i[a]=u}return i}return n(e,t)}function Na(e){return e&&typeof e=="object"&&e.constructor===Object}function Va(e,t){if(Array.isArray(e))return e.concat(t)}function tr(e,t,r={}){let n=null,i,o,a,{leading:s=!1,trailing:u=!0}=r,d=()=>(a=e.apply(o,i),i=void 0,o=void 0,a),y=function(...h){i=h,o=this;let p=s&&!n;if(n&&clearTimeout(n),n=setTimeout(()=>{n=null,u&&!p&&d()},t),p)return d()};return y.cancel=()=>{n&&clearTimeout(n),n=null,i=o=void 0},y.flush=()=>{if(n)return clearTimeout(n),n=null,d()},y}function gd(e,t){return(...r)=>t(e,...r)}function Wa(e){return t=>gd(t,function(r,...n){if(typeof r=="function")try{return r.apply(this,n)}catch(i){e(new _d(`${i}`))}})}function Xt(e){return(...t)=>{var r,n;((n=(r=globalThis.VConsole)==null?void 0:r[e])!=null?n:globalThis.console[e])(...t)}}function Dr(e,t){return t.map(r=>{if(r==="params"&&e[r]){let n=e[r];return Object.keys(n).reduce((i,o)=>(i[o]=String(n[o]),i),{})}return e[r]})}function Ad(e){let t=e.location?Dr(e.location,Ma):null,r=e.target?Dr(e.target,Ma):null;return Dr(ud(Ba({},e),{location:t,target:r}),Ed)}function Ri(e){let t=e.events.map(n=>Ad(n)),r=Dr(e.device,Id);return[e.protocolVersion,t,r,e.project]}function Sd(){if(typeof window=="undefined")return{getItem:()=>null,setItem:()=>{},removeItem:()=>{},clear:()=>{},length:0,key:()=>null};try{if(window.__joliboxLocalStorage__)return window.__joliboxLocalStorage__;let e=Object.getOwnPropertyDescriptor(window,"localStorage");if(e&&e.get){let n=e.get.call(window);return window.__joliboxLocalStorage__=n,n}if(e=Object.getOwnPropertyDescriptor(Object.getPrototypeOf(window),"localStorage"),e&&e.get)return e.get.call(window);let t=Window.prototype,r=Object.getOwnPropertyDescriptor(t,"localStorage");if(r&&r.get){let n=r.get.call(window);return window.__joliboxLocalStorage__=n,n}return localStorage}catch(e){return console.warn("Failed to get original localStorage, fallback to default implementation",e),localStorage}}function Qa(e,t,r){let n=window.location.hostname,i=n.split("."),o=r?t:e;if(/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/.test(n))return`${o}.jolibox.com`;if(i.length>=2){let a=i.slice(-2).join(".");if(a==="jolibox.com"||a==="pico-game.com"||a==="joyslite.com")return`${o}.${a}`}return`${o}.jolibox.com`}function xi(e){return Qa("api","stg-api",e)}function Ct(e){return`https://${xi(e)}`}function Ld(e){return Qa("collect","stg-collect",e)}function Xa(e){return`https://${Ld(e)}`}function Ud(e){return new Promise(t=>Za(e)(t))}function Za(e){return(t,r=null)=>{let n=!1;return e(i=>{if(!n)return n=!0,t.call(r,i)},null)}}function Md(e,t){return(r=>{let n,i={onWillAddFirstListener(){n=r(o.fire,o)}},o=new er(i);return o.event})((r,n=null)=>e(i=>t(i)&&r.call(n,i),null))}function Jd(e,t){let r=Math.min(e.length,t.length);for(let n=0;n<r;n++)Fd(e[n],t[n])}function Fd(e,t){if(Ii(t)){if(typeof e!==t)throw new Error(`argument does not match constraint: typeof ${t}`)}else if(pd(t)){try{if(e instanceof t)return}catch(r){}if(!md(e)&&e.constructor===t||t.length===1&&t.call(void 0,e)===!0)return;throw new Error("[Jolibox SDK]argument does not match one of these constraints: arg instanceof constraint, arg.constructor === constraint, nor constraint(arg) === true")}}function Gd(){return typeof globalThis!="undefined"?globalThis[es]:void 0}function jd(e){typeof globalThis!="undefined"&&(globalThis[es]=e)}function _e(e=!1){let t=Gd();if(!e&&t)return t;let r=new Nr,n=new bi,i={registerCommand(o,a,s){r.registerCommand({id:o,handler:a,metadata:s})},executeCommand(o,...a){return n.executeCommand(o,...a)},excuteCommandSync(o,...a){return n.executeCommandThowErr(o,...a)}};return jd(i),i}var Ei,id,od,ad,Pa,sd,ld,Da,Ba,ud,cd,Ja,dd,vd,Ai,Si,$a,qa,_d,Ka,Ur,Mr,Ci,ke,_i,yd,Oi,Ua,wd,dt,St,bd,Ma,Ed,Id,it,At,Cd,Ee,Od,Rd,kd,za,ki,Ti,Td,xd,Ya,gi,te,Pd,Dd,Zt,er,Fe,wi,Nd,vi,Bd,ft,Nr,bi,es,j=Z(()=>{"use strict";Ei=Object.defineProperty,id=Object.defineProperties,od=Object.getOwnPropertyDescriptor,ad=Object.getOwnPropertyDescriptors,Pa=Object.getOwnPropertySymbols,sd=Object.prototype.hasOwnProperty,ld=Object.prototype.propertyIsEnumerable,Da=(e,t,r)=>t in e?Ei(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,Ba=(e,t)=>{for(var r in t||(t={}))sd.call(t,r)&&Da(e,r,t[r]);if(Pa)for(var r of Pa(t))ld.call(t,r)&&Da(e,r,t[r]);return e},ud=(e,t)=>id(e,ad(t)),cd=(e,t)=>{for(var r in t)Ei(e,r,{get:t[r],enumerable:!0})},Ja=(e,t,r,n)=>{for(var i=n>1?void 0:n?od(t,r):t,o=e.length-1,a;o>=0;o--)(a=e[o])&&(i=(n?a(t,r,i):a(i))||i);return n&&i&&Ei(t,r,i),i},dd=(e,t,r)=>new Promise((n,i)=>{var o=u=>{try{s(r.next(u))}catch(d){i(d)}},a=u=>{try{s(r.throw(u))}catch(d){i(d)}},s=u=>u.done?n(u.value):Promise.resolve(u.value).then(o,a);s((r=r.apply(e,t)).next())});if(typeof window!="undefined"&&!window.AbortController){let e=function(){this.signal=new t};e.prototype.abort=function(){this.signal._aborted=!0,typeof this.signal.onabort=="function"&&this.signal.onabort(new Event("abort"));let r=new Event("abort");this.signal.dispatchEvent(r)};let t=function(){this._aborted=!1,this.aborted=!1,this.onabort=null,this._eventListeners={}};Object.defineProperty(t.prototype,"aborted",{get:function(){return this._aborted}}),t.prototype.addEventListener=function(r,n){this._eventListeners[r]||(this._eventListeners[r]=[]),this._eventListeners[r].push(n)},t.prototype.removeEventListener=function(r,n){if(!this._eventListeners[r])return;let i=this._eventListeners[r].indexOf(n);i!==-1&&this._eventListeners[r].splice(i,1)},t.prototype.dispatchEvent=function(r){if(this._eventListeners[r.type])for(let n of this._eventListeners[r.type])n.call(this,r)},window.AbortController=e,window.AbortSignal=t}vd=(e=>(e[e.DEVELOPER_FILE_NOT_FOUND=0]="DEVELOPER_FILE_NOT_FOUND",e[e.INTERNAL_IOS_CAN_NOT_FOUND_PKG=1]="INTERNAL_IOS_CAN_NOT_FOUND_PKG",e[e.USER_IOS_LOAD_TIMEOUT=2]="USER_IOS_LOAD_TIMEOUT",e[e.INTERNAL_IOS_PKG_LOAD_ERROR=3]="INTERNAL_IOS_PKG_LOAD_ERROR",e[e.INTERNAL_IOS_PKG_PARSE_FAIL=4]="INTERNAL_IOS_PKG_PARSE_FAIL",e[e.USER_IOS_GET_EMPTY_DATA=5]="USER_IOS_GET_EMPTY_DATA",e[e.USER_ANDROID_GET_PKG_FAIL=6]="USER_ANDROID_GET_PKG_FAIL",e[e.DEVELOPER_ANDROID_PACKAGE_FILE_UNEXPECTED_REQUIRE=7]="DEVELOPER_ANDROID_PACKAGE_FILE_UNEXPECTED_REQUIRE",e))(vd||{}),Ai=class extends Error{constructor(e){if(typeof e=="string"){super(e),this.priority="P1";return}super(e.message),this.priority="P1",this.stack=e.stack,this.raw=e}},Si=class extends Ai{constructor(){super(...arguments),this.kind="INTERNAL_ERROR"}},$a=class extends Ai{constructor(){super(...arguments),this.kind="USER_ERROR"}},qa=class extends $a{constructor(){super(...arguments),this.name="USER_VALIDATE_ERROR"}},_d=class extends $a{constructor(e,t,r){super(e),this.message=e,this.errNo=t,this.name="USER_CUSTOM_ERROR",this.errMsg=e,r&&(this.extra=Object.assign({},this.extra,r))}},Ka=class extends Si{constructor(){super(...arguments),this.name="INTERNAL_SCHEMA_PARSE_ERROR",this.priority="P0"}},Ur=class extends Si{constructor(){super(...arguments),this.name="INTERNAL_GLOBAL_JS_ERROR",this.priority="P1"}},Mr=class extends Ai{constructor(e,t,r,n,i){super(e),this.message=e,this.code=t,this.kind="API_ERROR",this.name="API_ERROR",r&&(this.errorType=r),n!==void 0&&(this.stack=n),i&&(this.priority=i)}toJSON(){return{message:this.message,stack:this.stack,name:this.name,code:this.code,errorType:this.errorType}}},Ci=class extends Si{constructor(){super(...arguments),this.name="INTERNAL_REPORTER_ERROR"}};ke={log:Xt("log"),warn:Xt("warn"),info:Xt("info"),error:Xt("error"),debug:Xt("debug")};Object.assign(globalThis,{logger:ke});_i=Symbol.for("Jolibox.canIUseMap"),yd={};globalThis[_i]||(globalThis[_i]=yd);Oi={get config(){return globalThis[_i]}},Ua=Symbol.for("Jolibox.canIUseMap.native"),wd={};globalThis[Ua]||(globalThis[Ua]=wd);dt=(e=>(e[e.Other=0]="Other",e[e.Route=1]="Route",e[e.Click=2]="Click",e[e.View=3]="View",e[e.Expose=4]="Expose",e[e.Swipe=5]="Swipe",e[e.Input=6]="Input",e[e.Select=7]="Select",e[e.SwitchOn=8]="SwitchOn",e[e.SwitchOff=9]="SwitchOff",e[e.Submit=10]="Submit",e[e.Scroll=11]="Scroll",e[e.Hide=12]="Hide",e[e.System=1e3]="System",e[e.ErrorTrace=1001]="ErrorTrace",e[e.UserDefined=1002]="UserDefined",e))(dt||{}),St=(e=>(e.MiniGame="mini-game",e.MiniDrama="mini-drama",e.App="app",e.WebSDK="web-sdk",e.AppSDK="app-sdk",e))(St||{}),bd=(e=>(e[e.App=0]="App",e[e.H5=1]="H5",e[e.Weapp=2]="Weapp",e[e.Alipay=3]="Alipay",e[e.Gcash=4]="Gcash",e[e.Dana=5]="Dana",e[e.Umma=6]="Umma",e[e.WebSDK=1e3]="WebSDK",e[e.AppSDK=1001]="AppSDK",e[e.Other=9999]="Other",e))(bd||{}),Ma=["name","params"],Ed=["name","type","location","target","extra","timestamp","userId"],Id=["platform","os","appVersion","appId","model","brand","uuid","jsSdkVersion","extra"];it=()=>"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{let t=Math.random()*16|0;return(e==="x"?t:t&3|8).toString(16)});Sd();At=typeof window=="undefined",Cd=()=>!At&&!!(navigator.userAgent||"").includes("JoliboxPlatformSDK"),Ee={isiOS:!At&&(navigator.userAgent.includes("iPhone")||navigator.userAgent.includes("iPod")||navigator.userAgent.includes("iPad")||navigator.userAgent.includes("iPhone OS")),iosVersion:()=>{let e=navigator.appVersion.match(/OS (\d+)_(\d+)_?(\d+)?/);return[parseInt(e[1],10),parseInt(e[2],10),parseInt(e[3]||"0",10)]},isAndroid:!At&&navigator.userAgent.includes("Android"),isMac:!At&&navigator.userAgent.includes("Mac"),isFacebook:!At&&navigator.userAgent.includes("FB_IAB"),isPC:!At&&!navigator.userAgent.includes("iPhone")&&!navigator.userAgent.includes("Android")},Od=()=>Ee.isiOS?"iOS":Ee.isAndroid?"Android":Ee.isMac?"Mac":Ee.isFacebook?"Facebook":"PC",Rd="device_id",kd="advertising_id",za=e=>(window.__joliboxLocalStorage__.getItem(e)||window.__joliboxLocalStorage__.setItem(e,it()),window.__joliboxLocalStorage__.getItem(e)),ki=()=>new URLSearchParams(window.location.search).get("deviceId")||za(Rd),Ti=()=>new URLSearchParams(window.location.search).get("advertisingId")||za(kd),Td=e=>e.charAt(0).toUpperCase()+e.slice(1),xd=()=>{var e;let t=new URLSearchParams(window.location.search);return Td((e=t.get("utm_source"))!=null?e:"")||"JoliboxSDK"},Ya=e=>{if(Cd())return window.navigator.userAgent;let t="JoliboxWebSDK",r=Od(),n=navigator.language,i=ki(),o=Ti();return`${t} (${xd()}${r}; UnknownModel; UnknownSystemVersion; ${n}) uuid/${i} adid/${o} version/${e||""}`};gi=class yi{constructor(t){this.element=t,this.next=yi.Undefined,this.prev=yi.Undefined}};gi.Undefined=new gi(void 0);te=gi,Pd=class{constructor(){this._first=te.Undefined,this._last=te.Undefined,this._size=0}get size(){return this._size}isEmpty(){return this._first===te.Undefined}clear(){let e=this._first;for(;e!==te.Undefined;){let t=e.next;e.prev=te.Undefined,e.next=te.Undefined,e=t}this._first=te.Undefined,this._last=te.Undefined,this._size=0}unshift(e){return this._insert(e,!1)}push(e){return this._insert(e,!0)}_insert(e,t){let r=new te(e);if(this._first===te.Undefined)this._first=r,this._last=r;else if(t){let i=this._last;this._last=r,r.prev=i,i.next=r}else{let i=this._first;this._first=r,r.next=i,i.prev=r}this._size+=1;let n=!1;return()=>{n||(n=!0,this._remove(r))}}shift(){if(this._first!==te.Undefined){let e=this._first.element;return this._remove(this._first),e}}pop(){if(this._last!==te.Undefined){let e=this._last.element;return this._remove(this._last),e}}_remove(e){if(e.prev!==te.Undefined&&e.next!==te.Undefined){let t=e.prev;t.next=e.next,e.next.prev=t}else e.prev===te.Undefined&&e.next===te.Undefined?(this._first=te.Undefined,this._last=te.Undefined):e.next===te.Undefined?(this._last=this._last.prev,this._last.next=te.Undefined):e.prev===te.Undefined&&(this._first=this._first.next,this._first.prev=te.Undefined);this._size-=1}*[Symbol.iterator](){let e=this._first;for(;e!==te.Undefined;)yield e.element,e=e.next}},Dd=0,Zt=class{constructor(e){this.value=e,this.id=Dd++}},er=class{constructor(e){this.options=e,this._size=0}dispose(e){var t,r;this._disposed||(this._disposed=!0,this._listeners&&(e?(this._listeners instanceof Zt&&(this._listeners=[this._listeners]),this._listeners=this._listeners.filter(n=>(n==null?void 0:n.value)===e)):(this._listeners=void 0,this._size=0)),(r=(t=this.options)==null?void 0:t.onDidRemoveLastListener)==null||r.call(t))}get event(){var e;return(e=this._event)!=null||(this._event=(t,r)=>{var n,i,o,a,s,u;if(this._disposed)return()=>{console.info("[Jolibox SDK] Emitter is _disposed")};r&&(t=t.bind(r));let d=new Zt(t);return this._listeners?this._listeners instanceof Zt?this._listeners=[this._listeners,d]:this._listeners.push(d):((i=(n=this.options)==null?void 0:n.onWillAddFirstListener)==null||i.call(n,this),this._listeners=d,(a=(o=this.options)==null?void 0:o.onDidFirstListener)==null||a.call(o,this)),(u=(s=this.options)==null?void 0:s.onDidAddListener)==null||u.call(s,this),this._size++,()=>{var y,h,p,f;if(!this._disposed){if(this._listeners instanceof Zt)this._listeners.id===d.id&&(this._listeners=void 0,this._size=0,(h=(y=this.options)==null?void 0:y.onDidRemoveLastListener)==null||h.call(y));else if(this._listeners){let b=this._listeners.indexOf(d);b>=0&&(this._listeners.splice(b,1),this._size--,this._size===0&&((f=(p=this.options)==null?void 0:p.onDidRemoveLastListener)==null||f.call(p)))}}}}),this._event}_deliver(e,t){var r;if(!e)return;let n=((r=this.options)==null?void 0:r.onListenerError)||Error.constructor;if(!n){e.value(t);return}try{e.value(t)}catch(i){n(i)}}fire(e){this._listeners&&(this._listeners instanceof Zt?this._deliver(this._listeners,e):this._listeners.forEach(t=>this._deliver(t,e)))}hasListeners(){return this._size>0}},Fe=class{constructor(){this.listeners=new Map,this.listerHandlerMap=new WeakMap,this.cachedEventQueue=new Map}on(e,t,r=!0){var n;let i=(n=this.listeners.get(e))!=null?n:new er,o=u=>t(...u.args),a=i.event(o);this.listerHandlerMap.set(t,{handler:o,dispose:a}),this.listeners.set(e,i);let s=this.cachedEventQueue.get(e);if(s&&r)for(let u of s)t(...u.args)}flushCachedEvent(e){e?this.cachedEventQueue.delete(e):this.cachedEventQueue.clear()}off(e,t){let r=this.listerHandlerMap.get(t);r&&(r.dispose(),this.listerHandlerMap.delete(t))}emit(e,...t){let r=this.listeners.get(e),n=this.cachedEventQueue.get(e);n||(n=new Pd,this.cachedEventQueue.set(e,n)),n.push({args:t}),r&&r.fire({event:e,args:t})}once(e,t){let r=(...n)=>{t(...n),this.off(e,r)};this.on(e,r,!1)}},wi={};cd(wi,{None:()=>Nd,filter:()=>Md,once:()=>Za,toPromise:()=>Ud});Nd=()=>(console.log("[Jolibox SDK] None Event"),()=>{console.log("[Jolibox SDK] None Event dispose")});vi=Symbol.for("Jolibox.hostEmitter"),Bd=()=>{let e=new Fe;return globalThis[vi]||(globalThis[vi]={on:e.on.bind(e),off:e.off.bind(e),emit:e.emit.bind(e),once:e.once.bind(e)}),globalThis[vi]},ft=Bd();Nr=class{constructor(){this._commands=new Map,this._onDidRegisterCommand=new er,this.onDidRegisterCommand=this._onDidRegisterCommand.event,console.log("[Jolibox SDK] command registry")}registerCommand(e){if(!e)throw new Error("invalid command");if(e.metadata&&Array.isArray(e.metadata.args)){let r=[];for(let i of e.metadata.args)r.push(i.constraint);let n=e.handler;e.handler=function(...i){return Jd(i,r),n(...i)}}let{id:t}=e;this._commands.get(t)&&console.info(`[Jolibox SDK] duplicated command is registered ${t}`),this._commands.set(t,e),this._onDidRegisterCommand.fire(t)}getCommand(e){return this._commands.get(e)}getCommands(){let e=new Map;for(let t of this._commands.keys()){let r=this.getCommand(t);r&&e.set(t,r)}return e}};Nr=Ja([ja],Nr);bi=class{constructor(){this._onWillExecuteCommand=new er,this.onWillExecuteCommand=this._onWillExecuteCommand.event,this._onDidExecuteCommand=new er,this.onDidExecuteCommand=this._onDidExecuteCommand.event,this.registry=new Nr,this._starActivation=null}_activateStar(){return this._starActivation||(this._starActivation=fd(3e4)),this._starActivation}executeCommand(e,...t){return dd(this,null,function*(){return this.registry.getCommand(e)?this._tryExecuteCommand(e,t):(yield Promise.all([Promise.race([this._activateStar(),wi.toPromise(wi.filter(this.registry.onDidRegisterCommand,r=>r===e))])]),this._tryExecuteCommand(e,t))})}executeCommandThowErr(e,...t){if(!this.registry.getCommand(e))throw new Error(`command '${e}' not found`);let r=this.registry.getCommand(e);this._onWillExecuteCommand.fire({commandId:e,args:t});let n=this.invokeFunction(r.handler,...t);return this._onDidExecuteCommand.fire({commandId:e,args:t}),n}_tryExecuteCommand(e,t){let r=this.registry.getCommand(e);if(!r)return Promise.reject(new Error(`command '${e}' not found`));try{this._onWillExecuteCommand.fire({commandId:e,args:t});let n=this.invokeFunction(r.handler,...t);return this._onDidExecuteCommand.fire({commandId:e,args:t}),Promise.resolve(n)}catch(n){return Promise.reject(n)}}invokeFunction(e,...t){let r=!1;try{return e(...t)}finally{r=!0}}};bi=Ja([ja],bi);es=Symbol.for("Jolibox.commands")});function Te(e,t={}){Li.emit("ERROR_REPORT",{error:e,options:t})}var Li,ht,$e=Z(()=>{"use strict";j();j();Li=new Fe,ht=new Fe;Te.debounce=tr(Te,50,{leading:!0})});var Pi,Hd,ts,rs,ns=Z(()=>{"use strict";j();$e();Pi=e=>{let t=e.replace(/-/g,"+").replace(/_/g,"/"),r=t.length%4===0?"":"=".repeat(4-t.length%4),n=atob(t+r);try{return JSON.parse(n)}catch(i){return{}}},Hd=e=>{let t=JSON.stringify(e);return btoa(t).replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,"")},ts=e=>{var t;try{let i=(t=new URL(e).searchParams.get("joliSource"))==null?void 0:t.split(".");if(i!=null&&i.length){let[o,a,s]=i;return{headerJson:Pi(o),payloadJson:Pi(a),signature:Pi(s)}}else throw"joli_source is missing"}catch(r){return Te(new Ka(`${e} not a valid schema: ${r}`)),{headerJson:{},payloadJson:{},signature:{}}}},rs=(e,t)=>{let r=t.split(".");if(r&&r.length===3){let n=r[0],i=Hd(e),o=r[2];return`${n}.${i}.${o}`}return t}});var Vd,Br,is,Di=Z(()=>{"use strict";j();Vd="1.2.3",Br=()=>Vd,is=()=>{let e=Br();return`${Ya(e)}`}});function Ui(e,t){return(document==null?void 0:document.head.querySelector(`meta[name="${e}"][content="${t}"]`))!==null}var $d,os,Ni,as,ne,qd,P,me=Z(()=>{"use strict";j();ns();Di();j();$d={deviceInfo:{brand:"UnknownBrand",model:"UnknownModel",did:ki(),adId:Ti(),pixelRatio:window.devicePixelRatio||1,platform:Ee.isAndroid?"android":Ee.isiOS?"ios":"h5",system:"UnknownSystemVersion",lang:"zh"},sdkInfo:{nativeSDKVersion:"",jssdkVersion:Br()},schema:window.location.href,platform:Ee.isAndroid?"android":Ee.isiOS?"ios":"h5"},Ni=(os=globalThis.joliboxJSCore)==null?void 0:os.env,ne=Object.assign({},(as=Ni==null?void 0:Ni())!=null?as:$d);qd=()=>{var f,b,I,C,w,k,D,G,H,S,N;let{payloadJson:e,headerJson:t,signature:r}=ne.schema.length?ts(ne.schema):{},n=`${ne.deviceInfo.did}-${new Date().getTime()}`,o=new URL(ne.schema.length?ne.schema:window.location.href).searchParams,a=(I=(b=(f=o.get("mpId"))!=null?f:o.get("appId"))!=null?b:o.get("gameId"))!=null?I:"",s=(k=(w=(C=ne.clientSessionId)!=null?C:e==null?void 0:e.sessionId)!=null?w:o.get("sessionId"))!=null?k:n,u=!!((G=(D=e==null?void 0:e.testAdsMode)!=null?D:e==null?void 0:e.__testAdsMode)!=null?G:o.get("testAdsMode")==="true"),d=(N=(S=(H=e==null?void 0:e.joliboxEnv)!=null?H:e==null?void 0:e.__joliboxEnv)!=null?S:o.get("joliboxEnv"))!=null?N:"production",y=d==="staging",h=t==null?void 0:t.channel,p=e==null?void 0:e.__shouldInterupt;return{get startTime(){var T;return(T=performance.timeOrigin)!=null?T:performance.timing.navigationStart},get testMode(){return y},get testAdsMode(){return u},get joliboxEnv(){return d},get joliSource(){var T;return(T=o.get("joliSource"))!=null?T:null},get mpId(){var T;return(T=a!=null?a:e==null?void 0:e.id)!=null?T:""},get mpVersion(){var T;return(T=t==null?void 0:t.ver)!=null?T:Br()},get mpType(){var T,M;return(M=(T=t==null?void 0:t.__mpType)!=null?T:e==null?void 0:e.__mpType)!=null?M:"game"},get platform(){var T;return((T=ne.platform)!=null?T:ne.deviceInfo.platform).toLowerCase()},get deviceInfo(){return ne.deviceInfo},get sdkInfo(){return ne.sdkInfo},get hostInfo(){return ne.hostInfo},get hostUserInfo(){return ne.hostUserInfo},get sessionId(){var T,M;return(M=(T=ne.clientSessionId)!=null?T:s)!=null?M:n},get channel(){return h},get webviewId(){var T;return(T=ne.webviewId)!=null?T:-1},get shouldInterupt(){return p},get from(){return e==null?void 0:e.__from},get baseApiHost(){return xi(y)},get adId(){var T;return(T=ne.deviceInfo.adId)!=null?T:ne.deviceInfo.did},get language(){return ne.deviceInfo.lang},get sdkEnvironment(){return Ui("dlightek","jolibox")?"dlightek":o.get("huaweiQuick")==="true"?"huaweiQuick":Ui("gamedistribution","jolibox")?"gamedistribution":Ui("funmax","jolibox")?"funmax":"jolibox"},get viewport(){var W,ee,he;let T=(W=ne.deviceInfo.pixelRatio)!=null?W:1,M=(ee=ne.deviceInfo.statusBarHeight)!=null?ee:e==null?void 0:e.__androidStatusBarHeight,K=(he=ne.deviceInfo.navigationBarHeight)!=null?he:e==null?void 0:e.__androidNavigationBarHeight;return{statusBarHeight:M!==void 0?M/T:20,navigationBarHeight:K!==void 0?K/T:10}},get abTests(){var T,M;return(M=(T=ne.abValues)==null?void 0:T.split(","))!=null?M:[]},onEnvConfigChanged:T=>{Ha(ne,T,Va)},encodeJoliSourceQuery:T=>{var M,K;return t&&r?rs(Y(Y({},e),T),(M=o.get("joliSource"))!=null?M:""):(K=o.get("joliSource"))!=null?K:""},setDoExitDirectly:()=>{p=!1}}},P=qd()});var Mi,ls,Kd,Wd,ss,zd,us=Z(()=>{"use strict";j();$e();me();j();Mi=!1,ls=(e,t)=>e==null?!1:t in e,Kd=e=>ls(e,"kind"),Wd=e=>{let t=e.toLowerCase().split("_");return t[0]+t.slice(1).map(r=>r.charAt(0).toUpperCase()+r.slice(1)).join("")},ss=(e,t={},r)=>{var o,a,s;let n={user_id:(a=(o=P.hostUserInfo)==null?void 0:o.uid)!=null?a:"",device_id:(s=P.deviceInfo.did)!=null?s:"",timestamp:Date.now(),tag:Wd(e.name)},i=Re(Y({},n),{env:t.environment,isFromUser:r});r?ht.emit("GLOBAL_USER_ERROR",e,i):ht.emit("GLOBAL_ERROR",e,i)},zd=e=>ls(e,"kind")&&e.kind==="USER_ERROR";Li.on("ERROR_REPORT",({error:e,options:t})=>{if(Mi)return;Mi=!0;let r=Kd(e)&&e.raw?e.raw:e;try{let n=zd(e);ss(e,t,n)}catch(n){let i=n instanceof Error?n.message:String(n),o=new Ci(`${i}, origin error: ${r.message}`);ke.error(o),ss(new Ci(o.message),{environment:t.environment},!1)}finally{Mi=!1}})});var Bi,Ji=Z(()=>{"use strict";$e();j();$e();Bi=e=>new qa(e)});function cs(e,t){let r=(n,i,o)=>{let d=i!=null?i:{},{eventType:a}=d,s=xa(d,["eventType"]),u=Re(Y({tag:n,eventType:o!=null?o:a!=null?a:dt.Other},t),{extra:Y({},s)});n=="globalJsError"?Te(new Ur(JSON.stringify(u))):e("systemLog",u,P.webviewId)};return r.debounce=tr(r,500,{leading:!0}),r}function ds(e){let t=(r,n,i)=>{var s;let o=(s=i&&JSON.stringify(i))!=null?s:0,a={speed_value_type:r,total_duration:n};o&&Object.assign(a,{extra:o}),e("joliboxSpeedAnalysis",a)};return t.debounce=tr(t,500,{leading:!0}),t}var fs=Z(()=>{"use strict";j();j();$e();me()});function hs(e,t){let r=cs(e,t),n=ds(r);return{track:r,trackPerformance:n}}var ms=Z(()=>{"use strict";fs()});var Fi=Z(()=>{"use strict"});var Jr,ps=Z(()=>{"use strict";me();j();j();Jr=class{constructor(){this.deviceInfo=null;this.samplesConfig=null;this.fetchSamplesConfig()}fetchSamplesConfig(){return L(this,null,function*(){let r=`${Ct(P.testMode)}/api/fe-configs/js-sdk/samples-config`,n=yield(yield fetch(r)).json();this.samplesConfig=n})}checkIsSampled(t){if(!this.samplesConfig)return!1;let{samples:r}=this.samplesConfig;for(let[n,i]of Object.entries(r))if(i.includes(t.name))return Math.floor(Math.random()*101)<parseFloat(n);return!1}getDevice(){var n,i,o,a,s;let{nativeSDKVersion:t,jssdkVersion:r}=P.sdkInfo;return{platform:1e3,os:P.deviceInfo.platform,appVersion:(n=t!=null?t:r)!=null?n:"1.0.0",appId:(o=(i=P.hostInfo)==null?void 0:i.aid)!=null?o:"1",model:(a=P.deviceInfo.model)!=null?a:"UnknownModel",brand:(s=P.deviceInfo.brand)!=null?s:"UnknownBrand",uuid:P.deviceInfo.did,jsSdkVersion:r,extra:{}}}getLocation(){let t=new URLSearchParams(window.location.search),r={};return t.forEach((n,i)=>{r[i]=n}),{name:"GamePage",params:r}}trackEvent(t,r,n){return L(this,null,function*(){if(this.checkIsSampled(t))return;let i=t.location?t.location:yield this.getLocation(),o=t.target||null,a=t.extra||null;this.deviceInfo||(this.deviceInfo=yield this.getDevice());let s=this.deviceInfo,d={protocolVersion:"1.0.0",events:[Re(Y({},t),{location:i,target:o,extra:a,timestamp:Date.now(),userId:null})],device:s,project:r};try{n?yield this.doReport(Ri(d),n):yield this.doReport(Ri(d))}catch(y){ke.log("[Jolibox SDK] report API error",y)}})}}});var Gi=Z(()=>{"use strict";ms();Fi();ps()});var ji,vs,qe,Fr,Be,Ot=Z(()=>{"use strict";Di();me();j();ji=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal};(vs=AbortSignal.timeout)!=null||(AbortSignal.timeout=ji);qe=class e{constructor(){this.httpClients=new WeakSet;this.networkRequests=[];this.maxRequestsToTrack=20;this.getNetworkStatus=()=>this.networkRequests.length===0?!0:this.networkRequests.filter(n=>n).length/this.networkRequests.length>=.6}static getInstance(){return e._instance||(e._instance=new e),e._instance}create(t){let r=new Fr(t);return e.getInstance().httpClients.add(r),r}recordNetworkRequest(t){this.networkRequests.push(t),this.networkRequests.length>this.maxRequestsToTrack&&this.networkRequests.shift()}},Fr=class{constructor(t){this.xua=is();this.getJoliSource=()=>P.joliSource;var n;let r=Ct(P.testMode);this.baseUrl=(n=t==null?void 0:t.baseUrl)!=null?n:r}get(t,r){return L(this,null,function*(){try{let{query:n,timeout:i}=r!=null?r:{},{headers:o}=r!=null?r:{},a=n?new URLSearchParams(n):null,s=a==null?void 0:a.toString(),u=`${this.baseUrl}${t}${s?`?${s}`:""}`,d=this.xua,y=this.getJoliSource();o=Object.assign({},o!=null?o:{},d?{"x-user-agent":d}:{},y?{"x-joli-source":y}:{});let h=yield fetch(u,{method:"GET",headers:o,credentials:"include",signal:ji(i!=null?i:3e4)});return qe.getInstance().recordNetworkRequest(!0),yield h.json()}catch(n){throw qe.getInstance().recordNetworkRequest(!1),n}})}post(t,r){return L(this,null,function*(){try{let{data:n,query:i,timeout:o}=r!=null?r:{},{headers:a}=r!=null?r:{},s=i?new URLSearchParams(i):null,u=s==null?void 0:s.toString(),d=`${this.baseUrl}${t}${u?`?${u}`:""}`,y=this.xua,h=this.getJoliSource();a=Object.assign({},a!=null?a:{},{"Content-Type":"application/json"},y?{"x-user-agent":y}:{},h?{"x-joli-source":h}:{},{"x-os-type":Ee.isAndroid?"ANDROID":Ee.isiOS?"IOS":"PC"},{"x-runtime-type":"WEB"});let p=yield fetch(d,{method:"POST",headers:a,body:JSON.stringify(n),signal:ji(o!=null?o:3e4),credentials:"include"});qe.getInstance().recordNetworkRequest(!0);let f=p.headers.get("content-type");if(f!=null&&f.includes("application/octet-stream"))try{return p.blob()}catch(b){return yield p.arrayBuffer()}if(f!=null&&f.includes("multipart/form-data")||f!=null&&f.includes("application/x-www-form-urlencoded"))try{return p.formData()}catch(b){return yield p.text()}if(f!=null&&f.includes("application/json"))try{return yield p.json()}catch(b){return yield p.text()}return p}catch(n){throw qe.getInstance().recordNetworkRequest(!1),n}})}put(t,r){return L(this,null,function*(){try{let{data:n,query:i,timeout:o}=r!=null?r:{},{headers:a}=r!=null?r:{},s=i?new URLSearchParams(i):null,u=s==null?void 0:s.toString(),d=`${this.baseUrl}${t}${u?`?${u}`:""}`,y=this.xua,h=this.getJoliSource();a=Object.assign({},a!=null?a:{},{"Content-Type":"application/json"},y?{"x-user-agent":y}:{},h?{"x-joli-source":h}:{});let p=yield fetch(d,{method:"PUT",headers:a,credentials:"include",body:JSON.stringify(n!=null?n:{})});if(!p.ok)throw qe.getInstance().recordNetworkRequest(!1),new Error(`HTTP error! status: ${p.status}`);return qe.getInstance().recordNetworkRequest(!0),yield p.json()}catch(n){throw console.error("Error:",n),n}})}};window.JoliboxHttpClient=Fr;Be=qe.getInstance()});var Hi,Gr,Vi=Z(()=>{"use strict";me();Gi();Ot();j();Hi=class extends Jr{constructor(){super(...arguments);this.httpClient=Be.create({baseUrl:this.apiBaseURL})}get apiBaseURL(){var r;return Xa((r=P.testMode)!=null?r:!1)}doReport(r){this.httpClient.post("/report",{data:r,timeout:5e3}).catch(n=>{console.info("report error",n)})}},Gr=new Hi});var Yd,_s=Z(()=>{"use strict";us();j();Ji();j();Vi();me();Yd=(e,t)=>{var i,o,a;let r={message:t.message,stack:(i=t.stack)!=null?i:"",errorType:t.name,source:0},n={name:e,type:dt.ErrorTrace,location:null,target:null,extra:r,timestamp:Date.now(),userId:(a=(o=P.hostUserInfo)==null?void 0:o.uid)!=null?a:null};Gr.trackEvent(n,St.WebSDK)};ht.on("GLOBAL_ERROR",(e,t)=>{Yd(t.tag,e)});ht.on("GLOBAL_USER_ERROR",(e,t)=>{ke.log("UserError",e,t)})});var jr,gs=Z(()=>{"use strict";jr=class{constructor(t,r){this.eventEmitter=t;this.lastReportTime=0;this.visible=!0;this.reportCount=0;this.notifyIframeGameEvent=(t,r)=>{window.parent&&window.parent.postMessage({type:t,data:r},"*")};this.playGame=t=>{this.reportCount++,(this.reportCount<=3||(this.reportCount-3)%3===0)&&(this.reporter({event:"PLAY_GAME",params:{duration:t}}),this.tracker("PlayGame",{duration:t}),this.notifyIframeGameEvent("JOLIBOX_GAME_PLAY",{duration:t}))};this.timer=this.createRAFTimer(t=>{this.playGame(t)});this.interval=r!=null?r:5*1e3,t.on("visible",n=>{this.visible=n})}start(t){this.reporter({event:"OPEN_GAME",params:{timestamp:Date.now(),duration:t!=null?t:0}}),this.tracker("OpenGame",{duration:t!=null?t:0}),this.notifyIframeGameEvent("JOLIBOX_GAME_OPEN",{duration:t!=null?t:0}),this.timer.start()}close(t){this.reporter({event:"CLOSE_GAME",params:{timestamp:Date.now(),duration:t}}),this.tracker("CloseGame",{duration:t}),this.notifyIframeGameEvent("JOLIBOX_GAME_CLOSE",{duration:t}),this.timer.stop()}createRAFTimer(t){let r=Date.now(),n,i,o=!1,a=0,s=()=>{if(!o)return;let f=Date.now(),b=f-r;b>=this.interval&&(this.visible&&(a+=Math.min(b,this.interval+1e3),t(a)),r=f),n=requestAnimationFrame(s)},u=()=>{y(),r=Date.now(),i=window.setInterval(()=>{if(!o)return;let f=Date.now();f-r>=this.interval&&(r=f)},this.interval)},d=()=>{h(),r=Date.now(),n=requestAnimationFrame(s)},y=()=>{n&&(cancelAnimationFrame(n),n=0)},h=()=>{i&&(clearInterval(i),i=0)};this.eventEmitter.on("visible",f=>{o&&(console.log("visible",f),f?d():u())});let p=this.visible;return{start(){o||(o=!0,p?d():u())},stop(){o=!1,y(),h()}}}}});var Hr,ys=Z(()=>{"use strict";me();gs();Ot();Hr=class extends jr{constructor(r,n,i){super(n,i);this.httpClient=Be.create();this.gameId=P.mpId,this.sessionId=P.sessionId,this.track=r}reporter(r){return L(this,null,function*(){let{event:n,params:i,extraParams:o}=r,a={eventType:n,gameInfo:Y({gameId:this.gameId,sessionId:this.sessionId},i)};o&&Object.assign(a,o),yield this.httpClient.post("/api/base/app-event",{data:a})})}tracker(r,n=null){this.track(r,n)}}});var ws,Qd,xe,Xd,$i,Ke,ot=Z(()=>{"use strict";_s();j();j();Gi();Vi();ys();me();Fi();ws=_e(),Qd={type:St.WebSDK,platform:"h5",jssdk_version:P.sdkInfo.jssdkVersion,mp_id:P.mpId,mp_version:P.mpVersion},{track:xe,trackPerformance:Xd}=hs((...e)=>{var a,s,u,d;let[,t]=e,r=t,n=Fa(r.extra)?r.extra:Ii(r.extra)?JSON.parse(r.extra):{},i=Re(Y({},n),{mp_id:(a=r.mp_id)!=null?a:"",mp_version:(s=r.mp_version)!=null?s:""}),o={name:t.tag,type:dt.System,location:null,target:null,extra:i,timestamp:Date.now(),userId:(d=(u=P.hostUserInfo)==null?void 0:u.uid)!=null?d:null};Gr.trackEvent(o,St.WebSDK)},Qd);ws.registerCommand("ReportSDK.traceSystemTimeline",({event:e,duration:t,extra:r})=>{Xd(e,t,r)});ws.registerCommand("ReportSDK.traceSystem",({event:e,info:t})=>{xe(e,t)});$i=new Fe,Ke=new Hr(xe,$i)});function bs(e){let t=Oi.config[e];return t||(t={},Oi.config[e]=t),(r,n)=>{if(t[r]){ke.warn(`[can i use] ${r} already registered`);return}t[r]=Y({},n)}}var Es=Z(()=>{"use strict";j()});function qi(e){Is=e}function Vr(e){return e===null||typeof e!="object"?e:Array.isArray(e)?e.map(t=>Vr(t)):Object.keys(e).reduce((t,r)=>(t[r]=Vr(e[r]),t),{})}function We(e){return typeof e=="number"}function Ki(e){let t=Wi(e);switch(t){case"string":return`"${e}"`;case"number":case"boolean":case"null":case"undefined":return String(e);default:return`a(n) ${t}`}}function Wi(e){return typeof e=="function"?"function":Object.prototype.toString.call(e).slice(8).slice(0,-1).toLowerCase()}var Is,ce,$r,qr,Kr,Wr,Rt,zr,Yr,Qr,Xr,Zr,en,tn,rn,nn,on,an,sn,zi=Z(()=>{"use strict";Is=!1;ce=class{constructor(){this.errors=[];this.hasFallback=!1;this.hasDefault=!1;this._optional=!1}fail(t){if(Is)if(typeof t=="string")this.errors.push(t);else{let r=`${this.path} should be ${t.expect}`;this._optional&&t.expect!=="undefined"?r+=" or undefined, ":r+=", ",r+=`but got ${Ki(t.actual)}`,this.errors.push(r)}return!1}fallback(t){return this.hasFallback=!0,this._fallback=t,this}get fallbackValue(){return Vr(this._fallback)}default(t){return this.hasDefault=!0,this._default=t,this}get defaultValue(){return typeof this._default=="function"?this._default:Vr(this._default)}optional(){return this._optional=!0,this}};$r=class extends ce{validate(t){return this._optional&&t===void 0?!0:We(t)?We(this._min)&&t<this._min?this.fail(`the value of ${this.path} should be greater than or equal to ${this._min}`):We(this._max)&&t>this._max?this.fail(`the value of ${this.path} should be less than or equal to ${this._max}`):We(this._greater)&&t<=this._greater?this.fail(`the value of ${this.path} should be greater than ${this._greater}`):this._isInt&&t!==Math.floor(t)?this.fail(`the value of ${this.path} should be integer but got ${t}`):!0:this.fail({expect:"number",actual:t})}min(t){return this._min=t,this}max(t){return this._max=t,this}isInt(t){return this._isInt=t,this}greater(t){return this._greater=t,this}},qr=class extends ce{validate(t){return this._optional&&t===void 0?!0:typeof t!="boolean"?this.fail({expect:"boolean",actual:t}):!0}},Kr=class extends ce{validate(t){if(this._optional&&t===void 0)return!0;if(typeof t!="string")return this.fail({expect:"string",actual:t});if(We(this._maxLength)&&t.length>this._maxLength)return this.fail(`the length of ${this.path} should be less than or equal to ${this._maxLength}`);if(We(this._minLength)&&t.length<this._minLength)return this.fail(`the length of ${this.path} should be greater than or equal to ${this._minLength}`);if(typeof this._pattern=="string"){if(!new RegExp(this._pattern).test(t))return this.fail(`${this.path} should match pattern "${this._pattern}"`)}else if(this._pattern&&!this._pattern.test(t))return this.fail(`${this.path} should match pattern "${this._pattern.toString()}"`);return!0}minLength(t){return this._minLength=t,this}maxLength(t){return this._maxLength=t,this}pattern(t){return this._pattern=t,this}},Wr=class extends ce{validate(t){return this._optional&&t===void 0?!0:typeof t!="symbol"?this.fail({expect:"symbol",actual:t}):!0}},Rt=class extends ce{validate(t){return!0}},zr=class extends ce{validate(t){return t!==void 0?this.fail({expect:"undefined",actual:t}):!0}},Yr=class extends ce{validate(t){return this._optional&&t===void 0?!0:t!==null?this.fail({expect:"null",actual:t}):!0}},Qr=class extends ce{validate(t){return this._optional&&t===void 0?!0:typeof t!="function"?this.fail({expect:"function",actual:t}):!0}},Xr=class extends ce{constructor(...t){super(),this._items=t}validate(t){if(this._optional&&t===void 0)return!0;if(!this._items.includes(t)){let r=this._items.map(n=>JSON.stringify(n)).join(", ");return this.fail(`expect ${this.path} to be one of ${r}, but got ${Ki(t)}`)}return!0}},Zr=class extends ce{constructor(r){super();this._item=r}validate(r){if(this._optional&&r===void 0)return!0;if(!Array.isArray(r))return this.fail({expect:"array",actual:r});if(We(this._minItems)&&r.length<this._minItems)return this.fail(`the length of ${this.path} should be greater than or equal to ${this._minItems}`);if(We(this._maxItems)&&r.length>this._maxItems)return this.fail(`the length of ${this.path} should be less than or equal to ${this._maxItems}`);if(We(this._length)&&r.length!==this._length)return this.fail(`the length of ${this.path} should be equal to ${this._length}`);let n=this._item;if(!n)return!0;let i=!0;if(r.forEach((o,a)=>{if(n.path=`${this.path}[${a}]`,n.errors=this.errors,o===void 0&&n.hasDefault){r[a]=n.defaultValue;return}n.validate(o)||(n.hasFallback?r[a]=n.fallbackValue:i=!1)}),this._uniqueItems){let o=new Map;for(let a in r)o.has(r[a])?i=this.fail(`${this.path} should NOT have duplicate items (${this.path}[${o.get(r[a])}] and ${this.path}[${a}] are identical)`):o.set(r[a],a)}return i}minItems(r){return this._minItems=r,this}maxItems(r){return this._maxItems=r,this}uniqueItems(){return this._uniqueItems=!0,this}length(r){return this._length=r,this}},en=class extends ce{constructor(r){super();this._value=r}validate(r){if(this._optional&&r===void 0)return!0;if(Wi(r)!=="object")return this.fail({expect:"object",actual:r});let i=r,o=this._value;o.errors=this.errors;let a=!0;for(let s in i){let u=i[s];if(/^[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*$/.test(s)?o.path=`${this.path}.${s}`:o.path=`${this.path}["${s}"]`,!(u===void 0&&o._optional)){if(u===void 0&&o.hasDefault){i[s]=o.defaultValue;continue}o.validate(u)||(o.hasFallback?i[s]=o.fallbackValue:a=!1)}}return a}},tn=class extends ce{constructor(r={}){super();this._object=r}validate(r){if(this._optional&&r===void 0)return!0;if(Wi(r)!=="object")return this.fail({expect:"object",actual:r});let n=r,i=!0;for(let o in this._object){let a=n[o],s=this._object[o];if(s.errors=this.errors,/^[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*$/.test(o)?s.path=`${this.path}.${o}`:s.path=`${this.path}["${o}"]`,!(s._optional&&a===void 0)){if(a===void 0&&s.hasDefault){n[o]=s.defaultValue;continue}s.validate(a)||(s.hasFallback?n[o]=s.fallbackValue:i=!1)}}return i}},rn=class extends ce{constructor(r){super();this.value=r}validate(r){return r===void 0&&this._optional?!0:r!==this.value?this.fail({expect:Ki(this.value),actual:r}):!0}},nn=class extends ce{constructor(...t){super(),this._items=t}validate(t){if(t===void 0&&this._optional)return!0;let r=[],n=!1,i=this._items.length;for(let o=0;o<i;o++){let a=this._items[o];if(a.errors=[],a.path=this.path,!a.validate(t))r.push(a.errors.join("; "));else if(!n){n=!0;break}}if(!n){let o=r.join(`
2
- or `);this.errors.push(o)}return n}},on=class extends ce{constructor(...t){super(),this._items=t;let r=0,n=t.length-1;for(;n>=0;n--){let i=t[n];if(i._optional||i.hasDefault)r+=1;else break}this._minItems=t.length-r}validate(t){if(t===void 0&&this._optional)return!0;if(!Array.isArray(t))return this.fail({expect:"array",actual:t});if(t.length<this._minItems)return this.fail(`the length of ${this.path} should be greater than or equal to ${this._minItems}`);let r=!0;return this._items.forEach((n,i)=>{if(n.path=`${this.path}[${i}]`,n.errors=this.errors,t[i]===void 0&&n.hasDefault){t[i]=n.defaultValue;return}n.validate(t[i])||(n.hasFallback?t[i]=n._fallback:r=!1)}),r}},an=class extends ce{validate(t){return t===void 0&&this._optional||t instanceof ArrayBuffer?!0:this.fail({expect:"arraybuffer",actual:t})}},sn=class extends ce{constructor(t){super(),this._ctor=t}validate(t){return t===void 0&&this._optional||t instanceof this._ctor?!0:this.fail({expect:`typedarray of ${this._ctor.name}`,actual:t})}}});function Yi(e,t,r="param"){if(e.errors=[],e.path=r,qi(!0),!e.validate(t)){let n=e.errors.join(`
3
- `);throw e.errors.length=0,qi(!1),new TypeError(n)}}var J,Qi=Z(()=>{"use strict";zi();zi();J={object(e){return new tn(e)},array(e){return new Zr(e)},tuple(...e){return new on(...e)},literal(e){return new rn(e)},or(...e){return new nn(...e)},symbol(){return new Wr},record(e){return new en(e)},function(){return new Qr},boolean(){return new qr},string(){return new Kr},number(){return new $r},undefined(){return new zr},null(){return new Yr},unknown(){return new Rt},any(){return new Rt},as(){return new Rt},arraybuffer(){return new an},enum(...e){return new Xr(...e)},typedarray(e){return new sn(e)}}});var ln,As,Ss=Z(()=>{"use strict";j();$e();Qi();Ji();ln=1,As=e=>{function t(n,i){return(...o)=>{var h,p,f,b;let a=Date.now(),s={method:n,trace_id:ln};ln+=1;let u="SUCCESS",d=`${n}:ok`,y=0;try{if(i.paramsSchema)try{Yi(i.paramsSchema,o,"params")}catch(k){throw Bi(`${n}:fail ${k.message}`)}let I=i.implement(...o),C=I,w=`${n}:ok`;if(I&&"code"in I){let{code:k,data:D,message:G}=I;u=k,C=D,w=G}return{code:u,message:w,data:C}}catch(I){let C=I;y=(p=(h=C.code)!=null?h:C.errNo)!=null?p:2e3,u="FAILURE";let w=(b=(f=C.message)!=null?f:C.errMsg)!=null?b:`${I}`;return d=`${n}:${u} ${w.replace(/^\S+:(fail|cancel)\s?/,"")}`,Te(new Mr(d,y)),{code:u,message:d}}finally{let I=Date.now()-a}}}function r(n,i){return(...o)=>L(this,null,function*(){var p,f,b,I;let a=Ga(o)?o:[o],s=Date.now(),u={method:n,trace_id:ln};ln+=1;let d=`${n}:ok`,y="SUCCESS",h={code:y,message:d};try{if(i.paramsSchema)try{Yi(i.paramsSchema,a,"params")}catch(k){throw Bi(k.message)}let w=yield i.implement(...a);if(w&&"code"in w){let{code:k,data:D,message:G}=w;y=k,d=G,w=D}return Object.assign(h,{code:y,message:d,data:w}),h}catch(C){let w=C,k=(f=(p=w.code)!=null?p:w.errNo)!=null?f:2e3;y="FAILURE";let D=(I=(b=w.message)!=null?b:w.errMsg)!=null?I:`${C}`,G=`${n}:${y} ${D.replace(/^\S+:(fail|cancel)\s?/,"")}`;return Object.assign(h,{code:y,message:G}),Te(new Mr(G,k)),h}finally{let C=Date.now()-s}})}return{createAPI:r,createSyncAPI:t}}});var ze,mt,ge,rr=Z(()=>{"use strict";Es();ot();Ss();Qi();({createAPI:ze,createSyncAPI:mt}=As(xe)),ge=bs("h5")});var ks=mi((Rs,to)=>{(function(e){if(typeof Rs=="object"&&typeof to!="undefined")to.exports=e();else if(typeof define=="function"&&define.amd)define([],e);else{var t;typeof window!="undefined"?t=window:typeof global!="undefined"?t=global:typeof self!="undefined"?t=self:t=this,t.localforage=e()}})(function(){var e,t,r;return function n(i,o,a){function s(y,h){if(!o[y]){if(!i[y]){var p=typeof Qt=="function"&&Qt;if(!h&&p)return p(y,!0);if(u)return u(y,!0);var f=new Error("Cannot find module '"+y+"'");throw f.code="MODULE_NOT_FOUND",f}var b=o[y]={exports:{}};i[y][0].call(b.exports,function(I){var C=i[y][1][I];return s(C||I)},b,b.exports,n,i,o,a)}return o[y].exports}for(var u=typeof Qt=="function"&&Qt,d=0;d<a.length;d++)s(a[d]);return s}({1:[function(n,i,o){(function(a){"use strict";var s=a.MutationObserver||a.WebKitMutationObserver,u;if(s){var d=0,y=new s(I),h=a.document.createTextNode("");y.observe(h,{characterData:!0}),u=function(){h.data=d=++d%2}}else if(!a.setImmediate&&typeof a.MessageChannel!="undefined"){var p=new a.MessageChannel;p.port1.onmessage=I,u=function(){p.port2.postMessage(0)}}else"document"in a&&"onreadystatechange"in a.document.createElement("script")?u=function(){var w=a.document.createElement("script");w.onreadystatechange=function(){I(),w.onreadystatechange=null,w.parentNode.removeChild(w),w=null},a.document.documentElement.appendChild(w)}:u=function(){setTimeout(I,0)};var f,b=[];function I(){f=!0;for(var w,k,D=b.length;D;){for(k=b,b=[],w=-1;++w<D;)k[w]();D=b.length}f=!1}i.exports=C;function C(w){b.push(w)===1&&!f&&u()}}).call(this,typeof global!="undefined"?global:typeof self!="undefined"?self:typeof window!="undefined"?window:{})},{}],2:[function(n,i,o){"use strict";var a=n(1);function s(){}var u={},d=["REJECTED"],y=["FULFILLED"],h=["PENDING"];i.exports=p;function p(S){if(typeof S!="function")throw new TypeError("resolver must be a function");this.state=h,this.queue=[],this.outcome=void 0,S!==s&&C(this,S)}p.prototype.catch=function(S){return this.then(null,S)},p.prototype.then=function(S,N){if(typeof S!="function"&&this.state===y||typeof N!="function"&&this.state===d)return this;var T=new this.constructor(s);if(this.state!==h){var M=this.state===y?S:N;b(T,M,this.outcome)}else this.queue.push(new f(T,S,N));return T};function f(S,N,T){this.promise=S,typeof N=="function"&&(this.onFulfilled=N,this.callFulfilled=this.otherCallFulfilled),typeof T=="function"&&(this.onRejected=T,this.callRejected=this.otherCallRejected)}f.prototype.callFulfilled=function(S){u.resolve(this.promise,S)},f.prototype.otherCallFulfilled=function(S){b(this.promise,this.onFulfilled,S)},f.prototype.callRejected=function(S){u.reject(this.promise,S)},f.prototype.otherCallRejected=function(S){b(this.promise,this.onRejected,S)};function b(S,N,T){a(function(){var M;try{M=N(T)}catch(K){return u.reject(S,K)}M===S?u.reject(S,new TypeError("Cannot resolve promise with itself")):u.resolve(S,M)})}u.resolve=function(S,N){var T=w(I,N);if(T.status==="error")return u.reject(S,T.value);var M=T.value;if(M)C(S,M);else{S.state=y,S.outcome=N;for(var K=-1,W=S.queue.length;++K<W;)S.queue[K].callFulfilled(N)}return S},u.reject=function(S,N){S.state=d,S.outcome=N;for(var T=-1,M=S.queue.length;++T<M;)S.queue[T].callRejected(N);return S};function I(S){var N=S&&S.then;if(S&&(typeof S=="object"||typeof S=="function")&&typeof N=="function")return function(){N.apply(S,arguments)}}function C(S,N){var T=!1;function M(he){T||(T=!0,u.reject(S,he))}function K(he){T||(T=!0,u.resolve(S,he))}function W(){N(K,M)}var ee=w(W);ee.status==="error"&&M(ee.value)}function w(S,N){var T={};try{T.value=S(N),T.status="success"}catch(M){T.status="error",T.value=M}return T}p.resolve=k;function k(S){return S instanceof this?S:u.resolve(new this(s),S)}p.reject=D;function D(S){var N=new this(s);return u.reject(N,S)}p.all=G;function G(S){var N=this;if(Object.prototype.toString.call(S)!=="[object Array]")return this.reject(new TypeError("must be an array"));var T=S.length,M=!1;if(!T)return this.resolve([]);for(var K=new Array(T),W=0,ee=-1,he=new this(s);++ee<T;)He(S[ee],ee);return he;function He(Wt,Tr){N.resolve(Wt).then(ri,function(Et){M||(M=!0,u.reject(he,Et))});function ri(Et){K[Tr]=Et,++W===T&&!M&&(M=!0,u.resolve(he,K))}}}p.race=H;function H(S){var N=this;if(Object.prototype.toString.call(S)!=="[object Array]")return this.reject(new TypeError("must be an array"));var T=S.length,M=!1;if(!T)return this.resolve([]);for(var K=-1,W=new this(s);++K<T;)ee(S[K]);return W;function ee(he){N.resolve(he).then(function(He){M||(M=!0,u.resolve(W,He))},function(He){M||(M=!0,u.reject(W,He))})}}},{1:1}],3:[function(n,i,o){(function(a){"use strict";typeof a.Promise!="function"&&(a.Promise=n(2))}).call(this,typeof global!="undefined"?global:typeof self!="undefined"?self:typeof window!="undefined"?window:{})},{2:2}],4:[function(n,i,o){"use strict";var a=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(l){return typeof l}:function(l){return l&&typeof Symbol=="function"&&l.constructor===Symbol&&l!==Symbol.prototype?"symbol":typeof l};function s(l,m){if(!(l instanceof m))throw new TypeError("Cannot call a class as a function")}function u(){try{if(typeof indexedDB!="undefined")return indexedDB;if(typeof webkitIndexedDB!="undefined")return webkitIndexedDB;if(typeof mozIndexedDB!="undefined")return mozIndexedDB;if(typeof OIndexedDB!="undefined")return OIndexedDB;if(typeof msIndexedDB!="undefined")return msIndexedDB}catch(l){return}}var d=u();function y(){try{if(!d||!d.open)return!1;var l=typeof openDatabase!="undefined"&&/(Safari|iPhone|iPad|iPod)/.test(navigator.userAgent)&&!/Chrome/.test(navigator.userAgent)&&!/BlackBerry/.test(navigator.platform),m=typeof fetch=="function"&&fetch.toString().indexOf("[native code")!==-1;return(!l||m)&&typeof indexedDB!="undefined"&&typeof IDBKeyRange!="undefined"}catch(c){return!1}}function h(l,m){l=l||[],m=m||{};try{return new Blob(l,m)}catch(v){if(v.name!=="TypeError")throw v;for(var c=typeof BlobBuilder!="undefined"?BlobBuilder:typeof MSBlobBuilder!="undefined"?MSBlobBuilder:typeof MozBlobBuilder!="undefined"?MozBlobBuilder:WebKitBlobBuilder,_=new c,g=0;g<l.length;g+=1)_.append(l[g]);return _.getBlob(m.type)}}typeof Promise=="undefined"&&n(3);var p=Promise;function f(l,m){m&&l.then(function(c){m(null,c)},function(c){m(c)})}function b(l,m,c){typeof m=="function"&&l.then(m),typeof c=="function"&&l.catch(c)}function I(l){return typeof l!="string"&&(console.warn(l+" used as a key, but it is not a string."),l=String(l)),l}function C(){if(arguments.length&&typeof arguments[arguments.length-1]=="function")return arguments[arguments.length-1]}var w="local-forage-detect-blob-support",k=void 0,D={},G=Object.prototype.toString,H="readonly",S="readwrite";function N(l){for(var m=l.length,c=new ArrayBuffer(m),_=new Uint8Array(c),g=0;g<m;g++)_[g]=l.charCodeAt(g);return c}function T(l){return new p(function(m){var c=l.transaction(w,S),_=h([""]);c.objectStore(w).put(_,"key"),c.onabort=function(g){g.preventDefault(),g.stopPropagation(),m(!1)},c.oncomplete=function(){var g=navigator.userAgent.match(/Chrome\/(\d+)/),v=navigator.userAgent.match(/Edge\//);m(v||!g||parseInt(g[1],10)>=43)}}).catch(function(){return!1})}function M(l){return typeof k=="boolean"?p.resolve(k):T(l).then(function(m){return k=m,k})}function K(l){var m=D[l.name],c={};c.promise=new p(function(_,g){c.resolve=_,c.reject=g}),m.deferredOperations.push(c),m.dbReady?m.dbReady=m.dbReady.then(function(){return c.promise}):m.dbReady=c.promise}function W(l){var m=D[l.name],c=m.deferredOperations.pop();if(c)return c.resolve(),c.promise}function ee(l,m){var c=D[l.name],_=c.deferredOperations.pop();if(_)return _.reject(m),_.promise}function he(l,m){return new p(function(c,_){if(D[l.name]=D[l.name]||la(),l.db)if(m)K(l),l.db.close();else return c(l.db);var g=[l.name];m&&g.push(l.version);var v=d.open.apply(d,g);m&&(v.onupgradeneeded=function(E){var A=v.result;try{A.createObjectStore(l.storeName),E.oldVersion<=1&&A.createObjectStore(w)}catch(O){if(O.name==="ConstraintError")console.warn('The database "'+l.name+'" has been upgraded from version '+E.oldVersion+" to version "+E.newVersion+', but the storage "'+l.storeName+'" already exists.');else throw O}}),v.onerror=function(E){E.preventDefault(),_(v.error)},v.onsuccess=function(){var E=v.result;E.onversionchange=function(A){A.target.close()},c(E),W(l)}})}function He(l){return he(l,!1)}function Wt(l){return he(l,!0)}function Tr(l,m){if(!l.db)return!0;var c=!l.db.objectStoreNames.contains(l.storeName),_=l.version<l.db.version,g=l.version>l.db.version;if(_&&(l.version!==m&&console.warn('The database "'+l.name+`" can't be downgraded from version `+l.db.version+" to version "+l.version+"."),l.version=l.db.version),g||c){if(c){var v=l.db.version+1;v>l.version&&(l.version=v)}return!0}return!1}function ri(l){return new p(function(m,c){var _=new FileReader;_.onerror=c,_.onloadend=function(g){var v=btoa(g.target.result||"");m({__local_forage_encoded_blob:!0,data:v,type:l.type})},_.readAsBinaryString(l)})}function Et(l){var m=N(atob(l.data));return h([m],{type:l.type})}function sa(l){return l&&l.__local_forage_encoded_blob}function Xu(l){var m=this,c=m._initReady().then(function(){var _=D[m._dbInfo.name];if(_&&_.dbReady)return _.dbReady});return b(c,l,l),c}function Zu(l){K(l);for(var m=D[l.name],c=m.forages,_=0;_<c.length;_++){var g=c[_];g._dbInfo.db&&(g._dbInfo.db.close(),g._dbInfo.db=null)}return l.db=null,He(l).then(function(v){return l.db=v,Tr(l)?Wt(l):v}).then(function(v){l.db=m.db=v;for(var E=0;E<c.length;E++)c[E]._dbInfo.db=v}).catch(function(v){throw ee(l,v),v})}function Ve(l,m,c,_){_===void 0&&(_=1);try{var g=l.db.transaction(l.storeName,m);c(null,g)}catch(v){if(_>0&&(!l.db||v.name==="InvalidStateError"||v.name==="NotFoundError"))return p.resolve().then(function(){if(!l.db||v.name==="NotFoundError"&&!l.db.objectStoreNames.contains(l.storeName)&&l.version<=l.db.version)return l.db&&(l.version=l.db.version+1),Wt(l)}).then(function(){return Zu(l).then(function(){Ve(l,m,c,_-1)})}).catch(c);c(v)}}function la(){return{forages:[],db:null,dbReady:null,deferredOperations:[]}}function ec(l){var m=this,c={db:null};if(l)for(var _ in l)c[_]=l[_];var g=D[c.name];g||(g=la(),D[c.name]=g),g.forages.push(m),m._initReady||(m._initReady=m.ready,m.ready=Xu);var v=[];function E(){return p.resolve()}for(var A=0;A<g.forages.length;A++){var O=g.forages[A];O!==m&&v.push(O._initReady().catch(E))}var R=g.forages.slice(0);return p.all(v).then(function(){return c.db=g.db,He(c)}).then(function(x){return c.db=x,Tr(c,m._defaultConfig.version)?Wt(c):x}).then(function(x){c.db=g.db=x,m._dbInfo=c;for(var U=0;U<R.length;U++){var F=R[U];F!==m&&(F._dbInfo.db=c.db,F._dbInfo.version=c.version)}})}function tc(l,m){var c=this;l=I(l);var _=new p(function(g,v){c.ready().then(function(){Ve(c._dbInfo,H,function(E,A){if(E)return v(E);try{var O=A.objectStore(c._dbInfo.storeName),R=O.get(l);R.onsuccess=function(){var x=R.result;x===void 0&&(x=null),sa(x)&&(x=Et(x)),g(x)},R.onerror=function(){v(R.error)}}catch(x){v(x)}})}).catch(v)});return f(_,m),_}function rc(l,m){var c=this,_=new p(function(g,v){c.ready().then(function(){Ve(c._dbInfo,H,function(E,A){if(E)return v(E);try{var O=A.objectStore(c._dbInfo.storeName),R=O.openCursor(),x=1;R.onsuccess=function(){var U=R.result;if(U){var F=U.value;sa(F)&&(F=Et(F));var q=l(F,U.key,x++);q!==void 0?g(q):U.continue()}else g()},R.onerror=function(){v(R.error)}}catch(U){v(U)}})}).catch(v)});return f(_,m),_}function nc(l,m,c){var _=this;l=I(l);var g=new p(function(v,E){var A;_.ready().then(function(){return A=_._dbInfo,G.call(m)==="[object Blob]"?M(A.db).then(function(O){return O?m:ri(m)}):m}).then(function(O){Ve(_._dbInfo,S,function(R,x){if(R)return E(R);try{var U=x.objectStore(_._dbInfo.storeName);O===null&&(O=void 0);var F=U.put(O,l);x.oncomplete=function(){O===void 0&&(O=null),v(O)},x.onabort=x.onerror=function(){var q=F.error?F.error:F.transaction.error;E(q)}}catch(q){E(q)}})}).catch(E)});return f(g,c),g}function ic(l,m){var c=this;l=I(l);var _=new p(function(g,v){c.ready().then(function(){Ve(c._dbInfo,S,function(E,A){if(E)return v(E);try{var O=A.objectStore(c._dbInfo.storeName),R=O.delete(l);A.oncomplete=function(){g()},A.onerror=function(){v(R.error)},A.onabort=function(){var x=R.error?R.error:R.transaction.error;v(x)}}catch(x){v(x)}})}).catch(v)});return f(_,m),_}function oc(l){var m=this,c=new p(function(_,g){m.ready().then(function(){Ve(m._dbInfo,S,function(v,E){if(v)return g(v);try{var A=E.objectStore(m._dbInfo.storeName),O=A.clear();E.oncomplete=function(){_()},E.onabort=E.onerror=function(){var R=O.error?O.error:O.transaction.error;g(R)}}catch(R){g(R)}})}).catch(g)});return f(c,l),c}function ac(l){var m=this,c=new p(function(_,g){m.ready().then(function(){Ve(m._dbInfo,H,function(v,E){if(v)return g(v);try{var A=E.objectStore(m._dbInfo.storeName),O=A.count();O.onsuccess=function(){_(O.result)},O.onerror=function(){g(O.error)}}catch(R){g(R)}})}).catch(g)});return f(c,l),c}function sc(l,m){var c=this,_=new p(function(g,v){if(l<0){g(null);return}c.ready().then(function(){Ve(c._dbInfo,H,function(E,A){if(E)return v(E);try{var O=A.objectStore(c._dbInfo.storeName),R=!1,x=O.openKeyCursor();x.onsuccess=function(){var U=x.result;if(!U){g(null);return}l===0||R?g(U.key):(R=!0,U.advance(l))},x.onerror=function(){v(x.error)}}catch(U){v(U)}})}).catch(v)});return f(_,m),_}function lc(l){var m=this,c=new p(function(_,g){m.ready().then(function(){Ve(m._dbInfo,H,function(v,E){if(v)return g(v);try{var A=E.objectStore(m._dbInfo.storeName),O=A.openKeyCursor(),R=[];O.onsuccess=function(){var x=O.result;if(!x){_(R);return}R.push(x.key),x.continue()},O.onerror=function(){g(O.error)}}catch(x){g(x)}})}).catch(g)});return f(c,l),c}function uc(l,m){m=C.apply(this,arguments);var c=this.config();l=typeof l!="function"&&l||{},l.name||(l.name=l.name||c.name,l.storeName=l.storeName||c.storeName);var _=this,g;if(!l.name)g=p.reject("Invalid arguments");else{var v=l.name===c.name&&_._dbInfo.db,E=v?p.resolve(_._dbInfo.db):He(l).then(function(A){var O=D[l.name],R=O.forages;O.db=A;for(var x=0;x<R.length;x++)R[x]._dbInfo.db=A;return A});l.storeName?g=E.then(function(A){if(A.objectStoreNames.contains(l.storeName)){var O=A.version+1;K(l);var R=D[l.name],x=R.forages;A.close();for(var U=0;U<x.length;U++){var F=x[U];F._dbInfo.db=null,F._dbInfo.version=O}var q=new p(function(z,ue){var oe=d.open(l.name,O);oe.onerror=function(Ne){var Yt=oe.result;Yt.close(),ue(Ne)},oe.onupgradeneeded=function(){var Ne=oe.result;Ne.deleteObjectStore(l.storeName)},oe.onsuccess=function(){var Ne=oe.result;Ne.close(),z(Ne)}});return q.then(function(z){R.db=z;for(var ue=0;ue<x.length;ue++){var oe=x[ue];oe._dbInfo.db=z,W(oe._dbInfo)}}).catch(function(z){throw(ee(l,z)||p.resolve()).catch(function(){}),z})}}):g=E.then(function(A){K(l);var O=D[l.name],R=O.forages;A.close();for(var x=0;x<R.length;x++){var U=R[x];U._dbInfo.db=null}var F=new p(function(q,z){var ue=d.deleteDatabase(l.name);ue.onerror=function(){var oe=ue.result;oe&&oe.close(),z(ue.error)},ue.onblocked=function(){console.warn('dropInstance blocked for database "'+l.name+'" until all open connections are closed')},ue.onsuccess=function(){var oe=ue.result;oe&&oe.close(),q(oe)}});return F.then(function(q){O.db=q;for(var z=0;z<R.length;z++){var ue=R[z];W(ue._dbInfo)}}).catch(function(q){throw(ee(l,q)||p.resolve()).catch(function(){}),q})})}return f(g,m),g}var cc={_driver:"asyncStorage",_initStorage:ec,_support:y(),iterate:rc,getItem:tc,setItem:nc,removeItem:ic,clear:oc,length:ac,key:sc,keys:lc,dropInstance:uc};function dc(){return typeof openDatabase=="function"}var rt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",fc="~~local_forage_type~",ua=/^~~local_forage_type~([^~]+)~/,xr="__lfsc__:",ni=xr.length,ii="arbf",oi="blob",ca="si08",da="ui08",fa="uic8",ha="si16",ma="si32",pa="ur16",va="ui32",_a="fl32",ga="fl64",ya=ni+ii.length,wa=Object.prototype.toString;function ba(l){var m=l.length*.75,c=l.length,_,g=0,v,E,A,O;l[l.length-1]==="="&&(m--,l[l.length-2]==="="&&m--);var R=new ArrayBuffer(m),x=new Uint8Array(R);for(_=0;_<c;_+=4)v=rt.indexOf(l[_]),E=rt.indexOf(l[_+1]),A=rt.indexOf(l[_+2]),O=rt.indexOf(l[_+3]),x[g++]=v<<2|E>>4,x[g++]=(E&15)<<4|A>>2,x[g++]=(A&3)<<6|O&63;return R}function ai(l){var m=new Uint8Array(l),c="",_;for(_=0;_<m.length;_+=3)c+=rt[m[_]>>2],c+=rt[(m[_]&3)<<4|m[_+1]>>4],c+=rt[(m[_+1]&15)<<2|m[_+2]>>6],c+=rt[m[_+2]&63];return m.length%3===2?c=c.substring(0,c.length-1)+"=":m.length%3===1&&(c=c.substring(0,c.length-2)+"=="),c}function hc(l,m){var c="";if(l&&(c=wa.call(l)),l&&(c==="[object ArrayBuffer]"||l.buffer&&wa.call(l.buffer)==="[object ArrayBuffer]")){var _,g=xr;l instanceof ArrayBuffer?(_=l,g+=ii):(_=l.buffer,c==="[object Int8Array]"?g+=ca:c==="[object Uint8Array]"?g+=da:c==="[object Uint8ClampedArray]"?g+=fa:c==="[object Int16Array]"?g+=ha:c==="[object Uint16Array]"?g+=pa:c==="[object Int32Array]"?g+=ma:c==="[object Uint32Array]"?g+=va:c==="[object Float32Array]"?g+=_a:c==="[object Float64Array]"?g+=ga:m(new Error("Failed to get type for BinaryArray"))),m(g+ai(_))}else if(c==="[object Blob]"){var v=new FileReader;v.onload=function(){var E=fc+l.type+"~"+ai(this.result);m(xr+oi+E)},v.readAsArrayBuffer(l)}else try{m(JSON.stringify(l))}catch(E){console.error("Couldn't convert value into a JSON string: ",l),m(null,E)}}function mc(l){if(l.substring(0,ni)!==xr)return JSON.parse(l);var m=l.substring(ya),c=l.substring(ni,ya),_;if(c===oi&&ua.test(m)){var g=m.match(ua);_=g[1],m=m.substring(g[0].length)}var v=ba(m);switch(c){case ii:return v;case oi:return h([v],{type:_});case ca:return new Int8Array(v);case da:return new Uint8Array(v);case fa:return new Uint8ClampedArray(v);case ha:return new Int16Array(v);case pa:return new Uint16Array(v);case ma:return new Int32Array(v);case va:return new Uint32Array(v);case _a:return new Float32Array(v);case ga:return new Float64Array(v);default:throw new Error("Unkown type: "+c)}}var si={serialize:hc,deserialize:mc,stringToBuffer:ba,bufferToString:ai};function Ea(l,m,c,_){l.executeSql("CREATE TABLE IF NOT EXISTS "+m.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],c,_)}function pc(l){var m=this,c={db:null};if(l)for(var _ in l)c[_]=typeof l[_]!="string"?l[_].toString():l[_];var g=new p(function(v,E){try{c.db=openDatabase(c.name,String(c.version),c.description,c.size)}catch(A){return E(A)}c.db.transaction(function(A){Ea(A,c,function(){m._dbInfo=c,v()},function(O,R){E(R)})},E)});return c.serializer=si,g}function nt(l,m,c,_,g,v){l.executeSql(c,_,g,function(E,A){A.code===A.SYNTAX_ERR?E.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[m.storeName],function(O,R){R.rows.length?v(O,A):Ea(O,m,function(){O.executeSql(c,_,g,v)},v)},v):v(E,A)},v)}function vc(l,m){var c=this;l=I(l);var _=new p(function(g,v){c.ready().then(function(){var E=c._dbInfo;E.db.transaction(function(A){nt(A,E,"SELECT * FROM "+E.storeName+" WHERE key = ? LIMIT 1",[l],function(O,R){var x=R.rows.length?R.rows.item(0).value:null;x&&(x=E.serializer.deserialize(x)),g(x)},function(O,R){v(R)})})}).catch(v)});return f(_,m),_}function _c(l,m){var c=this,_=new p(function(g,v){c.ready().then(function(){var E=c._dbInfo;E.db.transaction(function(A){nt(A,E,"SELECT * FROM "+E.storeName,[],function(O,R){for(var x=R.rows,U=x.length,F=0;F<U;F++){var q=x.item(F),z=q.value;if(z&&(z=E.serializer.deserialize(z)),z=l(z,q.key,F+1),z!==void 0){g(z);return}}g()},function(O,R){v(R)})})}).catch(v)});return f(_,m),_}function Ia(l,m,c,_){var g=this;l=I(l);var v=new p(function(E,A){g.ready().then(function(){m===void 0&&(m=null);var O=m,R=g._dbInfo;R.serializer.serialize(m,function(x,U){U?A(U):R.db.transaction(function(F){nt(F,R,"INSERT OR REPLACE INTO "+R.storeName+" (key, value) VALUES (?, ?)",[l,x],function(){E(O)},function(q,z){A(z)})},function(F){if(F.code===F.QUOTA_ERR){if(_>0){E(Ia.apply(g,[l,O,c,_-1]));return}A(F)}})})}).catch(A)});return f(v,c),v}function gc(l,m,c){return Ia.apply(this,[l,m,c,1])}function yc(l,m){var c=this;l=I(l);var _=new p(function(g,v){c.ready().then(function(){var E=c._dbInfo;E.db.transaction(function(A){nt(A,E,"DELETE FROM "+E.storeName+" WHERE key = ?",[l],function(){g()},function(O,R){v(R)})})}).catch(v)});return f(_,m),_}function wc(l){var m=this,c=new p(function(_,g){m.ready().then(function(){var v=m._dbInfo;v.db.transaction(function(E){nt(E,v,"DELETE FROM "+v.storeName,[],function(){_()},function(A,O){g(O)})})}).catch(g)});return f(c,l),c}function bc(l){var m=this,c=new p(function(_,g){m.ready().then(function(){var v=m._dbInfo;v.db.transaction(function(E){nt(E,v,"SELECT COUNT(key) as c FROM "+v.storeName,[],function(A,O){var R=O.rows.item(0).c;_(R)},function(A,O){g(O)})})}).catch(g)});return f(c,l),c}function Ec(l,m){var c=this,_=new p(function(g,v){c.ready().then(function(){var E=c._dbInfo;E.db.transaction(function(A){nt(A,E,"SELECT key FROM "+E.storeName+" WHERE id = ? LIMIT 1",[l+1],function(O,R){var x=R.rows.length?R.rows.item(0).key:null;g(x)},function(O,R){v(R)})})}).catch(v)});return f(_,m),_}function Ic(l){var m=this,c=new p(function(_,g){m.ready().then(function(){var v=m._dbInfo;v.db.transaction(function(E){nt(E,v,"SELECT key FROM "+v.storeName,[],function(A,O){for(var R=[],x=0;x<O.rows.length;x++)R.push(O.rows.item(x).key);_(R)},function(A,O){g(O)})})}).catch(g)});return f(c,l),c}function Ac(l){return new p(function(m,c){l.transaction(function(_){_.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name <> '__WebKitDatabaseInfoTable__'",[],function(g,v){for(var E=[],A=0;A<v.rows.length;A++)E.push(v.rows.item(A).name);m({db:l,storeNames:E})},function(g,v){c(v)})},function(_){c(_)})})}function Sc(l,m){m=C.apply(this,arguments);var c=this.config();l=typeof l!="function"&&l||{},l.name||(l.name=l.name||c.name,l.storeName=l.storeName||c.storeName);var _=this,g;return l.name?g=new p(function(v){var E;l.name===c.name?E=_._dbInfo.db:E=openDatabase(l.name,"","",0),l.storeName?v({db:E,storeNames:[l.storeName]}):v(Ac(E))}).then(function(v){return new p(function(E,A){v.db.transaction(function(O){function R(q){return new p(function(z,ue){O.executeSql("DROP TABLE IF EXISTS "+q,[],function(){z()},function(oe,Ne){ue(Ne)})})}for(var x=[],U=0,F=v.storeNames.length;U<F;U++)x.push(R(v.storeNames[U]));p.all(x).then(function(){E()}).catch(function(q){A(q)})},function(O){A(O)})})}):g=p.reject("Invalid arguments"),f(g,m),g}var Cc={_driver:"webSQLStorage",_initStorage:pc,_support:dc(),iterate:_c,getItem:vc,setItem:gc,removeItem:yc,clear:wc,length:bc,key:Ec,keys:Ic,dropInstance:Sc};function Oc(){try{return typeof localStorage!="undefined"&&"setItem"in localStorage&&!!localStorage.setItem}catch(l){return!1}}function Aa(l,m){var c=l.name+"/";return l.storeName!==m.storeName&&(c+=l.storeName+"/"),c}function Rc(){var l="_localforage_support_test";try{return localStorage.setItem(l,!0),localStorage.removeItem(l),!1}catch(m){return!0}}function kc(){return!Rc()||localStorage.length>0}function Tc(l){var m=this,c={};if(l)for(var _ in l)c[_]=l[_];return c.keyPrefix=Aa(l,m._defaultConfig),kc()?(m._dbInfo=c,c.serializer=si,p.resolve()):p.reject()}function xc(l){var m=this,c=m.ready().then(function(){for(var _=m._dbInfo.keyPrefix,g=localStorage.length-1;g>=0;g--){var v=localStorage.key(g);v.indexOf(_)===0&&localStorage.removeItem(v)}});return f(c,l),c}function Lc(l,m){var c=this;l=I(l);var _=c.ready().then(function(){var g=c._dbInfo,v=localStorage.getItem(g.keyPrefix+l);return v&&(v=g.serializer.deserialize(v)),v});return f(_,m),_}function Pc(l,m){var c=this,_=c.ready().then(function(){for(var g=c._dbInfo,v=g.keyPrefix,E=v.length,A=localStorage.length,O=1,R=0;R<A;R++){var x=localStorage.key(R);if(x.indexOf(v)===0){var U=localStorage.getItem(x);if(U&&(U=g.serializer.deserialize(U)),U=l(U,x.substring(E),O++),U!==void 0)return U}}});return f(_,m),_}function Dc(l,m){var c=this,_=c.ready().then(function(){var g=c._dbInfo,v;try{v=localStorage.key(l)}catch(E){v=null}return v&&(v=v.substring(g.keyPrefix.length)),v});return f(_,m),_}function Nc(l){var m=this,c=m.ready().then(function(){for(var _=m._dbInfo,g=localStorage.length,v=[],E=0;E<g;E++){var A=localStorage.key(E);A.indexOf(_.keyPrefix)===0&&v.push(A.substring(_.keyPrefix.length))}return v});return f(c,l),c}function Uc(l){var m=this,c=m.keys().then(function(_){return _.length});return f(c,l),c}function Mc(l,m){var c=this;l=I(l);var _=c.ready().then(function(){var g=c._dbInfo;localStorage.removeItem(g.keyPrefix+l)});return f(_,m),_}function Bc(l,m,c){var _=this;l=I(l);var g=_.ready().then(function(){m===void 0&&(m=null);var v=m;return new p(function(E,A){var O=_._dbInfo;O.serializer.serialize(m,function(R,x){if(x)A(x);else try{localStorage.setItem(O.keyPrefix+l,R),E(v)}catch(U){(U.name==="QuotaExceededError"||U.name==="NS_ERROR_DOM_QUOTA_REACHED")&&A(U),A(U)}})})});return f(g,c),g}function Jc(l,m){if(m=C.apply(this,arguments),l=typeof l!="function"&&l||{},!l.name){var c=this.config();l.name=l.name||c.name,l.storeName=l.storeName||c.storeName}var _=this,g;return l.name?g=new p(function(v){l.storeName?v(Aa(l,_._defaultConfig)):v(l.name+"/")}).then(function(v){for(var E=localStorage.length-1;E>=0;E--){var A=localStorage.key(E);A.indexOf(v)===0&&localStorage.removeItem(A)}}):g=p.reject("Invalid arguments"),f(g,m),g}var Fc={_driver:"localStorageWrapper",_initStorage:Tc,_support:Oc(),iterate:Pc,getItem:Lc,setItem:Bc,removeItem:Mc,clear:xc,length:Uc,key:Dc,keys:Nc,dropInstance:Jc},Gc=function(m,c){return m===c||typeof m=="number"&&typeof c=="number"&&isNaN(m)&&isNaN(c)},jc=function(m,c){for(var _=m.length,g=0;g<_;){if(Gc(m[g],c))return!0;g++}return!1},Sa=Array.isArray||function(l){return Object.prototype.toString.call(l)==="[object Array]"},zt={},Ca={},It={INDEXEDDB:cc,WEBSQL:Cc,LOCALSTORAGE:Fc},Hc=[It.INDEXEDDB._driver,It.WEBSQL._driver,It.LOCALSTORAGE._driver],Lr=["dropInstance"],li=["clear","getItem","iterate","key","keys","length","removeItem","setItem"].concat(Lr),Vc={description:"",driver:Hc.slice(),name:"localforage",size:4980736,storeName:"keyvaluepairs",version:1};function $c(l,m){l[m]=function(){var c=arguments;return l.ready().then(function(){return l[m].apply(l,c)})}}function ui(){for(var l=1;l<arguments.length;l++){var m=arguments[l];if(m)for(var c in m)m.hasOwnProperty(c)&&(Sa(m[c])?arguments[0][c]=m[c].slice():arguments[0][c]=m[c])}return arguments[0]}var qc=function(){function l(m){s(this,l);for(var c in It)if(It.hasOwnProperty(c)){var _=It[c],g=_._driver;this[c]=g,zt[g]||this.defineDriver(_)}this._defaultConfig=ui({},Vc),this._config=ui({},this._defaultConfig,m),this._driverSet=null,this._initDriver=null,this._ready=!1,this._dbInfo=null,this._wrapLibraryMethodsWithReady(),this.setDriver(this._config.driver).catch(function(){})}return l.prototype.config=function(c){if((typeof c=="undefined"?"undefined":a(c))==="object"){if(this._ready)return new Error("Can't call config() after localforage has been used.");for(var _ in c){if(_==="storeName"&&(c[_]=c[_].replace(/\W/g,"_")),_==="version"&&typeof c[_]!="number")return new Error("Database version must be a number.");this._config[_]=c[_]}return"driver"in c&&c.driver?this.setDriver(this._config.driver):!0}else return typeof c=="string"?this._config[c]:this._config},l.prototype.defineDriver=function(c,_,g){var v=new p(function(E,A){try{var O=c._driver,R=new Error("Custom driver not compliant; see https://mozilla.github.io/localForage/#definedriver");if(!c._driver){A(R);return}for(var x=li.concat("_initStorage"),U=0,F=x.length;U<F;U++){var q=x[U],z=!jc(Lr,q);if((z||c[q])&&typeof c[q]!="function"){A(R);return}}var ue=function(){for(var Yt=function(zc){return function(){var Yc=new Error("Method "+zc+" is not implemented by the current driver"),Oa=p.reject(Yc);return f(Oa,arguments[arguments.length-1]),Oa}},ci=0,Wc=Lr.length;ci<Wc;ci++){var di=Lr[ci];c[di]||(c[di]=Yt(di))}};ue();var oe=function(Yt){zt[O]&&console.info("Redefining LocalForage driver: "+O),zt[O]=c,Ca[O]=Yt,E()};"_support"in c?c._support&&typeof c._support=="function"?c._support().then(oe,A):oe(!!c._support):oe(!0)}catch(Ne){A(Ne)}});return b(v,_,g),v},l.prototype.driver=function(){return this._driver||null},l.prototype.getDriver=function(c,_,g){var v=zt[c]?p.resolve(zt[c]):p.reject(new Error("Driver not found."));return b(v,_,g),v},l.prototype.getSerializer=function(c){var _=p.resolve(si);return b(_,c),_},l.prototype.ready=function(c){var _=this,g=_._driverSet.then(function(){return _._ready===null&&(_._ready=_._initDriver()),_._ready});return b(g,c,c),g},l.prototype.setDriver=function(c,_,g){var v=this;Sa(c)||(c=[c]);var E=this._getSupportedDrivers(c);function A(){v._config.driver=v.driver()}function O(U){return v._extend(U),A(),v._ready=v._initStorage(v._config),v._ready}function R(U){return function(){var F=0;function q(){for(;F<U.length;){var z=U[F];return F++,v._dbInfo=null,v._ready=null,v.getDriver(z).then(O).catch(q)}A();var ue=new Error("No available storage method found.");return v._driverSet=p.reject(ue),v._driverSet}return q()}}var x=this._driverSet!==null?this._driverSet.catch(function(){return p.resolve()}):p.resolve();return this._driverSet=x.then(function(){var U=E[0];return v._dbInfo=null,v._ready=null,v.getDriver(U).then(function(F){v._driver=F._driver,A(),v._wrapLibraryMethodsWithReady(),v._initDriver=R(E)})}).catch(function(){A();var U=new Error("No available storage method found.");return v._driverSet=p.reject(U),v._driverSet}),b(this._driverSet,_,g),this._driverSet},l.prototype.supports=function(c){return!!Ca[c]},l.prototype._extend=function(c){ui(this,c)},l.prototype._getSupportedDrivers=function(c){for(var _=[],g=0,v=c.length;g<v;g++){var E=c[g];this.supports(E)&&_.push(E)}return _},l.prototype._wrapLibraryMethodsWithReady=function(){for(var c=0,_=li.length;c<_;c++)$c(this,li[c])},l.prototype.createInstance=function(c){return new l(c)},l}(),Kc=new qc;i.exports=Kc},{3:3}]},{},[4])(4)})});var xs=mi(hn=>{"use strict";j();rr();ot();var no=(e,t)=>{window.parent&&window.parent.postMessage({type:e,data:t},"*")},io=_e(),_f=ze("levelFinished",{paramsSchema:J.tuple(J.object({levelId:J.or(J.string(),J.number()),duration:J.number().optional(),rating:J.number().optional(),score:J.number().optional(),variation:J.string().optional()})),implement:e=>L(hn,null,function*(){let{levelId:t,duration:r,rating:n,score:i,variation:o}=e;ke.info("onLevelFinished",r,n,i,o),no("JOLIBOX_GAME_TASK_LEVEL_FINISHED",{levelId:t,duration:r,rating:n,score:i,variation:o}),yield Promise.all([Ke.reporter({event:"COMPLETE_GAME_LEVEL",extraParams:{inGameInfo:{levelId:t,duration:r,rating:n,score:i}}}),Ke.tracker("LevelFinished",{levelId:t,duration:r,rating:n,score:i,variation:o})])})}),gf=ze("gamePlayEnded",{paramsSchema:J.tuple(J.object({duration:J.number().optional(),rating:J.number().optional(),score:J.number(),variation:J.string().optional()})),implement:e=>L(hn,null,function*(){let{duration:t,rating:r,score:n,variation:i}=e;ke.info("onGamePlayEnded",t,r,n,i),no("JOLIBOX_GAME_TASK_GAME_PLAY_ENDED",{duration:t,rating:r,score:n,variation:i}),yield Promise.all([Ke.tracker("GamePlayEnded",{duration:t,rating:r,score:n,variation:i}),Ke.reporter({event:"GAME_ENDED",extraParams:{inGameInfo:{duration:t,rating:r,score:n}}})])})}),yf=ze("levelUpgrade",{paramsSchema:J.tuple(J.object({levelId:J.or(J.string(),J.number()),name:J.string().optional()})),implement:r=>L(hn,[r],function*({levelId:e,name:t}){ke.info("onLevelUpgrade",e,t),no("JOLIBOX_GAME_TASK_LEVEL_UPGRADE",{levelId:e,name:t}),yield Promise.all([Ke.tracker("LevelUpgrade",{name:t,levelId:e}),Ke.reporter({event:"GAME_LEVEL_UP",extraParams:{inGameInfo:{levelId:e,levelName:t}}})])})});io.registerCommand("TaskTrackerSDK.levelFinished",_f);io.registerCommand("TaskTrackerSDK.gamePlayEnded",gf);io.registerCommand("TaskTrackerSDK.levelUpgrade",yf);ge("TaskTrackerSDK.onLevelFinished",{version:"1.1.25",properties:{params:{levelId:"1.1.25",duration:"1.1.25",rating:"1.1.25",score:"1.1.25",variation:"1.1.50"}}});ge("TaskTrackerSDK.onGamePlayEnded",{version:"1.1.25",properties:{params:{duration:"1.1.25",rating:"1.1.25",score:"1.1.25",variation:"1.1.50"}}});ge("TaskTrackerSDK.onLevelUpgrade",{version:"1.1.25",properties:{params:{levelId:"1.1.25",name:"1.1.25"}}})});var pt,kt,Ls,oo,wf,mn,ao=Z(()=>{"use strict";pt=(e,t)=>{var r;window.dispatchEvent(new CustomEvent(e,{detail:t})),(r=window.parent)==null||r.postMessage({type:e,data:{detail:t}},"*")},kt=new Map,Ls=e=>{if(e.source===window.parent)try{let t=e.data;if(t&&t.type){let r=kt.get(t.type);r&&r.forEach(n=>{try{n(t.data)}catch(i){console.warn("Callback execution failed:",i)}})}}catch(t){console.warn("Failed to parse message:",t)}},oo=!1,wf=()=>{oo||(window.addEventListener("message",Ls),oo=!0)},mn=(e,t)=>{wf(),kt.has(e)||kt.set(e,new Set);let r=kt.get(e);return r.add(t),()=>{r.delete(t),r.size===0&&kt.delete(e),kt.size===0&&(window.removeEventListener("message",Ls),oo=!1)}}});var pn,vn,_n,gn,yn,Ps,wn,bn,Tt,bf,ae,xt,Lt,Ue=Z(()=>{"use strict";j();pn="UNLOCK_OPTIONS_CHANGED",vn="INVOKE_PAYMENT",_n="ON_PAYMENT_RESULT",gn="ON_USE_MODAL_EVENT",yn="ON_USE_MODAL_RESULT",Ps="ON_USE_MODAL_FREQUENCY",wn="ON_USE_UNLOGIN_MODAL_EVENT",bn="INVOKE_UNLOGIN_MODAL_EVENT",Tt=new Fe,bf=()=>({on:Tt.on.bind(Tt),off:Tt.off.bind(Tt),emit:Tt.emit.bind(Tt)}),ae=bf(),xt={charge:{dailyMaxPopUps:2,minInterval:8*60*60*1e3},useJolicoin:{dailyMaxPopUps:2,minInterval:8*60*60*1e3}},Lt={show:!0,minInterval:8*60*60*1e3}});var Pu=mi(ra=>{"use strict";me();Ue();ao();j();var Lu={USE_COIN:"CONFIRM",ADS:"FAILED",CANCEL:"CANCEL"};mn("ON_JOLIBOX_JOLI_COIN_USE_RESULT",e=>{console.log("onCustomEvent ON_JOLIBOX_JOLI_COIN_USE_RESULT",Lu[e.result],e.result),ae.emit(yn,{useModalResult:Lu[e.result]})});ae.on(gn,(e,t)=>{var r;e=="ADS-JOLI_GEM"||e=="JOLI_GEM"||pt("JOLIBOX_JOLI_COIN_USE_EVENT",{JOLI_COIN:{quantity:t.quantity,balance:t.userCurrency.balance,enableAutoDeduct:t.enableAutoDeduct},type:e,sequenceId:(r=t.sequenceId)!=null?r:it()})});mn("ON_JOLIBOX_TOPUP_JOLI_COIN_RESULT",e=>{ae.emit(_n,{paymentResult:e.result=="ADS"?"FAILED":e.result,userJoliCoin:e.joliCoin,currency:"JOLI_COIN"})});ae.on(vn,(e,t)=>L(ra,null,function*(){var r;e=="ADS-JOLI_GEM"||e=="JOLI_GEM"||pt("JOLIBOX_TOPUP_EVENT",{JOLI_COIN:{quantity:t.quantity,balance:t.userCurrency.balance,enableAutoDeduct:t.enableAutoDeduct},type:e,sequenceId:(r=t.sequenceId)!=null?r:it()})}));mn("ON_JOLIBOX_JOLI_UNLOGIN_MODAL_RESULT_EVENT",e=>{var t,r,n,i,o;ae.emit(wn,{result:e.result=="ADS"?"FAILED":e.result,rewards:{claimedRewardValue:(i=(n=(r=(t=e.extra)==null?void 0:t.firstLogin)==null?void 0:r.reward)==null?void 0:n.rewardValue)!=null?i:0,isFirstLogin:(o=e.isFirstLogin)!=null?o:!1}}),e.result==="SUCCESS"&&P.onEnvConfigChanged({hostUserInfo:{isLogin:!0}})});ae.on(bn,e=>L(ra,null,function*(){e=="ADS-JOLI_GEM"||e=="JOLI_GEM"||pt("JOLIBOX_JOLI_UNLOGIN_MODAL_EVENT",{sequenceId:it(),type:e})}))});ot();me();rr();j();var Cs=_e(),ef="env",tf="getSystemInfoSync",rf=()=>{var i,o,a,s;let e={system:P.deviceInfo.system,platform:P.deviceInfo.platform.toLowerCase(),brand:P.deviceInfo.brand,pixelRatio:P.deviceInfo.pixelRatio,language:P.deviceInfo.lang,version:P.sdkInfo.jssdkVersion,appName:(i=P.hostInfo)==null?void 0:i.appName,SDKVersion:P.sdkInfo.nativeSDKVersion},t=(o=P.hostInfo)==null?void 0:o.version;t&&(e=Re(Y({},e),{version:t}));let r=(a=P.hostInfo)==null?void 0:a.appName;r&&(e=Re(Y({},e),{appName:r}));let n=(s=P.sdkInfo)==null?void 0:s.jssdkVersion;return n&&(e=Re(Y({},e),{SDKVersion:n})),e},nf=mt(tf,{implement:rf}),of=mt(ef,{implement:()=>Re(Y({},P.hostInfo),{sdkInfo:P.sdkInfo,platform:P.platform,deviceInfo:P.deviceInfo})});Cs.registerCommand("API.env",of);Cs.registerCommand("API.getSystemInfoSync",nf);ge("env",{version:"1.0.0"});ge("getSystemInfoSync",{version:"1.0.0"});j();rr();$e();ot();var af="onJoliboxShow",sf="onJoliboxHide",lf="onReady",Zi=_e(),eo=Wa(Te),Xi=!0,nr=!0,un=0,cn=$i;function uf(){let e=Date.now();if(e-un<100)return;un=e;let t=document.visibilityState==="visible";t!==Xi&&(Xi=t,cn.emit("visible",Xi))}function Os(e){let t=Date.now();t-un<100||(un=t,e==="focus"&&!nr?nr=!0:e==="blur"&&nr&&(nr=!1),cn.emit("visible",nr))}document.addEventListener("visibilitychange",uf);window.addEventListener("focus",()=>Os("focus"));window.addEventListener("blur",()=>Os("blur"));var cf=mt(af,{paramsSchema:J.tuple(J.function()),implement(e){let t=eo(e);cn.on("visible",r=>{r&&t()})}}),df=mt(sf,{paramsSchema:J.tuple(J.function()),implement(e){let t=eo(e);cn.on("visible",r=>{!r&&t()})}}),ff=mt(lf,{paramsSchema:J.tuple(J.function()),implement(e){let t=eo(e);ft.on("LifecycleEvent.onReady",r=>{t(r)})}});Zi.registerCommand("LifecycleSDK.onReady",ff);Zi.registerCommand("LifecycleSDK.onJoliboxShow",cf);Zi.registerCommand("LifecycleSDK.onJoliboxHide",df);ge("lifeCycle.onReady",{version:"1.0.0"});ge("lifeCycle.onJoliboxShow",{version:"1.0.0"});ge("lifeCycle.onJoliboxHide",{version:"1.0.0"});rr();j();Ot();me();var Ts=pi(ks());var dn=_e(),ro=class{constructor(){this.httpClient=Be.create({baseUrl:Ct(P.testMode)});this.getGameId=()=>P.mpId;this.getItem=t=>L(this,null,function*(){let{code:r,data:n,message:i}=yield this.httpClient.get(`/api/games/user-storage/${this.gameId}`,{query:{key:t}}),o=n==null?void 0:n.value,a=i;return r!=="SUCCESS"&&(o=yield this.gameStore.getItem(t),console.info("[SDK] cloud storage getItem failed, read from localstorage",o),a+="fallback to localstorage"),{code:r,message:a,data:o&&o!=="undefined"?o:null}});this.setItem=(t,r)=>L(this,null,function*(){let n=typeof r=="string"?r:String(r),{code:i,message:o}=yield this.httpClient.post(`/api/games/user-storage/${this.gameId}`,{data:{key:t,value:n}});return yield this.gameStore.setItem(t,n),{code:i,message:o}});this.removeItem=t=>L(this,null,function*(){yield this.gameStore.removeItem(t);let{code:r,message:n}=yield this.httpClient.post(`/api/games/user-storage/${this.gameId}/remove`,{data:{key:t}});return{code:r,message:n}});this.clear=()=>L(this,null,function*(){yield this.gameStore.clear();let{code:t,message:r}=yield this.httpClient.post(`/api/games/user-storage/${this.gameId}/clear`,{});return{code:t,message:r}});this.gameId=this.getGameId(),this.gameStore=Ts.default.createInstance({name:this.gameId.length?this.gameId:"default"})}},fn=new ro,hf=ze("getLocalStorage",{paramsSchema:J.tuple(J.string()),implement(e){return L(this,null,function*(){return yield fn.getItem(e)})}});dn.registerCommand("StorageSDK.getItem",hf);ge("storage.getItem",{version:"1.0.0",properties:{key:"1.0.0",value:"1.0.0"}});var mf=ze("setStorage",{paramsSchema:J.tuple(J.string(),J.or(J.string(),J.boolean(),J.number())),implement(e,t){return L(this,null,function*(){return yield fn.setItem(e,t)})}});dn.registerCommand("StorageSDK.setItem",mf);ge("storage.setItem",{version:"1.0.0",properties:{key:"1.0.0",value:"1.0.0"}});var pf=ze("removeStorage",{paramsSchema:J.tuple(J.string()),implement(e){return L(this,null,function*(){return yield fn.removeItem(e)})}});dn.registerCommand("StorageSDK.removeItem",pf);ge("storage.removeItem",{version:"1.0.0",properties:{key:"1.0.0"}});var vf=ze("clearStorage",{implement(){return L(this,null,function*(){return yield fn.clear()})}});dn.registerCommand("StorageSDK.clear",vf);ge("storage.clear",{version:"1.0.0"});var _b=pi(xs());ot();j();Ot();ao();me();Ue();var Ds=P.testMode;function Ns(){let e=new Map,t,r;return{registerRewardHandler(i,o){e.set(i,o)},handleReward(i,...o){return L(this,null,function*(){return yield i.reduce((s,u)=>L(this,null,function*(){let d=yield s;if(d===!0)return!0;Ds&&console.log(`handleReward ${u}`);let y=e.get(u),h=y?yield y(...o):d;return Ds&&console.log(`handleReward ${u} ${h}`),h}),Promise.resolve(!1))})},registerRewardsFetcher(i){return L(this,null,function*(){t=(...o)=>L(this,null,function*(){try{return yield i(...o)}catch(a){return console.error("getRewardOptions error:",a),["ADS"]}})})},registerRewardFrequencyConfigFetcher(i){return L(this,null,function*(){r=(...o)=>L(this,null,function*(){try{return yield i(...o)}catch(a){return console.error("getRewardOptions error:",a),{joliCoinUseAndCharge:xt,loginGuide:Lt}}})})},getRewardsTypes(...i){return L(this,null,function*(){return t?yield t(...i):["ADS"]})},getRewardFrequencyConfig(...i){return L(this,null,function*(){return r?yield r(...i):{joliCoinUseAndCharge:xt,loginGuide:Lt}})}}}Ue();j();var Ef=()=>(e,t)=>{let r={JOLI_GEM:3,JOLI_GEM_ONLY:3,JOLI_COIN:2,JOLI_COIN_ONLY:2,ADS:1};return r[t]-r[e]},If=e=>e.length?e.includes("JOLI_GEM")&&e.length<=1?["JOLI_GEM_ONLY"]:e.includes("JOLI_COIN")&&e.length<=1?["JOLI_COIN_ONLY"]:e.sort(Ef()):["ADS"],Us=e=>{e.registerRewardsFetcher(t=>L(void 0,null,function*(){var n,i,o,a,s;let r=["ADS"];try{let u=yield t.post("/api/games/unlock-options",{});if(u.code!=="SUCCESS")return r;console.log("-----res fetch reward-----",u),ae.emit(pn,{options:((n=u.data)==null?void 0:n.unlockOptions)||[],userJoliCoin:((i=u.extra)==null?void 0:i.joliCoin)||{balance:0,enableAutoDeduct:!1},userGem:((o=u.extra)==null?void 0:o.joliGem)||{balance:0,enableAutoDeduct:!1}});let d=((s=(a=u.data)==null?void 0:a.unlockOptions)==null?void 0:s.map(y=>y.type))||Array.from(r);return If(d)}catch(u){return console.error("getRewardOptions error:",u),r}}))},Ms=e=>{e.registerRewardFrequencyConfigFetcher(t=>L(void 0,null,function*(){var n,i,o,a;let r=yield t.get("/api/fe-configs/web-common/global-config",{});return ae.emit(Ps,{joliCoinUseAndCharge:((n=r.data)==null?void 0:n.joliCoinUseAndCharge)||xt,loginGuide:((i=r.data)==null?void 0:i.loginGuide)||Lt}),r.data&&ft.emit("onGlobalConfigChanged",{globalConfig:r.data}),{joliCoinUseAndCharge:((o=r.data)==null?void 0:o.joliCoinUseAndCharge)||xt,loginGuide:((a=r.data)==null?void 0:a.loginGuide)||Lt}}))};var Bs=e=>t=>L(void 0,null,function*(){try{console.log("trigger @jolibox/ads reward",t),yield e.adBreak(t)}catch(r){console.error("-----createAdsRewardHandler error-----",r)}return!0});Ue();function at(e,t){let r=null,n=null,i=null,o=()=>{if(i){r=Promise.resolve(i);return}r=new Promise(a=>{n=a})};return o(),e.on(t,(...a)=>{let s=a[0];i=s,n&&(n(s),n=null)}),{getData:()=>(r||o(),r),getCachedData:()=>i,clearCache:()=>{i=null,r=null},getFreshData:()=>(i=null,r=null,o(),r),updateData:a=>{if(i)return i=Y(Y({},i),a),r=Promise.resolve(i),n&&(n(i),n=null),i}}}Ue();var Me=at(ae,pn);me();j();var so={JOLI_COIN:{balanceEndpoint:"/api/joli-coin/balance",balanceDetailEndpoint:"/api/joli-coin/balance-detail",unlockEndpoint:"/api/joli-coin/unlock",unlockType:"JOLI_COIN"},GEM:{balanceEndpoint:"/api/joli-gem/balance",balanceDetailEndpoint:"/api/joli-gem/balance-detail",unlockEndpoint:"/api/joli-gem/unlock",unlockType:"GEM"}};j();var st=_e();Ue();Ue();var Js=e=>L(void 0,null,function*(){return(yield e.get("/api/joli-coin/balance",{query:{type:"JOLI_COIN"}})).data});var Fs=e=>L(void 0,null,function*(){return(yield e.get("/api/joli-gem/balance",{query:{type:"GEM"}})).data});var ir={JOLI_COIN:{fetchBalance:Js,getQuantity:e=>{var t,r,n;return(n=(r=(t=e==null?void 0:e.options)==null?void 0:t.find(i=>i.type==="JOLI_COIN"))==null?void 0:r.joliCoinChoices[0].joliCoinQuantity)!=null?n:0},getCurrentUser:e=>{var t;return(t=e==null?void 0:e.userJoliCoin)!=null?t:{balance:0,enableAutoDeduct:!1}},createUpdatedUser:(e,t)=>({balance:e,enableAutoDeduct:t}),getUpdateKey:()=>"userJoliCoin",isEnough:(e,t)=>{var r,n;return(n=(r=e==null?void 0:e.options)==null?void 0:r.some(i=>i.type==="JOLI_COIN"&&i.joliCoinChoices.some(o=>{var a;return o.joliCoinQuantity<=((a=t==null?void 0:t.balance)!=null?a:0)})))!=null?n:!1}},JOLI_GEM:{fetchBalance:Fs,getQuantity:e=>{var t,r,n,i;return(i=(n=(r=(t=e==null?void 0:e.options)==null?void 0:t.find(o=>o.type==="JOLI_GEM"))==null?void 0:r.joliGemChoice)==null?void 0:n.joliGemQuantity)!=null?i:0},getCurrentUser:e=>{var t;return(t=e==null?void 0:e.userGem)!=null?t:{balance:0,enableAutoDeduct:!1}},createUpdatedUser:(e,t)=>({balance:e,enableAutoDeduct:t}),getUpdateKey:()=>"userGem",isEnough:(e,t)=>{var n,i,o;let r=e==null?void 0:e.options.find(a=>a.type==="JOLI_GEM");return r?((i=(n=r.joliGemChoice)==null?void 0:n.joliGemQuantity)!=null?i:0)<=((o=t==null?void 0:t.balance)!=null?o:0):!1}}};var En=(e,t,r)=>{let{showUnlockWithCurrencyModal:n}=r;st.registerCommand(`Rewards.${e}.useJolicoin`,()=>L(void 0,null,function*(){let i=yield Me.getData(),o=ir[t],a=o.getCurrentUser(i),s=o.getQuantity(i),u=!!(a!=null&&a.enableAutoDeduct);return console.log("-----unlockOptions usemodal-----",i,u,s),(yield n({enableAutoDeduct:u,userCurrency:a,quantity:s,currency:t}))!=="CONFIRM"?{result:"FAILED"}:{result:"SUCCESS"}}))},vt=(e,t)=>r=>L(void 0,null,function*(){let n=at(ae,yn);return ae.emit(gn,e,{enableAutoDeduct:r.enableAutoDeduct,userCurrency:r.userCurrency,quantity:r.quantity,currency:r.currency,confirmButtonText:t.confirmButtonText,cancelButtonText:t.cancelButtonText}),(yield n.getFreshData()).useModalResult});Ue();Ue();var In=(e,t,r)=>{let{httpClient:n,initiateAndAwaitPayment:i}=r;st.registerCommand(`Rewards.${e}.usePayment`,()=>L(void 0,null,function*(){var p;let o=yield Me.getData(),a=ir[t],s=yield a.fetchBalance(n),u=a.getQuantity(o),d=a.getCurrentUser(o),y=a.createUpdatedUser((p=s==null?void 0:s.balance)!=null?p:0,d.enableAutoDeduct),h=a.getUpdateKey();return Me.updateData({[h]:y}),console.log("-----unlockOptions payment-----",o,y,u,t),a.isEnough(o,y)?{result:"CONTINUE"}:{result:(yield i({userCurrency:y,currencyQuantity:u,currency:t}))==="SUCCESS"?"SUCCESS":"FAILED"}}))},_t=(e,t)=>r=>L(void 0,null,function*(){let n=at(ae,_n);return ae.emit(vn,e,{userCurrency:r.userCurrency,quantity:r.currencyQuantity,currency:r.currency,enableAutoDeduct:r.userCurrency.enableAutoDeduct,confirmButtonText:t.confirmButtonText,cancelButtonText:t.cancelButtonText}),(yield n.getFreshData()).paymentResult});me();Ue();Ue();j();var gt=(e,t)=>r=>L(void 0,null,function*(){let n=at(ae,wn);return ae.emit(bn,e,{confirmButtonText:t.confirmButtonText,cancelButtonText:t.cancelButtonText,currency:r}),yield n.getFreshData()});var Sf=(e,t,r,{handlers:{handleUnlockSuccess:n,handleUnlockFailed:i,unlockOptionsHandler:o,initiateAndAwaitPayment:a,showUnlockWithCurrencyModal:s,showUnloginModal:u}})=>{In(e,"JOLI_COIN",{httpClient:t,initiateAndAwaitPayment:a}),En(e,"JOLI_COIN",{showUnlockWithCurrencyModal:s});let d=[`Rewards.${e}.usePayment`,`Rewards.${e}.useJolicoin`];return y=>L(void 0,null,function*(){var h,p,f;try{let b=!0;for(let w of d){let k=yield st.executeCommand(w);if(b=b&&k.result!=="FAILED",k.result!=="CONTINUE")break}if(!b)return i==null||i(y),!1;let I=so[r],C=yield t.post(I.unlockEndpoint,{data:{type:"GAME_REWARD",reqId:`${it()}-${P.mpType}-${Date.now()}`,gameInfo:{gameId:P.mpId}}});if(console.log("-----unlockWithCurrency request result-----",C),C.code=="SUCCESS"){try{(p=y.adBreakDone)==null||p.call(y,{breakType:y.type,breakName:"name"in y&&(h=y.name)!=null?h:"",breakFormat:"reward",breakStatus:"viewed"}),"adViewed"in y&&((f=y.adViewed)==null||f.call(y))}catch(w){console.error("-----unlockWithJolicoin adBreakDone error-----",w)}return n==null||n({quantity:C.data.quantity,balance:C.data.balance}),!0}return i==null||i(y),!1}catch(b){if(console.info("JolicoinRewardHandler error:",b),b instanceof Error&&b.message=="CANCEL")throw b;return i==null||i(y),!1}finally{o.clearCache()}})},An=(e,t,r)=>Sf(e,t,"JOLI_COIN",r);var Gs=(e,{onUnlockSuccess:t,onUnlockFailed:r})=>{let n=()=>{r==null||r()},i=vt("ADS-JOLI_COIN",{confirmButtonText:"jolicoin.useJolicoin",cancelButtonText:"jolicoin.noWatchAds"}),o=_t("ADS-JOLI_COIN",{confirmButtonText:"jolicoin.payAndUnlock",cancelButtonText:"jolicoin.noWatchAds"}),a=gt("ADS-JOLI_COIN",{confirmButtonText:"loginGuide.login",cancelButtonText:"loginGuide.noWatchAds"});return An("ADS-JOLI_COIN",e,{handlers:{handleUnlockSuccess:t,handleUnlockFailed:n,unlockOptionsHandler:Me,initiateAndAwaitPayment:o,showUnlockWithCurrencyModal:i,showUnloginModal:a}})};var js=(e,{onUnlockSuccess:t,onUnlockFailed:r})=>{let n=u=>{var d;r==null||r(),(d=u.adBreakDone)==null||d.call(u,{breakType:u.type,breakFormat:u.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"})},i=vt("JOLI_COIN",{confirmButtonText:"jolicoin.useJolicoin",cancelButtonText:"jolicoin.noThanks"}),o=_t("JOLI_COIN",{confirmButtonText:"jolicoin.payAndUnlock",cancelButtonText:"jolicoin.noThanks"}),a=gt("JOLI_COIN",{confirmButtonText:"loginGuide.login",cancelButtonText:"loginGuide.noThanks"});return An("JOLI_COIN",e,{handlers:{handleUnlockSuccess:t,handleUnlockFailed:n,unlockOptionsHandler:Me,initiateAndAwaitPayment:o,showUnlockWithCurrencyModal:i,showUnloginModal:a}})};me();j();var Ye=Ns();Us(Ye);Ms(Ye);var Rn,B,Ks,co,yt,Hs,Ws,zs,Ys,fo,lo,uo,Of,or={},Qs=[],Rf=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,ar=Array.isArray;function Qe(e,t){for(var r in t)e[r]=t[r];return e}function ho(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function sr(e,t,r){var n,i,o,a={};for(o in t)o=="key"?n=t[o]:o=="ref"?i=t[o]:a[o]=t[o];if(arguments.length>2&&(a.children=arguments.length>3?Rn.call(arguments,2):r),typeof e=="function"&&e.defaultProps!=null)for(o in e.defaultProps)a[o]===void 0&&(a[o]=e.defaultProps[o]);return Cn(e,a,n,i,null)}function Cn(e,t,r,n,i){var o={type:e,props:t,key:r,ref:n,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:i==null?++Ks:i,__i:-1,__u:0};return i==null&&B.vnode!=null&&B.vnode(o),o}function lt(e){return e.children}function Le(e,t){this.props=e,this.context=t}function Pt(e,t){if(t==null)return e.__?Pt(e.__,e.__i+1):null;for(var r;t<e.__k.length;t++)if((r=e.__k[t])!=null&&r.__e!=null)return r.__e;return typeof e.type=="function"?Pt(e):null}function Xs(e){var t,r;if((e=e.__)!=null&&e.__c!=null){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if((r=e.__k[t])!=null&&r.__e!=null){e.__e=e.__c.base=r.__e;break}return Xs(e)}}function Vs(e){(!e.__d&&(e.__d=!0)&&yt.push(e)&&!On.__r++||Hs!==B.debounceRendering)&&((Hs=B.debounceRendering)||Ws)(On)}function On(){for(var e,t,r,n,i,o,a,s=1;yt.length;)yt.length>s&&yt.sort(zs),e=yt.shift(),s=yt.length,e.__d&&(r=void 0,i=(n=(t=e).__v).__e,o=[],a=[],t.__P&&((r=Qe({},n)).__v=n.__v+1,B.vnode&&B.vnode(r),mo(t.__P,r,n,t.__n,t.__P.namespaceURI,32&n.__u?[i]:null,o,i==null?Pt(n):i,!!(32&n.__u),a),r.__v=n.__v,r.__.__k[r.__i]=r,tl(o,r,a),r.__e!=i&&Xs(r)));On.__r=0}function Zs(e,t,r,n,i,o,a,s,u,d,y){var h,p,f,b,I,C,w=n&&n.__k||Qs,k=t.length;for(u=kf(r,t,w,u,k),h=0;h<k;h++)(f=r.__k[h])!=null&&(p=f.__i===-1?or:w[f.__i]||or,f.__i=h,C=mo(e,f,p,i,o,a,s,u,d,y),b=f.__e,f.ref&&p.ref!=f.ref&&(p.ref&&po(p.ref,null,f),y.push(f.ref,f.__c||b,f)),I==null&&b!=null&&(I=b),4&f.__u||p.__k===f.__k?u=el(f,u,e):typeof f.type=="function"&&C!==void 0?u=C:b&&(u=b.nextSibling),f.__u&=-7);return r.__e=I,u}function kf(e,t,r,n,i){var o,a,s,u,d,y=r.length,h=y,p=0;for(e.__k=new Array(i),o=0;o<i;o++)(a=t[o])!=null&&typeof a!="boolean"&&typeof a!="function"?(u=o+p,(a=e.__k[o]=typeof a=="string"||typeof a=="number"||typeof a=="bigint"||a.constructor==String?Cn(null,a,null,null,null):ar(a)?Cn(lt,{children:a},null,null,null):a.constructor===void 0&&a.__b>0?Cn(a.type,a.props,a.key,a.ref?a.ref:null,a.__v):a).__=e,a.__b=e.__b+1,s=null,(d=a.__i=Tf(a,r,u,h))!==-1&&(h--,(s=r[d])&&(s.__u|=2)),s==null||s.__v===null?(d==-1&&(i>y?p--:i<y&&p++),typeof a.type!="function"&&(a.__u|=4)):d!=u&&(d==u-1?p--:d==u+1?p++:(d>u?p--:p++,a.__u|=4))):e.__k[o]=null;if(h)for(o=0;o<y;o++)(s=r[o])!=null&&!(2&s.__u)&&(s.__e==n&&(n=Pt(s)),nl(s,s));return n}function el(e,t,r){var n,i;if(typeof e.type=="function"){for(n=e.__k,i=0;n&&i<n.length;i++)n[i]&&(n[i].__=e,t=el(n[i],t,r));return t}e.__e!=t&&(t&&e.type&&!r.contains(t)&&(t=Pt(e)),r.insertBefore(e.__e,t||null),t=e.__e);do t=t&&t.nextSibling;while(t!=null&&t.nodeType==8);return t}function lr(e,t){return t=t||[],e==null||typeof e=="boolean"||(ar(e)?e.some(function(r){lr(r,t)}):t.push(e)),t}function Tf(e,t,r,n){var i,o,a=e.key,s=e.type,u=t[r];if(u===null&&e.key==null||u&&a==u.key&&s===u.type&&!(2&u.__u))return r;if(n>(u!=null&&!(2&u.__u)?1:0))for(i=r-1,o=r+1;i>=0||o<t.length;){if(i>=0){if((u=t[i])&&!(2&u.__u)&&a==u.key&&s===u.type)return i;i--}if(o<t.length){if((u=t[o])&&!(2&u.__u)&&a==u.key&&s===u.type)return o;o++}}return-1}function $s(e,t,r){t[0]=="-"?e.setProperty(t,r==null?"":r):e[t]=r==null?"":typeof r!="number"||Rf.test(t)?r:r+"px"}function Sn(e,t,r,n,i){var o;e:if(t=="style")if(typeof r=="string")e.style.cssText=r;else{if(typeof n=="string"&&(e.style.cssText=n=""),n)for(t in n)r&&t in r||$s(e.style,t,"");if(r)for(t in r)n&&r[t]===n[t]||$s(e.style,t,r[t])}else if(t[0]=="o"&&t[1]=="n")o=t!=(t=t.replace(Ys,"$1")),t=t.toLowerCase()in e||t=="onFocusOut"||t=="onFocusIn"?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+o]=r,r?n?r.t=n.t:(r.t=fo,e.addEventListener(t,o?uo:lo,o)):e.removeEventListener(t,o?uo:lo,o);else{if(i=="http://www.w3.org/2000/svg")t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(t!="width"&&t!="height"&&t!="href"&&t!="list"&&t!="form"&&t!="tabIndex"&&t!="download"&&t!="rowSpan"&&t!="colSpan"&&t!="role"&&t!="popover"&&t in e)try{e[t]=r==null?"":r;break e}catch(a){}typeof r=="function"||(r==null||r===!1&&t[4]!="-"?e.removeAttribute(t):e.setAttribute(t,t=="popover"&&r==1?"":r))}}function qs(e){return function(t){if(this.l){var r=this.l[t.type+e];if(t.u==null)t.u=fo++;else if(t.u<r.t)return;return r(B.event?B.event(t):t)}}}function mo(e,t,r,n,i,o,a,s,u,d){var y,h,p,f,b,I,C,w,k,D,G,H,S,N,T,M,K,W=t.type;if(t.constructor!==void 0)return null;128&r.__u&&(u=!!(32&r.__u),o=[s=t.__e=r.__e]),(y=B.__b)&&y(t);e:if(typeof W=="function")try{if(w=t.props,k="prototype"in W&&W.prototype.render,D=(y=W.contextType)&&n[y.__c],G=y?D?D.props.value:y.__:n,r.__c?C=(h=t.__c=r.__c).__=h.__E:(k?t.__c=h=new W(w,G):(t.__c=h=new Le(w,G),h.constructor=W,h.render=Lf),D&&D.sub(h),h.props=w,h.state||(h.state={}),h.context=G,h.__n=n,p=h.__d=!0,h.__h=[],h._sb=[]),k&&h.__s==null&&(h.__s=h.state),k&&W.getDerivedStateFromProps!=null&&(h.__s==h.state&&(h.__s=Qe({},h.__s)),Qe(h.__s,W.getDerivedStateFromProps(w,h.__s))),f=h.props,b=h.state,h.__v=t,p)k&&W.getDerivedStateFromProps==null&&h.componentWillMount!=null&&h.componentWillMount(),k&&h.componentDidMount!=null&&h.__h.push(h.componentDidMount);else{if(k&&W.getDerivedStateFromProps==null&&w!==f&&h.componentWillReceiveProps!=null&&h.componentWillReceiveProps(w,G),!h.__e&&(h.shouldComponentUpdate!=null&&h.shouldComponentUpdate(w,h.__s,G)===!1||t.__v==r.__v)){for(t.__v!=r.__v&&(h.props=w,h.state=h.__s,h.__d=!1),t.__e=r.__e,t.__k=r.__k,t.__k.some(function(ee){ee&&(ee.__=t)}),H=0;H<h._sb.length;H++)h.__h.push(h._sb[H]);h._sb=[],h.__h.length&&a.push(h);break e}h.componentWillUpdate!=null&&h.componentWillUpdate(w,h.__s,G),k&&h.componentDidUpdate!=null&&h.__h.push(function(){h.componentDidUpdate(f,b,I)})}if(h.context=G,h.props=w,h.__P=e,h.__e=!1,S=B.__r,N=0,k){for(h.state=h.__s,h.__d=!1,S&&S(t),y=h.render(h.props,h.state,h.context),T=0;T<h._sb.length;T++)h.__h.push(h._sb[T]);h._sb=[]}else do h.__d=!1,S&&S(t),y=h.render(h.props,h.state,h.context),h.state=h.__s;while(h.__d&&++N<25);h.state=h.__s,h.getChildContext!=null&&(n=Qe(Qe({},n),h.getChildContext())),k&&!p&&h.getSnapshotBeforeUpdate!=null&&(I=h.getSnapshotBeforeUpdate(f,b)),M=y,y!=null&&y.type===lt&&y.key==null&&(M=rl(y.props.children)),s=Zs(e,ar(M)?M:[M],t,r,n,i,o,a,s,u,d),h.base=t.__e,t.__u&=-161,h.__h.length&&a.push(h),C&&(h.__E=h.__=null)}catch(ee){if(t.__v=null,u||o!=null)if(ee.then){for(t.__u|=u?160:128;s&&s.nodeType==8&&s.nextSibling;)s=s.nextSibling;o[o.indexOf(s)]=null,t.__e=s}else for(K=o.length;K--;)ho(o[K]);else t.__e=r.__e,t.__k=r.__k;B.__e(ee,t,r)}else o==null&&t.__v==r.__v?(t.__k=r.__k,t.__e=r.__e):s=t.__e=xf(r.__e,t,r,n,i,o,a,u,d);return(y=B.diffed)&&y(t),128&t.__u?void 0:s}function tl(e,t,r){for(var n=0;n<r.length;n++)po(r[n],r[++n],r[++n]);B.__c&&B.__c(t,e),e.some(function(i){try{e=i.__h,i.__h=[],e.some(function(o){o.call(i)})}catch(o){B.__e(o,i.__v)}})}function rl(e){return typeof e!="object"||e==null?e:ar(e)?e.map(rl):Qe({},e)}function xf(e,t,r,n,i,o,a,s,u){var d,y,h,p,f,b,I,C=r.props,w=t.props,k=t.type;if(k=="svg"?i="http://www.w3.org/2000/svg":k=="math"?i="http://www.w3.org/1998/Math/MathML":i||(i="http://www.w3.org/1999/xhtml"),o!=null){for(d=0;d<o.length;d++)if((f=o[d])&&"setAttribute"in f==!!k&&(k?f.localName==k:f.nodeType==3)){e=f,o[d]=null;break}}if(e==null){if(k==null)return document.createTextNode(w);e=document.createElementNS(i,k,w.is&&w),s&&(B.__m&&B.__m(t,o),s=!1),o=null}if(k===null)C===w||s&&e.data===w||(e.data=w);else{if(o=o&&Rn.call(e.childNodes),C=r.props||or,!s&&o!=null)for(C={},d=0;d<e.attributes.length;d++)C[(f=e.attributes[d]).name]=f.value;for(d in C)if(f=C[d],d!="children"){if(d=="dangerouslySetInnerHTML")h=f;else if(!(d in w)){if(d=="value"&&"defaultValue"in w||d=="checked"&&"defaultChecked"in w)continue;Sn(e,d,null,f,i)}}for(d in w)f=w[d],d=="children"?p=f:d=="dangerouslySetInnerHTML"?y=f:d=="value"?b=f:d=="checked"?I=f:s&&typeof f!="function"||C[d]===f||Sn(e,d,f,C[d],i);if(y)s||h&&(y.__html===h.__html||y.__html===e.innerHTML)||(e.innerHTML=y.__html),t.__k=[];else if(h&&(e.innerHTML=""),Zs(t.type==="template"?e.content:e,ar(p)?p:[p],t,r,n,k=="foreignObject"?"http://www.w3.org/1999/xhtml":i,o,a,o?o[0]:r.__k&&Pt(r,0),s,u),o!=null)for(d=o.length;d--;)ho(o[d]);s||(d="value",k=="progress"&&b==null?e.removeAttribute("value"):b!==void 0&&(b!==e[d]||k=="progress"&&!b||k=="option"&&b!==C[d])&&Sn(e,d,b,C[d],i),d="checked",I!==void 0&&I!==e[d]&&Sn(e,d,I,C[d],i))}return e}function po(e,t,r){try{if(typeof e=="function"){var n=typeof e.__u=="function";n&&e.__u(),n&&t==null||(e.__u=e(t))}else e.current=t}catch(i){B.__e(i,r)}}function nl(e,t,r){var n,i;if(B.unmount&&B.unmount(e),(n=e.ref)&&(n.current&&n.current!==e.__e||po(n,null,t)),(n=e.__c)!=null){if(n.componentWillUnmount)try{n.componentWillUnmount()}catch(o){B.__e(o,t)}n.base=n.__P=null}if(n=e.__k)for(i=0;i<n.length;i++)n[i]&&nl(n[i],t,r||typeof e.type!="function");r||ho(e.__e),e.__c=e.__=e.__e=void 0}function Lf(e,t,r){return this.constructor(e,r)}function il(e,t,r){var n,i,o,a;t==document&&(t=document.documentElement),B.__&&B.__(e,t),i=(n=typeof r=="function")?null:r&&r.__k||t.__k,o=[],a=[],mo(t,e=(!n&&r||t).__k=sr(lt,null,[e]),i||or,or,t.namespaceURI,!n&&r?[r]:i?null:t.firstChild?Rn.call(t.childNodes):null,o,!n&&r?r:i?i.__e:t.firstChild,n,a),tl(o,e,a)}Rn=Qs.slice,B={__e:function(e,t,r,n){for(var i,o,a;t=t.__;)if((i=t.__c)&&!i.__)try{if((o=i.constructor)&&o.getDerivedStateFromError!=null&&(i.setState(o.getDerivedStateFromError(e)),a=i.__d),i.componentDidCatch!=null&&(i.componentDidCatch(e,n||{}),a=i.__d),a)return i.__E=i}catch(s){e=s}throw e}},Ks=0,co=function(e){return e!=null&&e.constructor==null},Le.prototype.setState=function(e,t){var r;r=this.__s!=null&&this.__s!==this.state?this.__s:this.__s=Qe({},this.state),typeof e=="function"&&(e=e(Qe({},r),this.props)),e&&Qe(r,e),e!=null&&this.__v&&(t&&this._sb.push(t),Vs(this))},Le.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),Vs(this))},Le.prototype.render=lt,yt=[],Ws=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,zs=function(e,t){return e.__v.__b-t.__v.__b},On.__r=0,Ys=/(PointerCapture)$|Capture$/i,fo=0,lo=qs(!1),uo=qs(!0),Of=0;var Dt,ie,vo,ol,ur=0,hl=[],se=B,al=se.__b,sl=se.__r,ll=se.diffed,ul=se.__c,cl=se.unmount,dl=se.__;function Tn(e,t){se.__h&&se.__h(ie,e,ur||t),ur=0;var r=ie.__H||(ie.__H={__:[],__h:[]});return e>=r.__.length&&r.__.push({}),r.__[e]}function xn(e){return ur=1,ml(pl,e)}function ml(e,t,r){var n=Tn(Dt++,2);if(n.t=e,!n.__c&&(n.__=[r?r(t):pl(void 0,t),function(s){var u=n.__N?n.__N[0]:n.__[0],d=n.t(u,s);u!==d&&(n.__N=[d,n.__[1]],n.__c.setState({}))}],n.__c=ie,!ie.__f)){var i=function(s,u,d){if(!n.__c.__H)return!0;var y=n.__c.__H.__.filter(function(p){return!!p.__c});if(y.every(function(p){return!p.__N}))return!o||o.call(this,s,u,d);var h=n.__c.props!==s;return y.forEach(function(p){if(p.__N){var f=p.__[0];p.__=p.__N,p.__N=void 0,f!==p.__[0]&&(h=!0)}}),o&&o.call(this,s,u,d)||h};ie.__f=!0;var o=ie.shouldComponentUpdate,a=ie.componentWillUpdate;ie.componentWillUpdate=function(s,u,d){if(this.__e){var y=o;o=void 0,i(s,u,d),o=y}a&&a.call(this,s,u,d)},ie.shouldComponentUpdate=i}return n.__N||n.__}function cr(e,t){var r=Tn(Dt++,3);!se.__s&&bo(r.__H,t)&&(r.__=e,r.u=t,ie.__H.__h.push(r))}function go(e,t){var r=Tn(Dt++,4);!se.__s&&bo(r.__H,t)&&(r.__=e,r.u=t,ie.__h.push(r))}function yo(e){return ur=5,dr(function(){return{current:e}},[])}function dr(e,t){var r=Tn(Dt++,7);return bo(r.__H,t)&&(r.__=e(),r.__H=t,r.__h=e),r.__}function wo(e,t){return ur=8,dr(function(){return e},t)}function Pf(){for(var e;e=hl.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(kn),e.__H.__h.forEach(_o),e.__H.__h=[]}catch(t){e.__H.__h=[],se.__e(t,e.__v)}}se.__b=function(e){ie=null,al&&al(e)},se.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),dl&&dl(e,t)},se.__r=function(e){sl&&sl(e),Dt=0;var t=(ie=e.__c).__H;t&&(vo===ie?(t.__h=[],ie.__h=[],t.__.forEach(function(r){r.__N&&(r.__=r.__N),r.u=r.__N=void 0})):(t.__h.forEach(kn),t.__h.forEach(_o),t.__h=[],Dt=0)),vo=ie},se.diffed=function(e){ll&&ll(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(hl.push(t)!==1&&ol===se.requestAnimationFrame||((ol=se.requestAnimationFrame)||Df)(Pf)),t.__H.__.forEach(function(r){r.u&&(r.__H=r.u),r.u=void 0})),vo=ie=null},se.__c=function(e,t){t.some(function(r){try{r.__h.forEach(kn),r.__h=r.__h.filter(function(n){return!n.__||_o(n)})}catch(n){t.some(function(i){i.__h&&(i.__h=[])}),t=[],se.__e(n,r.__v)}}),ul&&ul(e,t)},se.unmount=function(e){cl&&cl(e);var t,r=e.__c;r&&r.__H&&(r.__H.__.forEach(function(n){try{kn(n)}catch(i){t=i}}),r.__H=void 0,t&&se.__e(t,r.__v))};var fl=typeof requestAnimationFrame=="function";function Df(e){var t,r=function(){clearTimeout(n),fl&&cancelAnimationFrame(t),setTimeout(e)},n=setTimeout(r,100);fl&&(t=requestAnimationFrame(r))}function kn(e){var t=ie,r=e.__c;typeof r=="function"&&(e.__c=void 0,r()),ie=t}function _o(e){var t=ie;e.__c=e.__(),ie=t}function bo(e,t){return!e||e.length!==t.length||t.some(function(r,n){return r!==e[n]})}function pl(e,t){return typeof t=="function"?t(e):t}function Uf(e,t){for(var r in t)e[r]=t[r];return e}function vl(e,t){for(var r in e)if(r!=="__source"&&!(r in t))return!0;for(var n in t)if(n!=="__source"&&e[n]!==t[n])return!0;return!1}function _l(e,t){this.props=e,this.context=t}(_l.prototype=new Le).isPureReactComponent=!0,_l.prototype.shouldComponentUpdate=function(e,t){return vl(this.props,e)||vl(this.state,t)};var gl=B.__b;B.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),gl&&gl(e)};var gw=typeof Symbol!="undefined"&&Symbol.for&&Symbol.for("react.forward_ref")||3911;var Mf=B.__e;B.__e=function(e,t,r,n){if(e.then){for(var i,o=t;o=o.__;)if((i=o.__c)&&i.__c)return t.__e==null&&(t.__e=r.__e,t.__k=r.__k),i.__c(e,t)}Mf(e,t,r,n)};var yl=B.unmount;function Cl(e,t,r){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(n){typeof n.__c=="function"&&n.__c()}),e.__c.__H=null),(e=Uf({},e)).__c!=null&&(e.__c.__P===r&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map(function(n){return Cl(n,t,r)})),e}function Ol(e,t,r){return e&&r&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(n){return Ol(n,t,r)}),e.__c&&e.__c.__P===t&&(e.__e&&r.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=r)),e}function Eo(){this.__u=0,this.o=null,this.__b=null}function Rl(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function Ln(){this.i=null,this.l=null}B.unmount=function(e){var t=e.__c;t&&t.__R&&t.__R(),t&&32&e.__u&&(e.type=null),yl&&yl(e)},(Eo.prototype=new Le).__c=function(e,t){var r=t.__c,n=this;n.o==null&&(n.o=[]),n.o.push(r);var i=Rl(n.__v),o=!1,a=function(){o||(o=!0,r.__R=null,i?i(s):s())};r.__R=a;var s=function(){if(!--n.__u){if(n.state.__a){var u=n.state.__a;n.__v.__k[0]=Ol(u,u.__c.__P,u.__c.__O)}var d;for(n.setState({__a:n.__b=null});d=n.o.pop();)d.forceUpdate()}};n.__u++||32&t.__u||n.setState({__a:n.__b=n.__v.__k[0]}),e.then(a,a)},Eo.prototype.componentWillUnmount=function(){this.o=[]},Eo.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var r=document.createElement("div"),n=this.__v.__k[0].__c;this.__v.__k[0]=Cl(this.__b,r,n.__O=n.__P)}this.__b=null}var i=t.__a&&sr(lt,null,e.fallback);return i&&(i.__u&=-33),[sr(lt,null,t.__a?null:e.children),i]};var wl=function(e,t,r){if(++r[1]===r[0]&&e.l.delete(t),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.l.size))for(r=e.i;r;){for(;r.length>3;)r.pop()();if(r[1]<r[0])break;e.i=r=r[2]}};(Ln.prototype=new Le).__a=function(e){var t=this,r=Rl(t.__v),n=t.l.get(e);return n[0]++,function(i){var o=function(){t.props.revealOrder?(n.push(i),wl(t,e,n)):i()};r?r(o):o()}},Ln.prototype.render=function(e){this.i=null,this.l=new Map;var t=lr(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&t.reverse();for(var r=t.length;r--;)this.l.set(t[r],this.i=[1,0,this.i]);return e.children},Ln.prototype.componentDidUpdate=Ln.prototype.componentDidMount=function(){var e=this;this.l.forEach(function(t,r){wl(e,r,t)})};var Bf=typeof Symbol!="undefined"&&Symbol.for&&Symbol.for("react.element")||60103,Jf=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,Ff=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,Gf=/[A-Z0-9]/g,jf=typeof document!="undefined",Hf=function(e){return(typeof Symbol!="undefined"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};function Io(e,t,r){return t.__k==null&&(t.textContent=""),il(e,t),typeof r=="function"&&r(),e?e.__c:null}Le.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(Le.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})});var bl=B.event;function Vf(){}function $f(){return this.cancelBubble}function qf(){return this.defaultPrevented}B.event=function(e){return bl&&(e=bl(e)),e.persist=Vf,e.isPropagationStopped=$f,e.isDefaultPrevented=qf,e.nativeEvent=e};var kl,Kf={enumerable:!1,configurable:!0,get:function(){return this.class}},El=B.vnode;B.vnode=function(e){typeof e.type=="string"&&function(t){var r=t.props,n=t.type,i={},o=n.indexOf("-")===-1;for(var a in r){var s=r[a];if(!(a==="value"&&"defaultValue"in r&&s==null||jf&&a==="children"&&n==="noscript"||a==="class"||a==="className")){var u=a.toLowerCase();a==="defaultValue"&&"value"in r&&r.value==null?a="value":a==="download"&&s===!0?s="":u==="translate"&&s==="no"?s=!1:u[0]==="o"&&u[1]==="n"?u==="ondoubleclick"?a="ondblclick":u!=="onchange"||n!=="input"&&n!=="textarea"||Hf(r.type)?u==="onfocus"?a="onfocusin":u==="onblur"?a="onfocusout":Ff.test(a)&&(a=u):u=a="oninput":o&&Jf.test(a)?a=a.replace(Gf,"-$&").toLowerCase():s===null&&(s=void 0),u==="oninput"&&i[a=u]&&(a="oninputCapture"),i[a]=s}}n=="select"&&i.multiple&&Array.isArray(i.value)&&(i.value=lr(r.children).forEach(function(d){d.props.selected=i.value.indexOf(d.props.value)!=-1})),n=="select"&&i.defaultValue!=null&&(i.value=lr(r.children).forEach(function(d){d.props.selected=i.multiple?i.defaultValue.indexOf(d.props.value)!=-1:i.defaultValue==d.props.value})),r.class&&!r.className?(i.class=r.class,Object.defineProperty(i,"className",Kf)):(r.className&&!r.class||r.class&&r.className)&&(i.class=i.className=r.className),t.props=i}(e),e.$$typeof=Bf,El&&El(e)};var Il=B.__r;B.__r=function(e){Il&&Il(e),kl=e.__c};var Al=B.diffed;B.diffed=function(e){Al&&Al(e);var t=e.props,r=e.__e;r!=null&&e.type==="textarea"&&"value"in t&&t.value!==r.value&&(r.value=t.value==null?"":t.value),kl=null};var Wf=Object.defineProperty,jn=Object.getOwnPropertySymbols,tu=Object.prototype.hasOwnProperty,ru=Object.prototype.propertyIsEnumerable,Tl=(e,t,r)=>t in e?Wf(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,zf=(e,t)=>{for(var r in t||(t={}))tu.call(t,r)&&Tl(e,r,t[r]);if(jn)for(var r of jn(t))ru.call(t,r)&&Tl(e,r,t[r]);return e},Yf=(e,t)=>{var r={};for(var n in e)tu.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(e!=null&&jn)for(var n of jn(e))t.indexOf(n)<0&&ru.call(e,n)&&(r[n]=e[n]);return r},nu=Object.defineProperty,Qf=Object.defineProperties,Xf=Object.getOwnPropertyDescriptors,xl=Object.getOwnPropertySymbols,Zf=Object.prototype.hasOwnProperty,eh=Object.prototype.propertyIsEnumerable,Ll=(e,t,r)=>t in e?nu(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,th=(e,t)=>{for(var r in t||(t={}))Zf.call(t,r)&&Ll(e,r,t[r]);if(xl)for(var r of xl(t))eh.call(t,r)&&Ll(e,r,t[r]);return e},rh=(e,t)=>Qf(e,Xf(t)),nh=(e,t)=>{for(var r in t)nu(e,r,{get:t[r],enumerable:!0})},iu=(e,t,r,n)=>{for(var i=t,o=e.length-1,a;o>=0;o--)(a=e[o])&&(i=a(i)||i);return i},ih=(e,t,r)=>new Promise((n,i)=>{var o=u=>{try{s(r.next(u))}catch(d){i(d)}},a=u=>{try{s(r.throw(u))}catch(d){i(d)}},s=u=>u.done?n(u.value):Promise.resolve(u.value).then(o,a);s((r=r.apply(e,t)).next())});if(typeof window!="undefined"&&!window.AbortController){let e=function(){this.signal=new t};e.prototype.abort=function(){this.signal._aborted=!0,typeof this.signal.onabort=="function"&&this.signal.onabort(new Event("abort"));let r=new Event("abort");this.signal.dispatchEvent(r)};let t=function(){this._aborted=!1,this.aborted=!1,this.onabort=null,this._eventListeners={}};Object.defineProperty(t.prototype,"aborted",{get:function(){return this._aborted}}),t.prototype.addEventListener=function(r,n){this._eventListeners[r]||(this._eventListeners[r]=[]),this._eventListeners[r].push(n)},t.prototype.removeEventListener=function(r,n){if(!this._eventListeners[r])return;let i=this._eventListeners[r].indexOf(n);i!==-1&&this._eventListeners[r].splice(i,1)},t.prototype.dispatchEvent=function(r){if(this._eventListeners[r.type])for(let n of this._eventListeners[r.type])n.call(this,r)},window.AbortController=e,window.AbortSignal=t}function oh(e){return new Promise(t=>{setTimeout(()=>{t()},e)})}function ah(e){return typeof e=="string"}function sh(e){return typeof e=="undefined"}function lh(e){return sh(e)||e===null}function uh(e){return typeof e=="function"}function ou(e){let t=e,r=null,n=function(){for(var i=arguments.length,o=new Array(i),a=0;a<i;a++)o[a]=arguments[a];return r||(r=new t(...o)),r};return n.prototype=t.prototype,n}var ch=(e=>(e[e.DEVELOPER_FILE_NOT_FOUND=0]="DEVELOPER_FILE_NOT_FOUND",e[e.INTERNAL_IOS_CAN_NOT_FOUND_PKG=1]="INTERNAL_IOS_CAN_NOT_FOUND_PKG",e[e.USER_IOS_LOAD_TIMEOUT=2]="USER_IOS_LOAD_TIMEOUT",e[e.INTERNAL_IOS_PKG_LOAD_ERROR=3]="INTERNAL_IOS_PKG_LOAD_ERROR",e[e.INTERNAL_IOS_PKG_PARSE_FAIL=4]="INTERNAL_IOS_PKG_PARSE_FAIL",e[e.USER_IOS_GET_EMPTY_DATA=5]="USER_IOS_GET_EMPTY_DATA",e[e.USER_ANDROID_GET_PKG_FAIL=6]="USER_ANDROID_GET_PKG_FAIL",e[e.DEVELOPER_ANDROID_PACKAGE_FILE_UNEXPECTED_REQUIRE=7]="DEVELOPER_ANDROID_PACKAGE_FILE_UNEXPECTED_REQUIRE",e))(ch||{});function fr(e){return function(){var t,r;((r=(t=globalThis.VConsole)==null?void 0:t[e])!=null?r:globalThis.console[e])(...arguments)}}var dh={log:fr("log"),warn:fr("warn"),info:fr("info"),error:fr("error"),debug:fr("debug")};Object.assign(globalThis,{logger:dh});var Pl=Symbol.for("Jolibox.canIUseMap"),fh={};globalThis[Pl]||(globalThis[Pl]=fh);var Dl=Symbol.for("Jolibox.canIUseMap.native"),hh={};globalThis[Dl]||(globalThis[Dl]=hh);var au=(e=>(e[e.Other=0]="Other",e[e.Route=1]="Route",e[e.Click=2]="Click",e[e.View=3]="View",e[e.Expose=4]="Expose",e[e.Swipe=5]="Swipe",e[e.Input=6]="Input",e[e.Select=7]="Select",e[e.SwitchOn=8]="SwitchOn",e[e.SwitchOff=9]="SwitchOff",e[e.Submit=10]="Submit",e[e.Scroll=11]="Scroll",e[e.Hide=12]="Hide",e[e.System=1e3]="System",e[e.ErrorTrace=1001]="ErrorTrace",e[e.UserDefined=1002]="UserDefined",e))(au||{}),su=(e=>(e.MiniGame="mini-game",e.MiniDrama="mini-drama",e.App="app",e.WebSDK="web-sdk",e.AppSDK="app-sdk",e))(su||{}),lu=(e=>(e[e.App=0]="App",e[e.H5=1]="H5",e[e.Weapp=2]="Weapp",e[e.Alipay=3]="Alipay",e[e.Gcash=4]="Gcash",e[e.Dana=5]="Dana",e[e.Umma=6]="Umma",e[e.WebSDK=1e3]="WebSDK",e[e.AppSDK=1001]="AppSDK",e[e.Other=9999]="Other",e))(lu||{}),Nl=["name","params"],mh=["name","type","location","target","extra","timestamp","userId"],ph=["platform","os","appVersion","appId","model","brand","uuid","jsSdkVersion","extra"];function Un(e,t){return t.map(r=>{if(r==="params"&&e[r]){let n=e[r];return Object.keys(n).reduce((i,o)=>(i[o]=String(n[o]),i),{})}return e[r]})}function vh(e){let t=e.location?Un(e.location,Nl):null,r=e.target?Un(e.target,Nl):null;return Un(rh(th({},e),{location:t,target:r}),mh)}function _h(e){let t=e.events.map(n=>vh(n)),r=Un(e.device,ph);return[e.protocolVersion,t,r,e.project]}function gh(){if(typeof window=="undefined")return{getItem:()=>null,setItem:()=>{},removeItem:()=>{},clear:()=>{},length:0,key:()=>null};try{if(window.__joliboxLocalStorage__)return window.__joliboxLocalStorage__;let e=Object.getOwnPropertyDescriptor(window,"localStorage");if(e&&e.get){let n=e.get.call(window);return window.__joliboxLocalStorage__=n,n}if(e=Object.getOwnPropertyDescriptor(Object.getPrototypeOf(window),"localStorage"),e&&e.get)return e.get.call(window);let t=Window.prototype,r=Object.getOwnPropertyDescriptor(t,"localStorage");if(r&&r.get){let n=r.get.call(window);return window.__joliboxLocalStorage__=n,n}return localStorage}catch(e){return console.warn("Failed to get original localStorage, fallback to default implementation",e),localStorage}}gh();var Mt=typeof window=="undefined",Ul=()=>!Mt&&!!(navigator.userAgent||"").includes("JoliboxPlatformSDK");!Mt&&(navigator.userAgent.includes("iPhone")||navigator.userAgent.includes("iPod")||navigator.userAgent.includes("iPad")||navigator.userAgent.includes("iPhone OS")),!Mt&&navigator.userAgent.includes("Android"),!Mt&&navigator.userAgent.includes("Mac"),!Mt&&navigator.userAgent.includes("FB_IAB"),!Mt&&!navigator.userAgent.includes("iPhone")&&navigator.userAgent.includes("Android");var To=class xo{constructor(t){this.element=t,this.next=xo.Undefined,this.prev=xo.Undefined}};To.Undefined=new To(void 0);var re=To,yh=class{constructor(){this._first=re.Undefined,this._last=re.Undefined,this._size=0}get size(){return this._size}isEmpty(){return this._first===re.Undefined}clear(){let e=this._first;for(;e!==re.Undefined;){let t=e.next;e.prev=re.Undefined,e.next=re.Undefined,e=t}this._first=re.Undefined,this._last=re.Undefined,this._size=0}unshift(e){return this._insert(e,!1)}push(e){return this._insert(e,!0)}_insert(e,t){let r=new re(e);if(this._first===re.Undefined)this._first=r,this._last=r;else if(t){let i=this._last;this._last=r,r.prev=i,i.next=r}else{let i=this._first;this._first=r,r.next=i,i.prev=r}this._size+=1;let n=!1;return()=>{n||(n=!0,this._remove(r))}}shift(){if(this._first!==re.Undefined){let e=this._first.element;return this._remove(this._first),e}}pop(){if(this._last!==re.Undefined){let e=this._last.element;return this._remove(this._last),e}}_remove(e){if(e.prev!==re.Undefined&&e.next!==re.Undefined){let t=e.prev;t.next=e.next,e.next.prev=t}else e.prev===re.Undefined&&e.next===re.Undefined?(this._first=re.Undefined,this._last=re.Undefined):e.next===re.Undefined?(this._last=this._last.prev,this._last.next=re.Undefined):e.prev===re.Undefined&&(this._first=this._first.next,this._first.prev=re.Undefined);this._size-=1}*[Symbol.iterator](){let e=this._first;for(;e!==re.Undefined;)yield e.element,e=e.next}},wh=0,hr=class{constructor(e){this.value=e,this.id=wh++}},_r=class{constructor(e){this.options=e,this._size=0}dispose(e){var t,r;this._disposed||(this._disposed=!0,this._listeners&&(e?(this._listeners instanceof hr&&(this._listeners=[this._listeners]),this._listeners=this._listeners.filter(n=>(n==null?void 0:n.value)===e)):(this._listeners=void 0,this._size=0)),(r=(t=this.options)==null?void 0:t.onDidRemoveLastListener)==null||r.call(t))}get event(){return this._event!=null||(this._event=(e,t)=>{var r,n,i,o,a,s;if(this._disposed)return()=>{console.info("[Jolibox SDK] Emitter is _disposed")};t&&(e=e.bind(t));let u=new hr(e);return this._listeners?this._listeners instanceof hr?this._listeners=[this._listeners,u]:this._listeners.push(u):((n=(r=this.options)==null?void 0:r.onWillAddFirstListener)==null||n.call(r,this),this._listeners=u,(o=(i=this.options)==null?void 0:i.onDidFirstListener)==null||o.call(i,this)),(s=(a=this.options)==null?void 0:a.onDidAddListener)==null||s.call(a,this),this._size++,()=>{var d,y,h,p;if(!this._disposed){if(this._listeners instanceof hr)this._listeners.id===u.id&&(this._listeners=void 0,this._size=0,(y=(d=this.options)==null?void 0:d.onDidRemoveLastListener)==null||y.call(d));else if(this._listeners){let f=this._listeners.indexOf(u);f>=0&&(this._listeners.splice(f,1),this._size--,this._size===0&&((p=(h=this.options)==null?void 0:h.onDidRemoveLastListener)==null||p.call(h)))}}}}),this._event}_deliver(e,t){var r;if(!e)return;let n=((r=this.options)==null?void 0:r.onListenerError)||Error.constructor;if(!n){e.value(t);return}try{e.value(t)}catch(i){n(i)}}fire(e){this._listeners&&(this._listeners instanceof hr?this._deliver(this._listeners,e):this._listeners.forEach(t=>this._deliver(t,e)))}hasListeners(){return this._size>0}},bh=class{constructor(){this.listeners=new Map,this.listerHandlerMap=new WeakMap,this.cachedEventQueue=new Map}on(e,t){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;var n;let i=(n=this.listeners.get(e))!=null?n:new _r,o=u=>t(...u.args),a=i.event(o);this.listerHandlerMap.set(t,{handler:o,dispose:a}),this.listeners.set(e,i);let s=this.cachedEventQueue.get(e);if(s&&r)for(let u of s)t(...u.args)}flushCachedEvent(e){e?this.cachedEventQueue.delete(e):this.cachedEventQueue.clear()}off(e,t){let r=this.listerHandlerMap.get(t);r&&(r.dispose(),this.listerHandlerMap.delete(t))}emit(e){let t=this.listeners.get(e),r=this.cachedEventQueue.get(e);for(var n=arguments.length,i=new Array(n>1?n-1:0),o=1;o<n;o++)i[o-1]=arguments[o];r||(r=new yh,this.cachedEventQueue.set(e,r)),r.push({args:i}),t&&t.fire({event:e,args:i})}once(e,t){var r=this;let n=function(){t(...arguments),r.off(e,n)};this.on(e,n,!1)}},Lo={};nh(Lo,{None:()=>Eh,filter:()=>Ah,once:()=>uu,toPromise:()=>Ih});var Eh=()=>(console.log("[Jolibox SDK] None Event"),()=>{console.log("[Jolibox SDK] None Event dispose")});function Ih(e){return new Promise(t=>uu(e)(t))}function uu(e){return function(t){let r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,n=!1;return e(i=>{if(!n)return n=!0,t.call(r,i)},null)}}function Ah(e,t){return(r=>{let n={onWillAddFirstListener(){r(i.fire,i)}},i=new _r(n);return i.event})(function(r){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;return e(i=>t(i)&&r.call(n,i),null)})}var Ao=Symbol.for("Jolibox.hostEmitter"),Sh=()=>{let e=new bh;return globalThis[Ao]||(globalThis[Ao]={on:e.on.bind(e),off:e.off.bind(e),emit:e.emit.bind(e),once:e.once.bind(e)}),globalThis[Ao]};Sh();function Ch(e,t){let r=Math.min(e.length,t.length);for(let n=0;n<r;n++)Oh(e[n],t[n])}function Oh(e,t){if(ah(t)){if(typeof e!==t)throw new Error(`argument does not match constraint: typeof ${t}`)}else if(uh(t)){try{if(e instanceof t)return}catch(r){}if(!lh(e)&&e.constructor===t||t.length===1&&t.call(void 0,e)===!0)return;throw new Error("[Jolibox SDK]argument does not match one of these constraints: arg instanceof constraint, arg.constructor === constraint, nor constraint(arg) === true")}}var Po=class{constructor(){this._commands=new Map,this._onDidRegisterCommand=new _r,this.onDidRegisterCommand=this._onDidRegisterCommand.event,console.log("[Jolibox SDK] command registry")}registerCommand(e){if(!e)throw new Error("invalid command");if(e.metadata&&Array.isArray(e.metadata.args)){let r=[];for(let i of e.metadata.args)r.push(i.constraint);let n=e.handler;e.handler=function(){for(var i=arguments.length,o=new Array(i),a=0;a<i;a++)o[a]=arguments[a];return Ch(o,r),n(...o)}}let{id:t}=e;this._commands.get(t)&&console.info(`[Jolibox SDK] duplicated command is registered ${t}`),this._commands.set(t,e),this._onDidRegisterCommand.fire(t)}getCommand(e){return this._commands.get(e)}getCommands(){let e=new Map;for(let t of this._commands.keys()){let r=this.getCommand(t);r&&e.set(t,r)}return e}};Po=iu([ou],Po);var Ml=class{constructor(){this._onWillExecuteCommand=new _r,this.onWillExecuteCommand=this._onWillExecuteCommand.event,this._onDidExecuteCommand=new _r,this.onDidExecuteCommand=this._onDidExecuteCommand.event,this.registry=new Po,this._starActivation=null}_activateStar(){return this._starActivation||(this._starActivation=oh(3e4)),this._starActivation}executeCommand(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return ih(this,null,function*(){return this.registry.getCommand(e)?this._tryExecuteCommand(e,r):(yield Promise.all([Promise.race([this._activateStar(),Lo.toPromise(Lo.filter(this.registry.onDidRegisterCommand,i=>i===e))])]),this._tryExecuteCommand(e,r))})}executeCommandThowErr(e){if(!this.registry.getCommand(e))throw new Error(`command '${e}' not found`);let t=this.registry.getCommand(e);for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];this._onWillExecuteCommand.fire({commandId:e,args:n});let o=this.invokeFunction(t.handler,...n);return this._onDidExecuteCommand.fire({commandId:e,args:n}),o}_tryExecuteCommand(e,t){let r=this.registry.getCommand(e);if(!r)return Promise.reject(new Error(`command '${e}' not found`));try{this._onWillExecuteCommand.fire({commandId:e,args:t});let n=this.invokeFunction(r.handler,...t);return this._onDidExecuteCommand.fire({commandId:e,args:t}),Promise.resolve(n)}catch(n){return Promise.reject(n)}}invokeFunction(e){try{for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return e(...r)}finally{}}};Ml=iu([ou],Ml);function Ae(e,t,r){return(t=Rh(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Rh(e){var t=kh(e,"string");return typeof t=="symbol"?t:t+""}function kh(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Nt=e=>e?function(){try{for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];e==null||e(...r)}catch(i){console.error("Error calling function",i)}}:()=>{console.log("wrapUserFunction: fn is undefined")},Do=class{constructor(t){Ae(this,"context",void 0),Ae(this,"continueCallback",void 0),Ae(this,"adIsShowingCallback",void 0),Ae(this,"isBeforeAdCalled",!1),Ae(this,"isBeforeRewardCalled",!1),Ae(this,"isAdDismissedCalled",!1),Ae(this,"isAdViewedCalled",!1),Ae(this,"isAfterAdCalled",!1),Ae(this,"currentProvider",void 0),Ae(this,"currentClientParams",void 0),Ae(this,"adsHasResponse",!1),Ae(this,"videoChecker",window.document.createElement("video")),Ae(this,"contextInfo",void 0),Ae(this,"wrapShowAdFn",r=>()=>{var n,i,o;this.adsHasResponse=!0;let a=!1;this.videoChecker.play().catch(()=>{a=!1}),a=!this.videoChecker.paused,this.videoChecker.pause(),this.context.track("CallShowAdFn",Object.assign({},{userEvent:a},this.paramsToTrack)),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_BEFORE_REWARD",zf({userEvent:a},this.paramsToTrack)),Ul()&&this.context.track("mmp_ad_impression",{ad_network:(i=(n=this.currentProvider)==null?void 0:n.name)!=null?i:"",ad_format:"rewarded",module:"game",game_id:this.contextInfo.objectId}),(o=this.adIsShowingCallback)==null||o.call(this,!0);let s=Nt(r);s==null||s()}),this.context=t,this.contextInfo=t.getContextInfo()}notifyIframeAdsEvent(t,r){window.parent&&window.parent.postMessage({type:t,data:r},"*"),window.dispatchEvent(new CustomEvent(t,{detail:r}))}get paramsToTrack(){var t,r,n,i,o,a;return{provider:(r=(t=this.currentProvider)==null?void 0:t.name)!=null?r:null,type:(n=this.currentClientParams)==null?void 0:n.type,name:((i=this.currentClientParams)==null?void 0:i.type)==="preroll"?null:(a=(o=this.currentClientParams)==null?void 0:o.name)!=null?a:""}}wrapBeforeAd(t){return()=>{var r,n,i,o;if(this.adsHasResponse=!0,this.context.track("CallBeforeAd",this.paramsToTrack),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_BEFORE_AD",this.paramsToTrack),!this.isBeforeAdCalled){this.isBeforeAdCalled=!0;let a=Nt(t);a==null||a(),((r=this.currentClientParams)==null?void 0:r.type)!=="reward"&&((n=this.adIsShowingCallback)==null||n.call(this,!0),Ul()&&this.context.track("mmp_ad_impression",{ad_network:(o=(i=this.currentProvider)==null?void 0:i.name)!=null?o:"",ad_format:"interstitial",module:"game",game_id:this.contextInfo.objectId}))}}}wrapBeforeReward(t){return r=>{this.adsHasResponse=!0,this.isBeforeRewardCalled?this.wrapShowAdFn(r)():(this.isBeforeRewardCalled=!0,t==null||t(this.wrapShowAdFn(r)))}}wrapAdDismissed(t){return()=>{if(this.adsHasResponse=!0,!this.isAdDismissedCalled){this.isAdDismissedCalled=!0;let r=Nt(t);r==null||r()}}}wrapAdViewed(t){return()=>{if(this.adsHasResponse=!0,!this.isAdViewedCalled){this.isAdViewedCalled=!0;let r=Nt(t);r==null||r()}}}wrapAfterAd(t){return()=>{if(this.adsHasResponse=!0,this.context.track("CallAfterAd",this.paramsToTrack),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_AFTER_AD",this.paramsToTrack),!this.isAfterAdCalled){this.isAfterAdCalled=!0;let r=Nt(t);r==null||r()}}}wrapAdBreakDone(t){return r=>{var n,i,o,a,s,u,d,y,h;switch(this.adsHasResponse=!0,this.context.track("CallAdBreakDone",{provider:(i=(n=this.currentProvider)==null?void 0:n.name)!=null?i:null,breakType:r.breakType,breakName:(o=r.breakName)!=null?o:"",breakFormat:r.breakFormat,breakStatus:r.breakStatus}),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_AD_BREAK_DONE",{provider:(s=(a=this.currentProvider)==null?void 0:a.name)!=null?s:null,breakType:r.breakType,breakName:(u=r.breakName)!=null?u:"",breakFormat:r.breakFormat,breakStatus:r.breakStatus}),r.breakStatus){case"viewed":case"ignored":case"dismissed":case"error":{let p=Nt(t);p==null||p(r),(d=this.adIsShowingCallback)==null||d.call(this,!1),(y=this.continueCallback)==null||y.call(this,[!1,r]);break}default:{(h=this.continueCallback)==null||h.call(this,[!0,r]);break}}}}callAdBreakAndContinue(t,r,n,i){return L(this,null,function*(){return this.currentProvider=t,this.currentClientParams=r,this.adsHasResponse=!1,new Promise(o=>{this.continueCallback=o,this.adIsShowingCallback=i;let a;switch(r.type){case"preroll":{a={type:r.type,adBreakDone:this.wrapAdBreakDone(r.adBreakDone)};break}case"reward":{a={name:r.name,type:r.type,beforeAd:this.wrapBeforeAd(r.beforeAd),beforeReward:this.wrapBeforeReward(r.beforeReward),adDismissed:this.wrapAdDismissed(r.adDismissed),adViewed:this.wrapAdViewed(r.adViewed),afterAd:this.wrapAfterAd(r.afterAd),adBreakDone:this.wrapAdBreakDone(r.adBreakDone)};break}default:{a={name:r.name,type:r.type,beforeAd:this.wrapBeforeAd(r.beforeAd),afterAd:this.wrapAfterAd(r.afterAd),adBreakDone:this.wrapAdBreakDone(r.adBreakDone)};break}}window.setTimeout(()=>{var s,u,d,y,h,p,f;this.adsHasResponse||(this.context.track("CallAdBreakTimeout",{type:r.type,provider:(u=(s=this.currentProvider)==null?void 0:s.name)!=null?u:null}),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_AD_BREAK_TIMEOUT",{type:r.type,provider:(y=(d=this.currentProvider)==null?void 0:d.name)!=null?y:null}),(p=this.continueCallback)==null||p.call(this,[!0,{breakType:r.type,breakName:r.type==="preroll"?"":(h=r.name)!=null?h:"",breakFormat:r.type==="reward"?"reward":"interstitial",breakStatus:"timeout"}]),(f=this.adIsShowingCallback)==null||f.call(this,!1))},5e3),this.context.track("CallAdBreak",this.paramsToTrack),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_AD_BREAK",this.paramsToTrack),t.adBreak(a,n),window.JoliTesterBridge&&console.log("joli-fullscreen-ad-show")})})}};function Pn(e,t,r){return(t=Th(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Th(e){var t=xh(e,"string");return typeof t=="symbol"?t:t+""}function xh(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var No=class{constructor(t){Pn(this,"context",void 0),Pn(this,"adBreakIsShowing",!1),Pn(this,"reportPageJumpOut",()=>{this.context.track("AdBreakJumpOut",{context:"AdsActionDetection"})}),Pn(this,"reportPageHide",()=>{this.context.track("AdBreakHide",{context:"AdsActionDetection"})}),this.context=t,window.addEventListener("visibilitychange",()=>{document.hidden&&this.adBreakIsShowing&&this.reportPageHide()}),window.addEventListener("beforeunload",r=>{this.adBreakIsShowing&&this.reportPageJumpOut()})}};function Dn(e,t,r){return(t=Lh(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Lh(e){var t=Ph(e,"string");return typeof t=="symbol"?t:t+""}function Ph(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Uo=class{constructor(t){Dn(this,"configs",null),Dn(this,"firstRun",!0),Dn(this,"context",void 0),Dn(this,"contextInfo",void 0),this.context=t,this.contextInfo=this.context.getContextInfo(),this.init()}init(){return L(this,null,function*(){try{this.configs=yield this.context.httpClient.get("/api/fe-configs/js-sdk/ads-channel-config",{})}catch(t){}})}shouldBypassCallingInterstitial(){var t,r;let n;if(!this.configs)this.init(),n=!this.firstRun;else{let i=(t=this.contextInfo.channel)!=null?t:"",o=this.configs[i],a=(r=o==null?void 0:o.interstitialRate)!=null?r:1;n=Math.random()<a}return this.firstRun=!1,n}};function Xe(e,t,r){return(t=Dh(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Dh(e){var t=Nh(e,"string");return typeof t=="symbol"?t:t+""}function Nh(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Mo=class{constructor(t,r){Xe(this,"name","ADSENSE"),Xe(this,"context",void 0),Xe(this,"contextInfo",void 0),Xe(this,"configured",!1),Xe(this,"initParams",void 0),Xe(this,"push",function(){let n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};window.adsbygoogle.push(n)}),Xe(this,"adConfig",n=>{let i=n,{onReady:o}=i,a=Yf(i,["onReady"]);this.context.track("CallAdConfig",a),this.configured?console.warn("Ad config already set, skipping"):(this.configured=!0,this.push(n))}),Xe(this,"adBreak",n=>{if(!this.contextInfo.objectId){console.warn("Game ID is not set, skip calling adBreak");return}this.push(n)}),Xe(this,"adUnit",n=>L(this,null,function*(){var i,o,a,s;if(this.context.track("CallAdUnit",{adFormat:(o=(i=n.adFormat)==null?void 0:i.toString())!=null?o:null,fullWidthResponsive:(a=n.fullWidthResponsive)!=null?a:null}),document.querySelector("#jolibox-ads")){console.warn("Ad unit already set, skipping");return}let{el:u,slot:d,adFormat:y,fullWidthResponsive:h,style:p}=n,f;if(!u)throw new Error("targeting element is required");if(typeof u=="string"?f=document.querySelector(u):f=u,!f)throw new Error("targeting element not found");let b=d;if(b||(b=this.initParams.unitId),!b)throw new Error("slot is required");let I=typeof y=="object"&&Array.isArray(y)?y.join(", "):y,C=document.createElement("ins");if(C.className="adsbygoogle",C.id="jolibox-ads",C.style.display="block",C.setAttribute("data-ad-client",this.initParams.clientId),C.setAttribute("data-ad-slot",b),I&&C.setAttribute("data-ad-format",I),h&&C.setAttribute("data-full-width-responsive",h),p&&C.setAttribute("style",p),(s=this.contextInfo.testAdsMode)!=null?s:!1){let w=document.createElement("div");w.style.position="absolute",w.style.top="0",w.style.left="0",w.style.width="100%",w.style.height="100%",w.style.display="flex",w.style.justifyContent="center",w.style.alignItems="center",w.style.backgroundColor="rgba(0, 0, 0, 0.5)",w.style.color="white",w.innerHTML="Test Ad",C.style.position="relative",f.appendChild(C),C.appendChild(w)}else f.appendChild(C),new MutationObserver(w=>{w.forEach(k=>{if(k.type==="attributes"&&k.attributeName==="data-ad-status"){let D=C.getAttribute("data-ad-status");this.context.track("AdSenseUnitStatusChanged",{status:D!=null?D:"null"})}})}).observe(C,{attributes:!0,attributeFilter:["data-ad-status"]}),this.push({})})),this.context=t,this.contextInfo=this.context.getContextInfo(),this.initParams=r,window.adsbygoogle=window.adsbygoogle||[]}init(){return L(this,null,function*(){var t;if(this.context.track("CallAdsInit",{provider:this.name}),typeof window=="undefined")return;let r="google-adsense",n=(t=this.contextInfo.testAdsMode)!=null?t:!1;if(!document.getElementById(r)&&this.initParams.clientId){let i=document.createElement("script");i.id=r,i.async=!0,i.crossOrigin="anonymous",i.src=`https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=${this.initParams.clientId}`,n&&i.setAttribute("data-adbreak-test","on"),this.initParams.channelId&&i.setAttribute("data-ad-channel",this.initParams.channelId),this.initParams.admobInterstitialSlot&&i.setAttribute("data-admob-interstitial-slot",this.initParams.admobInterstitialSlot),this.initParams.admobRewardedSlot&&i.setAttribute("data-admob-rewarded-slot",this.initParams.admobRewardedSlot),this.initParams.admobOnly&&i.setAttribute("data-admob-ads-only","on"),document.head.appendChild(i),this.context.track("LoadAdsenseCompleted",null)}})}};function Uh(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}function Mh(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),e.nonce!==void 0&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t}var Bh=function(){function e(r){var n=this;this._insertTag=function(i){var o;n.tags.length===0?n.insertionPoint?o=n.insertionPoint.nextSibling:n.prepend?o=n.container.firstChild:o=n.before:o=n.tags[n.tags.length-1].nextSibling,n.container.insertBefore(i,o),n.tags.push(i)},this.isSpeedy=r.speedy===void 0?!0:r.speedy,this.tags=[],this.ctr=0,this.nonce=r.nonce,this.key=r.key,this.container=r.container,this.prepend=r.prepend,this.insertionPoint=r.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(r){r.forEach(this._insertTag)},t.insert=function(r){this.ctr%(this.isSpeedy?65e3:1)===0&&this._insertTag(Mh(this));var n=this.tags[this.tags.length-1];if(this.isSpeedy){var i=Uh(n);try{i.insertRule(r,i.cssRules.length)}catch(o){}}else n.appendChild(document.createTextNode(r));this.ctr++},t.flush=function(){this.tags.forEach(function(r){var n;return(n=r.parentNode)==null?void 0:n.removeChild(r)}),this.tags=[],this.ctr=0},e}(),we="-ms-",Hn="-moz-",V="-webkit-",cu="comm",Xo="rule",Zo="decl",Jh="@import",du="@keyframes",Fh="@layer",Gh=Math.abs,Wn=String.fromCharCode,jh=Object.assign;function Hh(e,t){return pe(e,0)^45?(((t<<2^pe(e,0))<<2^pe(e,1))<<2^pe(e,2))<<2^pe(e,3):0}function fu(e){return e.trim()}function Vh(e,t){return(e=t.exec(e))?e[0]:e}function $(e,t,r){return e.replace(t,r)}function Bo(e,t){return e.indexOf(t)}function pe(e,t){return e.charCodeAt(t)|0}function gr(e,t,r){return e.slice(t,r)}function Ge(e){return e.length}function ea(e){return e.length}function Nn(e,t){return t.push(e),e}function $h(e,t){return e.map(t).join("")}var zn=1,Ft=1,hu=0,Oe=0,de=0,Gt="";function Yn(e,t,r,n,i,o,a){return{value:e,root:t,parent:r,type:n,props:i,children:o,line:zn,column:Ft,length:a,return:""}}function mr(e,t){return jh(Yn("",null,null,"",null,null,0),e,{length:-e.length},t)}function qh(){return de}function Kh(){return de=Oe>0?pe(Gt,--Oe):0,Ft--,de===10&&(Ft=1,zn--),de}function De(){return de=Oe<hu?pe(Gt,Oe++):0,Ft++,de===10&&(Ft=1,zn++),de}function je(){return pe(Gt,Oe)}function Mn(){return Oe}function br(e,t){return gr(Gt,e,t)}function yr(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function mu(e){return zn=Ft=1,hu=Ge(Gt=e),Oe=0,[]}function pu(e){return Gt="",e}function Bn(e){return fu(br(Oe-1,Jo(e===91?e+2:e===40?e+1:e)))}function Wh(e){for(;(de=je())&&de<33;)De();return yr(e)>2||yr(de)>3?"":" "}function zh(e,t){for(;--t&&De()&&!(de<48||de>102||de>57&&de<65||de>70&&de<97););return br(e,Mn()+(t<6&&je()==32&&De()==32))}function Jo(e){for(;De();)switch(de){case e:return Oe;case 34:case 39:e!==34&&e!==39&&Jo(de);break;case 40:e===41&&Jo(e);break;case 92:De();break}return Oe}function Yh(e,t){for(;De()&&e+de!==57&&!(e+de===84&&je()===47););return"/*"+br(t,Oe-1)+"*"+Wn(e===47?e:De())}function Qh(e){for(;!yr(je());)De();return br(e,Oe)}function Xh(e){return pu(Jn("",null,null,null,[""],e=mu(e),0,[0],e))}function Jn(e,t,r,n,i,o,a,s,u){for(var d=0,y=0,h=a,p=0,f=0,b=0,I=1,C=1,w=1,k=0,D="",G=i,H=o,S=n,N=D;C;)switch(b=k,k=De()){case 40:if(b!=108&&pe(N,h-1)==58){Bo(N+=$(Bn(k),"&","&\f"),"&\f")!=-1&&(w=-1);break}case 34:case 39:case 91:N+=Bn(k);break;case 9:case 10:case 13:case 32:N+=Wh(b);break;case 92:N+=zh(Mn()-1,7);continue;case 47:switch(je()){case 42:case 47:Nn(Zh(Yh(De(),Mn()),t,r),u);break;default:N+="/"}break;case 123*I:s[d++]=Ge(N)*w;case 125*I:case 59:case 0:switch(k){case 0:case 125:C=0;case 59+y:w==-1&&(N=$(N,/\f/g,"")),f>0&&Ge(N)-h&&Nn(f>32?Jl(N+";",n,r,h-1):Jl($(N," ","")+";",n,r,h-2),u);break;case 59:N+=";";default:if(Nn(S=Bl(N,t,r,d,y,i,s,D,G=[],H=[],h),o),k===123)if(y===0)Jn(N,t,S,S,G,o,h,s,H);else switch(p===99&&pe(N,3)===110?100:p){case 100:case 108:case 109:case 115:Jn(e,S,S,n&&Nn(Bl(e,S,S,0,0,i,s,D,i,G=[],h),H),i,H,h,s,n?G:H);break;default:Jn(N,S,S,S,[""],H,0,s,H)}}d=y=f=0,I=w=1,D=N="",h=a;break;case 58:h=1+Ge(N),f=b;default:if(I<1){if(k==123)--I;else if(k==125&&I++==0&&Kh()==125)continue}switch(N+=Wn(k),k*I){case 38:w=y>0?1:(N+="\f",-1);break;case 44:s[d++]=(Ge(N)-1)*w,w=1;break;case 64:je()===45&&(N+=Bn(De())),p=je(),y=h=Ge(D=N+=Qh(Mn())),k++;break;case 45:b===45&&Ge(N)==2&&(I=0)}}return o}function Bl(e,t,r,n,i,o,a,s,u,d,y){for(var h=i-1,p=i===0?o:[""],f=ea(p),b=0,I=0,C=0;b<n;++b)for(var w=0,k=gr(e,h+1,h=Gh(I=a[b])),D=e;w<f;++w)(D=fu(I>0?p[w]+" "+k:$(k,/&\f/g,p[w])))&&(u[C++]=D);return Yn(e,t,r,i===0?Xo:s,u,d,y)}function Zh(e,t,r){return Yn(e,t,r,cu,Wn(qh()),gr(e,2,-2),0)}function Jl(e,t,r,n){return Yn(e,t,r,Zo,gr(e,0,n),gr(e,n+1,-1),n)}function Jt(e,t){for(var r="",n=ea(e),i=0;i<n;i++)r+=t(e[i],i,e,t)||"";return r}function em(e,t,r,n){switch(e.type){case Fh:if(e.children.length)break;case Jh:case Zo:return e.return=e.return||e.value;case cu:return"";case du:return e.return=e.value+"{"+Jt(e.children,n)+"}";case Xo:e.value=e.props.join(",")}return Ge(r=Jt(e.children,n))?e.return=e.value+"{"+r+"}":""}function tm(e){var t=ea(e);return function(r,n,i,o){for(var a="",s=0;s<t;s++)a+=e[s](r,n,i,o)||"";return a}}function rm(e){return function(t){t.root||(t=t.return)&&e(t)}}function nm(e){var t=Object.create(null);return function(r){return t[r]===void 0&&(t[r]=e(r)),t[r]}}var im=function(e,t,r){for(var n=0,i=0;n=i,i=je(),n===38&&i===12&&(t[r]=1),!yr(i);)De();return br(e,Oe)},om=function(e,t){var r=-1,n=44;do switch(yr(n)){case 0:n===38&&je()===12&&(t[r]=1),e[r]+=im(Oe-1,t,r);break;case 2:e[r]+=Bn(n);break;case 4:if(n===44){e[++r]=je()===58?"&\f":"",t[r]=e[r].length;break}default:e[r]+=Wn(n)}while(n=De());return e},am=function(e,t){return pu(om(mu(e),t))},Fl=new WeakMap,sm=function(e){if(!(e.type!=="rule"||!e.parent||e.length<1)){for(var t=e.value,r=e.parent,n=e.column===r.column&&e.line===r.line;r.type!=="rule";)if(r=r.parent,!r)return;if(!(e.props.length===1&&t.charCodeAt(0)!==58&&!Fl.get(r))&&!n){Fl.set(e,!0);for(var i=[],o=am(t,i),a=r.props,s=0,u=0;s<o.length;s++)for(var d=0;d<a.length;d++,u++)e.props[u]=i[s]?o[s].replace(/&\f/g,a[d]):a[d]+" "+o[s]}}},lm=function(e){if(e.type==="decl"){var t=e.value;t.charCodeAt(0)===108&&t.charCodeAt(2)===98&&(e.return="",e.value="")}};function vu(e,t){switch(Hh(e,t)){case 5103:return V+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return V+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return V+e+Hn+e+we+e+e;case 6828:case 4268:return V+e+we+e+e;case 6165:return V+e+we+"flex-"+e+e;case 5187:return V+e+$(e,/(\w+).+(:[^]+)/,V+"box-$1$2"+we+"flex-$1$2")+e;case 5443:return V+e+we+"flex-item-"+$(e,/flex-|-self/,"")+e;case 4675:return V+e+we+"flex-line-pack"+$(e,/align-content|flex-|-self/,"")+e;case 5548:return V+e+we+$(e,"shrink","negative")+e;case 5292:return V+e+we+$(e,"basis","preferred-size")+e;case 6060:return V+"box-"+$(e,"-grow","")+V+e+we+$(e,"grow","positive")+e;case 4554:return V+$(e,/([^-])(transform)/g,"$1"+V+"$2")+e;case 6187:return $($($(e,/(zoom-|grab)/,V+"$1"),/(image-set)/,V+"$1"),e,"")+e;case 5495:case 3959:return $(e,/(image-set\([^]*)/,V+"$1$`$1");case 4968:return $($(e,/(.+:)(flex-)?(.*)/,V+"box-pack:$3"+we+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+V+e+e;case 4095:case 3583:case 4068:case 2532:return $(e,/(.+)-inline(.+)/,V+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(Ge(e)-1-t>6)switch(pe(e,t+1)){case 109:if(pe(e,t+4)!==45)break;case 102:return $(e,/(.+:)(.+)-([^]+)/,"$1"+V+"$2-$3$1"+Hn+(pe(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~Bo(e,"stretch")?vu($(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(pe(e,t+1)!==115)break;case 6444:switch(pe(e,Ge(e)-3-(~Bo(e,"!important")&&10))){case 107:return $(e,":",":"+V)+e;case 101:return $(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+V+(pe(e,14)===45?"inline-":"")+"box$3$1"+V+"$2$3$1"+we+"$2box$3")+e}break;case 5936:switch(pe(e,t+11)){case 114:return V+e+we+$(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return V+e+we+$(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return V+e+we+$(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return V+e+we+e+e}return e}var um=function(e,t,r,n){if(e.length>-1&&!e.return)switch(e.type){case Zo:e.return=vu(e.value,e.length);break;case du:return Jt([mr(e,{value:$(e.value,"@","@"+V)})],n);case Xo:if(e.length)return $h(e.props,function(i){switch(Vh(i,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return Jt([mr(e,{props:[$(i,/:(read-\w+)/,":"+Hn+"$1")]})],n);case"::placeholder":return Jt([mr(e,{props:[$(i,/:(plac\w+)/,":"+V+"input-$1")]}),mr(e,{props:[$(i,/:(plac\w+)/,":"+Hn+"$1")]}),mr(e,{props:[$(i,/:(plac\w+)/,we+"input-$1")]})],n)}return""})}},cm=[um],dm=function(e){var t=e.key;if(t==="css"){var r=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(r,function(b){var I=b.getAttribute("data-emotion");I.indexOf(" ")!==-1&&(document.head.appendChild(b),b.setAttribute("data-s",""))})}var n=e.stylisPlugins||cm,i={},o,a=[];o=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+t+' "]'),function(b){for(var I=b.getAttribute("data-emotion").split(" "),C=1;C<I.length;C++)i[I[C]]=!0;a.push(b)});var s,u=[sm,lm];{var d,y=[em,rm(function(b){d.insert(b)})],h=tm(u.concat(n,y)),p=function(b){return Jt(Xh(b),h)};s=function(b,I,C,w){d=C,p(b?b+"{"+I.styles+"}":I.styles),w&&(f.inserted[I.name]=!0)}}var f={key:t,sheet:new Bh({key:t,container:o,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:i,registered:{},insert:s};return f.sheet.hydrate(a),f};function fm(e){for(var t=0,r,n=0,i=e.length;i>=4;++n,i-=4)r=e.charCodeAt(n)&255|(e.charCodeAt(++n)&255)<<8|(e.charCodeAt(++n)&255)<<16|(e.charCodeAt(++n)&255)<<24,r=(r&65535)*1540483477+((r>>>16)*59797<<16),r^=r>>>24,t=(r&65535)*1540483477+((r>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(i){case 3:t^=(e.charCodeAt(n+2)&255)<<16;case 2:t^=(e.charCodeAt(n+1)&255)<<8;case 1:t^=e.charCodeAt(n)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}var hm={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,scale:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},mm=/[A-Z]|^ms/g,pm=/_EMO_([^_]+?)_([^]*?)_EMO_/g,_u=function(e){return e.charCodeAt(1)===45},Gl=function(e){return e!=null&&typeof e!="boolean"},So=nm(function(e){return _u(e)?e:e.replace(mm,"-$&").toLowerCase()}),jl=function(e,t){switch(e){case"animation":case"animationName":if(typeof t=="string")return t.replace(pm,function(r,n,i){return ut={name:n,styles:i,next:ut},n})}return hm[e]!==1&&!_u(e)&&typeof t=="number"&&t!==0?t+"px":t};function Vn(e,t,r){if(r==null)return"";var n=r;if(n.__emotion_styles!==void 0)return n;switch(typeof r){case"boolean":return"";case"object":{var i=r;if(i.anim===1)return ut={name:i.name,styles:i.styles,next:ut},i.name;var o=r;if(o.styles!==void 0){var a=o.next;if(a!==void 0)for(;a!==void 0;)ut={name:a.name,styles:a.styles,next:ut},a=a.next;var s=o.styles+";";return s}return vm(e,t,r)}}var u=r;if(t==null)return u;var d=t[u];return d!==void 0?d:u}function vm(e,t,r){var n="";if(Array.isArray(r))for(var i=0;i<r.length;i++)n+=Vn(e,t,r[i])+";";else for(var o in r){var a=r[o];if(typeof a!="object"){var s=a;t!=null&&t[s]!==void 0?n+=o+"{"+t[s]+"}":Gl(s)&&(n+=So(o)+":"+jl(o,s)+";")}else if(Array.isArray(a)&&typeof a[0]=="string"&&(t==null||t[a[0]]===void 0))for(var u=0;u<a.length;u++)Gl(a[u])&&(n+=So(o)+":"+jl(o,a[u])+";");else{var d=Vn(e,t,a);switch(o){case"animation":case"animationName":{n+=So(o)+":"+d+";";break}default:n+=o+"{"+d+"}"}}}return n}var Hl=/label:\s*([^\s;{]+)\s*(;|$)/g,ut;function Co(e,t,r){if(e.length===1&&typeof e[0]=="object"&&e[0]!==null&&e[0].styles!==void 0)return e[0];var n=!0,i="";ut=void 0;var o=e[0];if(o==null||o.raw===void 0)n=!1,i+=Vn(r,t,o);else{var a=o;i+=a[0]}for(var s=1;s<e.length;s++)if(i+=Vn(r,t,e[s]),n){var u=o;i+=u[s]}Hl.lastIndex=0;for(var d="",y;(y=Hl.exec(i))!==null;)d+="-"+y[1];var h=fm(i)+d;return{name:h,styles:i,next:ut}}function gu(e,t,r){var n="";return r.split(" ").forEach(function(i){e[i]!==void 0?t.push(e[i]+";"):i&&(n+=i+" ")}),n}var _m=function(e,t,r){var n=e.key+"-"+t.name;e.registered[n]===void 0&&(e.registered[n]=t.styles)},gm=function(e,t,r){_m(e,t);var n=e.key+"-"+t.name;if(e.inserted[t.name]===void 0){var i=t;do e.insert(t===i?"."+n:"",i,e.sheet,!0),i=i.next;while(i!==void 0)}};function Vl(e,t){if(e.inserted[t.name]===void 0)return e.insert("",t,e.sheet,!0)}function $l(e,t,r){var n=[],i=gu(e,n,r);return n.length<2?r:i+t(n)}var ym=function(e){var t=dm(e);t.sheet.speedy=function(a){this.isSpeedy=a},t.compat=!0;var r=function(){for(var a=arguments.length,s=new Array(a),u=0;u<a;u++)s[u]=arguments[u];var d=Co(s,t.registered,void 0);return gm(t,d),t.key+"-"+d.name},n=function(){for(var a=arguments.length,s=new Array(a),u=0;u<a;u++)s[u]=arguments[u];var d=Co(s,t.registered),y="animation-"+d.name;return Vl(t,{name:d.name,styles:"@keyframes "+y+"{"+d.styles+"}"}),y},i=function(){for(var a=arguments.length,s=new Array(a),u=0;u<a;u++)s[u]=arguments[u];var d=Co(s,t.registered);Vl(t,d)},o=function(){for(var a=arguments.length,s=new Array(a),u=0;u<a;u++)s[u]=arguments[u];return $l(t.registered,r,wm(s))};return{css:r,cx:o,injectGlobal:i,keyframes:n,hydrate:function(a){a.forEach(function(s){t.inserted[s]=!0})},flush:function(){t.registered={},t.inserted={},t.sheet.flush()},sheet:t.sheet,cache:t,getRegisteredStyles:gu.bind(null,t.registered),merge:$l.bind(null,t.registered,r)}},wm=function e(t){for(var r="",n=0;n<t.length;n++){var i=t[n];if(i!=null){var o=void 0;switch(typeof i){case"boolean":break;case"object":{if(Array.isArray(i))o=e(i);else{o="";for(var a in i)i[a]&&a&&(o&&(o+=" "),o+=a)}break}default:o=i}o&&(r&&(r+=" "),r+=o)}}return r},bm=ym({key:"css"}),jt=bm.css,Fo,Pe,Oo,ql,Kl=0,yu=[],fe=B,Wl=fe.__b,zl=fe.__r,Yl=fe.diffed,Ql=fe.__c,Xl=fe.unmount,Zl=fe.__;function Em(e,t){fe.__h&&fe.__h(Pe,e,Kl||t),Kl=0;var r=Pe.__H||(Pe.__H={__:[],__h:[]});return e>=r.__.length&&r.__.push({}),r.__[e]}function wu(e,t){var r=Em(Fo++,7);return Sm(r.__H,t)&&(r.__=e(),r.__H=t,r.__h=e),r.__}function Im(){for(var e;e=yu.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(Fn),e.__H.__h.forEach(Go),e.__H.__h=[]}catch(t){e.__H.__h=[],fe.__e(t,e.__v)}}fe.__b=function(e){Pe=null,Wl&&Wl(e)},fe.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),Zl&&Zl(e,t)},fe.__r=function(e){zl&&zl(e),Fo=0;var t=(Pe=e.__c).__H;t&&(Oo===Pe?(t.__h=[],Pe.__h=[],t.__.forEach(function(r){r.__N&&(r.__=r.__N),r.u=r.__N=void 0})):(t.__h.forEach(Fn),t.__h.forEach(Go),t.__h=[],Fo=0)),Oo=Pe},fe.diffed=function(e){Yl&&Yl(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(yu.push(t)!==1&&ql===fe.requestAnimationFrame||((ql=fe.requestAnimationFrame)||Am)(Im)),t.__H.__.forEach(function(r){r.u&&(r.__H=r.u),r.u=void 0})),Oo=Pe=null},fe.__c=function(e,t){t.some(function(r){try{r.__h.forEach(Fn),r.__h=r.__h.filter(function(n){return!n.__||Go(n)})}catch(n){t.some(function(i){i.__h&&(i.__h=[])}),t=[],fe.__e(n,r.__v)}}),Ql&&Ql(e,t)},fe.unmount=function(e){Xl&&Xl(e);var t,r=e.__c;r&&r.__H&&(r.__H.__.forEach(function(n){try{Fn(n)}catch(i){t=i}}),r.__H=void 0,t&&fe.__e(t,r.__v))};var eu=typeof requestAnimationFrame=="function";function Am(e){var t,r=function(){clearTimeout(n),eu&&cancelAnimationFrame(t),setTimeout(e)},n=setTimeout(r,100);eu&&(t=requestAnimationFrame(r))}function Fn(e){var t=Pe,r=e.__c;typeof r=="function"&&(e.__c=void 0,r()),Pe=t}function Go(e){var t=Pe;e.__c=e.__(),Pe=t}function Sm(e,t){return!e||e.length!==t.length||t.some(function(r,n){return r!==e[n]})}var Cm=Symbol.for("preact-signals");function Qn(){if(ct>1)ct--;else{for(var e,t=!1;pr!==void 0;){var r=pr;for(pr=void 0,jo++;r!==void 0;){var n=r.o;if(r.o=void 0,r.f&=-3,!(8&r.f)&&Eu(r))try{r.c()}catch(i){t||(e=i,t=!0)}r=n}}if(jo=0,ct--,t)throw e}}function Ce(e){if(ct>0)return e();ct++;try{return e()}finally{Qn()}}var Q=void 0,pr=void 0,ct=0,jo=0,$n=0;function bu(e){if(Q!==void 0){var t=e.n;if(t===void 0||t.t!==Q)return t={i:0,S:e,p:Q.s,n:void 0,t:Q,e:void 0,x:void 0,r:t},Q.s!==void 0&&(Q.s.n=t),Q.s=t,e.n=t,32&Q.f&&e.S(t),t;if(t.i===-1)return t.i=0,t.n!==void 0&&(t.n.p=t.p,t.p!==void 0&&(t.p.n=t.n),t.p=Q.s,t.n=void 0,Q.s.n=t,Q.s=t),t}}function ve(e){this.v=e,this.i=0,this.n=void 0,this.t=void 0}ve.prototype.brand=Cm;ve.prototype.h=function(){return!0};ve.prototype.S=function(e){this.t!==e&&e.e===void 0&&(e.x=this.t,this.t!==void 0&&(this.t.e=e),this.t=e)};ve.prototype.U=function(e){if(this.t!==void 0){var t=e.e,r=e.x;t!==void 0&&(t.x=r,e.e=void 0),r!==void 0&&(r.e=t,e.x=void 0),e===this.t&&(this.t=r)}};ve.prototype.subscribe=function(e){var t=this;return Ir(function(){var r=t.value,n=Q;Q=void 0;try{e(r)}finally{Q=n}})};ve.prototype.valueOf=function(){return this.value};ve.prototype.toString=function(){return this.value+""};ve.prototype.toJSON=function(){return this.value};ve.prototype.peek=function(){var e=Q;Q=void 0;try{return this.value}finally{Q=e}};Object.defineProperty(ve.prototype,"value",{get:function(){var e=bu(this);return e!==void 0&&(e.i=this.i),this.v},set:function(e){if(e!==this.v){if(jo>100)throw new Error("Cycle detected");this.v=e,this.i++,$n++,ct++;try{for(var t=this.t;t!==void 0;t=t.x)t.t.N()}finally{Qn()}}}});function X(e){return new ve(e)}function Eu(e){for(var t=e.s;t!==void 0;t=t.n)if(t.S.i!==t.i||!t.S.h()||t.S.i!==t.i)return!0;return!1}function Iu(e){for(var t=e.s;t!==void 0;t=t.n){var r=t.S.n;if(r!==void 0&&(t.r=r),t.S.n=t,t.i=-1,t.n===void 0){e.s=t;break}}}function Au(e){for(var t=e.s,r=void 0;t!==void 0;){var n=t.p;t.i===-1?(t.S.U(t),n!==void 0&&(n.n=t.n),t.n!==void 0&&(t.n.p=n)):r=t,t.S.n=t.r,t.r!==void 0&&(t.r=void 0),t=n}e.s=r}function Ht(e){ve.call(this,void 0),this.x=e,this.s=void 0,this.g=$n-1,this.f=4}(Ht.prototype=new ve).h=function(){if(this.f&=-3,1&this.f)return!1;if((36&this.f)==32||(this.f&=-5,this.g===$n))return!0;if(this.g=$n,this.f|=1,this.i>0&&!Eu(this))return this.f&=-2,!0;var e=Q;try{Iu(this),Q=this;var t=this.x();(16&this.f||this.v!==t||this.i===0)&&(this.v=t,this.f&=-17,this.i++)}catch(r){this.v=r,this.f|=16,this.i++}return Q=e,Au(this),this.f&=-2,!0};Ht.prototype.S=function(e){if(this.t===void 0){this.f|=36;for(var t=this.s;t!==void 0;t=t.n)t.S.S(t)}ve.prototype.S.call(this,e)};Ht.prototype.U=function(e){if(this.t!==void 0&&(ve.prototype.U.call(this,e),this.t===void 0)){this.f&=-33;for(var t=this.s;t!==void 0;t=t.n)t.S.U(t)}};Ht.prototype.N=function(){if(!(2&this.f)){this.f|=6;for(var e=this.t;e!==void 0;e=e.x)e.t.N()}};Object.defineProperty(Ht.prototype,"value",{get:function(){if(1&this.f)throw new Error("Cycle detected");var e=bu(this);if(this.h(),e!==void 0&&(e.i=this.i),16&this.f)throw this.v;return this.v}});function vr(e){return new Ht(e)}function Su(e){var t=e.u;if(e.u=void 0,typeof t=="function"){ct++;var r=Q;Q=void 0;try{t()}catch(n){throw e.f&=-2,e.f|=8,ta(e),n}finally{Q=r,Qn()}}}function ta(e){for(var t=e.s;t!==void 0;t=t.n)t.S.U(t);e.x=void 0,e.s=void 0,Su(e)}function Om(e){if(Q!==this)throw new Error("Out-of-order effect");Au(this),Q=e,this.f&=-2,8&this.f&&ta(this),Qn()}function Er(e){this.x=e,this.u=void 0,this.s=void 0,this.o=void 0,this.f=32}Er.prototype.c=function(){var e=this.S();try{if(8&this.f||this.x===void 0)return;var t=this.x();typeof t=="function"&&(this.u=t)}finally{e()}};Er.prototype.S=function(){if(1&this.f)throw new Error("Cycle detected");this.f|=1,this.f&=-9,Su(this),Iu(this),ct++;var e=Q;return Q=this,Om.bind(this,e)};Er.prototype.N=function(){2&this.f||(this.f|=2,this.o=pr,pr=this)};Er.prototype.d=function(){this.f|=8,1&this.f||ta(this)};function Ir(e){var t=new Er(e);try{t.c()}catch(r){throw t.d(),r}return t.d.bind(t)}var Cu,Ro,Ou=[];Ir(function(){Cu=this.N})();function Vt(e,t){B[e]=t.bind(null,B[e]||function(){})}function qn(e){Ro&&Ro(),Ro=e&&e.S()}function Ru(e){var t=this,r=e.data,n=ku(r);n.value=r;var i=wu(function(){for(var s=t,u=t.__v;u=u.__;)if(u.__c){u.__c.__$f|=4;break}var d=vr(function(){var f=n.value.value;return f===0?0:f===!0?"":f||""}),y=vr(function(){return!Array.isArray(d.value)&&!co(d.value)}),h=Ir(function(){if(this.N=Tu,y.value){var f=d.value;s.__v&&s.__v.__e&&s.__v.__e.nodeType===3&&(s.__v.__e.data=f)}}),p=t.__$u.d;return t.__$u.d=function(){h(),p.call(this)},[y,d]},[]),o=i[0],a=i[1];return o.value?a.peek():a.value}Ru.displayName="_st";Object.defineProperties(ve.prototype,{constructor:{configurable:!0,value:void 0},type:{configurable:!0,value:Ru},props:{configurable:!0,get:function(){return{data:this}}},__b:{configurable:!0,value:1}});Vt("__b",function(e,t){if(typeof t.type=="string"){var r,n=t.props;for(var i in n)if(i!=="children"){var o=n[i];o instanceof ve&&(r||(t.__np=r={}),r[i]=o,n[i]=o.peek())}}e(t)});Vt("__r",function(e,t){qn();var r,n=t.__c;n&&(n.__$f&=-2,(r=n.__$u)===void 0&&(n.__$u=r=function(i){var o;return Ir(function(){o=this}),o.c=function(){n.__$f|=1,n.setState({})},o}())),qn(r),e(t)});Vt("__e",function(e,t,r,n){qn(),e(t,r,n)});Vt("diffed",function(e,t){qn();var r;if(typeof t.type=="string"&&(r=t.__e)){var n=t.__np,i=t.props;if(n){var o=r.U;if(o)for(var a in o){var s=o[a];s!==void 0&&!(a in n)&&(s.d(),o[a]=void 0)}else o={},r.U=o;for(var u in n){var d=o[u],y=n[u];d===void 0?(d=Rm(r,u,y,i),o[u]=d):d.o(y,i)}}}e(t)});function Rm(e,t,r,n){var i=t in e&&e.ownerSVGElement===void 0,o=X(r);return{o:function(a,s){o.value=a,n=s},d:Ir(function(){this.N=Tu;var a=o.value.value;n[t]!==a&&(n[t]=a,i?e[t]=a:a?e.setAttribute(t,a):e.removeAttribute(t))})}}Vt("unmount",function(e,t){if(typeof t.type=="string"){var r=t.__e;if(r){var n=r.U;if(n){r.U=void 0;for(var i in n){var o=n[i];o&&o.d()}}}}else{var a=t.__c;if(a){var s=a.__$u;s&&(a.__$u=void 0,s.d())}}e(t)});Vt("__h",function(e,t,r,n){(n<3||n===9)&&(t.__$f|=2),e(t,r,n)});Le.prototype.shouldComponentUpdate=function(e,t){var r=this.__$u,n=r&&r.s!==void 0;for(var i in t)return!0;if(this.__f||typeof this.u=="boolean"&&this.u===!0){var o=2&this.__$f;if(!(n||o||4&this.__$f)||1&this.__$f)return!0}else if(!(n||4&this.__$f)||3&this.__$f)return!0;for(var a in e)if(a!=="__source"&&e[a]!==this.props[a])return!0;for(var s in this.props)if(!(s in e))return!0;return!1};function ku(e){return wu(function(){return X(e)},[])}var km=function(e){queueMicrotask(function(){queueMicrotask(e)})};function Tm(){Ce(function(){for(var e;e=Ou.shift();)Cu.call(e)})}function Tu(){Ou.push(this)===1&&(B.requestAnimationFrame||km)(Tm)}var be=jt`
1
+ var Ed=Object.create;var wa=Object.defineProperty,Id=Object.defineProperties,Ad=Object.getOwnPropertyDescriptor,Sd=Object.getOwnPropertyDescriptors,Cd=Object.getOwnPropertyNames,Bn=Object.getOwnPropertySymbols,ns=Object.getPrototypeOf,ba=Object.prototype.hasOwnProperty,rs=Object.prototype.propertyIsEnumerable,Rd=Reflect.get;var ts=(e,t,n)=>t in e?wa(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,q=(e,t)=>{for(var n in t||(t={}))ba.call(t,n)&&ts(e,n,t[n]);if(Bn)for(var n of Bn(t))rs.call(t,n)&&ts(e,n,t[n]);return e},Ee=(e,t)=>Id(e,Sd(t));var tn=(e=>typeof require!="undefined"?require:typeof Proxy!="undefined"?new Proxy(e,{get:(t,n)=>(typeof require!="undefined"?require:t)[n]}):e)(function(e){if(typeof require!="undefined")return require.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')});var as=(e,t)=>{var n={};for(var r in e)ba.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&Bn)for(var r of Bn(e))t.indexOf(r)<0&&rs.call(e,r)&&(n[r]=e[r]);return n};var ee=(e,t)=>()=>(e&&(t=e(e=0)),t);var Ea=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var Od=(e,t,n,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of Cd(t))!ba.call(e,a)&&a!==n&&wa(e,a,{get:()=>t[a],enumerable:!(r=Ad(t,a))||r.enumerable});return e};var Ia=(e,t,n)=>(n=e!=null?Ed(ns(e)):{},Od(t||!e||!e.__esModule?wa(n,"default",{value:e,enumerable:!0}):n,e));var is=(e,t,n)=>Rd(ns(e),n,t);var I=(e,t,n)=>new Promise((r,a)=>{var i=l=>{try{s(n.next(l))}catch(d){a(d)}},o=l=>{try{s(n.throw(l))}catch(d){a(d)}},s=l=>l.done?r(l.value):Promise.resolve(l.value).then(i,o);s((n=n.apply(e,t)).next())});function Ud(e){return new Promise(t=>{setTimeout(()=>{t()},e)})}function Pa(e){return typeof e=="string"}function fs(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)&&!(e instanceof RegExp)&&!(e instanceof Date)}function hs(e){return typeof e=="object"&&Array.isArray(e)}function Bd(e){return typeof e=="undefined"}function Md(e){return Bd(e)||e===null}function Gd(e){return typeof e=="function"}function ms(e){let t=e,n=null,r=function(...a){return n||(n=new t(...a)),n};return r.prototype=t.prototype,r}function ps(e,t,n){if(typeof n!="function")throw new Error("[Jolibox SDK]Customizer must be a function");function r(a,i){for(let o in i)if(Object.prototype.hasOwnProperty.call(i,o)){let s=a[o],l=i[o],d=n(s,l,o,a,i);d!==void 0?a[o]=d:ls(l)&&ls(s)?a[o]=r(xa({},s),l):Array.isArray(l)&&Array.isArray(s)?a[o]=[...s,...l]:a[o]=l}return a}return r(e,t)}function ls(e){return e&&typeof e=="object"&&e.constructor===Object}function vs(e,t){if(Array.isArray(e))return e.concat(t)}function on(e,t,n={}){let r=null,a,i,o,{leading:s=!1,trailing:l=!0}=n,d=()=>(o=e.apply(i,a),a=void 0,i=void 0,o),_=function(...h){a=h,i=this;let p=s&&!r;if(r&&clearTimeout(r),r=setTimeout(()=>{r=null,l&&!p&&d()},t),p)return d()};return _.cancel=()=>{r&&clearTimeout(r),r=null,a=i=void 0},_.flush=()=>{if(r)return clearTimeout(r),r=null,d()},_}function Hd(e,t){return(...n)=>t(e,...n)}function ws(e){return t=>Hd(t,function(n,...r){if(typeof n=="function")try{return n.apply(this,r)}catch(a){e(new Fd(`${a}`))}})}function nn(e){return(...t)=>{var n,r;((r=(n=globalThis.VConsole)==null?void 0:n[e])!=null?r:globalThis.console[e])(...t)}}function Mn(e,t){return t.map(n=>{if(n==="params"&&e[n]){let r=e[n];return Object.keys(r).reduce((a,i)=>(a[i]=String(r[i]),a),{})}return e[n]})}function Kd(e){let t=e.location?Mn(e.location,us):null,n=e.target?Mn(e.target,us):null;return Mn(Dd(xa({},e),{location:t,target:n}),$d)}function Ba(e){let t=e.events.map(r=>Kd(r)),n=Mn(e.device,Wd);return[e.protocolVersion,t,n,e.project]}function zd(){if(typeof window=="undefined")return{getItem:()=>null,setItem:()=>{},removeItem:()=>{},clear:()=>{},length:0,key:()=>null};try{if(window.__joliboxLocalStorage__)return window.__joliboxLocalStorage__;let e=Object.getOwnPropertyDescriptor(window,"localStorage");if(e&&e.get){let r=e.get.call(window);return window.__joliboxLocalStorage__=r,r}if(e=Object.getOwnPropertyDescriptor(Object.getPrototypeOf(window),"localStorage"),e&&e.get)return e.get.call(window);let t=Window.prototype,n=Object.getOwnPropertyDescriptor(t,"localStorage");if(n&&n.get){let r=n.get.call(window);return window.__joliboxLocalStorage__=r,r}return localStorage}catch(e){return console.warn("Failed to get original localStorage, fallback to default implementation",e),localStorage}}function Ja(e,t,n){let r=window.location.hostname,a=r.split("."),i=n?t:e;if(/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/.test(r))return`${i}.jolibox.com`;if(a.length>=2){let o=a.slice(-2).join(".");if(o==="jolibox.com"||o==="pico-game.com"||o==="joyslite.com")return`${i}.${o}`}return`${i}.jolibox.com`}function Is(e){return Ja("app","stg-app",e)}function kt(e){return`https://${Ja("api","stg-api",e)}`}function nf(e){return Ja("collect","stg-collect",e)}function As(e){return`https://${nf(e)}`}function sf(e){return new Promise(t=>Ss(e)(t))}function Ss(e){return(t,n=null)=>{let r=!1;return e(a=>{if(!r)return r=!0,t.call(n,a)},null)}}function lf(e,t){return(n=>{let r,a={onWillAddFirstListener(){r=n(i.fire,i)}},i=new an(a);return i.event})((n,r=null)=>e(a=>t(a)&&n.call(r,a),null))}function uf(e,t){let n=Math.min(e.length,t.length);for(let r=0;r<n;r++)df(e[r],t[r])}function df(e,t){if(Pa(t)){if(typeof e!==t)throw new Error(`argument does not match constraint: typeof ${t}`)}else if(Gd(t)){try{if(e instanceof t)return}catch(n){}if(!Md(e)&&e.constructor===t||t.length===1&&t.call(void 0,e)===!0)return;throw new Error("[Jolibox SDK]argument does not match one of these constraints: arg instanceof constraint, arg.constructor === constraint, nor constraint(arg) === true")}}function ff(){return typeof globalThis!="undefined"?globalThis[Cs]:void 0}function hf(e){typeof globalThis!="undefined"&&(globalThis[Cs]=e)}function ge(e=!1){let t=ff();if(!e&&t)return t;let n=new Gn,r=new ka,a={registerCommand(i,o,s){n.registerCommand({id:i,handler:o,metadata:s})},executeCommand(i,...o){return r.executeCommand(i,...o)},excuteCommandSync(i,...o){return r.executeCommandThowErr(i,...o)}};return hf(a),a}var Ta,kd,Td,xd,os,Pd,Ld,ss,xa,Dd,Nd,ds,pt,Jd,La,Da,gs,_s,Fd,ys,Jn,Fn,Na,Te,Sa,qd,Ua,cs,jd,vt,Ot,Vd,us,$d,Wd,Ge,Rt,Xd,Ie,Yd,Qd,Zd,bs,Ma,Ga,ef,tf,Es,gt,Ca,ne,rf,af,rn,an,He,Oa,of,Aa,cf,ut,Gn,ka,Cs,G=ee(()=>{"use strict";Ta=Object.defineProperty,kd=Object.defineProperties,Td=Object.getOwnPropertyDescriptor,xd=Object.getOwnPropertyDescriptors,os=Object.getOwnPropertySymbols,Pd=Object.prototype.hasOwnProperty,Ld=Object.prototype.propertyIsEnumerable,ss=(e,t,n)=>t in e?Ta(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,xa=(e,t)=>{for(var n in t||(t={}))Pd.call(t,n)&&ss(e,n,t[n]);if(os)for(var n of os(t))Ld.call(t,n)&&ss(e,n,t[n]);return e},Dd=(e,t)=>kd(e,xd(t)),Nd=(e,t)=>{for(var n in t)Ta(e,n,{get:t[n],enumerable:!0})},ds=(e,t,n,r)=>{for(var a=r>1?void 0:r?Td(t,n):t,i=e.length-1,o;i>=0;i--)(o=e[i])&&(a=(r?o(t,n,a):o(a))||a);return r&&a&&Ta(t,n,a),a},pt=(e,t,n)=>new Promise((r,a)=>{var i=l=>{try{s(n.next(l))}catch(d){a(d)}},o=l=>{try{s(n.throw(l))}catch(d){a(d)}},s=l=>l.done?r(l.value):Promise.resolve(l.value).then(i,o);s((n=n.apply(e,t)).next())});if(typeof window!="undefined"&&!window.AbortController){let e=function(){this.signal=new t};e.prototype.abort=function(){this.signal._aborted=!0,typeof this.signal.onabort=="function"&&this.signal.onabort(new Event("abort"));let n=new Event("abort");this.signal.dispatchEvent(n)};let t=function(){this._aborted=!1,this.aborted=!1,this.onabort=null,this._eventListeners={}};Object.defineProperty(t.prototype,"aborted",{get:function(){return this._aborted}}),t.prototype.addEventListener=function(n,r){this._eventListeners[n]||(this._eventListeners[n]=[]),this._eventListeners[n].push(r)},t.prototype.removeEventListener=function(n,r){if(!this._eventListeners[n])return;let a=this._eventListeners[n].indexOf(r);a!==-1&&this._eventListeners[n].splice(a,1)},t.prototype.dispatchEvent=function(n){if(this._eventListeners[n.type])for(let r of this._eventListeners[n.type])r.call(this,n)},window.AbortController=e,window.AbortSignal=t}Jd=(e=>(e[e.DEVELOPER_FILE_NOT_FOUND=0]="DEVELOPER_FILE_NOT_FOUND",e[e.INTERNAL_IOS_CAN_NOT_FOUND_PKG=1]="INTERNAL_IOS_CAN_NOT_FOUND_PKG",e[e.USER_IOS_LOAD_TIMEOUT=2]="USER_IOS_LOAD_TIMEOUT",e[e.INTERNAL_IOS_PKG_LOAD_ERROR=3]="INTERNAL_IOS_PKG_LOAD_ERROR",e[e.INTERNAL_IOS_PKG_PARSE_FAIL=4]="INTERNAL_IOS_PKG_PARSE_FAIL",e[e.USER_IOS_GET_EMPTY_DATA=5]="USER_IOS_GET_EMPTY_DATA",e[e.USER_ANDROID_GET_PKG_FAIL=6]="USER_ANDROID_GET_PKG_FAIL",e[e.DEVELOPER_ANDROID_PACKAGE_FILE_UNEXPECTED_REQUIRE=7]="DEVELOPER_ANDROID_PACKAGE_FILE_UNEXPECTED_REQUIRE",e))(Jd||{}),La=class extends Error{constructor(e){if(typeof e=="string"){super(e),this.priority="P1";return}super(e.message),this.priority="P1",this.stack=e.stack,this.raw=e}},Da=class extends La{constructor(){super(...arguments),this.kind="INTERNAL_ERROR"}},gs=class extends La{constructor(){super(...arguments),this.kind="USER_ERROR"}},_s=class extends gs{constructor(){super(...arguments),this.name="USER_VALIDATE_ERROR"}},Fd=class extends gs{constructor(e,t,n){super(e),this.message=e,this.errNo=t,this.name="USER_CUSTOM_ERROR",this.errMsg=e,n&&(this.extra=Object.assign({},this.extra,n))}},ys=class extends Da{constructor(){super(...arguments),this.name="INTERNAL_SCHEMA_PARSE_ERROR",this.priority="P0"}},Jn=class extends Da{constructor(){super(...arguments),this.name="INTERNAL_GLOBAL_JS_ERROR",this.priority="P1"}},Fn=class extends La{constructor(e,t,n,r,a){super(e),this.message=e,this.code=t,this.kind="API_ERROR",this.name="API_ERROR",n&&(this.errorType=n),r!==void 0&&(this.stack=r),a&&(this.priority=a)}toJSON(){return{message:this.message,stack:this.stack,name:this.name,code:this.code,errorType:this.errorType}}},Na=class extends Da{constructor(){super(...arguments),this.name="INTERNAL_REPORTER_ERROR"}};Te={log:nn("log"),warn:nn("warn"),info:nn("info"),error:nn("error"),debug:nn("debug")};Object.assign(globalThis,{logger:Te});Sa=Symbol.for("Jolibox.canIUseMap"),qd={};globalThis[Sa]||(globalThis[Sa]=qd);Ua={get config(){return globalThis[Sa]}},cs=Symbol.for("Jolibox.canIUseMap.native"),jd={};globalThis[cs]||(globalThis[cs]=jd);vt=(e=>(e[e.Other=0]="Other",e[e.Route=1]="Route",e[e.Click=2]="Click",e[e.View=3]="View",e[e.Expose=4]="Expose",e[e.Swipe=5]="Swipe",e[e.Input=6]="Input",e[e.Select=7]="Select",e[e.SwitchOn=8]="SwitchOn",e[e.SwitchOff=9]="SwitchOff",e[e.Submit=10]="Submit",e[e.Scroll=11]="Scroll",e[e.Hide=12]="Hide",e[e.System=1e3]="System",e[e.ErrorTrace=1001]="ErrorTrace",e[e.UserDefined=1002]="UserDefined",e))(vt||{}),Ot=(e=>(e.MiniGame="mini-game",e.MiniDrama="mini-drama",e.App="app",e.WebSDK="web-sdk",e.AppSDK="app-sdk",e))(Ot||{}),Vd=(e=>(e[e.App=0]="App",e[e.H5=1]="H5",e[e.Weapp=2]="Weapp",e[e.Alipay=3]="Alipay",e[e.Gcash=4]="Gcash",e[e.Dana=5]="Dana",e[e.Umma=6]="Umma",e[e.WebSDK=1e3]="WebSDK",e[e.AppSDK=1001]="AppSDK",e[e.Other=9999]="Other",e))(Vd||{}),us=["name","params"],$d=["name","type","location","target","extra","timestamp","userId"],Wd=["platform","os","appVersion","appId","model","brand","uuid","jsSdkVersion","extra"];Ge=()=>"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{let t=Math.random()*16|0;return(e==="x"?t:t&3|8).toString(16)});zd();Rt=typeof window=="undefined",Xd=()=>!Rt&&!!(navigator.userAgent||"").includes("JoliboxPlatformSDK"),Ie={isiOS:!Rt&&(navigator.userAgent.includes("iPhone")||navigator.userAgent.includes("iPod")||navigator.userAgent.includes("iPad")||navigator.userAgent.includes("iPhone OS")),iosVersion:()=>{let e=navigator.appVersion.match(/OS (\d+)_(\d+)_?(\d+)?/);return[parseInt(e[1],10),parseInt(e[2],10),parseInt(e[3]||"0",10)]},isAndroid:!Rt&&navigator.userAgent.includes("Android"),isMac:!Rt&&navigator.userAgent.includes("Mac"),isFacebook:!Rt&&navigator.userAgent.includes("FB_IAB"),isPC:!Rt&&!navigator.userAgent.includes("iPhone")&&!navigator.userAgent.includes("Android")},Yd=()=>Ie.isiOS?"iOS":Ie.isAndroid?"Android":Ie.isMac?"Mac":Ie.isFacebook?"Facebook":"PC",Qd="device_id",Zd="advertising_id",bs=e=>(window.__joliboxLocalStorage__.getItem(e)||window.__joliboxLocalStorage__.setItem(e,Ge()),window.__joliboxLocalStorage__.getItem(e)),Ma=()=>new URLSearchParams(window.location.search).get("deviceId")||bs(Qd),Ga=()=>new URLSearchParams(window.location.search).get("advertisingId")||bs(Zd),ef=e=>e.charAt(0).toUpperCase()+e.slice(1),tf=()=>{var e;let t=new URLSearchParams(window.location.search);return ef((e=t.get("utm_source"))!=null?e:"")||"JoliboxSDK"},Es=e=>{if(Xd())return window.navigator.userAgent;let t="JoliboxWebSDK",n=Yd(),r=navigator.language,a=Ma(),i=Ga();return`${t} (${tf()}${n}; UnknownModel; UnknownSystemVersion; ${r}) uuid/${a} adid/${i} version/${e||""}`};gt=class{constructor(e,t={}){this.requestAdapter=e,this.cache=new Map,this.pendingRequests=new Map,this.requestSequence=0,this.cacheSequences=new Map,this.config=xa({duration:10*60*1e3,timeout:3e3,keyGenerator:(n,r)=>n,consistencyChecker:()=>!0},t)}request(e,t){return pt(this,null,function*(){let n=this.config.keyGenerator(e,t),r=this.pendingRequests.get(n);if(r)return console.log(`[RequestCacheService] Reusing pending request for ${e}`),r;let a=this.requestInternal(e,t),i=this.createTimeoutPromise(),o=Promise.race([a,i]).catch(s=>pt(this,null,function*(){if(s.message.includes("timeout")){let l=this.getValidCachedData(n);if(l)return console.warn(`[RequestCacheService] Request timeout, falling back to cache for ${e}`),this.requestAdapter.processCachedData?this.requestAdapter.processCachedData(l):l}throw s}));this.pendingRequests.set(n,o),a.then(s=>{console.log(`[RequestCacheService] Background request completed successfully for ${e}`)}).catch(s=>{console.warn(`[RequestCacheService] Background request failed for ${e}:`,s)});try{return yield o}finally{this.pendingRequests.delete(n)}})}requestInternal(e,t){return pt(this,null,function*(){var n,r,a,i;let o=this.config.keyGenerator(e,t),s=++this.requestSequence,l=this.getValidCachedData(o);if(console.log("[RequestCacheService] requestInternal start",e,"cached:",l),l){if(this.requestAdapter.extractRealTimeData&&this.requestAdapter.mergeData)try{let h=yield this.requestAdapter.execute(e,t),p=this.requestAdapter.extractRealTimeData(h),f=(r=(n=this.requestAdapter).extractCacheableData)==null?void 0:r.call(n,h);return f&&!this.config.consistencyChecker(l,f)?(console.log(`[RequestCacheService] Cache invalidated due to data change for ${e}`),this.setCachedDataWithSequence(o,f,s),h):this.requestAdapter.mergeData(l,p)}catch(h){return console.warn(`[RequestCacheService] Failed to fetch real-time data, using cache only for ${e}:`,h),this.requestAdapter.processCachedData?this.requestAdapter.processCachedData(l):l}return console.log(`[RequestCacheService] use cache for ${e}`),this.requestAdapter.processCachedData?this.requestAdapter.processCachedData(l):l}console.log(`[RequestCacheService] Cache miss, fetching fresh data for ${e} (sequence: ${s})`);let d=yield this.requestAdapter.execute(e,t),_=(i=(a=this.requestAdapter).extractCacheableData)==null?void 0:i.call(a,d);return _&&this.setCachedDataWithSequence(o,_,s),d})}createTimeoutPromise(){return new Promise((e,t)=>{setTimeout(()=>{t(new Error(`[RequestCacheService] Request timeout after ${this.config.timeout/1e3} seconds`))},this.config.timeout)})}getValidCachedData(e){let t=this.cache.get(e);return t?Date.now()>t.expiresAt?(this.cache.delete(e),null):t.data:null}setCachedDataWithSequence(e,t,n,r){let a=this.cache.get(e);if(a&&a.sequence>n){console.log(`[RequestCacheService] Ignoring stale cache update for ${e} (current: ${a.sequence}, incoming: ${n})`);return}let i=Date.now();this.cache.set(e,{data:JSON.parse(JSON.stringify(t)),timestamp:i,expiresAt:i+this.config.duration,key:e,sequence:n,metadata:r}),this.cacheSequences.set(e,n),console.log(`[RequestCacheService] Updated cache for ${e} with sequence ${n}`)}refreshCache(e,t){return pt(this,null,function*(){let n=this.config.keyGenerator(e,t);return this.cache.delete(n),this.request(e,t)})}forceRequest(e,t){return pt(this,null,function*(){var n,r;let a=this.config.keyGenerator(e,t),i=++this.requestSequence;console.log(`[RequestCacheService] Force request for ${e} (sequence: ${i})`);let o=yield this.requestAdapter.execute(e,t),s=(r=(n=this.requestAdapter).extractCacheableData)==null?void 0:r.call(n,o);return s&&(this.setCachedDataWithSequence(a,s,i),console.log(`[RequestCacheService] Force updated cache for ${e}`)),o})}warmupCache(e,t){return pt(this,null,function*(){let n=this.config.keyGenerator(e,t);if(this.pendingRequests.has(n)){console.log(`[RequestCacheService] Skipping warmup for ${e} - request in progress`);return}if(this.hasValidCache(n)){console.log(`[RequestCacheService] Skipping warmup for ${e} - valid cache exists`);return}try{console.log(`[RequestCacheService] Warming up cache for ${e}`),yield this.forceRequest(e,t)}catch(r){console.warn(`[RequestCacheService] Cache warmup failed for ${e}:`,r)}})}clearCache(e){e?(this.cache.delete(e),this.cacheSequences.delete(e),this.pendingRequests.delete(e),console.log(`[RequestCacheService] Cleared cache for ${e}`)):(this.cache.clear(),this.cacheSequences.clear(),this.pendingRequests.clear(),this.requestSequence=0,console.log("[RequestCacheService] Cleared all cache"))}clearExpiredCache(){let e=Date.now();for(let[t,n]of this.cache)e>n.expiresAt&&(this.cache.delete(t),this.cacheSequences.delete(t));console.log("[RequestCacheService] Cleared expired cache entries")}getCacheStats(){let e=Date.now(),t=0,n=0;for(let r of this.cache.values())e>r.expiresAt?n++:t++;return{cacheCount:this.cache.size,validCount:t,expiredCount:n,pendingRequestCount:this.pendingRequests.size}}getCacheKeys(){return Array.from(this.cache.keys())}hasValidCache(e){let t=this.cache.get(e);return t?Date.now()<=t.expiresAt:!1}getPendingRequestKeys(){return Array.from(this.pendingRequests.keys())}hasPendingRequest(e){return this.pendingRequests.has(e)}getCacheSequence(e){return this.cacheSequences.get(e)}},Ca=class Ra{constructor(t){this.element=t,this.next=Ra.Undefined,this.prev=Ra.Undefined}};Ca.Undefined=new Ca(void 0);ne=Ca,rf=class{constructor(){this._first=ne.Undefined,this._last=ne.Undefined,this._size=0}get size(){return this._size}isEmpty(){return this._first===ne.Undefined}clear(){let e=this._first;for(;e!==ne.Undefined;){let t=e.next;e.prev=ne.Undefined,e.next=ne.Undefined,e=t}this._first=ne.Undefined,this._last=ne.Undefined,this._size=0}unshift(e){return this._insert(e,!1)}push(e){return this._insert(e,!0)}_insert(e,t){let n=new ne(e);if(this._first===ne.Undefined)this._first=n,this._last=n;else if(t){let a=this._last;this._last=n,n.prev=a,a.next=n}else{let a=this._first;this._first=n,n.next=a,a.prev=n}this._size+=1;let r=!1;return()=>{r||(r=!0,this._remove(n))}}shift(){if(this._first!==ne.Undefined){let e=this._first.element;return this._remove(this._first),e}}pop(){if(this._last!==ne.Undefined){let e=this._last.element;return this._remove(this._last),e}}_remove(e){if(e.prev!==ne.Undefined&&e.next!==ne.Undefined){let t=e.prev;t.next=e.next,e.next.prev=t}else e.prev===ne.Undefined&&e.next===ne.Undefined?(this._first=ne.Undefined,this._last=ne.Undefined):e.next===ne.Undefined?(this._last=this._last.prev,this._last.next=ne.Undefined):e.prev===ne.Undefined&&(this._first=this._first.next,this._first.prev=ne.Undefined);this._size-=1}*[Symbol.iterator](){let e=this._first;for(;e!==ne.Undefined;)yield e.element,e=e.next}},af=0,rn=class{constructor(e){this.value=e,this.id=af++}},an=class{constructor(e){this.options=e,this._size=0}dispose(e){var t,n;this._disposed||(this._disposed=!0,this._listeners&&(e?(this._listeners instanceof rn&&(this._listeners=[this._listeners]),this._listeners=this._listeners.filter(r=>(r==null?void 0:r.value)===e)):(this._listeners=void 0,this._size=0)),(n=(t=this.options)==null?void 0:t.onDidRemoveLastListener)==null||n.call(t))}get event(){var e;return(e=this._event)!=null||(this._event=(t,n)=>{var r,a,i,o,s,l;if(this._disposed)return()=>{console.info("[Jolibox SDK] Emitter is _disposed")};n&&(t=t.bind(n));let d=new rn(t);return this._listeners?this._listeners instanceof rn?this._listeners=[this._listeners,d]:this._listeners.push(d):((a=(r=this.options)==null?void 0:r.onWillAddFirstListener)==null||a.call(r,this),this._listeners=d,(o=(i=this.options)==null?void 0:i.onDidFirstListener)==null||o.call(i,this)),(l=(s=this.options)==null?void 0:s.onDidAddListener)==null||l.call(s,this),this._size++,()=>{var _,h,p,f;if(!this._disposed){if(this._listeners instanceof rn)this._listeners.id===d.id&&(this._listeners=void 0,this._size=0,(h=(_=this.options)==null?void 0:_.onDidRemoveLastListener)==null||h.call(_));else if(this._listeners){let w=this._listeners.indexOf(d);w>=0&&(this._listeners.splice(w,1),this._size--,this._size===0&&((f=(p=this.options)==null?void 0:p.onDidRemoveLastListener)==null||f.call(p)))}}}}),this._event}_deliver(e,t){var n;if(!e)return;let r=((n=this.options)==null?void 0:n.onListenerError)||Error.constructor;if(!r){e.value(t);return}try{e.value(t)}catch(a){r(a)}}fire(e){this._listeners&&(this._listeners instanceof rn?this._deliver(this._listeners,e):this._listeners.forEach(t=>this._deliver(t,e)))}hasListeners(){return this._size>0}},He=class{constructor(){this.listeners=new Map,this.listerHandlerMap=new WeakMap,this.cachedEventQueue=new Map}on(e,t,n=!0){var r;let a=(r=this.listeners.get(e))!=null?r:new an,i=l=>t(...l.args),o=a.event(i);this.listerHandlerMap.set(t,{handler:i,dispose:o}),this.listeners.set(e,a);let s=this.cachedEventQueue.get(e);if(s&&n)for(let l of s)t(...l.args)}flushCachedEvent(e){e?this.cachedEventQueue.delete(e):this.cachedEventQueue.clear()}off(e,t){let n=this.listerHandlerMap.get(t);n&&(n.dispose(),this.listerHandlerMap.delete(t))}emit(e,...t){let n=this.listeners.get(e),r=this.cachedEventQueue.get(e);r||(r=new rf,this.cachedEventQueue.set(e,r)),r.push({args:t}),n&&n.fire({event:e,args:t})}once(e,t){let n=(...r)=>{t(...r),this.off(e,n)};this.on(e,n,!1)}},Oa={};Nd(Oa,{None:()=>of,filter:()=>lf,once:()=>Ss,toPromise:()=>sf});of=()=>(console.log("[Jolibox SDK] None Event"),()=>{console.log("[Jolibox SDK] None Event dispose")});Aa=Symbol.for("Jolibox.hostEmitter"),cf=()=>{let e=new He;return globalThis[Aa]||(globalThis[Aa]={on:e.on.bind(e),off:e.off.bind(e),emit:e.emit.bind(e),once:e.once.bind(e)}),globalThis[Aa]},ut=cf();Gn=class{constructor(){this._commands=new Map,this._onDidRegisterCommand=new an,this.onDidRegisterCommand=this._onDidRegisterCommand.event,console.log("[Jolibox SDK] command registry")}registerCommand(e){if(!e)throw new Error("invalid command");if(e.metadata&&Array.isArray(e.metadata.args)){let n=[];for(let a of e.metadata.args)n.push(a.constraint);let r=e.handler;e.handler=function(...a){return uf(a,n),r(...a)}}let{id:t}=e;this._commands.get(t)&&console.info(`[Jolibox SDK] duplicated command is registered ${t}`),this._commands.set(t,e),this._onDidRegisterCommand.fire(t)}getCommand(e){return this._commands.get(e)}getCommands(){let e=new Map;for(let t of this._commands.keys()){let n=this.getCommand(t);n&&e.set(t,n)}return e}};Gn=ds([ms],Gn);ka=class{constructor(){this._onWillExecuteCommand=new an,this.onWillExecuteCommand=this._onWillExecuteCommand.event,this._onDidExecuteCommand=new an,this.onDidExecuteCommand=this._onDidExecuteCommand.event,this.registry=new Gn,this._starActivation=null}_activateStar(){return this._starActivation||(this._starActivation=Ud(3e4)),this._starActivation}executeCommand(e,...t){return pt(this,null,function*(){return this.registry.getCommand(e)?this._tryExecuteCommand(e,t):(yield Promise.all([Promise.race([this._activateStar(),Oa.toPromise(Oa.filter(this.registry.onDidRegisterCommand,n=>n===e))])]),this._tryExecuteCommand(e,t))})}executeCommandThowErr(e,...t){if(!this.registry.getCommand(e))throw new Error(`command '${e}' not found`);let n=this.registry.getCommand(e);this._onWillExecuteCommand.fire({commandId:e,args:t});let r=this.invokeFunction(n.handler,...t);return this._onDidExecuteCommand.fire({commandId:e,args:t}),r}_tryExecuteCommand(e,t){let n=this.registry.getCommand(e);if(!n)return Promise.reject(new Error(`command '${e}' not found`));try{this._onWillExecuteCommand.fire({commandId:e,args:t});let r=this.invokeFunction(n.handler,...t);return this._onDidExecuteCommand.fire({commandId:e,args:t}),Promise.resolve(r)}catch(r){return Promise.reject(r)}}invokeFunction(e,...t){let n=!1;try{return e(...t)}finally{n=!0}}};ka=ds([ms],ka);Cs=Symbol.for("Jolibox.commands")});function xe(e,t={}){Fa.emit("ERROR_REPORT",{error:e,options:t})}var Fa,_t,ze=ee(()=>{"use strict";G();G();Fa=new He,_t=new He;xe.debounce=on(xe,50,{leading:!0})});var Ha,mf,Rs,Os,ks=ee(()=>{"use strict";G();ze();Ha=e=>{let t=e.replace(/-/g,"+").replace(/_/g,"/"),n=t.length%4===0?"":"=".repeat(4-t.length%4),r=atob(t+n);try{return JSON.parse(r)}catch(a){return{}}},mf=e=>{let t=JSON.stringify(e);return btoa(t).replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,"")},Rs=e=>{var t;try{let a=(t=new URL(e).searchParams.get("joliSource"))==null?void 0:t.split(".");if(a!=null&&a.length){let[i,o,s]=a;return{headerJson:Ha(i),payloadJson:Ha(o),signature:Ha(s)}}else throw"joli_source is missing"}catch(n){return xe(new ys(`${e} not a valid schema: ${n}`)),{headerJson:{},payloadJson:{},signature:{}}}},Os=(e,t)=>{let n=t.split(".");if(n&&n.length===3){let r=n[0],a=mf(e),i=n[2];return`${r}.${a}.${i}`}return t}});var pf,Hn,Ts,qa=ee(()=>{"use strict";G();pf="1.2.5-beta.3",Hn=()=>pf,Ts=()=>{let e=Hn();return`${Es(e)}`}});function Va(e,t){return(document==null?void 0:document.head.querySelector(`meta[name="${e}"][content="${t}"]`))!==null}var vf,xs,ja,Ps,re,gf,L,ue=ee(()=>{"use strict";G();ks();qa();G();vf={deviceInfo:{brand:"UnknownBrand",model:"UnknownModel",did:Ma(),adId:Ga(),pixelRatio:window.devicePixelRatio||1,platform:Ie.isAndroid?"android":Ie.isiOS?"ios":"h5",system:"UnknownSystemVersion",lang:"zh"},sdkInfo:{nativeSDKVersion:"",jssdkVersion:Hn()},schema:window.location.href,platform:Ie.isAndroid?"android":Ie.isiOS?"ios":"h5"},ja=(xs=globalThis.joliboxJSCore)==null?void 0:xs.env,re=Object.assign({},(Ps=ja==null?void 0:ja())!=null?Ps:vf);gf=()=>{var f,w,A,C,b,x,D,H,j,R,N;let{payloadJson:e,headerJson:t,signature:n}=re.schema.length?Rs(re.schema):{},r=`${re.deviceInfo.did}-${new Date().getTime()}`,i=new URL(re.schema.length?re.schema:window.location.href).searchParams,o=(A=(w=(f=i.get("mpId"))!=null?f:i.get("appId"))!=null?w:i.get("gameId"))!=null?A:"",s=(x=(b=(C=re.clientSessionId)!=null?C:e==null?void 0:e.sessionId)!=null?b:i.get("sessionId"))!=null?x:r,l=!!((H=(D=e==null?void 0:e.testAdsMode)!=null?D:e==null?void 0:e.__testAdsMode)!=null?H:i.get("testAdsMode")==="true"),d=(N=(R=(j=e==null?void 0:e.joliboxEnv)!=null?j:e==null?void 0:e.__joliboxEnv)!=null?R:i.get("joliboxEnv"))!=null?N:"production",_=d==="staging",h=t==null?void 0:t.channel,p=e==null?void 0:e.__shouldInterupt;return{get startTime(){var T;return(T=performance.timeOrigin)!=null?T:performance.timing.navigationStart},get testMode(){return _},get testAdsMode(){return l},get joliboxEnv(){return d},get joliSource(){var T;return(T=i.get("joliSource"))!=null?T:null},get mpId(){var T;return(T=o!=null?o:e==null?void 0:e.id)!=null?T:""},get mpVersion(){var T;return(T=t==null?void 0:t.ver)!=null?T:Hn()},get mpType(){var T,B;return(B=(T=t==null?void 0:t.__mpType)!=null?T:e==null?void 0:e.__mpType)!=null?B:"game"},get platform(){var T;return((T=re.platform)!=null?T:re.deviceInfo.platform).toLowerCase()},get deviceInfo(){return re.deviceInfo},get sdkInfo(){return re.sdkInfo},get hostInfo(){return re.hostInfo},get hostUserInfo(){return re.hostUserInfo},get sessionId(){var T,B;return(B=(T=re.clientSessionId)!=null?T:s)!=null?B:r},get channel(){return h},get webviewId(){var T;return(T=re.webviewId)!=null?T:-1},get shouldInterupt(){return p},get from(){return e==null?void 0:e.__from},get baseApiHost(){return Is(_)},get adId(){var T;return(T=re.deviceInfo.adId)!=null?T:re.deviceInfo.did},get language(){return re.deviceInfo.lang},get sdkEnvironment(){return Va("dlightek","jolibox")?"dlightek":i.get("huaweiQuick")==="true"?"huaweiQuick":Va("gamedistribution","jolibox")?"gamedistribution":Va("funmax","jolibox")?"funmax":"jolibox"},get viewport(){var z,te,me;let T=(z=re.deviceInfo.pixelRatio)!=null?z:1,B=(te=re.deviceInfo.statusBarHeight)!=null?te:e==null?void 0:e.__androidStatusBarHeight,K=(me=re.deviceInfo.navigationBarHeight)!=null?me:e==null?void 0:e.__androidNavigationBarHeight;return{statusBarHeight:B!==void 0?B/T:20,navigationBarHeight:K!==void 0?K/T:10}},get abTests(){var T,B;return(B=(T=re.abValues)==null?void 0:T.split(","))!=null?B:[]},get mpInfo(){var T;return(T=re.mpInfo)!=null?T:{mpName:"unknown"}},onEnvConfigChanged:T=>{ps(re,T,vs)},encodeJoliSourceQuery:T=>{var B,K;return t&&n?Os(q(q({},e),T),(B=i.get("joliSource"))!=null?B:""):(K=i.get("joliSource"))!=null?K:""},setDoExitDirectly:()=>{p=!1}}},L=gf()});var $a,Ds,_f,yf,Ls,wf,Ns=ee(()=>{"use strict";G();ze();ue();G();$a=!1,Ds=(e,t)=>e==null?!1:t in e,_f=e=>Ds(e,"kind"),yf=e=>{let t=e.toLowerCase().split("_");return t[0]+t.slice(1).map(n=>n.charAt(0).toUpperCase()+n.slice(1)).join("")},Ls=(e,t={},n)=>{var i,o,s;let r={user_id:(o=(i=L.hostUserInfo)==null?void 0:i.uid)!=null?o:"",device_id:(s=L.deviceInfo.did)!=null?s:"",timestamp:Date.now(),tag:yf(e.name)},a=Ee(q({},r),{env:t.environment,isFromUser:n});n?_t.emit("GLOBAL_USER_ERROR",e,a):_t.emit("GLOBAL_ERROR",e,a)},wf=e=>Ds(e,"kind")&&e.kind==="USER_ERROR";Fa.on("ERROR_REPORT",({error:e,options:t})=>{if($a)return;$a=!0;let n=_f(e)&&e.raw?e.raw:e;try{let r=wf(e);Ls(e,t,r)}catch(r){let a=r instanceof Error?r.message:String(r),i=new Na(`${a}, origin error: ${n.message}`);Te.error(i),Ls(new Na(i.message),{environment:t.environment},!1)}finally{$a=!1}})});var Wa,Ka=ee(()=>{"use strict";ze();G();ze();Wa=e=>new _s(e)});function Us(e,t){let n=(r,a,i)=>{let d=a!=null?a:{},{eventType:o}=d,s=as(d,["eventType"]),l=Ee(q({tag:r,eventType:i!=null?i:o!=null?o:vt.Other},t),{extra:q({},s)});r=="globalJsError"?xe(new Jn(JSON.stringify(l))):e("systemLog",l,L.webviewId)};return n.debounce=on(n,500,{leading:!0}),n}function Bs(e){let t=(n,r,a)=>{var s;let i=(s=a&&JSON.stringify(a))!=null?s:0,o={speed_value_type:n,total_duration:r};i&&Object.assign(o,{extra:i}),e("joliboxSpeedAnalysis",o)};return t.debounce=on(t,500,{leading:!0}),t}var Ms=ee(()=>{"use strict";G();G();ze();ue()});function Gs(e,t){let n=Us(e,t),r=Bs(n);return{track:n,trackPerformance:r}}var Js=ee(()=>{"use strict";Ms()});var za=ee(()=>{"use strict"});var qn,Fs=ee(()=>{"use strict";ue();G();G();qn=class{constructor(t){this.apiHost=t;this.deviceInfo=null;this.samplesConfig=null;this.fetchSamplesConfig()}fetchSamplesConfig(){return I(this,null,function*(){let n=`${this.apiHost}/api/fe-configs/js-sdk/samples-config`,r=yield(yield fetch(n)).json();this.samplesConfig=r})}checkIsSampled(t){if(!this.samplesConfig)return!1;let{samples:n}=this.samplesConfig;for(let[r,a]of Object.entries(n))if(a.includes(t.name))return Math.floor(Math.random()*101)<parseFloat(r);return!1}getDevice(){var r,a,i,o,s;let{nativeSDKVersion:t,jssdkVersion:n}=L.sdkInfo;return{platform:1e3,os:L.deviceInfo.platform,appVersion:(r=t!=null?t:n)!=null?r:"1.0.0",appId:(i=(a=L.hostInfo)==null?void 0:a.aid)!=null?i:"1",model:(o=L.deviceInfo.model)!=null?o:"UnknownModel",brand:(s=L.deviceInfo.brand)!=null?s:"UnknownBrand",uuid:L.deviceInfo.did,jsSdkVersion:n,extra:{}}}getLocation(){let t=new URLSearchParams(window.location.search),n={};return t.forEach((r,a)=>{n[a]=r}),{name:"GamePage",params:n}}trackEvent(t,n,r){return I(this,null,function*(){if(this.checkIsSampled(t))return;let a=t.location?t.location:yield this.getLocation(),i=t.target||null,o=t.extra||null;this.deviceInfo||(this.deviceInfo=yield this.getDevice());let s=this.deviceInfo,d={protocolVersion:"1.0.0",events:[Ee(q({},t),{location:a,target:i,extra:o,timestamp:Date.now(),userId:null})],device:s,project:n};try{r?yield this.doReport(Ba(d),r):yield this.doReport(Ba(d))}catch(_){Te.log("[Jolibox SDK] report API error",_)}})}}});var Xa=ee(()=>{"use strict";Js();za();Fs()});var Ya,Hs,Xe,jn,Je,Tt=ee(()=>{"use strict";qa();ue();G();Ya=e=>{let t=new AbortController;return setTimeout(()=>t.abort(),e),t.signal};(Hs=AbortSignal.timeout)!=null||(AbortSignal.timeout=Ya);Xe=class e{constructor(){this.httpClients=new WeakSet;this.networkRequests=[];this.maxRequestsToTrack=20;this.getNetworkStatus=()=>this.networkRequests.length===0?!0:this.networkRequests.filter(r=>r).length/this.networkRequests.length>=.6}static getInstance(){return e._instance||(e._instance=new e),e._instance}create(t){let n=new jn(t);return e.getInstance().httpClients.add(n),n}recordNetworkRequest(t){this.networkRequests.push(t),this.networkRequests.length>this.maxRequestsToTrack&&this.networkRequests.shift()}},jn=class{constructor(t){this.xua=Ts();this.getJoliSource=()=>L.joliSource;var r;let n=kt(L.testMode);this.baseUrl=(r=t==null?void 0:t.baseUrl)!=null?r:n}get(t,n){return I(this,null,function*(){try{let{query:r,timeout:a}=n!=null?n:{},{headers:i}=n!=null?n:{},o=r?new URLSearchParams(r):null,s=o==null?void 0:o.toString(),l=`${this.baseUrl}${t}${s?`?${s}`:""}`,d=this.xua,_=this.getJoliSource();i=Object.assign({},i!=null?i:{},d?{"x-user-agent":d}:{},_?{"x-joli-source":_}:{});let h=yield fetch(l,{method:"GET",headers:i,credentials:"include",signal:Ya(a!=null?a:3e4)});return Xe.getInstance().recordNetworkRequest(!0),yield h.json()}catch(r){throw Xe.getInstance().recordNetworkRequest(!1),r}})}post(t,n){return I(this,null,function*(){try{let{data:r,query:a,timeout:i}=n!=null?n:{},{headers:o}=n!=null?n:{},s=a?new URLSearchParams(a):null,l=s==null?void 0:s.toString(),d=`${this.baseUrl}${t}${l?`?${l}`:""}`,_=this.xua,h=this.getJoliSource();o=Object.assign({},o!=null?o:{},{"Content-Type":"application/json"},_?{"x-user-agent":_}:{},h?{"x-joli-source":h}:{},{"x-os-type":Ie.isAndroid?"ANDROID":Ie.isiOS?"IOS":"PC"},{"x-runtime-type":"WEB"});let p=yield fetch(d,{method:"POST",headers:o,body:JSON.stringify(r),signal:Ya(i!=null?i:3e4),credentials:"include"});Xe.getInstance().recordNetworkRequest(!0);let f=p.headers.get("content-type");if(f!=null&&f.includes("application/octet-stream"))try{return p.blob()}catch(w){return yield p.arrayBuffer()}if(f!=null&&f.includes("multipart/form-data")||f!=null&&f.includes("application/x-www-form-urlencoded"))try{return p.formData()}catch(w){return yield p.text()}if(f!=null&&f.includes("application/json"))try{return yield p.json()}catch(w){return yield p.text()}return p}catch(r){throw Xe.getInstance().recordNetworkRequest(!1),r}})}put(t,n){return I(this,null,function*(){try{let{data:r,query:a,timeout:i}=n!=null?n:{},{headers:o}=n!=null?n:{},s=a?new URLSearchParams(a):null,l=s==null?void 0:s.toString(),d=`${this.baseUrl}${t}${l?`?${l}`:""}`,_=this.xua,h=this.getJoliSource();o=Object.assign({},o!=null?o:{},{"Content-Type":"application/json"},_?{"x-user-agent":_}:{},h?{"x-joli-source":h}:{});let p=yield fetch(d,{method:"PUT",headers:o,credentials:"include",body:JSON.stringify(r!=null?r:{})});if(!p.ok)throw Xe.getInstance().recordNetworkRequest(!1),new Error(`HTTP error! status: ${p.status}`);return Xe.getInstance().recordNetworkRequest(!0),yield p.json()}catch(r){throw console.error("Error:",r),r}})}};window.JoliboxHttpClient=jn;Je=Xe.getInstance()});var Qa,Vn,Za=ee(()=>{"use strict";ue();Xa();Tt();G();Qa=class extends qn{constructor(){super(...arguments);this.httpClient=Je.create({baseUrl:this.apiBaseURL})}get apiBaseURL(){var n;return As((n=L.testMode)!=null?n:!1)}doReport(n){this.httpClient.post("/report",{data:n,timeout:5e3}).catch(r=>{console.info("report error",r)})}},Vn=new Qa(kt(L.testMode))});var bf,qs=ee(()=>{"use strict";Ns();G();Ka();G();Za();ue();bf=(e,t)=>{var a,i,o;let n={message:t.message,stack:(a=t.stack)!=null?a:"",errorType:t.name,source:0},r={name:e,type:vt.ErrorTrace,location:null,target:null,extra:n,timestamp:Date.now(),userId:(o=(i=L.hostUserInfo)==null?void 0:i.uid)!=null?o:null};Vn.trackEvent(r,Ot.WebSDK)};_t.on("GLOBAL_ERROR",(e,t)=>{bf(t.tag,e)});_t.on("GLOBAL_USER_ERROR",(e,t)=>{Te.log("UserError",e,t)})});var $n,js=ee(()=>{"use strict";$n=class{constructor(t,n){this.eventEmitter=t;this.lastReportTime=0;this.visible=!0;this.reportCount=0;this.notifyIframeGameEvent=(t,n)=>{window.parent&&window.parent.postMessage({type:t,data:n},"*")};this.playGame=t=>{this.reportCount++,(this.reportCount<=3||(this.reportCount-3)%3===0)&&(this.reporter({event:"PLAY_GAME",params:{duration:t}}),this.tracker("PlayGame",{duration:t}),this.notifyIframeGameEvent("JOLIBOX_GAME_PLAY",{duration:t}))};this.timer=this.createRAFTimer(t=>{this.playGame(t)});this.interval=n!=null?n:5*1e3,t.on("visible",r=>{this.visible=r})}start(t){this.reporter({event:"OPEN_GAME",params:{timestamp:Date.now(),duration:t!=null?t:0}}),this.tracker("OpenGame",{duration:t!=null?t:0}),this.notifyIframeGameEvent("JOLIBOX_GAME_OPEN",{duration:t!=null?t:0}),this.timer.start()}close(t){this.reporter({event:"CLOSE_GAME",params:{timestamp:Date.now(),duration:t}}),this.tracker("CloseGame",{duration:t}),this.notifyIframeGameEvent("JOLIBOX_GAME_CLOSE",{duration:t}),this.timer.stop()}createRAFTimer(t){let n=Date.now(),r,a,i=!1,o=0,s=()=>{if(!i)return;let f=Date.now(),w=f-n;w>=this.interval&&(this.visible&&(o+=Math.min(w,this.interval+1e3),t(o)),n=f),r=requestAnimationFrame(s)},l=()=>{_(),n=Date.now(),a=window.setInterval(()=>{if(!i)return;let f=Date.now();f-n>=this.interval&&(n=f)},this.interval)},d=()=>{h(),n=Date.now(),r=requestAnimationFrame(s)},_=()=>{r&&(cancelAnimationFrame(r),r=0)},h=()=>{a&&(clearInterval(a),a=0)};this.eventEmitter.on("visible",f=>{i&&(console.log("visible",f),f?d():l())});let p=this.visible;return{start(){i||(i=!0,p?d():l())},stop(){i=!1,_(),h()}}}}});var Wn,Vs=ee(()=>{"use strict";ue();js();Tt();Wn=class extends $n{constructor(n,r,a){super(r,a);this.httpClient=Je.create();this.gameId=L.mpId,this.sessionId=L.sessionId,this.track=n}reporter(n){return I(this,null,function*(){let{event:r,params:a,extraParams:i}=n,o={eventType:r,gameInfo:q({gameId:this.gameId,sessionId:this.sessionId},a)};i&&Object.assign(o,i),yield this.httpClient.post("/api/base/app-event",{data:o})})}tracker(n,r=null){this.track(n,r)}}});var $s,Ef,Pe,If,ei,Ye,dt=ee(()=>{"use strict";qs();G();G();Xa();Za();Vs();ue();za();$s=ge(),Ef={type:Ot.WebSDK,platform:"h5",jssdk_version:L.sdkInfo.jssdkVersion,mp_id:L.mpId,mp_version:L.mpVersion},{track:Pe,trackPerformance:If}=Gs((...e)=>{var o,s,l,d;let[,t]=e,n=t,r=fs(n.extra)?n.extra:Pa(n.extra)?JSON.parse(n.extra):{},a=Ee(q({},r),{mp_id:(o=n.mp_id)!=null?o:"",mp_version:(s=n.mp_version)!=null?s:""}),i={name:t.tag,type:vt.System,location:null,target:null,extra:a,timestamp:Date.now(),userId:(d=(l=L.hostUserInfo)==null?void 0:l.uid)!=null?d:null};Vn.trackEvent(i,Ot.WebSDK)},Ef);$s.registerCommand("ReportSDK.traceSystemTimeline",({event:e,duration:t,extra:n})=>{If(e,t,n)});$s.registerCommand("ReportSDK.traceSystem",({event:e,info:t})=>{Pe(e,t)});ei=new He,Ye=new Wn(Pe,ei)});function Ws(e){let t=Ua.config[e];return t||(t={},Ua.config[e]=t),(n,r)=>{if(t[n]){Te.warn(`[can i use] ${n} already registered`);return}t[n]=q({},r)}}var Ks=ee(()=>{"use strict";G()});function ti(e){zs=e}function Kn(e){return e===null||typeof e!="object"?e:Array.isArray(e)?e.map(t=>Kn(t)):Object.keys(e).reduce((t,n)=>(t[n]=Kn(e[n]),t),{})}function Qe(e){return typeof e=="number"}function ni(e){let t=ri(e);switch(t){case"string":return`"${e}"`;case"number":case"boolean":case"null":case"undefined":return String(e);default:return`a(n) ${t}`}}function ri(e){return typeof e=="function"?"function":Object.prototype.toString.call(e).slice(8).slice(0,-1).toLowerCase()}var zs,de,zn,Xn,Yn,Qn,xt,Zn,er,tr,nr,rr,ar,ir,or,sr,lr,cr,ur,ai=ee(()=>{"use strict";zs=!1;de=class{constructor(){this.errors=[];this.hasFallback=!1;this.hasDefault=!1;this._optional=!1}fail(t){if(zs)if(typeof t=="string")this.errors.push(t);else{let n=`${this.path} should be ${t.expect}`;this._optional&&t.expect!=="undefined"?n+=" or undefined, ":n+=", ",n+=`but got ${ni(t.actual)}`,this.errors.push(n)}return!1}fallback(t){return this.hasFallback=!0,this._fallback=t,this}get fallbackValue(){return Kn(this._fallback)}default(t){return this.hasDefault=!0,this._default=t,this}get defaultValue(){return typeof this._default=="function"?this._default:Kn(this._default)}optional(){return this._optional=!0,this}};zn=class extends de{validate(t){return this._optional&&t===void 0?!0:Qe(t)?Qe(this._min)&&t<this._min?this.fail(`the value of ${this.path} should be greater than or equal to ${this._min}`):Qe(this._max)&&t>this._max?this.fail(`the value of ${this.path} should be less than or equal to ${this._max}`):Qe(this._greater)&&t<=this._greater?this.fail(`the value of ${this.path} should be greater than ${this._greater}`):this._isInt&&t!==Math.floor(t)?this.fail(`the value of ${this.path} should be integer but got ${t}`):!0:this.fail({expect:"number",actual:t})}min(t){return this._min=t,this}max(t){return this._max=t,this}isInt(t){return this._isInt=t,this}greater(t){return this._greater=t,this}},Xn=class extends de{validate(t){return this._optional&&t===void 0?!0:typeof t!="boolean"?this.fail({expect:"boolean",actual:t}):!0}},Yn=class extends de{validate(t){if(this._optional&&t===void 0)return!0;if(typeof t!="string")return this.fail({expect:"string",actual:t});if(Qe(this._maxLength)&&t.length>this._maxLength)return this.fail(`the length of ${this.path} should be less than or equal to ${this._maxLength}`);if(Qe(this._minLength)&&t.length<this._minLength)return this.fail(`the length of ${this.path} should be greater than or equal to ${this._minLength}`);if(typeof this._pattern=="string"){if(!new RegExp(this._pattern).test(t))return this.fail(`${this.path} should match pattern "${this._pattern}"`)}else if(this._pattern&&!this._pattern.test(t))return this.fail(`${this.path} should match pattern "${this._pattern.toString()}"`);return!0}minLength(t){return this._minLength=t,this}maxLength(t){return this._maxLength=t,this}pattern(t){return this._pattern=t,this}},Qn=class extends de{validate(t){return this._optional&&t===void 0?!0:typeof t!="symbol"?this.fail({expect:"symbol",actual:t}):!0}},xt=class extends de{validate(t){return!0}},Zn=class extends de{validate(t){return t!==void 0?this.fail({expect:"undefined",actual:t}):!0}},er=class extends de{validate(t){return this._optional&&t===void 0?!0:t!==null?this.fail({expect:"null",actual:t}):!0}},tr=class extends de{validate(t){return this._optional&&t===void 0?!0:typeof t!="function"?this.fail({expect:"function",actual:t}):!0}},nr=class extends de{constructor(...t){super(),this._items=t}validate(t){if(this._optional&&t===void 0)return!0;if(!this._items.includes(t)){let n=this._items.map(r=>JSON.stringify(r)).join(", ");return this.fail(`expect ${this.path} to be one of ${n}, but got ${ni(t)}`)}return!0}},rr=class extends de{constructor(n){super();this._item=n}validate(n){if(this._optional&&n===void 0)return!0;if(!Array.isArray(n))return this.fail({expect:"array",actual:n});if(Qe(this._minItems)&&n.length<this._minItems)return this.fail(`the length of ${this.path} should be greater than or equal to ${this._minItems}`);if(Qe(this._maxItems)&&n.length>this._maxItems)return this.fail(`the length of ${this.path} should be less than or equal to ${this._maxItems}`);if(Qe(this._length)&&n.length!==this._length)return this.fail(`the length of ${this.path} should be equal to ${this._length}`);let r=this._item;if(!r)return!0;let a=!0;if(n.forEach((i,o)=>{if(r.path=`${this.path}[${o}]`,r.errors=this.errors,i===void 0&&r.hasDefault){n[o]=r.defaultValue;return}r.validate(i)||(r.hasFallback?n[o]=r.fallbackValue:a=!1)}),this._uniqueItems){let i=new Map;for(let o in n)i.has(n[o])?a=this.fail(`${this.path} should NOT have duplicate items (${this.path}[${i.get(n[o])}] and ${this.path}[${o}] are identical)`):i.set(n[o],o)}return a}minItems(n){return this._minItems=n,this}maxItems(n){return this._maxItems=n,this}uniqueItems(){return this._uniqueItems=!0,this}length(n){return this._length=n,this}},ar=class extends de{constructor(n){super();this._value=n}validate(n){if(this._optional&&n===void 0)return!0;if(ri(n)!=="object")return this.fail({expect:"object",actual:n});let a=n,i=this._value;i.errors=this.errors;let o=!0;for(let s in a){let l=a[s];if(/^[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*$/.test(s)?i.path=`${this.path}.${s}`:i.path=`${this.path}["${s}"]`,!(l===void 0&&i._optional)){if(l===void 0&&i.hasDefault){a[s]=i.defaultValue;continue}i.validate(l)||(i.hasFallback?a[s]=i.fallbackValue:o=!1)}}return o}},ir=class extends de{constructor(n={}){super();this._object=n}validate(n){if(this._optional&&n===void 0)return!0;if(ri(n)!=="object")return this.fail({expect:"object",actual:n});let r=n,a=!0;for(let i in this._object){let o=r[i],s=this._object[i];if(s.errors=this.errors,/^[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*$/.test(i)?s.path=`${this.path}.${i}`:s.path=`${this.path}["${i}"]`,!(s._optional&&o===void 0)){if(o===void 0&&s.hasDefault){r[i]=s.defaultValue;continue}s.validate(o)||(s.hasFallback?r[i]=s.fallbackValue:a=!1)}}return a}},or=class extends de{constructor(n){super();this.value=n}validate(n){return n===void 0&&this._optional?!0:n!==this.value?this.fail({expect:ni(this.value),actual:n}):!0}},sr=class extends de{constructor(...t){super(),this._items=t}validate(t){if(t===void 0&&this._optional)return!0;let n=[],r=!1,a=this._items.length;for(let i=0;i<a;i++){let o=this._items[i];if(o.errors=[],o.path=this.path,!o.validate(t))n.push(o.errors.join("; "));else if(!r){r=!0;break}}if(!r){let i=n.join(`
2
+ or `);this.errors.push(i)}return r}},lr=class extends de{constructor(...t){super(),this._items=t;let n=0,r=t.length-1;for(;r>=0;r--){let a=t[r];if(a._optional||a.hasDefault)n+=1;else break}this._minItems=t.length-n}validate(t){if(t===void 0&&this._optional)return!0;if(!Array.isArray(t))return this.fail({expect:"array",actual:t});if(t.length<this._minItems)return this.fail(`the length of ${this.path} should be greater than or equal to ${this._minItems}`);let n=!0;return this._items.forEach((r,a)=>{if(r.path=`${this.path}[${a}]`,r.errors=this.errors,t[a]===void 0&&r.hasDefault){t[a]=r.defaultValue;return}r.validate(t[a])||(r.hasFallback?t[a]=r._fallback:n=!1)}),n}},cr=class extends de{validate(t){return t===void 0&&this._optional||t instanceof ArrayBuffer?!0:this.fail({expect:"arraybuffer",actual:t})}},ur=class extends de{constructor(t){super(),this._ctor=t}validate(t){return t===void 0&&this._optional||t instanceof this._ctor?!0:this.fail({expect:`typedarray of ${this._ctor.name}`,actual:t})}}});function ii(e,t,n="param"){if(e.errors=[],e.path=n,ti(!0),!e.validate(t)){let r=e.errors.join(`
3
+ `);throw e.errors.length=0,ti(!1),new TypeError(r)}}var J,oi=ee(()=>{"use strict";ai();ai();J={object(e){return new ir(e)},array(e){return new rr(e)},tuple(...e){return new lr(...e)},literal(e){return new or(e)},or(...e){return new sr(...e)},symbol(){return new Qn},record(e){return new ar(e)},function(){return new tr},boolean(){return new Xn},string(){return new Yn},number(){return new zn},undefined(){return new Zn},null(){return new er},unknown(){return new xt},any(){return new xt},as(){return new xt},arraybuffer(){return new cr},enum(...e){return new nr(...e)},typedarray(e){return new ur(e)}}});var dr,Xs,Ys=ee(()=>{"use strict";G();ze();oi();Ka();dr=1,Xs=e=>{function t(r,a){return(...i)=>{var h,p,f,w;let o=Date.now(),s={method:r,trace_id:dr};dr+=1;let l="SUCCESS",d=`${r}:ok`,_=0;try{if(a.paramsSchema)try{ii(a.paramsSchema,i,"params")}catch(x){throw Wa(`${r}:fail ${x.message}`)}let A=a.implement(...i),C=A,b=`${r}:ok`;if(A&&"code"in A){let{code:x,data:D,message:H}=A;l=x,C=D,b=H}return{code:l,message:b,data:C}}catch(A){let C=A;_=(p=(h=C.code)!=null?h:C.errNo)!=null?p:2e3,l="FAILURE";let b=(w=(f=C.message)!=null?f:C.errMsg)!=null?w:`${A}`;return d=`${r}:${l} ${b.replace(/^\S+:(fail|cancel)\s?/,"")}`,xe(new Fn(d,_)),{code:l,message:d}}finally{let A=Date.now()-o}}}function n(r,a){return(...i)=>I(this,null,function*(){var p,f,w,A;let o=hs(i)?i:[i],s=Date.now(),l={method:r,trace_id:dr};dr+=1;let d=`${r}:ok`,_="SUCCESS",h={code:_,message:d};try{if(a.paramsSchema)try{ii(a.paramsSchema,o,"params")}catch(x){throw Wa(x.message)}let b=yield a.implement(...o);if(b&&"code"in b){let{code:x,data:D,message:H}=b;_=x,d=H,b=D}return Object.assign(h,{code:_,message:d,data:b}),h}catch(C){let b=C,x=(f=(p=b.code)!=null?p:b.errNo)!=null?f:2e3;_="FAILURE";let D=(A=(w=b.message)!=null?w:b.errMsg)!=null?A:`${C}`,H=`${r}:${_} ${D.replace(/^\S+:(fail|cancel)\s?/,"")}`;return Object.assign(h,{code:_,message:H}),xe(new Fn(H,x)),h}finally{let C=Date.now()-s}})}return{createAPI:n,createSyncAPI:t}}});var Ze,yt,_e,sn=ee(()=>{"use strict";Ks();dt();Ys();oi();({createAPI:Ze,createSyncAPI:yt}=Xs(Pe)),_e=Ws("h5")});var tl=Ea((el,ui)=>{(function(e){if(typeof el=="object"&&typeof ui!="undefined")ui.exports=e();else if(typeof define=="function"&&define.amd)define([],e);else{var t;typeof window!="undefined"?t=window:typeof global!="undefined"?t=global:typeof self!="undefined"?t=self:t=this,t.localforage=e()}})(function(){var e,t,n;return function r(a,i,o){function s(_,h){if(!i[_]){if(!a[_]){var p=typeof tn=="function"&&tn;if(!h&&p)return p(_,!0);if(l)return l(_,!0);var f=new Error("Cannot find module '"+_+"'");throw f.code="MODULE_NOT_FOUND",f}var w=i[_]={exports:{}};a[_][0].call(w.exports,function(A){var C=a[_][1][A];return s(C||A)},w,w.exports,r,a,i,o)}return i[_].exports}for(var l=typeof tn=="function"&&tn,d=0;d<o.length;d++)s(o[d]);return s}({1:[function(r,a,i){(function(o){"use strict";var s=o.MutationObserver||o.WebKitMutationObserver,l;if(s){var d=0,_=new s(A),h=o.document.createTextNode("");_.observe(h,{characterData:!0}),l=function(){h.data=d=++d%2}}else if(!o.setImmediate&&typeof o.MessageChannel!="undefined"){var p=new o.MessageChannel;p.port1.onmessage=A,l=function(){p.port2.postMessage(0)}}else"document"in o&&"onreadystatechange"in o.document.createElement("script")?l=function(){var b=o.document.createElement("script");b.onreadystatechange=function(){A(),b.onreadystatechange=null,b.parentNode.removeChild(b),b=null},o.document.documentElement.appendChild(b)}:l=function(){setTimeout(A,0)};var f,w=[];function A(){f=!0;for(var b,x,D=w.length;D;){for(x=w,w=[],b=-1;++b<D;)x[b]();D=w.length}f=!1}a.exports=C;function C(b){w.push(b)===1&&!f&&l()}}).call(this,typeof global!="undefined"?global:typeof self!="undefined"?self:typeof window!="undefined"?window:{})},{}],2:[function(r,a,i){"use strict";var o=r(1);function s(){}var l={},d=["REJECTED"],_=["FULFILLED"],h=["PENDING"];a.exports=p;function p(R){if(typeof R!="function")throw new TypeError("resolver must be a function");this.state=h,this.queue=[],this.outcome=void 0,R!==s&&C(this,R)}p.prototype.catch=function(R){return this.then(null,R)},p.prototype.then=function(R,N){if(typeof R!="function"&&this.state===_||typeof N!="function"&&this.state===d)return this;var T=new this.constructor(s);if(this.state!==h){var B=this.state===_?R:N;w(T,B,this.outcome)}else this.queue.push(new f(T,R,N));return T};function f(R,N,T){this.promise=R,typeof N=="function"&&(this.onFulfilled=N,this.callFulfilled=this.otherCallFulfilled),typeof T=="function"&&(this.onRejected=T,this.callRejected=this.otherCallRejected)}f.prototype.callFulfilled=function(R){l.resolve(this.promise,R)},f.prototype.otherCallFulfilled=function(R){w(this.promise,this.onFulfilled,R)},f.prototype.callRejected=function(R){l.reject(this.promise,R)},f.prototype.otherCallRejected=function(R){w(this.promise,this.onRejected,R)};function w(R,N,T){o(function(){var B;try{B=N(T)}catch(K){return l.reject(R,K)}B===R?l.reject(R,new TypeError("Cannot resolve promise with itself")):l.resolve(R,B)})}l.resolve=function(R,N){var T=b(A,N);if(T.status==="error")return l.reject(R,T.value);var B=T.value;if(B)C(R,B);else{R.state=_,R.outcome=N;for(var K=-1,z=R.queue.length;++K<z;)R.queue[K].callFulfilled(N)}return R},l.reject=function(R,N){R.state=d,R.outcome=N;for(var T=-1,B=R.queue.length;++T<B;)R.queue[T].callRejected(N);return R};function A(R){var N=R&&R.then;if(R&&(typeof R=="object"||typeof R=="function")&&typeof N=="function")return function(){N.apply(R,arguments)}}function C(R,N){var T=!1;function B(me){T||(T=!0,l.reject(R,me))}function K(me){T||(T=!0,l.resolve(R,me))}function z(){N(K,B)}var te=b(z);te.status==="error"&&B(te.value)}function b(R,N){var T={};try{T.value=R(N),T.status="success"}catch(B){T.status="error",T.value=B}return T}p.resolve=x;function x(R){return R instanceof this?R:l.resolve(new this(s),R)}p.reject=D;function D(R){var N=new this(s);return l.reject(N,R)}p.all=H;function H(R){var N=this;if(Object.prototype.toString.call(R)!=="[object Array]")return this.reject(new TypeError("must be an array"));var T=R.length,B=!1;if(!T)return this.resolve([]);for(var K=new Array(T),z=0,te=-1,me=new this(s);++te<T;)We(R[te],te);return me;function We(Qt,Dn){N.resolve(Qt).then(ua,function(St){B||(B=!0,l.reject(me,St))});function ua(St){K[Dn]=St,++z===T&&!B&&(B=!0,l.resolve(me,K))}}}p.race=j;function j(R){var N=this;if(Object.prototype.toString.call(R)!=="[object Array]")return this.reject(new TypeError("must be an array"));var T=R.length,B=!1;if(!T)return this.resolve([]);for(var K=-1,z=new this(s);++K<T;)te(R[K]);return z;function te(me){N.resolve(me).then(function(We){B||(B=!0,l.resolve(z,We))},function(We){B||(B=!0,l.reject(z,We))})}}},{1:1}],3:[function(r,a,i){(function(o){"use strict";typeof o.Promise!="function"&&(o.Promise=r(2))}).call(this,typeof global!="undefined"?global:typeof self!="undefined"?self:typeof window!="undefined"?window:{})},{2:2}],4:[function(r,a,i){"use strict";var o=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(c){return typeof c}:function(c){return c&&typeof Symbol=="function"&&c.constructor===Symbol&&c!==Symbol.prototype?"symbol":typeof c};function s(c,m){if(!(c instanceof m))throw new TypeError("Cannot call a class as a function")}function l(){try{if(typeof indexedDB!="undefined")return indexedDB;if(typeof webkitIndexedDB!="undefined")return webkitIndexedDB;if(typeof mozIndexedDB!="undefined")return mozIndexedDB;if(typeof OIndexedDB!="undefined")return OIndexedDB;if(typeof msIndexedDB!="undefined")return msIndexedDB}catch(c){return}}var d=l();function _(){try{if(!d||!d.open)return!1;var c=typeof openDatabase!="undefined"&&/(Safari|iPhone|iPad|iPod)/.test(navigator.userAgent)&&!/Chrome/.test(navigator.userAgent)&&!/BlackBerry/.test(navigator.platform),m=typeof fetch=="function"&&fetch.toString().indexOf("[native code")!==-1;return(!c||m)&&typeof indexedDB!="undefined"&&typeof IDBKeyRange!="undefined"}catch(u){return!1}}function h(c,m){c=c||[],m=m||{};try{return new Blob(c,m)}catch(v){if(v.name!=="TypeError")throw v;for(var u=typeof BlobBuilder!="undefined"?BlobBuilder:typeof MSBlobBuilder!="undefined"?MSBlobBuilder:typeof MozBlobBuilder!="undefined"?MozBlobBuilder:WebKitBlobBuilder,g=new u,y=0;y<c.length;y+=1)g.append(c[y]);return g.getBlob(m.type)}}typeof Promise=="undefined"&&r(3);var p=Promise;function f(c,m){m&&c.then(function(u){m(null,u)},function(u){m(u)})}function w(c,m,u){typeof m=="function"&&c.then(m),typeof u=="function"&&c.catch(u)}function A(c){return typeof c!="string"&&(console.warn(c+" used as a key, but it is not a string."),c=String(c)),c}function C(){if(arguments.length&&typeof arguments[arguments.length-1]=="function")return arguments[arguments.length-1]}var b="local-forage-detect-blob-support",x=void 0,D={},H=Object.prototype.toString,j="readonly",R="readwrite";function N(c){for(var m=c.length,u=new ArrayBuffer(m),g=new Uint8Array(u),y=0;y<m;y++)g[y]=c.charCodeAt(y);return u}function T(c){return new p(function(m){var u=c.transaction(b,R),g=h([""]);u.objectStore(b).put(g,"key"),u.onabort=function(y){y.preventDefault(),y.stopPropagation(),m(!1)},u.oncomplete=function(){var y=navigator.userAgent.match(/Chrome\/(\d+)/),v=navigator.userAgent.match(/Edge\//);m(v||!y||parseInt(y[1],10)>=43)}}).catch(function(){return!1})}function B(c){return typeof x=="boolean"?p.resolve(x):T(c).then(function(m){return x=m,x})}function K(c){var m=D[c.name],u={};u.promise=new p(function(g,y){u.resolve=g,u.reject=y}),m.deferredOperations.push(u),m.dbReady?m.dbReady=m.dbReady.then(function(){return u.promise}):m.dbReady=u.promise}function z(c){var m=D[c.name],u=m.deferredOperations.pop();if(u)return u.resolve(),u.promise}function te(c,m){var u=D[c.name],g=u.deferredOperations.pop();if(g)return g.reject(m),g.promise}function me(c,m){return new p(function(u,g){if(D[c.name]=D[c.name]||No(),c.db)if(m)K(c),c.db.close();else return u(c.db);var y=[c.name];m&&y.push(c.version);var v=d.open.apply(d,y);m&&(v.onupgradeneeded=function(E){var S=v.result;try{S.createObjectStore(c.storeName),E.oldVersion<=1&&S.createObjectStore(b)}catch(O){if(O.name==="ConstraintError")console.warn('The database "'+c.name+'" has been upgraded from version '+E.oldVersion+" to version "+E.newVersion+', but the storage "'+c.storeName+'" already exists.');else throw O}}),v.onerror=function(E){E.preventDefault(),g(v.error)},v.onsuccess=function(){var E=v.result;E.onversionchange=function(S){S.target.close()},u(E),z(c)}})}function We(c){return me(c,!1)}function Qt(c){return me(c,!0)}function Dn(c,m){if(!c.db)return!0;var u=!c.db.objectStoreNames.contains(c.storeName),g=c.version<c.db.version,y=c.version>c.db.version;if(g&&(c.version!==m&&console.warn('The database "'+c.name+`" can't be downgraded from version `+c.db.version+" to version "+c.version+"."),c.version=c.db.version),y||u){if(u){var v=c.db.version+1;v>c.version&&(c.version=v)}return!0}return!1}function ua(c){return new p(function(m,u){var g=new FileReader;g.onerror=u,g.onloadend=function(y){var v=btoa(y.target.result||"");m({__local_forage_encoded_blob:!0,data:v,type:c.type})},g.readAsBinaryString(c)})}function St(c){var m=N(atob(c.data));return h([m],{type:c.type})}function Do(c){return c&&c.__local_forage_encoded_blob}function Iu(c){var m=this,u=m._initReady().then(function(){var g=D[m._dbInfo.name];if(g&&g.dbReady)return g.dbReady});return w(u,c,c),u}function Au(c){K(c);for(var m=D[c.name],u=m.forages,g=0;g<u.length;g++){var y=u[g];y._dbInfo.db&&(y._dbInfo.db.close(),y._dbInfo.db=null)}return c.db=null,We(c).then(function(v){return c.db=v,Dn(c)?Qt(c):v}).then(function(v){c.db=m.db=v;for(var E=0;E<u.length;E++)u[E]._dbInfo.db=v}).catch(function(v){throw te(c,v),v})}function Ke(c,m,u,g){g===void 0&&(g=1);try{var y=c.db.transaction(c.storeName,m);u(null,y)}catch(v){if(g>0&&(!c.db||v.name==="InvalidStateError"||v.name==="NotFoundError"))return p.resolve().then(function(){if(!c.db||v.name==="NotFoundError"&&!c.db.objectStoreNames.contains(c.storeName)&&c.version<=c.db.version)return c.db&&(c.version=c.db.version+1),Qt(c)}).then(function(){return Au(c).then(function(){Ke(c,m,u,g-1)})}).catch(u);u(v)}}function No(){return{forages:[],db:null,dbReady:null,deferredOperations:[]}}function Su(c){var m=this,u={db:null};if(c)for(var g in c)u[g]=c[g];var y=D[u.name];y||(y=No(),D[u.name]=y),y.forages.push(m),m._initReady||(m._initReady=m.ready,m.ready=Iu);var v=[];function E(){return p.resolve()}for(var S=0;S<y.forages.length;S++){var O=y.forages[S];O!==m&&v.push(O._initReady().catch(E))}var k=y.forages.slice(0);return p.all(v).then(function(){return u.db=y.db,We(u)}).then(function(P){return u.db=P,Dn(u,m._defaultConfig.version)?Qt(u):P}).then(function(P){u.db=y.db=P,m._dbInfo=u;for(var U=0;U<k.length;U++){var F=k[U];F!==m&&(F._dbInfo.db=u.db,F._dbInfo.version=u.version)}})}function Cu(c,m){var u=this;c=A(c);var g=new p(function(y,v){u.ready().then(function(){Ke(u._dbInfo,j,function(E,S){if(E)return v(E);try{var O=S.objectStore(u._dbInfo.storeName),k=O.get(c);k.onsuccess=function(){var P=k.result;P===void 0&&(P=null),Do(P)&&(P=St(P)),y(P)},k.onerror=function(){v(k.error)}}catch(P){v(P)}})}).catch(v)});return f(g,m),g}function Ru(c,m){var u=this,g=new p(function(y,v){u.ready().then(function(){Ke(u._dbInfo,j,function(E,S){if(E)return v(E);try{var O=S.objectStore(u._dbInfo.storeName),k=O.openCursor(),P=1;k.onsuccess=function(){var U=k.result;if(U){var F=U.value;Do(F)&&(F=St(F));var W=c(F,U.key,P++);W!==void 0?y(W):U.continue()}else y()},k.onerror=function(){v(k.error)}}catch(U){v(U)}})}).catch(v)});return f(g,m),g}function Ou(c,m,u){var g=this;c=A(c);var y=new p(function(v,E){var S;g.ready().then(function(){return S=g._dbInfo,H.call(m)==="[object Blob]"?B(S.db).then(function(O){return O?m:ua(m)}):m}).then(function(O){Ke(g._dbInfo,R,function(k,P){if(k)return E(k);try{var U=P.objectStore(g._dbInfo.storeName);O===null&&(O=void 0);var F=U.put(O,c);P.oncomplete=function(){O===void 0&&(O=null),v(O)},P.onabort=P.onerror=function(){var W=F.error?F.error:F.transaction.error;E(W)}}catch(W){E(W)}})}).catch(E)});return f(y,u),y}function ku(c,m){var u=this;c=A(c);var g=new p(function(y,v){u.ready().then(function(){Ke(u._dbInfo,R,function(E,S){if(E)return v(E);try{var O=S.objectStore(u._dbInfo.storeName),k=O.delete(c);S.oncomplete=function(){y()},S.onerror=function(){v(k.error)},S.onabort=function(){var P=k.error?k.error:k.transaction.error;v(P)}}catch(P){v(P)}})}).catch(v)});return f(g,m),g}function Tu(c){var m=this,u=new p(function(g,y){m.ready().then(function(){Ke(m._dbInfo,R,function(v,E){if(v)return y(v);try{var S=E.objectStore(m._dbInfo.storeName),O=S.clear();E.oncomplete=function(){g()},E.onabort=E.onerror=function(){var k=O.error?O.error:O.transaction.error;y(k)}}catch(k){y(k)}})}).catch(y)});return f(u,c),u}function xu(c){var m=this,u=new p(function(g,y){m.ready().then(function(){Ke(m._dbInfo,j,function(v,E){if(v)return y(v);try{var S=E.objectStore(m._dbInfo.storeName),O=S.count();O.onsuccess=function(){g(O.result)},O.onerror=function(){y(O.error)}}catch(k){y(k)}})}).catch(y)});return f(u,c),u}function Pu(c,m){var u=this,g=new p(function(y,v){if(c<0){y(null);return}u.ready().then(function(){Ke(u._dbInfo,j,function(E,S){if(E)return v(E);try{var O=S.objectStore(u._dbInfo.storeName),k=!1,P=O.openKeyCursor();P.onsuccess=function(){var U=P.result;if(!U){y(null);return}c===0||k?y(U.key):(k=!0,U.advance(c))},P.onerror=function(){v(P.error)}}catch(U){v(U)}})}).catch(v)});return f(g,m),g}function Lu(c){var m=this,u=new p(function(g,y){m.ready().then(function(){Ke(m._dbInfo,j,function(v,E){if(v)return y(v);try{var S=E.objectStore(m._dbInfo.storeName),O=S.openKeyCursor(),k=[];O.onsuccess=function(){var P=O.result;if(!P){g(k);return}k.push(P.key),P.continue()},O.onerror=function(){y(O.error)}}catch(P){y(P)}})}).catch(y)});return f(u,c),u}function Du(c,m){m=C.apply(this,arguments);var u=this.config();c=typeof c!="function"&&c||{},c.name||(c.name=c.name||u.name,c.storeName=c.storeName||u.storeName);var g=this,y;if(!c.name)y=p.reject("Invalid arguments");else{var v=c.name===u.name&&g._dbInfo.db,E=v?p.resolve(g._dbInfo.db):We(c).then(function(S){var O=D[c.name],k=O.forages;O.db=S;for(var P=0;P<k.length;P++)k[P]._dbInfo.db=S;return S});c.storeName?y=E.then(function(S){if(S.objectStoreNames.contains(c.storeName)){var O=S.version+1;K(c);var k=D[c.name],P=k.forages;S.close();for(var U=0;U<P.length;U++){var F=P[U];F._dbInfo.db=null,F._dbInfo.version=O}var W=new p(function(X,ce){var oe=d.open(c.name,O);oe.onerror=function(Be){var en=oe.result;en.close(),ce(Be)},oe.onupgradeneeded=function(){var Be=oe.result;Be.deleteObjectStore(c.storeName)},oe.onsuccess=function(){var Be=oe.result;Be.close(),X(Be)}});return W.then(function(X){k.db=X;for(var ce=0;ce<P.length;ce++){var oe=P[ce];oe._dbInfo.db=X,z(oe._dbInfo)}}).catch(function(X){throw(te(c,X)||p.resolve()).catch(function(){}),X})}}):y=E.then(function(S){K(c);var O=D[c.name],k=O.forages;S.close();for(var P=0;P<k.length;P++){var U=k[P];U._dbInfo.db=null}var F=new p(function(W,X){var ce=d.deleteDatabase(c.name);ce.onerror=function(){var oe=ce.result;oe&&oe.close(),X(ce.error)},ce.onblocked=function(){console.warn('dropInstance blocked for database "'+c.name+'" until all open connections are closed')},ce.onsuccess=function(){var oe=ce.result;oe&&oe.close(),W(oe)}});return F.then(function(W){O.db=W;for(var X=0;X<k.length;X++){var ce=k[X];z(ce._dbInfo)}}).catch(function(W){throw(te(c,W)||p.resolve()).catch(function(){}),W})})}return f(y,m),y}var Nu={_driver:"asyncStorage",_initStorage:Su,_support:_(),iterate:Ru,getItem:Cu,setItem:Ou,removeItem:ku,clear:Tu,length:xu,key:Pu,keys:Lu,dropInstance:Du};function Uu(){return typeof openDatabase=="function"}var lt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Bu="~~local_forage_type~",Uo=/^~~local_forage_type~([^~]+)~/,Nn="__lfsc__:",da=Nn.length,fa="arbf",ha="blob",Bo="si08",Mo="ui08",Go="uic8",Jo="si16",Fo="si32",Ho="ur16",qo="ui32",jo="fl32",Vo="fl64",$o=da+fa.length,Wo=Object.prototype.toString;function Ko(c){var m=c.length*.75,u=c.length,g,y=0,v,E,S,O;c[c.length-1]==="="&&(m--,c[c.length-2]==="="&&m--);var k=new ArrayBuffer(m),P=new Uint8Array(k);for(g=0;g<u;g+=4)v=lt.indexOf(c[g]),E=lt.indexOf(c[g+1]),S=lt.indexOf(c[g+2]),O=lt.indexOf(c[g+3]),P[y++]=v<<2|E>>4,P[y++]=(E&15)<<4|S>>2,P[y++]=(S&3)<<6|O&63;return k}function ma(c){var m=new Uint8Array(c),u="",g;for(g=0;g<m.length;g+=3)u+=lt[m[g]>>2],u+=lt[(m[g]&3)<<4|m[g+1]>>4],u+=lt[(m[g+1]&15)<<2|m[g+2]>>6],u+=lt[m[g+2]&63];return m.length%3===2?u=u.substring(0,u.length-1)+"=":m.length%3===1&&(u=u.substring(0,u.length-2)+"=="),u}function Mu(c,m){var u="";if(c&&(u=Wo.call(c)),c&&(u==="[object ArrayBuffer]"||c.buffer&&Wo.call(c.buffer)==="[object ArrayBuffer]")){var g,y=Nn;c instanceof ArrayBuffer?(g=c,y+=fa):(g=c.buffer,u==="[object Int8Array]"?y+=Bo:u==="[object Uint8Array]"?y+=Mo:u==="[object Uint8ClampedArray]"?y+=Go:u==="[object Int16Array]"?y+=Jo:u==="[object Uint16Array]"?y+=Ho:u==="[object Int32Array]"?y+=Fo:u==="[object Uint32Array]"?y+=qo:u==="[object Float32Array]"?y+=jo:u==="[object Float64Array]"?y+=Vo:m(new Error("Failed to get type for BinaryArray"))),m(y+ma(g))}else if(u==="[object Blob]"){var v=new FileReader;v.onload=function(){var E=Bu+c.type+"~"+ma(this.result);m(Nn+ha+E)},v.readAsArrayBuffer(c)}else try{m(JSON.stringify(c))}catch(E){console.error("Couldn't convert value into a JSON string: ",c),m(null,E)}}function Gu(c){if(c.substring(0,da)!==Nn)return JSON.parse(c);var m=c.substring($o),u=c.substring(da,$o),g;if(u===ha&&Uo.test(m)){var y=m.match(Uo);g=y[1],m=m.substring(y[0].length)}var v=Ko(m);switch(u){case fa:return v;case ha:return h([v],{type:g});case Bo:return new Int8Array(v);case Mo:return new Uint8Array(v);case Go:return new Uint8ClampedArray(v);case Jo:return new Int16Array(v);case Ho:return new Uint16Array(v);case Fo:return new Int32Array(v);case qo:return new Uint32Array(v);case jo:return new Float32Array(v);case Vo:return new Float64Array(v);default:throw new Error("Unkown type: "+u)}}var pa={serialize:Mu,deserialize:Gu,stringToBuffer:Ko,bufferToString:ma};function zo(c,m,u,g){c.executeSql("CREATE TABLE IF NOT EXISTS "+m.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],u,g)}function Ju(c){var m=this,u={db:null};if(c)for(var g in c)u[g]=typeof c[g]!="string"?c[g].toString():c[g];var y=new p(function(v,E){try{u.db=openDatabase(u.name,String(u.version),u.description,u.size)}catch(S){return E(S)}u.db.transaction(function(S){zo(S,u,function(){m._dbInfo=u,v()},function(O,k){E(k)})},E)});return u.serializer=pa,y}function ct(c,m,u,g,y,v){c.executeSql(u,g,y,function(E,S){S.code===S.SYNTAX_ERR?E.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[m.storeName],function(O,k){k.rows.length?v(O,S):zo(O,m,function(){O.executeSql(u,g,y,v)},v)},v):v(E,S)},v)}function Fu(c,m){var u=this;c=A(c);var g=new p(function(y,v){u.ready().then(function(){var E=u._dbInfo;E.db.transaction(function(S){ct(S,E,"SELECT * FROM "+E.storeName+" WHERE key = ? LIMIT 1",[c],function(O,k){var P=k.rows.length?k.rows.item(0).value:null;P&&(P=E.serializer.deserialize(P)),y(P)},function(O,k){v(k)})})}).catch(v)});return f(g,m),g}function Hu(c,m){var u=this,g=new p(function(y,v){u.ready().then(function(){var E=u._dbInfo;E.db.transaction(function(S){ct(S,E,"SELECT * FROM "+E.storeName,[],function(O,k){for(var P=k.rows,U=P.length,F=0;F<U;F++){var W=P.item(F),X=W.value;if(X&&(X=E.serializer.deserialize(X)),X=c(X,W.key,F+1),X!==void 0){y(X);return}}y()},function(O,k){v(k)})})}).catch(v)});return f(g,m),g}function Xo(c,m,u,g){var y=this;c=A(c);var v=new p(function(E,S){y.ready().then(function(){m===void 0&&(m=null);var O=m,k=y._dbInfo;k.serializer.serialize(m,function(P,U){U?S(U):k.db.transaction(function(F){ct(F,k,"INSERT OR REPLACE INTO "+k.storeName+" (key, value) VALUES (?, ?)",[c,P],function(){E(O)},function(W,X){S(X)})},function(F){if(F.code===F.QUOTA_ERR){if(g>0){E(Xo.apply(y,[c,O,u,g-1]));return}S(F)}})})}).catch(S)});return f(v,u),v}function qu(c,m,u){return Xo.apply(this,[c,m,u,1])}function ju(c,m){var u=this;c=A(c);var g=new p(function(y,v){u.ready().then(function(){var E=u._dbInfo;E.db.transaction(function(S){ct(S,E,"DELETE FROM "+E.storeName+" WHERE key = ?",[c],function(){y()},function(O,k){v(k)})})}).catch(v)});return f(g,m),g}function Vu(c){var m=this,u=new p(function(g,y){m.ready().then(function(){var v=m._dbInfo;v.db.transaction(function(E){ct(E,v,"DELETE FROM "+v.storeName,[],function(){g()},function(S,O){y(O)})})}).catch(y)});return f(u,c),u}function $u(c){var m=this,u=new p(function(g,y){m.ready().then(function(){var v=m._dbInfo;v.db.transaction(function(E){ct(E,v,"SELECT COUNT(key) as c FROM "+v.storeName,[],function(S,O){var k=O.rows.item(0).c;g(k)},function(S,O){y(O)})})}).catch(y)});return f(u,c),u}function Wu(c,m){var u=this,g=new p(function(y,v){u.ready().then(function(){var E=u._dbInfo;E.db.transaction(function(S){ct(S,E,"SELECT key FROM "+E.storeName+" WHERE id = ? LIMIT 1",[c+1],function(O,k){var P=k.rows.length?k.rows.item(0).key:null;y(P)},function(O,k){v(k)})})}).catch(v)});return f(g,m),g}function Ku(c){var m=this,u=new p(function(g,y){m.ready().then(function(){var v=m._dbInfo;v.db.transaction(function(E){ct(E,v,"SELECT key FROM "+v.storeName,[],function(S,O){for(var k=[],P=0;P<O.rows.length;P++)k.push(O.rows.item(P).key);g(k)},function(S,O){y(O)})})}).catch(y)});return f(u,c),u}function zu(c){return new p(function(m,u){c.transaction(function(g){g.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name <> '__WebKitDatabaseInfoTable__'",[],function(y,v){for(var E=[],S=0;S<v.rows.length;S++)E.push(v.rows.item(S).name);m({db:c,storeNames:E})},function(y,v){u(v)})},function(g){u(g)})})}function Xu(c,m){m=C.apply(this,arguments);var u=this.config();c=typeof c!="function"&&c||{},c.name||(c.name=c.name||u.name,c.storeName=c.storeName||u.storeName);var g=this,y;return c.name?y=new p(function(v){var E;c.name===u.name?E=g._dbInfo.db:E=openDatabase(c.name,"","",0),c.storeName?v({db:E,storeNames:[c.storeName]}):v(zu(E))}).then(function(v){return new p(function(E,S){v.db.transaction(function(O){function k(W){return new p(function(X,ce){O.executeSql("DROP TABLE IF EXISTS "+W,[],function(){X()},function(oe,Be){ce(Be)})})}for(var P=[],U=0,F=v.storeNames.length;U<F;U++)P.push(k(v.storeNames[U]));p.all(P).then(function(){E()}).catch(function(W){S(W)})},function(O){S(O)})})}):y=p.reject("Invalid arguments"),f(y,m),y}var Yu={_driver:"webSQLStorage",_initStorage:Ju,_support:Uu(),iterate:Hu,getItem:Fu,setItem:qu,removeItem:ju,clear:Vu,length:$u,key:Wu,keys:Ku,dropInstance:Xu};function Qu(){try{return typeof localStorage!="undefined"&&"setItem"in localStorage&&!!localStorage.setItem}catch(c){return!1}}function Yo(c,m){var u=c.name+"/";return c.storeName!==m.storeName&&(u+=c.storeName+"/"),u}function Zu(){var c="_localforage_support_test";try{return localStorage.setItem(c,!0),localStorage.removeItem(c),!1}catch(m){return!0}}function ed(){return!Zu()||localStorage.length>0}function td(c){var m=this,u={};if(c)for(var g in c)u[g]=c[g];return u.keyPrefix=Yo(c,m._defaultConfig),ed()?(m._dbInfo=u,u.serializer=pa,p.resolve()):p.reject()}function nd(c){var m=this,u=m.ready().then(function(){for(var g=m._dbInfo.keyPrefix,y=localStorage.length-1;y>=0;y--){var v=localStorage.key(y);v.indexOf(g)===0&&localStorage.removeItem(v)}});return f(u,c),u}function rd(c,m){var u=this;c=A(c);var g=u.ready().then(function(){var y=u._dbInfo,v=localStorage.getItem(y.keyPrefix+c);return v&&(v=y.serializer.deserialize(v)),v});return f(g,m),g}function ad(c,m){var u=this,g=u.ready().then(function(){for(var y=u._dbInfo,v=y.keyPrefix,E=v.length,S=localStorage.length,O=1,k=0;k<S;k++){var P=localStorage.key(k);if(P.indexOf(v)===0){var U=localStorage.getItem(P);if(U&&(U=y.serializer.deserialize(U)),U=c(U,P.substring(E),O++),U!==void 0)return U}}});return f(g,m),g}function id(c,m){var u=this,g=u.ready().then(function(){var y=u._dbInfo,v;try{v=localStorage.key(c)}catch(E){v=null}return v&&(v=v.substring(y.keyPrefix.length)),v});return f(g,m),g}function od(c){var m=this,u=m.ready().then(function(){for(var g=m._dbInfo,y=localStorage.length,v=[],E=0;E<y;E++){var S=localStorage.key(E);S.indexOf(g.keyPrefix)===0&&v.push(S.substring(g.keyPrefix.length))}return v});return f(u,c),u}function sd(c){var m=this,u=m.keys().then(function(g){return g.length});return f(u,c),u}function ld(c,m){var u=this;c=A(c);var g=u.ready().then(function(){var y=u._dbInfo;localStorage.removeItem(y.keyPrefix+c)});return f(g,m),g}function cd(c,m,u){var g=this;c=A(c);var y=g.ready().then(function(){m===void 0&&(m=null);var v=m;return new p(function(E,S){var O=g._dbInfo;O.serializer.serialize(m,function(k,P){if(P)S(P);else try{localStorage.setItem(O.keyPrefix+c,k),E(v)}catch(U){(U.name==="QuotaExceededError"||U.name==="NS_ERROR_DOM_QUOTA_REACHED")&&S(U),S(U)}})})});return f(y,u),y}function ud(c,m){if(m=C.apply(this,arguments),c=typeof c!="function"&&c||{},!c.name){var u=this.config();c.name=c.name||u.name,c.storeName=c.storeName||u.storeName}var g=this,y;return c.name?y=new p(function(v){c.storeName?v(Yo(c,g._defaultConfig)):v(c.name+"/")}).then(function(v){for(var E=localStorage.length-1;E>=0;E--){var S=localStorage.key(E);S.indexOf(v)===0&&localStorage.removeItem(S)}}):y=p.reject("Invalid arguments"),f(y,m),y}var dd={_driver:"localStorageWrapper",_initStorage:td,_support:Qu(),iterate:ad,getItem:rd,setItem:cd,removeItem:ld,clear:nd,length:sd,key:id,keys:od,dropInstance:ud},fd=function(m,u){return m===u||typeof m=="number"&&typeof u=="number"&&isNaN(m)&&isNaN(u)},hd=function(m,u){for(var g=m.length,y=0;y<g;){if(fd(m[y],u))return!0;y++}return!1},Qo=Array.isArray||function(c){return Object.prototype.toString.call(c)==="[object Array]"},Zt={},Zo={},Ct={INDEXEDDB:Nu,WEBSQL:Yu,LOCALSTORAGE:dd},md=[Ct.INDEXEDDB._driver,Ct.WEBSQL._driver,Ct.LOCALSTORAGE._driver],Un=["dropInstance"],va=["clear","getItem","iterate","key","keys","length","removeItem","setItem"].concat(Un),pd={description:"",driver:md.slice(),name:"localforage",size:4980736,storeName:"keyvaluepairs",version:1};function vd(c,m){c[m]=function(){var u=arguments;return c.ready().then(function(){return c[m].apply(c,u)})}}function ga(){for(var c=1;c<arguments.length;c++){var m=arguments[c];if(m)for(var u in m)m.hasOwnProperty(u)&&(Qo(m[u])?arguments[0][u]=m[u].slice():arguments[0][u]=m[u])}return arguments[0]}var gd=function(){function c(m){s(this,c);for(var u in Ct)if(Ct.hasOwnProperty(u)){var g=Ct[u],y=g._driver;this[u]=y,Zt[y]||this.defineDriver(g)}this._defaultConfig=ga({},pd),this._config=ga({},this._defaultConfig,m),this._driverSet=null,this._initDriver=null,this._ready=!1,this._dbInfo=null,this._wrapLibraryMethodsWithReady(),this.setDriver(this._config.driver).catch(function(){})}return c.prototype.config=function(u){if((typeof u=="undefined"?"undefined":o(u))==="object"){if(this._ready)return new Error("Can't call config() after localforage has been used.");for(var g in u){if(g==="storeName"&&(u[g]=u[g].replace(/\W/g,"_")),g==="version"&&typeof u[g]!="number")return new Error("Database version must be a number.");this._config[g]=u[g]}return"driver"in u&&u.driver?this.setDriver(this._config.driver):!0}else return typeof u=="string"?this._config[u]:this._config},c.prototype.defineDriver=function(u,g,y){var v=new p(function(E,S){try{var O=u._driver,k=new Error("Custom driver not compliant; see https://mozilla.github.io/localForage/#definedriver");if(!u._driver){S(k);return}for(var P=va.concat("_initStorage"),U=0,F=P.length;U<F;U++){var W=P[U],X=!hd(Un,W);if((X||u[W])&&typeof u[W]!="function"){S(k);return}}var ce=function(){for(var en=function(wd){return function(){var bd=new Error("Method "+wd+" is not implemented by the current driver"),es=p.reject(bd);return f(es,arguments[arguments.length-1]),es}},_a=0,yd=Un.length;_a<yd;_a++){var ya=Un[_a];u[ya]||(u[ya]=en(ya))}};ce();var oe=function(en){Zt[O]&&console.info("Redefining LocalForage driver: "+O),Zt[O]=u,Zo[O]=en,E()};"_support"in u?u._support&&typeof u._support=="function"?u._support().then(oe,S):oe(!!u._support):oe(!0)}catch(Be){S(Be)}});return w(v,g,y),v},c.prototype.driver=function(){return this._driver||null},c.prototype.getDriver=function(u,g,y){var v=Zt[u]?p.resolve(Zt[u]):p.reject(new Error("Driver not found."));return w(v,g,y),v},c.prototype.getSerializer=function(u){var g=p.resolve(pa);return w(g,u),g},c.prototype.ready=function(u){var g=this,y=g._driverSet.then(function(){return g._ready===null&&(g._ready=g._initDriver()),g._ready});return w(y,u,u),y},c.prototype.setDriver=function(u,g,y){var v=this;Qo(u)||(u=[u]);var E=this._getSupportedDrivers(u);function S(){v._config.driver=v.driver()}function O(U){return v._extend(U),S(),v._ready=v._initStorage(v._config),v._ready}function k(U){return function(){var F=0;function W(){for(;F<U.length;){var X=U[F];return F++,v._dbInfo=null,v._ready=null,v.getDriver(X).then(O).catch(W)}S();var ce=new Error("No available storage method found.");return v._driverSet=p.reject(ce),v._driverSet}return W()}}var P=this._driverSet!==null?this._driverSet.catch(function(){return p.resolve()}):p.resolve();return this._driverSet=P.then(function(){var U=E[0];return v._dbInfo=null,v._ready=null,v.getDriver(U).then(function(F){v._driver=F._driver,S(),v._wrapLibraryMethodsWithReady(),v._initDriver=k(E)})}).catch(function(){S();var U=new Error("No available storage method found.");return v._driverSet=p.reject(U),v._driverSet}),w(this._driverSet,g,y),this._driverSet},c.prototype.supports=function(u){return!!Zo[u]},c.prototype._extend=function(u){ga(this,u)},c.prototype._getSupportedDrivers=function(u){for(var g=[],y=0,v=u.length;y<v;y++){var E=u[y];this.supports(E)&&g.push(E)}return g},c.prototype._wrapLibraryMethodsWithReady=function(){for(var u=0,g=va.length;u<g;u++)vd(this,va[u])},c.prototype.createInstance=function(u){return new c(u)},c}(),_d=new gd;a.exports=_d},{3:3}]},{},[4])(4)})});var rl=Ea(vr=>{"use strict";G();sn();dt();var fi=(e,t)=>{window.parent&&window.parent.postMessage({type:e,data:t},"*")},hi=ge(),Ff=Ze("levelFinished",{paramsSchema:J.tuple(J.object({levelId:J.or(J.string(),J.number()),duration:J.number().optional(),rating:J.number().optional(),score:J.number().optional(),variation:J.string().optional()})),implement:e=>I(vr,null,function*(){let{levelId:t,duration:n,rating:r,score:a,variation:i}=e;Te.info("onLevelFinished",n,r,a,i),fi("JOLIBOX_GAME_TASK_LEVEL_FINISHED",{levelId:t,duration:n,rating:r,score:a,variation:i}),yield Promise.all([Ye.reporter({event:"COMPLETE_GAME_LEVEL",extraParams:{inGameInfo:{levelId:t,duration:n,rating:r,score:a}}}),Ye.tracker("LevelFinished",{levelId:t,duration:n,rating:r,score:a,variation:i})])})}),Hf=Ze("gamePlayEnded",{paramsSchema:J.tuple(J.object({duration:J.number().optional(),rating:J.number().optional(),score:J.number(),variation:J.string().optional()})),implement:e=>I(vr,null,function*(){let{duration:t,rating:n,score:r,variation:a}=e;Te.info("onGamePlayEnded",t,n,r,a),fi("JOLIBOX_GAME_TASK_GAME_PLAY_ENDED",{duration:t,rating:n,score:r,variation:a}),yield Promise.all([Ye.tracker("GamePlayEnded",{duration:t,rating:n,score:r,variation:a}),Ye.reporter({event:"GAME_ENDED",extraParams:{inGameInfo:{duration:t,rating:n,score:r}}})])})}),qf=Ze("levelUpgrade",{paramsSchema:J.tuple(J.object({levelId:J.or(J.string(),J.number()),name:J.string().optional()})),implement:n=>I(vr,[n],function*({levelId:e,name:t}){Te.info("onLevelUpgrade",e,t),fi("JOLIBOX_GAME_TASK_LEVEL_UPGRADE",{levelId:e,name:t}),yield Promise.all([Ye.tracker("LevelUpgrade",{name:t,levelId:e}),Ye.reporter({event:"GAME_LEVEL_UP",extraParams:{inGameInfo:{levelId:e,levelName:t}}})])})});hi.registerCommand("TaskTrackerSDK.levelFinished",Ff);hi.registerCommand("TaskTrackerSDK.gamePlayEnded",Hf);hi.registerCommand("TaskTrackerSDK.levelUpgrade",qf);_e("TaskTrackerSDK.onLevelFinished",{version:"1.1.25",properties:{params:{levelId:"1.1.25",duration:"1.1.25",rating:"1.1.25",score:"1.1.25",variation:"1.1.50"}}});_e("TaskTrackerSDK.onGamePlayEnded",{version:"1.1.25",properties:{params:{duration:"1.1.25",rating:"1.1.25",score:"1.1.25",variation:"1.1.50"}}});_e("TaskTrackerSDK.onLevelUpgrade",{version:"1.1.25",properties:{params:{levelId:"1.1.25",name:"1.1.25"}}})});var qe,Pt,al,mi,jf,wt,gr=ee(()=>{"use strict";qe=(e,t)=>{var n;window.dispatchEvent(new CustomEvent(e,{detail:t})),(n=window.parent)==null||n.postMessage({type:e,data:{detail:t}},"*")},Pt=new Map,al=e=>{if(e.source===window.parent)try{let t=e.data;if(t&&t.type){let n=Pt.get(t.type);n&&n.forEach(r=>{try{r(t.data)}catch(a){console.warn("Callback execution failed:",a)}})}}catch(t){console.warn("Failed to parse message:",t)}},mi=!1,jf=()=>{mi||(window.addEventListener("message",al),mi=!0)},wt=(e,t)=>{jf(),Pt.has(e)||Pt.set(e,new Set);let n=Pt.get(e);return n.add(t),()=>{n.delete(t),n.size===0&&Pt.delete(e),Pt.size===0&&(window.removeEventListener("message",al),mi=!1)}}});var _r,yr,wr,br,Er,pi,Ir,Ar,Sr,Cr,Lt,Vf,Y,et,tt,Se=ee(()=>{"use strict";G();_r="UNLOCK_OPTIONS_CHANGED",yr="INVOKE_PAYMENT",wr="ON_PAYMENT_RESULT",br="ON_USE_MODAL_EVENT",Er="ON_USE_MODAL_RESULT",pi="ON_USE_MODAL_FREQUENCY",Ir="ON_USE_UNLOGIN_MODAL_EVENT",Ar="INVOKE_UNLOGIN_MODAL_EVENT",Sr="INVOKE_SUBSCRIPTION_EVENT",Cr="ON_USE_SUBSCRIPTION_RESULT",Lt=new He,Vf=()=>({on:Lt.on.bind(Lt),off:Lt.off.bind(Lt),emit:Lt.emit.bind(Lt)}),Y=Vf(),et={charge:{dailyMaxPopUps:2,minInterval:8*60*60*1e3},useJolicoin:{dailyMaxPopUps:2,minInterval:8*60*60*1e3}},tt={show:!0,minInterval:8*60*60*1e3}});var ru=Ea(aa=>{"use strict";ue();Se();gr();G();var nu={USE_COIN:"CONFIRM",ADS:"FAILED",CANCEL:"CANCEL"};wt("ON_JOLIBOX_JOLI_COIN_USE_RESULT",e=>{console.log("onCustomEvent ON_JOLIBOX_JOLI_COIN_USE_RESULT",nu[e.result],e.result),Y.emit(Er,{useModalResult:nu[e.result]})});Y.on(br,(e,t)=>{var n;e=="ADS-JOLI_GEM"||e=="JOLI_GEM"||qe("JOLIBOX_JOLI_COIN_USE_EVENT",{JOLI_COIN:{quantity:t.quantity,balance:t.userCurrency.balance,enableAutoDeduct:t.enableAutoDeduct},type:e,sequenceId:(n=t.sequenceId)!=null?n:Ge()})});wt("ON_JOLIBOX_TOPUP_JOLI_COIN_RESULT",e=>{Y.emit(wr,{paymentResult:e.result=="ADS"?"FAILED":e.result,userJoliCoin:e.joliCoin,currency:"JOLI_COIN"})});Y.on(yr,(e,t)=>I(aa,null,function*(){var n;e=="ADS-JOLI_GEM"||e=="JOLI_GEM"||qe("JOLIBOX_TOPUP_EVENT",{JOLI_COIN:{quantity:t.quantity,balance:t.userCurrency.balance,enableAutoDeduct:t.enableAutoDeduct},type:e,sequenceId:(n=t.sequenceId)!=null?n:Ge()})}));wt("ON_JOLIBOX_JOLI_UNLOGIN_MODAL_RESULT_EVENT",e=>{var t,n,r,a,i;Y.emit(Ir,{result:e.result=="ADS"?"FAILED":e.result,rewards:{claimedRewardValue:(a=(r=(n=(t=e.extra)==null?void 0:t.firstLogin)==null?void 0:n.reward)==null?void 0:r.rewardValue)!=null?a:0,isFirstLogin:(i=e.isFirstLogin)!=null?i:!1}}),e.result==="SUCCESS"&&L.onEnvConfigChanged({hostUserInfo:{isLogin:!0}})});Y.on(Ar,e=>I(aa,null,function*(){e=="ADS-JOLI_GEM"||e=="JOLI_GEM"||qe("JOLIBOX_JOLI_UNLOGIN_MODAL_EVENT",{sequenceId:Ge(),type:e})}));wt("ON_JOLIBOX_SUB_RESULT_EVENT",e=>{console.log("----on custom event ON_JOLIBOX_SUB_RESULT_EVENT-----",e),Y.emit(Cr,{result:e.result})});Y.on(Sr,e=>I(aa,null,function*(){console.log("----notify custom event-----",e),qe("JOLIBOX_SUB_EVENT",{sequenceId:Ge()})}))});dt();ue();sn();G();var Qs=ge(),Sf="env",Cf="getSystemInfoSync",Rf=()=>{var a,i,o,s;let e={system:L.deviceInfo.system,platform:L.deviceInfo.platform.toLowerCase(),brand:L.deviceInfo.brand,pixelRatio:L.deviceInfo.pixelRatio,language:L.deviceInfo.lang,version:L.sdkInfo.jssdkVersion,appName:(a=L.hostInfo)==null?void 0:a.appName,SDKVersion:L.sdkInfo.nativeSDKVersion},t=(i=L.hostInfo)==null?void 0:i.version;t&&(e=Ee(q({},e),{version:t}));let n=(o=L.hostInfo)==null?void 0:o.appName;n&&(e=Ee(q({},e),{appName:n}));let r=(s=L.sdkInfo)==null?void 0:s.jssdkVersion;return r&&(e=Ee(q({},e),{SDKVersion:r})),e},Of=yt(Cf,{implement:Rf}),kf=yt(Sf,{implement:()=>Ee(q({},L.hostInfo),{sdkInfo:L.sdkInfo,platform:L.platform,deviceInfo:L.deviceInfo})});Qs.registerCommand("API.env",kf);Qs.registerCommand("API.getSystemInfoSync",Of);_e("env",{version:"1.0.0"});_e("getSystemInfoSync",{version:"1.0.0"});G();sn();ze();dt();var Tf="onJoliboxShow",xf="onJoliboxHide",Pf="onReady",li=ge(),ci=ws(xe),si=!0,ln=!0,fr=0,hr=ei;function Lf(){let e=Date.now();if(e-fr<100)return;fr=e;let t=document.visibilityState==="visible";t!==si&&(si=t,hr.emit("visible",si))}function Zs(e){let t=Date.now();t-fr<100||(fr=t,e==="focus"&&!ln?ln=!0:e==="blur"&&ln&&(ln=!1),hr.emit("visible",ln))}document.addEventListener("visibilitychange",Lf);window.addEventListener("focus",()=>Zs("focus"));window.addEventListener("blur",()=>Zs("blur"));var Df=yt(Tf,{paramsSchema:J.tuple(J.function()),implement(e){let t=ci(e);hr.on("visible",n=>{n&&t()})}}),Nf=yt(xf,{paramsSchema:J.tuple(J.function()),implement(e){let t=ci(e);hr.on("visible",n=>{!n&&t()})}}),Uf=yt(Pf,{paramsSchema:J.tuple(J.function()),implement(e){let t=ci(e);ut.on("LifecycleEvent.onReady",n=>{t(n)})}});li.registerCommand("LifecycleSDK.onReady",Uf);li.registerCommand("LifecycleSDK.onJoliboxShow",Df);li.registerCommand("LifecycleSDK.onJoliboxHide",Nf);_e("lifeCycle.onReady",{version:"1.0.0"});_e("lifeCycle.onJoliboxShow",{version:"1.0.0"});_e("lifeCycle.onJoliboxHide",{version:"1.0.0"});sn();G();Tt();ue();var nl=Ia(tl());var mr=ge(),di=class{constructor(){this.httpClient=Je.create({baseUrl:kt(L.testMode)});this.getGameId=()=>L.mpId;this.getItem=t=>I(this,null,function*(){let{code:n,data:r,message:a}=yield this.httpClient.get(`/api/games/user-storage/${this.gameId}`,{query:{key:t}}),i=r==null?void 0:r.value,o=a;return n!=="SUCCESS"&&(i=yield this.gameStore.getItem(t),console.info("[SDK] cloud storage getItem failed, read from localstorage",i),o+="fallback to localstorage"),{code:n,message:o,data:i&&i!=="undefined"?i:null}});this.setItem=(t,n)=>I(this,null,function*(){let r=typeof n=="string"?n:String(n),{code:a,message:i}=yield this.httpClient.post(`/api/games/user-storage/${this.gameId}`,{data:{key:t,value:r}});return yield this.gameStore.setItem(t,r),{code:a,message:i}});this.removeItem=t=>I(this,null,function*(){yield this.gameStore.removeItem(t);let{code:n,message:r}=yield this.httpClient.post(`/api/games/user-storage/${this.gameId}/remove`,{data:{key:t}});return{code:n,message:r}});this.clear=()=>I(this,null,function*(){yield this.gameStore.clear();let{code:t,message:n}=yield this.httpClient.post(`/api/games/user-storage/${this.gameId}/clear`,{});return{code:t,message:n}});this.gameId=this.getGameId(),this.gameStore=nl.default.createInstance({name:this.gameId.length?this.gameId:"default"})}},pr=new di,Bf=Ze("getLocalStorage",{paramsSchema:J.tuple(J.string()),implement(e){return I(this,null,function*(){return yield pr.getItem(e)})}});mr.registerCommand("StorageSDK.getItem",Bf);_e("storage.getItem",{version:"1.0.0",properties:{key:"1.0.0",value:"1.0.0"}});var Mf=Ze("setStorage",{paramsSchema:J.tuple(J.string(),J.or(J.string(),J.boolean(),J.number())),implement(e,t){return I(this,null,function*(){return yield pr.setItem(e,t)})}});mr.registerCommand("StorageSDK.setItem",Mf);_e("storage.setItem",{version:"1.0.0",properties:{key:"1.0.0",value:"1.0.0"}});var Gf=Ze("removeStorage",{paramsSchema:J.tuple(J.string()),implement(e){return I(this,null,function*(){return yield pr.removeItem(e)})}});mr.registerCommand("StorageSDK.removeItem",Gf);_e("storage.removeItem",{version:"1.0.0",properties:{key:"1.0.0"}});var Jf=Ze("clearStorage",{implement(){return I(this,null,function*(){return yield pr.clear()})}});mr.registerCommand("StorageSDK.clear",Jf);_e("storage.clear",{version:"1.0.0"});var QE=Ia(rl());dt();G();Tt();gr();ue();Se();var il=L.testMode;function ol(){let e=new Map,t,n;return{registerRewardHandler(a,i){e.set(a,i)},handleReward(a,...i){return I(this,null,function*(){return yield a.reduce((s,l)=>I(this,null,function*(){let d=yield s;if(d===!0)return!0;il&&console.log(`handleReward ${l}`);let _=e.get(l),h=_?yield _(...i):d;return il&&console.log(`handleReward ${l} ${h}`),h}),Promise.resolve(!1))})},registerRewardsFetcher(a){return I(this,null,function*(){t=(...i)=>I(this,null,function*(){try{return yield a(...i)}catch(o){return console.error("getRewardOptions error:",o),["ADS"]}})})},registerRewardFrequencyConfigFetcher(a){return I(this,null,function*(){n=(...i)=>I(this,null,function*(){try{return yield a(...i)}catch(o){return console.error("getRewardOptions error:",o),{joliCoinUseAndCharge:et,loginGuide:tt}}})})},getRewardsTypes(...a){return I(this,null,function*(){return t?yield t(...a):["ADS"]})},getRewardFrequencyConfig(...a){return I(this,null,function*(){return n?yield n(...a):{joliCoinUseAndCharge:et,loginGuide:tt}})}}}G();var vi=class{constructor(t){this.httpClient=t}execute(t,n){return I(this,null,function*(){let r=(n==null?void 0:n.method)||"POST",a=(n==null?void 0:n.body)||{};return r==="GET"?yield this.httpClient.get(t,a):yield this.httpClient.post(t,a)})}extractCacheableData(t){var n,r,a;return{unlockOptions:((n=t.data)==null?void 0:n.unlockOptions)||[],joliCoin:(r=t.extra)==null?void 0:r.joliCoin,joliGem:((a=t.extra)==null?void 0:a.joliGem)||{balance:0,enableAutoDeduct:!1}}}mergeData(t,n){return{code:"SUCCESS",message:"success",data:{unlockOptions:t.unlockOptions},extra:{joliCoin:t.joliCoin,joliGem:t.joliGem}}}processCachedData(t){return{code:"SUCCESS",message:"success from cache",data:{unlockOptions:t.unlockOptions},extra:{joliCoin:t.joliCoin,joliGem:t.joliGem}}}},gi=class{constructor(t){this.httpClient=t}execute(t,n){return I(this,null,function*(){let r=(n==null?void 0:n.method)||"GET",a=(n==null?void 0:n.body)||{};return r==="GET"?yield this.httpClient.get(t,a):yield this.httpClient.post(t,a)})}extractCacheableData(t){let n=t.data;return q({joliCoinUseAndCharge:n==null?void 0:n.joliCoinUseAndCharge,loginGuide:n==null?void 0:n.loginGuide},n)}processCachedData(t){return{code:"SUCCESS",message:"success from cache",data:t}}},Rr=class{constructor(t){this.unlockOptionsService=new gt(new vi(t),{duration:30*60*1e3,timeout:1e3,keyGenerator:n=>n,consistencyChecker:(n,r)=>n.unlockOptions.length!==r.unlockOptions.length?!1:n.unlockOptions.every((a,i)=>{var s,l;let o=r.unlockOptions[i];return a.type===o.type&&((s=a.joliGemChoice)==null?void 0:s.joliGemQuantity)===((l=o.joliGemChoice)==null?void 0:l.joliGemQuantity)})}),this.globalConfigService=new gt(new gi(t),{duration:60*60*1e3,timeout:1e3,keyGenerator:n=>n})}getUnlockOptions(){return I(this,arguments,function*(t={}){return yield this.unlockOptionsService.request("/api/games/unlock-options",{endpoint:"/api/games/unlock-options",body:t,method:"POST"})})}getGlobalConfig(){return I(this,null,function*(){return yield this.globalConfigService.request("/api/fe-configs/web-common/global-config",{endpoint:"/api/fe-configs/web-common/global-config",method:"GET"})})}refreshUnlockOptions(){return I(this,arguments,function*(t={}){return yield this.unlockOptionsService.forceRequest("/api/games/unlock-options",{endpoint:"/api/games/unlock-options",body:t,method:"POST"})})}refreshGlobalConfig(){return I(this,null,function*(){return yield this.globalConfigService.forceRequest("/api/fe-configs/web-common/global-config",{endpoint:"/api/fe-configs/web-common/global-config",method:"GET"})})}warmupCache(){return I(this,null,function*(){yield Promise.all([this.unlockOptionsService.warmupCache("/api/games/unlock-options",{endpoint:"/api/games/unlock-options",method:"POST"}),this.globalConfigService.warmupCache("/api/fe-configs/web-common/global-config",{endpoint:"/api/fe-configs/web-common/global-config",method:"GET"})])})}clearAllCache(){this.unlockOptionsService.clearCache(),this.globalConfigService.clearCache()}getCacheStats(){return{unlockOptions:this.unlockOptionsService.getCacheStats(),globalConfig:this.globalConfigService.getCacheStats()}}clearExpiredCache(){this.unlockOptionsService.clearExpiredCache(),this.globalConfigService.clearExpiredCache()}};Se();G();var $f=()=>(e,t)=>{let n={SUBSCRIPTION:4,JOLI_GEM:3,JOLI_GEM_ONLY:3,JOLI_COIN:2,JOLI_COIN_ONLY:2,ADS:1};return n[t]-n[e]},Wf=e=>{if(!e.length)return["ADS"];if(e.includes("JOLI_GEM")){if(e.length===1)return["JOLI_GEM_ONLY"];if(e.includes("SUBSCRIPTION")&&e.length===2)return["SUBSCRIPTION","JOLI_GEM_ONLY"]}if(e.includes("JOLI_COIN")){if(e.length===1)return["JOLI_COIN_ONLY"];if(e.includes("SUBSCRIPTION")&&e.length===2)return["SUBSCRIPTION","JOLI_COIN_ONLY"]}return e.sort($f())},_i=null;function yi(e){return _i||(_i=new Rr(e)),_i}var wi=e=>{e.registerRewardsFetcher(t=>I(void 0,null,function*(){var a,i,o,s,l;let n=["ADS"],r=yi(t);try{let d=yield r.getUnlockOptions({});if(d.code!=="SUCCESS")return n;Y.emit(_r,{options:((a=d.data)==null?void 0:a.unlockOptions)||[],userJoliCoin:((i=d.extra)==null?void 0:i.joliCoin)||{balance:0,enableAutoDeduct:!1},userGem:((o=d.extra)==null?void 0:o.joliGem)||{balance:0,enableAutoDeduct:!1}});let _=((l=(s=d.data)==null?void 0:s.unlockOptions)==null?void 0:l.map(h=>h.type))||Array.from(n);return Wf(_)}catch(d){return console.error("getRewardOptions error (cached):",d),n}}))},bi=e=>{e.registerRewardFrequencyConfigFetcher(t=>I(void 0,null,function*(){var r,a,i,o;let n=yi(t);try{let s=yield n.getGlobalConfig();return Y.emit(pi,{joliCoinUseAndCharge:((r=s.data)==null?void 0:r.joliCoinUseAndCharge)||et,loginGuide:((a=s.data)==null?void 0:a.loginGuide)||tt}),s.data&&ut.emit("onGlobalConfigChanged",{globalConfig:s.data}),{joliCoinUseAndCharge:((i=s.data)==null?void 0:i.joliCoinUseAndCharge)||et,loginGuide:((o=s.data)==null?void 0:o.loginGuide)||tt}}catch(s){return console.error("getGlobalConfig error (cached):",s),Y.emit(pi,{joliCoinUseAndCharge:et,loginGuide:tt}),ut.emit("onGlobalConfigChanged",{globalConfig:{joliCoinUseAndCharge:et,loginGuide:tt}}),{joliCoinUseAndCharge:et,loginGuide:tt}}}))};var Ei=e=>I(void 0,null,function*(){yield yi(e).warmupCache(),console.log("Reward cache warmed up")});var sl=e=>t=>I(void 0,null,function*(){try{console.log("trigger @jolibox/ads reward",t),yield e.adBreak(t)}catch(n){console.error("-----createAdsRewardHandler error-----",n)}return!0});Se();function je(e,t){let n=null,r=null,a=null,i=()=>{if(a){n=Promise.resolve(a);return}n=new Promise(o=>{r=o})};return i(),e.on(t,(...o)=>{let s=o[0];a=s,r&&(r(s),r=null)}),{getData:()=>(n||i(),n),getCachedData:()=>a,clearCache:()=>{a=null,n=null},getFreshData:()=>(a=null,n=null,i(),n),updateData:o=>{if(a)return a=q(q({},a),o),n=Promise.resolve(a),r&&(r(a),r=null),a}}}Se();var Le=je(Y,_r);ue();G();var Ii={JOLI_COIN:{balanceEndpoint:"/api/joli-coin/balance",balanceDetailEndpoint:"/api/joli-coin/balance-detail",unlockEndpoint:"/api/joli-coin/unlock",unlockType:"JOLI_COIN"},GEM:{balanceEndpoint:"/api/joli-gem/balance",balanceDetailEndpoint:"/api/joli-gem/balance-detail",unlockEndpoint:"/api/joli-gem/unlock",unlockType:"GEM"}};G();var Me=ge();Se();Se();G();var Si=class{constructor(t){this.httpClient=t}execute(t,n){return I(this,null,function*(){let r=(n==null?void 0:n.method)||"GET",a=(n==null?void 0:n.query)||{};return r==="GET"?yield this.httpClient.get(t,{query:a}):yield this.httpClient.post(t,{query:a})})}extractCacheableData(t){var n;return{balance:((n=t.data)==null?void 0:n.balance)||0,timestamp:Date.now()}}processCachedData(t){return{code:"SUCCESS",message:"success from cache",data:{balance:t.balance}}}},Ci=class{constructor(t){this.balanceService=new gt(new Si(t),{duration:20*60*1e3,timeout:1e3,keyGenerator:(n,r)=>{let a=r!=null&&r.query?JSON.stringify(r.query):"";return`${n}:${a}`}})}getBalance(t="JOLI_COIN"){return I(this,null,function*(){return(yield this.balanceService.request("/api/joli-coin/balance",{endpoint:"/api/joli-coin/balance",query:{type:t},method:"GET"})).data})}refreshBalance(t="JOLI_COIN"){return I(this,null,function*(){return(yield this.balanceService.forceRequest("/api/joli-coin/balance",{endpoint:"/api/joli-coin/balance",query:{type:t},method:"GET"})).data})}warmupBalance(t="JOLI_COIN"){return I(this,null,function*(){yield this.balanceService.warmupCache("/api/joli-coin/balance",{endpoint:"/api/joli-coin/balance",query:{type:t},method:"GET"})})}clearBalanceCache(){this.balanceService.clearCache()}getBalanceCacheStats(){return this.balanceService.getCacheStats()}clearExpiredCache(){this.balanceService.clearExpiredCache()}},Ai=null;function Ri(e){return Ai||(Ai=new Ci(e)),Ai}var Oi=(e,t="JOLI_COIN")=>I(void 0,null,function*(){return yield Ri(e).getBalance(t)}),ki=(e,t="JOLI_COIN")=>I(void 0,null,function*(){let r=yield Ri(e).refreshBalance(t);return console.log(`Balance cache refreshed for type: ${t}`),r}),Or=(e,t="JOLI_COIN")=>I(void 0,null,function*(){yield Ri(e).warmupBalance(t),console.log(`Balance cache warmed up for type: ${t}`)});G();var xi=class{constructor(t){this.httpClient=t}execute(t,n){return I(this,null,function*(){let r=(n==null?void 0:n.method)||"GET",a=(n==null?void 0:n.query)||{};return r==="GET"?yield this.httpClient.get(t,{query:a}):yield this.httpClient.post(t,{query:a})})}extractCacheableData(t){var n;return{balance:((n=t.data)==null?void 0:n.balance)||0,timestamp:Date.now()}}processCachedData(t){return{code:"SUCCESS",message:"success from cache",data:{balance:t.balance}}}},Pi=class{constructor(t){this.gemBalanceService=new gt(new xi(t),{duration:20*60*1e3,timeout:1e3,keyGenerator:(n,r)=>{let a=r!=null&&r.query?JSON.stringify(r.query):"";return`${n}:${a}`}})}getGemBalance(t="GEM"){return I(this,null,function*(){return(yield this.gemBalanceService.request("/api/joli-gem/balance",{endpoint:"/api/joli-gem/balance",query:{type:t},method:"GET"})).data})}refreshGemBalance(t="GEM"){return I(this,null,function*(){return(yield this.gemBalanceService.forceRequest("/api/joli-gem/balance",{endpoint:"/api/joli-gem/balance",query:{type:t},method:"GET"})).data})}warmupGemBalance(t="GEM"){return I(this,null,function*(){yield this.gemBalanceService.warmupCache("/api/joli-gem/balance",{endpoint:"/api/joli-gem/balance",query:{type:t},method:"GET"})})}clearGemBalanceCache(){this.gemBalanceService.clearCache()}getGemBalanceCacheStats(){return this.gemBalanceService.getCacheStats()}clearExpiredCache(){this.gemBalanceService.clearExpiredCache()}},Ti=null;function Kf(e){return Ti||(Ti=new Pi(e)),Ti}var Li=(e,t="GEM")=>I(void 0,null,function*(){return yield Kf(e).getGemBalance(t)});var cn={JOLI_COIN:{fetchBalance:Oi,getQuantity:e=>{var t,n,r;return(r=(n=(t=e==null?void 0:e.options)==null?void 0:t.find(a=>a.type==="JOLI_COIN"))==null?void 0:n.joliCoinChoices[0].joliCoinQuantity)!=null?r:0},getCurrentUser:e=>{var t;return(t=e==null?void 0:e.userJoliCoin)!=null?t:{balance:0,enableAutoDeduct:!1}},createUpdatedUser:(e,t)=>({balance:e,enableAutoDeduct:t}),getUpdateKey:()=>"userJoliCoin",isEnough:(e,t)=>{var n,r;return(r=(n=e==null?void 0:e.options)==null?void 0:n.some(a=>a.type==="JOLI_COIN"&&a.joliCoinChoices.some(i=>{var o;return i.joliCoinQuantity<=((o=t==null?void 0:t.balance)!=null?o:0)})))!=null?r:!1}},JOLI_GEM:{fetchBalance:Li,getQuantity:e=>{var t,n,r,a;return(a=(r=(n=(t=e==null?void 0:e.options)==null?void 0:t.find(i=>i.type==="JOLI_GEM"))==null?void 0:n.joliGemChoice)==null?void 0:r.joliGemQuantity)!=null?a:0},getCurrentUser:e=>{var t;return(t=e==null?void 0:e.userGem)!=null?t:{balance:0,enableAutoDeduct:!1}},createUpdatedUser:(e,t)=>({balance:e,enableAutoDeduct:t}),getUpdateKey:()=>"userGem",isEnough:(e,t)=>{var r,a,i;let n=e==null?void 0:e.options.find(o=>o.type==="JOLI_GEM");return n?((a=(r=n.joliGemChoice)==null?void 0:r.joliGemQuantity)!=null?a:0)<=((i=t==null?void 0:t.balance)!=null?i:0):!1}}};var kr=(e,t,n)=>{let{showUnlockWithCurrencyModal:r}=n;Me.registerCommand(`Rewards.${e}.useJolicoin`,()=>I(void 0,null,function*(){let a=yield Le.getData(),i=cn[t],o=i.getCurrentUser(a),s=i.getQuantity(a),l=!!(o!=null&&o.enableAutoDeduct);return console.log("-----unlockOptions usemodal-----",a,l,s),(yield r({enableAutoDeduct:l,userCurrency:o,quantity:s,currency:t}))!=="CONFIRM"?{result:"FAILED"}:{result:"SUCCESS"}}))},Dt=(e,t)=>n=>I(void 0,null,function*(){let r=je(Y,Er);return Y.emit(br,e,{enableAutoDeduct:n.enableAutoDeduct,userCurrency:n.userCurrency,quantity:n.quantity,currency:n.currency,confirmButtonText:t.confirmButtonText,cancelButtonText:t.cancelButtonText}),(yield r.getFreshData()).useModalResult});Se();Se();var Tr=(e,t,n)=>{let{httpClient:r,initiateAndAwaitPayment:a}=n;Me.registerCommand(`Rewards.${e}.usePayment`,()=>I(void 0,null,function*(){var p;let i=yield Le.getData(),o=cn[t],s=yield o.fetchBalance(r),l=o.getQuantity(i),d=o.getCurrentUser(i),_=o.createUpdatedUser((p=s==null?void 0:s.balance)!=null?p:0,d.enableAutoDeduct),h=o.getUpdateKey();return Le.updateData({[h]:_}),console.log("-----unlockOptions payment-----",i,_,l,t),o.isEnough(i,_)?{result:"CONTINUE"}:{result:(yield a({userCurrency:_,currencyQuantity:l,currency:t}))==="SUCCESS"?"SUCCESS":"FAILED"}}))},Nt=(e,t)=>n=>I(void 0,null,function*(){let r=je(Y,wr);return Y.emit(yr,e,{userCurrency:n.userCurrency,quantity:n.currencyQuantity,currency:n.currency,enableAutoDeduct:n.userCurrency.enableAutoDeduct,confirmButtonText:t.confirmButtonText,cancelButtonText:t.cancelButtonText}),(yield r.getFreshData()).paymentResult});ue();Se();Se();G();var Ut=(e,t)=>n=>I(void 0,null,function*(){let r=je(Y,Ir);return Y.emit(Ar,e,{confirmButtonText:t.confirmButtonText,cancelButtonText:t.cancelButtonText,currency:n}),yield r.getFreshData()});var Qf=(e,t,n,{handlers:{handleUnlockSuccess:r,handleUnlockFailed:a,unlockOptionsHandler:i,initiateAndAwaitPayment:o,showUnlockWithCurrencyModal:s,showUnloginModal:l}})=>{Tr(e,"JOLI_COIN",{httpClient:t,initiateAndAwaitPayment:o}),kr(e,"JOLI_COIN",{showUnlockWithCurrencyModal:s});let d=[`Rewards.${e}.usePayment`,`Rewards.${e}.useJolicoin`];return _=>I(void 0,null,function*(){var h,p,f;try{let w=!0;for(let b of d){let x=yield Me.executeCommand(b);if(w=w&&x.result!=="FAILED",x.result!=="CONTINUE")break}if(!w)return a==null||a(_),!1;let A=Ii[n],C=yield t.post(A.unlockEndpoint,{data:{type:"GAME_REWARD",reqId:`${Ge()}-${L.mpType}-${Date.now()}`,gameInfo:{gameId:L.mpId}}});if(console.log("-----unlockWithCurrency request result-----",C),C.code=="SUCCESS"){try{(p=_.adBreakDone)==null||p.call(_,{breakType:_.type,breakName:"name"in _&&(h=_.name)!=null?h:"",breakFormat:"reward",breakStatus:"viewed"}),"adViewed"in _&&((f=_.adViewed)==null||f.call(_)),ki(t)}catch(b){console.error("-----unlockWithJolicoin adBreakDone error-----",b)}return r==null||r({quantity:C.data.quantity,balance:C.data.balance}),!0}return a==null||a(_),!1}catch(w){if(console.info("JolicoinRewardHandler error:",w),w instanceof Error&&w.message=="CANCEL")throw w;return a==null||a(_),!1}finally{i.clearCache()}})},Di=(e,t,n)=>Qf(e,t,"JOLI_COIN",n);var ll=(e,{onUnlockSuccess:t,onUnlockFailed:n})=>{let r=()=>{n==null||n()},a=Dt("ADS-JOLI_COIN",{confirmButtonText:"jolicoin.useJolicoin",cancelButtonText:"jolicoin.noWatchAds"}),i=Nt("ADS-JOLI_COIN",{confirmButtonText:"jolicoin.payAndUnlock",cancelButtonText:"jolicoin.noWatchAds"}),o=Ut("ADS-JOLI_COIN",{confirmButtonText:"loginGuide.login",cancelButtonText:"loginGuide.noWatchAds"});return Di("ADS-JOLI_COIN",e,{handlers:{handleUnlockSuccess:t,handleUnlockFailed:r,unlockOptionsHandler:Le,initiateAndAwaitPayment:i,showUnlockWithCurrencyModal:a,showUnloginModal:o}})};ue();G();Se();Se();var cl=e=>{let{showSubscriptionModal:t}=e;Me.registerCommand("Rewards.subscription",()=>I(void 0,null,function*(){return{result:(yield t())==="SUCCESS"?"SUCCESS":"FAILED"}}))},ul=e=>()=>I(void 0,null,function*(){let t=je(Y,Cr);return Y.emit(Sr,e),(yield t.getFreshData()).result});ue();var dl=(e,t,{handlers:{handleSubSuccess:n,handleSubFailed:r,unlockOptionsHandler:a,showSubscriptionModal:i}})=>{cl({showSubscriptionModal:i});let o=["Rewards.subscription"];return s=>I(void 0,null,function*(){var l,d,_,h,p,f;try{let w=!0;for(let A of o){let C=yield Me.executeCommand(A);if(w=w&&C.result!=="FAILED",C.result!=="CONTINUE")break}if(!w)return r==null||r(s),!1;if(console.log("-----unlockWithSubscription result-----"),w){try{(d=s.adBreakDone)==null||d.call(s,{breakType:s.type,breakName:"name"in s&&(l=s.name)!=null?l:"",breakFormat:s.type==="reward"?"reward":"interstitial",breakStatus:"viewed"}),"adViewed"in s&&((_=s.adViewed)==null||_.call(s)),(f=(p=L).onEnvConfigChanged)==null||f.call(p,{hostUserInfo:Ee(q({},(h=L.hostUserInfo)!=null?h:{isLogin:!1}),{isSubUser:!0})})}catch(A){console.error("-----unlockWithSubscription adBreakDone error-----",A)}return n==null||n(),!0}return r==null||r(s),!1}catch(w){if(console.info("SubscriptionRewardHandler error:",w),w instanceof Error&&w.message=="CANCEL")throw w;return r==null||r(s),!1}finally{a.clearCache()}})};var fl=(e,{onSubSuccess:t,onSubFailed:n})=>{let r=()=>{n==null||n()},a=ul("SUBSCRIPTION");return dl("SUBSCRIPTION",e,{handlers:{handleSubSuccess:t,handleSubFailed:r,unlockOptionsHandler:Le,showSubscriptionModal:a}})};var nt=ol();wi(nt);bi(nt);var Dr,M,gl,Bi,bt,hl,_l,yl,wl,Mi,Ni,Ui,eh,un={},bl=[],th=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,dn=Array.isArray;function rt(e,t){for(var n in t)e[n]=t[n];return e}function Gi(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function fn(e,t,n){var r,a,i,o={};for(i in t)i=="key"?r=t[i]:i=="ref"?a=t[i]:o[i]=t[i];if(arguments.length>2&&(o.children=arguments.length>3?Dr.call(arguments,2):n),typeof e=="function"&&e.defaultProps!=null)for(i in e.defaultProps)o[i]===void 0&&(o[i]=e.defaultProps[i]);return Pr(e,o,r,a,null)}function Pr(e,t,n,r,a){var i={type:e,props:t,key:n,ref:r,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:a==null?++gl:a,__i:-1,__u:0};return a==null&&M.vnode!=null&&M.vnode(i),i}function ft(e){return e.children}function De(e,t){this.props=e,this.context=t}function Bt(e,t){if(t==null)return e.__?Bt(e.__,e.__i+1):null;for(var n;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null)return n.__e;return typeof e.type=="function"?Bt(e):null}function El(e){var t,n;if((e=e.__)!=null&&e.__c!=null){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if((n=e.__k[t])!=null&&n.__e!=null){e.__e=e.__c.base=n.__e;break}return El(e)}}function ml(e){(!e.__d&&(e.__d=!0)&&bt.push(e)&&!Lr.__r++||hl!==M.debounceRendering)&&((hl=M.debounceRendering)||_l)(Lr)}function Lr(){for(var e,t,n,r,a,i,o,s=1;bt.length;)bt.length>s&&bt.sort(yl),e=bt.shift(),s=bt.length,e.__d&&(n=void 0,a=(r=(t=e).__v).__e,i=[],o=[],t.__P&&((n=rt({},r)).__v=r.__v+1,M.vnode&&M.vnode(n),Ji(t.__P,n,r,t.__n,t.__P.namespaceURI,32&r.__u?[a]:null,i,a==null?Bt(r):a,!!(32&r.__u),o),n.__v=r.__v,n.__.__k[n.__i]=n,Sl(i,n,o),n.__e!=a&&El(n)));Lr.__r=0}function Il(e,t,n,r,a,i,o,s,l,d,_){var h,p,f,w,A,C,b=r&&r.__k||bl,x=t.length;for(l=nh(n,t,b,l,x),h=0;h<x;h++)(f=n.__k[h])!=null&&(p=f.__i===-1?un:b[f.__i]||un,f.__i=h,C=Ji(e,f,p,a,i,o,s,l,d,_),w=f.__e,f.ref&&p.ref!=f.ref&&(p.ref&&Fi(p.ref,null,f),_.push(f.ref,f.__c||w,f)),A==null&&w!=null&&(A=w),4&f.__u||p.__k===f.__k?l=Al(f,l,e):typeof f.type=="function"&&C!==void 0?l=C:w&&(l=w.nextSibling),f.__u&=-7);return n.__e=A,l}function nh(e,t,n,r,a){var i,o,s,l,d,_=n.length,h=_,p=0;for(e.__k=new Array(a),i=0;i<a;i++)(o=t[i])!=null&&typeof o!="boolean"&&typeof o!="function"?(l=i+p,(o=e.__k[i]=typeof o=="string"||typeof o=="number"||typeof o=="bigint"||o.constructor==String?Pr(null,o,null,null,null):dn(o)?Pr(ft,{children:o},null,null,null):o.constructor===void 0&&o.__b>0?Pr(o.type,o.props,o.key,o.ref?o.ref:null,o.__v):o).__=e,o.__b=e.__b+1,s=null,(d=o.__i=rh(o,n,l,h))!==-1&&(h--,(s=n[d])&&(s.__u|=2)),s==null||s.__v===null?(d==-1&&(a>_?p--:a<_&&p++),typeof o.type!="function"&&(o.__u|=4)):d!=l&&(d==l-1?p--:d==l+1?p++:(d>l?p--:p++,o.__u|=4))):e.__k[i]=null;if(h)for(i=0;i<_;i++)(s=n[i])!=null&&!(2&s.__u)&&(s.__e==r&&(r=Bt(s)),Rl(s,s));return r}function Al(e,t,n){var r,a;if(typeof e.type=="function"){for(r=e.__k,a=0;r&&a<r.length;a++)r[a]&&(r[a].__=e,t=Al(r[a],t,n));return t}e.__e!=t&&(t&&e.type&&!n.contains(t)&&(t=Bt(e)),n.insertBefore(e.__e,t||null),t=e.__e);do t=t&&t.nextSibling;while(t!=null&&t.nodeType==8);return t}function hn(e,t){return t=t||[],e==null||typeof e=="boolean"||(dn(e)?e.some(function(n){hn(n,t)}):t.push(e)),t}function rh(e,t,n,r){var a,i,o=e.key,s=e.type,l=t[n];if(l===null&&e.key==null||l&&o==l.key&&s===l.type&&!(2&l.__u))return n;if(r>(l!=null&&!(2&l.__u)?1:0))for(a=n-1,i=n+1;a>=0||i<t.length;){if(a>=0){if((l=t[a])&&!(2&l.__u)&&o==l.key&&s===l.type)return a;a--}if(i<t.length){if((l=t[i])&&!(2&l.__u)&&o==l.key&&s===l.type)return i;i++}}return-1}function pl(e,t,n){t[0]=="-"?e.setProperty(t,n==null?"":n):e[t]=n==null?"":typeof n!="number"||th.test(t)?n:n+"px"}function xr(e,t,n,r,a){var i;e:if(t=="style")if(typeof n=="string")e.style.cssText=n;else{if(typeof r=="string"&&(e.style.cssText=r=""),r)for(t in r)n&&t in n||pl(e.style,t,"");if(n)for(t in n)r&&n[t]===r[t]||pl(e.style,t,n[t])}else if(t[0]=="o"&&t[1]=="n")i=t!=(t=t.replace(wl,"$1")),t=t.toLowerCase()in e||t=="onFocusOut"||t=="onFocusIn"?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+i]=n,n?r?n.t=r.t:(n.t=Mi,e.addEventListener(t,i?Ui:Ni,i)):e.removeEventListener(t,i?Ui:Ni,i);else{if(a=="http://www.w3.org/2000/svg")t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(t!="width"&&t!="height"&&t!="href"&&t!="list"&&t!="form"&&t!="tabIndex"&&t!="download"&&t!="rowSpan"&&t!="colSpan"&&t!="role"&&t!="popover"&&t in e)try{e[t]=n==null?"":n;break e}catch(o){}typeof n=="function"||(n==null||n===!1&&t[4]!="-"?e.removeAttribute(t):e.setAttribute(t,t=="popover"&&n==1?"":n))}}function vl(e){return function(t){if(this.l){var n=this.l[t.type+e];if(t.u==null)t.u=Mi++;else if(t.u<n.t)return;return n(M.event?M.event(t):t)}}}function Ji(e,t,n,r,a,i,o,s,l,d){var _,h,p,f,w,A,C,b,x,D,H,j,R,N,T,B,K,z=t.type;if(t.constructor!==void 0)return null;128&n.__u&&(l=!!(32&n.__u),i=[s=t.__e=n.__e]),(_=M.__b)&&_(t);e:if(typeof z=="function")try{if(b=t.props,x="prototype"in z&&z.prototype.render,D=(_=z.contextType)&&r[_.__c],H=_?D?D.props.value:_.__:r,n.__c?C=(h=t.__c=n.__c).__=h.__E:(x?t.__c=h=new z(b,H):(t.__c=h=new De(b,H),h.constructor=z,h.render=ih),D&&D.sub(h),h.props=b,h.state||(h.state={}),h.context=H,h.__n=r,p=h.__d=!0,h.__h=[],h._sb=[]),x&&h.__s==null&&(h.__s=h.state),x&&z.getDerivedStateFromProps!=null&&(h.__s==h.state&&(h.__s=rt({},h.__s)),rt(h.__s,z.getDerivedStateFromProps(b,h.__s))),f=h.props,w=h.state,h.__v=t,p)x&&z.getDerivedStateFromProps==null&&h.componentWillMount!=null&&h.componentWillMount(),x&&h.componentDidMount!=null&&h.__h.push(h.componentDidMount);else{if(x&&z.getDerivedStateFromProps==null&&b!==f&&h.componentWillReceiveProps!=null&&h.componentWillReceiveProps(b,H),!h.__e&&(h.shouldComponentUpdate!=null&&h.shouldComponentUpdate(b,h.__s,H)===!1||t.__v==n.__v)){for(t.__v!=n.__v&&(h.props=b,h.state=h.__s,h.__d=!1),t.__e=n.__e,t.__k=n.__k,t.__k.some(function(te){te&&(te.__=t)}),j=0;j<h._sb.length;j++)h.__h.push(h._sb[j]);h._sb=[],h.__h.length&&o.push(h);break e}h.componentWillUpdate!=null&&h.componentWillUpdate(b,h.__s,H),x&&h.componentDidUpdate!=null&&h.__h.push(function(){h.componentDidUpdate(f,w,A)})}if(h.context=H,h.props=b,h.__P=e,h.__e=!1,R=M.__r,N=0,x){for(h.state=h.__s,h.__d=!1,R&&R(t),_=h.render(h.props,h.state,h.context),T=0;T<h._sb.length;T++)h.__h.push(h._sb[T]);h._sb=[]}else do h.__d=!1,R&&R(t),_=h.render(h.props,h.state,h.context),h.state=h.__s;while(h.__d&&++N<25);h.state=h.__s,h.getChildContext!=null&&(r=rt(rt({},r),h.getChildContext())),x&&!p&&h.getSnapshotBeforeUpdate!=null&&(A=h.getSnapshotBeforeUpdate(f,w)),B=_,_!=null&&_.type===ft&&_.key==null&&(B=Cl(_.props.children)),s=Il(e,dn(B)?B:[B],t,n,r,a,i,o,s,l,d),h.base=t.__e,t.__u&=-161,h.__h.length&&o.push(h),C&&(h.__E=h.__=null)}catch(te){if(t.__v=null,l||i!=null)if(te.then){for(t.__u|=l?160:128;s&&s.nodeType==8&&s.nextSibling;)s=s.nextSibling;i[i.indexOf(s)]=null,t.__e=s}else for(K=i.length;K--;)Gi(i[K]);else t.__e=n.__e,t.__k=n.__k;M.__e(te,t,n)}else i==null&&t.__v==n.__v?(t.__k=n.__k,t.__e=n.__e):s=t.__e=ah(n.__e,t,n,r,a,i,o,l,d);return(_=M.diffed)&&_(t),128&t.__u?void 0:s}function Sl(e,t,n){for(var r=0;r<n.length;r++)Fi(n[r],n[++r],n[++r]);M.__c&&M.__c(t,e),e.some(function(a){try{e=a.__h,a.__h=[],e.some(function(i){i.call(a)})}catch(i){M.__e(i,a.__v)}})}function Cl(e){return typeof e!="object"||e==null?e:dn(e)?e.map(Cl):rt({},e)}function ah(e,t,n,r,a,i,o,s,l){var d,_,h,p,f,w,A,C=n.props,b=t.props,x=t.type;if(x=="svg"?a="http://www.w3.org/2000/svg":x=="math"?a="http://www.w3.org/1998/Math/MathML":a||(a="http://www.w3.org/1999/xhtml"),i!=null){for(d=0;d<i.length;d++)if((f=i[d])&&"setAttribute"in f==!!x&&(x?f.localName==x:f.nodeType==3)){e=f,i[d]=null;break}}if(e==null){if(x==null)return document.createTextNode(b);e=document.createElementNS(a,x,b.is&&b),s&&(M.__m&&M.__m(t,i),s=!1),i=null}if(x===null)C===b||s&&e.data===b||(e.data=b);else{if(i=i&&Dr.call(e.childNodes),C=n.props||un,!s&&i!=null)for(C={},d=0;d<e.attributes.length;d++)C[(f=e.attributes[d]).name]=f.value;for(d in C)if(f=C[d],d!="children"){if(d=="dangerouslySetInnerHTML")h=f;else if(!(d in b)){if(d=="value"&&"defaultValue"in b||d=="checked"&&"defaultChecked"in b)continue;xr(e,d,null,f,a)}}for(d in b)f=b[d],d=="children"?p=f:d=="dangerouslySetInnerHTML"?_=f:d=="value"?w=f:d=="checked"?A=f:s&&typeof f!="function"||C[d]===f||xr(e,d,f,C[d],a);if(_)s||h&&(_.__html===h.__html||_.__html===e.innerHTML)||(e.innerHTML=_.__html),t.__k=[];else if(h&&(e.innerHTML=""),Il(t.type==="template"?e.content:e,dn(p)?p:[p],t,n,r,x=="foreignObject"?"http://www.w3.org/1999/xhtml":a,i,o,i?i[0]:n.__k&&Bt(n,0),s,l),i!=null)for(d=i.length;d--;)Gi(i[d]);s||(d="value",x=="progress"&&w==null?e.removeAttribute("value"):w!==void 0&&(w!==e[d]||x=="progress"&&!w||x=="option"&&w!==C[d])&&xr(e,d,w,C[d],a),d="checked",A!==void 0&&A!==e[d]&&xr(e,d,A,C[d],a))}return e}function Fi(e,t,n){try{if(typeof e=="function"){var r=typeof e.__u=="function";r&&e.__u(),r&&t==null||(e.__u=e(t))}else e.current=t}catch(a){M.__e(a,n)}}function Rl(e,t,n){var r,a;if(M.unmount&&M.unmount(e),(r=e.ref)&&(r.current&&r.current!==e.__e||Fi(r,null,t)),(r=e.__c)!=null){if(r.componentWillUnmount)try{r.componentWillUnmount()}catch(i){M.__e(i,t)}r.base=r.__P=null}if(r=e.__k)for(a=0;a<r.length;a++)r[a]&&Rl(r[a],t,n||typeof e.type!="function");n||Gi(e.__e),e.__c=e.__=e.__e=void 0}function ih(e,t,n){return this.constructor(e,n)}function Ol(e,t,n){var r,a,i,o;t==document&&(t=document.documentElement),M.__&&M.__(e,t),a=(r=typeof n=="function")?null:n&&n.__k||t.__k,i=[],o=[],Ji(t,e=(!r&&n||t).__k=fn(ft,null,[e]),a||un,un,t.namespaceURI,!r&&n?[n]:a?null:t.firstChild?Dr.call(t.childNodes):null,i,!r&&n?n:a?a.__e:t.firstChild,r,o),Sl(i,e,o)}Dr=bl.slice,M={__e:function(e,t,n,r){for(var a,i,o;t=t.__;)if((a=t.__c)&&!a.__)try{if((i=a.constructor)&&i.getDerivedStateFromError!=null&&(a.setState(i.getDerivedStateFromError(e)),o=a.__d),a.componentDidCatch!=null&&(a.componentDidCatch(e,r||{}),o=a.__d),o)return a.__E=a}catch(s){e=s}throw e}},gl=0,Bi=function(e){return e!=null&&e.constructor==null},De.prototype.setState=function(e,t){var n;n=this.__s!=null&&this.__s!==this.state?this.__s:this.__s=rt({},this.state),typeof e=="function"&&(e=e(rt({},n),this.props)),e&&rt(n,e),e!=null&&this.__v&&(t&&this._sb.push(t),ml(this))},De.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),ml(this))},De.prototype.render=ft,bt=[],_l=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,yl=function(e,t){return e.__v.__b-t.__v.__b},Lr.__r=0,wl=/(PointerCapture)$|Capture$/i,Mi=0,Ni=vl(!1),Ui=vl(!0),eh=0;var Mt,ie,Hi,kl,mn=0,Bl=[],se=M,Tl=se.__b,xl=se.__r,Pl=se.diffed,Ll=se.__c,Dl=se.unmount,Nl=se.__;function Ur(e,t){se.__h&&se.__h(ie,e,mn||t),mn=0;var n=ie.__H||(ie.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({}),n.__[e]}function Br(e){return mn=1,Ml(Gl,e)}function Ml(e,t,n){var r=Ur(Mt++,2);if(r.t=e,!r.__c&&(r.__=[n?n(t):Gl(void 0,t),function(s){var l=r.__N?r.__N[0]:r.__[0],d=r.t(l,s);l!==d&&(r.__N=[d,r.__[1]],r.__c.setState({}))}],r.__c=ie,!ie.__f)){var a=function(s,l,d){if(!r.__c.__H)return!0;var _=r.__c.__H.__.filter(function(p){return!!p.__c});if(_.every(function(p){return!p.__N}))return!i||i.call(this,s,l,d);var h=r.__c.props!==s;return _.forEach(function(p){if(p.__N){var f=p.__[0];p.__=p.__N,p.__N=void 0,f!==p.__[0]&&(h=!0)}}),i&&i.call(this,s,l,d)||h};ie.__f=!0;var i=ie.shouldComponentUpdate,o=ie.componentWillUpdate;ie.componentWillUpdate=function(s,l,d){if(this.__e){var _=i;i=void 0,a(s,l,d),i=_}o&&o.call(this,s,l,d)},ie.shouldComponentUpdate=a}return r.__N||r.__}function pn(e,t){var n=Ur(Mt++,3);!se.__s&&Wi(n.__H,t)&&(n.__=e,n.u=t,ie.__H.__h.push(n))}function ji(e,t){var n=Ur(Mt++,4);!se.__s&&Wi(n.__H,t)&&(n.__=e,n.u=t,ie.__h.push(n))}function Vi(e){return mn=5,vn(function(){return{current:e}},[])}function vn(e,t){var n=Ur(Mt++,7);return Wi(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function $i(e,t){return mn=8,vn(function(){return e},t)}function oh(){for(var e;e=Bl.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(Nr),e.__H.__h.forEach(qi),e.__H.__h=[]}catch(t){e.__H.__h=[],se.__e(t,e.__v)}}se.__b=function(e){ie=null,Tl&&Tl(e)},se.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),Nl&&Nl(e,t)},se.__r=function(e){xl&&xl(e),Mt=0;var t=(ie=e.__c).__H;t&&(Hi===ie?(t.__h=[],ie.__h=[],t.__.forEach(function(n){n.__N&&(n.__=n.__N),n.u=n.__N=void 0})):(t.__h.forEach(Nr),t.__h.forEach(qi),t.__h=[],Mt=0)),Hi=ie},se.diffed=function(e){Pl&&Pl(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(Bl.push(t)!==1&&kl===se.requestAnimationFrame||((kl=se.requestAnimationFrame)||sh)(oh)),t.__H.__.forEach(function(n){n.u&&(n.__H=n.u),n.u=void 0})),Hi=ie=null},se.__c=function(e,t){t.some(function(n){try{n.__h.forEach(Nr),n.__h=n.__h.filter(function(r){return!r.__||qi(r)})}catch(r){t.some(function(a){a.__h&&(a.__h=[])}),t=[],se.__e(r,n.__v)}}),Ll&&Ll(e,t)},se.unmount=function(e){Dl&&Dl(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.forEach(function(r){try{Nr(r)}catch(a){t=a}}),n.__H=void 0,t&&se.__e(t,n.__v))};var Ul=typeof requestAnimationFrame=="function";function sh(e){var t,n=function(){clearTimeout(r),Ul&&cancelAnimationFrame(t),setTimeout(e)},r=setTimeout(n,100);Ul&&(t=requestAnimationFrame(n))}function Nr(e){var t=ie,n=e.__c;typeof n=="function"&&(e.__c=void 0,n()),ie=t}function qi(e){var t=ie;e.__c=e.__(),ie=t}function Wi(e,t){return!e||e.length!==t.length||t.some(function(n,r){return n!==e[r]})}function Gl(e,t){return typeof t=="function"?t(e):t}function ch(e,t){for(var n in t)e[n]=t[n];return e}function Jl(e,t){for(var n in e)if(n!=="__source"&&!(n in t))return!0;for(var r in t)if(r!=="__source"&&e[r]!==t[r])return!0;return!1}function Fl(e,t){this.props=e,this.context=t}(Fl.prototype=new De).isPureReactComponent=!0,Fl.prototype.shouldComponentUpdate=function(e,t){return Jl(this.props,e)||Jl(this.state,t)};var Hl=M.__b;M.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),Hl&&Hl(e)};var zb=typeof Symbol!="undefined"&&Symbol.for&&Symbol.for("react.forward_ref")||3911;var uh=M.__e;M.__e=function(e,t,n,r){if(e.then){for(var a,i=t;i=i.__;)if((a=i.__c)&&a.__c)return t.__e==null&&(t.__e=n.__e,t.__k=n.__k),a.__c(e,t)}uh(e,t,n,r)};var ql=M.unmount;function Xl(e,t,n){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(r){typeof r.__c=="function"&&r.__c()}),e.__c.__H=null),(e=ch({},e)).__c!=null&&(e.__c.__P===n&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map(function(r){return Xl(r,t,n)})),e}function Yl(e,t,n){return e&&n&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(r){return Yl(r,t,n)}),e.__c&&e.__c.__P===t&&(e.__e&&n.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=n)),e}function Ki(){this.__u=0,this.o=null,this.__b=null}function Ql(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function Mr(){this.i=null,this.l=null}M.unmount=function(e){var t=e.__c;t&&t.__R&&t.__R(),t&&32&e.__u&&(e.type=null),ql&&ql(e)},(Ki.prototype=new De).__c=function(e,t){var n=t.__c,r=this;r.o==null&&(r.o=[]),r.o.push(n);var a=Ql(r.__v),i=!1,o=function(){i||(i=!0,n.__R=null,a?a(s):s())};n.__R=o;var s=function(){if(!--r.__u){if(r.state.__a){var l=r.state.__a;r.__v.__k[0]=Yl(l,l.__c.__P,l.__c.__O)}var d;for(r.setState({__a:r.__b=null});d=r.o.pop();)d.forceUpdate()}};r.__u++||32&t.__u||r.setState({__a:r.__b=r.__v.__k[0]}),e.then(o,o)},Ki.prototype.componentWillUnmount=function(){this.o=[]},Ki.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var n=document.createElement("div"),r=this.__v.__k[0].__c;this.__v.__k[0]=Xl(this.__b,n,r.__O=r.__P)}this.__b=null}var a=t.__a&&fn(ft,null,e.fallback);return a&&(a.__u&=-33),[fn(ft,null,t.__a?null:e.children),a]};var jl=function(e,t,n){if(++n[1]===n[0]&&e.l.delete(t),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.l.size))for(n=e.i;n;){for(;n.length>3;)n.pop()();if(n[1]<n[0])break;e.i=n=n[2]}};(Mr.prototype=new De).__a=function(e){var t=this,n=Ql(t.__v),r=t.l.get(e);return r[0]++,function(a){var i=function(){t.props.revealOrder?(r.push(a),jl(t,e,r)):a()};n?n(i):i()}},Mr.prototype.render=function(e){this.i=null,this.l=new Map;var t=hn(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&t.reverse();for(var n=t.length;n--;)this.l.set(t[n],this.i=[1,0,this.i]);return e.children},Mr.prototype.componentDidUpdate=Mr.prototype.componentDidMount=function(){var e=this;this.l.forEach(function(t,n){jl(e,n,t)})};var dh=typeof Symbol!="undefined"&&Symbol.for&&Symbol.for("react.element")||60103,fh=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,hh=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,mh=/[A-Z0-9]/g,ph=typeof document!="undefined",vh=function(e){return(typeof Symbol!="undefined"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};function zi(e,t,n){return t.__k==null&&(t.textContent=""),Ol(e,t),typeof n=="function"&&n(),e?e.__c:null}De.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(De.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})});var Vl=M.event;function gh(){}function _h(){return this.cancelBubble}function yh(){return this.defaultPrevented}M.event=function(e){return Vl&&(e=Vl(e)),e.persist=gh,e.isPropagationStopped=_h,e.isDefaultPrevented=yh,e.nativeEvent=e};var Zl,wh={enumerable:!1,configurable:!0,get:function(){return this.class}},$l=M.vnode;M.vnode=function(e){typeof e.type=="string"&&function(t){var n=t.props,r=t.type,a={},i=r.indexOf("-")===-1;for(var o in n){var s=n[o];if(!(o==="value"&&"defaultValue"in n&&s==null||ph&&o==="children"&&r==="noscript"||o==="class"||o==="className")){var l=o.toLowerCase();o==="defaultValue"&&"value"in n&&n.value==null?o="value":o==="download"&&s===!0?s="":l==="translate"&&s==="no"?s=!1:l[0]==="o"&&l[1]==="n"?l==="ondoubleclick"?o="ondblclick":l!=="onchange"||r!=="input"&&r!=="textarea"||vh(n.type)?l==="onfocus"?o="onfocusin":l==="onblur"?o="onfocusout":hh.test(o)&&(o=l):l=o="oninput":i&&fh.test(o)?o=o.replace(mh,"-$&").toLowerCase():s===null&&(s=void 0),l==="oninput"&&a[o=l]&&(o="oninputCapture"),a[o]=s}}r=="select"&&a.multiple&&Array.isArray(a.value)&&(a.value=hn(n.children).forEach(function(d){d.props.selected=a.value.indexOf(d.props.value)!=-1})),r=="select"&&a.defaultValue!=null&&(a.value=hn(n.children).forEach(function(d){d.props.selected=a.multiple?a.defaultValue.indexOf(d.props.value)!=-1:a.defaultValue==d.props.value})),n.class&&!n.className?(a.class=n.class,Object.defineProperty(a,"className",wh)):(n.className&&!n.class||n.class&&n.className)&&(a.class=a.className=n.className),t.props=a}(e),e.$$typeof=dh,$l&&$l(e)};var Wl=M.__r;M.__r=function(e){Wl&&Wl(e),Zl=e.__c};var Kl=M.diffed;M.diffed=function(e){Kl&&Kl(e);var t=e.props,n=e.__e;n!=null&&e.type==="textarea"&&"value"in t&&t.value!==n.value&&(n.value=t.value==null?"":t.value),Zl=null};var bh=Object.defineProperty,Kr=Object.getOwnPropertySymbols,Sc=Object.prototype.hasOwnProperty,Cc=Object.prototype.propertyIsEnumerable,ec=(e,t,n)=>t in e?bh(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Eh=(e,t)=>{for(var n in t||(t={}))Sc.call(t,n)&&ec(e,n,t[n]);if(Kr)for(var n of Kr(t))Cc.call(t,n)&&ec(e,n,t[n]);return e},Ih=(e,t)=>{var n={};for(var r in e)Sc.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&Kr)for(var r of Kr(e))t.indexOf(r)<0&&Cc.call(e,r)&&(n[r]=e[r]);return n},Rc=Object.defineProperty,Ah=Object.defineProperties,Sh=Object.getOwnPropertyDescriptors,tc=Object.getOwnPropertySymbols,Ch=Object.prototype.hasOwnProperty,Rh=Object.prototype.propertyIsEnumerable,nc=(e,t,n)=>t in e?Rc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Oh=(e,t)=>{for(var n in t||(t={}))Ch.call(t,n)&&nc(e,n,t[n]);if(tc)for(var n of tc(t))Rh.call(t,n)&&nc(e,n,t[n]);return e},kh=(e,t)=>Ah(e,Sh(t)),Th=(e,t)=>{for(var n in t)Rc(e,n,{get:t[n],enumerable:!0})},Oc=(e,t,n,r)=>{for(var a=t,i=e.length-1,o;i>=0;i--)(o=e[i])&&(a=o(a)||a);return a},xh=(e,t,n)=>new Promise((r,a)=>{var i=l=>{try{s(n.next(l))}catch(d){a(d)}},o=l=>{try{s(n.throw(l))}catch(d){a(d)}},s=l=>l.done?r(l.value):Promise.resolve(l.value).then(i,o);s((n=n.apply(e,t)).next())});if(typeof window!="undefined"&&!window.AbortController){let e=function(){this.signal=new t};e.prototype.abort=function(){this.signal._aborted=!0,typeof this.signal.onabort=="function"&&this.signal.onabort(new Event("abort"));let n=new Event("abort");this.signal.dispatchEvent(n)};let t=function(){this._aborted=!1,this.aborted=!1,this.onabort=null,this._eventListeners={}};Object.defineProperty(t.prototype,"aborted",{get:function(){return this._aborted}}),t.prototype.addEventListener=function(n,r){this._eventListeners[n]||(this._eventListeners[n]=[]),this._eventListeners[n].push(r)},t.prototype.removeEventListener=function(n,r){if(!this._eventListeners[n])return;let a=this._eventListeners[n].indexOf(r);a!==-1&&this._eventListeners[n].splice(a,1)},t.prototype.dispatchEvent=function(n){if(this._eventListeners[n.type])for(let r of this._eventListeners[n.type])r.call(this,n)},window.AbortController=e,window.AbortSignal=t}function Ph(e){return new Promise(t=>{setTimeout(()=>{t()},e)})}function Lh(e){return typeof e=="string"}function Dh(e){return typeof e=="undefined"}function Nh(e){return Dh(e)||e===null}function Uh(e){return typeof e=="function"}function kc(e){let t=e,n=null,r=function(){for(var a=arguments.length,i=new Array(a),o=0;o<a;o++)i[o]=arguments[o];return n||(n=new t(...i)),n};return r.prototype=t.prototype,r}var Bh=(e=>(e[e.DEVELOPER_FILE_NOT_FOUND=0]="DEVELOPER_FILE_NOT_FOUND",e[e.INTERNAL_IOS_CAN_NOT_FOUND_PKG=1]="INTERNAL_IOS_CAN_NOT_FOUND_PKG",e[e.USER_IOS_LOAD_TIMEOUT=2]="USER_IOS_LOAD_TIMEOUT",e[e.INTERNAL_IOS_PKG_LOAD_ERROR=3]="INTERNAL_IOS_PKG_LOAD_ERROR",e[e.INTERNAL_IOS_PKG_PARSE_FAIL=4]="INTERNAL_IOS_PKG_PARSE_FAIL",e[e.USER_IOS_GET_EMPTY_DATA=5]="USER_IOS_GET_EMPTY_DATA",e[e.USER_ANDROID_GET_PKG_FAIL=6]="USER_ANDROID_GET_PKG_FAIL",e[e.DEVELOPER_ANDROID_PACKAGE_FILE_UNEXPECTED_REQUIRE=7]="DEVELOPER_ANDROID_PACKAGE_FILE_UNEXPECTED_REQUIRE",e))(Bh||{});function gn(e){return function(){var t,n;((n=(t=globalThis.VConsole)==null?void 0:t[e])!=null?n:globalThis.console[e])(...arguments)}}var Mh={log:gn("log"),warn:gn("warn"),info:gn("info"),error:gn("error"),debug:gn("debug")};Object.assign(globalThis,{logger:Mh});var rc=Symbol.for("Jolibox.canIUseMap"),Gh={};globalThis[rc]||(globalThis[rc]=Gh);var ac=Symbol.for("Jolibox.canIUseMap.native"),Jh={};globalThis[ac]||(globalThis[ac]=Jh);var Tc=(e=>(e[e.Other=0]="Other",e[e.Route=1]="Route",e[e.Click=2]="Click",e[e.View=3]="View",e[e.Expose=4]="Expose",e[e.Swipe=5]="Swipe",e[e.Input=6]="Input",e[e.Select=7]="Select",e[e.SwitchOn=8]="SwitchOn",e[e.SwitchOff=9]="SwitchOff",e[e.Submit=10]="Submit",e[e.Scroll=11]="Scroll",e[e.Hide=12]="Hide",e[e.System=1e3]="System",e[e.ErrorTrace=1001]="ErrorTrace",e[e.UserDefined=1002]="UserDefined",e))(Tc||{}),xc=(e=>(e.MiniGame="mini-game",e.MiniDrama="mini-drama",e.App="app",e.WebSDK="web-sdk",e.AppSDK="app-sdk",e))(xc||{}),Pc=(e=>(e[e.App=0]="App",e[e.H5=1]="H5",e[e.Weapp=2]="Weapp",e[e.Alipay=3]="Alipay",e[e.Gcash=4]="Gcash",e[e.Dana=5]="Dana",e[e.Umma=6]="Umma",e[e.WebSDK=1e3]="WebSDK",e[e.AppSDK=1001]="AppSDK",e[e.Other=9999]="Other",e))(Pc||{}),ic=["name","params"],Fh=["name","type","location","target","extra","timestamp","userId"],Hh=["platform","os","appVersion","appId","model","brand","uuid","jsSdkVersion","extra"];function Hr(e,t){return t.map(n=>{if(n==="params"&&e[n]){let r=e[n];return Object.keys(r).reduce((a,i)=>(a[i]=String(r[i]),a),{})}return e[n]})}function qh(e){let t=e.location?Hr(e.location,ic):null,n=e.target?Hr(e.target,ic):null;return Hr(kh(Oh({},e),{location:t,target:n}),Fh)}function jh(e){let t=e.events.map(r=>qh(r)),n=Hr(e.device,Hh);return[e.protocolVersion,t,n,e.project]}function Vh(){if(typeof window=="undefined")return{getItem:()=>null,setItem:()=>{},removeItem:()=>{},clear:()=>{},length:0,key:()=>null};try{if(window.__joliboxLocalStorage__)return window.__joliboxLocalStorage__;let e=Object.getOwnPropertyDescriptor(window,"localStorage");if(e&&e.get){let r=e.get.call(window);return window.__joliboxLocalStorage__=r,r}if(e=Object.getOwnPropertyDescriptor(Object.getPrototypeOf(window),"localStorage"),e&&e.get)return e.get.call(window);let t=Window.prototype,n=Object.getOwnPropertyDescriptor(t,"localStorage");if(n&&n.get){let r=n.get.call(window);return window.__joliboxLocalStorage__=r,r}return localStorage}catch(e){return console.warn("Failed to get original localStorage, fallback to default implementation",e),localStorage}}Vh();var Ft=typeof window=="undefined",oc=()=>!Ft&&!!(navigator.userAgent||"").includes("JoliboxPlatformSDK");!Ft&&(navigator.userAgent.includes("iPhone")||navigator.userAgent.includes("iPod")||navigator.userAgent.includes("iPad")||navigator.userAgent.includes("iPhone OS")),!Ft&&navigator.userAgent.includes("Android"),!Ft&&navigator.userAgent.includes("Mac"),!Ft&&navigator.userAgent.includes("FB_IAB"),!Ft&&!navigator.userAgent.includes("iPhone")&&navigator.userAgent.includes("Android");var no=class ro{constructor(t){this.element=t,this.next=ro.Undefined,this.prev=ro.Undefined}};no.Undefined=new no(void 0);var ae=no,$h=class{constructor(){this._first=ae.Undefined,this._last=ae.Undefined,this._size=0}get size(){return this._size}isEmpty(){return this._first===ae.Undefined}clear(){let e=this._first;for(;e!==ae.Undefined;){let t=e.next;e.prev=ae.Undefined,e.next=ae.Undefined,e=t}this._first=ae.Undefined,this._last=ae.Undefined,this._size=0}unshift(e){return this._insert(e,!1)}push(e){return this._insert(e,!0)}_insert(e,t){let n=new ae(e);if(this._first===ae.Undefined)this._first=n,this._last=n;else if(t){let a=this._last;this._last=n,n.prev=a,a.next=n}else{let a=this._first;this._first=n,n.next=a,a.prev=n}this._size+=1;let r=!1;return()=>{r||(r=!0,this._remove(n))}}shift(){if(this._first!==ae.Undefined){let e=this._first.element;return this._remove(this._first),e}}pop(){if(this._last!==ae.Undefined){let e=this._last.element;return this._remove(this._last),e}}_remove(e){if(e.prev!==ae.Undefined&&e.next!==ae.Undefined){let t=e.prev;t.next=e.next,e.next.prev=t}else e.prev===ae.Undefined&&e.next===ae.Undefined?(this._first=ae.Undefined,this._last=ae.Undefined):e.next===ae.Undefined?(this._last=this._last.prev,this._last.next=ae.Undefined):e.prev===ae.Undefined&&(this._first=this._first.next,this._first.prev=ae.Undefined);this._size-=1}*[Symbol.iterator](){let e=this._first;for(;e!==ae.Undefined;)yield e.element,e=e.next}},Wh=0,_n=class{constructor(e){this.value=e,this.id=Wh++}},En=class{constructor(e){this.options=e,this._size=0}dispose(e){var t,n;this._disposed||(this._disposed=!0,this._listeners&&(e?(this._listeners instanceof _n&&(this._listeners=[this._listeners]),this._listeners=this._listeners.filter(r=>(r==null?void 0:r.value)===e)):(this._listeners=void 0,this._size=0)),(n=(t=this.options)==null?void 0:t.onDidRemoveLastListener)==null||n.call(t))}get event(){return this._event!=null||(this._event=(e,t)=>{var n,r,a,i,o,s;if(this._disposed)return()=>{console.info("[Jolibox SDK] Emitter is _disposed")};t&&(e=e.bind(t));let l=new _n(e);return this._listeners?this._listeners instanceof _n?this._listeners=[this._listeners,l]:this._listeners.push(l):((r=(n=this.options)==null?void 0:n.onWillAddFirstListener)==null||r.call(n,this),this._listeners=l,(i=(a=this.options)==null?void 0:a.onDidFirstListener)==null||i.call(a,this)),(s=(o=this.options)==null?void 0:o.onDidAddListener)==null||s.call(o,this),this._size++,()=>{var d,_,h,p;if(!this._disposed){if(this._listeners instanceof _n)this._listeners.id===l.id&&(this._listeners=void 0,this._size=0,(_=(d=this.options)==null?void 0:d.onDidRemoveLastListener)==null||_.call(d));else if(this._listeners){let f=this._listeners.indexOf(l);f>=0&&(this._listeners.splice(f,1),this._size--,this._size===0&&((p=(h=this.options)==null?void 0:h.onDidRemoveLastListener)==null||p.call(h)))}}}}),this._event}_deliver(e,t){var n;if(!e)return;let r=((n=this.options)==null?void 0:n.onListenerError)||Error.constructor;if(!r){e.value(t);return}try{e.value(t)}catch(a){r(a)}}fire(e){this._listeners&&(this._listeners instanceof _n?this._deliver(this._listeners,e):this._listeners.forEach(t=>this._deliver(t,e)))}hasListeners(){return this._size>0}},Kh=class{constructor(){this.listeners=new Map,this.listerHandlerMap=new WeakMap,this.cachedEventQueue=new Map}on(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0;var r;let a=(r=this.listeners.get(e))!=null?r:new En,i=l=>t(...l.args),o=a.event(i);this.listerHandlerMap.set(t,{handler:i,dispose:o}),this.listeners.set(e,a);let s=this.cachedEventQueue.get(e);if(s&&n)for(let l of s)t(...l.args)}flushCachedEvent(e){e?this.cachedEventQueue.delete(e):this.cachedEventQueue.clear()}off(e,t){let n=this.listerHandlerMap.get(t);n&&(n.dispose(),this.listerHandlerMap.delete(t))}emit(e){let t=this.listeners.get(e),n=this.cachedEventQueue.get(e);for(var r=arguments.length,a=new Array(r>1?r-1:0),i=1;i<r;i++)a[i-1]=arguments[i];n||(n=new $h,this.cachedEventQueue.set(e,n)),n.push({args:a}),t&&t.fire({event:e,args:a})}once(e,t){var n=this;let r=function(){t(...arguments),n.off(e,r)};this.on(e,r,!1)}},ao={};Th(ao,{None:()=>zh,filter:()=>Yh,once:()=>Lc,toPromise:()=>Xh});var zh=()=>(console.log("[Jolibox SDK] None Event"),()=>{console.log("[Jolibox SDK] None Event dispose")});function Xh(e){return new Promise(t=>Lc(e)(t))}function Lc(e){return function(t){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null,r=!1;return e(a=>{if(!r)return r=!0,t.call(n,a)},null)}}function Yh(e,t){return(n=>{let r={onWillAddFirstListener(){n(a.fire,a)}},a=new En(r);return a.event})(function(n){let r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;return e(a=>t(a)&&n.call(r,a),null)})}var Xi=Symbol.for("Jolibox.hostEmitter"),Qh=()=>{let e=new Kh;return globalThis[Xi]||(globalThis[Xi]={on:e.on.bind(e),off:e.off.bind(e),emit:e.emit.bind(e),once:e.once.bind(e)}),globalThis[Xi]};Qh();function Zh(e,t){let n=Math.min(e.length,t.length);for(let r=0;r<n;r++)em(e[r],t[r])}function em(e,t){if(Lh(t)){if(typeof e!==t)throw new Error(`argument does not match constraint: typeof ${t}`)}else if(Uh(t)){try{if(e instanceof t)return}catch(n){}if(!Nh(e)&&e.constructor===t||t.length===1&&t.call(void 0,e)===!0)return;throw new Error("[Jolibox SDK]argument does not match one of these constraints: arg instanceof constraint, arg.constructor === constraint, nor constraint(arg) === true")}}var io=class{constructor(){this._commands=new Map,this._onDidRegisterCommand=new En,this.onDidRegisterCommand=this._onDidRegisterCommand.event,console.log("[Jolibox SDK] command registry")}registerCommand(e){if(!e)throw new Error("invalid command");if(e.metadata&&Array.isArray(e.metadata.args)){let n=[];for(let a of e.metadata.args)n.push(a.constraint);let r=e.handler;e.handler=function(){for(var a=arguments.length,i=new Array(a),o=0;o<a;o++)i[o]=arguments[o];return Zh(i,n),r(...i)}}let{id:t}=e;this._commands.get(t)&&console.info(`[Jolibox SDK] duplicated command is registered ${t}`),this._commands.set(t,e),this._onDidRegisterCommand.fire(t)}getCommand(e){return this._commands.get(e)}getCommands(){let e=new Map;for(let t of this._commands.keys()){let n=this.getCommand(t);n&&e.set(t,n)}return e}};io=Oc([kc],io);var sc=class{constructor(){this._onWillExecuteCommand=new En,this.onWillExecuteCommand=this._onWillExecuteCommand.event,this._onDidExecuteCommand=new En,this.onDidExecuteCommand=this._onDidExecuteCommand.event,this.registry=new io,this._starActivation=null}_activateStar(){return this._starActivation||(this._starActivation=Ph(3e4)),this._starActivation}executeCommand(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return xh(this,null,function*(){return this.registry.getCommand(e)?this._tryExecuteCommand(e,n):(yield Promise.all([Promise.race([this._activateStar(),ao.toPromise(ao.filter(this.registry.onDidRegisterCommand,a=>a===e))])]),this._tryExecuteCommand(e,n))})}executeCommandThowErr(e){if(!this.registry.getCommand(e))throw new Error(`command '${e}' not found`);let t=this.registry.getCommand(e);for(var n=arguments.length,r=new Array(n>1?n-1:0),a=1;a<n;a++)r[a-1]=arguments[a];this._onWillExecuteCommand.fire({commandId:e,args:r});let i=this.invokeFunction(t.handler,...r);return this._onDidExecuteCommand.fire({commandId:e,args:r}),i}_tryExecuteCommand(e,t){let n=this.registry.getCommand(e);if(!n)return Promise.reject(new Error(`command '${e}' not found`));try{this._onWillExecuteCommand.fire({commandId:e,args:t});let r=this.invokeFunction(n.handler,...t);return this._onDidExecuteCommand.fire({commandId:e,args:t}),Promise.resolve(r)}catch(r){return Promise.reject(r)}}invokeFunction(e){try{for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return e(...n)}finally{}}};sc=Oc([kc],sc);function Ce(e,t,n){return(t=tm(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function tm(e){var t=nm(e,"string");return typeof t=="symbol"?t:t+""}function nm(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Gt=e=>e?function(){try{for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];e==null||e(...n)}catch(a){console.error("Error calling function",a)}}:()=>{console.log("wrapUserFunction: fn is undefined")},oo=class{constructor(t){Ce(this,"context",void 0),Ce(this,"continueCallback",void 0),Ce(this,"adIsShowingCallback",void 0),Ce(this,"isBeforeAdCalled",!1),Ce(this,"isBeforeRewardCalled",!1),Ce(this,"isAdDismissedCalled",!1),Ce(this,"isAdViewedCalled",!1),Ce(this,"isAfterAdCalled",!1),Ce(this,"currentProvider",void 0),Ce(this,"currentClientParams",void 0),Ce(this,"adsHasResponse",!1),Ce(this,"videoChecker",window.document.createElement("video")),Ce(this,"contextInfo",void 0),Ce(this,"wrapShowAdFn",n=>()=>{var r,a,i;this.adsHasResponse=!0;let o=!1;this.videoChecker.play().catch(()=>{o=!1}),o=!this.videoChecker.paused,this.videoChecker.pause(),this.context.track("CallShowAdFn",Object.assign({},{userEvent:o},this.paramsToTrack)),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_BEFORE_REWARD",Eh({userEvent:o},this.paramsToTrack)),oc()&&this.context.track("mmp_ad_impression",{ad_network:(a=(r=this.currentProvider)==null?void 0:r.name)!=null?a:"",ad_format:"rewarded",module:"game",game_id:this.contextInfo.objectId}),(i=this.adIsShowingCallback)==null||i.call(this,!0);let s=Gt(n);s==null||s()}),this.context=t,this.contextInfo=t.getContextInfo()}notifyIframeAdsEvent(t,n){window.parent&&window.parent.postMessage({type:t,data:n},"*"),window.dispatchEvent(new CustomEvent(t,{detail:n}))}get paramsToTrack(){var t,n,r,a,i,o;return{provider:(n=(t=this.currentProvider)==null?void 0:t.name)!=null?n:null,type:(r=this.currentClientParams)==null?void 0:r.type,name:((a=this.currentClientParams)==null?void 0:a.type)==="preroll"?null:(o=(i=this.currentClientParams)==null?void 0:i.name)!=null?o:""}}wrapBeforeAd(t){return()=>{var n,r,a,i;if(this.adsHasResponse=!0,this.context.track("CallBeforeAd",this.paramsToTrack),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_BEFORE_AD",this.paramsToTrack),!this.isBeforeAdCalled){this.isBeforeAdCalled=!0;let o=Gt(t);o==null||o(),((n=this.currentClientParams)==null?void 0:n.type)!=="reward"&&((r=this.adIsShowingCallback)==null||r.call(this,!0),oc()&&this.context.track("mmp_ad_impression",{ad_network:(i=(a=this.currentProvider)==null?void 0:a.name)!=null?i:"",ad_format:"interstitial",module:"game",game_id:this.contextInfo.objectId}))}}}wrapBeforeReward(t){return n=>{this.adsHasResponse=!0,this.isBeforeRewardCalled?this.wrapShowAdFn(n)():(this.isBeforeRewardCalled=!0,t==null||t(this.wrapShowAdFn(n)))}}wrapAdDismissed(t){return()=>{if(this.adsHasResponse=!0,!this.isAdDismissedCalled){this.isAdDismissedCalled=!0;let n=Gt(t);n==null||n()}}}wrapAdViewed(t){return()=>{if(this.adsHasResponse=!0,!this.isAdViewedCalled){this.isAdViewedCalled=!0;let n=Gt(t);n==null||n()}}}wrapAfterAd(t){return()=>{if(this.adsHasResponse=!0,this.context.track("CallAfterAd",this.paramsToTrack),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_AFTER_AD",this.paramsToTrack),!this.isAfterAdCalled){this.isAfterAdCalled=!0;let n=Gt(t);n==null||n()}}}wrapAdBreakDone(t){return n=>{var r,a,i,o,s,l,d,_,h;switch(this.adsHasResponse=!0,this.context.track("CallAdBreakDone",{provider:(a=(r=this.currentProvider)==null?void 0:r.name)!=null?a:null,breakType:n.breakType,breakName:(i=n.breakName)!=null?i:"",breakFormat:n.breakFormat,breakStatus:n.breakStatus}),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_AD_BREAK_DONE",{provider:(s=(o=this.currentProvider)==null?void 0:o.name)!=null?s:null,breakType:n.breakType,breakName:(l=n.breakName)!=null?l:"",breakFormat:n.breakFormat,breakStatus:n.breakStatus}),n.breakStatus){case"viewed":case"ignored":case"dismissed":case"error":{let p=Gt(t);p==null||p(n),(d=this.adIsShowingCallback)==null||d.call(this,!1),(_=this.continueCallback)==null||_.call(this,[!1,n]);break}default:{(h=this.continueCallback)==null||h.call(this,[!0,n]);break}}}}callAdBreakAndContinue(t,n,r,a){return I(this,null,function*(){return this.currentProvider=t,this.currentClientParams=n,this.adsHasResponse=!1,new Promise(i=>{this.continueCallback=i,this.adIsShowingCallback=a;let o;switch(n.type){case"preroll":{o={type:n.type,adBreakDone:this.wrapAdBreakDone(n.adBreakDone)};break}case"reward":{o={name:n.name,type:n.type,beforeAd:this.wrapBeforeAd(n.beforeAd),beforeReward:this.wrapBeforeReward(n.beforeReward),adDismissed:this.wrapAdDismissed(n.adDismissed),adViewed:this.wrapAdViewed(n.adViewed),afterAd:this.wrapAfterAd(n.afterAd),adBreakDone:this.wrapAdBreakDone(n.adBreakDone)};break}default:{o={name:n.name,type:n.type,beforeAd:this.wrapBeforeAd(n.beforeAd),afterAd:this.wrapAfterAd(n.afterAd),adBreakDone:this.wrapAdBreakDone(n.adBreakDone)};break}}window.setTimeout(()=>{var s,l,d,_,h,p,f;this.adsHasResponse||(this.context.track("CallAdBreakTimeout",{type:n.type,provider:(l=(s=this.currentProvider)==null?void 0:s.name)!=null?l:null}),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_AD_BREAK_TIMEOUT",{type:n.type,provider:(_=(d=this.currentProvider)==null?void 0:d.name)!=null?_:null}),(p=this.continueCallback)==null||p.call(this,[!0,{breakType:n.type,breakName:n.type==="preroll"?"":(h=n.name)!=null?h:"",breakFormat:n.type==="reward"?"reward":"interstitial",breakStatus:"timeout"}]),(f=this.adIsShowingCallback)==null||f.call(this,!1))},5e3),this.context.track("CallAdBreak",this.paramsToTrack),this.notifyIframeAdsEvent("JOLIBOX_AD_CALL_AD_BREAK",this.paramsToTrack),t.adBreak(o,r),window.JoliTesterBridge&&console.log("joli-fullscreen-ad-show")})})}};function Gr(e,t,n){return(t=rm(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function rm(e){var t=am(e,"string");return typeof t=="symbol"?t:t+""}function am(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var so=class{constructor(t){Gr(this,"context",void 0),Gr(this,"adBreakIsShowing",!1),Gr(this,"reportPageJumpOut",()=>{this.context.track("AdBreakJumpOut",{context:"AdsActionDetection"})}),Gr(this,"reportPageHide",()=>{this.context.track("AdBreakHide",{context:"AdsActionDetection"})}),this.context=t,window.addEventListener("visibilitychange",()=>{document.hidden&&this.adBreakIsShowing&&this.reportPageHide()}),window.addEventListener("beforeunload",n=>{this.adBreakIsShowing&&this.reportPageJumpOut()})}};function Jr(e,t,n){return(t=im(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function im(e){var t=om(e,"string");return typeof t=="symbol"?t:t+""}function om(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var lo=class{constructor(t){Jr(this,"configs",null),Jr(this,"firstRun",!0),Jr(this,"context",void 0),Jr(this,"contextInfo",void 0),this.context=t,this.contextInfo=this.context.getContextInfo(),this.init()}init(){return I(this,null,function*(){try{this.configs=yield this.context.httpClient.get("/api/fe-configs/js-sdk/ads-channel-config",{})}catch(t){}})}shouldBypassCallingInterstitial(){var t,n;let r;if(!this.configs)this.init(),r=!this.firstRun;else{let a=(t=this.contextInfo.channel)!=null?t:"",i=this.configs[a],o=(n=i==null?void 0:i.interstitialRate)!=null?n:1;r=Math.random()<o}return this.firstRun=!1,r}};function at(e,t,n){return(t=sm(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function sm(e){var t=lm(e,"string");return typeof t=="symbol"?t:t+""}function lm(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var co=class{constructor(t,n){at(this,"name","ADSENSE"),at(this,"context",void 0),at(this,"contextInfo",void 0),at(this,"configured",!1),at(this,"initParams",void 0),at(this,"push",function(){let r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};window.adsbygoogle.push(r)}),at(this,"adConfig",r=>{let a=r,{onReady:i}=a,o=Ih(a,["onReady"]);this.context.track("CallAdConfig",o),this.configured?console.warn("Ad config already set, skipping"):(this.configured=!0,this.push(r))}),at(this,"adBreak",r=>{if(!this.contextInfo.objectId){console.warn("Game ID is not set, skip calling adBreak");return}this.push(r)}),at(this,"adUnit",r=>I(this,null,function*(){var a,i,o,s;if(this.context.track("CallAdUnit",{adFormat:(i=(a=r.adFormat)==null?void 0:a.toString())!=null?i:null,fullWidthResponsive:(o=r.fullWidthResponsive)!=null?o:null}),document.querySelector("#jolibox-ads")){console.warn("Ad unit already set, skipping");return}let{el:l,slot:d,adFormat:_,fullWidthResponsive:h,style:p}=r,f;if(!l)throw new Error("targeting element is required");if(typeof l=="string"?f=document.querySelector(l):f=l,!f)throw new Error("targeting element not found");let w=d;if(w||(w=this.initParams.unitId),!w)throw new Error("slot is required");let A=typeof _=="object"&&Array.isArray(_)?_.join(", "):_,C=document.createElement("ins");if(C.className="adsbygoogle",C.id="jolibox-ads",C.style.display="block",C.setAttribute("data-ad-client",this.initParams.clientId),C.setAttribute("data-ad-slot",w),A&&C.setAttribute("data-ad-format",A),h&&C.setAttribute("data-full-width-responsive",h),p&&C.setAttribute("style",p),(s=this.contextInfo.testAdsMode)!=null?s:!1){let b=document.createElement("div");b.style.position="absolute",b.style.top="0",b.style.left="0",b.style.width="100%",b.style.height="100%",b.style.display="flex",b.style.justifyContent="center",b.style.alignItems="center",b.style.backgroundColor="rgba(0, 0, 0, 0.5)",b.style.color="white",b.innerHTML="Test Ad",C.style.position="relative",f.appendChild(C),C.appendChild(b)}else f.appendChild(C),new MutationObserver(b=>{b.forEach(x=>{if(x.type==="attributes"&&x.attributeName==="data-ad-status"){let D=C.getAttribute("data-ad-status");this.context.track("AdSenseUnitStatusChanged",{status:D!=null?D:"null"})}})}).observe(C,{attributes:!0,attributeFilter:["data-ad-status"]}),this.push({})})),this.context=t,this.contextInfo=this.context.getContextInfo(),this.initParams=n,window.adsbygoogle=window.adsbygoogle||[]}init(){return I(this,null,function*(){var t;if(this.context.track("CallAdsInit",{provider:this.name}),typeof window=="undefined")return;let n="google-adsense",r=(t=this.contextInfo.testAdsMode)!=null?t:!1;if(!document.getElementById(n)&&this.initParams.clientId){let a=document.createElement("script");a.id=n,a.async=!0,a.crossOrigin="anonymous",a.src=`https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=${this.initParams.clientId}`,r&&a.setAttribute("data-adbreak-test","on"),this.initParams.channelId&&a.setAttribute("data-ad-channel",this.initParams.channelId),this.initParams.admobInterstitialSlot&&a.setAttribute("data-admob-interstitial-slot",this.initParams.admobInterstitialSlot),this.initParams.admobRewardedSlot&&a.setAttribute("data-admob-rewarded-slot",this.initParams.admobRewardedSlot),this.initParams.admobOnly&&a.setAttribute("data-admob-ads-only","on"),document.head.appendChild(a),this.context.track("LoadAdsenseCompleted",null)}})}};function cm(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}function um(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),e.nonce!==void 0&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t}var dm=function(){function e(n){var r=this;this._insertTag=function(a){var i;r.tags.length===0?r.insertionPoint?i=r.insertionPoint.nextSibling:r.prepend?i=r.container.firstChild:i=r.before:i=r.tags[r.tags.length-1].nextSibling,r.container.insertBefore(a,i),r.tags.push(a)},this.isSpeedy=n.speedy===void 0?!0:n.speedy,this.tags=[],this.ctr=0,this.nonce=n.nonce,this.key=n.key,this.container=n.container,this.prepend=n.prepend,this.insertionPoint=n.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(n){n.forEach(this._insertTag)},t.insert=function(n){this.ctr%(this.isSpeedy?65e3:1)===0&&this._insertTag(um(this));var r=this.tags[this.tags.length-1];if(this.isSpeedy){var a=cm(r);try{a.insertRule(n,a.cssRules.length)}catch(i){}}else r.appendChild(document.createTextNode(n));this.ctr++},t.flush=function(){this.tags.forEach(function(n){var r;return(r=n.parentNode)==null?void 0:r.removeChild(n)}),this.tags=[],this.ctr=0},e}(),we="-ms-",zr="-moz-",V="-webkit-",Dc="comm",So="rule",Co="decl",fm="@import",Nc="@keyframes",hm="@layer",mm=Math.abs,ea=String.fromCharCode,pm=Object.assign;function vm(e,t){return pe(e,0)^45?(((t<<2^pe(e,0))<<2^pe(e,1))<<2^pe(e,2))<<2^pe(e,3):0}function Uc(e){return e.trim()}function gm(e,t){return(e=t.exec(e))?e[0]:e}function $(e,t,n){return e.replace(t,n)}function uo(e,t){return e.indexOf(t)}function pe(e,t){return e.charCodeAt(t)|0}function In(e,t,n){return e.slice(t,n)}function Ve(e){return e.length}function Ro(e){return e.length}function Fr(e,t){return t.push(e),e}function _m(e,t){return e.map(t).join("")}var ta=1,jt=1,Bc=0,ke=0,fe=0,Vt="";function na(e,t,n,r,a,i,o){return{value:e,root:t,parent:n,type:r,props:a,children:i,line:ta,column:jt,length:o,return:""}}function yn(e,t){return pm(na("",null,null,"",null,null,0),e,{length:-e.length},t)}function ym(){return fe}function wm(){return fe=ke>0?pe(Vt,--ke):0,jt--,fe===10&&(jt=1,ta--),fe}function Ue(){return fe=ke<Bc?pe(Vt,ke++):0,jt++,fe===10&&(jt=1,ta++),fe}function $e(){return pe(Vt,ke)}function qr(){return ke}function Cn(e,t){return In(Vt,e,t)}function An(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Mc(e){return ta=jt=1,Bc=Ve(Vt=e),ke=0,[]}function Gc(e){return Vt="",e}function jr(e){return Uc(Cn(ke-1,fo(e===91?e+2:e===40?e+1:e)))}function bm(e){for(;(fe=$e())&&fe<33;)Ue();return An(e)>2||An(fe)>3?"":" "}function Em(e,t){for(;--t&&Ue()&&!(fe<48||fe>102||fe>57&&fe<65||fe>70&&fe<97););return Cn(e,qr()+(t<6&&$e()==32&&Ue()==32))}function fo(e){for(;Ue();)switch(fe){case e:return ke;case 34:case 39:e!==34&&e!==39&&fo(fe);break;case 40:e===41&&fo(e);break;case 92:Ue();break}return ke}function Im(e,t){for(;Ue()&&e+fe!==57&&!(e+fe===84&&$e()===47););return"/*"+Cn(t,ke-1)+"*"+ea(e===47?e:Ue())}function Am(e){for(;!An($e());)Ue();return Cn(e,ke)}function Sm(e){return Gc(Vr("",null,null,null,[""],e=Mc(e),0,[0],e))}function Vr(e,t,n,r,a,i,o,s,l){for(var d=0,_=0,h=o,p=0,f=0,w=0,A=1,C=1,b=1,x=0,D="",H=a,j=i,R=r,N=D;C;)switch(w=x,x=Ue()){case 40:if(w!=108&&pe(N,h-1)==58){uo(N+=$(jr(x),"&","&\f"),"&\f")!=-1&&(b=-1);break}case 34:case 39:case 91:N+=jr(x);break;case 9:case 10:case 13:case 32:N+=bm(w);break;case 92:N+=Em(qr()-1,7);continue;case 47:switch($e()){case 42:case 47:Fr(Cm(Im(Ue(),qr()),t,n),l);break;default:N+="/"}break;case 123*A:s[d++]=Ve(N)*b;case 125*A:case 59:case 0:switch(x){case 0:case 125:C=0;case 59+_:b==-1&&(N=$(N,/\f/g,"")),f>0&&Ve(N)-h&&Fr(f>32?cc(N+";",r,n,h-1):cc($(N," ","")+";",r,n,h-2),l);break;case 59:N+=";";default:if(Fr(R=lc(N,t,n,d,_,a,s,D,H=[],j=[],h),i),x===123)if(_===0)Vr(N,t,R,R,H,i,h,s,j);else switch(p===99&&pe(N,3)===110?100:p){case 100:case 108:case 109:case 115:Vr(e,R,R,r&&Fr(lc(e,R,R,0,0,a,s,D,a,H=[],h),j),a,j,h,s,r?H:j);break;default:Vr(N,R,R,R,[""],j,0,s,j)}}d=_=f=0,A=b=1,D=N="",h=o;break;case 58:h=1+Ve(N),f=w;default:if(A<1){if(x==123)--A;else if(x==125&&A++==0&&wm()==125)continue}switch(N+=ea(x),x*A){case 38:b=_>0?1:(N+="\f",-1);break;case 44:s[d++]=(Ve(N)-1)*b,b=1;break;case 64:$e()===45&&(N+=jr(Ue())),p=$e(),_=h=Ve(D=N+=Am(qr())),x++;break;case 45:w===45&&Ve(N)==2&&(A=0)}}return i}function lc(e,t,n,r,a,i,o,s,l,d,_){for(var h=a-1,p=a===0?i:[""],f=Ro(p),w=0,A=0,C=0;w<r;++w)for(var b=0,x=In(e,h+1,h=mm(A=o[w])),D=e;b<f;++b)(D=Uc(A>0?p[b]+" "+x:$(x,/&\f/g,p[b])))&&(l[C++]=D);return na(e,t,n,a===0?So:s,l,d,_)}function Cm(e,t,n){return na(e,t,n,Dc,ea(ym()),In(e,2,-2),0)}function cc(e,t,n,r){return na(e,t,n,Co,In(e,0,r),In(e,r+1,-1),r)}function qt(e,t){for(var n="",r=Ro(e),a=0;a<r;a++)n+=t(e[a],a,e,t)||"";return n}function Rm(e,t,n,r){switch(e.type){case hm:if(e.children.length)break;case fm:case Co:return e.return=e.return||e.value;case Dc:return"";case Nc:return e.return=e.value+"{"+qt(e.children,r)+"}";case So:e.value=e.props.join(",")}return Ve(n=qt(e.children,r))?e.return=e.value+"{"+n+"}":""}function Om(e){var t=Ro(e);return function(n,r,a,i){for(var o="",s=0;s<t;s++)o+=e[s](n,r,a,i)||"";return o}}function km(e){return function(t){t.root||(t=t.return)&&e(t)}}function Tm(e){var t=Object.create(null);return function(n){return t[n]===void 0&&(t[n]=e(n)),t[n]}}var xm=function(e,t,n){for(var r=0,a=0;r=a,a=$e(),r===38&&a===12&&(t[n]=1),!An(a);)Ue();return Cn(e,ke)},Pm=function(e,t){var n=-1,r=44;do switch(An(r)){case 0:r===38&&$e()===12&&(t[n]=1),e[n]+=xm(ke-1,t,n);break;case 2:e[n]+=jr(r);break;case 4:if(r===44){e[++n]=$e()===58?"&\f":"",t[n]=e[n].length;break}default:e[n]+=ea(r)}while(r=Ue());return e},Lm=function(e,t){return Gc(Pm(Mc(e),t))},uc=new WeakMap,Dm=function(e){if(!(e.type!=="rule"||!e.parent||e.length<1)){for(var t=e.value,n=e.parent,r=e.column===n.column&&e.line===n.line;n.type!=="rule";)if(n=n.parent,!n)return;if(!(e.props.length===1&&t.charCodeAt(0)!==58&&!uc.get(n))&&!r){uc.set(e,!0);for(var a=[],i=Lm(t,a),o=n.props,s=0,l=0;s<i.length;s++)for(var d=0;d<o.length;d++,l++)e.props[l]=a[s]?i[s].replace(/&\f/g,o[d]):o[d]+" "+i[s]}}},Nm=function(e){if(e.type==="decl"){var t=e.value;t.charCodeAt(0)===108&&t.charCodeAt(2)===98&&(e.return="",e.value="")}};function Jc(e,t){switch(vm(e,t)){case 5103:return V+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return V+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return V+e+zr+e+we+e+e;case 6828:case 4268:return V+e+we+e+e;case 6165:return V+e+we+"flex-"+e+e;case 5187:return V+e+$(e,/(\w+).+(:[^]+)/,V+"box-$1$2"+we+"flex-$1$2")+e;case 5443:return V+e+we+"flex-item-"+$(e,/flex-|-self/,"")+e;case 4675:return V+e+we+"flex-line-pack"+$(e,/align-content|flex-|-self/,"")+e;case 5548:return V+e+we+$(e,"shrink","negative")+e;case 5292:return V+e+we+$(e,"basis","preferred-size")+e;case 6060:return V+"box-"+$(e,"-grow","")+V+e+we+$(e,"grow","positive")+e;case 4554:return V+$(e,/([^-])(transform)/g,"$1"+V+"$2")+e;case 6187:return $($($(e,/(zoom-|grab)/,V+"$1"),/(image-set)/,V+"$1"),e,"")+e;case 5495:case 3959:return $(e,/(image-set\([^]*)/,V+"$1$`$1");case 4968:return $($(e,/(.+:)(flex-)?(.*)/,V+"box-pack:$3"+we+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+V+e+e;case 4095:case 3583:case 4068:case 2532:return $(e,/(.+)-inline(.+)/,V+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(Ve(e)-1-t>6)switch(pe(e,t+1)){case 109:if(pe(e,t+4)!==45)break;case 102:return $(e,/(.+:)(.+)-([^]+)/,"$1"+V+"$2-$3$1"+zr+(pe(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~uo(e,"stretch")?Jc($(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(pe(e,t+1)!==115)break;case 6444:switch(pe(e,Ve(e)-3-(~uo(e,"!important")&&10))){case 107:return $(e,":",":"+V)+e;case 101:return $(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+V+(pe(e,14)===45?"inline-":"")+"box$3$1"+V+"$2$3$1"+we+"$2box$3")+e}break;case 5936:switch(pe(e,t+11)){case 114:return V+e+we+$(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return V+e+we+$(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return V+e+we+$(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return V+e+we+e+e}return e}var Um=function(e,t,n,r){if(e.length>-1&&!e.return)switch(e.type){case Co:e.return=Jc(e.value,e.length);break;case Nc:return qt([yn(e,{value:$(e.value,"@","@"+V)})],r);case So:if(e.length)return _m(e.props,function(a){switch(gm(a,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return qt([yn(e,{props:[$(a,/:(read-\w+)/,":"+zr+"$1")]})],r);case"::placeholder":return qt([yn(e,{props:[$(a,/:(plac\w+)/,":"+V+"input-$1")]}),yn(e,{props:[$(a,/:(plac\w+)/,":"+zr+"$1")]}),yn(e,{props:[$(a,/:(plac\w+)/,we+"input-$1")]})],r)}return""})}},Bm=[Um],Mm=function(e){var t=e.key;if(t==="css"){var n=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(n,function(w){var A=w.getAttribute("data-emotion");A.indexOf(" ")!==-1&&(document.head.appendChild(w),w.setAttribute("data-s",""))})}var r=e.stylisPlugins||Bm,a={},i,o=[];i=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+t+' "]'),function(w){for(var A=w.getAttribute("data-emotion").split(" "),C=1;C<A.length;C++)a[A[C]]=!0;o.push(w)});var s,l=[Dm,Nm];{var d,_=[Rm,km(function(w){d.insert(w)})],h=Om(l.concat(r,_)),p=function(w){return qt(Sm(w),h)};s=function(w,A,C,b){d=C,p(w?w+"{"+A.styles+"}":A.styles),b&&(f.inserted[A.name]=!0)}}var f={key:t,sheet:new dm({key:t,container:i,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:a,registered:{},insert:s};return f.sheet.hydrate(o),f};function Gm(e){for(var t=0,n,r=0,a=e.length;a>=4;++r,a-=4)n=e.charCodeAt(r)&255|(e.charCodeAt(++r)&255)<<8|(e.charCodeAt(++r)&255)<<16|(e.charCodeAt(++r)&255)<<24,n=(n&65535)*1540483477+((n>>>16)*59797<<16),n^=n>>>24,t=(n&65535)*1540483477+((n>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(a){case 3:t^=(e.charCodeAt(r+2)&255)<<16;case 2:t^=(e.charCodeAt(r+1)&255)<<8;case 1:t^=e.charCodeAt(r)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}var Jm={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,scale:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},Fm=/[A-Z]|^ms/g,Hm=/_EMO_([^_]+?)_([^]*?)_EMO_/g,Fc=function(e){return e.charCodeAt(1)===45},dc=function(e){return e!=null&&typeof e!="boolean"},Yi=Tm(function(e){return Fc(e)?e:e.replace(Fm,"-$&").toLowerCase()}),fc=function(e,t){switch(e){case"animation":case"animationName":if(typeof t=="string")return t.replace(Hm,function(n,r,a){return ht={name:r,styles:a,next:ht},r})}return Jm[e]!==1&&!Fc(e)&&typeof t=="number"&&t!==0?t+"px":t};function Xr(e,t,n){if(n==null)return"";var r=n;if(r.__emotion_styles!==void 0)return r;switch(typeof n){case"boolean":return"";case"object":{var a=n;if(a.anim===1)return ht={name:a.name,styles:a.styles,next:ht},a.name;var i=n;if(i.styles!==void 0){var o=i.next;if(o!==void 0)for(;o!==void 0;)ht={name:o.name,styles:o.styles,next:ht},o=o.next;var s=i.styles+";";return s}return qm(e,t,n)}}var l=n;if(t==null)return l;var d=t[l];return d!==void 0?d:l}function qm(e,t,n){var r="";if(Array.isArray(n))for(var a=0;a<n.length;a++)r+=Xr(e,t,n[a])+";";else for(var i in n){var o=n[i];if(typeof o!="object"){var s=o;t!=null&&t[s]!==void 0?r+=i+"{"+t[s]+"}":dc(s)&&(r+=Yi(i)+":"+fc(i,s)+";")}else if(Array.isArray(o)&&typeof o[0]=="string"&&(t==null||t[o[0]]===void 0))for(var l=0;l<o.length;l++)dc(o[l])&&(r+=Yi(i)+":"+fc(i,o[l])+";");else{var d=Xr(e,t,o);switch(i){case"animation":case"animationName":{r+=Yi(i)+":"+d+";";break}default:r+=i+"{"+d+"}"}}}return r}var hc=/label:\s*([^\s;{]+)\s*(;|$)/g,ht;function Qi(e,t,n){if(e.length===1&&typeof e[0]=="object"&&e[0]!==null&&e[0].styles!==void 0)return e[0];var r=!0,a="";ht=void 0;var i=e[0];if(i==null||i.raw===void 0)r=!1,a+=Xr(n,t,i);else{var o=i;a+=o[0]}for(var s=1;s<e.length;s++)if(a+=Xr(n,t,e[s]),r){var l=i;a+=l[s]}hc.lastIndex=0;for(var d="",_;(_=hc.exec(a))!==null;)d+="-"+_[1];var h=Gm(a)+d;return{name:h,styles:a,next:ht}}function Hc(e,t,n){var r="";return n.split(" ").forEach(function(a){e[a]!==void 0?t.push(e[a]+";"):a&&(r+=a+" ")}),r}var jm=function(e,t,n){var r=e.key+"-"+t.name;e.registered[r]===void 0&&(e.registered[r]=t.styles)},Vm=function(e,t,n){jm(e,t);var r=e.key+"-"+t.name;if(e.inserted[t.name]===void 0){var a=t;do e.insert(t===a?"."+r:"",a,e.sheet,!0),a=a.next;while(a!==void 0)}};function mc(e,t){if(e.inserted[t.name]===void 0)return e.insert("",t,e.sheet,!0)}function pc(e,t,n){var r=[],a=Hc(e,r,n);return r.length<2?n:a+t(r)}var $m=function(e){var t=Mm(e);t.sheet.speedy=function(o){this.isSpeedy=o},t.compat=!0;var n=function(){for(var o=arguments.length,s=new Array(o),l=0;l<o;l++)s[l]=arguments[l];var d=Qi(s,t.registered,void 0);return Vm(t,d),t.key+"-"+d.name},r=function(){for(var o=arguments.length,s=new Array(o),l=0;l<o;l++)s[l]=arguments[l];var d=Qi(s,t.registered),_="animation-"+d.name;return mc(t,{name:d.name,styles:"@keyframes "+_+"{"+d.styles+"}"}),_},a=function(){for(var o=arguments.length,s=new Array(o),l=0;l<o;l++)s[l]=arguments[l];var d=Qi(s,t.registered);mc(t,d)},i=function(){for(var o=arguments.length,s=new Array(o),l=0;l<o;l++)s[l]=arguments[l];return pc(t.registered,n,Wm(s))};return{css:n,cx:i,injectGlobal:a,keyframes:r,hydrate:function(o){o.forEach(function(s){t.inserted[s]=!0})},flush:function(){t.registered={},t.inserted={},t.sheet.flush()},sheet:t.sheet,cache:t,getRegisteredStyles:Hc.bind(null,t.registered),merge:pc.bind(null,t.registered,n)}},Wm=function e(t){for(var n="",r=0;r<t.length;r++){var a=t[r];if(a!=null){var i=void 0;switch(typeof a){case"boolean":break;case"object":{if(Array.isArray(a))i=e(a);else{i="";for(var o in a)a[o]&&o&&(i&&(i+=" "),i+=o)}break}default:i=a}i&&(n&&(n+=" "),n+=i)}}return n},Km=$m({key:"css"}),$t=Km.css,ho,Ne,Zi,vc,gc=0,qc=[],he=M,_c=he.__b,yc=he.__r,wc=he.diffed,bc=he.__c,Ec=he.unmount,Ic=he.__;function zm(e,t){he.__h&&he.__h(Ne,e,gc||t),gc=0;var n=Ne.__H||(Ne.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({}),n.__[e]}function jc(e,t){var n=zm(ho++,7);return Qm(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function Xm(){for(var e;e=qc.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach($r),e.__H.__h.forEach(mo),e.__H.__h=[]}catch(t){e.__H.__h=[],he.__e(t,e.__v)}}he.__b=function(e){Ne=null,_c&&_c(e)},he.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),Ic&&Ic(e,t)},he.__r=function(e){yc&&yc(e),ho=0;var t=(Ne=e.__c).__H;t&&(Zi===Ne?(t.__h=[],Ne.__h=[],t.__.forEach(function(n){n.__N&&(n.__=n.__N),n.u=n.__N=void 0})):(t.__h.forEach($r),t.__h.forEach(mo),t.__h=[],ho=0)),Zi=Ne},he.diffed=function(e){wc&&wc(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(qc.push(t)!==1&&vc===he.requestAnimationFrame||((vc=he.requestAnimationFrame)||Ym)(Xm)),t.__H.__.forEach(function(n){n.u&&(n.__H=n.u),n.u=void 0})),Zi=Ne=null},he.__c=function(e,t){t.some(function(n){try{n.__h.forEach($r),n.__h=n.__h.filter(function(r){return!r.__||mo(r)})}catch(r){t.some(function(a){a.__h&&(a.__h=[])}),t=[],he.__e(r,n.__v)}}),bc&&bc(e,t)},he.unmount=function(e){Ec&&Ec(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.forEach(function(r){try{$r(r)}catch(a){t=a}}),n.__H=void 0,t&&he.__e(t,n.__v))};var Ac=typeof requestAnimationFrame=="function";function Ym(e){var t,n=function(){clearTimeout(r),Ac&&cancelAnimationFrame(t),setTimeout(e)},r=setTimeout(n,100);Ac&&(t=requestAnimationFrame(n))}function $r(e){var t=Ne,n=e.__c;typeof n=="function"&&(e.__c=void 0,n()),Ne=t}function mo(e){var t=Ne;e.__c=e.__(),Ne=t}function Qm(e,t){return!e||e.length!==t.length||t.some(function(n,r){return n!==e[r]})}var Zm=Symbol.for("preact-signals");function ra(){if(mt>1)mt--;else{for(var e,t=!1;wn!==void 0;){var n=wn;for(wn=void 0,po++;n!==void 0;){var r=n.o;if(n.o=void 0,n.f&=-3,!(8&n.f)&&$c(n))try{n.c()}catch(a){t||(e=a,t=!0)}n=r}}if(po=0,mt--,t)throw e}}function Oe(e){if(mt>0)return e();mt++;try{return e()}finally{ra()}}var Q=void 0,wn=void 0,mt=0,po=0,Yr=0;function Vc(e){if(Q!==void 0){var t=e.n;if(t===void 0||t.t!==Q)return t={i:0,S:e,p:Q.s,n:void 0,t:Q,e:void 0,x:void 0,r:t},Q.s!==void 0&&(Q.s.n=t),Q.s=t,e.n=t,32&Q.f&&e.S(t),t;if(t.i===-1)return t.i=0,t.n!==void 0&&(t.n.p=t.p,t.p!==void 0&&(t.p.n=t.n),t.p=Q.s,t.n=void 0,Q.s.n=t,Q.s=t),t}}function ve(e){this.v=e,this.i=0,this.n=void 0,this.t=void 0}ve.prototype.brand=Zm;ve.prototype.h=function(){return!0};ve.prototype.S=function(e){this.t!==e&&e.e===void 0&&(e.x=this.t,this.t!==void 0&&(this.t.e=e),this.t=e)};ve.prototype.U=function(e){if(this.t!==void 0){var t=e.e,n=e.x;t!==void 0&&(t.x=n,e.e=void 0),n!==void 0&&(n.e=t,e.x=void 0),e===this.t&&(this.t=n)}};ve.prototype.subscribe=function(e){var t=this;return On(function(){var n=t.value,r=Q;Q=void 0;try{e(n)}finally{Q=r}})};ve.prototype.valueOf=function(){return this.value};ve.prototype.toString=function(){return this.value+""};ve.prototype.toJSON=function(){return this.value};ve.prototype.peek=function(){var e=Q;Q=void 0;try{return this.value}finally{Q=e}};Object.defineProperty(ve.prototype,"value",{get:function(){var e=Vc(this);return e!==void 0&&(e.i=this.i),this.v},set:function(e){if(e!==this.v){if(po>100)throw new Error("Cycle detected");this.v=e,this.i++,Yr++,mt++;try{for(var t=this.t;t!==void 0;t=t.x)t.t.N()}finally{ra()}}}});function Z(e){return new ve(e)}function $c(e){for(var t=e.s;t!==void 0;t=t.n)if(t.S.i!==t.i||!t.S.h()||t.S.i!==t.i)return!0;return!1}function Wc(e){for(var t=e.s;t!==void 0;t=t.n){var n=t.S.n;if(n!==void 0&&(t.r=n),t.S.n=t,t.i=-1,t.n===void 0){e.s=t;break}}}function Kc(e){for(var t=e.s,n=void 0;t!==void 0;){var r=t.p;t.i===-1?(t.S.U(t),r!==void 0&&(r.n=t.n),t.n!==void 0&&(t.n.p=r)):n=t,t.S.n=t.r,t.r!==void 0&&(t.r=void 0),t=r}e.s=n}function Wt(e){ve.call(this,void 0),this.x=e,this.s=void 0,this.g=Yr-1,this.f=4}(Wt.prototype=new ve).h=function(){if(this.f&=-3,1&this.f)return!1;if((36&this.f)==32||(this.f&=-5,this.g===Yr))return!0;if(this.g=Yr,this.f|=1,this.i>0&&!$c(this))return this.f&=-2,!0;var e=Q;try{Wc(this),Q=this;var t=this.x();(16&this.f||this.v!==t||this.i===0)&&(this.v=t,this.f&=-17,this.i++)}catch(n){this.v=n,this.f|=16,this.i++}return Q=e,Kc(this),this.f&=-2,!0};Wt.prototype.S=function(e){if(this.t===void 0){this.f|=36;for(var t=this.s;t!==void 0;t=t.n)t.S.S(t)}ve.prototype.S.call(this,e)};Wt.prototype.U=function(e){if(this.t!==void 0&&(ve.prototype.U.call(this,e),this.t===void 0)){this.f&=-33;for(var t=this.s;t!==void 0;t=t.n)t.S.U(t)}};Wt.prototype.N=function(){if(!(2&this.f)){this.f|=6;for(var e=this.t;e!==void 0;e=e.x)e.t.N()}};Object.defineProperty(Wt.prototype,"value",{get:function(){if(1&this.f)throw new Error("Cycle detected");var e=Vc(this);if(this.h(),e!==void 0&&(e.i=this.i),16&this.f)throw this.v;return this.v}});function bn(e){return new Wt(e)}function zc(e){var t=e.u;if(e.u=void 0,typeof t=="function"){mt++;var n=Q;Q=void 0;try{t()}catch(r){throw e.f&=-2,e.f|=8,Oo(e),r}finally{Q=n,ra()}}}function Oo(e){for(var t=e.s;t!==void 0;t=t.n)t.S.U(t);e.x=void 0,e.s=void 0,zc(e)}function ep(e){if(Q!==this)throw new Error("Out-of-order effect");Kc(this),Q=e,this.f&=-2,8&this.f&&Oo(this),ra()}function Rn(e){this.x=e,this.u=void 0,this.s=void 0,this.o=void 0,this.f=32}Rn.prototype.c=function(){var e=this.S();try{if(8&this.f||this.x===void 0)return;var t=this.x();typeof t=="function"&&(this.u=t)}finally{e()}};Rn.prototype.S=function(){if(1&this.f)throw new Error("Cycle detected");this.f|=1,this.f&=-9,zc(this),Wc(this),mt++;var e=Q;return Q=this,ep.bind(this,e)};Rn.prototype.N=function(){2&this.f||(this.f|=2,this.o=wn,wn=this)};Rn.prototype.d=function(){this.f|=8,1&this.f||Oo(this)};function On(e){var t=new Rn(e);try{t.c()}catch(n){throw t.d(),n}return t.d.bind(t)}var Xc,eo,Yc=[];On(function(){Xc=this.N})();function Kt(e,t){M[e]=t.bind(null,M[e]||function(){})}function Qr(e){eo&&eo(),eo=e&&e.S()}function Qc(e){var t=this,n=e.data,r=Zc(n);r.value=n;var a=jc(function(){for(var s=t,l=t.__v;l=l.__;)if(l.__c){l.__c.__$f|=4;break}var d=bn(function(){var f=r.value.value;return f===0?0:f===!0?"":f||""}),_=bn(function(){return!Array.isArray(d.value)&&!Bi(d.value)}),h=On(function(){if(this.N=eu,_.value){var f=d.value;s.__v&&s.__v.__e&&s.__v.__e.nodeType===3&&(s.__v.__e.data=f)}}),p=t.__$u.d;return t.__$u.d=function(){h(),p.call(this)},[_,d]},[]),i=a[0],o=a[1];return i.value?o.peek():o.value}Qc.displayName="_st";Object.defineProperties(ve.prototype,{constructor:{configurable:!0,value:void 0},type:{configurable:!0,value:Qc},props:{configurable:!0,get:function(){return{data:this}}},__b:{configurable:!0,value:1}});Kt("__b",function(e,t){if(typeof t.type=="string"){var n,r=t.props;for(var a in r)if(a!=="children"){var i=r[a];i instanceof ve&&(n||(t.__np=n={}),n[a]=i,r[a]=i.peek())}}e(t)});Kt("__r",function(e,t){Qr();var n,r=t.__c;r&&(r.__$f&=-2,(n=r.__$u)===void 0&&(r.__$u=n=function(a){var i;return On(function(){i=this}),i.c=function(){r.__$f|=1,r.setState({})},i}())),Qr(n),e(t)});Kt("__e",function(e,t,n,r){Qr(),e(t,n,r)});Kt("diffed",function(e,t){Qr();var n;if(typeof t.type=="string"&&(n=t.__e)){var r=t.__np,a=t.props;if(r){var i=n.U;if(i)for(var o in i){var s=i[o];s!==void 0&&!(o in r)&&(s.d(),i[o]=void 0)}else i={},n.U=i;for(var l in r){var d=i[l],_=r[l];d===void 0?(d=tp(n,l,_,a),i[l]=d):d.o(_,a)}}}e(t)});function tp(e,t,n,r){var a=t in e&&e.ownerSVGElement===void 0,i=Z(n);return{o:function(o,s){i.value=o,r=s},d:On(function(){this.N=eu;var o=i.value.value;r[t]!==o&&(r[t]=o,a?e[t]=o:o?e.setAttribute(t,o):e.removeAttribute(t))})}}Kt("unmount",function(e,t){if(typeof t.type=="string"){var n=t.__e;if(n){var r=n.U;if(r){n.U=void 0;for(var a in r){var i=r[a];i&&i.d()}}}}else{var o=t.__c;if(o){var s=o.__$u;s&&(o.__$u=void 0,s.d())}}e(t)});Kt("__h",function(e,t,n,r){(r<3||r===9)&&(t.__$f|=2),e(t,n,r)});De.prototype.shouldComponentUpdate=function(e,t){var n=this.__$u,r=n&&n.s!==void 0;for(var a in t)return!0;if(this.__f||typeof this.u=="boolean"&&this.u===!0){var i=2&this.__$f;if(!(r||i||4&this.__$f)||1&this.__$f)return!0}else if(!(r||4&this.__$f)||3&this.__$f)return!0;for(var o in e)if(o!=="__source"&&e[o]!==this.props[o])return!0;for(var s in this.props)if(!(s in e))return!0;return!1};function Zc(e){return jc(function(){return Z(e)},[])}var np=function(e){queueMicrotask(function(){queueMicrotask(e)})};function rp(){Oe(function(){for(var e;e=Yc.shift();)Xc.call(e)})}function eu(){Yc.push(this)===1&&(M.requestAnimationFrame||np)(rp)}var be=$t`
4
4
  inset: 0;
5
5
  clear: none;
6
6
  float: none;
@@ -18,7 +18,7 @@ or `);this.errors.push(o)}return n}},on=class extends ce{constructor(...t){super
18
18
  text-decoration: none;
19
19
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
20
20
  'Helvetica Neue', sans-serif;
21
- `;function xm(e,t){let r=yo(e);go(()=>{r.current=e},[e]),cr(()=>{if(t===null)return;let n=setInterval(()=>{r.current()},t);return()=>{clearInterval(n)}},[t])}var Lm=0;function le(e,t,r,n,i,o){t||(t={});var a,s,u=t;if("ref"in u)for(s in u={},t)s=="ref"?a=t[s]:u[s]=t[s];var d={type:e,props:u,key:r,ref:a,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--Lm,__i:-1,__u:0,__source:i,__self:o};if(typeof e=="function"&&(a=e.defaultProps))for(s in a)u[s]===void 0&&(u[s]=a[s]);return B.vnode&&B.vnode(d),d}var Pm=jt`
21
+ `;function ap(e,t){let n=Vi(e);ji(()=>{n.current=e},[e]),pn(()=>{if(t===null)return;let r=setInterval(()=>{n.current()},t);return()=>{clearInterval(r)}},[t])}var ip=0;function le(e,t,n,r,a,i){t||(t={});var o,s,l=t;if("ref"in l)for(s in l={},t)s=="ref"?o=t[s]:l[s]=t[s];var d={type:e,props:l,key:n,ref:o,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--ip,__i:-1,__u:0,__source:a,__self:i};if(typeof e=="function"&&(o=e.defaultProps))for(s in o)l[s]===void 0&&(l[s]=o[s]);return M.vnode&&M.vnode(d),d}var op=$t`
22
22
  ${be}
23
23
  position: fixed;
24
24
  top: 0;
@@ -93,7 +93,7 @@ or `);this.errors.push(o)}return n}},on=class extends ce{constructor(...t){super
93
93
  }
94
94
  }
95
95
  }
96
- `,tt=X(null),Ho=X(""),Vo=X(""),Gn=X(!1),Dm=()=>{var e;(e=tt.value)==null||e.call(tt,!1)},Nm=()=>{var e;(e=tt.value)==null||e.call(tt,!0)},Um=e=>L(void 0,null,function*(){let{title:t,content:r}=e;return tt.value&&(tt.value(!1),Ce(()=>{tt.value=null,Gn.value=!1})),Ce(()=>{Ho.value=t||"",Vo.value=r||"",Gn.value=!0}),new Promise(n=>{tt.value=i=>{Ce(()=>{tt.value=null,Gn.value=!1,Ho.value="",Vo.value=""}),n(i)}})}),Mm=()=>Gn.value?le("div",{className:Pm,children:le("div",{className:"card-wrapper",children:[le("div",{className:"body",children:[le("div",{className:"title",children:Ho.value}),le("div",{className:"content",children:Vo.value})]}),le("div",{className:"footer",children:[le("button",{onClick:Dm,className:"cancel-btn",children:"Cancel"}),le("button",{onClick:Nm,className:"confirm-btm",children:"Confirm"})]})]})}):null,Bm=jt`
96
+ `,st=Z(null),vo=Z(""),go=Z(""),Wr=Z(!1),sp=()=>{var e;(e=st.value)==null||e.call(st,!1)},lp=()=>{var e;(e=st.value)==null||e.call(st,!0)},cp=e=>I(void 0,null,function*(){let{title:t,content:n}=e;return st.value&&(st.value(!1),Oe(()=>{st.value=null,Wr.value=!1})),Oe(()=>{vo.value=t||"",go.value=n||"",Wr.value=!0}),new Promise(r=>{st.value=a=>{Oe(()=>{st.value=null,Wr.value=!1,vo.value="",go.value=""}),r(a)}})}),up=()=>Wr.value?le("div",{className:op,children:le("div",{className:"card-wrapper",children:[le("div",{className:"body",children:[le("div",{className:"title",children:vo.value}),le("div",{className:"content",children:go.value})]}),le("div",{className:"footer",children:[le("button",{onClick:sp,className:"cancel-btn",children:"Cancel"}),le("button",{onClick:lp,className:"confirm-btm",children:"Confirm"})]})]})}):null,dp=$t`
97
97
  ${be}
98
98
  position: relative;
99
99
  display: flex;
@@ -126,7 +126,7 @@ or `);this.errors.push(o)}return n}},on=class extends ce{constructor(...t){super
126
126
  cursor: not-allowed;
127
127
  }
128
128
  }
129
- `,Jm=()=>{let e=X(!1),t=X(null);return{timerPaused:e,startTimestamp:t,startTimer:()=>{Ce(()=>{t.value=Date.now(),e.value=!1})}}},Fm=e=>{let{countdown:t=0,mode:r,onClose:n,state:i}=e,{startTimestamp:o,timerPaused:a}=i,s=ku(t);xm(()=>{s.value>0?s.value-=1:Ce(()=>{a.value=!0,s.value=0})},a.value?null:1e3);let u=vr(()=>{if(r==="interstitial"||r==="rewarded_insterstitial"||!o.value)return!1;let f=Date.now()-o.value;return s.value>0&&t-s.value>=5&&f>=5e3}),d=vr(()=>{if(r==="interstitial")return!0;if(!o.value)return!1;let f=Date.now()-o.value;return s.value<=0&&f>=(t-1)*1e3&&t>5}),y=vr(()=>r==="interstitial"?!1:!u.value&&!d.value),h=()=>L(void 0,null,function*(){if(a.value=!0,!(yield Um({title:"Are you sure?",content:"You will lose your reward if you dismiss this Ad."}))){a.value=!1;return}n("dismiss"),Ce(()=>{a.value=!0,s.value=0,o.value=null})}),p=()=>{n("viewed"),Ce(()=>{a.value=!0,s.value=0,o.value=null})};return le("div",{className:Bm,children:[s.value>0&&r!=="interstitial"&&le("div",{className:"timer",children:[s.value,"s"]}),le("button",{onClick:u.value?h:d.value?p:void 0,disabled:y.value,children:le("svg",{width:"12",height:"12",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:le("path",{d:"M13.3 0.710215C12.91 0.320215 12.28 0.320215 11.89 0.710215L6.99997 5.59022L2.10997 0.700215C1.71997 0.310215 1.08997 0.310215 0.699971 0.700215C0.309971 1.09021 0.309971 1.72022 0.699971 2.11022L5.58997 7.00022L0.699971 11.8902C0.309971 12.2802 0.309971 12.9102 0.699971 13.3002C1.08997 13.6902 1.71997 13.6902 2.10997 13.3002L6.99997 8.41021L11.89 13.3002C12.28 13.6902 12.91 13.6902 13.3 13.3002C13.69 12.9102 13.69 12.2802 13.3 11.8902L8.40997 7.00022L13.3 2.11022C13.68 1.73022 13.68 1.09022 13.3 0.710215Z",fill:"white"})})})]})},Gm=()=>{let e=X(),t=X(),r=X(),n=X(),i=X(),o=X(!1),a=X(15),s=X(""),u=X("reward");return{afterAd:e,adDismissed:t,adViewed:r,adBreakDone:n,adLoaded:i,visible:o,countdown:a,src:s,mode:u}},jm=jt`
129
+ `,fp=()=>{let e=Z(!1),t=Z(null);return{timerPaused:e,startTimestamp:t,startTimer:()=>{Oe(()=>{t.value=Date.now(),e.value=!1})}}},hp=e=>{let{countdown:t=0,mode:n,onClose:r,state:a}=e,{startTimestamp:i,timerPaused:o}=a,s=Zc(t);ap(()=>{s.value>0?s.value-=1:Oe(()=>{o.value=!0,s.value=0})},o.value?null:1e3);let l=bn(()=>{if(n==="interstitial"||n==="rewarded_insterstitial"||!i.value)return!1;let f=Date.now()-i.value;return s.value>0&&t-s.value>=5&&f>=5e3}),d=bn(()=>{if(n==="interstitial")return!0;if(!i.value)return!1;let f=Date.now()-i.value;return s.value<=0&&f>=(t-1)*1e3&&t>5}),_=bn(()=>n==="interstitial"?!1:!l.value&&!d.value),h=()=>I(void 0,null,function*(){if(o.value=!0,!(yield cp({title:"Are you sure?",content:"You will lose your reward if you dismiss this Ad."}))){o.value=!1;return}r("dismiss"),Oe(()=>{o.value=!0,s.value=0,i.value=null})}),p=()=>{r("viewed"),Oe(()=>{o.value=!0,s.value=0,i.value=null})};return le("div",{className:dp,children:[s.value>0&&n!=="interstitial"&&le("div",{className:"timer",children:[s.value,"s"]}),le("button",{onClick:l.value?h:d.value?p:void 0,disabled:_.value,children:le("svg",{width:"12",height:"12",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:le("path",{d:"M13.3 0.710215C12.91 0.320215 12.28 0.320215 11.89 0.710215L6.99997 5.59022L2.10997 0.700215C1.71997 0.310215 1.08997 0.310215 0.699971 0.700215C0.309971 1.09021 0.309971 1.72022 0.699971 2.11022L5.58997 7.00022L0.699971 11.8902C0.309971 12.2802 0.309971 12.9102 0.699971 13.3002C1.08997 13.6902 1.71997 13.6902 2.10997 13.3002L6.99997 8.41021L11.89 13.3002C12.28 13.6902 12.91 13.6902 13.3 13.3002C13.69 12.9102 13.69 12.2802 13.3 11.8902L8.40997 7.00022L13.3 2.11022C13.68 1.73022 13.68 1.09022 13.3 0.710215Z",fill:"white"})})})]})},mp=()=>{let e=Z(),t=Z(),n=Z(),r=Z(),a=Z(),i=Z(!1),o=Z(15),s=Z(""),l=Z("reward");return{afterAd:e,adDismissed:t,adViewed:n,adBreakDone:r,adLoaded:a,visible:i,countdown:o,src:s,mode:l}},pp=$t`
130
130
  ${be}
131
131
  position: fixed;
132
132
  z-index: 2147483647;
@@ -145,7 +145,7 @@ or `);this.errors.push(o)}return n}},on=class extends ce{constructor(...t){super
145
145
  width: 100%;
146
146
  height: 100%;
147
147
  }
148
- `,Hm=e=>{let{state:t}=e,{afterAd:r,adDismissed:n,adViewed:i,adBreakDone:o,adLoaded:a,visible:s,countdown:u,src:d,mode:y}=t,h=dr(()=>Jm(),[]),[p,f]=xn(!1),b=C=>{var w,k,D,G;s.value=!1,C==="dismiss"?(w=n.value)==null||w.call(n):C==="viewed"&&((k=i.value)==null||k.call(i)),(D=r.value)==null||D.call(r),(G=o.value)==null||G.call(o),f(!1)},I=wo(()=>{var C;p||(f(!0),(C=a.value)==null||C.call(a))},[p]);return cr(()=>{p&&(y.value==="reward"||y.value==="rewarded_insterstitial")&&setTimeout(()=>{h.startTimer()},100)},[p,y.value]),s.value?le("div",{className:jm,children:[le(Fm,{mode:y.value,onClose:b,countdown:u.value,state:h}),s.value&&le("iframe",{src:d.value,onLoad:I,sandbox:"allow-scripts allow-same-origin allow-forms allow-modals allow-downloads allow-popups allow-popups-to-escape-sandbox allow-top-navigation-by-user-activation allow-top-navigation allow-top-navigation-by-user-activation allow-top-navigation-to-custom-protocols"}),le(Mm,{})]}):null};function Ze(e,t,r){return(t=Vm(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Vm(e){var t=$m(e,"string");return typeof t=="symbol"?t:t+""}function $m(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var $o=class{constructor(t,r){Ze(this,"name","OKSPIN"),Ze(this,"initialized",!1),Ze(this,"initCompleter",null),Ze(this,"context",void 0),Ze(this,"initParams",void 0),Ze(this,"adsOverlay",null),Ze(this,"adsIsShowing",!1),Ze(this,"lastUnDisplayedAdBreak",null),Ze(this,"state",Gm()),this.context=t,this.initParams=r}init(){return L(this,null,function*(){var t;this.adsOverlay=document.createElement("div"),this.adsOverlay.setAttribute("data-placement-info","afg"),Io(le(Hm,{state:this.state}),this.adsOverlay),document.documentElement.appendChild(this.adsOverlay),this.initialized=!0,(t=this.initCompleter)==null||t.call(this)})}adConfig(t){var r;if(this.initialized){(r=t.onReady)==null||r.call(t);return}this.initCompleter=()=>{var n;(n=t.onReady)==null||n.call(t)}}adBreak(t,r){return L(this,null,function*(){var n,i,o,a,s,u,d,y;if(!this.initialized||!this.adsOverlay||!r.params.url){(n=t.adBreakDone)==null||n.call(t,{breakType:t.type,breakName:t.type==="preroll"?"":t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"notReady"});return}if(this.adsIsShowing){(i=t.adBreakDone)==null||i.call(t,{breakType:t.type,breakName:t.type==="preroll"?"":t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"frequencyCapped"});return}switch(t.type){case"preroll":{(o=t.adBreakDone)==null||o.call(t,{breakType:t.type,breakName:"",breakFormat:"interstitial",breakStatus:"noAdPreloaded"});break}case"start":case"browse":case"next":case"pause":{(a=t.beforeAd)==null||a.call(t);let h=()=>{var f;this.adsIsShowing=!1,(f=t.afterAd)==null||f.call(t)},p=()=>{var f;this.adsIsShowing=!1,(f=t.adBreakDone)==null||f.call(t,{breakType:t.type,breakName:t.name,breakFormat:"interstitial",breakStatus:"viewed"})};Ce(()=>{this.adsIsShowing=!0,this.state.afterAd.value=h,this.state.adBreakDone.value=p,this.state.src.value=r.params.url,this.state.mode.value="interstitial",this.state.visible.value=!0});break}case"reward":{this.lastUnDisplayedAdBreak&&((u=(s=this.lastUnDisplayedAdBreak).adBreakDone)==null||u.call(s,{breakType:this.lastUnDisplayedAdBreak.type,breakName:this.lastUnDisplayedAdBreak.type==="preroll"?"":this.lastUnDisplayedAdBreak.name,breakFormat:this.lastUnDisplayedAdBreak.type==="reward"?"reward":"interstitial",breakStatus:"ignored"}),this.lastUnDisplayedAdBreak=null),(d=t.beforeAd)==null||d.call(t);let h=()=>{var w;this.adsIsShowing=!1,(w=t.afterAd)==null||w.call(t)},p={breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"ignored"},f=()=>{var w;this.adsIsShowing=!1,p.breakStatus="dismissed",(w=t.adDismissed)==null||w.call(t)},b=()=>{var w;this.adsIsShowing=!1,p.breakStatus="viewed",(w=t.adViewed)==null||w.call(t)},I=()=>{var w;this.adsIsShowing=!1,(w=t.adBreakDone)==null||w.call(t,p)};Ce(()=>{this.state.afterAd.value=h,this.state.adDismissed.value=f,this.state.adViewed.value=b,this.state.adBreakDone.value=I});let C=()=>{var w;if(this.lastUnDisplayedAdBreak=null,!this.adsOverlay){(w=t.adBreakDone)==null||w.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"notReady"});return}this.adsIsShowing=!0,Ce(()=>{var k;this.state.countdown.value=(k=r.params.countdown)!=null?k:15,this.state.src.value=r.params.url,this.state.mode.value="reward",this.state.visible.value=!0})};this.lastUnDisplayedAdBreak=t,(y=t.beforeReward)==null||y.call(t,C);break}}})}},Bt={};window.addEventListener("message",e=>{e.origin!=="https://ads.appsrockets.com"&&e.origin!=="https://stg-ads.appsrockets.com"||Bt[e.data.type]&&Bt[e.data.type].forEach(t=>{t(e.data.data)})});var Ut=(e,t)=>{cr(()=>(Bt[e]||(Bt[e]=new Set),Bt[e].add(t),()=>{Bt[e].delete(t)}),[e,t])},qm=()=>{let e=X(),t=X(),r=X(),n=X(),i=X(),o=X(),a=X(),s=X(!1),u=X("");return{afterAd:e,adDismissed:t,adViewed:r,adBreakDone:n,adLoaded:i,adLinkClicked:o,adError:a,visible:s,src:u}},Km=jt`
148
+ `,vp=e=>{let{state:t}=e,{afterAd:n,adDismissed:r,adViewed:a,adBreakDone:i,adLoaded:o,visible:s,countdown:l,src:d,mode:_}=t,h=vn(()=>fp(),[]),[p,f]=Br(!1),w=C=>{var b,x,D,H;s.value=!1,C==="dismiss"?(b=r.value)==null||b.call(r):C==="viewed"&&((x=a.value)==null||x.call(a)),(D=n.value)==null||D.call(n),(H=i.value)==null||H.call(i),f(!1)},A=$i(()=>{var C;p||(f(!0),(C=o.value)==null||C.call(o))},[p]);return pn(()=>{p&&(_.value==="reward"||_.value==="rewarded_insterstitial")&&setTimeout(()=>{h.startTimer()},100)},[p,_.value]),s.value?le("div",{className:pp,children:[le(hp,{mode:_.value,onClose:w,countdown:l.value,state:h}),s.value&&le("iframe",{src:d.value,onLoad:A,sandbox:"allow-scripts allow-same-origin allow-forms allow-modals allow-downloads allow-popups allow-popups-to-escape-sandbox allow-top-navigation-by-user-activation allow-top-navigation allow-top-navigation-by-user-activation allow-top-navigation-to-custom-protocols"}),le(up,{})]}):null};function it(e,t,n){return(t=gp(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function gp(e){var t=_p(e,"string");return typeof t=="symbol"?t:t+""}function _p(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var _o=class{constructor(t,n){it(this,"name","OKSPIN"),it(this,"initialized",!1),it(this,"initCompleter",null),it(this,"context",void 0),it(this,"initParams",void 0),it(this,"adsOverlay",null),it(this,"adsIsShowing",!1),it(this,"lastUnDisplayedAdBreak",null),it(this,"state",mp()),this.context=t,this.initParams=n}init(){return I(this,null,function*(){var t;this.adsOverlay=document.createElement("div"),this.adsOverlay.setAttribute("data-placement-info","afg"),zi(le(vp,{state:this.state}),this.adsOverlay),document.documentElement.appendChild(this.adsOverlay),this.initialized=!0,(t=this.initCompleter)==null||t.call(this)})}adConfig(t){var n;if(this.initialized){(n=t.onReady)==null||n.call(t);return}this.initCompleter=()=>{var r;(r=t.onReady)==null||r.call(t)}}adBreak(t,n){return I(this,null,function*(){var r,a,i,o,s,l,d,_;if(!this.initialized||!this.adsOverlay||!n.params.url){(r=t.adBreakDone)==null||r.call(t,{breakType:t.type,breakName:t.type==="preroll"?"":t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"notReady"});return}if(this.adsIsShowing){(a=t.adBreakDone)==null||a.call(t,{breakType:t.type,breakName:t.type==="preroll"?"":t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"frequencyCapped"});return}switch(t.type){case"preroll":{(i=t.adBreakDone)==null||i.call(t,{breakType:t.type,breakName:"",breakFormat:"interstitial",breakStatus:"noAdPreloaded"});break}case"start":case"browse":case"next":case"pause":{(o=t.beforeAd)==null||o.call(t);let h=()=>{var f;this.adsIsShowing=!1,(f=t.afterAd)==null||f.call(t)},p=()=>{var f;this.adsIsShowing=!1,(f=t.adBreakDone)==null||f.call(t,{breakType:t.type,breakName:t.name,breakFormat:"interstitial",breakStatus:"viewed"})};Oe(()=>{this.adsIsShowing=!0,this.state.afterAd.value=h,this.state.adBreakDone.value=p,this.state.src.value=n.params.url,this.state.mode.value="interstitial",this.state.visible.value=!0});break}case"reward":{this.lastUnDisplayedAdBreak&&((l=(s=this.lastUnDisplayedAdBreak).adBreakDone)==null||l.call(s,{breakType:this.lastUnDisplayedAdBreak.type,breakName:this.lastUnDisplayedAdBreak.type==="preroll"?"":this.lastUnDisplayedAdBreak.name,breakFormat:this.lastUnDisplayedAdBreak.type==="reward"?"reward":"interstitial",breakStatus:"ignored"}),this.lastUnDisplayedAdBreak=null),(d=t.beforeAd)==null||d.call(t);let h=()=>{var b;this.adsIsShowing=!1,(b=t.afterAd)==null||b.call(t)},p={breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"ignored"},f=()=>{var b;this.adsIsShowing=!1,p.breakStatus="dismissed",(b=t.adDismissed)==null||b.call(t)},w=()=>{var b;this.adsIsShowing=!1,p.breakStatus="viewed",(b=t.adViewed)==null||b.call(t)},A=()=>{var b;this.adsIsShowing=!1,(b=t.adBreakDone)==null||b.call(t,p)};Oe(()=>{this.state.afterAd.value=h,this.state.adDismissed.value=f,this.state.adViewed.value=w,this.state.adBreakDone.value=A});let C=()=>{var b;if(this.lastUnDisplayedAdBreak=null,!this.adsOverlay){(b=t.adBreakDone)==null||b.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"notReady"});return}this.adsIsShowing=!0,Oe(()=>{var x;this.state.countdown.value=(x=n.params.countdown)!=null?x:15,this.state.src.value=n.params.url,this.state.mode.value="reward",this.state.visible.value=!0})};this.lastUnDisplayedAdBreak=t,(_=t.beforeReward)==null||_.call(t,C);break}}})}},Ht={};window.addEventListener("message",e=>{e.origin!=="https://ads.appsrockets.com"&&e.origin!=="https://stg-ads.appsrockets.com"||Ht[e.data.type]&&Ht[e.data.type].forEach(t=>{t(e.data.data)})});var Jt=(e,t)=>{pn(()=>(Ht[e]||(Ht[e]=new Set),Ht[e].add(t),()=>{Ht[e].delete(t)}),[e,t])},yp=()=>{let e=Z(),t=Z(),n=Z(),r=Z(),a=Z(),i=Z(),o=Z(),s=Z(!1),l=Z("");return{afterAd:e,adDismissed:t,adViewed:n,adBreakDone:r,adLoaded:a,adLinkClicked:i,adError:o,visible:s,src:l}},wp=$t`
149
149
  ${be}
150
150
  position: fixed;
151
151
  z-index: 2147483647;
@@ -164,7 +164,7 @@ or `);this.errors.push(o)}return n}},on=class extends ce{constructor(...t){super
164
164
  width: 100%;
165
165
  height: 100%;
166
166
  }
167
- `,Wm=e=>{let{state:t}=e,{afterAd:r,adDismissed:n,adViewed:i,adBreakDone:o,adLoaded:a,adLinkClicked:s,visible:u,src:d}=t,[y,h]=xn(!1),p=b=>{var I,C,w,k;h(!1),u.value=!1,b==="dismiss"?(I=n.value)==null||I.call(n):b==="viewed"&&((C=i.value)==null||C.call(i)),(w=r.value)==null||w.call(r),(k=o.value)==null||k.call(o)},f=()=>{var b;(b=a.value)==null||b.call(a)};return Ut("appsrockets_ad_dismissed",()=>p("dismiss")),Ut("appsrockets_ad_rewarded",()=>p("viewed")),Ut("appsrockets_ad_completed",()=>p("viewed")),Ut("appsrockets_ad_skipped",()=>p("viewed")),Ut("appsrockets_ad_clicked",b=>{var I;return(I=s.value)==null?void 0:I.call(s,b)}),Ut("appsrockets_ad_loaded",()=>h(!0)),u.value?le("div",{className:Km,style:{display:y?"flex":"none"},children:u.value&&le("iframe",{src:d.value,onLoad:f,allowFullScreen:!0,allow:"autoplay",sandbox:"allow-scripts allow-same-origin allow-forms allow-modals allow-downloads allow-popups allow-popups-to-escape-sandbox allow-top-navigation-by-user-activation allow-top-navigation allow-top-navigation-by-user-activation allow-top-navigation-to-custom-protocols"})}):null};function et(e,t,r){return(t=zm(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function zm(e){var t=Ym(e,"string");return typeof t=="symbol"?t:t+""}function Ym(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var qo=class{constructor(t,r){et(this,"name","APPSROCKETS"),et(this,"initialized",!1),et(this,"initCompleter",null),et(this,"context",void 0),et(this,"adsOverlay",null),et(this,"adsIsShowing",!1),et(this,"lastUnDisplayedAdBreak",null),et(this,"state",qm()),et(this,"processUrl",n=>{var i;let o=this.context.getContextInfo(),a=new URL(n),s=new URLSearchParams(a.search);return s.has("joliSource")||s.set("joliSource",o.joliSource),s.get("osType")||s.set("osType",o.osType),s.get("runtimeType")||s.set("runtimeType",o.runtimeType),s.get("mode")||s.set("mode","AFG"),s.get("deviceId")||s.set("deviceId",o.deviceId),s.get("statusBarHeight")||s.set("statusBarHeight",((i=this.context.getWindowInfo().statusBarHeight)!=null?i:0).toString()),a.search=s.toString(),a.toString()}),this.context=t}init(){return L(this,null,function*(){var t;this.adsOverlay=document.createElement("div"),this.adsOverlay.setAttribute("data-placement-info","afg-appsrockets"),Io(le(Wm,{state:this.state}),this.adsOverlay),document.documentElement.appendChild(this.adsOverlay),this.initialized=!0,(t=this.initCompleter)==null||t.call(this)})}adConfig(t){var r;if(this.initialized){(r=t.onReady)==null||r.call(t);return}this.initCompleter=()=>{var n;(n=t.onReady)==null||n.call(t)}}adBreak(t,r){var n,i,o,a,s,u,d,y;if(!this.initialized||!this.adsOverlay||!r.params.url){(n=t.adBreakDone)==null||n.call(t,{breakType:t.type,breakName:t.type==="preroll"?"":t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"notReady"});return}if(this.adsIsShowing){(i=t.adBreakDone)==null||i.call(t,{breakType:t.type,breakName:t.type==="preroll"?"":t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"frequencyCapped"});return}let h=p=>{var f,b;(b=(f=this.context).handleLinkClicked)==null||b.call(f,p)};switch(t.type){case"preroll":{(o=t.adBreakDone)==null||o.call(t,{breakType:t.type,breakName:"",breakFormat:"interstitial",breakStatus:"noAdPreloaded"});break}case"start":case"browse":case"next":case"pause":{(a=t.beforeAd)==null||a.call(t);let p=()=>{var I;this.adsIsShowing=!1,(I=t.afterAd)==null||I.call(t)},f=()=>{var I;this.adsIsShowing=!1,(I=t.adBreakDone)==null||I.call(t,{breakType:t.type,breakName:t.name,breakFormat:"interstitial",breakStatus:"viewed"})},b=()=>{var I;this.adsIsShowing=!1,(I=t.adBreakDone)==null||I.call(t,{breakType:t.type,breakName:t.name,breakFormat:"interstitial",breakStatus:"noAdPreloaded"})};Ce(()=>{this.adsIsShowing=!0,this.state.afterAd.value=p,this.state.adBreakDone.value=f,this.state.src.value=this.processUrl(r.params.url),this.state.adLinkClicked.value=h,this.state.adError.value=b,this.state.visible.value=!0});break}case"reward":{this.lastUnDisplayedAdBreak&&((u=(s=this.lastUnDisplayedAdBreak).adBreakDone)==null||u.call(s,{breakType:this.lastUnDisplayedAdBreak.type,breakName:this.lastUnDisplayedAdBreak.type==="preroll"?"":this.lastUnDisplayedAdBreak.name,breakFormat:this.lastUnDisplayedAdBreak.type==="reward"?"reward":"interstitial",breakStatus:"ignored"}),this.lastUnDisplayedAdBreak=null),(d=t.beforeAd)==null||d.call(t);let p=()=>{var D;this.adsIsShowing=!1,(D=t.afterAd)==null||D.call(t)},f={breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"ignored"},b=()=>{var D;this.adsIsShowing=!1,f.breakStatus="dismissed",(D=t.adDismissed)==null||D.call(t)},I=()=>{var D;this.adsIsShowing=!1,f.breakStatus="viewed",(D=t.adViewed)==null||D.call(t)},C=()=>{var D;this.adsIsShowing=!1,(D=t.adBreakDone)==null||D.call(t,f)},w=()=>{this.adsIsShowing=!1,f.breakStatus="noAdPreloaded"};Ce(()=>{this.state.afterAd.value=p,this.state.adDismissed.value=b,this.state.adViewed.value=I,this.state.adBreakDone.value=C,this.state.adLinkClicked.value=h,this.state.adError.value=w});let k=()=>{var D;if(this.lastUnDisplayedAdBreak=null,!this.adsOverlay){(D=t.adBreakDone)==null||D.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"notReady"});return}this.adsIsShowing=!0,Ce(()=>{this.state.src.value=this.processUrl(r.params.url),this.state.visible.value=!0})};this.lastUnDisplayedAdBreak=t,(y=t.beforeReward)==null||y.call(t,k);break}}}},xu=()=>{window.googletag=window.googletag||{cmd:[]},window.googletag.pubadsReady||window.googletag.cmd.push(()=>{window.googletag.enableServices()})};function ye(e,t,r){return(t=Qm(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Qm(e){var t=Xm(e,"string");return typeof t=="symbol"?t:t+""}function Xm(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Ko=class{constructor(t,r,n){ye(this,"adUnit",void 0),ye(this,"project",void 0),ye(this,"keyValue",void 0),ye(this,"adsContext",null),ye(this,"rewardedSlot",null),ye(this,"rewardedPayload",null),ye(this,"readyEvent",null),ye(this,"withCommand",function(){googletag.cmd.push(...arguments)}),ye(this,"init",()=>{var i;this.rewardedSlot=googletag.defineOutOfPageSlot(this.adUnit,googletag.enums.OutOfPageFormat.REWARDED),this.rewardedSlot&&(this.rewardedSlot.addService(googletag.pubads()),googletag.pubads().addEventListener("rewardedSlotReady",this.handleSlotReady),googletag.pubads().addEventListener("rewardedSlotClosed",this.handleSlotClosed),googletag.pubads().addEventListener("rewardedSlotGranted",this.handleSlotGranted),googletag.pubads().addEventListener("slotRenderEnded",this.handleSlotRenderEnded),this.keyValue&&(Object.keys(this.keyValue).forEach(o=>{var a;(a=this.rewardedSlot)==null||a.setTargeting(o,this.keyValue[o])}),Object.keys(this.keyValue).includes("project")||(i=this.rewardedSlot)==null||i.setTargeting("project",this.project)),googletag.display(this.rewardedSlot))}),ye(this,"destroy",i=>{var o,a;this.rewardedPayload=null,this.readyEvent=null,googletag.pubads().removeEventListener("rewardedSlotReady",this.handleSlotReady),googletag.pubads().removeEventListener("rewardedSlotClosed",this.handleSlotClosed),googletag.pubads().removeEventListener("rewardedSlotGranted",this.handleSlotGranted),googletag.pubads().removeEventListener("slotRenderEnded",this.handleSlotRenderEnded),this.rewardedSlot&&(googletag.destroySlots([this.rewardedSlot]),this.rewardedSlot=null),(a=(o=this.adsContext)==null?void 0:o.adBreakDone)==null||a.call(o,i),this.adsContext=null}),ye(this,"reinit",i=>{this.destroy(i),this.init()}),ye(this,"handleSlotReady",i=>{i.slot===this.rewardedSlot&&(this.readyEvent=i)}),ye(this,"handleSlotClosed",i=>{var o,a;if(this.adsContext&&i.slot===this.rewardedSlot){let s=this.rewardedPayload?"viewed":"dismissed";s==="viewed"?this.adsContext.adViewed():this.adsContext.adDismissed(),(a=(o=this.adsContext).afterAd)==null||a.call(o),this.withCommand(()=>{this.reinit(s)})}}),ye(this,"handleSlotGranted",i=>{this.adsContext&&i.slot===this.rewardedSlot&&(this.rewardedPayload=i.payload)}),ye(this,"handleSlotRenderEnded",i=>{i.slot===this.rewardedSlot&&i.isEmpty&&this.adsContext&&this.withCommand(()=>{this.reinit("frequencyCapped")})}),ye(this,"requestAds",i=>{this.withCommand(()=>{if(this.adsContext&&this.reinit("ignored"),this.rewardedSlot||this.init(),this.adsContext=i,!this.rewardedSlot){this.reinit("notReady");return}if(this.readyEvent)this.adsContext.beforeReward(()=>{var o,a,s;(a=(o=this.adsContext)==null?void 0:o.beforeAd)==null||a.call(o),(s=this.readyEvent)==null||s.makeRewardedVisible()});else{let o=a=>{a.slot===this.rewardedSlot&&this.adsContext&&(googletag.pubads().removeEventListener("rewardedSlotReady",o),this.readyEvent=a,this.adsContext.beforeReward(()=>{var s,u,d;(u=(s=this.adsContext)==null?void 0:s.beforeAd)==null||u.call(s),(d=this.readyEvent)==null||d.makeRewardedVisible()}))};googletag.pubads().addEventListener("rewardedSlotReady",o),window.setTimeout(()=>{this.readyEvent||(this.reinit("timeout"),googletag.pubads().removeEventListener("rewardedSlotReady",o))},500)}})}),this.adUnit=t,this.project=r,this.keyValue=n,xu(),this.withCommand(()=>{this.init()})}};function Se(e,t,r){return(t=Zm(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Zm(e){var t=ep(e,"string");return typeof t=="symbol"?t:t+""}function ep(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Wo=class{constructor(t,r,n){var i=this;Se(this,"adUnit",void 0),Se(this,"project",void 0),Se(this,"keyValue",void 0),Se(this,"adsContext",null),Se(this,"gamingInterstitialSlot",null),Se(this,"readyEvent",null),Se(this,"isRetrying",!1),Se(this,"withCommand",function(){googletag.cmd.push(...arguments)}),Se(this,"init",()=>{var o;this.gamingInterstitialSlot=googletag.defineOutOfPageSlot(this.adUnit,googletag.enums.OutOfPageFormat.GAME_MANUAL_INTERSTITIAL),this.gamingInterstitialSlot&&(this.gamingInterstitialSlot.addService(googletag.pubads()),googletag.pubads().addEventListener("gameManualInterstitialSlotReady",this.handleSlotReady),googletag.pubads().addEventListener("gameManualInterstitialSlotClosed",this.handleSlotClosed),this.keyValue&&(Object.keys(this.keyValue).forEach(a=>{var s;(s=this.gamingInterstitialSlot)==null||s.setTargeting(a,this.keyValue[a])}),Object.keys(this.keyValue).includes("project")||(o=this.gamingInterstitialSlot)==null||o.setTargeting("project",this.project)),googletag.display(this.gamingInterstitialSlot))}),Se(this,"destroy",function(o){var a,s;(!(arguments.length>1&&arguments[1]!==void 0)||arguments[1])&&((s=(a=i.adsContext)==null?void 0:a.onEnd)==null||s.call(a,o),i.adsContext=null),googletag.pubads().removeEventListener("gameManualInterstitialSlotReady",i.handleSlotReady),googletag.pubads().removeEventListener("gameManualInterstitialSlotClosed",i.handleSlotClosed),i.gamingInterstitialSlot&&(googletag.destroySlots([i.gamingInterstitialSlot]),i.gamingInterstitialSlot=null,i.readyEvent=null)}),Se(this,"reinit",function(o){let a=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;i.destroy(o,a),i.init()}),Se(this,"handleSlotReady",o=>{this.gamingInterstitialSlot===o.slot&&(this.readyEvent=o)}),Se(this,"handleSlotClosed",o=>{var a,s;this.adsContext&&this.gamingInterstitialSlot===o.slot&&((s=(a=this.adsContext).afterAd)==null||s.call(a),this.withCommand(()=>{this.reinit("viewed")}))}),Se(this,"requestAds",o=>{this.withCommand(()=>{var a,s,u;if(this.adsContext&&this.reinit("ignored"),this.gamingInterstitialSlot||this.init(),this.adsContext=o,!this.gamingInterstitialSlot){this.reinit("notReady");return}this.readyEvent?((a=o.beforeAd)==null||a.call(o),this.readyEvent.makeGameManualInterstitialVisible()):((u=(s=this.adsContext).onEnd)==null||u.call(s,"frequencyCapped"),this.adsContext=null,this.isRetrying||(this.isRetrying=!0,window.setTimeout(()=>{this.readyEvent||this.withCommand(()=>{this.reinit("frequencyCapped",!1)}),this.isRetrying=!1},31e3)))})}),xu(),this.adUnit=t,this.project=r,this.keyValue=n,this.withCommand(()=>{this.init()})}};function wt(e,t,r){return(t=tp(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function tp(e){var t=rp(e,"string");return typeof t=="symbol"?t:t+""}function rp(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var zo=class{constructor(t,r){wt(this,"name","GOOGLE_GPT"),wt(this,"context",void 0),wt(this,"contextInfo",void 0),wt(this,"initParams",void 0),wt(this,"rewardAdManager",void 0),wt(this,"interstitialManager",void 0),wt(this,"insertScript",()=>{let n="jolibox-google-gpt",i=document.getElementById(n);i||(i=window.document.createElement("script"),i.id=n,i.async=!0,i.src="https://securepubads.g.doubleclick.net/tag/js/gpt.js",i.crossOrigin="anonymous",document.head.appendChild(i))}),this.context=t,this.contextInfo=this.context.getContextInfo(),this.initParams=r,this.insertScript()}init(){return L(this,null,function*(){let t=this.contextInfo.testAdsMode?"/22639388115/rewarded_web_example":this.initParams.rewardedSlot,r=this.contextInfo.testAdsMode?"/6355419/Travel/Europe/France/Paris":this.initParams.interstitialSlot,n=`minigame-${this.contextInfo.runtimeType==="APP"?"app":"h5"}`;t&&(this.rewardAdManager=new Ko(t,n,this.initParams.keyValue)),r&&(this.interstitialManager=new Wo(r,n,this.initParams.keyValue))})}adConfig(t,r){}adBreak(t,r){var n,i,o;switch(t.type){case"preroll":{(n=t.adBreakDone)==null||n.call(t,{breakType:"preroll",breakFormat:"interstitial",breakStatus:"noAdPreloaded"});break}case"reward":{if(!this.rewardAdManager){(i=t.adBreakDone)==null||i.call(t,{breakName:t.name,breakType:t.type,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"});return}this.rewardAdManager.requestAds({beforeAd:t.beforeAd,afterAd:t.afterAd,adDismissed:t.adDismissed,adViewed:t.adViewed,beforeReward:t.beforeReward,adBreakDone:a=>{var s;(s=t.adBreakDone)==null||s.call(t,{breakName:t.name,breakType:t.type,breakFormat:"reward",breakStatus:a})}});break}default:{if(!this.interstitialManager){(o=t.adBreakDone)==null||o.call(t,{breakName:t.name,breakType:t.type,breakFormat:"interstitial",breakStatus:"noAdPreloaded"});return}this.interstitialManager.requestAds({beforeAd:t.beforeAd,afterAd:t.afterAd,onEnd:a=>{var s;(s=t.adBreakDone)==null||s.call(t,{breakName:t.name,breakType:t.type,breakFormat:"interstitial",breakStatus:a})}});break}}}};function ko(e,t,r){return(t=np(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function np(e){var t=ip(e,"string");return typeof t=="symbol"?t:t+""}function ip(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Yo=class{constructor(t){let r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"GAME";ko(this,"context",void 0),ko(this,"placement","GAME"),ko(this,"contextInfo",void 0),this.context=t,this.placement=r,this.contextInfo=this.context.getContextInfo()}getLocation(){let t=new URLSearchParams(window.location.search),r={};return t.forEach((n,i)=>{r[i]=n}),{name:this.placement==="GAME"?"GamePage":"DramaPage",params:r}}getDevice(){var t,r,n,i;return{platform:(t=this.contextInfo.platform)!=null?t:lu.WebSDK,os:this.contextInfo.osType+"_"+this.contextInfo.runtimeType,appVersion:"1.0.0",appId:(r=this.contextInfo.hostAppId)!=null?r:"1",model:(n=this.contextInfo.deviceModel)!=null?n:"UnknownModel",brand:(i=this.contextInfo.deviceBrand)!=null?i:"UnknownBrand",uuid:this.contextInfo.deviceId,jsSdkVersion:"1.0.0",extra:{}}}serialize(t,r){var n;let i={protocolVersion:"1.0.0",events:[{name:t,type:au.System,location:this.getLocation(),target:null,extra:r,timestamp:Date.now(),userId:(n=this.contextInfo.userId)!=null?n:null}],device:this.getDevice(),project:su.WebSDK};return _h(i)}};function Ie(e,t,r){return(t=op(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function op(e){var t=ap(e,"string");return typeof t=="symbol"?t:t+""}function ap(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Kn=class{constructor(t){Ie(this,"context",void 0),Ie(this,"adsTrackSerializer",void 0),Ie(this,"contextInfo",void 0),this.context=t,this.contextInfo=t.getContextInfo(),this.adsTrackSerializer=new Yo(this.context)}getRequestContextData(t){var r,n;this.contextInfo=this.context.getContextInfo();let{width:i,height:o}=this.context.getWindowInfo();return{report:JSON.stringify(this.adsTrackSerializer.serialize(t,{sessionId:this.contextInfo.sessionId,objectType:this.contextInfo.objectType,objectId:this.contextInfo.objectId,testAdsMode:this.contextInfo.testAdsMode})),osType:this.contextInfo.osType,runtimeType:this.contextInfo.runtimeType,sessionId:this.contextInfo.sessionId,deviceId:this.contextInfo.deviceId,adId:this.contextInfo.adId,deviceModel:(r=this.contextInfo.deviceModel)!=null?r:"UnknownModel",deviceBrand:(n=this.contextInfo.deviceBrand)!=null?n:"UnknownBrand",dimension:{width:i,height:o}}}getRequestBizParams(){return{objectType:this.contextInfo.objectType,objectId:this.contextInfo.objectId}}},Qo=class{constructor(t,r){var n=this;Ie(this,"context",void 0),Ie(this,"contextInfo",void 0),Ie(this,"requestContext",void 0),Ie(this,"pendingAFGAdsInfo",{REWARD:Promise.resolve(null),INTERSTITIAL:Promise.resolve(null)}),Ie(this,"pendingAFVAdsInfo",Promise.resolve(null)),Ie(this,"doFetchAdsInfo",i=>L(this,null,function*(){let o=i==="afv"?"AdsAFVSDKRequest":"AdsAFGSDKAdBreak",a=i==="afv"?"REWARD_INTERSTITIAL":i==="reward"?"REWARD":"INTERSTITIAL",s=i==="afv"?void 0:"cached",{data:u,code:d}=yield this.context.httpClient.post("/api/ads/info",{data:{contextData:this.requestContext.getRequestContextData(o),bizParams:this.requestContext.getRequestBizParams(),adsType:a,testAdsMode:this.contextInfo.testAdsMode,name:s}});return d==="SUCCESS"||d==="BYPASS_ADS"?{code:d,data:u}:null})),Ie(this,"cacheRewardInfo",()=>{this.pendingAFGAdsInfo.REWARD=this.doFetchAdsInfo("reward").catch(()=>null)}),Ie(this,"cacheInterstitialInfo",i=>{this.pendingAFGAdsInfo.INTERSTITIAL=this.doFetchAdsInfo(i).catch(()=>null)}),Ie(this,"cacheAFVInfo",()=>{this.pendingAFVAdsInfo=this.doFetchAdsInfo("afv").catch(()=>null)}),Ie(this,"cacheNextAFGAdsInfo",i=>L(this,null,function*(){i==="reward"?this.cacheRewardInfo():this.cacheInterstitialInfo(i)})),Ie(this,"getAFGAdsInfo",i=>L(this,null,function*(){let o=yield i==="reward"?this.pendingAFGAdsInfo.REWARD:this.pendingAFGAdsInfo.INTERSTITIAL;return this.cacheNextAFGAdsInfo(i),o})),Ie(this,"getAFVAdsInfo",function(){return L(this,arguments,function*(){if(!(arguments.length>0&&arguments[0]!==void 0)||arguments[0]){let i=yield n.pendingAFVAdsInfo;return n.cacheAFVInfo(),i}else return n.cacheAFVInfo(),yield n.pendingAFVAdsInfo})}),this.context=t,this.contextInfo=this.context.getContextInfo(),this.requestContext=new Kn(t),r!=null&&r.reward&&this.cacheRewardInfo(),r!=null&&r.interstitial&&this.cacheInterstitialInfo("start"),r!=null&&r.afv&&this.cacheAFVInfo()}};function Je(e,t,r){return(t=sp(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function sp(e){var t=lp(e,"string");return typeof t=="symbol"?t:t+""}function lp(e,t){if(typeof e!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var wr=class{constructor(t){if(Je(this,"context",void 0),Je(this,"contextInfo",void 0),Je(this,"providers",{}),Je(this,"channelPolicy",void 0),Je(this,"adsActionDetection",void 0),Je(this,"requestContext",void 0),Je(this,"adsRequest",void 0),Je(this,"initialized",!1),Je(this,"adsIsShowing",!1),Je(this,"lastAdBreak",void 0),Je(this,"initializedTimeStamp",Date.now()),t)this.context=t,this.channelPolicy=new Uo(this.context),this.adsActionDetection=new No(this.context),this.contextInfo=this.context.getContextInfo(),this.adsRequest=new Qo(t),this.requestContext=new Kn(t);else throw new Error("JoliboxAdsForGame requires a configuration object")}init(t){return L(this,null,function*(){window.adsbygoogle=window.adsbygoogle||[];let{data:r}=yield this.context.httpClient.post("/api/ads/init",{data:{contextData:this.requestContext.getRequestContextData("AdsAFGSDKInit"),bizParams:this.requestContext.getRequestBizParams(),testAdsMode:this.contextInfo.testAdsMode}});if((r==null?void 0:r.length)>0)for(let n of r)switch(n.provider){case"GOOGLE_GPT":{let i=new zo(this.context,n.params);yield i.init(),this.providers[n.provider]=i;break}case"ADSENSE":case"ADSENSE_ADMOB":{let i=new Mo(this.context,n.params);yield i.init(),this.providers[n.provider]=i;break}case"OKSPIN":{let i=new $o(this.context,n.params);yield i.init(),this.providers.OKSPIN=i;break}case"APPSROCKETS":{let i=new qo(this.context,n.params);yield i.init(),this.providers.APPSROCKETS=i;break}}this.adsRequest.cacheInterstitialInfo("start"),this.adsRequest.cacheRewardInfo(),this.initialized=!0})}adConfig(t){this.providers.ADSENSE?this.providers.ADSENSE.adConfig(t):window.adsbygoogle.push(t)}adBreak(t){return L(this,null,function*(){var r,n,i,o,a,s,u,d,y,h,p,f,b,I;let C=Date.now();if(C-this.initializedTimeStamp<3e3){(r=t.adBreakDone)==null||r.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"});return}if(this.lastAdBreak&&C-this.lastAdBreak<500){console.warn("[Jolibox SDK Ads] You can't call adBreak too frequently"),(n=t.adBreakDone)==null||n.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"frequencyCapped"});return}if(this.lastAdBreak=C,this.adsIsShowing){console.warn("[Jolibox SDK Ads] You can't call adBreak while ad is showing"),(i=t.adBreakDone)==null||i.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"frequencyCapped"});return}if(this.initialized||(yield this.init()),t.type!=="reward"&&!this.channelPolicy.shouldBypassCallingInterstitial()){(o=t.adBreakDone)==null||o.call(t,{breakType:t.type,breakName:"skipInterstitials",breakFormat:"interstitial",breakStatus:"viewed"});return}if(!this.context.checkNetwork()){(a=t.adBreakDone)==null||a.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"});return}try{let w=yield this.adsRequest.getAFGAdsInfo(t.type),k=w==null?void 0:w.data,D=w==null?void 0:w.code;if(D==="BYPASS_ADS"){switch(t.type){case"preroll":{(s=t.adBreakDone)==null||s.call(t,{breakType:t.type,breakFormat:"interstitial",breakStatus:"viewed"});break}case"reward":{t.beforeReward(()=>{var G,H,S,N;(G=t.beforeAd)==null||G.call(t),(H=t.adViewed)==null||H.call(t),(S=t.afterAd)==null||S.call(t),(N=t.adBreakDone)==null||N.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"viewed"})});break}default:{(u=t.beforeAd)==null||u.call(t),(d=t.afterAd)==null||d.call(t),(y=t.adBreakDone)==null||y.call(t,{breakType:t.type,breakName:t.name,breakFormat:"interstitial",breakStatus:"viewed"});break}}return}if(!k||D!=="SUCCESS"){(h=t.adBreakDone)==null||h.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"});return}else{let G=k.sort((T,M)=>T.seq-M.seq);if(G.length===0){(p=t.adBreakDone)==null||p.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"});return}let H=!0,S=null,N=new Do(this.context);for(this.adsActionDetection.adBreakIsShowing=!0;G.length>0;){let T=G.shift(),M=this.providers[T.provider];if(M){let[K,W]=yield N.callAdBreakAndContinue(M,t,T,ee=>{var he;this.adsIsShowing=ee,(he=this.context.eventEmitter)==null||he.emit("isAdShowing",ee)});H=K,S=W}else H=!0,S={breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"notReady"};if(!H)break}H&&S&&((f=t.adBreakDone)==null||f.call(t,S))}}catch(w){(b=t.adBreakDone)==null||b.call(t,{breakType:t.type,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"})}finally{this.adsIsShowing=!1,(I=this.context.eventEmitter)==null||I.emit("isAdShowing",!1),this.adsActionDetection.adBreakIsShowing=!1}})}adUnit(t){console.warn("This method has been deprecated. We will not support AdSense AdUnit in the future.")}};var Aw=jt`
167
+ `,bp=e=>{let{state:t}=e,{afterAd:n,adDismissed:r,adViewed:a,adBreakDone:i,adLoaded:o,adLinkClicked:s,visible:l,src:d}=t,[_,h]=Br(!1),p=w=>{var A,C,b,x;h(!1),l.value=!1,w==="dismiss"?(A=r.value)==null||A.call(r):w==="viewed"&&((C=a.value)==null||C.call(a)),(b=n.value)==null||b.call(n),(x=i.value)==null||x.call(i)},f=()=>{var w;(w=o.value)==null||w.call(o)};return Jt("appsrockets_ad_dismissed",()=>p("dismiss")),Jt("appsrockets_ad_rewarded",()=>p("viewed")),Jt("appsrockets_ad_completed",()=>p("viewed")),Jt("appsrockets_ad_skipped",()=>p("viewed")),Jt("appsrockets_ad_clicked",w=>{var A;return(A=s.value)==null?void 0:A.call(s,w)}),Jt("appsrockets_ad_loaded",()=>h(!0)),l.value?le("div",{className:wp,style:{display:_?"flex":"none"},children:l.value&&le("iframe",{src:d.value,onLoad:f,allowFullScreen:!0,allow:"autoplay",sandbox:"allow-scripts allow-same-origin allow-forms allow-modals allow-downloads allow-popups allow-popups-to-escape-sandbox allow-top-navigation-by-user-activation allow-top-navigation allow-top-navigation-by-user-activation allow-top-navigation-to-custom-protocols"})}):null};function ot(e,t,n){return(t=Ep(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ep(e){var t=Ip(e,"string");return typeof t=="symbol"?t:t+""}function Ip(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var yo=class{constructor(t,n){ot(this,"name","APPSROCKETS"),ot(this,"initialized",!1),ot(this,"initCompleter",null),ot(this,"context",void 0),ot(this,"adsOverlay",null),ot(this,"adsIsShowing",!1),ot(this,"lastUnDisplayedAdBreak",null),ot(this,"state",yp()),ot(this,"processUrl",r=>{var a;let i=this.context.getContextInfo(),o=new URL(r),s=new URLSearchParams(o.search);return s.has("joliSource")||s.set("joliSource",i.joliSource),s.get("osType")||s.set("osType",i.osType),s.get("runtimeType")||s.set("runtimeType",i.runtimeType),s.get("mode")||s.set("mode","AFG"),s.get("deviceId")||s.set("deviceId",i.deviceId),s.get("statusBarHeight")||s.set("statusBarHeight",((a=this.context.getWindowInfo().statusBarHeight)!=null?a:0).toString()),o.search=s.toString(),o.toString()}),this.context=t}init(){return I(this,null,function*(){var t;this.adsOverlay=document.createElement("div"),this.adsOverlay.setAttribute("data-placement-info","afg-appsrockets"),zi(le(bp,{state:this.state}),this.adsOverlay),document.documentElement.appendChild(this.adsOverlay),this.initialized=!0,(t=this.initCompleter)==null||t.call(this)})}adConfig(t){var n;if(this.initialized){(n=t.onReady)==null||n.call(t);return}this.initCompleter=()=>{var r;(r=t.onReady)==null||r.call(t)}}adBreak(t,n){var r,a,i,o,s,l,d,_;if(!this.initialized||!this.adsOverlay||!n.params.url){(r=t.adBreakDone)==null||r.call(t,{breakType:t.type,breakName:t.type==="preroll"?"":t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"notReady"});return}if(this.adsIsShowing){(a=t.adBreakDone)==null||a.call(t,{breakType:t.type,breakName:t.type==="preroll"?"":t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"frequencyCapped"});return}let h=p=>{var f,w;(w=(f=this.context).handleLinkClicked)==null||w.call(f,p)};switch(t.type){case"preroll":{(i=t.adBreakDone)==null||i.call(t,{breakType:t.type,breakName:"",breakFormat:"interstitial",breakStatus:"noAdPreloaded"});break}case"start":case"browse":case"next":case"pause":{(o=t.beforeAd)==null||o.call(t);let p=()=>{var A;this.adsIsShowing=!1,(A=t.afterAd)==null||A.call(t)},f=()=>{var A;this.adsIsShowing=!1,(A=t.adBreakDone)==null||A.call(t,{breakType:t.type,breakName:t.name,breakFormat:"interstitial",breakStatus:"viewed"})},w=()=>{var A;this.adsIsShowing=!1,(A=t.adBreakDone)==null||A.call(t,{breakType:t.type,breakName:t.name,breakFormat:"interstitial",breakStatus:"noAdPreloaded"})};Oe(()=>{this.adsIsShowing=!0,this.state.afterAd.value=p,this.state.adBreakDone.value=f,this.state.src.value=this.processUrl(n.params.url),this.state.adLinkClicked.value=h,this.state.adError.value=w,this.state.visible.value=!0});break}case"reward":{this.lastUnDisplayedAdBreak&&((l=(s=this.lastUnDisplayedAdBreak).adBreakDone)==null||l.call(s,{breakType:this.lastUnDisplayedAdBreak.type,breakName:this.lastUnDisplayedAdBreak.type==="preroll"?"":this.lastUnDisplayedAdBreak.name,breakFormat:this.lastUnDisplayedAdBreak.type==="reward"?"reward":"interstitial",breakStatus:"ignored"}),this.lastUnDisplayedAdBreak=null),(d=t.beforeAd)==null||d.call(t);let p=()=>{var D;this.adsIsShowing=!1,(D=t.afterAd)==null||D.call(t)},f={breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"ignored"},w=()=>{var D;this.adsIsShowing=!1,f.breakStatus="dismissed",(D=t.adDismissed)==null||D.call(t)},A=()=>{var D;this.adsIsShowing=!1,f.breakStatus="viewed",(D=t.adViewed)==null||D.call(t)},C=()=>{var D;this.adsIsShowing=!1,(D=t.adBreakDone)==null||D.call(t,f)},b=()=>{this.adsIsShowing=!1,f.breakStatus="noAdPreloaded"};Oe(()=>{this.state.afterAd.value=p,this.state.adDismissed.value=w,this.state.adViewed.value=A,this.state.adBreakDone.value=C,this.state.adLinkClicked.value=h,this.state.adError.value=b});let x=()=>{var D;if(this.lastUnDisplayedAdBreak=null,!this.adsOverlay){(D=t.adBreakDone)==null||D.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"notReady"});return}this.adsIsShowing=!0,Oe(()=>{this.state.src.value=this.processUrl(n.params.url),this.state.visible.value=!0})};this.lastUnDisplayedAdBreak=t,(_=t.beforeReward)==null||_.call(t,x);break}}}},tu=()=>{window.googletag=window.googletag||{cmd:[]},window.googletag.pubadsReady||window.googletag.cmd.push(()=>{window.googletag.enableServices()})};function ye(e,t,n){return(t=Ap(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ap(e){var t=Sp(e,"string");return typeof t=="symbol"?t:t+""}function Sp(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var wo=class{constructor(t,n,r){ye(this,"adUnit",void 0),ye(this,"project",void 0),ye(this,"keyValue",void 0),ye(this,"adsContext",null),ye(this,"rewardedSlot",null),ye(this,"rewardedPayload",null),ye(this,"readyEvent",null),ye(this,"withCommand",function(){googletag.cmd.push(...arguments)}),ye(this,"init",()=>{var a;this.rewardedSlot=googletag.defineOutOfPageSlot(this.adUnit,googletag.enums.OutOfPageFormat.REWARDED),this.rewardedSlot&&(this.rewardedSlot.addService(googletag.pubads()),googletag.pubads().addEventListener("rewardedSlotReady",this.handleSlotReady),googletag.pubads().addEventListener("rewardedSlotClosed",this.handleSlotClosed),googletag.pubads().addEventListener("rewardedSlotGranted",this.handleSlotGranted),googletag.pubads().addEventListener("slotRenderEnded",this.handleSlotRenderEnded),this.keyValue&&(Object.keys(this.keyValue).forEach(i=>{var o;(o=this.rewardedSlot)==null||o.setTargeting(i,this.keyValue[i])}),Object.keys(this.keyValue).includes("project")||(a=this.rewardedSlot)==null||a.setTargeting("project",this.project)),googletag.display(this.rewardedSlot))}),ye(this,"destroy",a=>{var i,o;this.rewardedPayload=null,this.readyEvent=null,googletag.pubads().removeEventListener("rewardedSlotReady",this.handleSlotReady),googletag.pubads().removeEventListener("rewardedSlotClosed",this.handleSlotClosed),googletag.pubads().removeEventListener("rewardedSlotGranted",this.handleSlotGranted),googletag.pubads().removeEventListener("slotRenderEnded",this.handleSlotRenderEnded),this.rewardedSlot&&(googletag.destroySlots([this.rewardedSlot]),this.rewardedSlot=null),(o=(i=this.adsContext)==null?void 0:i.adBreakDone)==null||o.call(i,a),this.adsContext=null}),ye(this,"reinit",a=>{this.destroy(a),this.init()}),ye(this,"handleSlotReady",a=>{a.slot===this.rewardedSlot&&(this.readyEvent=a)}),ye(this,"handleSlotClosed",a=>{var i,o;if(this.adsContext&&a.slot===this.rewardedSlot){let s=this.rewardedPayload?"viewed":"dismissed";s==="viewed"?this.adsContext.adViewed():this.adsContext.adDismissed(),(o=(i=this.adsContext).afterAd)==null||o.call(i),this.withCommand(()=>{this.reinit(s)})}}),ye(this,"handleSlotGranted",a=>{this.adsContext&&a.slot===this.rewardedSlot&&(this.rewardedPayload=a.payload)}),ye(this,"handleSlotRenderEnded",a=>{a.slot===this.rewardedSlot&&a.isEmpty&&this.adsContext&&this.withCommand(()=>{this.reinit("frequencyCapped")})}),ye(this,"requestAds",a=>{this.withCommand(()=>{if(this.adsContext&&this.reinit("ignored"),this.rewardedSlot||this.init(),this.adsContext=a,!this.rewardedSlot){this.reinit("notReady");return}if(this.readyEvent)this.adsContext.beforeReward(()=>{var i,o,s;(o=(i=this.adsContext)==null?void 0:i.beforeAd)==null||o.call(i),(s=this.readyEvent)==null||s.makeRewardedVisible()});else{let i=o=>{o.slot===this.rewardedSlot&&this.adsContext&&(googletag.pubads().removeEventListener("rewardedSlotReady",i),this.readyEvent=o,this.adsContext.beforeReward(()=>{var s,l,d;(l=(s=this.adsContext)==null?void 0:s.beforeAd)==null||l.call(s),(d=this.readyEvent)==null||d.makeRewardedVisible()}))};googletag.pubads().addEventListener("rewardedSlotReady",i),window.setTimeout(()=>{this.readyEvent||(this.reinit("timeout"),googletag.pubads().removeEventListener("rewardedSlotReady",i))},500)}})}),this.adUnit=t,this.project=n,this.keyValue=r,tu(),this.withCommand(()=>{this.init()})}};function Re(e,t,n){return(t=Cp(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Cp(e){var t=Rp(e,"string");return typeof t=="symbol"?t:t+""}function Rp(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var bo=class{constructor(t,n,r){var a=this;Re(this,"adUnit",void 0),Re(this,"project",void 0),Re(this,"keyValue",void 0),Re(this,"adsContext",null),Re(this,"gamingInterstitialSlot",null),Re(this,"readyEvent",null),Re(this,"isRetrying",!1),Re(this,"withCommand",function(){googletag.cmd.push(...arguments)}),Re(this,"init",()=>{var i;this.gamingInterstitialSlot=googletag.defineOutOfPageSlot(this.adUnit,googletag.enums.OutOfPageFormat.GAME_MANUAL_INTERSTITIAL),this.gamingInterstitialSlot&&(this.gamingInterstitialSlot.addService(googletag.pubads()),googletag.pubads().addEventListener("gameManualInterstitialSlotReady",this.handleSlotReady),googletag.pubads().addEventListener("gameManualInterstitialSlotClosed",this.handleSlotClosed),this.keyValue&&(Object.keys(this.keyValue).forEach(o=>{var s;(s=this.gamingInterstitialSlot)==null||s.setTargeting(o,this.keyValue[o])}),Object.keys(this.keyValue).includes("project")||(i=this.gamingInterstitialSlot)==null||i.setTargeting("project",this.project)),googletag.display(this.gamingInterstitialSlot))}),Re(this,"destroy",function(i){var o,s;(!(arguments.length>1&&arguments[1]!==void 0)||arguments[1])&&((s=(o=a.adsContext)==null?void 0:o.onEnd)==null||s.call(o,i),a.adsContext=null),googletag.pubads().removeEventListener("gameManualInterstitialSlotReady",a.handleSlotReady),googletag.pubads().removeEventListener("gameManualInterstitialSlotClosed",a.handleSlotClosed),a.gamingInterstitialSlot&&(googletag.destroySlots([a.gamingInterstitialSlot]),a.gamingInterstitialSlot=null,a.readyEvent=null)}),Re(this,"reinit",function(i){let o=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0;a.destroy(i,o),a.init()}),Re(this,"handleSlotReady",i=>{this.gamingInterstitialSlot===i.slot&&(this.readyEvent=i)}),Re(this,"handleSlotClosed",i=>{var o,s;this.adsContext&&this.gamingInterstitialSlot===i.slot&&((s=(o=this.adsContext).afterAd)==null||s.call(o),this.withCommand(()=>{this.reinit("viewed")}))}),Re(this,"requestAds",i=>{this.withCommand(()=>{var o,s,l;if(this.adsContext&&this.reinit("ignored"),this.gamingInterstitialSlot||this.init(),this.adsContext=i,!this.gamingInterstitialSlot){this.reinit("notReady");return}this.readyEvent?((o=i.beforeAd)==null||o.call(i),this.readyEvent.makeGameManualInterstitialVisible()):((l=(s=this.adsContext).onEnd)==null||l.call(s,"frequencyCapped"),this.adsContext=null,this.isRetrying||(this.isRetrying=!0,window.setTimeout(()=>{this.readyEvent||this.withCommand(()=>{this.reinit("frequencyCapped",!1)}),this.isRetrying=!1},31e3)))})}),tu(),this.adUnit=t,this.project=n,this.keyValue=r,this.withCommand(()=>{this.init()})}};function Et(e,t,n){return(t=Op(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Op(e){var t=kp(e,"string");return typeof t=="symbol"?t:t+""}function kp(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Eo=class{constructor(t,n){Et(this,"name","GOOGLE_GPT"),Et(this,"context",void 0),Et(this,"contextInfo",void 0),Et(this,"initParams",void 0),Et(this,"rewardAdManager",void 0),Et(this,"interstitialManager",void 0),Et(this,"insertScript",()=>{let r="jolibox-google-gpt",a=document.getElementById(r);a||(a=window.document.createElement("script"),a.id=r,a.async=!0,a.src="https://securepubads.g.doubleclick.net/tag/js/gpt.js",a.crossOrigin="anonymous",document.head.appendChild(a))}),this.context=t,this.contextInfo=this.context.getContextInfo(),this.initParams=n,this.insertScript()}init(){return I(this,null,function*(){let t=this.contextInfo.testAdsMode?"/22639388115/rewarded_web_example":this.initParams.rewardedSlot,n=this.contextInfo.testAdsMode?"/6355419/Travel/Europe/France/Paris":this.initParams.interstitialSlot,r=`minigame-${this.contextInfo.runtimeType==="APP"?"app":"h5"}`;t&&(this.rewardAdManager=new wo(t,r,this.initParams.keyValue)),n&&(this.interstitialManager=new bo(n,r,this.initParams.keyValue))})}adConfig(t,n){}adBreak(t,n){var r,a,i;switch(t.type){case"preroll":{(r=t.adBreakDone)==null||r.call(t,{breakType:"preroll",breakFormat:"interstitial",breakStatus:"noAdPreloaded"});break}case"reward":{if(!this.rewardAdManager){(a=t.adBreakDone)==null||a.call(t,{breakName:t.name,breakType:t.type,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"});return}this.rewardAdManager.requestAds({beforeAd:t.beforeAd,afterAd:t.afterAd,adDismissed:t.adDismissed,adViewed:t.adViewed,beforeReward:t.beforeReward,adBreakDone:o=>{var s;(s=t.adBreakDone)==null||s.call(t,{breakName:t.name,breakType:t.type,breakFormat:"reward",breakStatus:o})}});break}default:{if(!this.interstitialManager){(i=t.adBreakDone)==null||i.call(t,{breakName:t.name,breakType:t.type,breakFormat:"interstitial",breakStatus:"noAdPreloaded"});return}this.interstitialManager.requestAds({beforeAd:t.beforeAd,afterAd:t.afterAd,onEnd:o=>{var s;(s=t.adBreakDone)==null||s.call(t,{breakName:t.name,breakType:t.type,breakFormat:"interstitial",breakStatus:o})}});break}}}};function to(e,t,n){return(t=Tp(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Tp(e){var t=xp(e,"string");return typeof t=="symbol"?t:t+""}function xp(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Io=class{constructor(t){let n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"GAME";to(this,"context",void 0),to(this,"placement","GAME"),to(this,"contextInfo",void 0),this.context=t,this.placement=n,this.contextInfo=this.context.getContextInfo()}getLocation(){let t=new URLSearchParams(window.location.search),n={};return t.forEach((r,a)=>{n[a]=r}),{name:this.placement==="GAME"?"GamePage":"DramaPage",params:n}}getDevice(){var t,n,r,a;return{platform:(t=this.contextInfo.platform)!=null?t:Pc.WebSDK,os:this.contextInfo.osType+"_"+this.contextInfo.runtimeType,appVersion:"1.0.0",appId:(n=this.contextInfo.hostAppId)!=null?n:"1",model:(r=this.contextInfo.deviceModel)!=null?r:"UnknownModel",brand:(a=this.contextInfo.deviceBrand)!=null?a:"UnknownBrand",uuid:this.contextInfo.deviceId,jsSdkVersion:"1.0.0",extra:{}}}serialize(t,n){var r;let a={protocolVersion:"1.0.0",events:[{name:t,type:Tc.System,location:this.getLocation(),target:null,extra:n,timestamp:Date.now(),userId:(r=this.contextInfo.userId)!=null?r:null}],device:this.getDevice(),project:xc.WebSDK};return jh(a)}};function Ae(e,t,n){return(t=Pp(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Pp(e){var t=Lp(e,"string");return typeof t=="symbol"?t:t+""}function Lp(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Zr=class{constructor(t){Ae(this,"context",void 0),Ae(this,"adsTrackSerializer",void 0),Ae(this,"contextInfo",void 0),this.context=t,this.contextInfo=t.getContextInfo(),this.adsTrackSerializer=new Io(this.context)}getRequestContextData(t){var n,r;this.contextInfo=this.context.getContextInfo();let{width:a,height:i}=this.context.getWindowInfo();return{report:JSON.stringify(this.adsTrackSerializer.serialize(t,{sessionId:this.contextInfo.sessionId,objectType:this.contextInfo.objectType,objectId:this.contextInfo.objectId,testAdsMode:this.contextInfo.testAdsMode})),osType:this.contextInfo.osType,runtimeType:this.contextInfo.runtimeType,sessionId:this.contextInfo.sessionId,deviceId:this.contextInfo.deviceId,adId:this.contextInfo.adId,deviceModel:(n=this.contextInfo.deviceModel)!=null?n:"UnknownModel",deviceBrand:(r=this.contextInfo.deviceBrand)!=null?r:"UnknownBrand",dimension:{width:a,height:i}}}getRequestBizParams(){return{objectType:this.contextInfo.objectType,objectId:this.contextInfo.objectId}}},Ao=class{constructor(t,n){var r=this;Ae(this,"context",void 0),Ae(this,"contextInfo",void 0),Ae(this,"requestContext",void 0),Ae(this,"pendingAFGAdsInfo",{REWARD:Promise.resolve(null),INTERSTITIAL:Promise.resolve(null)}),Ae(this,"pendingAFVAdsInfo",Promise.resolve(null)),Ae(this,"doFetchAdsInfo",a=>I(this,null,function*(){let i=a==="afv"?"AdsAFVSDKRequest":"AdsAFGSDKAdBreak",o=a==="afv"?"REWARD_INTERSTITIAL":a==="reward"?"REWARD":"INTERSTITIAL",s=a==="afv"?void 0:"cached",{data:l,code:d}=yield this.context.httpClient.post("/api/ads/info",{data:{contextData:this.requestContext.getRequestContextData(i),bizParams:this.requestContext.getRequestBizParams(),adsType:o,testAdsMode:this.contextInfo.testAdsMode,name:s}});return d==="SUCCESS"||d==="BYPASS_ADS"?{code:d,data:l}:null})),Ae(this,"cacheRewardInfo",()=>{this.pendingAFGAdsInfo.REWARD=this.doFetchAdsInfo("reward").catch(()=>null)}),Ae(this,"cacheInterstitialInfo",a=>{this.pendingAFGAdsInfo.INTERSTITIAL=this.doFetchAdsInfo(a).catch(()=>null)}),Ae(this,"cacheAFVInfo",()=>{this.pendingAFVAdsInfo=this.doFetchAdsInfo("afv").catch(()=>null)}),Ae(this,"cacheNextAFGAdsInfo",a=>I(this,null,function*(){a==="reward"?this.cacheRewardInfo():this.cacheInterstitialInfo(a)})),Ae(this,"getAFGAdsInfo",a=>I(this,null,function*(){let i=yield a==="reward"?this.pendingAFGAdsInfo.REWARD:this.pendingAFGAdsInfo.INTERSTITIAL;return this.cacheNextAFGAdsInfo(a),i})),Ae(this,"getAFVAdsInfo",function(){return I(this,arguments,function*(){if(!(arguments.length>0&&arguments[0]!==void 0)||arguments[0]){let a=yield r.pendingAFVAdsInfo;return r.cacheAFVInfo(),a}else return r.cacheAFVInfo(),yield r.pendingAFVAdsInfo})}),this.context=t,this.contextInfo=this.context.getContextInfo(),this.requestContext=new Zr(t),n!=null&&n.reward&&this.cacheRewardInfo(),n!=null&&n.interstitial&&this.cacheInterstitialInfo("start"),n!=null&&n.afv&&this.cacheAFVInfo()}};function Fe(e,t,n){return(t=Dp(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Dp(e){var t=Np(e,"string");return typeof t=="symbol"?t:t+""}function Np(e,t){if(typeof e!="object"||!e)return e;var n=e[Symbol.toPrimitive];if(n!==void 0){var r=n.call(e,t);if(typeof r!="object")return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var Sn=class{constructor(t){if(Fe(this,"context",void 0),Fe(this,"contextInfo",void 0),Fe(this,"providers",{}),Fe(this,"channelPolicy",void 0),Fe(this,"adsActionDetection",void 0),Fe(this,"requestContext",void 0),Fe(this,"adsRequest",void 0),Fe(this,"initialized",!1),Fe(this,"adsIsShowing",!1),Fe(this,"lastAdBreak",void 0),Fe(this,"initializedTimeStamp",Date.now()),t)this.context=t,this.channelPolicy=new lo(this.context),this.adsActionDetection=new so(this.context),this.contextInfo=this.context.getContextInfo(),this.adsRequest=new Ao(t),this.requestContext=new Zr(t);else throw new Error("JoliboxAdsForGame requires a configuration object")}init(t){return I(this,null,function*(){window.adsbygoogle=window.adsbygoogle||[];let{data:n}=yield this.context.httpClient.post("/api/ads/init",{data:{contextData:this.requestContext.getRequestContextData("AdsAFGSDKInit"),bizParams:this.requestContext.getRequestBizParams(),testAdsMode:this.contextInfo.testAdsMode}});if((n==null?void 0:n.length)>0)for(let r of n)switch(r.provider){case"GOOGLE_GPT":{let a=new Eo(this.context,r.params);yield a.init(),this.providers[r.provider]=a;break}case"ADSENSE":case"ADSENSE_ADMOB":{let a=new co(this.context,r.params);yield a.init(),this.providers[r.provider]=a;break}case"OKSPIN":{let a=new _o(this.context,r.params);yield a.init(),this.providers.OKSPIN=a;break}case"APPSROCKETS":{let a=new yo(this.context,r.params);yield a.init(),this.providers.APPSROCKETS=a;break}}this.adsRequest.cacheInterstitialInfo("start"),this.adsRequest.cacheRewardInfo(),this.initialized=!0})}adConfig(t){this.providers.ADSENSE?this.providers.ADSENSE.adConfig(t):window.adsbygoogle.push(t)}adBreak(t){return I(this,null,function*(){var n,r,a,i,o,s,l,d,_,h,p,f,w,A;let C=Date.now();if(C-this.initializedTimeStamp<3e3){(n=t.adBreakDone)==null||n.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"});return}if(this.lastAdBreak&&C-this.lastAdBreak<500){console.warn("[Jolibox SDK Ads] You can't call adBreak too frequently"),(r=t.adBreakDone)==null||r.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"frequencyCapped"});return}if(this.lastAdBreak=C,this.adsIsShowing){console.warn("[Jolibox SDK Ads] You can't call adBreak while ad is showing"),(a=t.adBreakDone)==null||a.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"frequencyCapped"});return}if(this.initialized||(yield this.init()),t.type!=="reward"&&!this.channelPolicy.shouldBypassCallingInterstitial()){(i=t.adBreakDone)==null||i.call(t,{breakType:t.type,breakName:"skipInterstitials",breakFormat:"interstitial",breakStatus:"viewed"});return}if(!this.context.checkNetwork()){(o=t.adBreakDone)==null||o.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"});return}try{let b=yield this.adsRequest.getAFGAdsInfo(t.type),x=b==null?void 0:b.data,D=b==null?void 0:b.code;if(D==="BYPASS_ADS"){switch(t.type){case"preroll":{(s=t.adBreakDone)==null||s.call(t,{breakType:t.type,breakFormat:"interstitial",breakStatus:"viewed"});break}case"reward":{t.beforeReward(()=>{var H,j,R,N;(H=t.beforeAd)==null||H.call(t),(j=t.adViewed)==null||j.call(t),(R=t.afterAd)==null||R.call(t),(N=t.adBreakDone)==null||N.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"viewed"})});break}default:{(l=t.beforeAd)==null||l.call(t),(d=t.afterAd)==null||d.call(t),(_=t.adBreakDone)==null||_.call(t,{breakType:t.type,breakName:t.name,breakFormat:"interstitial",breakStatus:"viewed"});break}}return}if(!x||D!=="SUCCESS"){(h=t.adBreakDone)==null||h.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"});return}else{let H=x.sort((T,B)=>T.seq-B.seq);if(H.length===0){(p=t.adBreakDone)==null||p.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"});return}let j=!0,R=null,N=new oo(this.context);for(this.adsActionDetection.adBreakIsShowing=!0;H.length>0;){let T=H.shift(),B=this.providers[T.provider];if(B){let[K,z]=yield N.callAdBreakAndContinue(B,t,T,te=>{var me;this.adsIsShowing=te,(me=this.context.eventEmitter)==null||me.emit("isAdShowing",te)});j=K,R=z}else j=!0,R={breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"notReady"};if(!j)break}j&&R&&((f=t.adBreakDone)==null||f.call(t,R))}}catch(b){(w=t.adBreakDone)==null||w.call(t,{breakType:t.type,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"})}finally{this.adsIsShowing=!1,(A=this.context.eventEmitter)==null||A.emit("isAdShowing",!1),this.adsActionDetection.adBreakIsShowing=!1}})}adUnit(t){console.warn("This method has been deprecated. We will not support AdSense AdUnit in the future.")}};var tE=$t`
168
168
  ${be}
169
169
  position: fixed;
170
170
  left: 0;
@@ -175,10 +175,6 @@ or `);this.errors.push(o)}return n}},on=class extends ce{constructor(...t){super
175
175
  width: 100vw;
176
176
  height: 100vh;
177
177
 
178
- &[data-visible='true'] {
179
- display: block;
180
- }
181
-
182
178
  .ads-wrapper {
183
179
  ${be}
184
180
  position: relative;
@@ -213,7 +209,7 @@ or `);this.errors.push(o)}return n}},on=class extends ce{constructor(...t){super
213
209
  cursor: pointer;
214
210
  }
215
211
  }
216
- `;me();var ab=pi(Pu());var Ar=class{constructor(t){this.ads=t}getAdsInstance(){return this.ads}init(){}adConfig(t){var r,n;(n=(r=this.ads)==null?void 0:r.adConfig)==null||n.call(r,t)}adBreak(t){this.ads.adBreak(t)}adUnit(){}};var Sr=class e{constructor(){this.callbacksId=0,this.callbackMap=new Map,this.initOnMessage()}static getInstance(){return e.instance||(e.instance=new e),e.instance}initOnMessage(){window.addEventListener("message",t=>{var r,n,i,o,a,s,u,d,y;if(console.log(`HuaweiQuickAdsHandler,event => ${t}`),t.origin==window.location.origin&&t.data&&t.data.type==null){let h=JSON.parse(t.data);switch(console.log(`HuaweiQuickAdsHandler type => ${h.type}`),h.type){case"huawei_quick_ads_on_message_init":console.log("HuaweiQuickAdsHandler window.addEventListener init",h);break;case"huawei_quick_ads_on_message_ad_config":{let p=h.callbackId;if(p){let f=this.callbackMap.get(p);(r=f==null?void 0:f.onReady)==null||r.call(f)}console.log("HuaweiQuickAdsHandler window.addEventListener adConfig",h)}break;case"huawei_quick_ads_on_message_ad_break":{let p=h.callbackId;if(p){let f=this.callbackMap.get(p),b="noAdPreloaded",I=!1;switch(h.adsRes){case"viewed":b="viewed",(n=f==null?void 0:f.adViewed)==null||n.call(f),I=!1;break;case"dismissed":b="dismissed",(i=f==null?void 0:f.adDismissed)==null||i.call(f),I=!1;break;case"notReady":case"timeout":case"error":case"noAdPreloaded":case"frequencyCapped":case"ignored":case"other":b=h.adsRes,I=!0;break;case"breakDone":b=h.params,I=!0;break;case"beforeReward":(o=f==null?void 0:f.beforeReward)==null||o.call(f,()=>{window.system.postMessage(JSON.stringify({type:"huawei_quick_ads_ad_operation"})),console.log("HuaweiQuickAdsHandler beforeReward postMessage AD_OPERATION")}),I=!1;break;case"beforeAd":(a=f==null?void 0:f.beforeAd)==null||a.call(f),I=!1;break;case"afterAd":(s=f==null?void 0:f.afterAd)==null||s.call(f),I=!1;break}I&&((y=f==null?void 0:f.adBreakDone)==null||y.call(f,{breakType:(u=f.breakType)!=null?u:"",breakName:f.breakName,breakFormat:(d=f.breakFormat)!=null?d:"interstitial",breakStatus:b}))}console.log("HuaweiQuickAdsHandler window.addEventListener adBreak",h)}break;case"huawei_quick_ads_on_message_ad_unit":console.log("HuaweiQuickAdsHandler window.addEventListener adUnit",h);break;default:break}}})}getAdsInstance(){return e.getInstance()}init(t){try{this.sendPostMessage("huawei_quick_ads_init",void 0,t)}catch(r){console.error("init failed",r)}}adConfig(t){try{let r;t.onReady&&(r=++this.callbacksId,this.callbackMap.set(r,{onReady:t.onReady})),this.sendPostMessage("huawei_quick_ads_ad_config",r,t)}catch(r){console.error("adConfig failed",r)}}adBreak(t){var r;try{let n=++this.callbacksId,i={};i.breakType=t.type,t.type!=="preroll"&&t.name&&(i.breakName=t.name),i.breakFormat=t.type==="reward"?"reward":"interstitial",t.adBreakDone&&(i.adBreakDone=t.adBreakDone),t.type!=="preroll"&&t.beforeAd&&(i.beforeAd=t.beforeAd),t.type!=="preroll"&&t.afterAd&&(i.afterAd=t.afterAd),t.type==="reward"&&t.beforeReward&&(i.beforeReward=t.beforeReward),t.type==="reward"&&t.adDismissed&&(i.adDismissed=t.adDismissed),t.type==="reward"&&t.adViewed&&(i.adViewed=t.adViewed),this.callbackMap.set(n,i),this.sendPostMessage("huawei_quick_ads_ad_break",n,t)}catch(n){(r=t.adBreakDone)==null||r.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"})}}adUnit(t){try{this.sendPostMessage("huawei_quick_ads_ad_unit",void 0,t)}catch(r){console.error("adUnit failed",r)}}sendPostMessage(t,r,n){var i;try{if(!((i=window.system)!=null&&i.postMessage))throw new Error("window.system.postMessage is not available");let o=Y(Y({type:t},r!==void 0&&{callbackId:r}),n!==void 0&&{data:n});window.system.postMessage(JSON.stringify(o))}catch(o){throw console.error("sendPostMessage failed",o),o}}};var Cr=class e{constructor(){}static getInstance(){return e.instance||(e.instance=new e),e.instance}getAdsInstance(){return e.getInstance()}init(){}adConfig(t){t.onReady&&t.onReady()}adBreak(t){var r;try{t.type==="reward"?window.gdsdk.preloadAd("rewarded").then(()=>{var n;(n=t.beforeReward)==null||n.call(t,()=>{t.beforeAd&&t.beforeAd(),window.gdsdk.showAd("rewarded").then(i=>{var o,a,s,u,d;(o=i==null?void 0:i.args)!=null&&o.success?(a=t.adViewed)==null||a.call(t):(s=t.adDismissed)==null||s.call(t),t.afterAd&&t.afterAd(),(d=t.adBreakDone)==null||d.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:(u=i==null?void 0:i.args)!=null&&u.success?"viewed":"dismissed"})}).catch(i=>{var o;console.log("showReward error => ",i),(o=t.adBreakDone)==null||o.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"noAdPreloaded"})})})}).catch(n=>{var i;console.log("preloadAd error => ",n),(i=t.adBreakDone)==null||i.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"noAdPreloaded"})}):(t.type!=="preroll"&&t.beforeAd&&t.beforeAd(),window.gdsdk.showAd("interstitial").then(()=>{var n;t.type!=="preroll"&&t.afterAd&&t.afterAd(),(n=t.adBreakDone)==null||n.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:"interstitial",breakStatus:"viewed"})}))}catch(n){console.log("adBreak error => ",n),(r=t.adBreakDone)==null||r.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"error"})}}adUnit(){}};var bt=class{constructor(t,r){this.ads=t;this.httpClient=r}getAdsInstance(){return this.ads}init(t){this.ads.init(t)}adConfig(t){this.ads.adConfig(t)}adBreak(t){return L(this,null,function*(){var r;if(t.type==="reward")try{let n=yield Ye.getRewardsTypes(this.httpClient);yield Ye.handleReward(n,t)}catch(n){console.info("handleReward failed",n),(r=t.adBreakDone)==null||r.call(t,{breakType:t.type,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"})}else this.ads.adBreak(t)})}adUnit(t){this.ads.adUnit(t)}};var Or=class e extends bt{constructor(t,r){super(t,r),this.startTimes=Date.now()}adBreak(t){return L(this,null,function*(){var r,n;if(t.type!=="reward"){if(t.type==="preroll"){(r=t.adBreakDone)==null||r.call(t,{breakType:t.type,breakFormat:"interstitial",breakStatus:"noAdPreloaded"});return}let i=Date.now();if(console.log("FunmaxAdsHandler time => ",i-this.startTimes),i-this.startTimes<4e4){(n=t.adBreakDone)==null||n.call(t,{breakType:t.type,breakFormat:"interstitial",breakStatus:"noAdPreloaded"});return}}La(e.prototype,this,"adBreak").call(this,t)})}};var na=class{constructor(t){this.cacheHandler=null;this.context=t}createAdsHandler(t){if(this.cacheHandler)return this.cacheHandler;switch(t){case"dlightek":{this.cacheHandler=new Ar(window.h5sdk);break}case"huaweiQuick":{this.cacheHandler=Sr.getInstance();break}case"gamedistribution":{this.cacheHandler=Cr.getInstance();break}case"funmax":{let r=new wr(this.context);this.cacheHandler=new Or(r,Rr);break}default:{let r=new wr(this.context);this.cacheHandler=new bt(r,Rr);break}}return this.cacheHandler}getAdsHandler(t){return this.createAdsHandler(t)}},Xn=_e(),Du=new Fe,Rr=Be.create(),up={httpClient:Rr,checkNetwork:()=>Be.getNetworkStatus(),track:xe,eventEmitter:Du,getWindowInfo:()=>({width:window.innerWidth*window.devicePixelRatio,height:window.innerHeight*window.devicePixelRatio,statusBarHeight:0}),handleLinkClicked:e=>{window.open(e,"_blank")},getContextInfo:()=>{var e,t,r,n,i,o,a,s,u;return{hostAppId:(t=(e=P.hostInfo)==null?void 0:e.aid)!=null?t:"1",deviceId:(r=P.deviceInfo.did)!=null?r:"",adId:(n=P.deviceInfo.adId)!=null?n:"",sessionId:(i=P.sessionId)!=null?i:"",userId:(a=(o=P.hostUserInfo)==null?void 0:o.uid)!=null?a:"",objectType:"GAME",objectId:P.mpId,testAdsMode:P.testAdsMode,channel:(s=P.joliSource)!=null?s:"",deviceBrand:P.deviceInfo.brand,deviceModel:P.deviceInfo.model,osType:Ee.isAndroid?"ANDROID":Ee.isiOS?"IOS":"PC",runtimeType:"WEB",platform:1e3,joliSource:(u=P.joliSource)!=null?u:""}}},Nu=e=>{pt("JOLIBOX_CUSTOM_REWARDS_EVENT",{JOLI_COIN:e}),xe("jolicoin_unlock_success",{quantity:e.quantity})},cp=new na(up),kr=cp.getAdsHandler(P.sdkEnvironment);Ye.registerRewardHandler("ADS",Bs(kr.getAdsInstance()));Ye.registerRewardHandler("JOLI_COIN",Gs(Rr,{onUnlockSuccess:Nu.bind(void 0)}));Ye.registerRewardHandler("JOLI_COIN_ONLY",js(Rr,{onUnlockSuccess:Nu.bind(void 0)}));Du.on("isAdShowing",e=>{pt("JOLIBOX_ADS_EVENT",{isAdShowing:e})});Xn.registerCommand("AdsSDK.init",e=>{kr.init(e)});Xn.registerCommand("AdsSDK.adConfig",e=>{kr.adConfig(e)});Xn.registerCommand("AdsSDK.adBreak",e=>{kr.adBreak(e)});Xn.registerCommand("AdsSDK.adUnit",e=>{kr.adUnit(e)});j();ot();var Uu=_e();Uu.registerCommand("RuntimeSDK.loadFinishedEvent",()=>{let e=performance.now();xe("loadFinished",{duration:e})});Uu.registerCommand("RuntimeSDK.loadProgressEvent",e=>{console.log("RuntimeSDK.loadProgressEvent",e)});j();ot();var ju=-1,ei=function(e){addEventListener("pageshow",function(t){t.persisted&&(ju=t.timeStamp,e(t))},!0)},oa=function(){var e=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e},ti=function(){var e=oa();return e&&e.activationStart||0},qt=function(e,t){var r=oa(),n="navigate";return ju>=0?n="back-forward-cache":r&&(document.prerendering||ti()>0?n="prerender":document.wasDiscarded?n="restore":r.type&&(n=r.type.replace(/_/g,"-"))),{name:e,value:t===void 0?-1:t,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:n}},Hu=function(e,t,r){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){var n=new PerformanceObserver(function(i){Promise.resolve().then(function(){t(i.getEntries())})});return n.observe(Object.assign({type:e,buffered:!0},r||{})),n}}catch(i){}},Kt=function(e,t,r,n){var i,o;return function(a){t.value>=0&&(a||n)&&((o=t.value-(i||0))||i===void 0)&&(i=t.value,t.delta=o,t.rating=function(s,u){return s>u[1]?"poor":s>u[0]?"needs-improvement":"good"}(t.value,r),e(t))}},Vu=function(e){requestAnimationFrame(function(){return requestAnimationFrame(function(){return e()})})},$u=function(e){document.addEventListener("visibilitychange",function(){document.visibilityState==="hidden"&&e()})},qu=function(e){var t=!1;return function(){t||(e(),t=!0)}},$t=-1,Mu=function(){return document.visibilityState!=="hidden"||document.prerendering?1/0:0},Zn=function(e){document.visibilityState==="hidden"&&$t>-1&&($t=e.type==="visibilitychange"?e.timeStamp:0,dp())},Bu=function(){addEventListener("visibilitychange",Zn,!0),addEventListener("prerenderingchange",Zn,!0)},dp=function(){removeEventListener("visibilitychange",Zn,!0),removeEventListener("prerenderingchange",Zn,!0)},Ku=function(){return $t<0&&($t=Mu(),Bu(),ei(function(){setTimeout(function(){$t=Mu(),Bu()},0)})),{get firstHiddenTime(){return $t}}},aa=function(e){document.prerendering?addEventListener("prerenderingchange",function(){return e()},!0):e()},Ju=[1800,3e3],Wu=function(e,t){t=t||{},aa(function(){var r,n=Ku(),i=qt("FCP"),o=Hu("paint",function(a){a.forEach(function(s){s.name==="first-contentful-paint"&&(o.disconnect(),s.startTime<n.firstHiddenTime&&(i.value=Math.max(s.startTime-ti(),0),i.entries.push(s),r(!0)))})});o&&(r=Kt(e,i,Ju,t.reportAllChanges),ei(function(a){i=qt("FCP"),r=Kt(e,i,Ju,t.reportAllChanges),Vu(function(){i.value=performance.now()-a.timeStamp,r(!0)})}))})};var fp=function(e){var t=self.requestIdleCallback||self.setTimeout,r=-1;return e=qu(e),document.visibilityState==="hidden"?e():(r=t(e),$u(e)),r};var Fu=[2500,4e3],ia={},zu=function(e,t){t=t||{},aa(function(){var r,n=Ku(),i=qt("LCP"),o=function(u){t.reportAllChanges||(u=u.slice(-1)),u.forEach(function(d){d.startTime<n.firstHiddenTime&&(i.value=Math.max(d.startTime-ti(),0),i.entries=[d],r())})},a=Hu("largest-contentful-paint",o);if(a){r=Kt(e,i,Fu,t.reportAllChanges);var s=qu(function(){ia[i.id]||(o(a.takeRecords()),a.disconnect(),ia[i.id]=!0,r(!0))});["keydown","click"].forEach(function(u){addEventListener(u,function(){return fp(s)},{once:!0,capture:!0})}),$u(s),ei(function(u){i=qt("LCP"),r=Kt(e,i,Fu,t.reportAllChanges),Vu(function(){i.value=performance.now()-u.timeStamp,ia[i.id]=!0,r(!0)})})}})},Gu=[800,1800],hp=function e(t){document.prerendering?aa(function(){return e(t)}):document.readyState!=="complete"?addEventListener("load",function(){return e(t)},!0):setTimeout(t,0)},Yu=function(e,t){t=t||{};var r=qt("TTFB"),n=Kt(e,r,Gu,t.reportAllChanges);hp(function(){var i=oa();i&&(r.value=Math.max(i.responseStart-ti(),0),r.entries=[i],n(!0),ei(function(){r=qt("TTFB",0),(n=Kt(e,r,Gu,t.reportAllChanges))(!0)}))})};me();Ot();$e();function mp(){Wu(e=>{xe("GameFCP",{value:e.value,rating:e.rating,navigationType:e.navigationType})}),zu(e=>{xe("GameLCP",{value:e.value,rating:e.rating,navigationType:e.navigationType})}),Yu(e=>{xe("GameTTFB",{value:e.value,rating:e.rating,navigationType:e.navigationType})})}function pp(){return L(this,null,function*(){let e=Be.create();try{let t=yield e.get("/api/users/info");return!(t.code!=="SUCCESS"||!t.data)}catch(t){return Te(new Ur(t)),!1}})}function vp(){ft.on("onDocumentReady",e=>L(this,null,function*(){let t=yield pp();P.onEnvConfigChanged({hostUserInfo:{isLogin:t}}),ft.emit("LifecycleEvent.onReady",Y({},P.hostUserInfo?P.hostUserInfo:{isLogin:!1})),P.mpType==="game"&&Ke.start(Date.now()-e)}))}function Qu(){vp(),mp()}Qu();
212
+ `;ue();var GE=Ia(ru());var kn=class{constructor(t){this.ads=t}getAdsInstance(){return this.ads}init(){}adConfig(t){var n,r;(r=(n=this.ads)==null?void 0:n.adConfig)==null||r.call(n,t)}adBreak(t){this.ads.adBreak(t)}adUnit(){}};var Tn=class e{constructor(){this.callbacksId=0,this.callbackMap=new Map,this.initOnMessage()}static getInstance(){return e.instance||(e.instance=new e),e.instance}initOnMessage(){window.addEventListener("message",t=>{var n,r,a,i,o,s,l,d,_;if(console.log(`HuaweiQuickAdsHandler,event => ${t}`),t.origin==window.location.origin&&t.data&&t.data.type==null){let h=JSON.parse(t.data);switch(console.log(`HuaweiQuickAdsHandler type => ${h.type}`),h.type){case"huawei_quick_ads_on_message_init":console.log("HuaweiQuickAdsHandler window.addEventListener init",h);break;case"huawei_quick_ads_on_message_ad_config":{let p=h.callbackId;if(p){let f=this.callbackMap.get(p);(n=f==null?void 0:f.onReady)==null||n.call(f)}console.log("HuaweiQuickAdsHandler window.addEventListener adConfig",h)}break;case"huawei_quick_ads_on_message_ad_break":{let p=h.callbackId;if(p){let f=this.callbackMap.get(p),w="noAdPreloaded",A=!1;switch(h.adsRes){case"viewed":w="viewed",(r=f==null?void 0:f.adViewed)==null||r.call(f),A=!1;break;case"dismissed":w="dismissed",(a=f==null?void 0:f.adDismissed)==null||a.call(f),A=!1;break;case"notReady":case"timeout":case"error":case"noAdPreloaded":case"frequencyCapped":case"ignored":case"other":w=h.adsRes,A=!0;break;case"breakDone":w=h.params,A=!0;break;case"beforeReward":(i=f==null?void 0:f.beforeReward)==null||i.call(f,()=>{window.system.postMessage(JSON.stringify({type:"huawei_quick_ads_ad_operation"})),console.log("HuaweiQuickAdsHandler beforeReward postMessage AD_OPERATION")}),A=!1;break;case"beforeAd":(o=f==null?void 0:f.beforeAd)==null||o.call(f),A=!1;break;case"afterAd":(s=f==null?void 0:f.afterAd)==null||s.call(f),A=!1;break}A&&((_=f==null?void 0:f.adBreakDone)==null||_.call(f,{breakType:(l=f.breakType)!=null?l:"",breakName:f.breakName,breakFormat:(d=f.breakFormat)!=null?d:"interstitial",breakStatus:w}))}console.log("HuaweiQuickAdsHandler window.addEventListener adBreak",h)}break;case"huawei_quick_ads_on_message_ad_unit":console.log("HuaweiQuickAdsHandler window.addEventListener adUnit",h);break;default:break}}})}getAdsInstance(){return e.getInstance()}init(t){try{this.sendPostMessage("huawei_quick_ads_init",void 0,t)}catch(n){console.error("init failed",n)}}adConfig(t){try{let n;t.onReady&&(n=++this.callbacksId,this.callbackMap.set(n,{onReady:t.onReady})),this.sendPostMessage("huawei_quick_ads_ad_config",n,t)}catch(n){console.error("adConfig failed",n)}}adBreak(t){var n;try{let r=++this.callbacksId,a={};a.breakType=t.type,t.type!=="preroll"&&t.name&&(a.breakName=t.name),a.breakFormat=t.type==="reward"?"reward":"interstitial",t.adBreakDone&&(a.adBreakDone=t.adBreakDone),t.type!=="preroll"&&t.beforeAd&&(a.beforeAd=t.beforeAd),t.type!=="preroll"&&t.afterAd&&(a.afterAd=t.afterAd),t.type==="reward"&&t.beforeReward&&(a.beforeReward=t.beforeReward),t.type==="reward"&&t.adDismissed&&(a.adDismissed=t.adDismissed),t.type==="reward"&&t.adViewed&&(a.adViewed=t.adViewed),this.callbackMap.set(r,a),this.sendPostMessage("huawei_quick_ads_ad_break",r,t)}catch(r){(n=t.adBreakDone)==null||n.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"})}}adUnit(t){try{this.sendPostMessage("huawei_quick_ads_ad_unit",void 0,t)}catch(n){console.error("adUnit failed",n)}}sendPostMessage(t,n,r){var a;try{if(!((a=window.system)!=null&&a.postMessage))throw new Error("window.system.postMessage is not available");let i=q(q({type:t},n!==void 0&&{callbackId:n}),r!==void 0&&{data:r});window.system.postMessage(JSON.stringify(i))}catch(i){throw console.error("sendPostMessage failed",i),i}}};var xn=class e{constructor(){}static getInstance(){return e.instance||(e.instance=new e),e.instance}getAdsInstance(){return e.getInstance()}init(){}adConfig(t){t.onReady&&t.onReady()}adBreak(t){var n;try{t.type==="reward"?window.gdsdk.preloadAd("rewarded").then(()=>{var r;(r=t.beforeReward)==null||r.call(t,()=>{t.beforeAd&&t.beforeAd(),window.gdsdk.showAd("rewarded").then(a=>{var i,o,s,l,d;(i=a==null?void 0:a.args)!=null&&i.success?(o=t.adViewed)==null||o.call(t):(s=t.adDismissed)==null||s.call(t),t.afterAd&&t.afterAd(),(d=t.adBreakDone)==null||d.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:(l=a==null?void 0:a.args)!=null&&l.success?"viewed":"dismissed"})}).catch(a=>{var i;console.log("showReward error => ",a),(i=t.adBreakDone)==null||i.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"noAdPreloaded"})})})}).catch(r=>{var a;console.log("preloadAd error => ",r),(a=t.adBreakDone)==null||a.call(t,{breakType:t.type,breakName:t.name,breakFormat:"reward",breakStatus:"noAdPreloaded"})}):(t.type!=="preroll"&&t.beforeAd&&t.beforeAd(),window.gdsdk.showAd("interstitial").then(()=>{var r;t.type!=="preroll"&&t.afterAd&&t.afterAd(),(r=t.adBreakDone)==null||r.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:"interstitial",breakStatus:"viewed"})}))}catch(r){console.log("adBreak error => ",r),(n=t.adBreakDone)==null||n.call(t,{breakType:t.type,breakName:t.type==="preroll"?void 0:t.name,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"error"})}}adUnit(){}};ue();var It=class{constructor(t,n){this.ads=t;this.httpClient=n}getAdsInstance(){return this.ads}init(t){this.ads.init(t)}adConfig(t){this.ads.adConfig(t)}adBreak(t){return I(this,null,function*(){var r,a;if((r=L.hostUserInfo)==null?void 0:r.isSubUser){this.wrapAdBreadDoneViewed(t);return}if(t.type==="reward")try{let i=yield nt.getRewardsTypes(this.httpClient);if(!(yield nt.handleReward(i,t)))throw new Error("handleReward failed: fallback to unlock failed")}catch(i){console.info("handleReward failed",i),(a=t.adBreakDone)==null||a.call(t,{breakType:t.type,breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"noAdPreloaded"})}else this.ads.adBreak(t)})}adUnit(t){this.ads.adUnit(t)}wrapAdBreadDoneViewed(t){var n,r,a;(r=t.adBreakDone)==null||r.call(t,{breakType:t.type,breakName:"name"in t&&(n=t.name)!=null?n:"",breakFormat:t.type==="reward"?"reward":"interstitial",breakStatus:"viewed"}),"adViewed"in t&&((a=t.adViewed)==null||a.call(t))}};var Pn=class e extends It{constructor(t,n){super(t,n),this.startTimes=Date.now()}adBreak(t){return I(this,null,function*(){var n,r;if(t.type!=="reward"){if(t.type==="preroll"){(n=t.adBreakDone)==null||n.call(t,{breakType:t.type,breakFormat:"interstitial",breakStatus:"noAdPreloaded"});return}let a=Date.now();if(console.log("FunmaxAdsHandler time => ",a-this.startTimes),a-this.startTimes<4e4){(r=t.adBreakDone)==null||r.call(t,{breakType:t.type,breakFormat:"interstitial",breakStatus:"noAdPreloaded"});return}}is(e.prototype,this,"adBreak").call(this,t)})}};var ko=class{constructor(t){this.cacheHandler=null;this.context=t}createAdsHandler(t){if(this.cacheHandler)return this.cacheHandler;switch(t){case"dlightek":{this.cacheHandler=new kn(window.h5sdk);break}case"huaweiQuick":{this.cacheHandler=Tn.getInstance();break}case"gamedistribution":{this.cacheHandler=xn.getInstance();break}case"funmax":{let n=new Sn(this.context);this.cacheHandler=new Pn(n,At);break}default:{let n=new Sn(this.context);this.cacheHandler=new It(n,At);break}}return this.cacheHandler}getAdsHandler(t){return this.createAdsHandler(t)}},ia=ge(),au=new He,At=Je.create(),Up={httpClient:At,checkNetwork:()=>Je.getNetworkStatus(),track:Pe,eventEmitter:au,getWindowInfo:()=>({width:window.innerWidth*window.devicePixelRatio,height:window.innerHeight*window.devicePixelRatio,statusBarHeight:0}),handleLinkClicked:e=>{window.open(e,"_blank")},getContextInfo:()=>{var e,t,n,r,a,i,o,s,l;return{hostAppId:(t=(e=L.hostInfo)==null?void 0:e.aid)!=null?t:"1",deviceId:(n=L.deviceInfo.did)!=null?n:"",adId:(r=L.deviceInfo.adId)!=null?r:"",sessionId:(a=L.sessionId)!=null?a:"",userId:(o=(i=L.hostUserInfo)==null?void 0:i.uid)!=null?o:"",objectType:"GAME",objectId:L.mpId,testAdsMode:L.testAdsMode,channel:(s=L.joliSource)!=null?s:"",deviceBrand:L.deviceInfo.brand,deviceModel:L.deviceInfo.model,osType:Ie.isAndroid?"ANDROID":Ie.isiOS?"IOS":"PC",runtimeType:"WEB",platform:1e3,joliSource:(l=L.joliSource)!=null?l:""}}},Bp=()=>{Pe("subscription_unlock_success",{})},Mp=new ko(Up),Ln=Mp.getAdsHandler(L.sdkEnvironment);nt.registerRewardHandler("ADS",sl(Ln.getAdsInstance()));nt.registerRewardHandler("JOLI_COIN",ll(At,{onUnlockSuccess:e=>{qe("JOLIBOX_CUSTOM_REWARDS_EVENT",{JOLI_COIN:e})}}));nt.registerRewardHandler("SUBSCRIPTION",fl(At,{onSubSuccess:Bp.bind(void 0)}));Ei(At);Or(At);au.on("isAdShowing",e=>{qe("JOLIBOX_ADS_EVENT",{isAdShowing:e})});ia.registerCommand("AdsSDK.init",e=>{Ln.init(e)});ia.registerCommand("AdsSDK.adConfig",e=>{Ln.adConfig(e)});ia.registerCommand("AdsSDK.adBreak",e=>{Ln.adBreak(e)});ia.registerCommand("AdsSDK.adUnit",e=>{Ln.adUnit(e)});G();dt();var iu=ge();iu.registerCommand("RuntimeSDK.loadFinishedEvent",()=>{let e=performance.now();Pe("loadFinished",{duration:e})});iu.registerCommand("RuntimeSDK.loadProgressEvent",e=>{console.log("RuntimeSDK.loadProgressEvent",e)});G();dt();var du=-1,sa=function(e){addEventListener("pageshow",function(t){t.persisted&&(du=t.timeStamp,e(t))},!0)},xo=function(){var e=self.performance&&performance.getEntriesByType&&performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e},la=function(){var e=xo();return e&&e.activationStart||0},Xt=function(e,t){var n=xo(),r="navigate";return du>=0?r="back-forward-cache":n&&(document.prerendering||la()>0?r="prerender":document.wasDiscarded?r="restore":n.type&&(r=n.type.replace(/_/g,"-"))),{name:e,value:t===void 0?-1:t,rating:"good",delta:0,entries:[],id:"v4-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12),navigationType:r}},fu=function(e,t,n){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){var r=new PerformanceObserver(function(a){Promise.resolve().then(function(){t(a.getEntries())})});return r.observe(Object.assign({type:e,buffered:!0},n||{})),r}}catch(a){}},Yt=function(e,t,n,r){var a,i;return function(o){t.value>=0&&(o||r)&&((i=t.value-(a||0))||a===void 0)&&(a=t.value,t.delta=i,t.rating=function(s,l){return s>l[1]?"poor":s>l[0]?"needs-improvement":"good"}(t.value,n),e(t))}},hu=function(e){requestAnimationFrame(function(){return requestAnimationFrame(function(){return e()})})},mu=function(e){document.addEventListener("visibilitychange",function(){document.visibilityState==="hidden"&&e()})},pu=function(e){var t=!1;return function(){t||(e(),t=!0)}},zt=-1,ou=function(){return document.visibilityState!=="hidden"||document.prerendering?1/0:0},oa=function(e){document.visibilityState==="hidden"&&zt>-1&&(zt=e.type==="visibilitychange"?e.timeStamp:0,Gp())},su=function(){addEventListener("visibilitychange",oa,!0),addEventListener("prerenderingchange",oa,!0)},Gp=function(){removeEventListener("visibilitychange",oa,!0),removeEventListener("prerenderingchange",oa,!0)},vu=function(){return zt<0&&(zt=ou(),su(),sa(function(){setTimeout(function(){zt=ou(),su()},0)})),{get firstHiddenTime(){return zt}}},Po=function(e){document.prerendering?addEventListener("prerenderingchange",function(){return e()},!0):e()},lu=[1800,3e3],gu=function(e,t){t=t||{},Po(function(){var n,r=vu(),a=Xt("FCP"),i=fu("paint",function(o){o.forEach(function(s){s.name==="first-contentful-paint"&&(i.disconnect(),s.startTime<r.firstHiddenTime&&(a.value=Math.max(s.startTime-la(),0),a.entries.push(s),n(!0)))})});i&&(n=Yt(e,a,lu,t.reportAllChanges),sa(function(o){a=Xt("FCP"),n=Yt(e,a,lu,t.reportAllChanges),hu(function(){a.value=performance.now()-o.timeStamp,n(!0)})}))})};var Jp=function(e){var t=self.requestIdleCallback||self.setTimeout,n=-1;return e=pu(e),document.visibilityState==="hidden"?e():(n=t(e),mu(e)),n};var cu=[2500,4e3],To={},_u=function(e,t){t=t||{},Po(function(){var n,r=vu(),a=Xt("LCP"),i=function(l){t.reportAllChanges||(l=l.slice(-1)),l.forEach(function(d){d.startTime<r.firstHiddenTime&&(a.value=Math.max(d.startTime-la(),0),a.entries=[d],n())})},o=fu("largest-contentful-paint",i);if(o){n=Yt(e,a,cu,t.reportAllChanges);var s=pu(function(){To[a.id]||(i(o.takeRecords()),o.disconnect(),To[a.id]=!0,n(!0))});["keydown","click"].forEach(function(l){addEventListener(l,function(){return Jp(s)},{once:!0,capture:!0})}),mu(s),sa(function(l){a=Xt("LCP"),n=Yt(e,a,cu,t.reportAllChanges),hu(function(){a.value=performance.now()-l.timeStamp,To[a.id]=!0,n(!0)})})}})},uu=[800,1800],Fp=function e(t){document.prerendering?Po(function(){return e(t)}):document.readyState!=="complete"?addEventListener("load",function(){return e(t)},!0):setTimeout(t,0)},yu=function(e,t){t=t||{};var n=Xt("TTFB"),r=Yt(e,n,uu,t.reportAllChanges);Fp(function(){var a=xo();a&&(n.value=Math.max(a.responseStart-la(),0),n.entries=[a],r(!0),sa(function(){n=Xt("TTFB",0),(r=Yt(e,n,uu,t.reportAllChanges))(!0)}))})};ue();Tt();ze();G();gr();G();var ca=new Map,wu=!1,Hp=()=>{wu||(wt("ON_GET_USER_SUB_STATUS",e=>{let t=ca.get(e.sequenceId);t&&(clearTimeout(t.timeoutId),t.resolve(e.isSubUser),ca.delete(e.sequenceId))}),wu=!0)};function Lo(){return I(this,null,function*(){return Hp(),new Promise((e,t)=>{let n=Ge(),r=setTimeout(()=>{ca.delete(n),t(new Error("Timeout waiting for user sub status response"))},3e3);ca.set(n,{resolve:e,reject:t,timeoutId:r}),qe("JOLIBOX_GET_USER_SUB_STATUS",{sequenceId:n})})})}function bu(){return I(this,null,function*(){let e=Je.create();try{let t=yield e.get("/api/users/info");return!(t.code!=="SUCCESS"||!t.data)}catch(t){return xe(new Jn(t)),!1}})}function qp(){gu(e=>{Pe("GameFCP",{value:e.value,rating:e.rating,navigationType:e.navigationType})}),_u(e=>{Pe("GameLCP",{value:e.value,rating:e.rating,navigationType:e.navigationType})}),yu(e=>{Pe("GameTTFB",{value:e.value,rating:e.rating,navigationType:e.navigationType})})}function jp(){ut.on("onDocumentReady",e=>I(this,null,function*(){let t=yield bu(),n=yield Lo().catch(()=>!1);L.onEnvConfigChanged({hostUserInfo:{isLogin:t,isSubUser:n}}),ut.emit("LifecycleEvent.onReady",q({},L.hostUserInfo?L.hostUserInfo:{isLogin:!1})),L.mpType==="game"&&Ye.start(Date.now()-e)}))}function Eu(){jp(),qp()}Eu();
217
213
  /*! Bundled license information:
218
214
 
219
215
  localforage/dist/localforage.js: