@danetix/sentinel 1.0.0 → 1.0.2

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.
@@ -1 +1 @@
1
- const STORAGE_KEY_DEFAULT='_dxc';function createMemoryCache(_0x5d57ef){let _0x20e940=null;return{'get'(){if(_0x20e940===null)return null;if(Date['now']()-_0x20e940['ts']>_0x5d57ef*0x3e8)return _0x20e940=null,null;return _0x20e940['result'];},'set'(_0x38a95f){_0x20e940={'result':_0x38a95f,'ts':Date['now']()};},'clear'(){_0x20e940=null;}};}function createStorageCache(_0x456c01,_0x4d7437,_0x29e74e){const _0x274066=_0x29e74e;return{'get'(){try{const _0x296803=_0x4d7437['getItem'](_0x274066);if(_0x296803===null)return null;const _0x936545=JSON['parse'](_0x296803);if(Date['now']()-_0x936545['ts']>_0x456c01*0x3e8)return _0x4d7437['removeItem'](_0x274066),null;return _0x936545['result'];}catch{return null;}},'set'(_0xbdad26){try{_0x4d7437['setItem'](_0x274066,JSON['stringify']({'result':_0xbdad26,'ts':Date['now']()}));}catch{}},'clear'(){try{_0x4d7437['removeItem'](_0x274066);}catch{}}};}function createCache(_0x123670){const {ttl:ttl=0x0,location:location='memory',prefix:prefix=STORAGE_KEY_DEFAULT}=_0x123670;if(ttl<=0x0)return null;if(location==='memory')return createMemoryCache(ttl);try{const _0x287cbd=location==='localStorage'?localStorage:sessionStorage;return createStorageCache(ttl,_0x287cbd,prefix);}catch{return createMemoryCache(ttl);}}const SESSION_KEY='_dxe',SESSION_TIMEOUT_MS=0x1e*0x3c*0x3e8;let cachedSessionId=null,lastActivity=0x0;function getSessionId(){if(typeof sessionStorage==='undefined')return undefined;const _0x16aecf=Date['now']();if(cachedSessionId!==null&&_0x16aecf-lastActivity<SESSION_TIMEOUT_MS)return lastActivity=_0x16aecf,cachedSessionId;const _0x5cf331=sessionStorage['getItem'](SESSION_KEY);if(_0x5cf331!==null)try{const _0x1e1888=JSON['parse'](_0x5cf331);if(_0x16aecf-_0x1e1888['ts']<SESSION_TIMEOUT_MS)return cachedSessionId=_0x1e1888['id'],lastActivity=_0x16aecf,persistSession(_0x1e1888['id'],_0x16aecf),_0x1e1888['id'];}catch{}const _0x33045f=generateSessionId();return cachedSessionId=_0x33045f,lastActivity=_0x16aecf,persistSession(_0x33045f,_0x16aecf),_0x33045f;}function persistSession(_0x15598,_0x2901bd){try{const _0x24fec7={};_0x24fec7['id']=_0x15598,_0x24fec7['ts']=_0x2901bd,sessionStorage['setItem'](SESSION_KEY,JSON['stringify'](_0x24fec7));}catch{}}function generateSessionId(){if(typeof crypto!=='undefined'&&typeof crypto['randomUUID']==='function')return crypto['randomUUID']();return'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'['replace'](/[xy]/g,_0x5a870f=>{const _0x284809=Math['random']()*0x10|0x0,_0x161662=_0x5a870f==='x'?_0x284809:_0x284809&0x3|0x8;return _0x161662['toString'](0x10);});}const KEY_CLIENT_COOKIE='_dx',KEY_LOCAL_STORAGE='_dxl',KEY_IDB_STORE='_dx',KEY_IDB_KEY='d',IDB_DB_NAME='_dx',IDB_VERSION=0x1;function getCookie(){try{const _0x4df2b2=document['cookie']['match'](new RegExp('(?:^|;\x5cs*)'+KEY_CLIENT_COOKIE+'=([^;]*)'));return _0x4df2b2?decodeURIComponent(_0x4df2b2[0x1]):null;}catch{return null;}}function setCookie(_0x5675f8){try{const _0x5e6c53=0x16d*0x18*0x3c*0x3c,_0xf95774=typeof location!=='undefined'&&location['protocol']==='https:'?';\x20secure':'';document['cookie']=KEY_CLIENT_COOKIE+'='+encodeURIComponent(_0x5675f8)+';\x20path=/;\x20max-age='+_0x5e6c53+';\x20samesite=lax'+_0xf95774;}catch{}}function getLocalStorage$1(){try{return localStorage['getItem'](KEY_LOCAL_STORAGE);}catch{return null;}}function setLocalStorage(_0x518017){try{localStorage['setItem'](KEY_LOCAL_STORAGE,_0x518017);}catch{}}function openIdb(){return new Promise(_0x2949d8=>{try{const _0x11043a=indexedDB['open'](IDB_DB_NAME,IDB_VERSION);_0x11043a['onupgradeneeded']=()=>{const _0x525158=_0x11043a['result'];!_0x525158['objectStoreNames']['contains'](KEY_IDB_STORE)&&_0x525158['createObjectStore'](KEY_IDB_STORE);},_0x11043a['onsuccess']=()=>_0x2949d8(_0x11043a['result']),_0x11043a['onerror']=()=>_0x2949d8(null);}catch{_0x2949d8(null);}});}function getIndexedDb(){return new Promise(_0xaa6227=>{openIdb()['then'](_0x27d074=>{if(_0x27d074===null){_0xaa6227(null);return;}try{const _0x36c7cf=_0x27d074['transaction'](KEY_IDB_STORE,'readonly'),_0x33148c=_0x36c7cf['objectStore'](KEY_IDB_STORE),_0x13207f=_0x33148c['get'](KEY_IDB_KEY);_0x13207f['onsuccess']=()=>{_0x27d074['close'](),_0xaa6227(typeof _0x13207f['result']==='string'?_0x13207f['result']:null);},_0x13207f['onerror']=()=>{_0x27d074['close'](),_0xaa6227(null);};}catch{_0x27d074['close'](),_0xaa6227(null);}})['catch'](()=>_0xaa6227(null));});}function setIndexedDb(_0x58705d){openIdb()['then'](_0x27168=>{if(_0x27168===null)return;try{const _0x16b9c0=_0x27168['transaction'](KEY_IDB_STORE,'readwrite'),_0x1bf6e8=_0x16b9c0['objectStore'](KEY_IDB_STORE);_0x1bf6e8['put'](_0x58705d,KEY_IDB_KEY),_0x16b9c0['oncomplete']=()=>_0x27168['close'](),_0x16b9c0['onerror']=()=>_0x27168['close']();}catch{_0x27168['close']();}})['catch'](()=>{});}async function loadDeviceToken(){const _0x57163c=getCookie();if(_0x57163c!==null)return _0x57163c;const _0x57c3d0=getLocalStorage$1();if(_0x57c3d0!==null)return _0x57c3d0;return getIndexedDb();}function saveDeviceToken(_0x5288d0){setCookie(_0x5288d0),setLocalStorage(_0x5288d0),setIndexedDb(_0x5288d0);}function wait(_0x5966d1,_0x25da9b){return new Promise(_0x403881=>setTimeout(_0x403881,_0x5966d1,_0x25da9b));}function releaseEventLoop(){return new Promise(_0x3ee67f=>{const _0x2030d8=new MessageChannel();_0x2030d8['port1']['onmessage']=()=>_0x3ee67f(),_0x2030d8['port2']['postMessage'](null);});}function requestIdleCallbackIfAvailable(_0x283ea3,_0x196544=Infinity){const {requestIdleCallback:_0x1d25e7}=window;if(typeof _0x1d25e7==='function'){const _0x5207c2={};return _0x5207c2['timeout']=_0x196544,new Promise(_0x32182b=>_0x1d25e7['call'](window,()=>_0x32182b(),_0x5207c2));}return wait(Math['min'](_0x283ea3,_0x196544));}function isPromise(_0x3a422e){return _0x3a422e!==null&&_0x3a422e!==undefined&&typeof _0x3a422e['then']==='function';}function awaitIfAsync(_0x7f2603,_0x1e37f7){try{const _0x46a347=_0x7f2603();isPromise(_0x46a347)?_0x46a347['then'](_0x197f3e=>_0x1e37f7(!![],_0x197f3e),_0x5081f5=>_0x1e37f7(![],_0x5081f5)):_0x1e37f7(!![],_0x46a347);}catch(_0x3f9196){_0x1e37f7(![],_0x3f9196);}}async function mapWithBreaks(_0x291a2d,_0x261d5f,_0x276dc7=0x10){const _0x2360ff=Array(_0x291a2d['length']);let _0x3027a4=Date['now']();for(let _0x4f3735=0x0;_0x4f3735<_0x291a2d['length'];++_0x4f3735){_0x2360ff[_0x4f3735]=_0x261d5f(_0x291a2d[_0x4f3735],_0x4f3735);const _0x500b20=Date['now']();_0x500b20>=_0x3027a4+_0x276dc7&&(_0x3027a4=_0x500b20,await releaseEventLoop());}return _0x2360ff;}function suppressUnhandledRejectionWarning(_0x3c336a){return _0x3c336a['then'](undefined,()=>undefined),_0x3c336a;}const DEFAULT_MAX_RETRIES=0x3,DEFAULT_BASE_DELAY=0xc8,DEFAULT_MAX_DELAY=0x2710;async function fetchWithRetry(_0x126a26,_0x22e1bd,_0x3a7c30){const _0xe38838=_0x3a7c30?.['maxRetries']??DEFAULT_MAX_RETRIES,_0x48338b=_0x3a7c30?.['baseDelayMs']??DEFAULT_BASE_DELAY,_0x4e02c8=_0x3a7c30?.['maxDelayMs']??DEFAULT_MAX_DELAY;for(let _0x16a351=0x0;_0x16a351<=_0xe38838;_0x16a351++){try{const _0x3db692=await fetch(_0x126a26,_0x22e1bd);if(_0x3db692['ok']||_0x3db692['status']<0x1f4&&_0x3db692['status']!==0x1ad)return _0x3db692;if(_0x3db692['status']===0x1ad&&_0x16a351<_0xe38838){const _0x4da04f=parseRetryAfter(_0x3db692['headers']['get']('Retry-After'));await wait(_0x4da04f??computeBackoff(_0x16a351,_0x48338b,_0x4e02c8));continue;}if(_0x3db692['status']>=0x1f4&&_0x16a351<_0xe38838){await wait(computeBackoff(_0x16a351,_0x48338b,_0x4e02c8));continue;}return _0x3db692;}catch(_0x526901){if(_0x16a351>=_0xe38838)throw _0x526901;await wait(computeBackoff(_0x16a351,_0x48338b,_0x4e02c8));}}throw new Error('fetchWithRetry:\x20exhausted\x20retries');}function computeBackoff(_0x3129c8,_0x17929e,_0x53a7be){const _0x10c404=Math['min'](_0x53a7be,_0x17929e*0x2**_0x3129c8);return _0x10c404*(0.5+Math['random']()*0.5);}function parseRetryAfter(_0x1d51ef){if(_0x1d51ef===null)return null;const _0x6151e3=Number(_0x1d51ef);if(!Number['isNaN'](_0x6151e3)&&_0x6151e3>0x0)return _0x6151e3*0x3e8;const _0x412929=Date['parse'](_0x1d51ef);if(!Number['isNaN'](_0x412929))return Math['max'](0x0,_0x412929-Date['now']());return null;}const SENSITIVE_PARAMS=['token','key','secret','password','auth','session','jwt','api_key','apikey','credential','bearer','signature','sig','access_token','refresh_token','code','state','ssn','credit_card','card_number'];function sanitizeUrl(_0x71f484){try{const _0x1f49ba=new URL(_0x71f484),_0x5706a6=[];for(const [_0x5c8492]of _0x1f49ba['searchParams']){const _0x59c4d2=_0x5c8492['toLowerCase']();SENSITIVE_PARAMS['some'](_0x483c77=>_0x59c4d2['includes'](_0x483c77))&&_0x5706a6['push'](_0x5c8492);}for(const _0x12ccbc of _0x5706a6){_0x1f49ba['searchParams']['set'](_0x12ccbc,'[REDACTED]');}return _0x1f49ba['hash']='',_0x1f49ba['toString']();}catch{return _0x71f484;}}function toBase64Url(_0xb44bea){let _0x275d09='';for(let _0x59b532=0x0;_0x59b532<_0xb44bea['length'];_0x59b532++){_0x275d09+=String['fromCharCode'](_0xb44bea[_0x59b532]);}return btoa(_0x275d09)['replace'](/\+/g,'-')['replace'](/\//g,'_')['replace'](/=+$/,'');}function isCompressionSupported(){return typeof CompressionStream!=='undefined';}async function compressPayload(_0x2cdca2){if(!isCompressionSupported())return _0x2cdca2;const _0x466bef=new Blob([_0x2cdca2])['stream']()['pipeThrough'](new CompressionStream('deflate-raw')),_0x563292=await new Response(_0x466bef)['arrayBuffer']();return new Uint8Array(_0x563292);}const MARKER_1=0xca,MARKER_2=0xfe,KEY_LENGTH=0x9,MAX_PADDING=0x20;function getRandomBytes(_0x1fe013){const _0x47a082=new Uint8Array(_0x1fe013);return crypto['getRandomValues'](_0x47a082),_0x47a082;}function createXorEnvelope(_0x610f9f){const _0xc09e49=getRandomBytes(0x1)[0x0],_0x38eaea=Math['floor'](Math['random']()*MAX_PADDING),_0x28fed2=getRandomBytes(_0x38eaea),_0x31cfed=getRandomBytes(KEY_LENGTH),_0x34368a=0x1+0x2+0x1+_0x38eaea+KEY_LENGTH,_0x49a480=new Uint8Array(_0x34368a+_0x610f9f['length']);let _0x46c1e9=0x0;_0x49a480[_0x46c1e9++]=_0xc09e49,_0x49a480[_0x46c1e9++]=MARKER_1+_0xc09e49&0xff,_0x49a480[_0x46c1e9++]=MARKER_2+_0xc09e49&0xff,_0x49a480[_0x46c1e9++]=_0x38eaea+_0xc09e49&0xff,_0x49a480['set'](_0x28fed2,_0x46c1e9),_0x46c1e9+=_0x38eaea,_0x49a480['set'](_0x31cfed,_0x46c1e9),_0x46c1e9+=KEY_LENGTH;for(let _0x1b656a=0x0;_0x1b656a<_0x610f9f['length'];_0x1b656a++){_0x49a480[_0x46c1e9+_0x1b656a]=_0x610f9f[_0x1b656a]^_0x31cfed[_0x1b656a%KEY_LENGTH];}return _0x49a480;}async function encodePayload(_0x300697){const _0x3d68ad=new TextEncoder()['encode'](_0x300697),_0x49f40c=isCompressionSupported(),_0x5ec37c=_0x49f40c?await compressPayload(_0x3d68ad):_0x3d68ad,_0x4a3c0c=createXorEnvelope(_0x5ec37c),_0x32b61e={};_0x32b61e['v']=0x1,_0x32b61e['c']=_0x49f40c;const _0x3909a8=JSON['stringify'](_0x32b61e),_0x28d56f=new TextEncoder()['encode'](_0x3909a8);return toBase64Url(_0x28d56f)+':'+toBase64Url(_0x4a3c0c);}let inflightPromise=null;async function capture(_0x70bb1e,_0x5e1d6f,_0x216236){if(inflightPromise!==null)try{await inflightPromise;}catch{}const _0x2421ae=doCapture(_0x70bb1e,_0x5e1d6f,_0x216236);inflightPromise=_0x2421ae;try{return await _0x2421ae;}finally{inflightPromise===_0x2421ae&&(inflightPromise=null);}}async function doCapture(_0x526eba,_0x530a55,_0x3f1d6f){const {components:_0x4cd8e1,version:_0x2bf10f}=await _0x526eba['get'](),_0x2eb1ed=await loadDeviceToken()??undefined,_0x1111a7={};for(const [_0x4e2ed9,_0x11edb1]of Object['entries'](_0x4cd8e1)){const {duration:_0xdfdcb7,..._0x5562fc}=_0x11edb1;_0x1111a7[_0x4e2ed9]=_0x5562fc;}const _0x501da9={'components':_0x1111a7,'version':_0x2bf10f,'storedDeviceToken':_0x2eb1ed,'linkedId':_0x3f1d6f?.['linkedId'],'tag':_0x3f1d6f?.['tag'],'custom':_0x3f1d6f?.['custom'],'url':typeof location!=='undefined'?sanitizeUrl(location['href']):undefined,'referrer':typeof document!=='undefined'&&document['referrer']?sanitizeUrl(document['referrer']):undefined,'pageTitle':typeof document!=='undefined'?document['title']||undefined:undefined,'sessionId':getSessionId()},_0x2748ab=await encodePayload(JSON['stringify'](_0x501da9)),_0x5e5941=await fetchWithRetry(_0x530a55['endpoint'],{'method':'POST','headers':{'Content-Type':'text/plain','X-API-Key':_0x530a55['apiKey']},'credentials':'include','body':_0x2748ab},_0x530a55['retry']);if(!_0x5e5941['ok']){let _0x52bd74;try{const _0x240806=await _0x5e5941['json']();_0x52bd74=_0x240806['error']??'HTTP\x20'+_0x5e5941['status'];}catch{_0x52bd74='HTTP\x20'+_0x5e5941['status'];}throw new Error('Endpoint\x20error:\x20'+_0x52bd74);}const _0x11b12e=await _0x5e5941['json']();return _0x11b12e['signedDeviceToken']&&saveDeviceToken(_0x11b12e['signedDeviceToken']),_0x11b12e;}function includes(_0x545911,_0xa244d7){for(let _0x1bc0c7=0x0,_0x48af29=_0x545911['length'];_0x1bc0c7<_0x48af29;++_0x1bc0c7){if(_0x545911[_0x1bc0c7]===_0xa244d7)return!![];}return![];}function excludes(_0x279f75,_0x5adbac){return!includes(_0x279f75,_0x5adbac);}function toInt(_0x26c85f){return parseInt(_0x26c85f);}function toFloat(_0x39919b){return parseFloat(_0x39919b);}function replaceNaN(_0x5d27e1,_0x177b4e){return typeof _0x5d27e1==='number'&&isNaN(_0x5d27e1)?_0x177b4e:_0x5d27e1;}function countTruthy(_0x1e0ada){return _0x1e0ada['reduce']((_0x271301,_0x131177)=>_0x271301+(Boolean(_0x131177)?0x1:0x0),0x0);}function round$1(_0x47b746,_0x21fc81=0x1){if(Math['abs'](_0x21fc81)>=0x1)return Math['round'](_0x47b746/_0x21fc81)*_0x21fc81;const _0x15ca70=0x1/_0x21fc81;return Math['round'](_0x47b746*_0x15ca70)/_0x15ca70;}function isFinalResultLoaded(_0x54186d){return typeof _0x54186d!=='function';}function loadSource(_0x39802a,_0x4ee450){const _0x288f78=suppressUnhandledRejectionWarning(new Promise(_0x1303c7=>{const _0x1a0a2b=Date['now']();awaitIfAsync(_0x39802a['bind'](null,_0x4ee450),(..._0x126b7b)=>{const _0x2a5d4f=Date['now']()-_0x1a0a2b;if(!_0x126b7b[0x0])return _0x1303c7(()=>({'error':_0x126b7b[0x1],'duration':_0x2a5d4f}));const _0x1b4b1f=_0x126b7b[0x1];if(isFinalResultLoaded(_0x1b4b1f))return _0x1303c7(()=>({'value':_0x1b4b1f,'duration':_0x2a5d4f}));_0x1303c7(()=>new Promise(_0x34b314=>{const _0x1e5760=Date['now']();awaitIfAsync(_0x1b4b1f,(..._0x1ef22a)=>{const _0x5c9ed3=_0x2a5d4f+Date['now']()-_0x1e5760;if(!_0x1ef22a[0x0]){const _0x3ab0e6={};return _0x3ab0e6['error']=_0x1ef22a[0x1],_0x3ab0e6['duration']=_0x5c9ed3,_0x34b314(_0x3ab0e6);}const _0x409e81={};_0x409e81['value']=_0x1ef22a[0x1],_0x409e81['duration']=_0x5c9ed3,_0x34b314(_0x409e81);});}));});}));return function _0xb0c5fe(){return _0x288f78['then'](_0x356745=>_0x356745());};}function loadSources(_0x10d301,_0x1fad3c,_0x28be2b,_0x1b5536){const _0x287f0e=Object['keys'](_0x10d301)['filter'](_0x3cd4c5=>excludes(_0x28be2b,_0x3cd4c5)),_0x42fd20=suppressUnhandledRejectionWarning(mapWithBreaks(_0x287f0e,_0x1005c1=>loadSource(_0x10d301[_0x1005c1],_0x1fad3c),_0x1b5536));return async function _0x594e79(){const _0x5b7f7a=await _0x42fd20,_0x19a9ee=await mapWithBreaks(_0x5b7f7a,_0x26008b=>suppressUnhandledRejectionWarning(_0x26008b()),_0x1b5536),_0x4e0cde=await Promise['all'](_0x19a9ee),_0x19d76d={};for(let _0x3f3b10=0x0;_0x3f3b10<_0x287f0e['length'];++_0x3f3b10){_0x19d76d[_0x287f0e[_0x3f3b10]]=_0x4e0cde[_0x3f3b10];}return _0x19d76d;};}function getArchitecture(){const _0x527ebb=new Float32Array(0x1),_0x4796f3=new Uint8Array(_0x527ebb['buffer']);return _0x527ebb[0x0]=Infinity,_0x527ebb[0x0]=_0x527ebb[0x0]-_0x527ebb[0x0],_0x4796f3[0x3];}function errorToObject(_0x37cc57){return{'name':_0x37cc57['name'],'message':_0x37cc57['message'],'stack':_0x37cc57['stack']?.['split']('\x0a'),..._0x37cc57};}function isFunctionNative(_0x3c29b3){return/^function\s.*?\{\s*\[native code]\s*}$/['test'](String(_0x3c29b3));}function isTrident(){const _0x1cd5b2=window,_0x1ddf3a=navigator;return countTruthy(['MSCSSMatrix'in _0x1cd5b2,'msSetImmediate'in _0x1cd5b2,'msIndexedDB'in _0x1cd5b2,'msMaxTouchPoints'in _0x1ddf3a,'msPointerEnabled'in _0x1ddf3a])>=0x4;}function isEdgeHTML(){const _0x373af4=window,_0x1cdf6f=navigator;return countTruthy(['msWriteProfilerMark'in _0x373af4,'MSStream'in _0x373af4,'msLaunchUri'in _0x1cdf6f,'msSaveBlob'in _0x1cdf6f])>=0x3&&!isTrident();}function isChromium(){const _0x10c36b=window,_0x247dc6=navigator;return countTruthy(['webkitPersistentStorage'in _0x247dc6,'webkitTemporaryStorage'in _0x247dc6,(_0x247dc6['vendor']||'')['indexOf']('Google')===0x0,'webkitResolveLocalFileSystemURL'in _0x10c36b,'BatteryManager'in _0x10c36b,'webkitMediaStream'in _0x10c36b,'webkitSpeechGrammar'in _0x10c36b])>=0x5;}function isWebKit(){const _0x27bc58=window,_0x446be5=navigator;return countTruthy(['ApplePayError'in _0x27bc58,'CSSPrimitiveValue'in _0x27bc58,'Counter'in _0x27bc58,_0x446be5['vendor']['indexOf']('Apple')===0x0,'RGBColor'in _0x27bc58,'WebKitMediaKeys'in _0x27bc58])>=0x4;}function isDesktopWebKit(){const _0x16fc94=window;return countTruthy(['safari'in _0x16fc94,!('ongestureend'in _0x16fc94),!('TouchEvent'in _0x16fc94),!('orientation'in _0x16fc94),!('autocapitalize'in _0x16fc94['HTMLElement']['prototype']),'pointerLockElement'in _0x16fc94['Document']['prototype']])>=0x4;}function isSafariWebKit(){const _0x2b6451=window;return isFunctionNative(_0x2b6451['print'])&&String(_0x2b6451['browser'])==='[object\x20WebPageNamespace]';}function isGecko(){const _0x160f62=window;return countTruthy(['buildID'in navigator,'MozAppearance'in document['documentElement']['style'],'onmozfullscreenchange'in _0x160f62,'mozInnerScreenX'in _0x160f62,'CSSMozDocumentRule'in _0x160f62,'CanvasCaptureMediaStream'in _0x160f62])>=0x4;}function isGecko120OrNewer(){const _0x5e0a5d=window,_0x3e5921=navigator,{CSS:_0xdb5c32}=_0x5e0a5d;return countTruthy(['userActivation'in _0x3e5921,_0xdb5c32['supports']('color','light-dark(#000,\x20#fff)'),_0xdb5c32['supports']('height','1lh'),'globalPrivacyControl'in _0x3e5921])>=0x3;}function isGecko143OrNewer(){const {CSS:_0x16b053}=window;return countTruthy([_0x16b053['supports']('selector(::details-content)'),_0x16b053['supports']('selector(::before::marker)'),_0x16b053['supports']('selector(::after::marker)'),!('locale'in CompositionEvent['prototype'])])>=0x3;}function isChromium86OrNewer(){const _0x49ffc8=window;return countTruthy([!('MediaSettingsRange'in _0x49ffc8),'RTCEncodedAudioFrame'in _0x49ffc8,''+_0x49ffc8['Intl']==='[object\x20Intl]',''+_0x49ffc8['Reflect']==='[object\x20Reflect]'])>=0x3;}function isChromium122OrNewer(){const _0xc023a1=window,{URLPattern:_0x44c462}=_0xc023a1;return countTruthy(['union'in Set['prototype'],'Iterator'in _0xc023a1,_0x44c462&&'hasRegExpGroups'in _0x44c462['prototype'],'RGB8'in WebGLRenderingContext['prototype']])>=0x3;}function isWebKit606OrNewer(){const _0x58f19a=window;return countTruthy(['DOMRectList'in _0x58f19a,'RTCPeerConnectionIceEvent'in _0x58f19a,'SVGGeometryElement'in _0x58f19a,'ontransitioncancel'in _0x58f19a])>=0x3;}function isWebKit616OrNewer(){const _0x80a0ec=window,_0x3fc6e2=navigator,{CSS:_0x4e9696,HTMLButtonElement:_0x19a349}=_0x80a0ec;return countTruthy([!('getStorageUpdates'in _0x3fc6e2),'popover'in _0x19a349['prototype'],'CSSCounterStyleRule'in _0x80a0ec,_0x4e9696['supports']('font-size-adjust:\x20ex-height\x200.5'),_0x4e9696['supports']('text-transform:\x20full-width')])>=0x4;}function isIPad(){if(navigator['platform']==='iPad')return!![];const _0x363f30=screen,_0x29c42a=_0x363f30['width']/_0x363f30['height'];return countTruthy(['MediaSource'in window,!!Element['prototype']['webkitRequestFullscreen'],_0x29c42a>0.65&&_0x29c42a<1.53])>=0x2;}function isModernBrowser(){const _0x384ec8=window,_0x552e7a=navigator;return countTruthy(['maxTouchPoints'in _0x552e7a,'mediaCapabilities'in _0x552e7a,'PointerEvent'in _0x384ec8,'visualViewport'in _0x384ec8,'onafterprint'in _0x384ec8])>=0x4;}function getFullscreenElement(){const _0x39d2a7=document;return _0x39d2a7['fullscreenElement']??_0x39d2a7['msFullscreenElement']??_0x39d2a7['mozFullScreenElement']??_0x39d2a7['webkitFullscreenElement']??null;}function exitFullscreen(){const _0x2062f3=document;return _0x2062f3['exitFullscreen']['call'](_0x2062f3);}function isAndroid(){const _0x148d23=isChromium(),_0x20e06c=isGecko(),_0x321721=window,_0x24d43f=navigator,_0x7ce6ff='connection';if(_0x148d23)return countTruthy([!('SharedWorker'in _0x321721),_0x24d43f[_0x7ce6ff]&&'ontypechange'in _0x24d43f[_0x7ce6ff],!('sinkId'in new Audio())])>=0x2;else{if(_0x20e06c)return countTruthy(['onorientationchange'in _0x321721,'orientation'in _0x321721,/android/i['test'](_0x24d43f['appVersion'])])>=0x2;}return![];}function isSamsungInternet(){const _0x2eaf94=navigator,_0x43fe6a=window,_0x9729c3=Audio['prototype'],{visualViewport:_0x464cff}=_0x43fe6a;return countTruthy(['srLatency'in _0x9729c3,'srChannelCount'in _0x9729c3,'devicePosture'in _0x2eaf94,_0x464cff&&'segments'in _0x464cff,'getTextInformation'in Image['prototype']])>=0x3;}function getAudioSignal(){if(doesBrowserPerformAntiSignalCollection())return getStabilizedAudioSignal();return getUnstableAudioSignal();}function getUnstableAudioSignal(){const _0x59e16c=window,_0xe2fffc=_0x59e16c['OfflineAudioContext']??_0x59e16c['webkitOfflineAudioContext'];if(_0xe2fffc===undefined)return-0x2;if(doesBrowserSuspendAudioContext())return-0x1;const _0x312946=0x1194,_0x17b91c=0x1388,_0x5b6e10=new _0xe2fffc(0x1,_0x17b91c,0xac44),_0x594ad6=_0x5b6e10['createOscillator']();_0x594ad6['type']='triangle',_0x594ad6['frequency']['value']=0x2710;const _0x2ca40c=_0x5b6e10['createDynamicsCompressor']();_0x2ca40c['threshold']['value']=-0x32,_0x2ca40c['knee']['value']=0x28,_0x2ca40c['ratio']['value']=0xc,_0x2ca40c['attack']['value']=0x0,_0x2ca40c['release']['value']=0.25,_0x594ad6['connect'](_0x2ca40c),_0x2ca40c['connect'](_0x5b6e10['destination']),_0x594ad6['start'](0x0);const [_0x5bde01,_0x47e106]=startRenderingAudio(_0x5b6e10),_0x4d7299=suppressUnhandledRejectionWarning(_0x5bde01['then'](_0x35a41c=>getHash(_0x35a41c['getChannelData'](0x0)['subarray'](_0x312946)),_0x49c558=>{if(_0x49c558['name']==='timeout'||_0x49c558['name']==='suspended')return-0x3;throw _0x49c558;}));return()=>{return _0x47e106(),_0x4d7299;};}function doesBrowserSuspendAudioContext(){return isWebKit()&&!isDesktopWebKit()&&!isWebKit606OrNewer();}function doesBrowserPerformAntiSignalCollection(){return isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit()||isChromium()&&isSamsungInternet()&&isChromium122OrNewer();}function startRenderingAudio(_0x3476c7){const _0x3172e9=0x3,_0x550b39=0x1f4,_0x152fd4=0x1f4,_0x28306f=0x1388;let _0x30250b=()=>undefined;const _0x224402=new Promise((_0x4da429,_0x3d2ead)=>{let _0x56d1c2=![],_0x2c2990=0x0,_0x440278=0x0;_0x3476c7['oncomplete']=_0x2fc00e=>{_0x4da429(_0x2fc00e['renderedBuffer']);};const _0x485caa=()=>{setTimeout(()=>_0x3d2ead(makeInnerError('timeout')),Math['min'](_0x152fd4,_0x440278+_0x28306f-Date['now']()));},_0x49f1ec=()=>{try{const _0x12ff86=_0x3476c7['startRendering']();isPromise(_0x12ff86)&&void suppressUnhandledRejectionWarning(_0x12ff86);switch(_0x3476c7['state']){case'running':_0x440278=Date['now']();_0x56d1c2&&_0x485caa();break;case'suspended':!document['hidden']&&_0x2c2990++;_0x56d1c2&&_0x2c2990>=_0x3172e9?_0x3d2ead(makeInnerError('suspended')):setTimeout(_0x49f1ec,_0x550b39);break;case'closed':case'interrupted':break;}}catch(_0x2c5862){_0x3d2ead(_0x2c5862);}};_0x49f1ec(),_0x30250b=()=>{!_0x56d1c2&&(_0x56d1c2=!![],_0x440278>0x0&&_0x485caa());};});return[_0x224402,_0x30250b];}function roundToSignificant(_0x5c542d,_0x2280ee){if(_0x5c542d===0x0)return 0x0;const _0xa1be11=Math['pow'](0xa,_0x2280ee-Math['ceil'](Math['log10'](Math['abs'](_0x5c542d))));return Math['round'](_0x5c542d*_0xa1be11/0x5)*0x5/_0xa1be11;}function getHash(_0x1720bc){let _0x5a6df3=0x0;for(let _0x6c11a8=0x0;_0x6c11a8<_0x1720bc['length'];++_0x6c11a8){_0x5a6df3+=Math['abs'](_0x1720bc[_0x6c11a8]);}return _0x5a6df3;}const _0xca1a74={};_0xca1a74['oscType']='triangle',_0xca1a74['freq']=0x2710,_0xca1a74['useCompressor']=!![],_0xca1a74['useAllpass']=![];const _0x39d0e4={};_0x39d0e4['oscType']='sine',_0x39d0e4['freq']=0x1f40,_0x39d0e4['useCompressor']=![],_0x39d0e4['useAllpass']=![];const _0x527788={};_0x527788['oscType']='square',_0x527788['freq']=0x2710,_0x527788['useCompressor']=!![],_0x527788['useAllpass']=!![];const SCENES=[_0xca1a74,_0x39d0e4,_0x527788],SIG_DIGITS=0x7,BUFFER_LENGTH=0x2af8,SAMPLE_RATE=0xac44,_0x1058c8={};_0x1058c8['from']=0x1194,_0x1058c8['to']=0x1388;const _0x1247b2={};_0x1247b2['from']=0x2710,_0x1247b2['to']=0x2904;const WINDOWS=[_0x1058c8,_0x1247b2];function extractMetrics(_0x270e86){const _0x41a992=_0x270e86['length'];if(_0x41a992===0x0)return[0x0,0x0,0x0,0x0];const _0x1e5605=[];for(let _0x1d82c7=0x0;_0x1d82c7<_0x41a992;_0x1d82c7++){_0x1e5605['push'](roundToSignificant(_0x270e86[_0x1d82c7],SIG_DIGITS));}const _0x2a9bf3=[..._0x1e5605]['map'](Math['abs'])['sort']((_0x11663b,_0x51f8d1)=>_0x11663b-_0x51f8d1),_0xd9cd82=Math['floor'](_0x2a9bf3['length']*0.05);let _0x3be6ce=0x0;for(let _0x5c9f8f=_0xd9cd82;_0x5c9f8f<_0x2a9bf3['length']-_0xd9cd82;_0x5c9f8f++){_0x3be6ce+=_0x2a9bf3[_0x5c9f8f];}let _0x4e2b09=0x0;for(let _0x185817=0x0;_0x185817<_0x41a992;_0x185817++){_0x4e2b09+=_0x1e5605[_0x185817]*_0x1e5605[_0x185817];}_0x4e2b09/=_0x41a992;let _0x2b0b46=0x0;for(let _0x27459f=0x1;_0x27459f<_0x41a992;_0x27459f++){Math['sign'](_0x1e5605[_0x27459f])!==Math['sign'](_0x1e5605[_0x27459f-0x1])&&_0x2b0b46++;}let _0x1758ce=0x0;for(let _0x4284e4=0x1;_0x4284e4<_0x41a992;_0x4284e4++){_0x1758ce+=Math['abs'](_0x1e5605[_0x4284e4]-_0x1e5605[_0x4284e4-0x1]);}return[_0x3be6ce,_0x4e2b09,_0x2b0b46,_0x1758ce];}async function renderScene(_0x141cb2){const _0x305093=window,_0x28d914=_0x305093['OfflineAudioContext']??_0x305093['webkitOfflineAudioContext'];if(_0x28d914===undefined)return null;try{const _0x2cc5d5=new _0x28d914(0x1,BUFFER_LENGTH,SAMPLE_RATE),_0x5086c2=_0x2cc5d5['createOscillator']();_0x5086c2['type']=_0x141cb2['oscType'],_0x5086c2['frequency']['value']=_0x141cb2['freq'];let _0x85fa87=_0x5086c2;if(_0x141cb2['useCompressor']){const _0x2d0dcd=_0x2cc5d5['createDynamicsCompressor']();_0x2d0dcd['threshold']['value']=-0x32,_0x2d0dcd['knee']['value']=0x28,_0x2d0dcd['ratio']['value']=0xc,_0x2d0dcd['attack']['value']=0x0,_0x2d0dcd['release']['value']=0.25,_0x85fa87['connect'](_0x2d0dcd),_0x85fa87=_0x2d0dcd;}if(_0x141cb2['useAllpass']){const _0x2ee627=_0x2cc5d5['createBiquadFilter']();_0x2ee627['type']='allpass',_0x2ee627['frequency']['value']=0x1388,_0x2ee627['Q']['value']=0x5,_0x85fa87['connect'](_0x2ee627),_0x85fa87=_0x2ee627;}_0x85fa87['connect'](_0x2cc5d5['destination']),_0x5086c2['start'](0x0);const [_0x1a1bbe,_0x5125f7]=startRenderingAudio(_0x2cc5d5);_0x5125f7();const _0xbcf493=await _0x1a1bbe;return _0xbcf493['getChannelData'](0x0);}catch{return null;}}function getStabilizedAudioSignal(){return async()=>{const _0x319056=[];for(const _0x5b5a54 of SCENES){const _0x2780aa=await renderScene(_0x5b5a54);if(_0x2780aa===null)return-0x2;for(const _0x1facb3 of WINDOWS){const _0x5002a1=_0x2780aa['subarray'](_0x1facb3['from'],_0x1facb3['to']);_0x319056['push'](...extractMetrics(_0x5002a1));}}const _0x1c09fa=await renderScene(SCENES[0x0]);if(_0x1c09fa!==null){const _0x1fff8a=_0x319056['slice'](0x0,0x4),_0x397f90=extractMetrics(_0x1c09fa['subarray'](WINDOWS[0x0]['from'],WINDOWS[0x0]['to'])),_0x5016b8=_0x1fff8a[0x0],_0x2900db=_0x397f90[0x0];if(_0x5016b8!==0x0){const _0x3ae674=Math['abs'](_0x5016b8-_0x2900db)/Math['abs'](_0x5016b8);if(_0x3ae674>0.001)return-0x4;}}let _0x4cc433=0x0;for(const _0x102076 of _0x319056){const _0x1dae02=_0x102076['toFixed'](0x6);for(let _0x4fd242=0x0;_0x4fd242<_0x1dae02['length'];_0x4fd242++){_0x4cc433=(_0x4cc433<<0x5)-_0x4cc433+_0x1dae02['charCodeAt'](_0x4fd242)|0x0;}}return _0x4cc433>>>0x0;};}function makeInnerError(_0x5838d7){const _0x5bdc3=new Error(_0x5838d7);return _0x5bdc3['name']=_0x5838d7,_0x5bdc3;}function renderAudio(){return new Promise(_0x2c2ef4=>{try{const _0x4ca7ed=window,_0x1a19dd=_0x4ca7ed['OfflineAudioContext']??_0x4ca7ed['webkitOfflineAudioContext'];if(!_0x1a19dd){_0x2c2ef4(null);return;}const _0x5a4916=new _0x1a19dd(0x1,0x1194,0xac44),_0x59a2be=_0x5a4916['createOscillator']();_0x59a2be['type']='triangle',_0x59a2be['frequency']['setValueAtTime'](0x2710,_0x5a4916['currentTime']);const _0x8a1a37=_0x5a4916['createDynamicsCompressor']();_0x8a1a37['threshold']['setValueAtTime'](-0x32,_0x5a4916['currentTime']),_0x8a1a37['knee']['setValueAtTime'](0x28,_0x5a4916['currentTime']),_0x8a1a37['ratio']['setValueAtTime'](0xc,_0x5a4916['currentTime']),_0x8a1a37['attack']['setValueAtTime'](0x0,_0x5a4916['currentTime']),_0x8a1a37['release']['setValueAtTime'](0.25,_0x5a4916['currentTime']),_0x59a2be['connect'](_0x8a1a37),_0x8a1a37['connect'](_0x5a4916['destination']),_0x59a2be['start'](0x0),_0x5a4916['startRendering']()['then'](_0x2c5960=>{_0x2c2ef4(_0x2c5960['getChannelData'](0x0)['slice'](0xfa0,0x1194));})['catch'](()=>_0x2c2ef4(null)),setTimeout(()=>_0x2c2ef4(null),0x7d0);}catch{_0x2c2ef4(null);}});}async function getAudioConsistency(){try{const [_0x3c749c,_0x1c2cb5]=await Promise['all']([renderAudio(),renderAudio()]);if(_0x3c749c===null||_0x1c2cb5===null)return null;const _0x2a4a9e={};_0x2a4a9e['consistent']=![],_0x2a4a9e['delta']=0x1;if(_0x3c749c['length']!==_0x1c2cb5['length'])return _0x2a4a9e;let _0x49a76b=0x0;for(let _0x5b7773=0x0;_0x5b7773<_0x3c749c['length'];_0x5b7773++){_0x49a76b+=Math['abs'](_0x3c749c[_0x5b7773]-_0x1c2cb5[_0x5b7773]);}return{'consistent':_0x49a76b===0x0,'delta':Math['round'](_0x49a76b*0xf4240)/0xf4240};}catch{return null;}}function getAudioContextInfo(){try{const _0x5a2e69=window['AudioContext']??window['webkitAudioContext'];if(_0x5a2e69===undefined)return null;const _0x2a37b3=new _0x5a2e69(),_0x27d394=_0x2a37b3['destination'],_0x37b139={};_0x37b139['maxChannelCount']=_0x27d394['maxChannelCount'],_0x37b139['sampleRate']=_0x2a37b3['sampleRate'],_0x37b139['channelCountMode']=_0x27d394['channelCountMode'],_0x37b139['channelInterpretation']=_0x27d394['channelInterpretation'],_0x37b139['numberOfOutputs']=_0x27d394['numberOfOutputs'];const _0x5c0aa7=_0x37b139;return _0x2a37b3['close']()['catch'](()=>undefined),_0x5c0aa7;}catch{return null;}}function getAudioContextBaseLatency(){const _0xd428b6=isAndroid()||isWebKit();if(!_0xd428b6)return-0x2;const _0x321f81=window['AudioContext'];if(_0x321f81===undefined)return-0x1;const _0x4106c0=new _0x321f81()['baseLatency'];if(_0x4106c0===undefined)return-0x1;if(!isFinite(_0x4106c0))return-0x3;return _0x4106c0;}function getAudioTrap(){return new Promise(_0x1f35a1=>{try{const _0x2aeaba=window,_0x42728b=_0x2aeaba['AudioContext']??_0x2aeaba['webkitAudioContext'];if(!_0x42728b){_0x1f35a1(null);return;}const _0x2b2695=new _0x42728b(),_0x42596e=_0x2b2695['sampleRate']||0xac44,_0x1797d8=0x80,_0x40194b=_0x2b2695['createBuffer'](0x1,_0x1797d8,_0x42596e),_0x1fafd6=new Float32Array(_0x1797d8);for(let _0x3cf543=0x0;_0x3cf543<_0x1797d8;_0x3cf543++){_0x1fafd6[_0x3cf543]=_0x3cf543%0x2===0x0?0.5:-0.5;}if(typeof _0x40194b['copyToChannel']==='function')_0x40194b['copyToChannel'](_0x1fafd6,0x0);else{const _0x15e5a8=_0x40194b['getChannelData'](0x0);for(let _0x114717=0x0;_0x114717<_0x1797d8;_0x114717++){_0x15e5a8[_0x114717]=_0x1fafd6[_0x114717];}}const _0x1d946a=_0x40194b['getChannelData'](0x0);let _0x559863=0x0;for(let _0x18e9a5=0x0;_0x18e9a5<_0x1797d8;_0x18e9a5++){_0x559863+=Math['abs'](_0x1d946a[_0x18e9a5]-_0x1fafd6[_0x18e9a5]);}try{void _0x2b2695['close']();}catch{}_0x1f35a1({'clean':_0x559863===0x0,'delta':Math['round'](_0x559863*0x2540be400)/0x2540be400});}catch{_0x1f35a1(null);}});}async function getBarcodeDetection(){try{const _0x48f962=window['BarcodeDetector'];if(!_0x48f962){const _0x5e3725={};return _0x5e3725['supported']=![],_0x5e3725['formats']=[],_0x5e3725;}const _0x3715cb=await _0x48f962['getSupportedFormats']();return{'supported':!![],'formats':_0x3715cb['sort']()};}catch{return null;}}const HASH_SIZE=0x8,WIDTH=HASH_SIZE+0x1,HEIGHT=HASH_SIZE;function computeDHash(_0x552bb4){const _0x1e53f7=document['createElement']('canvas');_0x1e53f7['width']=WIDTH,_0x1e53f7['height']=HEIGHT;const _0x130caf=_0x1e53f7['getContext']('2d');if(!_0x130caf)return'';_0x130caf['drawImage'](_0x552bb4,0x0,0x0,WIDTH,HEIGHT);const _0x58bf46=_0x130caf['getImageData'](0x0,0x0,WIDTH,HEIGHT)['data'],_0x1307fd=WIDTH*HEIGHT,_0x4e4d7d=new Uint8Array(_0x1307fd);for(let _0x2c6f22=0x0;_0x2c6f22<_0x1307fd;_0x2c6f22++){const _0x21b3e7=_0x2c6f22*0x4;_0x4e4d7d[_0x2c6f22]=_0x58bf46[_0x21b3e7]*0x4d+_0x58bf46[_0x21b3e7+0x1]*0x96+_0x58bf46[_0x21b3e7+0x2]*0x1d>>0x8;}let _0x5574d4='',_0x4acada=0x0,_0x153df8=0x0;for(let _0x5a4a11=0x0;_0x5a4a11<HEIGHT;_0x5a4a11++){for(let _0x399bb7=0x0;_0x399bb7<HASH_SIZE;_0x399bb7++){const _0x215a1f=_0x5a4a11*WIDTH+_0x399bb7;_0x4e4d7d[_0x215a1f]>_0x4e4d7d[_0x215a1f+0x1]&&(_0x153df8|=0x1<<0x3-_0x4acada),_0x4acada++,_0x4acada===0x4&&(_0x5574d4+=_0x153df8['toString'](0x10),_0x153df8=0x0,_0x4acada=0x0);}}return _0x5574d4;}function getCanvasSignal(){return getUnstableCanvasSignal();}function getUnstableCanvasSignal(_0x1eb144){let _0x31fd4f=![],_0x26ca22,_0xda04c9,_0x3f402a='',_0x30c0e0='';const [_0x456187,_0x279442]=makeCanvasContext();if(!isSupported(_0x456187,_0x279442))_0x26ca22=_0xda04c9='unsupported';else{_0x31fd4f=doesSupportWinding(_0x279442);{[_0x26ca22,_0xda04c9,_0x3f402a,_0x30c0e0]=renderImages(_0x456187,_0x279442);}}const _0x44e78c={};return _0x44e78c['winding']=_0x31fd4f,_0x44e78c['geometry']=_0x26ca22,_0x44e78c['text']=_0xda04c9,_0x44e78c['geometryDHash']=_0x3f402a,_0x44e78c['textDHash']=_0x30c0e0,_0x44e78c;}function makeCanvasContext(){const _0x268df5=document['createElement']('canvas');return _0x268df5['width']=0x1,_0x268df5['height']=0x1,[_0x268df5,_0x268df5['getContext']('2d')];}function isSupported(_0x2e9760,_0x2a082d){return _0x2a082d!==undefined&&_0x2a082d!==null&&typeof _0x2e9760['toDataURL']==='function';}function doesSupportWinding(_0x5d8128){return _0x5d8128['rect'](0x0,0x0,0xa,0xa),_0x5d8128['rect'](0x2,0x2,0x6,0x6),!_0x5d8128['isPointInPath'](0x5,0x5,'evenodd');}function renderImages(_0x4f709a,_0x45e843){renderTextImage(_0x4f709a,_0x45e843);const _0x8d6ddb=computeDHash(_0x4f709a),_0x114c83=canvasToString(_0x4f709a),_0x12ef12=canvasToString(_0x4f709a);if(_0x114c83!==_0x12ef12)return['unstable','unstable','',''];renderGeometryImage(_0x4f709a,_0x45e843);const _0x29c43e=computeDHash(_0x4f709a),_0x5bf0bd=canvasToString(_0x4f709a);return[_0x5bf0bd,_0x114c83,_0x29c43e,_0x8d6ddb];}function renderTextImage(_0x4ebc19,_0x280166){_0x4ebc19['width']=0xf0,_0x4ebc19['height']=0x3c,_0x280166['textBaseline']='alphabetic',_0x280166['fillStyle']='#f60',_0x280166['fillRect'](0x64,0x1,0x3e,0x14),_0x280166['fillStyle']='#069',_0x280166['font']='11pt\x20\x22Times\x20New\x20Roman\x22';const _0x755abc='Cwm\x20fjordbank\x20gly\x20'+String['fromCharCode'](0xd83d,0xde03);_0x280166['fillText'](_0x755abc,0x2,0xf),_0x280166['fillStyle']='rgba(102,\x20204,\x200,\x200.2)',_0x280166['font']='18pt\x20Arial',_0x280166['fillText'](_0x755abc,0x4,0x2d);}function renderGeometryImage(_0xf680ec,_0x1a293a){_0xf680ec['width']=0x7a,_0xf680ec['height']=0x6e,_0x1a293a['globalCompositeOperation']='multiply';for(const [_0x360393,_0x888aa2,_0x1daeba]of[['#f2f',0x28,0x28],['#2ff',0x50,0x28],['#ff2',0x3c,0x50]]){_0x1a293a['fillStyle']=_0x360393,_0x1a293a['beginPath'](),_0x1a293a['arc'](_0x888aa2,_0x1daeba,0x28,0x0,Math['PI']*0x2,!![]),_0x1a293a['closePath'](),_0x1a293a['fill']();}_0x1a293a['fillStyle']='#f9c',_0x1a293a['arc'](0x3c,0x3c,0x3c,0x0,Math['PI']*0x2,!![]),_0x1a293a['arc'](0x3c,0x3c,0x14,0x0,Math['PI']*0x2,!![]),_0x1a293a['fill']('evenodd');}function canvasToString(_0x3abc64){return _0x3abc64['toDataURL']();}function getCanvasAdvanced(){try{const _0x7b4f29=document['createElement']('canvas'),_0x3ba75c=_0x7b4f29['getContext']('2d');if(!_0x3ba75c)return null;const _0x1ef63a=renderBlendModes(_0x7b4f29,_0x3ba75c),_0x18f319=renderShadows(_0x7b4f29,_0x3ba75c),_0x199fc3=renderGradientPath(_0x7b4f29,_0x3ba75c),_0x5cca19=testOffscreenConsistency(_0x7b4f29,_0x3ba75c),_0x46635e={};return _0x46635e['blendDHash']=_0x1ef63a,_0x46635e['shadowDHash']=_0x18f319,_0x46635e['gradientDHash']=_0x199fc3,_0x46635e['offscreenConsistent']=_0x5cca19,_0x46635e;}catch{return null;}}function renderBlendModes(_0x56f1d1,_0x3ce29f){return _0x56f1d1['width']=0x64,_0x56f1d1['height']=0x64,_0x3ce29f['clearRect'](0x0,0x0,0x64,0x64),_0x3ce29f['fillStyle']='#e74c3c',_0x3ce29f['fillRect'](0xa,0xa,0x3c,0x3c),_0x3ce29f['globalCompositeOperation']='multiply',_0x3ce29f['fillStyle']='#3498db',_0x3ce29f['fillRect'](0x1e,0x1e,0x3c,0x3c),_0x3ce29f['globalCompositeOperation']='screen',_0x3ce29f['fillStyle']='#2ecc71',_0x3ce29f['beginPath'](),_0x3ce29f['arc'](0x32,0x32,0x1e,0x0,Math['PI']*0x2),_0x3ce29f['fill'](),_0x3ce29f['globalCompositeOperation']='overlay',_0x3ce29f['fillStyle']='#f39c12',_0x3ce29f['fillRect'](0x14,0x14,0x1e,0x3c),_0x3ce29f['globalCompositeOperation']='source-over',computeDHash(_0x56f1d1);}function renderShadows(_0x53e590,_0x24e017){return _0x53e590['width']=0x78,_0x53e590['height']=0x50,_0x24e017['clearRect'](0x0,0x0,0x78,0x50),_0x24e017['shadowColor']='rgba(0,\x200,\x200,\x200.5)',_0x24e017['shadowBlur']=0xa,_0x24e017['shadowOffsetX']=0x5,_0x24e017['shadowOffsetY']=0x5,_0x24e017['fillStyle']='#9b59b6',_0x24e017['fillRect'](0x14,0xf,0x28,0x28),_0x24e017['shadowColor']='rgba(52,\x20152,\x20219,\x200.7)',_0x24e017['shadowBlur']=0xf,_0x24e017['shadowOffsetX']=-0x3,_0x24e017['shadowOffsetY']=0x3,_0x24e017['fillStyle']='#1abc9c',_0x24e017['beginPath'](),_0x24e017['arc'](0x55,0x28,0x19,0x0,Math['PI']*0x2),_0x24e017['fill'](),_0x24e017['shadowColor']='transparent',_0x24e017['shadowBlur']=0x0,_0x24e017['shadowOffsetX']=0x0,_0x24e017['shadowOffsetY']=0x0,computeDHash(_0x53e590);}function renderGradientPath(_0x47b717,_0x20caa8){_0x47b717['width']=0x64,_0x47b717['height']=0x64,_0x20caa8['clearRect'](0x0,0x0,0x64,0x64);const _0xc91e31=_0x20caa8['createRadialGradient'](0x32,0x32,0x5,0x32,0x32,0x2d);_0xc91e31['addColorStop'](0x0,'#e74c3c'),_0xc91e31['addColorStop'](0.5,'#f39c12'),_0xc91e31['addColorStop'](0x1,'#2ecc71'),_0x20caa8['fillStyle']=_0xc91e31,_0x20caa8['beginPath'](),_0x20caa8['moveTo'](0x32,0x5),_0x20caa8['lineTo'](0x5f,0x23),_0x20caa8['lineTo'](0x50,0x5a),_0x20caa8['lineTo'](0x14,0x5a),_0x20caa8['lineTo'](0x5,0x23),_0x20caa8['closePath'](),_0x20caa8['fill']();try{const _0x30bd02=_0x20caa8['createConicGradient'](0x0,0x32,0x32);_0x30bd02['addColorStop'](0x0,'red'),_0x30bd02['addColorStop'](0.33,'green'),_0x30bd02['addColorStop'](0.66,'blue'),_0x30bd02['addColorStop'](0x1,'red'),_0x20caa8['globalCompositeOperation']='difference',_0x20caa8['fillStyle']=_0x30bd02,_0x20caa8['fillRect'](0xa,0xa,0x50,0x50),_0x20caa8['globalCompositeOperation']='source-over';}catch{}return computeDHash(_0x47b717);}function testOffscreenConsistency(_0x2ebc82,_0xddac20){if(typeof OffscreenCanvas==='undefined')return null;try{_0x2ebc82['width']=0x32,_0x2ebc82['height']=0x32,_0xddac20['clearRect'](0x0,0x0,0x32,0x32),_0xddac20['fillStyle']='#e74c3c',_0xddac20['beginPath'](),_0xddac20['arc'](0x19,0x19,0x14,0x0,Math['PI']*0x2),_0xddac20['fill']();const _0x2030cf=computeDHash(_0x2ebc82),_0x365a20=new OffscreenCanvas(0x32,0x32),_0xde74d3=_0x365a20['getContext']('2d');if(!_0xde74d3)return null;_0xde74d3['fillStyle']='#e74c3c',_0xde74d3['beginPath'](),_0xde74d3['arc'](0x19,0x19,0x14,0x0,Math['PI']*0x2),_0xde74d3['fill']();const _0x279d60=document['createElement']('canvas');_0x279d60['width']=0x32,_0x279d60['height']=0x32;const _0x286825=_0x279d60['getContext']('2d');if(!_0x286825)return null;const _0x498117=_0x365a20['transferToImageBitmap']();_0x286825['drawImage'](_0x498117,0x0,0x0);const _0x465a0e=computeDHash(_0x279d60);return _0x2030cf===_0x465a0e;}catch{return null;}}function fnv1aBytes(_0x5a08f7){let _0x405213=0x811c9dc5;for(let _0xef87a5=0x0;_0xef87a5<_0x5a08f7['length'];_0xef87a5++){_0x405213^=_0x5a08f7[_0xef87a5],_0x405213=Math['imul'](_0x405213,0x1000193);}return _0x405213>>>0x0;}const CANVAS_DIM=0x20,SEED=[0x4d6f6f6e,0x57616b65,0x46696e67,0x65725072];function xoshiro128ss(_0x340ed5,_0x14a995,_0x425cde,_0x4c1950){let _0x2f03c0=_0x340ed5,_0x56fef7=_0x14a995,_0xbedcaa=_0x425cde,_0x5800f0=_0x4c1950;return function(){const _0x2b39f4=_0x56fef7<<0x9;let _0x27046f=0x5*_0x2f03c0;return _0x27046f=0x9*(_0x27046f<<0x7|_0x27046f>>>0x19),_0x5800f0^=_0x56fef7,_0x56fef7^=_0xbedcaa^=_0x2f03c0,_0x2f03c0^=_0x5800f0,_0xbedcaa^=_0x2b39f4,_0x5800f0=_0x5800f0<<0xb|_0x5800f0>>>0x15,(_0x27046f>>>0x0)/0x100000000;};}const fnv1a$2=fnv1aBytes;function getCanvasRandom(){try{const _0x5a55d9=document['createElement']('canvas'),_0x1531a8=_0x5a55d9['getContext']('2d');if(_0x1531a8===null)return null;_0x5a55d9['width']=CANVAS_DIM,_0x5a55d9['height']=CANVAS_DIM;const _0x17a03a=xoshiro128ss(SEED[0x0],SEED[0x1],SEED[0x2],SEED[0x3]),_0x3cd508=_0x17a03a()*CANVAS_DIM,_0x31eb14=_0x17a03a()*CANVAS_DIM,_0xa9631a=_0x1531a8['createRadialGradient'](_0x3cd508,_0x31eb14,0x2,_0x3cd508,_0x31eb14,CANVAS_DIM*0.8);for(let _0x354782=0x0;_0x354782<0x5;_0x354782++){const _0x5a2b4d=Math['floor'](_0x17a03a()*0x100),_0x887d04=Math['floor'](_0x17a03a()*0x100),_0x3f2d21=Math['floor'](_0x17a03a()*0x100);_0xa9631a['addColorStop'](_0x354782/0x4,'rgb('+_0x5a2b4d+','+_0x887d04+','+_0x3f2d21+')');}_0x1531a8['fillStyle']=_0xa9631a,_0x1531a8['fillRect'](0x0,0x0,CANVAS_DIM,CANVAS_DIM);for(let _0x218094=0x0;_0x218094<0x3;_0x218094++){_0x1531a8['beginPath'](),_0x1531a8['arc'](_0x17a03a()*CANVAS_DIM,_0x17a03a()*CANVAS_DIM,_0x17a03a()*CANVAS_DIM*0.4+0x2,_0x17a03a()*Math['PI']*0x2,_0x17a03a()*Math['PI']*0x2),_0x1531a8['strokeStyle']='rgba('+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+','+(_0x17a03a()*0.5+0.5)['toFixed'](0x2)+')',_0x1531a8['lineWidth']=_0x17a03a()*0x3+0.5,_0x1531a8['stroke']();}for(let _0x369214=0x0;_0x369214<0x2;_0x369214++){_0x1531a8['beginPath'](),_0x1531a8['moveTo'](_0x17a03a()*CANVAS_DIM,_0x17a03a()*CANVAS_DIM),_0x1531a8['bezierCurveTo'](_0x17a03a()*CANVAS_DIM,_0x17a03a()*CANVAS_DIM,_0x17a03a()*CANVAS_DIM,_0x17a03a()*CANVAS_DIM,_0x17a03a()*CANVAS_DIM,_0x17a03a()*CANVAS_DIM),_0x1531a8['strokeStyle']='rgba('+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+','+(_0x17a03a()*0.5+0.5)['toFixed'](0x2)+')',_0x1531a8['lineWidth']=_0x17a03a()*0x2+0.5,_0x1531a8['stroke']();}_0x1531a8['shadowBlur']=_0x17a03a()*0x8+0x2,_0x1531a8['shadowColor']='rgba('+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+',0.7)',_0x1531a8['shadowOffsetX']=_0x17a03a()*0x4-0x2,_0x1531a8['shadowOffsetY']=_0x17a03a()*0x4-0x2,_0x1531a8['fillStyle']='rgb('+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+')',_0x1531a8['fillRect'](_0x17a03a()*CANVAS_DIM*0.5,_0x17a03a()*CANVAS_DIM*0.5,CANVAS_DIM*0.4,CANVAS_DIM*0.4),_0x1531a8['shadowBlur']=0x0,_0x1531a8['shadowColor']='transparent',_0x1531a8['shadowOffsetX']=0x0,_0x1531a8['shadowOffsetY']=0x0;const _0x15bb04=['serif','sans-serif','monospace'];for(let _0x39b7da=0x0;_0x39b7da<0x3;_0x39b7da++){const _0x5435e8=Math['floor'](_0x17a03a()*0xc)+0x8;_0x1531a8['font']=_0x5435e8+'px\x20'+_0x15bb04[_0x39b7da%0x3],_0x1531a8['fillStyle']='rgb('+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+')',_0x1531a8['fillText'](String['fromCharCode'](Math['floor'](_0x17a03a()*0x1a)+0x41,Math['floor'](_0x17a03a()*0x1a)+0x61,Math['floor'](_0x17a03a()*0xa)+0x30),_0x17a03a()*CANVAS_DIM*0.7,_0x17a03a()*CANVAS_DIM*0.8+_0x5435e8);}_0x1531a8['globalAlpha']=0.3;const _0x23d6f7=_0x1531a8['createLinearGradient'](0x0,0x0,CANVAS_DIM,CANVAS_DIM);_0x23d6f7['addColorStop'](0x0,'rgba('+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+',1)'),_0x23d6f7['addColorStop'](0x1,'rgba('+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+','+Math['floor'](_0x17a03a()*0x100)+',1)'),_0x1531a8['fillStyle']=_0x23d6f7,_0x1531a8['fillRect'](0x0,0x0,CANVAS_DIM,CANVAS_DIM),_0x1531a8['globalAlpha']=0x1;const _0x25f925=_0x1531a8['getImageData'](0x0,0x0,_0x5a55d9['width'],_0x5a55d9['height']),_0xde0461=fnv1a$2(_0x25f925['data']),_0x382d78=computeDHash(_0x5a55d9),_0x448413={};return _0x448413['p']=_0xde0461,_0x448413['d']=CANVAS_DIM,_0x448413['dHash']=_0x382d78,_0x448413;}catch{return null;}}function getColorGamut(){for(const _0x169e76 of['rec2020','p3','srgb']){if(matchMedia('(color-gamut:\x20'+_0x169e76+')')['matches'])return _0x169e76;}return undefined;}const _0xff3732={};_0xff3732['prop']='width',_0xff3732['value']='calc(sin(1)\x20*\x201000px)',_0xff3732['label']='sin1';const _0x47adbe={};_0x47adbe['prop']='width',_0x47adbe['value']='calc(cos(1)\x20*\x201000px)',_0x47adbe['label']='cos1';const _0x5c2955={};_0x5c2955['prop']='width',_0x5c2955['value']='calc(tan(0.5)\x20*\x201000px)',_0x5c2955['label']='tan05';const _0x37575a={};_0x37575a['prop']='width',_0x37575a['value']='calc(sin(1.5)\x20*\x20cos(2.3)\x20*\x2010000px)',_0x37575a['label']='sincos';const _0x93dc7c={};_0x93dc7c['prop']='width',_0x93dc7c['value']='calc(sin(0.001)\x20*\x201000000px)',_0x93dc7c['label']='sin_small';const _0x31054c={};_0x31054c['prop']='width',_0x31054c['value']='calc(cos(3.14159265)\x20*\x2010000px\x20+\x2010000px)',_0x31054c['label']='cos_pi';const _0x19910f={};_0x19910f['prop']='width',_0x19910f['value']='calc(tan(1.5)\x20*\x20100px\x20+\x2010000px)',_0x19910f['label']='tan15';const _0x168824={};_0x168824['prop']='width',_0x168824['value']='calc(sin(12345.6789)\x20*\x201000px\x20+\x201000px)',_0x168824['label']='sin_large';const _0x2ceaff={};_0x2ceaff['prop']='height',_0x2ceaff['value']='calc(sqrt(2)\x20*\x201000px)',_0x2ceaff['label']='sqrt2';const _0x1986a5={};_0x1986a5['prop']='height',_0x1986a5['value']='calc(exp(1)\x20*\x20100px)',_0x1986a5['label']='exp1';const _0x393fff={};_0x393fff['prop']='height',_0x393fff['value']='calc(log(10)\x20*\x201000px)',_0x393fff['label']='log10';const _0x4c022d={};_0x4c022d['prop']='height',_0x4c022d['value']='calc(hypot(3,\x204)\x20*\x20100px)',_0x4c022d['label']='hypot34';const EXPRESSIONS=[_0xff3732,_0x47adbe,_0x5c2955,_0x37575a,_0x93dc7c,_0x31054c,_0x19910f,_0x168824,_0x2ceaff,_0x1986a5,_0x393fff,_0x4c022d];function getCssTrigPrecision(){try{if(typeof CSS==='undefined'||typeof CSS['supports']!=='function')return null;if(!CSS['supports']('width','calc(sin(1)\x20*\x201px)'))return null;const _0x399743=document['createElement']('div');_0x399743['style']['position']='absolute',_0x399743['style']['visibility']='hidden',_0x399743['style']['overflow']='hidden',_0x399743['style']['top']='-9999px',_0x399743['style']['left']='-9999px',document['body']['appendChild'](_0x399743);const _0x3d65e3={};for(const _0x25723d of EXPRESSIONS){const _0xf76919=document['createElement']('div');_0xf76919['style']['position']='absolute',_0xf76919['style'][_0x25723d['prop']]=_0x25723d['value'],_0x399743['appendChild'](_0xf76919);const _0x1bc9f6=getComputedStyle(_0xf76919),_0x47e7cf=parseFloat(_0x1bc9f6[_0x25723d['prop']]);!isNaN(_0x47e7cf)&&isFinite(_0x47e7cf)&&(_0x3d65e3[_0x25723d['label']]=Math['round'](_0x47e7cf*0xf4240)/0xf4240);}return document['body']['removeChild'](_0x399743),Object['keys'](_0x3d65e3)['length']>0x0?_0x3d65e3:null;}catch{return null;}}async function withIframe(_0x51af9f,_0x2211d5,_0x24a2bc=0x32){const _0x366b89=document;while(_0x366b89['body']===null){await wait(_0x24a2bc);}const _0xf7ffc1=_0x366b89['createElement']('iframe');try{await new Promise((_0x1b4a00,_0xf9f20a)=>{let _0x2ecede=![];const _0x872ec0=()=>{_0x2ecede=!![],_0x1b4a00();},_0x4cb75a=_0x3b01c5=>{_0x2ecede=!![],_0xf9f20a(_0x3b01c5);};_0xf7ffc1['onload']=_0x872ec0,_0xf7ffc1['onerror']=_0x4cb75a;const {style:_0x389b9d}=_0xf7ffc1;_0x389b9d['setProperty']('display','block','important'),_0x389b9d['position']='absolute',_0x389b9d['top']='0',_0x389b9d['left']='0',_0x389b9d['visibility']='hidden';_0x2211d5!==undefined&&_0x2211d5!==''&&'srcdoc'in _0xf7ffc1?_0xf7ffc1['srcdoc']=_0x2211d5:_0xf7ffc1['src']='about:blank';_0x366b89['body']['appendChild'](_0xf7ffc1);const _0x291e46=()=>{if(_0x2ecede)return;_0xf7ffc1['contentWindow']?.['document']['readyState']==='complete'?_0x872ec0():setTimeout(_0x291e46,0xa);};_0x291e46();});while(!_0xf7ffc1['contentWindow']?.['document']['body']){await wait(_0x24a2bc);}return await _0x51af9f(_0xf7ffc1,_0xf7ffc1['contentWindow']);}finally{_0xf7ffc1['parentNode']?.['removeChild'](_0xf7ffc1);}}class IframePool{['iframe']=null;['iframeReady']=null;['queue']=[];['processing']=![];['idleTimer']=null;['idleTimeoutMs'];constructor(_0x3ed0ca=0x1388){this['idleTimeoutMs']=_0x3ed0ca;}['execute'](_0xe8c8b4){return new Promise((_0x477705,_0x581a36)=>{const _0x39a5e3={};_0x39a5e3['action']=_0xe8c8b4,_0x39a5e3['resolve']=_0x477705,_0x39a5e3['reject']=_0x581a36,this['queue']['push'](_0x39a5e3),void this['processQueue']();});}async['processQueue'](){if(this['processing'])return;this['processing']=!![];try{while(this['queue']['length']>0x0){this['idleTimer']!==null&&(clearTimeout(this['idleTimer']),this['idleTimer']=null);await this['ensureIframe']();const _0x5c535f=this['queue']['shift'](),_0x5c4445=this['iframe'];if(_0x5c535f===undefined||_0x5c4445===null)continue;try{const _0x366349=await _0x5c535f['action'](_0x5c4445,_0x5c4445['contentWindow']);_0x5c535f['resolve'](_0x366349);}catch(_0x61b860){_0x5c535f['reject'](_0x61b860);}}}finally{this['processing']=![],this['scheduleCleanup']();}}async['ensureIframe'](){if(this['iframe']?.['contentWindow']?.['document']['body'])return;const _0x384c76=document;while(_0x384c76['body']===null){await wait(0x32);}if(this['iframeReady']){await this['iframeReady'];if(this['iframe']?.['contentWindow']?.['document']['body'])return;}const _0x2ca962=_0x384c76['createElement']('iframe');this['iframe']=_0x2ca962,this['iframeReady']=new Promise((_0x5a8738,_0x2fa3a3)=>{let _0x16ea78=![];_0x2ca962['onload']=()=>{_0x16ea78=!![],_0x5a8738();},_0x2ca962['onerror']=_0x189a28=>{_0x16ea78=!![],_0x2fa3a3(_0x189a28);};const {style:_0x3472f5}=_0x2ca962;_0x3472f5['setProperty']('display','block','important'),_0x3472f5['position']='absolute',_0x3472f5['top']='0',_0x3472f5['left']='0',_0x3472f5['visibility']='hidden',_0x2ca962['src']='about:blank',_0x384c76['body']['appendChild'](_0x2ca962);const _0x384f86=()=>{if(_0x16ea78)return;_0x2ca962['contentWindow']?.['document']['readyState']==='complete'?(_0x16ea78=!![],_0x5a8738()):setTimeout(_0x384f86,0xa);};_0x384f86();}),await this['iframeReady'];while(!_0x2ca962['contentWindow']?.['document']['body']){await wait(0x32);}}['scheduleCleanup'](){this['idleTimer']=setTimeout(()=>{this['destroy']();},this['idleTimeoutMs']);}['destroy'](){this['idleTimer']!==null&&(clearTimeout(this['idleTimer']),this['idleTimer']=null),this['iframe']&&(this['iframe']['parentNode']?.['removeChild'](this['iframe']),this['iframe']=null,this['iframeReady']=null);}}let sharedPool=null;function getIframePool(){return sharedPool??=new IframePool(),sharedPool;}function isAnyParentCrossOrigin(){let _0x42eb5e=window;for(;;){const _0x3e5a41=_0x42eb5e['parent'];if(_0x3e5a41===_0x42eb5e)return![];try{if(_0x3e5a41['location']['origin']!==_0x42eb5e['location']['origin'])return!![];}catch(_0x4d3fb5){if(_0x4d3fb5 instanceof Error&&_0x4d3fb5['name']==='SecurityError')return!![];throw _0x4d3fb5;}_0x42eb5e=_0x3e5a41;}}function getEmojiSignal(){let _0x3f362d='';for(let _0x4d2332=0x1f600;_0x4d2332<=0x1f64f;_0x4d2332++){_0x3f362d+=String['fromCodePoint'](_0x4d2332);}return getIframePool()['execute']((_0x5a551c,_0x22bdab)=>{const _0x4e4621=_0x22bdab['document'],_0x3fe18d=_0x4e4621['createElement']('span');_0x3fe18d['style']['whiteSpace']='nowrap',_0x3fe18d['innerText']=_0x3f362d,_0x4e4621['body']['append'](_0x3fe18d);const _0x4e688b={},_0xc01298=['x','y','left','right','bottom','height','top','width'],_0x50e5b9=_0x3fe18d['getBoundingClientRect']();for(const _0x6112df of _0xc01298){_0x6112df in _0x50e5b9&&(_0x4e688b[_0x6112df]=Math['round'](_0x50e5b9[_0x6112df]*0x64)/0x64);}const _0x4d0bf2=_0x22bdab['getComputedStyle'](_0x3fe18d,null)['getPropertyValue']('font-family');return _0x4e688b['font']=_0x4d0bf2,_0x4e4621['body']['removeChild'](_0x3fe18d),_0x4e688b;});}const defaultText='mmMwWLliI0fiflO&1',_0x545cd5={};_0x545cd5['font']='-apple-system-body';const _0x3d9b38={};_0x3d9b38['fontFamily']='serif';const _0x3d4e65={};_0x3d4e65['fontFamily']='sans-serif';const _0x100d20={};_0x100d20['fontFamily']='monospace';const _0x61aca3={};_0x61aca3['fontSize']='1px';const _0x4cba34={};_0x4cba34['fontFamily']='system-ui';const _0x243c5e={};_0x243c5e['default']=[],_0x243c5e['apple']=[_0x545cd5],_0x243c5e['serif']=[_0x3d9b38],_0x243c5e['sans']=[_0x3d4e65],_0x243c5e['mono']=[_0x100d20],_0x243c5e['min']=[_0x61aca3],_0x243c5e['system']=[_0x4cba34];const presets=_0x243c5e;function getFontPreferences(){return withNaturalFonts((_0x41d32e,_0x548087,_0xd04404)=>{const _0x4548d1={},_0x5e84a2={};for(const _0x3f94cf of Object['keys'](presets)){const [_0x519e8e={},_0x2f77cd=defaultText]=presets[_0x3f94cf],_0x4122ba=_0x41d32e['createElement']('span');_0x4122ba['textContent']=_0x2f77cd,_0x4122ba['style']['whiteSpace']='nowrap';for(const _0x377293 of Object['keys'](_0x519e8e)){const _0x4ceda7=_0x519e8e[_0x377293];_0x4ceda7!==undefined&&(_0x4122ba['style'][_0x377293]=_0x4ceda7);}_0x4548d1[_0x3f94cf]=_0x4122ba,_0x548087['append'](_0x41d32e['createElement']('br'),_0x4122ba);}const _0x11e24b=_0xd04404['devicePixelRatio']>0x0?_0xd04404['devicePixelRatio']:0x1;for(const _0x49d422 of Object['keys'](presets)){_0x5e84a2[_0x49d422]=Math['round'](_0x4548d1[_0x49d422]['getBoundingClientRect']()['width']*_0x11e24b*0x64)/0x64;}return _0x5e84a2;});}function withNaturalFonts(_0x38b793,_0x44a198=0xfa0){return withIframe((_0x939b5a,_0xfe068)=>{const _0x6713ce=_0xfe068['document'],_0x3e2089=_0x6713ce['body'],_0x2d72ec=_0x3e2089['style'];_0x2d72ec['width']=_0x44a198+'px',_0x2d72ec['webkitTextSizeAdjust']=_0x2d72ec['textSizeAdjust']='none';if(isChromium())_0x3e2089['style']['zoom']=''+0x1/_0xfe068['devicePixelRatio'];else isWebKit()&&(_0x3e2089['style']['zoom']='reset');const _0x378d6b=_0x6713ce['createElement']('div'),_0x1238f7={};return _0x1238f7['length']=_0x44a198/0x14<<0x0,_0x378d6b['textContent']=Array['from'](_0x1238f7)['map'](()=>'word')['join']('\x20'),_0x3e2089['appendChild'](_0x378d6b),_0x38b793(_0x6713ce,_0x3e2089,_0xfe068);},'<!doctype\x20html><html><head><meta\x20name=\x22viewport\x22\x20content=\x22width=device-width,\x20initial-scale=1\x22>');}const testString='mmMwWLliI0fiflO&1',textSize='48px',baseFonts=['monospace','sans-serif','serif'],fontList=['sans-serif-thin','ARNO\x20PRO','Agency\x20FB','Arabic\x20Typesetting','Arial','Arial\x20Black','Arial\x20Narrow','Arial\x20Rounded\x20MT','Arial\x20Unicode\x20MS','Arimo','Archivo','AvantGarde\x20Bk\x20BT','BankGothic\x20Md\x20BT','Barlow','Batang','Bebas\x20Neue','Bitter','Bitstream\x20Vera\x20Sans\x20Mono','Bookman','Cabin','Calibri','Candara','Century','Century\x20Gothic','Clarendon','Comic\x20Sans\x20MS','Constantia','Courier','Courier\x20New','Crimson\x20Text','DM\x20Mono','DM\x20Sans','DM\x20Serif\x20Display','DM\x20Serif\x20Text','Dosis','Droid\x20Sans','EUROSTILE','Exo','Fira\x20Code','Fira\x20Sans','Franklin\x20Gothic','Franklin\x20Gothic\x20Medium','Futura\x20Bk\x20BT','Futura\x20Md\x20BT','Garamond','Geneva','Georgia','GOTHAM','Gill\x20Sans','HELV','Haettenschweiler','Helvetica','Helvetica\x20Neue','Humanst521\x20BT','Impact','Inconsolata','Indie\x20Flower','Inter','Josefin\x20Sans','Karla','Lato','Leelawadee','Letter\x20Gothic','Levenim\x20MT','Lexend','Lucida\x20Bright','Lucida\x20Console','Lucida\x20Sans','Lucida\x20Sans\x20Unicode','Manrope','Marlett','Meiryo\x20UI','Menlo','Merriweather','Merriweather\x20Sans','Microsoft\x20Uighur','Minion\x20Pro','Monotype\x20Corsiva','Montserrat','MS\x20Mincho','MS\x20Outlook','MS\x20Reference\x20Specialty','MS\x20UI\x20Gothic','MT\x20Extra','Myriad','MYRIAD\x20PRO','Noto\x20Sans','Nunito','Nunito\x20Sans','Open\x20Sans','Optima','Orbitron','Oswald','Pacifico','Palatino','Perpetua','PMingLiU','Poppins','Pristina','Prompt','PT\x20Sans','PT\x20Serif','Public\x20Sans','Quicksand','Rajdhani','Recursive','Roboto','Roboto\x20Condensed','Rockwell','Rubik','SCRIPTINA','Segoe\x20Print','Segoe\x20Script','Segoe\x20UI','Segoe\x20UI\x20Light','Serifa','SimHei','Small\x20Fonts','Sora','Source\x20Sans\x20Pro','Space\x20Mono','Staccato222\x20BT','Tahoma','Taviraj','Times','Times\x20New\x20Roman','Titillium\x20Web','TRAJAN\x20PRO','Trebuchet\x20MS','Ubuntu','Univers\x20CE\x2055\x20Medium','Varela\x20Round','Verdana','Vrinda','Work\x20Sans','ZWAdobeF'];function getFonts(){return getIframePool()['execute']((_0x457bee,{document:_0x5a9c0f})=>{const _0x2fb6c2=_0x5a9c0f['body'];_0x2fb6c2['style']['fontSize']=textSize;const _0x2267ac=_0x5a9c0f['createElement']('div');_0x2267ac['style']['setProperty']('visibility','hidden','important');const _0x4665f5={},_0x32eb21={},_0x4fadbe=_0x1b2f13=>{const _0x2e8b90=_0x5a9c0f['createElement']('span'),{style:_0x2ce9af}=_0x2e8b90;return _0x2ce9af['position']='absolute',_0x2ce9af['top']='0',_0x2ce9af['left']='0',_0x2ce9af['fontFamily']=_0x1b2f13,_0x2e8b90['textContent']=testString,_0x2267ac['appendChild'](_0x2e8b90),_0x2e8b90;},_0x2078e8=(_0x3c741d,_0x5e6108)=>{return _0x4fadbe('\x27'+_0x3c741d+'\x27,'+_0x5e6108);},_0x47a08=()=>{return baseFonts['map'](_0x4fadbe);},_0x455884=()=>{const _0xd528f4={};for(const _0x4ce874 of fontList){_0xd528f4[_0x4ce874]=baseFonts['map'](_0x3729fe=>_0x2078e8(_0x4ce874,_0x3729fe));}return _0xd528f4;},_0x45f14d=_0x31a4c7=>{return baseFonts['some']((_0x545fd6,_0xc9b065)=>_0x31a4c7[_0xc9b065]['offsetWidth']!==_0x4665f5[_0x545fd6]||_0x31a4c7[_0xc9b065]['offsetHeight']!==_0x32eb21[_0x545fd6]);},_0x3f92e2=_0x47a08(),_0x1d826d=_0x455884();_0x2fb6c2['appendChild'](_0x2267ac);for(let _0x2ed0c3=0x0;_0x2ed0c3<baseFonts['length'];_0x2ed0c3++){_0x4665f5[baseFonts[_0x2ed0c3]]=_0x3f92e2[_0x2ed0c3]['offsetWidth'],_0x32eb21[baseFonts[_0x2ed0c3]]=_0x3f92e2[_0x2ed0c3]['offsetHeight'];}return fontList['filter'](_0x376ef1=>_0x45f14d(_0x1d826d[_0x376ef1]));});}const ROTATION_MATRICES=[[0x0,0x1,0x0,Math['PI']/0x7],[0x1,0x0,0x0,Math['PI']/0x8],[0x0,0x1,0x1,Math['PI']/0x4],[0x1,0x2,0x1,Math['PI']/0x8]],TEX_WIDTH=0x7,TEX_HEIGHT=0x9,BYTES_PER_PIXEL=0x4,RT_WIDTH=0x20,RT_HEIGHT=0x20,TIMING_BUCKET_US=0x64,TIMEOUT_MS=0x5dc,WGSL_SHADER='\x0astruct\x20Uniforms\x20{\x0a\x20\x20params:\x20vec4f,\x0a}\x0a\x0a@group(0)\x20@binding(0)\x20var\x20mySampler:\x20sampler;\x0a@group(0)\x20@binding(1)\x20var\x20myTexture:\x20texture_2d<f32>;\x0a@group(1)\x20@binding(0)\x20var<uniform>\x20uniforms:\x20Uniforms;\x0a\x0astruct\x20VertexOutput\x20{\x0a\x20\x20@builtin(position)\x20position:\x20vec4f,\x0a\x20\x20@location(0)\x20uv:\x20vec2f,\x0a}\x0a\x0a@vertex\x0afn\x20vs(@builtin(vertex_index)\x20idx:\x20u32)\x20->\x20VertexOutput\x20{\x0a\x20\x20var\x20pos\x20=\x20array<vec2f,\x206>(\x0a\x20\x20\x20\x20vec2f(-1,\x20-1),\x20vec2f(1,\x20-1),\x20vec2f(-1,\x201),\x0a\x20\x20\x20\x20vec2f(-1,\x201),\x20vec2f(1,\x20-1),\x20vec2f(1,\x201),\x0a\x20\x20);\x0a\x20\x20let\x20p\x20=\x20uniforms.params;\x0a\x20\x20let\x20angle\x20=\x20p.w;\x0a\x20\x20let\x20axis\x20=\x20normalize(p.xyz);\x0a\x20\x20let\x20c\x20=\x20cos(angle);\x0a\x20\x20let\x20s\x20=\x20sin(angle);\x0a\x20\x20let\x20t\x20=\x201.0\x20-\x20c;\x0a\x20\x20let\x20x\x20=\x20axis.x;\x20let\x20y\x20=\x20axis.y;\x20let\x20z\x20=\x20axis.z;\x0a\x20\x20let\x20m\x20=\x20mat3x3f(\x0a\x20\x20\x20\x20vec3f(t*x*x\x20+\x20c,\x20t*x*y\x20+\x20s*z,\x20t*x*z\x20-\x20s*y),\x0a\x20\x20\x20\x20vec3f(t*x*y\x20-\x20s*z,\x20t*y*y\x20+\x20c,\x20t*y*z\x20+\x20s*x),\x0a\x20\x20\x20\x20vec3f(t*x*z\x20+\x20s*y,\x20t*y*z\x20-\x20s*x,\x20t*z*z\x20+\x20c),\x0a\x20\x20);\x0a\x20\x20let\x20v\x20=\x20pos[idx];\x0a\x20\x20let\x20rotated\x20=\x20m\x20*\x20vec3f(v,\x200.0);\x0a\x20\x20var\x20out:\x20VertexOutput;\x0a\x20\x20out.position\x20=\x20vec4f(rotated.xy,\x200.0,\x201.0);\x0a\x20\x20out.uv\x20=\x20v\x20*\x200.5\x20+\x200.5;\x0a\x20\x20return\x20out;\x0a}\x0a\x0a@fragment\x0afn\x20fs(@location(0)\x20uv:\x20vec2f)\x20->\x20@location(0)\x20vec4f\x20{\x0a\x20\x20return\x20textureSample(myTexture,\x20mySampler,\x20uv);\x0a}\x0a';async function getAdapterInfo$1(_0x277d2d){const _0x54e0e0=_0x277d2d['info'];if(_0x54e0e0!==undefined&&_0x54e0e0!==null){const _0x5c8fa6={};return _0x5c8fa6['vendor']=_0x54e0e0['vendor'],_0x5c8fa6['architecture']=_0x54e0e0['architecture'],_0x5c8fa6;}if(typeof _0x277d2d['requestAdapterInfo']==='function'){const _0x3c8932=await _0x277d2d['requestAdapterInfo'](),_0x3860f7={};return _0x3860f7['vendor']=_0x3c8932['vendor'],_0x3860f7['architecture']=_0x3c8932['architecture'],_0x3860f7;}const _0x28aa89={};return _0x28aa89['vendor']='',_0x28aa89['architecture']='',_0x28aa89;}function createTextureData(){const _0x23b1b5=[],_0x3e3659=[[0xff,0x0,0x0,0xff],[0x0,0xff,0x0,0xff],[0x0,0x0,0xff,0xff]];for(let _0x9cea85=0x0;_0x9cea85<TEX_WIDTH*TEX_HEIGHT;_0x9cea85++){_0x23b1b5['push'](..._0x3e3659[_0x9cea85%0x3]);}return new Uint8Array(_0x23b1b5);}function quantizeTiming(_0x5a667a){const _0x117ca7=Number(_0x5a667a/0x3e8n);return Math['round'](_0x117ca7/TIMING_BUCKET_US)*TIMING_BUCKET_US;}const fnv1a$1=fnv1aBytes;async function renderAndReadback(_0x3027d9,_0x589c10){const _0x2b7e97=[];for(const _0x422f79 of _0x589c10){_0x2b7e97['push'](_0x422f79);}const _0x2e39a6={};_0x2e39a6['requiredFeatures']=_0x2b7e97;const _0x24c20a=await _0x3027d9['requestDevice'](_0x2e39a6),_0x4892a8='rgba8unorm',_0x5c45b7={};_0x5c45b7['label']='fp-shader',_0x5c45b7['code']=WGSL_SHADER;const _0x5c3a23=_0x24c20a['createShaderModule'](_0x5c45b7),_0x1358a9={};_0x1358a9['module']=_0x5c3a23;const _0x34a571={};_0x34a571['format']=_0x4892a8;const _0xdcc58={};_0xdcc58['module']=_0x5c3a23,_0xdcc58['targets']=[_0x34a571];const _0x2f6c00={};_0x2f6c00['topology']='triangle-list';const _0x263d8d={};_0x263d8d['label']='fp-pipeline',_0x263d8d['layout']='auto',_0x263d8d['vertex']=_0x1358a9,_0x263d8d['fragment']=_0xdcc58,_0x263d8d['primitive']=_0x2f6c00;const _0x2e3082=_0x24c20a['createRenderPipeline'](_0x263d8d),_0x35999d=createTextureData(),_0x1e8c44={};_0x1e8c44['label']='fp-src-texture',_0x1e8c44['size']=[TEX_WIDTH,TEX_HEIGHT],_0x1e8c44['format']='rgba8unorm',_0x1e8c44['usage']=GPUTextureUsage['TEXTURE_BINDING']|GPUTextureUsage['COPY_DST'];const _0x5bc4f1=_0x24c20a['createTexture'](_0x1e8c44),_0x5d0d5d={};_0x5d0d5d['texture']=_0x5bc4f1;const _0x346654={};_0x346654['bytesPerRow']=TEX_WIDTH*BYTES_PER_PIXEL;const _0x51b59d={};_0x51b59d['width']=TEX_WIDTH,_0x51b59d['height']=TEX_HEIGHT,_0x24c20a['queue']['writeTexture'](_0x5d0d5d,_0x35999d['buffer'],_0x346654,_0x51b59d);const _0x13ee48={};_0x13ee48['label']='fp-sampler';const _0x22fa66=_0x24c20a['createSampler'](_0x13ee48),_0x5db7cb={};_0x5db7cb['binding']=0x0,_0x5db7cb['resource']=_0x22fa66;const _0xc3a4ec=_0x24c20a['createBindGroup']({'layout':_0x2e3082['getBindGroupLayout'](0x0),'entries':[_0x5db7cb,{'binding':0x1,'resource':_0x5bc4f1['createView']()}]}),_0x27f666=ROTATION_MATRICES['map'](_0x2f077e=>{const _0x517373={};_0x517373['label']='fp-uniform',_0x517373['size']=0x4*Float32Array['BYTES_PER_ELEMENT'],_0x517373['usage']=GPUBufferUsage['UNIFORM'],_0x517373['mappedAtCreation']=!![];const _0x4c674a=_0x24c20a['createBuffer'](_0x517373);new Float32Array(_0x4c674a['getMappedRange']())['set'](_0x2f077e),_0x4c674a['unmap']();const _0x26eb16={};_0x26eb16['buffer']=_0x4c674a;const _0x3ff1a7={};return _0x3ff1a7['binding']=0x0,_0x3ff1a7['resource']=_0x26eb16,_0x24c20a['createBindGroup']({'layout':_0x2e3082['getBindGroupLayout'](0x1),'entries':[_0x3ff1a7]});}),_0x5a3ecb=_0x24c20a['features']['has']('timestamp-query');let _0x574ad0=null,_0xd2f795=null,_0x550b77=null;if(_0x5a3ecb){const _0x2caf8b={};_0x2caf8b['label']='fp-ts',_0x2caf8b['type']='timestamp',_0x2caf8b['count']=0x2,_0x574ad0=_0x24c20a['createQuerySet'](_0x2caf8b);const _0x52e5fb={};_0x52e5fb['size']=0x2*0x8,_0x52e5fb['usage']=GPUBufferUsage['QUERY_RESOLVE']|GPUBufferUsage['COPY_SRC'],_0xd2f795=_0x24c20a['createBuffer'](_0x52e5fb);const _0x1d0479={};_0x1d0479['size']=0x2*0x8,_0x1d0479['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'],_0x550b77=_0x24c20a['createBuffer'](_0x1d0479);}const _0x4835e9={};_0x4835e9['label']='fp-rt',_0x4835e9['size']=[RT_WIDTH,RT_HEIGHT],_0x4835e9['format']=_0x4892a8,_0x4835e9['usage']=GPUTextureUsage['RENDER_ATTACHMENT']|GPUTextureUsage['COPY_SRC'];const _0x49088c=_0x24c20a['createTexture'](_0x4835e9),_0x228eaf=Math['ceil'](RT_WIDTH*BYTES_PER_PIXEL/0x100)*0x100,_0x26f095={};_0x26f095['label']='fp-pixel-read',_0x26f095['size']=_0x228eaf*RT_HEIGHT,_0x26f095['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'];const _0x2d94b9=_0x24c20a['createBuffer'](_0x26f095),_0x12d84c=[],_0x215d88=[];for(let _0x224b36=0x0;_0x224b36<ROTATION_MATRICES['length'];_0x224b36++){const _0xa825dd=_0x49088c['createView'](),_0x40909d={};_0x40909d['label']='fp-enc-'+_0x224b36;const _0x100f6f=_0x24c20a['createCommandEncoder'](_0x40909d),_0x483f24={};_0x483f24['r']=0x0,_0x483f24['g']=0x0,_0x483f24['b']=0x0,_0x483f24['a']=0x1;const _0x13ecdc={};_0x13ecdc['view']=_0xa825dd,_0x13ecdc['clearValue']=_0x483f24,_0x13ecdc['loadOp']='clear',_0x13ecdc['storeOp']='store';const _0x40425b={'label':'fp-pass-'+_0x224b36,'colorAttachments':[_0x13ecdc],..._0x5a3ecb&&_0x574ad0?{'timestampWrites':{'querySet':_0x574ad0,'beginningOfPassWriteIndex':0x0,'endOfPassWriteIndex':0x1}}:{}},_0x3e41e0=_0x40425b,_0x4d4d23=_0x100f6f['beginRenderPass'](_0x3e41e0);_0x4d4d23['setPipeline'](_0x2e3082),_0x4d4d23['setBindGroup'](0x0,_0xc3a4ec),_0x4d4d23['setBindGroup'](0x1,_0x27f666[_0x224b36]),_0x4d4d23['draw'](0x6),_0x4d4d23['end']();_0x5a3ecb&&_0x574ad0&&_0xd2f795&&_0x550b77&&(_0x100f6f['resolveQuerySet'](_0x574ad0,0x0,0x2,_0xd2f795,0x0),_0x100f6f['copyBufferToBuffer'](_0xd2f795,0x0,_0x550b77,0x0,_0xd2f795['size']));const _0x5dcc87={};_0x5dcc87['x']=0x0,_0x5dcc87['y']=0x0;const _0x55afa9={};_0x55afa9['texture']=_0x49088c,_0x55afa9['origin']=_0x5dcc87;const _0x4e95e7={};_0x4e95e7['buffer']=_0x2d94b9,_0x4e95e7['bytesPerRow']=_0x228eaf,_0x4e95e7['rowsPerImage']=RT_HEIGHT;const _0x95f22a={};_0x95f22a['width']=RT_WIDTH,_0x95f22a['height']=RT_HEIGHT,_0x100f6f['copyTextureToBuffer'](_0x55afa9,_0x4e95e7,_0x95f22a),_0x24c20a['queue']['submit']([_0x100f6f['finish']()]),await _0x2d94b9['mapAsync'](GPUMapMode['READ']);const _0x1e98bd=new Uint8Array(_0x2d94b9['getMappedRange']()),_0x58fbe3=RT_WIDTH*BYTES_PER_PIXEL,_0x32a2d7=new Uint8Array(_0x58fbe3*RT_HEIGHT);for(let _0x54d10c=0x0;_0x54d10c<RT_HEIGHT;_0x54d10c++){_0x32a2d7['set'](_0x1e98bd['subarray'](_0x54d10c*_0x228eaf,_0x54d10c*_0x228eaf+_0x58fbe3),_0x54d10c*_0x58fbe3);}_0x12d84c['push'](fnv1a$1(_0x32a2d7)),_0x2d94b9['unmap']();if(_0x5a3ecb&&_0x550b77)try{await _0x550b77['mapAsync'](GPUMapMode['READ']);const _0x3cb903=new BigUint64Array(_0x550b77['getMappedRange']()),_0x39d6fe=_0x3cb903[0x0],_0x517587=_0x3cb903[0x1];_0x517587>_0x39d6fe&&_0x215d88['push'](quantizeTiming(_0x517587-_0x39d6fe)),_0x550b77['unmap']();}catch{}}const _0x21d552=new Uint8Array(_0x12d84c['length']*0x4),_0x17979a=new DataView(_0x21d552['buffer']);for(let _0x104c5e=0x0;_0x104c5e<_0x12d84c['length'];_0x104c5e++){_0x17979a['setUint32'](_0x104c5e*0x4,_0x12d84c[_0x104c5e],!![]);}let _0x1df810='';for(let _0x3c831d=0x0;_0x3c831d<_0x21d552['length'];_0x3c831d++){_0x1df810+=String['fromCharCode'](_0x21d552[_0x3c831d]);}return typeof _0x24c20a['destroy']==='function'&&_0x24c20a['destroy'](),{'pixelHash':btoa(_0x1df810),'timingBuckets':_0x215d88};}async function getSubtleCryptoExport(){if(typeof navigator==='undefined'||navigator['gpu']===undefined){const _0x1b1713={};return _0x1b1713['s']=-0x1,_0x1b1713['v']=null,_0x1b1713;}const _0x2ffd01={};_0x2ffd01['s']=-0x2,_0x2ffd01['v']=null;const _0x3862d1=await Promise['race']([collectWebGpuSignal(),new Promise(_0x37b2c4=>setTimeout(()=>_0x37b2c4(_0x2ffd01),TIMEOUT_MS))]);return _0x3862d1;}async function collectWebGpuSignal(){let _0x29a745;try{const _0x426d82=await navigator['gpu']['requestAdapter']();if(!_0x426d82){const _0x5dbae3={};return _0x5dbae3['s']=-0x4,_0x5dbae3['v']=null,_0x5dbae3;}_0x29a745=_0x426d82;}catch(_0x118a0c){if(_0x118a0c instanceof Error){const _0x4f673c={};return _0x4f673c['s']=-0x3,_0x4f673c['v']=null,_0x4f673c;}throw _0x118a0c;}try{const _0x39bdbe=Array['from'](_0x29a745['features']['values']())['sort'](),[_0x173792,_0x43761f]=await Promise['all']([renderAndReadback(_0x29a745,_0x39bdbe),getAdapterInfo$1(_0x29a745)]),_0x593677={};_0x593677['s']=_0x39bdbe,_0x593677['f']=_0x173792['pixelHash'],_0x593677['t']=_0x173792['timingBuckets'],_0x593677['v']=_0x43761f['vendor'],_0x593677['a']=_0x43761f['architecture'];const _0x22793e={};return _0x22793e['s']=0x0,_0x22793e['v']=_0x593677,_0x22793e;}catch(_0x6d5fe3){if(_0x6d5fe3 instanceof TypeError){const _0x293f64={};return _0x293f64['s']=-0x7,_0x293f64['v']=null,_0x293f64;}throw _0x6d5fe3;}}const _0x3bf306={};_0x3bf306['text']='今天天气真好我们出去玩吧',_0x3bf306['locale']='zh',_0x3bf306['gran']='word';const _0x53e173={};_0x53e173['text']='東京都は日本の首都です',_0x53e173['locale']='ja',_0x53e173['gran']='word';const _0x5042dc={};_0x5042dc['text']='สวัสดีครับวันนี้อากาศดี',_0x5042dc['locale']='th',_0x5042dc['gran']='word';const _0x3a58ee={};_0x3a58ee['text']='오늘날씨가좋아서산책했습니다',_0x3a58ee['locale']='ko',_0x3a58ee['gran']='word';const _0x3feb18={};_0x3feb18['text']='can\x27t\x20won\x27t\x20they\x27re\x20ice-cream',_0x3feb18['locale']='en',_0x3feb18['gran']='word';const _0x37ce22={};_0x37ce22['text']='👨‍👩‍👧‍👦🏳️‍🌈👩🏽‍💻',_0x37ce22['locale']='en',_0x37ce22['gran']='grapheme';const SEGMENTER_TESTS=[_0x3bf306,_0x53e173,_0x5042dc,_0x3a58ee,_0x3feb18,_0x37ce22],_0x1d12fb={};_0x1d12fb['code']='XK',_0x1d12fb['type']='region';const _0x1441fc={};_0x1441fc['code']='EH',_0x1441fc['type']='region';const _0x3f0d22={};_0x3f0d22['code']='SX',_0x3f0d22['type']='region';const _0x2f0e8f={};_0x2f0e8f['code']='BQ',_0x2f0e8f['type']='region';const _0x314db1={};_0x314db1['code']='SS',_0x314db1['type']='region';const _0x43d449={};_0x43d449['code']='CW',_0x43d449['type']='region';const DISPLAY_NAMES_TESTS=[_0x1d12fb,_0x1441fc,_0x3f0d22,_0x2f0e8f,_0x314db1,_0x43d449];function getIntlSegmenter(){const _0x542b2c={};_0x542b2c['segmenter']=null,_0x542b2c['displayNames']=null;const _0x3e7801=_0x542b2c;try{const _0x4b318a=Intl['Segmenter'];if(_0x4b318a){const _0x16fc46={};for(const _0x33824d of SEGMENTER_TESTS){try{const _0x27a817=new _0x4b318a(_0x33824d['locale'],{'granularity':_0x33824d['gran']}),_0x2afa37=[..._0x27a817['segment'](_0x33824d['text'])]['length'];_0x16fc46[_0x33824d['locale']+'_'+_0x33824d['gran']]=_0x2afa37;}catch{}}Object['keys'](_0x16fc46)['length']>0x0&&(_0x3e7801['segmenter']=_0x16fc46);}}catch{}try{if(typeof Intl['DisplayNames']==='function'){const _0x487e92={},_0x302a54={};_0x302a54['type']='region';const _0x2e3d1f=new Intl['DisplayNames'](['en'],_0x302a54);for(const _0x1912bd of DISPLAY_NAMES_TESTS){try{const _0x3735bd=_0x2e3d1f['of'](_0x1912bd['code']);_0x3735bd!==undefined&&_0x3735bd!==''&&(_0x487e92[_0x1912bd['code']]=_0x3735bd);}catch{}}Object['keys'](_0x487e92)['length']>0x0&&(_0x3e7801['displayNames']=_0x487e92);}}catch{}return _0x3e7801;}const fallbackFn=()=>0x0;function getMathFn(_0xfdcb5f){const _0x182023=globalThis['Math'][_0xfdcb5f];return typeof _0x182023==='function'?_0x182023:fallbackFn;}function getMathSignal(){const _0xf28563=getMathFn('acos'),_0x306491=getMathFn('acosh'),_0x166ada=getMathFn('asin'),_0xcf4893=getMathFn('asinh'),_0x4bb7e8=getMathFn('atanh'),_0x46b837=getMathFn('atan'),_0x1f2dd7=getMathFn('sin'),_0x12f171=getMathFn('sinh'),_0x38f1a9=getMathFn('cos'),_0x33bfc0=getMathFn('cosh'),_0x37eec5=getMathFn('tan'),_0x2801f4=getMathFn('tanh'),_0x3bfbd0=getMathFn('exp'),_0x256f2b=getMathFn('expm1'),_0x1387d4=getMathFn('log1p'),_0x5240ca=_0x20d06e=>Math['pow'](Math['PI'],_0x20d06e),_0xd251f9=_0x6a93c5=>Math['log'](_0x6a93c5+Math['sqrt'](_0x6a93c5*_0x6a93c5-0x1)),_0x556340=_0x14fa4f=>Math['log'](_0x14fa4f+Math['sqrt'](_0x14fa4f*_0x14fa4f+0x1)),_0x47266c=_0x10a975=>Math['log']((0x1+_0x10a975)/(0x1-_0x10a975))/0x2,_0x3ce4d=_0x3010d7=>Math['exp'](_0x3010d7)-0x1/Math['exp'](_0x3010d7)/0x2,_0x14d488=_0x594226=>(Math['exp'](_0x594226)+0x1/Math['exp'](_0x594226))/0x2,_0x47cd67=_0x4fa234=>Math['exp'](_0x4fa234)-0x1,_0x201c20=_0x52d615=>(Math['exp'](0x2*_0x52d615)-0x1)/(Math['exp'](0x2*_0x52d615)+0x1),_0x260b25=_0x8aec8b=>Math['log'](0x1+_0x8aec8b);return{'acos':_0xf28563(0.12312423423423424),'acosh':_0x306491(0x8e679c2f5e450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'acoshPf':_0xd251f9(0xbeeefb584aff88000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'asin':_0x166ada(0.12312423423423424),'asinh':_0xcf4893(0x1),'asinhPf':_0x556340(0x1),'atanh':_0x4bb7e8(0.5),'atanhPf':_0x47266c(0.5),'atan':_0x46b837(0.5),'sin':_0x1f2dd7(-0x17e43c8800759c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'sinh':_0x12f171(0x1),'sinhPf':_0x3ce4d(0x1),'cos':_0x38f1a9(10.000000000123),'cosh':_0x33bfc0(0x1),'coshPf':_0x14d488(0x1),'tan':_0x37eec5(-0x17e43c8800759c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'tanh':_0x2801f4(0x1),'tanhPf':_0x201c20(0x1),'exp':_0x3bfbd0(0x1),'expm1':_0x256f2b(0x1),'expm1Pf':_0x47cd67(0x1),'log1p':_0x1387d4(0xa),'log1pPf':_0x260b25(0xa),'powPI':_0x5240ca(-0x64)};}const QUINTUPLETS=[['𝔈','υ','τ','ρ','σ'],['𝔇','π','ο','ν','ξ'],['𝔄','δ','γ','α','β'],['𝔅','θ','η','ε','ζ'],['𝔉','ω','ψ','φ','χ'],['ℭ','μ','λ','ι','κ']];function getMathML(){const _0x3a26d6=document['createDocumentFragment'](),_0x27b043=createMathElement(_0x3a26d6,'mrow'),_0x58fbb3=createMathElement(_0x27b043,'munderover'),_0x4240d4=createMathElement(_0x58fbb3,'mmultiscripts');createMathElement(_0x4240d4,'mo','∏');for(const [_0x69e5b0,_0x284c0b,_0x10e35e,_0xf00962,_0x55d34a]of QUINTUPLETS){const _0x24b031=document['createElement']('mmultiscripts');createMathElement(_0x24b031,'mi',_0x69e5b0),createMathElement(_0x24b031,'mi',_0x284c0b),createMathElement(_0x24b031,'mi',_0x10e35e),createMathElement(_0x24b031,'mprescripts'),createMathElement(_0x24b031,'mi',_0xf00962),createMathElement(_0x24b031,'mi',_0x55d34a),_0x4240d4['append'](_0x24b031);}return getIframePool()['execute']((_0x5d0fee,_0x339ee3)=>{const _0x787b28=_0x339ee3['document'],_0x539e98=_0x787b28['createElement']('math');_0x539e98['style']['whiteSpace']='nowrap',_0x539e98['append'](_0x3a26d6),_0x787b28['body']['append'](_0x539e98);const _0x176c68={},_0x4eb085=_0x539e98['getBoundingClientRect'](),_0x325b8c=['x','y','left','right','bottom','height','top','width'];for(const _0x391036 of _0x325b8c){_0x391036 in _0x4eb085&&(_0x176c68[_0x391036]=_0x4eb085[_0x391036]);}const _0x28ed35=_0x339ee3['getComputedStyle'](_0x539e98,null)['getPropertyValue']('font-family');return _0x176c68['font']=_0x28ed35,_0x787b28['body']['removeChild'](_0x539e98),_0x176c68;});}function createMathElement(_0x40a57d,_0x4a71b1,_0x9112e3=''){const _0x3d9c51=document['createElement'](_0x4a71b1);return _0x3d9c51['textContent']=_0x9112e3,_0x40a57d['appendChild'](_0x3d9c51),_0x3d9c51;}const MSE_AUDIO_CODECS=['audio/mp4;\x20codecs=\x22mp4a.40.2\x22','audio/webm;\x20codecs=\x22vorbis\x22','audio/ogg;\x20codecs=\x22vorbis\x22','audio/wav;\x20codecs=\x221\x22','audio/ogg;\x20codecs=\x22speex\x22','audio/ogg;\x20codecs=\x22flac\x22','audio/mpeg','audio/3gpp'],MSE_VIDEO_CODECS=['video/mp4;\x20codecs=\x22avc1.42E01E\x22','video/mp4;\x20codecs=\x22avc1.58A01E\x22','video/mp4;\x20codecs=\x22avc1.4D401E\x22','video/mp4;\x20codecs=\x22avc1.64001E\x22','video/mp4;\x20codecs=\x22mp4v.20.8\x22','video/webm;\x20codecs=\x22vp8\x22','video/webm;\x20codecs=\x22vp9\x22','video/ogg;\x20codecs=\x22theora\x22','video/mp4;\x20codecs=\x22hvc1\x22','video/mp4;\x20codecs=\x22av01.0.01M.08\x22','video/webm;\x20codecs=\x22av1\x22'];function getMediaCodecsExtended(){return{'mseAudio':getMseBitmask(MSE_AUDIO_CODECS),'mseVideo':getMseBitmask(MSE_VIDEO_CODECS),'rtcAudioCodecs':getRtcCodecs('audio'),'rtcVideoCodecs':getRtcCodecs('video')};}function getMseBitmask(_0x5943ca){const _0x231274=window,_0x418bb1=_0x231274['MediaSource'];if(_0x418bb1===undefined||typeof _0x418bb1['isTypeSupported']!=='function')return-0x1;let _0x313c33=0x0;for(let _0x45b5f4=0x0;_0x45b5f4<_0x5943ca['length'];_0x45b5f4++){try{_0x418bb1['isTypeSupported'](_0x5943ca[_0x45b5f4])&&(_0x313c33|=0x1<<_0x45b5f4);}catch{}}return _0x313c33;}function getRtcCodecs(_0x14c60a){const _0x33437c=window,_0x37ed06=_0x33437c['RTCRtpReceiver'];if(_0x37ed06===undefined||typeof _0x37ed06['getCapabilities']!=='function')return null;try{const _0x5fc50f=_0x37ed06['getCapabilities'](_0x14c60a);if(_0x5fc50f===null)return null;const _0x361b9c=_0x5fc50f['codecs']['map'](_0x255195=>''+_0x255195['mimeType']+(_0x255195['sdpFmtpLine']!==undefined&&_0x255195['sdpFmtpLine']!==''?';'+_0x255195['sdpFmtpLine']:''));return _0x361b9c['sort']();}catch{return null;}}async function getSubPixelRendering(){try{return await getIframePool()['execute']((_0x421f33,_0x40dec4)=>{const _0x5ccb77=_0x40dec4['document'],_0x5c90ed=_0x5ccb77['createElement']('div');_0x5c90ed['style']['border']='.5px\x20dotted\x20transparent',_0x5ccb77['body']['appendChild'](_0x5c90ed);const _0x3b2631=_0x5c90ed['offsetHeight'];return _0x5ccb77['body']['removeChild'](_0x5c90ed),_0x3b2631;});}catch{return null;}}function getSupportedConstraints(){try{const _0x52daea=navigator['mediaDevices'];if(_0x52daea===undefined||typeof _0x52daea['getSupportedConstraints']!=='function')return undefined;return Object['keys'](_0x52daea['getSupportedConstraints']());}catch{return undefined;}}function getSvgEmojiSignal(){let _0x37c087='';for(let _0x3909ce=0x1f600;_0x3909ce<=0x1f64f;_0x3909ce++){_0x37c087+=String['fromCodePoint'](_0x3909ce);}return getIframePool()['execute']((_0x417c29,_0x26462e)=>{const _0xf4d0ec=_0x26462e['document'],_0x11d320='http://www.w3.org/2000/svg',_0x159698=_0xf4d0ec['createElementNS'](_0x11d320,'svg');_0x159698['setAttribute']('width','0'),_0x159698['setAttribute']('height','0'),_0x159698['style']['position']='absolute',_0x159698['style']['visibility']='hidden';const _0x550d00=_0xf4d0ec['createElementNS'](_0x11d320,'text');_0x550d00['setAttribute']('x','0'),_0x550d00['setAttribute']('y','50'),_0x550d00['setAttribute']('font-size','16'),_0x550d00['textContent']=_0x37c087,_0x159698['appendChild'](_0x550d00),_0xf4d0ec['body']['appendChild'](_0x159698);const _0x18030b=_0x26462e['getComputedStyle'](_0x550d00)['getPropertyValue']('font-family');let _0x536acd=null;try{const _0x7b2495=_0x550d00['getBBox']();_0x536acd={'x':round(_0x7b2495['x']),'y':round(_0x7b2495['y']),'width':round(_0x7b2495['width']),'height':round(_0x7b2495['height'])};}catch{}let _0xdc39b5=null;try{const _0x2ba9b3=_0x550d00,_0x1d181c=_0x2ba9b3['getExtentOfChar'](0x0);_0xdc39b5={'x':round(_0x1d181c['x']),'y':round(_0x1d181c['y']),'width':round(_0x1d181c['width']),'height':round(_0x1d181c['height'])};}catch{}let _0x588d56=null;try{const _0x1d5ce6=_0x550d00;_0x588d56=round(_0x1d5ce6['getSubStringLength'](0x0,0xa));}catch{}let _0x406612=null;try{const _0x2b6d22=_0x550d00;_0x406612=round(_0x2b6d22['getComputedTextLength']());}catch{}_0xf4d0ec['body']['removeChild'](_0x159698);const _0x38aa04={};return _0x38aa04['bbox']=_0x536acd,_0x38aa04['charExtent']=_0xdc39b5,_0x38aa04['substringLength']=_0x588d56,_0x38aa04['computedTextLength']=_0x406612,_0x38aa04['font']=_0x18030b,_0x38aa04;});}function round(_0x581e29){return Math['round'](_0x581e29*0x64)/0x64;}const _0x57ac92={};_0x57ac92['contentType']='video/mp4;\x20codecs=\x22avc1.42E01E\x22',_0x57ac92['width']=0x780,_0x57ac92['height']=0x438,_0x57ac92['bitrate']=0x4c4b40,_0x57ac92['framerate']=0x1e;const _0x1b0854={};_0x1b0854['type']='file',_0x1b0854['video']=_0x57ac92;const _0x3c5486={};_0x3c5486['contentType']='video/webm;\x20codecs=\x22vp8\x22',_0x3c5486['width']=0x780,_0x3c5486['height']=0x438,_0x3c5486['bitrate']=0x4c4b40,_0x3c5486['framerate']=0x1e;const _0x5546cf={};_0x5546cf['type']='file',_0x5546cf['video']=_0x3c5486;const _0x117c82={};_0x117c82['contentType']='video/webm;\x20codecs=\x22vp09.00.10.08\x22',_0x117c82['width']=0x780,_0x117c82['height']=0x438,_0x117c82['bitrate']=0x4c4b40,_0x117c82['framerate']=0x1e;const _0x2f280b={};_0x2f280b['type']='file',_0x2f280b['video']=_0x117c82;const _0x1df8cb={};_0x1df8cb['contentType']='video/mp4;\x20codecs=\x22av01.0.05M.08\x22',_0x1df8cb['width']=0x780,_0x1df8cb['height']=0x438,_0x1df8cb['bitrate']=0x4c4b40,_0x1df8cb['framerate']=0x1e;const _0x5c8d12={};_0x5c8d12['type']='file',_0x5c8d12['video']=_0x1df8cb;const _0x5e9147={};_0x5e9147['contentType']='video/mp4;\x20codecs=\x22hvc1.1.6.L93.B0\x22',_0x5e9147['width']=0x780,_0x5e9147['height']=0x438,_0x5e9147['bitrate']=0x4c4b40,_0x5e9147['framerate']=0x1e;const _0x20cf9e={};_0x20cf9e['type']='file',_0x20cf9e['video']=_0x5e9147;const _0x5dafe6={};_0x5dafe6['contentType']='video/mp4;\x20codecs=\x22avc1.640033\x22',_0x5dafe6['width']=0xf00,_0x5dafe6['height']=0x870,_0x5dafe6['bitrate']=0x1312d00,_0x5dafe6['framerate']=0x3c;const _0x35e3c9={};_0x35e3c9['type']='file',_0x35e3c9['video']=_0x5dafe6;const _0x167e41={};_0x167e41['contentType']='video/webm;\x20codecs=\x22vp09.02.10.10\x22',_0x167e41['width']=0xf00,_0x167e41['height']=0x870,_0x167e41['bitrate']=0x1312d00,_0x167e41['framerate']=0x3c;const _0x175e47={};_0x175e47['type']='file',_0x175e47['video']=_0x167e41;const _0x2bccec={};_0x2bccec['contentType']='video/mp4;\x20codecs=\x22av01.0.12M.10\x22',_0x2bccec['width']=0xf00,_0x2bccec['height']=0x870,_0x2bccec['bitrate']=0x1312d00,_0x2bccec['framerate']=0x3c;const _0x140be9={};_0x140be9['type']='file',_0x140be9['video']=_0x2bccec;const CODEC_CONFIGS=[_0x1b0854,_0x5546cf,_0x2f280b,_0x5c8d12,_0x20cf9e,_0x35e3c9,_0x175e47,_0x140be9];async function getVideoCodecs(){if(!('mediaCapabilities'in navigator))return null;return Promise['all'](CODEC_CONFIGS['map'](async _0x5acb3d=>{try{const _0x5778a1=await navigator['mediaCapabilities']['decodingInfo'](_0x5acb3d);let _0x205e28=0x0;if(_0x5778a1['supported'])_0x205e28|=0x1;if(_0x5778a1['smooth'])_0x205e28|=0x2;if(_0x5778a1['powerEfficient'])_0x205e28|=0x4;return _0x205e28;}catch(_0x15088d){return _0x15088d instanceof Error?_0x15088d['message']:String(_0x15088d);}}));}const WASM_PREFIX=[0x0,0x61,0x73,0x6d,0x1,0x0,0x0,0x0,0x1,0x4,0x1,0x60,0x0,0x0,0x3,0x2,0x1,0x0,0xa],FEATURE_MODULES=[[0x9,0x1,0x7,0x0,0x41,0x0,0xfd,0xf,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0xf0,0x43,0x0,0x0,0x0,0xc,0x1,0xa,0x0,0xfc,0x2,0x3,0x1,0x1,0x0,0x0,0x6e,0x1a,0xb,0xa1,0xa],[0x6,0x1,0x4,0x0,0x12,0x0,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0x8,0x1,0x6,0x0,0x41,0x0,0xc0,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0x7,0x1,0x5,0x0,0xd0,0x70,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0]];function getWasmFeatures(){try{if(typeof WebAssembly==='undefined'||typeof WebAssembly['validate']!=='function')return undefined;let _0x491882=0x0;for(const _0x155801 of FEATURE_MODULES){_0x491882<<=0x1,WebAssembly['validate'](Uint8Array['of'](...WASM_PREFIX,..._0x155801)['buffer'])&&(_0x491882|=0x1);}return _0x491882;}catch{return undefined;}}const _0x513d2b={};_0x513d2b['codec']='avc1.42001E',_0x513d2b['width']=0x780,_0x513d2b['height']=0x438,_0x513d2b['label']='h264-baseline-1080';const _0x279dee={};_0x279dee['codec']='avc1.4D0032',_0x279dee['width']=0xf00,_0x279dee['height']=0x870,_0x279dee['label']='h264-main-4k';const _0x3b7a00={};_0x3b7a00['codec']='avc1.640033',_0x3b7a00['width']=0xf00,_0x3b7a00['height']=0x870,_0x3b7a00['label']='h264-high-4k';const _0x46c1fe={};_0x46c1fe['codec']='hev1.1.6.L150.B0',_0x46c1fe['width']=0x780,_0x46c1fe['height']=0x438,_0x46c1fe['label']='hevc-main-1080';const _0xa426a0={};_0xa426a0['codec']='hev1.2.4.L153.B0',_0xa426a0['width']=0xf00,_0xa426a0['height']=0x870,_0xa426a0['label']='hevc-main10-4k';const _0x4b46ad={};_0x4b46ad['codec']='hev1.1.6.L180.B0',_0x4b46ad['width']=0x1e00,_0x4b46ad['height']=0x10e0,_0x4b46ad['label']='hevc-main-8k';const _0x34b719={};_0x34b719['codec']='vp09.00.40.08',_0x34b719['width']=0x780,_0x34b719['height']=0x438,_0x34b719['label']='vp9-profile0-1080';const _0x39fd4c={};_0x39fd4c['codec']='vp09.02.40.10',_0x39fd4c['width']=0xf00,_0x39fd4c['height']=0x870,_0x39fd4c['label']='vp9-profile2-4k-10bit';const _0x35181d={};_0x35181d['codec']='av01.0.08M.08',_0x35181d['width']=0x780,_0x35181d['height']=0x438,_0x35181d['label']='av1-main-1080';const _0x510d33={};_0x510d33['codec']='av01.0.12M.10',_0x510d33['width']=0xf00,_0x510d33['height']=0x870,_0x510d33['label']='av1-main-4k-10bit';const _0x5a64d5={};_0x5a64d5['codec']='av01.0.16M.10',_0x5a64d5['width']=0x1e00,_0x5a64d5['height']=0x10e0,_0x5a64d5['label']='av1-main-8k-10bit';const _0x4bf69a={};_0x4bf69a['codec']='vp8',_0x4bf69a['width']=0x780,_0x4bf69a['height']=0x438,_0x4bf69a['label']='vp8-1080';const CODEC_TESTS=[_0x513d2b,_0x279dee,_0x3b7a00,_0x46c1fe,_0xa426a0,_0x4b46ad,_0x34b719,_0x39fd4c,_0x35181d,_0x510d33,_0x5a64d5,_0x4bf69a];async function getWebCodecsHardware(){try{const _0x77f83=window['VideoDecoder'];if(!_0x77f83||typeof _0x77f83['isConfigSupported']!=='function')return null;const _0x43481e=_0x77f83['isConfigSupported']['bind'](_0x77f83),_0x5755de=[],_0x559df0=CODEC_TESTS['map'](async _0x229179=>{try{const _0x10214c={};_0x10214c['codec']=_0x229179['codec'],_0x10214c['codedWidth']=_0x229179['width'],_0x10214c['codedHeight']=_0x229179['height'],_0x10214c['hardwareAcceleration']='prefer-hardware';const _0x4a95c9=_0x10214c,_0x2f2497=await Promise['race']([_0x43481e(_0x4a95c9),new Promise(_0x550fb5=>setTimeout(()=>_0x550fb5(null),0x1f4))]);if(_0x2f2497?.['supported']===!![]){const _0x337d74=_0x2f2497['config'],_0x4da3fb=_0x337d74?.['hardwareAcceleration'];(_0x4da3fb==='prefer-hardware'||_0x4da3fb===undefined)&&_0x5755de['push'](_0x229179['label']);}}catch{}});return await Promise['all'](_0x559df0),_0x5755de['sort']();}catch{return null;}}const STATUS_NO_GL_CONTEXT=-0x1,STATUS_GET_PARAMETER_NOT_A_FUNCTION=-0x2,validContextParameters=new Set([0x2a00,0xb21,0xb44,0xb45,0xb46,0xb70,0xb71,0xb72,0xb73,0xb74,0xb90,0xb91,0xb92,0xb93,0xb94,0xb95,0xb96,0xb97,0xb98,0xba2,0xbd0,0xbe2,0xc10,0xc11,0xc22,0xc23,0x8005,0x8009,0x8009,0x8037,0x8038,0x80a8,0x80a9,0x80aa,0x80ab,0x80c8,0x80c9,0x80ca,0x80cb,0xcf5,0x8192,0xd05,0xd33,0xd39,0xd3a,0xd4b,0xd66,0x846d,0x846e,0x84e0,0x84e8,0x851c,0xd50,0xd52,0xd53,0xd54,0xd55,0xd56,0xd57,0x86a3,0x8800,0x8801,0x8802,0x8803,0x883d,0x8869,0x8872,0x8b4c,0x8b4d,0x8b8c,0x8b9a,0x8b9b,0x8ca3,0x8ca4,0x8ca5,0x8dfb,0x8dfc,0x8dfd,0x9240,0x9241,0x9243,0x1f00,0x1f01,0x1f02]),validExtensionParams=new Set([0x84ff,0x8b8b,0x8cdf,0x8824,0x8825,0x8826,0x85b5,0x8e28,0x8fbb,0x9631]),shaderTypes=['FRAGMENT_SHADER','VERTEX_SHADER'],precisionTypes=['LOW_FLOAT','MEDIUM_FLOAT','HIGH_FLOAT','LOW_INT','MEDIUM_INT','HIGH_INT'],rendererInfoExtensionName='WEBGL_debug_renderer_info',polygonModeExtensionName='WEBGL_polygon_mode';function getWebGlBasics({cache:_0x6c8b}){const _0x1ec015=getWebGLContext(_0x6c8b);if(!_0x1ec015)return STATUS_NO_GL_CONTEXT;if(!isValidParameterGetter(_0x1ec015))return STATUS_GET_PARAMETER_NOT_A_FUNCTION;const _0x5ba0b8=shouldAvoidDebugRendererInfo()?null:_0x1ec015['getExtension'](rendererInfoExtensionName);return{'version':getParamString(_0x1ec015,_0x1ec015['VERSION']),'vendor':getParamString(_0x1ec015,_0x1ec015['VENDOR']),'vendorUnmasked':_0x5ba0b8!==null?getParamString(_0x1ec015,_0x5ba0b8['UNMASKED_VENDOR_WEBGL']):'','renderer':getParamString(_0x1ec015,_0x1ec015['RENDERER']),'rendererUnmasked':_0x5ba0b8!==null?getParamString(_0x1ec015,_0x5ba0b8['UNMASKED_RENDERER_WEBGL']):'','shadingLanguageVersion':getParamString(_0x1ec015,_0x1ec015['SHADING_LANGUAGE_VERSION'])};}function getWebGlExtensions({cache:_0x2119fe}){const _0xe395c1=getWebGLContext(_0x2119fe);if(!_0xe395c1)return STATUS_NO_GL_CONTEXT;if(!isValidParameterGetter(_0xe395c1))return STATUS_GET_PARAMETER_NOT_A_FUNCTION;const _0x56e2f1=_0xe395c1['getSupportedExtensions'](),_0x4f0d9c=_0xe395c1['getContextAttributes'](),_0x11c2ea=[],_0x369200=[],_0x1cb936=[],_0xa0a466=[],_0x1c6175=[];if(_0x4f0d9c)for(const _0x33c37c of Object['keys'](_0x4f0d9c)){_0x369200['push'](_0x33c37c+'='+_0x4f0d9c[_0x33c37c]);}const _0x2dfc66=getConstantsFromPrototype(_0xe395c1);for(const _0x5677b0 of _0x2dfc66){const _0x84de49=_0xe395c1[_0x5677b0],_0x4c8a5=validContextParameters['has'](_0x84de49)?'='+String(_0xe395c1['getParameter'](_0x84de49)):'';_0x1cb936['push'](_0x5677b0+'='+_0x84de49+_0x4c8a5);}if(_0x56e2f1!==null)for(const _0x59c993 of _0x56e2f1){if(_0x59c993===rendererInfoExtensionName&&shouldAvoidDebugRendererInfo()||_0x59c993===polygonModeExtensionName&&shouldAvoidPolygonModeExtensions())continue;const _0x574b0c=_0xe395c1['getExtension'](_0x59c993);if(_0x574b0c===null){_0x11c2ea['push'](_0x59c993);continue;}for(const _0x3a791b of getConstantsFromPrototype(_0x574b0c)){const _0x132725=_0x574b0c[_0x3a791b],_0x2becdd=validExtensionParams['has'](_0x132725)?'='+String(_0xe395c1['getParameter'](_0x132725)):'';_0xa0a466['push'](_0x3a791b+'='+_0x132725+_0x2becdd);}}for(const _0x5a99ec of shaderTypes){for(const _0x2fb82e of precisionTypes){const _0x427891=getShaderPrecision(_0xe395c1,_0x5a99ec,_0x2fb82e);_0x1c6175['push'](_0x5a99ec+'.'+_0x2fb82e+'='+_0x427891['join'](','));}}_0xa0a466['sort'](),_0x1cb936['sort']();const _0x2bab37={};return _0x2bab37['contextAttributes']=_0x369200,_0x2bab37['parameters']=_0x1cb936,_0x2bab37['shaderPrecisions']=_0x1c6175,_0x2bab37['extensions']=_0x56e2f1,_0x2bab37['extensionParameters']=_0xa0a466,_0x2bab37['unsupportedExtensions']=_0x11c2ea,_0x2bab37;}function getWebGLContext(_0x40a3e2){if(_0x40a3e2['webgl'])return _0x40a3e2['webgl']['context'];const _0x549ef6=document['createElement']('canvas');let _0x18a02f;_0x549ef6['addEventListener']('webglCreateContextError',()=>_0x18a02f=undefined);for(const _0x1eac3b of['webgl','experimental-webgl']){try{_0x18a02f=_0x549ef6['getContext'](_0x1eac3b);}catch{}if(_0x18a02f)break;}const _0x4ee77b={};return _0x4ee77b['context']=_0x18a02f,_0x40a3e2['webgl']=_0x4ee77b,_0x18a02f;}function getShaderPrecision(_0x52fe8c,_0x1c0806,_0x447f8f){const _0x4a30bb=_0x52fe8c['getShaderPrecisionFormat'](_0x52fe8c[_0x1c0806],_0x52fe8c[_0x447f8f]);return _0x4a30bb?[_0x4a30bb['rangeMin'],_0x4a30bb['rangeMax'],_0x4a30bb['precision']]:[];}function getConstantsFromPrototype(_0x366c22){const _0x316a94=Object['getPrototypeOf'](_0x366c22);if(_0x316a94===null)return[];const _0xaf2663=Object['keys'](_0x316a94);return _0xaf2663['filter'](isConstantLike);}function isConstantLike(_0x2a71b9){return typeof _0x2a71b9==='string'&&!_0x2a71b9['match'](/[^A-Z0-9_x]/);}function shouldAvoidDebugRendererInfo(){return isGecko();}function shouldAvoidPolygonModeExtensions(){return isChromium()||isWebKit();}function getParamString(_0x137b97,_0x5201ac){const _0x4ab8b0=_0x137b97['getParameter'](_0x5201ac);if(_0x4ab8b0===undefined||_0x4ab8b0===null)return'';return String(_0x4ab8b0);}function isValidParameterGetter(_0x473bed){return typeof _0x473bed['getParameter']==='function';}function getWebGlCanvas(){try{const _0x372810=document['createElement']('canvas');_0x372810['width']=0x100,_0x372810['height']=0x100;const _0x42c93b=_0x372810['getContext']('webgl')??_0x372810['getContext']('experimental-webgl'),_0x2cffa9={};_0x2cffa9['image']='',_0x2cffa9['dHash']='';if(!_0x42c93b||!(_0x42c93b instanceof WebGLRenderingContext))return _0x2cffa9;renderTriangle(_0x42c93b);const _0x23246c=computeDHash(_0x372810),_0x1825de=_0x372810['toDataURL'](),_0x347394=_0x372810['toDataURL']();if(_0x1825de!==_0x347394){const _0xf30c49={};return _0xf30c49['image']='unstable',_0xf30c49['dHash']=_0x23246c,_0xf30c49;}const _0x4daf30={};return _0x4daf30['image']=_0x1825de,_0x4daf30['dHash']=_0x23246c,_0x4daf30;}catch{const _0x41e884={};return _0x41e884['image']='',_0x41e884['dHash']='',_0x41e884;}}function renderTriangle(_0x55ce83){_0x55ce83['clearColor'](0x0,0x0,0x1,0x1);const _0x43eba7=_0x55ce83['createProgram']();if(_0x43eba7===null)return;const _0x2ec806=_0x43eba7;function _0x29bb79(_0x54dab2,_0x49b771){const _0x170e78=_0x55ce83['createShader'](_0x54dab2);if(_0x170e78===null)return;_0x55ce83['shaderSource'](_0x170e78,_0x49b771),_0x55ce83['compileShader'](_0x170e78),_0x55ce83['attachShader'](_0x2ec806,_0x170e78);}_0x29bb79(_0x55ce83['VERTEX_SHADER'],'attribute\x20vec2\x20p;uniform\x20float\x20t;void\x20main(){float\x20s=sin(t);float\x20c=cos(t);gl_Position=vec4(p*mat2(c,s,-s,c),1,1);}'),_0x29bb79(_0x55ce83['FRAGMENT_SHADER'],'void\x20main(){gl_FragColor=vec4(1,0,0,1);}'),_0x55ce83['linkProgram'](_0x43eba7),_0x55ce83['useProgram'](_0x43eba7),_0x55ce83['enableVertexAttribArray'](0x0);const _0x5a9fb4=_0x55ce83['getUniformLocation'](_0x43eba7,'t'),_0x42bf42=_0x55ce83['createBuffer']();_0x55ce83['bindBuffer'](_0x55ce83['ARRAY_BUFFER'],_0x42bf42),_0x55ce83['bufferData'](_0x55ce83['ARRAY_BUFFER'],new Float32Array([0x0,0x1,-0x1,-0x1,0x1,-0x1]),_0x55ce83['STATIC_DRAW']),_0x55ce83['vertexAttribPointer'](0x0,0x2,_0x55ce83['FLOAT'],![],0x0,0x0),_0x55ce83['clear'](_0x55ce83['COLOR_BUFFER_BIT']),_0x55ce83['uniform1f'](_0x5a9fb4,3.65),_0x55ce83['drawArrays'](_0x55ce83['TRIANGLES'],0x0,0x3);}const GPU_LIMIT_NAMES=['maxTextureDimension1D','maxTextureDimension2D','maxTextureDimension3D','maxTextureArrayLayers','maxBindGroups','maxBindingsPerBindGroup','maxDynamicUniformBuffersPerPipelineLayout','maxDynamicStorageBuffersPerPipelineLayout','maxSampledTexturesPerShaderStage','maxSamplersPerShaderStage','maxStorageBuffersPerShaderStage','maxStorageTexturesPerShaderStage','maxUniformBuffersPerShaderStage','maxUniformBufferBindingSize','maxStorageBufferBindingSize','minUniformBufferOffsetAlignment','minStorageBufferOffsetAlignment','maxVertexBuffers','maxBufferSize','maxVertexAttributes','maxVertexBufferArrayStride','maxInterStageShaderComponents','maxInterStageShaderVariables','maxColorAttachments','maxColorAttachmentBytesPerSample','maxComputeWorkgroupStorageSize','maxComputeInvocationsPerWorkgroup','maxComputeWorkgroupSizeX','maxComputeWorkgroupSizeY','maxComputeWorkgroupSizeZ','maxComputeWorkgroupsPerDimension','maxBindGroupsPlusVertexBuffers','maxStorageBuffersInFragmentStage','maxStorageBuffersInVertexStage','maxStorageTexturesInFragmentStage','maxStorageTexturesInVertexStage'];async function getAdapterInfo(_0x531b49){const _0x5a4096=_0x531b49['info'];if(_0x5a4096!==null&&_0x5a4096!==undefined)return _0x5a4096;const _0x487a4a=_0x531b49['requestAdapterInfo'];if(typeof _0x487a4a==='function')try{return await _0x487a4a['call'](_0x531b49);}catch{return null;}return null;}async function getWebGlExtended(){try{const _0x207ecb=navigator['gpu'];if(_0x207ecb===undefined||_0x207ecb===null||typeof _0x207ecb!=='object')return null;const _0x35239e=_0x207ecb['requestAdapter'];if(typeof _0x35239e!=='function')return null;let _0x55e9f9=null;try{_0x55e9f9=await _0x35239e['call'](_0x207ecb);}catch{return null;}if(!_0x55e9f9)return null;const _0x53ad01=_0x55e9f9['limits'],_0x4ccc5c=[];for(const _0x372de9 of GPU_LIMIT_NAMES){if(_0x53ad01&&_0x372de9 in _0x53ad01){const _0x11b05f=_0x53ad01[_0x372de9];_0x4ccc5c['push'](typeof _0x11b05f==='number'?_0x11b05f:null);}else _0x4ccc5c['push'](null);}const _0x48fc75=await getAdapterInfo(_0x55e9f9);let _0x276bfd=null,_0x80a35=null;_0x48fc75!==null&&(_0x276bfd=typeof _0x48fc75['description']==='string'?_0x48fc75['description']:null,_0x80a35=typeof _0x48fc75['device']==='string'?_0x48fc75['device']:null);const _0x2165f6='isFallbackAdapter'in _0x55e9f9?Boolean(_0x55e9f9['isFallbackAdapter']):null,_0x19b31a={};return _0x19b31a['ds']=_0x276bfd,_0x19b31a['dv']=_0x80a35,_0x19b31a['f']=_0x2165f6,_0x19b31a['l']=_0x4ccc5c,_0x19b31a;}catch{return null;}}const SIZE=0x43,LAT_BANDS=0x32,LON_BANDS=0x32,RADIUS=0x2,VERT_SHADER='\x0aattribute\x20vec3\x20aPosition;\x0aattribute\x20vec3\x20aNormal;\x0auniform\x20vec4\x20uLightPos;\x0auniform\x20vec3\x20uKd;\x0auniform\x20vec3\x20uLd;\x0auniform\x20mat4\x20uMVMatrix;\x0auniform\x20mat4\x20uMVPMatrix;\x0avarying\x20vec3\x20vLight;\x0avoid\x20main()\x20{\x0a\x20\x20vec3\x20n\x20=\x20normalize(aNormal);\x0a\x20\x20vec4\x20pos\x20=\x20uMVMatrix\x20*\x20vec4(aPosition,\x201.0);\x0a\x20\x20vec3\x20s\x20=\x20normalize(vec3(uLightPos\x20-\x20pos));\x0a\x20\x20vLight\x20=\x20uLd\x20*\x20uKd\x20*\x20max(dot(s,\x20n),\x200.0);\x0a\x20\x20gl_Position\x20=\x20uMVPMatrix\x20*\x20vec4(aPosition,\x201.0);\x0a}\x0a',FRAG_SHADER='\x0aprecision\x20mediump\x20float;\x0avarying\x20vec3\x20vLight;\x0avoid\x20main()\x20{\x0a\x20\x20gl_FragColor\x20=\x20vec4(vLight,\x201.0);\x0a}\x0a';function getWebGlSphere(){try{const _0x201c5e=document['createElement']('canvas');_0x201c5e['width']=SIZE,_0x201c5e['height']=SIZE;const _0x5343f3=_0x201c5e['getContext']('webgl')??_0x201c5e['getContext']('experimental-webgl');if(!_0x5343f3)return null;const _0x304f83=buildProgram(_0x5343f3);if(!_0x304f83)return null;const _0x5b2efd=buildSphere();renderSphere(_0x5343f3,_0x304f83,_0x5b2efd);const _0x5a7447=_0x201c5e['toDataURL'](),_0x2e4779=_0x201c5e['toDataURL']();if(_0x5a7447!==_0x2e4779)return null;return fnv1a(_0x5a7447);}catch{return null;}}function buildProgram(_0x50c7e5){const _0xaf9650=_0x50c7e5['createProgram'](),_0x895e62=_0x50c7e5['createShader'](_0x50c7e5['VERTEX_SHADER']),_0x1fc4e8=_0x50c7e5['createShader'](_0x50c7e5['FRAGMENT_SHADER']);if(_0x895e62===null||_0x1fc4e8===null)return null;_0x50c7e5['shaderSource'](_0x895e62,VERT_SHADER),_0x50c7e5['compileShader'](_0x895e62),_0x50c7e5['attachShader'](_0xaf9650,_0x895e62),_0x50c7e5['shaderSource'](_0x1fc4e8,FRAG_SHADER),_0x50c7e5['compileShader'](_0x1fc4e8),_0x50c7e5['attachShader'](_0xaf9650,_0x1fc4e8),_0x50c7e5['linkProgram'](_0xaf9650);if(_0x50c7e5['getProgramParameter'](_0xaf9650,_0x50c7e5['LINK_STATUS'])!==!![])return null;return _0xaf9650;}function buildSphere(){const _0x321b73=[],_0x5b62be=[],_0x21ec86=[];for(let _0x498915=0x0;_0x498915<=LAT_BANDS;_0x498915++){const _0x19da33=_0x498915*Math['PI']/LAT_BANDS,_0xaeae52=Math['sin'](_0x19da33),_0x52d2e7=Math['cos'](_0x19da33);for(let _0x44f5ce=0x0;_0x44f5ce<=LON_BANDS;_0x44f5ce++){const _0x3334a6=_0x44f5ce*0x2*Math['PI']/LON_BANDS,_0x1fceb4=_0xaeae52*Math['cos'](_0x3334a6),_0xf7172d=_0x52d2e7,_0x269207=_0xaeae52*Math['sin'](_0x3334a6);_0x5b62be['push'](_0x1fceb4,_0xf7172d,_0x269207),_0x321b73['push'](_0x1fceb4*RADIUS,_0xf7172d*RADIUS,_0x269207*RADIUS);}}for(let _0x2544ac=0x0;_0x2544ac<LAT_BANDS;_0x2544ac++){for(let _0x3b60c6=0x0;_0x3b60c6<LON_BANDS;_0x3b60c6++){const _0x463846=_0x2544ac*(LON_BANDS+0x1)+_0x3b60c6,_0x2ee4a5=_0x463846+LON_BANDS+0x1;_0x21ec86['push'](_0x463846,_0x2ee4a5,_0x463846+0x1),_0x21ec86['push'](_0x2ee4a5,_0x2ee4a5+0x1,_0x463846+0x1);}}return{'vertices':new Float32Array(_0x321b73),'normals':new Float32Array(_0x5b62be),'indices':new Uint16Array(_0x21ec86)};}function renderSphere(_0x2a0fc8,_0x537f1e,_0x427689){_0x2a0fc8['useProgram'](_0x537f1e),_0x2a0fc8['viewport'](0x0,0x0,SIZE,SIZE),_0x2a0fc8['clearColor'](0x0,0x0,0x0,0x1),_0x2a0fc8['enable'](_0x2a0fc8['DEPTH_TEST']),_0x2a0fc8['clear'](_0x2a0fc8['COLOR_BUFFER_BIT']|_0x2a0fc8['DEPTH_BUFFER_BIT']);const _0x3eacdc=_0x2a0fc8['createBuffer']();_0x2a0fc8['bindBuffer'](_0x2a0fc8['ARRAY_BUFFER'],_0x3eacdc),_0x2a0fc8['bufferData'](_0x2a0fc8['ARRAY_BUFFER'],_0x427689['vertices'],_0x2a0fc8['STATIC_DRAW']);const _0x5eb182=_0x2a0fc8['getAttribLocation'](_0x537f1e,'aPosition');_0x2a0fc8['enableVertexAttribArray'](_0x5eb182),_0x2a0fc8['vertexAttribPointer'](_0x5eb182,0x3,_0x2a0fc8['FLOAT'],![],0x0,0x0);const _0x3ad8d6=_0x2a0fc8['createBuffer']();_0x2a0fc8['bindBuffer'](_0x2a0fc8['ARRAY_BUFFER'],_0x3ad8d6),_0x2a0fc8['bufferData'](_0x2a0fc8['ARRAY_BUFFER'],_0x427689['normals'],_0x2a0fc8['STATIC_DRAW']);const _0x20ce59=_0x2a0fc8['getAttribLocation'](_0x537f1e,'aNormal');_0x2a0fc8['enableVertexAttribArray'](_0x20ce59),_0x2a0fc8['vertexAttribPointer'](_0x20ce59,0x3,_0x2a0fc8['FLOAT'],![],0x0,0x0);const _0xd5ba48=_0x2a0fc8['createBuffer']();_0x2a0fc8['bindBuffer'](_0x2a0fc8['ELEMENT_ARRAY_BUFFER'],_0xd5ba48),_0x2a0fc8['bufferData'](_0x2a0fc8['ELEMENT_ARRAY_BUFFER'],_0x427689['indices'],_0x2a0fc8['STATIC_DRAW']);const _0x7224c6=Math['PI']/0x6,_0x59921d=0x1,_0x165a67=0.1,_0x4f8d7c=0x64,_0x271c92=0x1/Math['tan'](_0x7224c6/0x2),_0x12e1e7=new Float32Array([_0x271c92/_0x59921d,0x0,0x0,0x0,0x0,_0x271c92,0x0,0x0,0x0,0x0,(_0x4f8d7c+_0x165a67)/(_0x165a67-_0x4f8d7c),-0x1,0x0,0x0,0x2*_0x4f8d7c*_0x165a67/(_0x165a67-_0x4f8d7c),0x0]),_0x26dd34=new Float32Array([0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,-0xa,0x1]),_0x317314=multiplyMat4(_0x12e1e7,_0x26dd34);_0x2a0fc8['uniformMatrix4fv'](_0x2a0fc8['getUniformLocation'](_0x537f1e,'uMVMatrix'),![],_0x26dd34),_0x2a0fc8['uniformMatrix4fv'](_0x2a0fc8['getUniformLocation'](_0x537f1e,'uMVPMatrix'),![],_0x317314),_0x2a0fc8['uniform4f'](_0x2a0fc8['getUniformLocation'](_0x537f1e,'uLightPos'),0xa,0xa,0xa,0x1),_0x2a0fc8['uniform3f'](_0x2a0fc8['getUniformLocation'](_0x537f1e,'uKd'),0.9,0.5,0.3),_0x2a0fc8['uniform3f'](_0x2a0fc8['getUniformLocation'](_0x537f1e,'uLd'),0x1,0x1,0x1),_0x2a0fc8['drawElements'](_0x2a0fc8['TRIANGLES'],_0x427689['indices']['length'],_0x2a0fc8['UNSIGNED_SHORT'],0x0);}function multiplyMat4(_0x1fa576,_0x1a2dbd){const _0x2cec1c=new Float32Array(0x10);for(let _0x424bc2=0x0;_0x424bc2<0x4;_0x424bc2++){for(let _0x541a68=0x0;_0x541a68<0x4;_0x541a68++){_0x2cec1c[_0x541a68*0x4+_0x424bc2]=0x0;for(let _0x585394=0x0;_0x585394<0x4;_0x585394++){_0x2cec1c[_0x541a68*0x4+_0x424bc2]+=_0x1fa576[_0x585394*0x4+_0x424bc2]*_0x1a2dbd[_0x541a68*0x4+_0x585394];}}}return _0x2cec1c;}function fnv1a(_0x591b19){let _0x2be08e=0x811c9dc5;for(let _0x10f68b=0x0;_0x10f68b<_0x591b19['length'];_0x10f68b++){_0x2be08e^=_0x591b19['charCodeAt'](_0x10f68b),_0x2be08e+=(_0x2be08e<<0x1)+(_0x2be08e<<0x4)+(_0x2be08e<<0x7)+(_0x2be08e<<0x8)+(_0x2be08e<<0x18);}return _0x2be08e>>>0x0;}const DISCRIMINATING_LIMITS=['maxTextureDimension1D','maxTextureDimension2D','maxTextureDimension3D','maxTextureArrayLayers','maxBindGroups','maxBindGroupsPlusVertexBuffers','maxBindingsPerBindGroup','maxDynamicUniformBuffersPerPipelineLayout','maxDynamicStorageBuffersPerPipelineLayout','maxSampledTexturesPerShaderStage','maxSamplersPerShaderStage','maxStorageBuffersPerShaderStage','maxStorageTexturesPerShaderStage','maxUniformBuffersPerShaderStage','maxUniformBufferBindingSize','maxStorageBufferBindingSize','maxVertexBuffers','maxBufferSize','maxVertexAttributes','maxVertexBufferArrayStride','maxInterStageShaderVariables','maxColorAttachments','maxColorAttachmentBytesPerSample','maxComputeWorkgroupStorageSize','maxComputeInvocationsPerWorkgroup','maxComputeWorkgroupSizeX','maxComputeWorkgroupSizeY','maxComputeWorkgroupSizeZ','maxComputeWorkgroupsPerDimension'];async function getWebGpuSignal(){try{const _0x144e7e=navigator['gpu'];if(!_0x144e7e)return null;const _0x28410e=await _0x144e7e['requestAdapter']();if(!_0x28410e)return null;const _0x3d6dce=_0x28410e['info'],_0x39068e=_0x3d6dce?.['vendor']??'',_0x53d4df=_0x3d6dce?.['architecture']??'',_0x54c00e=_0x3d6dce?.['device']??'',_0x14d1ac=_0x3d6dce?.['description']??'',_0x2aee6f=[];_0x28410e['features']['forEach'](_0x11d012=>_0x2aee6f['push'](_0x11d012)),_0x2aee6f['sort']();const _0x19cac6={};for(const _0x390a8a of DISCRIMINATING_LIMITS){_0x390a8a in _0x28410e['limits']&&(_0x19cac6[_0x390a8a]=_0x28410e['limits'][_0x390a8a]);}const _0x1e4752={};return _0x1e4752['vendor']=_0x39068e,_0x1e4752['architecture']=_0x53d4df,_0x1e4752['device']=_0x54c00e,_0x1e4752['description']=_0x14d1ac,_0x1e4752['features']=_0x2aee6f,_0x1e4752['limits']=_0x19cac6,_0x1e4752;}catch{return null;}}const SHADER='\x0astruct\x20Counter\x20{\x20n:\x20atomic<u32>\x20}\x0a@group(0)\x20@binding(0)\x20var<storage,\x20read_write>\x20g:\x20Counter;\x0a\x0astruct\x20OutBuf\x20{\x20vals:\x20array<atomic<u32>>\x20}\x0a@group(0)\x20@binding(1)\x20var<storage,\x20read_write>\x20out:\x20OutBuf;\x0a\x0astruct\x20Params\x20{\x20limit:\x20u32,\x20_p1:\x20u32,\x20_p2:\x20u32,\x20_p3:\x20u32\x20}\x0a@group(0)\x20@binding(2)\x20var<uniform>\x20params:\x20Params;\x0a\x0aoverride\x20WG_SIZE:\x20u32\x20=\x2064u;\x0a\x0a@compute\x20@workgroup_size(WG_SIZE)\x0afn\x20main(@builtin(workgroup_id)\x20wid:\x20vec3<u32>,\x20@builtin(local_invocation_id)\x20lid:\x20vec3<u32>)\x20{\x0a\x20\x20if\x20(lid.x\x20==\x200u)\x20{\x20atomicStore(&out.vals[wid.x],\x200u);\x20}\x0a\x20\x20workgroupBarrier();\x0a\x20\x20var\x20local:\x20u32\x20=\x200u;\x0a\x20\x20loop\x20{\x0a\x20\x20\x20\x20let\x20prev\x20=\x20atomicAdd(&g.n,\x201u);\x0a\x20\x20\x20\x20if\x20(prev\x20>=\x20params.limit)\x20{\x20break;\x20}\x0a\x20\x20\x20\x20local\x20=\x20local\x20+\x201u;\x0a\x20\x20}\x0a\x20\x20atomicAdd(&out.vals[wid.x],\x20local);\x0a}\x0a',_0x12c93d={};_0x12c93d['wgCount']=0x80,_0x12c93d['wgSize']=0x40;const _0x51f1cd={};_0x51f1cd['wgCount']=0x100,_0x51f1cd['wgSize']=0x40;const _0x2eccf4={};_0x2eccf4['wgCount']=0x80,_0x2eccf4['wgSize']=0x80;const CONFIGS=[_0x12c93d,_0x51f1cd,_0x2eccf4],LIMIT=0x3d0900,TRIALS=0x3,BINS=0x40;async function getWebGpuContention(){try{if(typeof navigator==='undefined')return null;const _0x47b0f9=navigator['gpu'];if(!_0x47b0f9)return null;const _0x4428b2=await _0x47b0f9['requestAdapter']();if(!_0x4428b2)return null;const _0x481197=await _0x4428b2['requestDevice'](),_0x43ab76=_0x481197['queue'],_0x49a47e={};_0x49a47e['code']=SHADER;const _0x53ff4f=_0x481197['createShaderModule'](_0x49a47e),_0x4c2da2=await collectDistribution(_0x481197,_0x43ab76,_0x53ff4f),_0x558bd4=await collectDistribution(_0x481197,_0x43ab76,_0x53ff4f);_0x481197['destroy']();const _0x4863e8=cosine(_0x4c2da2,_0x558bd4);if(_0x4863e8<0.8)return null;const _0x3fb052=_0x4c2da2['map']((_0x163047,_0x3e7c6f)=>(_0x163047+_0x558bd4[_0x3e7c6f])/0x2);return _0x3fb052['map'](_0x50f037=>Math['round'](_0x50f037*0x2710)/0x2710);}catch{return null;}}async function collectDistribution(_0xd5c632,_0x50aaec,_0x220c81){const _0x19199c=[];for(const _0xa5f0c1 of CONFIGS){const _0xb84721=[];for(let _0x9f32d8=0x0;_0x9f32d8<TRIALS;_0x9f32d8++){const _0x47e4ff=await runTrial(_0xd5c632,_0x50aaec,_0x220c81,_0xa5f0c1['wgCount'],_0xa5f0c1['wgSize'],LIMIT);_0xb84721['push'](_0x47e4ff);}const _0x4aaa40=medianOfTrials(_0xb84721),_0x15f985=normalize(_0x4aaa40),_0x167640=downsample(_0x15f985,BINS);_0x19199c['push'](..._0x167640);}return _0x19199c;}function cosine(_0x3d8fab,_0x30f2bc){let _0x43a0e8=0x0,_0x4af831=0x0,_0x2f5125=0x0;for(let _0x2e2269=0x0;_0x2e2269<_0x3d8fab['length'];_0x2e2269++){_0x43a0e8+=_0x3d8fab[_0x2e2269]*_0x30f2bc[_0x2e2269],_0x4af831+=_0x3d8fab[_0x2e2269]*_0x3d8fab[_0x2e2269],_0x2f5125+=_0x30f2bc[_0x2e2269]*_0x30f2bc[_0x2e2269];}const _0x436d79=Math['sqrt'](_0x4af831)*Math['sqrt'](_0x2f5125);return _0x436d79===0x0?0x0:_0x43a0e8/_0x436d79;}async function runTrial(_0x3bfce6,_0x5b3936,_0x3e59ef,_0x17de73,_0x539acb,_0x193002){const _0x1e41ac={};_0x1e41ac['WG_SIZE']=_0x539acb;const _0x4cc753={};_0x4cc753['module']=_0x3e59ef,_0x4cc753['entryPoint']='main',_0x4cc753['constants']=_0x1e41ac;const _0x572012={};_0x572012['layout']='auto',_0x572012['compute']=_0x4cc753;const _0x328156=_0x3bfce6['createComputePipeline'](_0x572012),_0x42b93e=_0x17de73*0x4,_0x1736d1={};_0x1736d1['size']=0x4,_0x1736d1['usage']=GPUBufferUsage['STORAGE']|GPUBufferUsage['COPY_DST'];const _0x4fa311=_0x3bfce6['createBuffer'](_0x1736d1),_0x44f582={};_0x44f582['size']=_0x42b93e,_0x44f582['usage']=GPUBufferUsage['STORAGE']|GPUBufferUsage['COPY_SRC']|GPUBufferUsage['COPY_DST'];const _0x5221fe=_0x3bfce6['createBuffer'](_0x44f582),_0x3fe5e3={};_0x3fe5e3['size']=0x10,_0x3fe5e3['usage']=GPUBufferUsage['UNIFORM']|GPUBufferUsage['COPY_DST'];const _0x2a28c0=_0x3bfce6['createBuffer'](_0x3fe5e3);_0x5b3936['writeBuffer'](_0x4fa311,0x0,new Uint32Array([0x0])),_0x5b3936['writeBuffer'](_0x5221fe,0x0,new Uint8Array(_0x42b93e)),_0x5b3936['writeBuffer'](_0x2a28c0,0x0,new Uint32Array([_0x193002,0x0,0x0,0x0]));const _0x269172={};_0x269172['buffer']=_0x4fa311;const _0x18efde={};_0x18efde['binding']=0x0,_0x18efde['resource']=_0x269172;const _0xe721e2={};_0xe721e2['buffer']=_0x5221fe;const _0x1b570b={};_0x1b570b['binding']=0x1,_0x1b570b['resource']=_0xe721e2;const _0x12de20={};_0x12de20['buffer']=_0x2a28c0;const _0xb70796={};_0xb70796['binding']=0x2,_0xb70796['resource']=_0x12de20;const _0x13022f=_0x3bfce6['createBindGroup']({'layout':_0x328156['getBindGroupLayout'](0x0),'entries':[_0x18efde,_0x1b570b,_0xb70796]}),_0x517491=_0x3bfce6['createCommandEncoder'](),_0x134daf=_0x517491['beginComputePass']();_0x134daf['setPipeline'](_0x328156),_0x134daf['setBindGroup'](0x0,_0x13022f),_0x134daf['dispatchWorkgroups'](_0x17de73,0x1,0x1),_0x134daf['end']();const _0x56a88a={};_0x56a88a['size']=_0x42b93e,_0x56a88a['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'];const _0x26cd74=_0x3bfce6['createBuffer'](_0x56a88a);_0x517491['copyBufferToBuffer'](_0x5221fe,0x0,_0x26cd74,0x0,_0x42b93e),_0x5b3936['submit']([_0x517491['finish']()]),await _0x5b3936['onSubmittedWorkDone'](),await _0x26cd74['mapAsync'](GPUMapMode['READ']);const _0x336549=new Uint32Array(_0x26cd74['getMappedRange']()['slice'](0x0));return _0x26cd74['unmap'](),_0x4fa311['destroy'](),_0x5221fe['destroy'](),_0x2a28c0['destroy'](),_0x26cd74['destroy'](),Array['from'](_0x336549);}function medianOfTrials(_0x574fd3){const _0x305926=_0x574fd3[0x0]['length'],_0x2e3074=new Array(_0x305926);for(let _0x462997=0x0;_0x462997<_0x305926;_0x462997++){const _0x5ed840=_0x574fd3['map'](_0x5a1b57=>_0x5a1b57[_0x462997])['sort']((_0x42137a,_0x2b8bb2)=>_0x42137a-_0x2b8bb2),_0x17a869=Math['floor'](_0x5ed840['length']/0x2);_0x2e3074[_0x462997]=_0x5ed840['length']%0x2?_0x5ed840[_0x17a869]:(_0x5ed840[_0x17a869-0x1]+_0x5ed840[_0x17a869])/0x2;}return _0x2e3074;}function normalize(_0x3b4b0c){const _0x3effe6=_0x3b4b0c['reduce']((_0x12f85e,_0x235970)=>_0x12f85e+_0x235970,0x0)||0x1;return _0x3b4b0c['map'](_0xe2fdf6=>_0xe2fdf6/_0x3effe6);}function downsample(_0x5b2e16,_0x31b7e0){const _0xf0695a=_0x5b2e16['length'],_0x17bda9=new Array(_0x31b7e0)['fill'](0x0);for(let _0x59d5ae=0x0;_0x59d5ae<_0xf0695a;_0x59d5ae++){_0x17bda9[Math['floor'](_0x59d5ae*_0x31b7e0/_0xf0695a)]+=_0x5b2e16[_0x59d5ae];}const _0x30880e=_0x17bda9['reduce']((_0x16d0ea,_0x5dae47)=>_0x16d0ea+_0x5dae47,0x0)||0x1;return _0x17bda9['map'](_0x4c3c49=>_0x4c3c49/_0x30880e);}async function getWebRtcDevices(){const _0x4e08b5=navigator['mediaDevices'];if(typeof navigator==='undefined'||_0x4e08b5===undefined||typeof _0x4e08b5['enumerateDevices']!=='function')return undefined;try{const _0x225ece=await _0x4e08b5['enumerateDevices']();let _0x1e0dcb=0x0,_0x310d5f=0x0,_0x46dead=0x0;const _0x2404c3=[];for(const _0x2c6ba6 of _0x225ece){_0x2404c3['push'](_0x2c6ba6['kind']);if(_0x2c6ba6['kind']==='audioinput')_0x1e0dcb++;else{if(_0x2c6ba6['kind']==='audiooutput')_0x310d5f++;else _0x46dead++;}}const _0x1befd4=_0x2404c3['join'](',');let _0x49e00e=0x0;for(let _0x2b26b8=0x0;_0x2b26b8<_0x1befd4['length'];_0x2b26b8++){_0x49e00e=(_0x49e00e<<0x5)-_0x49e00e+_0x1befd4['charCodeAt'](_0x2b26b8)|0x0;}return{'audioInputCount':_0x1e0dcb,'audioOutputCount':_0x310d5f,'videoInputCount':_0x46dead,'totalCount':_0x225ece['length'],'kindsHash':(_0x49e00e>>>0x0)['toString'](0x10)};}catch{return undefined;}}function getAppVersion(){const _0x1dd787=navigator['appVersion'];if(typeof _0x1dd787!=='string')throw new Error('navigator.appVersion\x20is\x20undefined');return _0x1dd787;}const willPrintConsoleError=isAnyParentCrossOrigin;function getApplePayState(){const {ApplePaySession:_0xc40653}=window;if(typeof _0xc40653?.['canMakePayments']!=='function')return-0x1;if(willPrintConsoleError())return-0x3;try{return _0xc40653['canMakePayments']()?0x1:0x0;}catch(_0x25bdf4){return getStateFromError(_0x25bdf4);}}function getStateFromError(_0x3fb68d){if(_0x3fb68d instanceof Error&&_0x3fb68d['name']==='InvalidAccessError'&&/\bfrom\b.*\binsecure\b/i['test'](_0x3fb68d['message']))return-0x2;throw _0x3fb68d;}let table=null;function getTable(){if(table)return table;table=new Uint32Array(0x100);for(let _0x1db664=0x0;_0x1db664<0x100;_0x1db664++){let _0xe49411=_0x1db664;for(let _0x349a7c=0x0;_0x349a7c<0x8;_0x349a7c++)_0xe49411=_0xe49411&0x1?0xedb88320^_0xe49411>>>0x1:_0xe49411>>>0x1;table[_0x1db664]=_0xe49411;}return table;}function crc32(_0xeb7965){const _0x1326a9=getTable();let _0x1d12a4=0xffffffff;for(let _0x3b0f82=0x0;_0x3b0f82<_0xeb7965['length'];_0x3b0f82++){_0x1d12a4=_0x1326a9[(_0x1d12a4^_0xeb7965['charCodeAt'](_0x3b0f82))&0xff]^_0x1d12a4>>>0x8;}return(_0x1d12a4^0xffffffff)>>>0x0;}function summarizePrototype(_0x89be42){const _0x4a3d8d={};_0x4a3d8d['count']=0x0,_0x4a3d8d['hash']=0x0;if(!_0x89be42)return _0x4a3d8d;try{const _0x39203b=Object['getOwnPropertyNames'](_0x89be42)['sort'](),_0xad2d43=_0x39203b['join'](',');return{'count':_0x39203b['length'],'hash':crc32(_0xad2d43)};}catch{const _0x239633={};return _0x239633['count']=0x0,_0x239633['hash']=0x0,_0x239633;}}function isNativeFunction(_0x522b68){try{return typeof _0x522b68==='function'&&/\[native code\]/['test'](Function['prototype']['toString']['call'](_0x522b68));}catch{return![];}}function getBomEnumeration(){try{const _0x399a9d=summarizePrototype(Navigator['prototype']),_0x268cc8=summarizePrototype(Screen['prototype']),_0x5b43bb=summarizePrototype(HTMLElement['prototype']),_0x173eae=summarizePrototype(Document['prototype']),_0x4f569c={};_0x4f569c['count']=0x0,_0x4f569c['hash']=0x0;let _0x4e2f3e=_0x4f569c;typeof Performance!=='undefined'&&(_0x4e2f3e=summarizePrototype(Performance['prototype']));const _0x35c14e=_0x399a9d['count']+_0x268cc8['count']+_0x5b43bb['count']+_0x173eae['count']+_0x4e2f3e['count'],_0x103764=window,_0x274084='chrome'in window&&typeof _0x103764['chrome']==='object',_0x1d5543=typeof navigator['brave']==='object',_0x437cf6='__playwright'in _0x103764||'__selenium_unwrapped'in _0x103764||'__webdriver_evaluate'in _0x103764||'__nightmare'in _0x103764||'_phantom'in _0x103764||'__lastWatirAlert'in _0x103764;let _0x108fca=!![];try{const _0x4d560f=navigator['plugins'];_0x108fca=_0x4d560f['length']===PluginArray['prototype']['length']||Object['getOwnPropertyNames'](PluginArray['prototype'])['includes']('length');}catch{_0x108fca=![];}let _0x4b00ff=!![];try{const _0xc883ff=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');_0xc883ff?.['get']&&(_0x4b00ff=isNativeFunction(_0xc883ff['get']));}catch{_0x4b00ff=![];}const _0x1c6fff=typeof SharedWorker!=='undefined',_0x408bd9=typeof Notification!=='undefined',_0xf8b14d={};_0xf8b14d['hasChrome']=_0x274084,_0xf8b14d['hasBraveShield']=_0x1d5543,_0xf8b14d['hasAutomation']=_0x437cf6,_0xf8b14d['pluginConsistent']=_0x108fca,_0xf8b14d['webdriverNative']=_0x4b00ff,_0xf8b14d['hasSharedWorker']=_0x1c6fff,_0xf8b14d['hasNotification']=_0x408bd9;const _0x5ba077={};return _0x5ba077['nav']=_0x399a9d,_0x5ba077['scr']=_0x268cc8,_0x5ba077['html']=_0x5b43bb,_0x5ba077['doc']=_0x173eae,_0x5ba077['perf']=_0x4e2f3e,_0x5ba077['total']=_0x35c14e,_0x5ba077['markers']=_0xf8b14d,_0x5ba077;}catch{return null;}}function getColorDepth(){return window['screen']['colorDepth'];}function getColorScheme(){if(matchMedia('(prefers-color-scheme:\x20dark)')['matches'])return!![];if(matchMedia('(prefers-color-scheme:\x20light)')['matches'])return![];return null;}function getConnectionInfo(){try{const _0x57a052=navigator['connection'];if(!_0x57a052)return null;const _0x77f976=Object['getOwnPropertyDescriptor'](_0x57a052,Symbol['toStringTag']);if(_0x77f976?.['configurable']===!![])return!![];for(let _0x18a374=0x0;_0x18a374<_0x57a052['length'];_0x18a374++){const _0x5ac2b=Object['getOwnPropertyDescriptor'](_0x57a052,_0x18a374);if(_0x5ac2b!==undefined&&(_0x5ac2b['configurable']===!![]||_0x5ac2b['enumerable']===!![]))return!![];}return![];}catch{return null;}}function getContrastPreference(){if(doesMatch$4('no-preference'))return 0x0;if(doesMatch$4('high')||doesMatch$4('more'))return 0x1;if(doesMatch$4('low')||doesMatch$4('less'))return-0x1;if(doesMatch$4('forced'))return 0xa;return undefined;}function doesMatch$4(_0x51c6d1){return matchMedia('(prefers-contrast:\x20'+_0x51c6d1+')')['matches'];}function areCookiesEnabled(){const _0x2a53c4=document;try{_0x2a53c4['cookie']='cookietest=1;\x20SameSite=Strict;';const _0x3968b1=_0x2a53c4['cookie']['indexOf']('cookietest=')!==-0x1;return _0x2a53c4['cookie']='cookietest=1;\x20SameSite=Strict;\x20expires=Thu,\x2001-Jan-1970\x2000:00:01\x20GMT',_0x3968b1;}catch{return![];}}function getDateTimeLocale(){const _0x12a67f=window['Intl'];if(_0x12a67f===undefined)return-0x1;const _0x521791=_0x12a67f['DateTimeFormat'];if(_0x521791===undefined)return-0x2;const _0x5ac1cb=_0x521791()['resolvedOptions']()['locale'];if(!_0x5ac1cb&&_0x5ac1cb!=='')return-0x3;return _0x5ac1cb;}function getDeviceMemory(){return replaceNaN(toFloat(navigator['deviceMemory']),undefined);}function getDevicePixelRatio(){const _0x1e4ac8=window['devicePixelRatio'];return _0x1e4ac8??null;}function getDoNotTrack(){const _0x5e9fe8=navigator['doNotTrack'];return _0x5e9fe8??null;}function getDocumentAttributes(){try{return document['documentElement']['getAttributeNames']();}catch{return[];}}function getDocumentFocus(){try{return document['hasFocus']();}catch{return![];}}async function getFileSystemAccess(){try{const _0x13a502=navigator['storage'];if(_0x13a502===undefined||typeof _0x13a502['getDirectory']!=='function')return undefined;return await _0x13a502['getDirectory'](),!![];}catch{return![];}}async function getFilesystemApi(){if(isChromium()&&isChromium86OrNewer())return null;const _0x2f1715=window;if(typeof _0x2f1715['webkitRequestFileSystem']!=='function')return null;try{return await Promise['race']([new Promise(_0x2a366d=>{const _0x5622c5=_0x2f1715['webkitRequestFileSystem'];_0x5622c5!==undefined&&_0x5622c5(0x0,0x1,()=>_0x2a366d(!![]),()=>_0x2a366d(![]));}),new Promise(_0x426dbc=>setTimeout(()=>_0x426dbc(null),0x64))]);}catch{return null;}}function areColorsForced(){if(doesMatch$3('active'))return!![];if(doesMatch$3('none'))return![];return undefined;}function doesMatch$3(_0x2b1d97){return matchMedia('(forced-colors:\x20'+_0x2b1d97+')')['matches'];}async function getFormControlFont(){if(!isGecko())return undefined;return getIframePool()['execute']((_0x121a7f,_0x44d839)=>{const _0x2407d5=_0x44d839['document'],_0x400f31=_0x2407d5['createElement']('input');_0x400f31['type']='radio',_0x2407d5['body']['appendChild'](_0x400f31);const _0x15d3e7=_0x44d839['getComputedStyle'](_0x400f31)['getPropertyValue']('font-family');return _0x2407d5['body']['removeChild'](_0x400f31),_0x15d3e7||undefined;});}function getHardwareConcurrency(){const _0x4fd17b=getUnstableHardwareConcurrency();if(_0x4fd17b!==undefined&&isGecko()&&isGecko143OrNewer())return _0x4fd17b>=0x8?0x8:0x4;return _0x4fd17b;}function getUnstableHardwareConcurrency(){return replaceNaN(toInt(navigator['hardwareConcurrency']),undefined);}function isHDR(){if(doesMatch$2('high'))return!![];if(doesMatch$2('standard'))return![];return undefined;}function doesMatch$2(_0x4fa86d){return matchMedia('(dynamic-range:\x20'+_0x4fa86d+')')['matches'];}function getIndexedDB(){try{return window['indexedDB']!==undefined;}catch{return!![];}}async function getIndexedDbBlob(){if(typeof indexedDB==='undefined')return null;try{const _0x19a0d5=await Promise['race']([new Promise(_0x2992e8=>{try{const _0x4d8566='mw_blob_test',_0x9d4de2='store',_0x5289b7=indexedDB['deleteDatabase'](_0x4d8566);_0x5289b7['onsuccess']=_0x3f7459,_0x5289b7['onerror']=_0x3f7459;function _0x3f7459(){try{const _0x5ab39c=indexedDB['open'](_0x4d8566,0x1);_0x5ab39c['onupgradeneeded']=()=>{try{_0x5ab39c['result']['createObjectStore'](_0x9d4de2);}catch{_0x2992e8(null);}},_0x5ab39c['onsuccess']=()=>{try{const _0x429d6e=_0x5ab39c['result'],_0x659348=_0x429d6e['transaction'](_0x9d4de2,'readwrite'),_0x48b624=_0x659348['objectStore'](_0x9d4de2);try{const _0x311faf=_0x48b624['put'](new Blob(['test']),'blob_key');_0x311faf['onsuccess']=()=>{_0x429d6e['close']();try{indexedDB['deleteDatabase'](_0x4d8566);}catch{}_0x2992e8(![]);},_0x311faf['onerror']=()=>{_0x429d6e['close']();try{indexedDB['deleteDatabase'](_0x4d8566);}catch{}const _0x583df8=_0x311faf['error']?.['message']??'';_0x2992e8(_0x583df8['includes']('not\x20yet\x20supported')||_0x583df8['includes']('not\x20supported'));};}catch(_0x4949e5){_0x429d6e['close']();try{indexedDB['deleteDatabase'](_0x4d8566);}catch{}if(_0x4949e5 instanceof DOMException){const _0x1239eb=_0x4949e5['message'];_0x2992e8(_0x1239eb['includes']('not\x20yet\x20supported')||_0x1239eb['includes']('not\x20supported'));}else _0x2992e8(null);}}catch{_0x2992e8(null);}},_0x5ab39c['onerror']=()=>{_0x2992e8(null);};}catch{_0x2992e8(null);}}}catch{_0x2992e8(null);}}),new Promise(_0x41ef8b=>setTimeout(()=>_0x41ef8b(null),0x3e8))]);return _0x19a0d5;}catch{return null;}}function areColorsInverted(){if(doesMatch$1('inverted'))return!![];if(doesMatch$1('none'))return![];return undefined;}function doesMatch$1(_0x2d7741){return matchMedia('(inverted-colors:\x20'+_0x2d7741+')')['matches'];}function getLanguages(){const _0x27362b=navigator,_0x4b46a0=[],_0x5c1ecb=_0x27362b['language']??_0x27362b['userLanguage']??_0x27362b['browserLanguage']??_0x27362b['systemLanguage'];_0x5c1ecb!==undefined&&_0x4b46a0['push']([_0x5c1ecb]);if(Array['isArray'](_0x27362b['languages']))!(isChromium()&&isChromium86OrNewer())&&_0x4b46a0['push'](_0x27362b['languages']);else{if(typeof _0x27362b['languages']==='string'){const _0xedba33=_0x27362b['languages'];_0xedba33!==''&&_0x4b46a0['push'](_0xedba33['split'](','));}}return _0x4b46a0;}function getLocalStorage(){try{return window['localStorage']!==undefined;}catch{return!![];}}function getLocaleCurrency(){try{const _0x1ef60b=navigator['language'];if(!_0x1ef60b)return null;const _0x292b7a={};_0x292b7a['style']='currency',_0x292b7a['currency']='USD';const _0x4f43cc=0x1['toLocaleString'](_0x1ef60b,_0x292b7a),_0x19af9c={};_0x19af9c['style']='currency',_0x19af9c['currency']='USD';const _0x5ce866=0x1['toLocaleString'](undefined,_0x19af9c),_0x1ba809={};return _0x1ba809['match']=_0x4f43cc===_0x5ce866,_0x1ba809['explicit']=_0x4f43cc,_0x1ba809['implicit']=_0x5ce866,_0x1ba809;}catch{return null;}}const _0x369d15={};_0x369d15['any-hover']=['hover','none'],_0x369d15['any-pointer']=['none','coarse','fine'],_0x369d15['pointer']=['none','coarse','fine'],_0x369d15['hover']=['hover','none'],_0x369d15['update']=['fast','slow'],_0x369d15['scripting']=['none','initial-only','enabled'];const queries=_0x369d15;function getMediaQueries(){if(typeof matchMedia==='undefined')return{};const _0x2c9cc4={};for(const [_0x4f0d7d,_0x3c6fcb]of Object['entries'](queries)){for(const _0x4ca943 of _0x3c6fcb){if(matchMedia('('+_0x4f0d7d+':\x20'+_0x4ca943+')')['matches']){_0x2c9cc4[_0x4f0d7d]=_0x4ca943;break;}}}return _0x2c9cc4;}function getMimeTypes(){try{const _0x316593=navigator['mimeTypes'];if(_0x316593===undefined)return undefined;let _0x2f7a02=Object['getPrototypeOf'](_0x316593)===MimeTypeArray['prototype'];for(let _0xf778bd=0x0;_0xf778bd<_0x316593['length'];_0xf778bd++){_0x2f7a02&&(_0x2f7a02=Object['getPrototypeOf'](_0x316593[_0xf778bd])===MimeType['prototype']);}return _0x2f7a02;}catch{return undefined;}}function getNavigatorLanguages(){const _0x3f5e2e=navigator['languages'];return _0x3f5e2e??null;}function getNetworkRTT(){const _0x4153c8=navigator;return _0x4153c8['connection']?.['rtt']??undefined;}function getOsCpu(){return navigator['oscpu'];}function isPdfViewerEnabled(){return navigator['pdfViewerEnabled'];}function getPerformanceMemory(){if(typeof performance==='undefined')return undefined;const _0x14e820=performance['memory'];if(_0x14e820===undefined||typeof _0x14e820['jsHeapSizeLimit']!=='number')return undefined;return _0x14e820['jsHeapSizeLimit'];}function getPerformanceResolution(){const _0x5e5c41=window['performance'];if(typeof _0x5e5c41['now']!=='function')return null;let _0x3e7d74=0x1,_0xa7b85d=0x1,_0xdde0cb=_0x5e5c41['now'](),_0x1c3dcb=_0xdde0cb;for(let _0x189c3b=0x0;_0x189c3b<0xc350;_0x189c3b++){_0xdde0cb=_0x1c3dcb,_0x1c3dcb=_0x5e5c41['now']();if(_0xdde0cb<_0x1c3dcb){const _0x152927=_0x1c3dcb-_0xdde0cb;if(_0x152927>_0x3e7d74){if(_0x152927<_0xa7b85d)_0xa7b85d=_0x152927;}else _0x152927<_0x3e7d74&&(_0xa7b85d=_0x3e7d74,_0x3e7d74=_0x152927);}}return[_0x3e7d74,_0xa7b85d];}const permissionNames=['accelerometer','ambient-light-sensor','background-fetch','background-sync','bluetooth','camera','clipboard-read','clipboard-write','display-capture','geolocation','gyroscope','local-fonts','magnetometer','microphone','midi','nfc','notifications','payment-handler','persistent-storage','push','screen-wake-lock','speaker-selection','storage-access','window-management'];async function getPermissions(){if(!('permissions'in navigator)||typeof navigator['permissions']['query']!=='function')return{};const _0x5bb963=0x3,_0x40f990=[];for(let _0x3664dd=0x0;_0x3664dd<_0x5bb963;_0x3664dd++){const _0x4b1882={},_0x3a5f37=permissionNames['map'](async _0x49eb6d=>{try{const _0x5bcbb7={};_0x5bcbb7['name']=_0x49eb6d;const _0x58504c=await navigator['permissions']['query'](_0x5bcbb7);_0x4b1882[_0x49eb6d]=_0x58504c['state'];}catch{}});await Promise['all'](_0x3a5f37),_0x40f990['push'](_0x4b1882);}const _0x8c925b={},_0x32ed13=new Set(_0x40f990['flatMap'](_0x3aa40b=>Object['keys'](_0x3aa40b)));for(const _0x30ef47 of _0x32ed13){const _0x44c11c={};for(const _0x2a8432 of _0x40f990){const _0x483e48=_0x2a8432[_0x30ef47];_0x483e48&&(_0x44c11c[_0x483e48]=(_0x44c11c[_0x483e48]||0x0)+0x1);}let _0x259f17='',_0x159322=0x0;for(const [_0x30ee76,_0x1e086d]of Object['entries'](_0x44c11c)){_0x1e086d>_0x159322&&(_0x259f17=_0x30ee76,_0x159322=_0x1e086d);}_0x259f17&&(_0x8c925b[_0x30ef47]=_0x259f17);}return _0x8c925b;}function getPlatform(){const {platform:_0x457f3d}=navigator;if(_0x457f3d==='MacIntel'){if(isWebKit()&&!isDesktopWebKit())return isIPad()?'iPad':'iPhone';}return _0x457f3d;}function getPluginPropsEnum(){if(!('plugins'in navigator))return undefined;const _0x1daa3c=navigator['plugins'];let _0x57d303=Object['getPrototypeOf'](_0x1daa3c)===PluginArray['prototype'];for(let _0x574ff4=0x0;_0x574ff4<_0x1daa3c['length'];_0x574ff4++){_0x57d303&&(_0x57d303=Object['getPrototypeOf'](_0x1daa3c[_0x574ff4])===Plugin['prototype']);}return _0x57d303;}function getPlugins(){if(!('plugins'in navigator))return undefined;const _0x6ef4e3=navigator['plugins'],_0x573a1a=[];for(let _0x4aaaa7=0x0;_0x4aaaa7<_0x6ef4e3['length'];++_0x4aaaa7){const _0x20a1bf=_0x6ef4e3['item'](_0x4aaaa7);if(_0x20a1bf===null)continue;const _0x5a8c1f=[];for(let _0x3c4974=0x0;_0x3c4974<_0x20a1bf['length'];++_0x3c4974){const _0xb1290b=_0x20a1bf[_0x3c4974],_0x5174b1={};_0x5174b1['type']=_0xb1290b['type'],_0x5174b1['suffixes']=_0xb1290b['suffixes'],_0x5a8c1f['push'](_0x5174b1);}const _0x243daa={};_0x243daa['name']=_0x20a1bf['name'],_0x243daa['description']=_0x20a1bf['description'],_0x243daa['mimeTypes']=_0x5a8c1f,_0x573a1a['push'](_0x243daa);}return _0x573a1a;}function getPluginsArray(){try{if(!('plugins'in navigator))return null;if(typeof PluginArray==='undefined')return null;return navigator['plugins']instanceof PluginArray;}catch{return null;}}function getPluginsCount(){if(!('plugins'in navigator))throw new Error('navigator.plugins\x20is\x20undefined');const _0x34da49=navigator['plugins'];if(typeof _0x34da49['length']!=='number')throw new Error('navigator.plugins.length\x20is\x20undefined');return _0x34da49['length'];}function getProductSub(){if(!('productSub'in navigator))throw new Error('navigator.productSub\x20is\x20undefined');return navigator['productSub'];}function isMotionReduced(){if(doesMatch('reduce'))return!![];if(doesMatch('no-preference'))return![];return undefined;}function doesMatch(_0x8bba76){return matchMedia('(prefers-reduced-motion:\x20'+_0x8bba76+')')['matches'];}const screenFrameCheckInterval=0x9c4,roundingPrecision=0xa;let screenFrameBackup,screenFrameSizeTimeoutId;function watchScreenFrame(){if(screenFrameSizeTimeoutId!==undefined)return;const _0xd0ae41=()=>{const _0x5d6003=getCurrentScreenFrame();isFrameSizeNull(_0x5d6003)?screenFrameSizeTimeoutId=setTimeout(_0xd0ae41,screenFrameCheckInterval):(screenFrameBackup=_0x5d6003,screenFrameSizeTimeoutId=undefined);};_0xd0ae41();}function getUnstableScreenFrame(){return watchScreenFrame(),async()=>{let _0x4f7b7c=getCurrentScreenFrame();if(isFrameSizeNull(_0x4f7b7c)){if(screenFrameBackup)return[...screenFrameBackup];getFullscreenElement()&&(await exitFullscreen(),_0x4f7b7c=getCurrentScreenFrame());}return!isFrameSizeNull(_0x4f7b7c)&&(screenFrameBackup=_0x4f7b7c),_0x4f7b7c;};}function getScreenFrame(){const _0x5e0f38=isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit(),_0x45f777=isGecko()&&isGecko143OrNewer();if(_0x5e0f38||_0x45f777)return()=>Promise['resolve'](undefined);const _0xddc604=getUnstableScreenFrame();return async()=>{const _0x21890e=await _0xddc604(),_0x4f1491=_0x2447d0=>_0x2447d0===null?null:round$1(_0x2447d0,roundingPrecision);return[_0x4f1491(_0x21890e[0x0]),_0x4f1491(_0x21890e[0x1]),_0x4f1491(_0x21890e[0x2]),_0x4f1491(_0x21890e[0x3])];};}function getCurrentScreenFrame(){const _0x1b4aee=screen;return[replaceNaN(toFloat(_0x1b4aee['availTop']),null),replaceNaN(toFloat(_0x1b4aee['width'])-toFloat(_0x1b4aee['availWidth'])-replaceNaN(toFloat(_0x1b4aee['availLeft']),0x0),null),replaceNaN(toFloat(_0x1b4aee['height'])-toFloat(_0x1b4aee['availHeight'])-replaceNaN(toFloat(_0x1b4aee['availTop']),0x0),null),replaceNaN(toFloat(_0x1b4aee['availLeft']),null)];}function isFrameSizeNull(_0x499884){for(let _0x3b1fad=0x0;_0x3b1fad<0x4;++_0x3b1fad){if(_0x499884[_0x3b1fad]!==null&&_0x499884[_0x3b1fad]!==0x0)return![];}return!![];}async function getScreenIframe(){try{return await getIframePool()['execute']((_0x53cea8,_0x4668c5)=>{const _0x1bd12d=_0x4668c5['screen'],_0x323c63=_0x4b0dc9=>{const _0x501741=parseInt(_0x4b0dc9);return typeof _0x501741==='number'&&isNaN(_0x501741)?-0x1:_0x501741;};return{'w':_0x323c63(_0x1bd12d['width']),'h':_0x323c63(_0x1bd12d['height'])};});}catch{return null;}}function getScreenResolution(){if(isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit())return undefined;return getUnstableScreenResolution();}function getUnstableScreenResolution(){const _0x3058fb=screen,_0x38f7ed=_0x26d03d=>replaceNaN(toInt(_0x26d03d),null),_0x355b00=[_0x38f7ed(_0x3058fb['width']),_0x38f7ed(_0x3058fb['height'])];return _0x355b00['sort']()['reverse'](),_0x355b00;}const MIN_EVENTS=0x5,velocities=[];let lastY=0x0,lastTime=0x0,observing$1=![];function startObserving$1(){if(observing$1||typeof window==='undefined')return;observing$1=!![];const _0x59bff8={};_0x59bff8['passive']=!![],window['addEventListener']('scroll',()=>{const _0x32ed10=performance['now'](),_0x228f47=window['scrollY'];if(lastTime>0x0){const _0x548e2d=_0x32ed10-lastTime;if(_0x548e2d>0x0&&_0x548e2d<0x1f4){const _0x243175=Math['abs'](_0x228f47-lastY)/(_0x548e2d/0x3e8);velocities['push'](Math['round'](_0x243175));}}lastY=_0x228f47,lastTime=_0x32ed10;},_0x59bff8);}function getScrollBehavior(){startObserving$1();if(velocities['length']<MIN_EVENTS)return Promise['resolve'](null);const _0x3a9717=[...velocities]['sort']((_0x3d130c,_0x446ee7)=>_0x3d130c-_0x446ee7),_0x1ec92c=_0x3a9717[Math['floor'](_0x3a9717['length']*0.5)]??0x0,_0x49c7fc=_0x3a9717[Math['floor'](_0x3a9717['length']*0.9)]??0x0,_0x546de7={};return _0x546de7['p50']=_0x1ec92c,_0x546de7['p90']=_0x49c7fc,_0x546de7['count']=_0x3a9717['length'],Promise['resolve'](_0x546de7);}async function getScrollbarWidth(){return getIframePool()['execute']((_0x544f84,_0x49d404)=>{const _0xc8ed0e=_0x49d404['document'],_0x2eecdf=_0xc8ed0e['createElement']('div');_0x2eecdf['style']['width']='100px',_0x2eecdf['style']['height']='100px',_0x2eecdf['style']['overflow']='scroll',_0x2eecdf['style']['visibility']='hidden',_0xc8ed0e['body']['appendChild'](_0x2eecdf);const _0x41f244=_0x2eecdf['offsetWidth']===_0x2eecdf['clientWidth'];return _0xc8ed0e['body']['removeChild'](_0x2eecdf),_0x41f244;});}function getSessionStorage(){try{const _0xc95c3d=window['sessionStorage'];return _0xc95c3d!==null&&_0xc95c3d!==undefined;}catch{return!![];}}async function getStorageEstimate(){const _0x3a1e99=navigator['storage'];if(_0x3a1e99===undefined||typeof _0x3a1e99['estimate']!=='function')return null;try{const _0x3d5e12=await Promise['race']([_0x3a1e99['estimate'](),new Promise((_0x6bb8c7,_0x4eea53)=>setTimeout(()=>_0x4eea53(new Error('timeout')),0x1f4))]);if(_0x3d5e12['quota']!==undefined&&_0x3d5e12['quota']>0x0)return Math['round'](_0x3d5e12['quota']/(0x64*0x400*0x400))*(0x64*0x400*0x400);return null;}catch{return null;}}async function getStorageQuota(){const _0x2e759f=navigator['storage'];if(_0x2e759f===undefined)return null;const _0x46ad04=_0x2e759f['getDirectory'];if(typeof _0x46ad04!=='function')return null;try{const _0x13f818=await Promise['race']([_0x2e759f['getDirectory']()['then'](()=>'',_0x46166e=>_0x46166e instanceof Error?_0x46166e['message']:String(_0x46166e)),new Promise((_0x1b324e,_0x4c690f)=>setTimeout(()=>_0x4c690f(new Error('timeout')),0xfa))]);return _0x13f818;}catch{return null;}}const _0x31b963={};_0x31b963['AccentColor']='ac',_0x31b963['AccentColorText']='act',_0x31b963['ActiveText']='at',_0x31b963['ActiveBorder']='ab',_0x31b963['ActiveCaption']='aca',_0x31b963['AppWorkspace']='aw',_0x31b963['Background']='b',_0x31b963['ButtonHighlight']='bh',_0x31b963['ButtonShadow']='bs',_0x31b963['ButtonBorder']='bb',_0x31b963['ButtonFace']='bf',_0x31b963['ButtonText']='bt',_0x31b963['FieldText']='ft',_0x31b963['GrayText']='gt',_0x31b963['Highlight']='h',_0x31b963['HighlightText']='ht',_0x31b963['InactiveBorder']='ib',_0x31b963['InactiveCaption']='ic',_0x31b963['InactiveCaptionText']='ict',_0x31b963['InfoBackground']='ib',_0x31b963['InfoText']='it',_0x31b963['LinkText']='lt',_0x31b963['Mark']='m',_0x31b963['Menu']='me',_0x31b963['Scrollbar']='s',_0x31b963['ThreeDDarkShadow']='tdds',_0x31b963['ThreeDFace']='tdf',_0x31b963['ThreeDHighlight']='tdh',_0x31b963['ThreeDLightShadow']='tdls',_0x31b963['ThreeDShadow']='tds',_0x31b963['VisitedText']='vt',_0x31b963['Window']='w',_0x31b963['WindowFrame']='wf',_0x31b963['WindowText']='wt',_0x31b963['Selecteditem']='si',_0x31b963['Selecteditemtext']='sit';const systemColorMap=_0x31b963;function getSystemColors(){return getIframePool()['execute']((_0x137e87,_0x2167af)=>{const _0x1998fc=_0x2167af['document'];_0x1998fc['documentElement']['style']['colorScheme']='light';const _0x37c798=_0x1998fc['createElement']('div');_0x1998fc['body']['appendChild'](_0x37c798);const _0x388df6={};for(const _0x3caa89 of Object['keys'](systemColorMap)){_0x37c798['style']['color']=_0x3caa89,_0x388df6[systemColorMap[_0x3caa89]]=_0x2167af['getComputedStyle'](_0x37c798)['color'];}return _0x1998fc['body']['removeChild'](_0x37c798),_0x388df6;});}function getTimezone(){const _0x441fdb=window['Intl'],_0x341f00=_0x441fdb?.['DateTimeFormat'];if(_0x341f00!==undefined){const _0x28b016=new _0x341f00()['resolvedOptions']()['timeZone'];if(_0x28b016!=='')return _0x28b016;}const _0x2985ec=-getTimezoneOffset();return'UTC'+(_0x2985ec>=0x0?'+':'')+_0x2985ec;}function getTimezoneOffset(){const _0x322509=new Date()['getFullYear']();return Math['max'](toFloat(new Date(_0x322509,0x0,0x1)['getTimezoneOffset']()),toFloat(new Date(_0x322509,0x6,0x1)['getTimezoneOffset']()));}function getMeasuredTimezone(){let _0x45e5cf='';try{const _0x4f3837=window['Intl'],_0x5c3b50=_0x4f3837?.['DateTimeFormat'];_0x5c3b50!==undefined&&(_0x45e5cf=new _0x5c3b50()['resolvedOptions']()['timeZone']);}catch{}const _0x32af99=new Date()['getTimezoneOffset'](),_0x39e144=new Date('July\x201,\x201113')['getTimezoneOffset'](),_0x3f72f3={};return _0x3f72f3['reported']=_0x45e5cf,_0x3f72f3['offset']=_0x32af99,_0x3f72f3['historicalOffset']=_0x39e144,_0x3f72f3;}function getTouchSupport(){const _0x758038=navigator;let _0x41c1b3=0x0,_0x2dd7f8;if('maxTouchPoints'in _0x758038)_0x41c1b3=toInt(_0x758038['maxTouchPoints']);else _0x758038['msMaxTouchPoints']!==undefined&&(_0x41c1b3=_0x758038['msMaxTouchPoints']??0x0);try{document['createEvent']('TouchEvent'),_0x2dd7f8=!![];}catch{_0x2dd7f8=![];}const _0x4c03db='ontouchstart'in window,_0x2e2669={};return _0x2e2669['maxTouchPoints']=_0x41c1b3,_0x2e2669['touchEvent']=_0x2dd7f8,_0x2e2669['touchStart']=_0x4c03db,_0x2e2669;}function getUserAgent(){return navigator['userAgent'];}function getVendor(){return navigator['vendor']||'';}function getWindowDimensions(){const _0x257c38={};return _0x257c38['outerWidth']=window['outerWidth'],_0x257c38['outerHeight']=window['outerHeight'],_0x257c38['innerWidth']=window['innerWidth'],_0x257c38['innerHeight']=window['innerHeight'],_0x257c38;}function getBindToString(){try{return Function['prototype']['bind']['toString']();}catch{return'';}}function getCanvasModified(){try{const _0x581e97=document['createElement']('canvas');_0x581e97['width']=0x1,_0x581e97['height']=0x1;const _0x1542a6=_0x581e97['getContext']('2d');if(!_0x1542a6)return null;_0x1542a6['clearRect'](0x0,0x0,0x1,0x1);const _0x5a15c1=_0x1542a6['getImageData'](0x0,0x0,0x1,0x1)['data'];return _0x5a15c1[0x0]!==0x0||_0x5a15c1[0x1]!==0x0||_0x5a15c1[0x2]!==0x0||_0x5a15c1[0x3]!==0x0;}catch{return null;}}const CSS_PROPERTIES=['display','direction','unicode-bidi','writing-mode','color','font-family'];function getComputedStyleSignal(){const _0x13b5dc=window['getComputedStyle'](document['documentElement']);let _0x47d614=0x0;for(const _0x3d62aa of CSS_PROPERTIES){_0x13b5dc['getPropertyValue'](_0x3d62aa)!==''&&_0x47d614++;}return _0x47d614>=0x4;}function getCreateElementDescriptor(){const _0x302429=Object['getOwnPropertyDescriptor'](document,'createElement');return _0x302429?!('writeable'in _0x302429):null;}async function getDrmPersistence(){try{if(typeof navigator['requestMediaKeySystemAccess']!=='function')return null;const _0x252a17=['com.widevine.alpha','com.microsoft.playready'],_0x393675={},_0x1049d1=_0x252a17['map'](async _0x2d90d1=>{const _0xe1e57c={};_0xe1e57c['persistent']=![],_0xe1e57c['temporary']=![];const _0xbdb59b=_0xe1e57c;try{const _0x1e61f8={};_0x1e61f8['contentType']='audio/mp4;codecs=\x22mp4a.40.2\x22';const _0x4b6014={};_0x4b6014['initDataTypes']=['cenc'],_0x4b6014['audioCapabilities']=[_0x1e61f8],_0x4b6014['sessionTypes']=['persistent-license'],await navigator['requestMediaKeySystemAccess'](_0x2d90d1,[_0x4b6014]),_0xbdb59b['persistent']=!![];}catch{}try{const _0x22a3c8={};_0x22a3c8['contentType']='audio/mp4;codecs=\x22mp4a.40.2\x22';const _0x2ae97b={};_0x2ae97b['initDataTypes']=['cenc'],_0x2ae97b['audioCapabilities']=[_0x22a3c8],_0x2ae97b['sessionTypes']=['temporary'],await navigator['requestMediaKeySystemAccess'](_0x2d90d1,[_0x2ae97b]),_0xbdb59b['temporary']=!![];}catch{}_0x393675[_0x2d90d1]=_0xbdb59b;});return await Promise['race']([Promise['all'](_0x1049d1),new Promise(_0x14d620=>setTimeout(_0x14d620,0x1f4))]),Object['keys'](_0x393675)['length']>0x0?_0x393675:null;}catch{return null;}}function getErrorStackFormat(){try{;null[0x0]();}catch(_0x443e1c){if(_0x443e1c instanceof Error&&_0x443e1c['stack']!==undefined)return _0x443e1c['stack']['toString']();}return undefined;}function hasWindowProp(_0x132fd9){return _0x132fd9 in window;}function getExtensionDetection(){const _0x54d333=[['grammarly',()=>{return document['body']['hasAttribute']('data-gr-ext-installed')||document['querySelector']('.grammarly-desktop-integration')!==null;}],['metamask',()=>hasWindowProp('ethereum')],['deepl',()=>document['querySelector']('deepl-input-controller')!==null],['lastpass',()=>document['querySelector']('[data-lastpass-icon-root]')!==null],['1password',()=>document['querySelector']('com-1password-notification')!==null],['honey',()=>hasWindowProp('honeyAutocomplete')],['reactDevtools',()=>hasWindowProp('__REACT_DEVTOOLS_GLOBAL_HOOK__')],['reduxDevtools',()=>hasWindowProp('__REDUX_DEVTOOLS_EXTENSION__')]],_0x330180=[];let _0xd81ca7='';for(const [_0x4bf23c,_0x45740b]of _0x54d333){let _0x5be85b=![];try{_0x5be85b=_0x45740b();}catch{}_0x5be85b&&_0x330180['push'](_0x4bf23c),_0xd81ca7+=_0x5be85b?'1':'0';}const _0x189f6e={};return _0x189f6e['detected']=_0x330180,_0x189f6e['bitmask']=_0xd81ca7,_0x189f6e;}const CHROMIUM_CSS=[['aspect-ratio','1',0x58],['color','oklch(0\x200\x200)',0x6f],['container-type','inline-size',0x69],['animation-composition','add',0x70],['color','color-mix(in\x20srgb,\x20red,\x20blue)',0x6f],['text-wrap','balance',0x72],['field-sizing','content',0x78],['view-transition-name','foo',0x6f],['interpolate-size','allow-keywords',0x81],['ruby-align','center',0x80]],GECKO_CSS=[['color','light-dark(#000,\x20#fff)',0x78],['height','1lh',0x78],['text-wrap','balance',0x79],['text-wrap','pretty',0x80],['field-sizing','content',0x88]],WEBKIT_CSS=[['selector(:has(a))','',0xf],['container-type','inline-size',0x10],['font-size-adjust','ex-height\x200.5',0x11],['view-transition-name','foo',0x12]],g$1=globalThis,CHROMIUM_JS=[[()=>typeof AbortSignal['abort']==='function',0x5d],[()=>'URLPattern'in g$1,0x5f],[()=>typeof g$1['structuredClone']==='function',0x62],[()=>typeof AbortSignal['timeout']==='function',0x67],[()=>'formatRange'in Intl['NumberFormat']['prototype'],0x6b],[()=>'groupBy'in(g$1['Map']??{}),0x75],[()=>'fromAsync'in Array,0x77],[()=>'union'in Set['prototype'],0x7a]],GECKO_JS=[[()=>'findLast'in Array['prototype'],0x68],[()=>'withResolvers'in(g$1['Promise']??{}),0x79],[()=>'union'in Set['prototype'],0x7f],[()=>'Iterator'in g$1,0x82]],WEBKIT_JS=[[()=>'RegExp'in g$1&&/(?<=a)b/['test']('ab'),0x10],[()=>'groupBy'in(g$1['Map']??{}),0x11],[()=>'ViewTransition'in g$1,0x12]];function detectVersion(_0x5c7620,_0x3ffba5){let _0x33b770=null,_0x22bf61=null;if(typeof CSS!=='undefined'&&typeof CSS['supports']==='function')for(const [_0x19ec2a,_0x7b82c0,_0x14a5f6]of _0x5c7620){try{const _0x2c1a06=_0x7b82c0===''?CSS['supports'](_0x19ec2a):CSS['supports'](_0x19ec2a,_0x7b82c0);_0x2c1a06&&(_0x33b770===null||_0x14a5f6>_0x33b770)&&(_0x33b770=_0x14a5f6);}catch{}}for(const [_0x534c9c,_0x25abae]of _0x3ffba5){try{_0x534c9c()&&(_0x22bf61===null||_0x25abae>_0x22bf61)&&(_0x22bf61=_0x25abae);}catch{}}const _0x3e1fb9={};return _0x3e1fb9['cssVersion']=_0x33b770,_0x3e1fb9['jsVersion']=_0x22bf61,_0x3e1fb9;}function parseUAVersion(_0x106a98){const _0xec7ee8=navigator['userAgent'];if(_0x106a98==='chromium'){const _0xc3994a=/Chrom(?:e|ium)\/(\d+)/['exec'](_0xec7ee8);return _0xc3994a?parseInt(_0xc3994a[0x1],0xa):null;}if(_0x106a98==='gecko'){const _0x10a284=/Firefox\/(\d+)/['exec'](_0xec7ee8);return _0x10a284?parseInt(_0x10a284[0x1],0xa):null;}if(_0x106a98==='webkit'){const _0x2cc32a=/Version\/(\d+)/['exec'](_0xec7ee8);return _0x2cc32a?parseInt(_0x2cc32a[0x1],0xa):null;}return null;}function getFeatureVersion(){let _0x40ea90='unknown';try{if(isChromium())_0x40ea90='chromium';else{if(isGecko())_0x40ea90='gecko';else isWebKit()&&(_0x40ea90='webkit');}}catch{return null;}if(_0x40ea90==='unknown'){const _0x551bf8={};return _0x551bf8['cssVersion']=null,_0x551bf8['jsVersion']=null,_0x551bf8['uaVersion']=null,_0x551bf8['mismatch']=![],_0x551bf8['engine']=_0x40ea90,_0x551bf8;}let _0x6d8aed,_0x38c85f;if(_0x40ea90==='chromium')_0x6d8aed=CHROMIUM_CSS,_0x38c85f=CHROMIUM_JS;else _0x40ea90==='gecko'?(_0x6d8aed=GECKO_CSS,_0x38c85f=GECKO_JS):(_0x6d8aed=WEBKIT_CSS,_0x38c85f=WEBKIT_JS);const {cssVersion:_0x3b85ef,jsVersion:_0x4ba807}=detectVersion(_0x6d8aed,_0x38c85f),_0x368dba=parseUAVersion(_0x40ea90);let _0x4940ae=![];if(_0x368dba!==null){const _0x3cc72e=Math['max'](_0x3b85ef??0x0,_0x4ba807??0x0);_0x3cc72e>0x0&&_0x368dba-_0x3cc72e>0x14&&(_0x4940ae=!![]);}const _0x2ed566={};return _0x2ed566['cssVersion']=_0x3b85ef,_0x2ed566['jsVersion']=_0x4ba807,_0x2ed566['uaVersion']=_0x368dba,_0x2ed566['mismatch']=_0x4940ae,_0x2ed566['engine']=_0x40ea90,_0x2ed566;}function getGetterProxyDetection(){const _0x6d43e=Object['getOwnPropertyDescriptor'](Object['getPrototypeOf'](navigator),'hardwareConcurrency');if(!_0x6d43e?.['get'])return null;const _0xd3c997=window['Function'],_0xff889=window['Object'];let _0x193478=![];try{const _0x56c0fe=window;_0x193478=delete _0x56c0fe['Function']&&delete _0x56c0fe['Object'];}catch{_0x193478=![];}if(!_0x193478)return _0xd15d72(),null;try{return _0x6d43e['get']['toString'](),![];}catch{return!![];}finally{_0xd15d72();}function _0xd15d72(){try{window['Function']=_0xd3c997,window['Object']=_0xff889;}catch{}}}const GETTER_TARGETS=[['navigator',['plugins','userAgent','platform','appName','languages','vendor','hardwareConcurrency','deviceMemory','maxTouchPoints','connection','cookieEnabled','language','pdfViewerEnabled']],['screen',['width','availWidth','height','availHeight','colorDepth']]],TAMPER_CHECK_PROPS=['userAgent','platform','languages','vendor','hardwareConcurrency','deviceMemory','maxTouchPoints','plugins','connection','cookieEnabled'];function getGetterToString(){try{const _0x448d79={},_0x150775={};for(const [_0x2c7bf1,_0x5940c0]of GETTER_TARGETS){const _0x1fe9bc=window[_0x2c7bf1];if(_0x1fe9bc===null||_0x1fe9bc===undefined||typeof _0x1fe9bc!=='object')continue;for(const _0x3a31cc of _0x5940c0){try{const _0x31dd27=Object['getOwnPropertyDescriptor'](_0x1fe9bc,_0x3a31cc)?.['get']?.['toString']();_0x31dd27!==undefined&&(_0x448d79[_0x2c7bf1+'.'+_0x3a31cc]=_0x31dd27);}catch{}}}for(const _0x358188 of TAMPER_CHECK_PROPS){try{const _0xa2cde0=Object['getOwnPropertyDescriptor'](navigator,_0x358188);if(_0xa2cde0!==undefined){const _0xec099d={};if(_0xa2cde0['writable']===!![])_0xec099d['writable']=!![];if(_0xa2cde0['configurable']===!![])_0xec099d['configurable']=!![];(_0xec099d['writable']===!![]||_0xec099d['configurable']===!![])&&(_0x150775[_0x358188]=_0xec099d);}}catch{}}const _0x5286d9={};return _0x5286d9['overrides']=_0x448d79,_0x5286d9['tampered']=_0x150775,_0x5286d9;}catch{return null;}}const IMPOSSIBLE_BIGRAMS=new Set(['bq','bx','cb','cf','cj','cp','cv','cx','dx','fq','fx','gq','gx','hx','jb','jc','jd','jf','jg','jh','jk','jl','jm','jn','jp','jq','jr','js','jt','jv','jw','jx','jy','jz','kq','kx','kz','lq','lx','mx','pq','px','qb','qc','qd','qe','qf','qg','qh','qj','qk','ql','qm','qn','qo','qp','qq','qr','qs','qt','qv','qw','qx','qy','qz','sx','vb','vc','vf','vg','vj','vk','vm','vn','vp','vq','vw','vx','vz','wq','wx','wz','xb','xd','xf','xg','xj','xk','xq','xr','xw','xz','yq','yx','yy','zb','zc','zd','zf','zg','zj','zk','zl','zm','zn','zp','zq','zr','zs','zt','zv','zw','zx']);function getGpuGibberish(){try{const _0x52802b=document['createElement']('canvas'),_0x3668f5=_0x52802b['getContext']('webgl')??_0x52802b['getContext']('experimental-webgl');if(!_0x3668f5)return null;const _0xb49197=_0x3668f5['getExtension']('WEBGL_debug_renderer_info');if(!_0xb49197)return null;const _0x4e1aa5=_0x3668f5['getParameter'](_0xb49197['UNMASKED_RENDERER_WEBGL']);if(!_0x4e1aa5)return null;let _0x2c3b54=_0x4e1aa5;const _0x39cb6d=_0x2c3b54['match'](/^ANGLE \((.+)\)$/);if(_0x39cb6d){_0x2c3b54=_0x39cb6d[0x1];const _0x2b85e1=_0x2c3b54['lastIndexOf'](',');_0x2b85e1!==-0x1&&(_0x2c3b54=_0x2c3b54['substring'](0x0,_0x2b85e1));}const _0x1d79c9=_0x2c3b54['toLowerCase']()['replace'](/[^a-z]/g,'');let _0x25ad69=0x0;for(let _0x48c1d3=0x0;_0x48c1d3<_0x1d79c9['length']-0x1;_0x48c1d3++){const _0x1a8ad7=_0x1d79c9[_0x48c1d3]+_0x1d79c9[_0x48c1d3+0x1];IMPOSSIBLE_BIGRAMS['has'](_0x1a8ad7)&&_0x25ad69++;}const _0x2a35de={};return _0x2a35de['score']=_0x25ad69,_0x2a35de['gibberish']=_0x25ad69>0x2,_0x2a35de['renderer']=_0x4e1aa5,_0x2a35de;}catch{return null;}}function getIframeProxy(){try{if(typeof document==='undefined')return null;const _0x2bf644=document['createElement']('iframe');_0x2bf644['style']['display']='none',document['body']['appendChild'](_0x2bf644);try{const _0x58bf9c=_0x2bf644['contentWindow'];if(!_0x58bf9c){const _0x655f64={};return _0x655f64['accessible']=![],_0x655f64['proxyDetected']=![],_0x655f64['selfConsistent']=![],_0x655f64['frameElementNull']=![],_0x655f64;}let _0x3f95b6=![];try{_0x3f95b6=_0x58bf9c['self']===_0x58bf9c;}catch{_0x3f95b6=![];}let _0x1faf70=![];try{const _0x294544=Object['prototype']['toString']['call'](_0x58bf9c);_0x294544!=='[object\x20Window]'&&_0x294544!=='[object\x20global]'&&(_0x1faf70=!![]);}catch{_0x1faf70=!![];}try{const _0x28a713=Object['getOwnPropertyDescriptor'](_0x58bf9c,'self');if(_0x28a713===undefined&&!_0x1faf70){}}catch{_0x1faf70=!![];}let _0x34e29b=![];try{_0x34e29b=_0x58bf9c['frameElement']===null;}catch{_0x34e29b=!![];}const _0x355a2e={};return _0x355a2e['accessible']=!![],_0x355a2e['proxyDetected']=_0x1faf70,_0x355a2e['selfConsistent']=_0x3f95b6,_0x355a2e['frameElementNull']=_0x34e29b,_0x355a2e;}finally{document['body']['removeChild'](_0x2bf644);}}catch{return null;}}function getIframeSignals(){return new Promise(_0x52ed9f=>{try{const _0x42f9df=document['createElement']('iframe');_0x42f9df['style']['display']='none',_0x42f9df['style']['width']='0',_0x42f9df['style']['height']='0',_0x42f9df['style']['position']='absolute',_0x42f9df['style']['top']='-9999px';let _0xe65b54=null;const _0x27c3a0=()=>{if(_0xe65b54!==null)clearTimeout(_0xe65b54);try{_0x42f9df['parentNode']&&_0x42f9df['parentNode']['removeChild'](_0x42f9df);}catch{}};_0xe65b54=setTimeout(()=>{_0x27c3a0(),_0x52ed9f(null);},0x7d0),_0x42f9df['onload']=()=>{try{const _0x75ce19=_0x42f9df['contentWindow'];if(!_0x75ce19){_0x27c3a0(),_0x52ed9f(null);return;}const _0x2e46f4=_0x75ce19['navigator'],_0x32b404={};_0x32b404['webdriver']=_0x2e46f4['webdriver'],_0x32b404['platform']=_0x2e46f4['platform'],_0x32b404['hardwareConcurrency']=_0x2e46f4['hardwareConcurrency'],_0x32b404['deviceMemory']=_0x2e46f4['deviceMemory'],_0x32b404['language']=_0x2e46f4['language'];const _0xda59c3=_0x32b404;_0x27c3a0(),_0x52ed9f(_0xda59c3);}catch{_0x27c3a0(),_0x52ed9f(null);}},_0x42f9df['onerror']=()=>{_0x27c3a0(),_0x52ed9f(null);},document['body']['appendChild'](_0x42f9df);}catch{_0x52ed9f(null);}});}const CHECKED_PROPERTIES=['deviceMemory','hardwareConcurrency','language','languages','platform'];function getNavigatorDescriptors(){try{let _0x27da56='';for(const _0x23044d of CHECKED_PROPERTIES){try{const _0x5a91c0=Object['getOwnPropertyDescriptor'](navigator,_0x23044d);if(_0x5a91c0){_0x27da56+='1';continue;}const _0x129d24=Object['getOwnPropertyDescriptor'](Navigator['prototype'],_0x23044d);if(!_0x129d24){_0x27da56+='2';continue;}typeof _0x129d24['get']==='function'?_0x27da56+='0':_0x27da56+='1';}catch{_0x27da56+='2';}}return _0x27da56;}catch{return'22222';}}function getObjectInspectGlobal(){try{const _0x3d6fd7=new Function('return\x20objectToInspect');return _0x3d6fd7(),!![];}catch{return![];}}const _0x2f606b={};_0x2f606b['Windows']=['Segoe\x20Fluent\x20Icons','HoloLens\x20MDL2\x20Assets','Leelawadee\x20UI','Nirmala\x20UI','Cambria\x20Math'],_0x2f606b['macOS']=['Galvji','Noto\x20Serif\x20Yezidi\x20Regular','InaiMathi\x20Bold','Luminari','Helvetica\x20Neue'],_0x2f606b['Linux']=['Ubuntu','Noto\x20Color\x20Emoji','Liberation\x20Mono'];const OS_FONT_MARKERS=_0x2f606b,TEST_STRING='mmMwWLliI0O&1',TEST_SIZE='72px',BASE_FONT='monospace';function getOsFontValidation(){return new Promise(_0x4461f4=>{try{const _0x40a855=document['createElement']('canvas'),_0x1c2034=_0x40a855['getContext']('2d');if(!_0x1c2034){const _0x5d4d07={};_0x5d4d07['detectedOs']='unknown',_0x5d4d07['markers']=[],_0x4461f4(_0x5d4d07);return;}_0x1c2034['font']=TEST_SIZE+'\x20'+BASE_FONT;const _0x5089b7=_0x1c2034['measureText'](TEST_STRING)['width'],_0x6f5ed6=[];let _0x49b15f='unknown';for(const [_0x4f2a91,_0x2ddd82]of Object['entries'](OS_FONT_MARKERS)){for(const _0x42944a of _0x2ddd82){_0x1c2034['font']=TEST_SIZE+'\x20\x27'+_0x42944a+'\x27,\x20'+BASE_FONT;const _0x2b28b0=_0x1c2034['measureText'](TEST_STRING)['width'];_0x2b28b0!==_0x5089b7&&(_0x6f5ed6['push'](_0x42944a),_0x49b15f==='unknown'&&(_0x49b15f=_0x4f2a91));}}const _0x3b8276={};_0x3b8276['detectedOs']=_0x49b15f,_0x3b8276['markers']=_0x6f5ed6,_0x4461f4(_0x3b8276);}catch{const _0x2c1b0c={};_0x2c1b0c['detectedOs']='unknown',_0x2c1b0c['markers']=[],_0x4461f4(_0x2c1b0c);}});}const g=globalThis,_0x1bea6e={};_0x1bea6e['android']=0x2,_0x1bea6e['chromeos']=0x1;const _0x27527f={};_0x27527f['windows']=0x2,_0x27527f['mac']=0x2,_0x27527f['linux']=0x2;const _0x12bdd1={};_0x12bdd1['windows']=0x2,_0x12bdd1['mac']=0x2,_0x12bdd1['linux']=0x2;const _0x842ea={};_0x842ea['windows']=0x2,_0x842ea['mac']=0x2,_0x842ea['linux']=0x2;const _0x57d848={};_0x57d848['windows']=0x1,_0x57d848['mac']=0x1,_0x57d848['linux']=0x1;const _0x5857c3={};_0x5857c3['windows']=0x1,_0x5857c3['mac']=0x1,_0x5857c3['linux']=0x1;const _0x254532={};_0x254532['windows']=0x2,_0x254532['mac']=0x2,_0x254532['linux']=0x2,_0x254532['chromeos']=0x2;const _0x4ce32c={};_0x4ce32c['android']=0x2,_0x4ce32c['ios']=0x2;const _0x3a9180={};_0x3a9180['android']=0x1,_0x3a9180['ios']=0x1;const _0x1a238e={};_0x1a238e['android']=0x2;const _0x232c95={};_0x232c95['android']=0x2;const _0x94882e={};_0x94882e['windows']=0x1,_0x94882e['mac']=0x1,_0x94882e['chromeos']=0x1;const _0x4cd993={};_0x4cd993['windows']=0x2,_0x4cd993['mac']=0x2,_0x4cd993['linux']=0x2;const _0x1caceb={};_0x1caceb['windows']=0x1,_0x1caceb['mac']=0x1,_0x1caceb['linux']=0x1;const _0x261a91={};_0x261a91['android']=0x1,_0x261a91['windows']=0x1,_0x261a91['mac']=0x1;const PROBES=[['BarcodeDetector',()=>'BarcodeDetector'in g,_0x1bea6e],['EyeDropper',()=>'EyeDropper'in g,_0x27527f],['HID',()=>'hid'in navigator,_0x12bdd1],['Serial',()=>'serial'in navigator,_0x842ea],['USB',()=>'usb'in navigator,_0x57d848],['Bluetooth',()=>'bluetooth'in navigator,_0x5857c3],['SharedWorker',()=>'SharedWorker'in g,_0x254532],['orientation',()=>'ondeviceorientation'in g,_0x4ce32c],['DeviceMotionEvent',()=>'DeviceMotionEvent'in g,_0x3a9180],['ContactsManager',()=>'ContactsManager'in g,_0x1a238e],['ContentIndex',()=>'ContentIndex'in g,_0x232c95],['AppBadge',()=>typeof navigator['setAppBadge']==='function',_0x94882e],['FileSystemAccess',()=>'showOpenFilePicker'in g,_0x4cd993],['PressureObserver',()=>'PressureObserver'in g,_0x1caceb],['WakeLock',()=>'wakeLock'in navigator,_0x261a91]];function getPlatformApiScoring(){try{const _0x4fb2fe={},_0xbbc1da=[];for(const [_0x479764,_0x391809,_0x2d0f31]of PROBES){try{if(_0x391809()){_0xbbc1da['push'](_0x479764);for(const [_0x305290,_0x41f9bd]of Object['entries'](_0x2d0f31)){_0x4fb2fe[_0x305290]=(_0x4fb2fe[_0x305290]??0x0)+_0x41f9bd;}}}catch{}}const _0x3ea592={};return _0x3ea592['score']=_0x4fb2fe,_0x3ea592['apis']=_0xbbc1da,_0x3ea592;}catch{return null;}}function getPluginOverflow(){try{const _0x2a0f11=navigator['plugins'];if(_0x2a0f11['length']===0x0)return null;const _0x3e50c6=_0x2a0f11['item'](0x0);if(!_0x3e50c6)return null;let _0x58d02f=![];try{const _0x149ceb=_0x2a0f11['item'](0x100000000);_0x58d02f=_0x149ceb!==_0x3e50c6;}catch{_0x58d02f=!![];}let _0x2e7505=!![];try{if(_0x3e50c6['length']>0x0){const _0x56b8d1=_0x3e50c6['item'](0x0);_0x56b8d1&&(_0x2e7505=_0x56b8d1['enabledPlugin']===_0x3e50c6);}}catch{_0x2e7505=![];}const _0x6d4a85={};return _0x6d4a85['overflow']=_0x58d02f,_0x6d4a85['backref']=_0x2e7505,_0x6d4a85;}catch{return null;}}function getPrivateBrowsingChromium(){if(!isWebKit()||isModernBrowser())return null;try{const _0x26fa55=window;typeof _0x26fa55['webkitRequestFileSystem']==='function'&&_0x26fa55['webkitRequestFileSystem'](null,null,null,null);}catch{return!![];}try{const _0x311739=window['localStorage'];return _0x311739['setItem']('test','1'),_0x311739['removeItem']('test'),![];}catch{return!![];}}function getChainDepth(_0x45ad86,_0xb4001b){let _0x5cdcd2=_0x45ad86,_0x4366d2=0x0;while(_0x5cdcd2!==null&&_0x4366d2<_0xb4001b){_0x5cdcd2=Object['getPrototypeOf'](_0x5cdcd2),_0x4366d2++;}return _0x4366d2;}function checkChain(_0x4f3c4c,_0x261f91,_0x4f18a4,_0x89a6dc){try{const _0x55217d=Object['getPrototypeOf'](_0x4f3c4c),_0x1e37e6=_0x55217d===_0x4f18a4,_0x2cd327=getChainDepth(_0x4f3c4c,0xf);if(!_0x1e37e6){const _0x1f021d={};return _0x1f021d['target']=_0x261f91+'→'+_0x89a6dc,_0x1f021d['intact']=![],_0x1f021d['depth']=_0x2cd327,_0x1f021d;}const _0x417021={};return _0x417021['target']=_0x261f91+'→'+_0x89a6dc,_0x417021['intact']=!![],_0x417021['depth']=_0x2cd327,_0x417021;}catch{const _0x3fef71={};return _0x3fef71['target']=_0x261f91+'→'+_0x89a6dc,_0x3fef71['intact']=![],_0x3fef71['depth']=0x0,_0x3fef71;}}function getPrototypeChain(){const _0x3c5401=[];try{typeof Navigator!=='undefined'&&_0x3c5401['push'](checkChain(navigator,'navigator',Navigator['prototype'],'Navigator.prototype'));typeof Screen!=='undefined'&&_0x3c5401['push'](checkChain(screen,'screen',Screen['prototype'],'Screen.prototype'));if(typeof HTMLDocument!=='undefined')_0x3c5401['push'](checkChain(document,'document',HTMLDocument['prototype'],'HTMLDocument.prototype'));else typeof Document!=='undefined'&&_0x3c5401['push'](checkChain(document,'document',Document['prototype'],'Document.prototype'));const _0x23b2c3=navigator['constructor']===Navigator,_0x4579e0={};_0x4579e0['target']='navigator.constructor===Navigator',_0x4579e0['intact']=_0x23b2c3,_0x4579e0['depth']=0x0,_0x3c5401['push'](_0x4579e0);const _0x252b5e=Object['prototype']['toString']['call'](navigator),_0x38e3ff={};_0x38e3ff['target']='navigator.toStringTag',_0x38e3ff['intact']=_0x252b5e==='[object\x20Navigator]',_0x38e3ff['depth']=0x0,_0x3c5401['push'](_0x38e3ff);const _0x532823=Object['prototype']['toString']['call'](screen),_0x538962={};_0x538962['target']='screen.toStringTag',_0x538962['intact']=_0x532823==='[object\x20Screen]',_0x538962['depth']=0x0,_0x3c5401['push'](_0x538962);}catch{}const _0x166a55=_0x3c5401['length']>0x0&&_0x3c5401['every'](_0x4b497e=>_0x4b497e['intact']),_0x49300e={};return _0x49300e['valid']=_0x166a55,_0x49300e['checks']=_0x3c5401,_0x49300e;}const LIGHT_TARGETS=[[Navigator['prototype'],'hardwareConcurrency'],[Navigator['prototype'],'platform'],[Navigator['prototype'],'userAgent'],[Navigator['prototype'],'languages'],[Navigator['prototype'],'webdriver'],[Screen['prototype'],'width'],[Screen['prototype'],'height'],[Screen['prototype'],'colorDepth']];function getLightTargets(){const _0x1d5ba5=[...LIGHT_TARGETS];try{typeof CanvasRenderingContext2D!=='undefined'&&(_0x1d5ba5['push']([CanvasRenderingContext2D['prototype'],'getImageData']),_0x1d5ba5['push']([CanvasRenderingContext2D['prototype'],'fillText']));}catch{}try{typeof HTMLCanvasElement!=='undefined'&&_0x1d5ba5['push']([HTMLCanvasElement['prototype'],'toDataURL']);}catch{}try{typeof WebGLRenderingContext!=='undefined'&&_0x1d5ba5['push']([WebGLRenderingContext['prototype'],'getParameter']);}catch{}try{_0x1d5ba5['push']([Date['prototype'],'getTimezoneOffset']);}catch{}try{typeof Intl!=='undefined'&&typeof Intl['DateTimeFormat']!=='undefined'&&_0x1d5ba5['push']([Intl['DateTimeFormat']['prototype'],'resolvedOptions']);}catch{}return _0x1d5ba5;}function getHighTargets(){const _0x4e7906=getLightTargets(),_0x54f568=['appVersion','vendor','appName','connection','cookieEnabled','deviceMemory','doNotTrack','geolocation','language','maxTouchPoints','mimeTypes','onLine','permissions','plugins','product','productSub','serviceWorker','storage','vendorSub'];for(const _0x4c4338 of _0x54f568){_0x4c4338 in Navigator['prototype']&&_0x4e7906['push']([Navigator['prototype'],_0x4c4338]);}const _0x135053=['availHeight','availWidth','pixelDepth','availLeft','availTop','orientation'];for(const _0x41b42b of _0x135053){_0x41b42b in Screen['prototype']&&_0x4e7906['push']([Screen['prototype'],_0x41b42b]);}const _0x107258=['cookie','domain','referrer','title','URL','hidden','visibilityState','fullscreenElement'];for(const _0x170b9b of _0x107258){_0x170b9b in Document['prototype']&&_0x4e7906['push']([Document['prototype'],_0x170b9b]);}try{const _0x6af50a=['getBoundingClientRect','getClientRects','innerHTML','outerHTML','getAttribute','setAttribute'];for(const _0x5897ea of _0x6af50a){_0x5897ea in Element['prototype']&&_0x4e7906['push']([Element['prototype'],_0x5897ea]);}}catch{}try{const _0x1a00eb=['offsetWidth','offsetHeight','style'];for(const _0x457986 of _0x1a00eb){_0x457986 in HTMLElement['prototype']&&_0x4e7906['push']([HTMLElement['prototype'],_0x457986]);}}catch{}try{if(typeof CanvasRenderingContext2D!=='undefined'){const _0x1f97db=['fillRect','strokeRect','measureText','font','globalCompositeOperation','drawImage'];for(const _0x34af56 of _0x1f97db){_0x34af56 in CanvasRenderingContext2D['prototype']&&_0x4e7906['push']([CanvasRenderingContext2D['prototype'],_0x34af56]);}}}catch{}try{if(typeof WebGLRenderingContext!=='undefined'){const _0x4ee217=['getExtension','getSupportedExtensions','readPixels','createShader','shaderSource','compileShader'];for(const _0x5a978d of _0x4ee217){_0x5a978d in WebGLRenderingContext['prototype']&&_0x4e7906['push']([WebGLRenderingContext['prototype'],_0x5a978d]);}}}catch{}try{typeof AudioContext!=='undefined'&&(_0x4e7906['push']([AudioContext['prototype'],'createOscillator']),_0x4e7906['push']([AudioContext['prototype'],'createAnalyser']),_0x4e7906['push']([AudioContext['prototype'],'createGain']));}catch{}try{typeof OfflineAudioContext!=='undefined'&&_0x4e7906['push']([OfflineAudioContext['prototype'],'startRendering']);}catch{}try{_0x4e7906['push']([Performance['prototype'],'now']),_0x4e7906['push']([Performance['prototype'],'getEntries']);}catch{}try{_0x4e7906['push']([Storage['prototype'],'getItem']),_0x4e7906['push']([Storage['prototype'],'setItem']);}catch{}try{const _0x31e51a=['random','floor','ceil','round','sin','cos'];for(const _0x537735 of _0x31e51a){_0x537735 in Math&&_0x4e7906['push']([Math,_0x537735]);}}catch{}try{typeof MediaDevices!=='undefined'&&'enumerateDevices'in MediaDevices['prototype']&&_0x4e7906['push']([MediaDevices['prototype'],'enumerateDevices']);}catch{}try{typeof Permissions!=='undefined'&&'query'in Permissions['prototype']&&_0x4e7906['push']([Permissions['prototype'],'query']);}catch{}return _0x4e7906;}function checkToString(_0x392909,_0x23e7e5){try{const _0x4e806f=Object['getOwnPropertyDescriptor'](_0x392909,_0x23e7e5),_0x525899=_0x4e806f?.['get']??_0x4e806f?.['value']??_0x392909[_0x23e7e5];if(typeof _0x525899!=='function')return![];const _0xa8f60=Function['prototype']['toString']['call'](_0x525899);return!_0xa8f60['includes']('[native\x20code]');}catch{return![];}}function checkOwnDescriptor(_0x2dba9b){try{const _0x3ed50f=Object['getOwnPropertyDescriptor'](navigator,_0x2dba9b);return _0x3ed50f?.['value']!==undefined;}catch{return![];}}function checkHasPrototype(_0x4f26a1,_0x2b8f71){try{const _0x32d521=Object['getOwnPropertyDescriptor'](_0x4f26a1,_0x2b8f71);if(!_0x32d521?.['get'])return![];return'prototype'in _0x32d521['get'];}catch{return![];}}function checkOwnPropertyNames(_0x2f0118,_0x2a4c95){try{const _0x427b95=Object['getOwnPropertyDescriptor'](_0x2f0118,_0x2a4c95),_0x43183d=_0x427b95?.['get'];if(typeof _0x43183d!=='function')return![];const _0x2cdd8a=Object['getOwnPropertyNames'](_0x43183d)['sort']();if(_0x2cdd8a['length']>0x2)return!![];if(_0x2cdd8a['length']===0x2&&(_0x2cdd8a[0x0]!=='length'||_0x2cdd8a[0x1]!=='name'))return!![];return![];}catch{return![];}}function checkClassExtends(_0x446088,_0x5d3ccf){try{const _0x303f98=Object['getOwnPropertyDescriptor'](_0x446088,_0x5d3ccf),_0x2b7bbb=_0x303f98?.['get'];if(typeof _0x2b7bbb!=='function')return![];return new Function('fn','class\x20X\x20extends\x20fn\x20{}')(_0x2b7bbb),!![];}catch{return![];}}function checkNullProto(_0x357f4a,_0x22727e){try{const _0x52d4ac=Object['getOwnPropertyDescriptor'](_0x357f4a,_0x22727e),_0x174d7d=_0x52d4ac?.['get']??_0x52d4ac?.['value'];if(typeof _0x174d7d!=='function')return![];const _0x2989ef=Object['create'](_0x174d7d);return Object['setPrototypeOf'](_0x2989ef,null),_0x2989ef['toString']?.(),!![];}catch{return![];}}function checkIllegalInvocation(_0x19b29a,_0xb4acb1){try{const _0xa913b2=Object['getOwnPropertyDescriptor'](_0x19b29a,_0xb4acb1),_0x2731ff=_0xa913b2?.['get'];if(typeof _0x2731ff!=='function')return![];return _0x2731ff['call'](undefined),!![];}catch(_0x32486f){if(_0x32486f instanceof TypeError)return![];return!![];}}function checkBindToString(_0xd60a35,_0x362cfe){try{const _0x3d0d08=Object['getOwnPropertyDescriptor'](_0xd60a35,_0x362cfe),_0x2fa00b=_0x3d0d08?.['get']??_0x3d0d08?.['value'];if(typeof _0x2fa00b!=='function')return![];const _0x87b754=_0x2fa00b['bind'](null),_0x35c265=Function['prototype']['toString']['call'](_0x87b754);return!_0x35c265['includes']('[native\x20code]')&&!_0x35c265['includes']('native\x20code');}catch{return![];}}function checkReflectKeys(_0x3940a2,_0x4a24cf){try{const _0xa5d187=Object['getOwnPropertyDescriptor'](_0x3940a2,_0x4a24cf),_0x38826f=_0xa5d187?.['get']??_0xa5d187?.['value'];if(typeof _0x38826f!=='function')return![];const _0xa53c5c=Reflect['ownKeys'](_0x38826f)['sort'](),_0x1c8446=Object['getOwnPropertyNames'](_0x38826f)['sort']();if(_0xa53c5c['length']!==_0x1c8446['length'])return!![];for(let _0x5a52d2=0x0;_0x5a52d2<_0xa53c5c['length'];_0x5a52d2++){if(_0xa53c5c[_0x5a52d2]!==_0x1c8446[_0x5a52d2])return!![];}return![];}catch{return![];}}function checkDescriptorKeys(_0x1e6bbf,_0x235250){try{const _0x31f8b2=Object['getOwnPropertyDescriptor'](_0x1e6bbf,_0x235250);if(!_0x31f8b2)return![];const _0x50b17d=_0x31f8b2['get']??_0x31f8b2['set']??_0x31f8b2['value'];if(typeof _0x50b17d!=='function')return![];const _0x15a4d7=Object['getOwnPropertyDescriptors'](_0x50b17d),_0x32ed00=Object['keys'](_0x15a4d7)['filter'](_0x36601e=>_0x36601e!=='length'&&_0x36601e!=='name');return _0x32ed00['length']>0x0;}catch{return![];}}function checkProtoManipulation(_0x47f0b5,_0xb9d165){try{const _0x4fe01d=Object['getOwnPropertyDescriptor'](_0x47f0b5,_0xb9d165),_0xc8911b=_0x4fe01d?.['get']??_0x4fe01d?.['value'];if(typeof _0xc8911b!=='function')return![];const _0x15f340=_0xc8911b,_0x480818=Object['getPrototypeOf'](_0x15f340);try{return Object['setPrototypeOf'](_0x15f340,null),_0x15f340['valueOf'],Object['setPrototypeOf'](_0x15f340,_0x480818),![];}catch{return Object['setPrototypeOf'](_0x15f340,_0x480818),![];}}catch{return![];}}function checkInstanceOf(_0x561ce3,_0x11a7b6){try{const _0x15dab1=Object['getOwnPropertyDescriptor'](_0x561ce3,_0x11a7b6),_0x1a564f=_0x15dab1?.['get']??_0x15dab1?.['value'];if(typeof _0x1a564f!=='function')return![];const _0x476391=_0x1a564f instanceof _0x1a564f;return _0x476391===!![];}catch{return![];}}let proxyDetectionMode='high';function setProxyDetectionMode(_0x48dae3){proxyDetectionMode=_0x48dae3;}function getProxyDetection(){const _0x275ec5=proxyDetectionMode,_0x52da6a=_0x275ec5==='high'?getHighTargets():getLightTargets(),_0x17420e=_0x275ec5==='high'?[checkToString,checkHasPrototype,checkOwnPropertyNames,checkClassExtends,checkNullProto,checkIllegalInvocation,checkBindToString,checkReflectKeys,checkDescriptorKeys,checkProtoManipulation,checkInstanceOf]:[checkToString,checkHasPrototype,checkOwnPropertyNames,checkClassExtends],_0x3cd0a7=[];for(const [_0x5758da,_0x3b5fa0]of _0x52da6a){let _0x1554f2=![];try{_0x5758da===Navigator['prototype']&&checkOwnDescriptor(_0x3b5fa0)&&(_0x1554f2=!![]);}catch{}if(!_0x1554f2)for(const _0x412020 of _0x17420e){try{if(_0x412020(_0x5758da,_0x3b5fa0)){_0x1554f2=!![];break;}}catch{}}if(_0x1554f2){const _0x3c4abc=_0x5758da['constructor']['name'];_0x3cd0a7['push'](_0x3c4abc+'.'+_0x3b5fa0);}}const _0x4eb12b={};return _0x4eb12b['tested']=_0x52da6a['length'],_0x4eb12b['lied']=_0x3cd0a7['length'],_0x4eb12b['lies']=_0x3cd0a7,_0x4eb12b['mode']=_0x275ec5,_0x4eb12b;}function measureCssDimension(_0x2e2f6d,_0x23081e,_0x441f8c){try{if(typeof matchMedia!=='function')return 0x0;let _0x582c37=_0x23081e,_0x505ea1=_0x441f8c;while(_0x505ea1-_0x582c37>0x1){const _0x5d4ebb=Math['floor']((_0x582c37+_0x505ea1)/0x2),_0x3f79fc=_0x2e2f6d==='width'?'(min-device-width:\x20'+_0x5d4ebb+'px)':'(min-device-height:\x20'+_0x5d4ebb+'px)';matchMedia(_0x3f79fc)['matches']?_0x582c37=_0x5d4ebb:_0x505ea1=_0x5d4ebb;}return _0x582c37;}catch{return 0x0;}}function getScreenVerify(){try{const _0x2d1e6d=screen['width'],_0x6a55ec=screen['height'],_0x17d13d=measureCssDimension('width',0x64,0x1f40),_0x17d9b7=measureCssDimension('height',0x64,0x1f40),_0x1ab76c=_0x17d13d===0x0||Math['abs'](_0x2d1e6d-_0x17d13d)<=0x1,_0x3aac56=_0x17d9b7===0x0||Math['abs'](_0x6a55ec-_0x17d9b7)<=0x1,_0x216f30={};return _0x216f30['match']=_0x1ab76c&&_0x3aac56,_0x216f30['screenWidth']=_0x2d1e6d,_0x216f30['cssWidth']=_0x17d13d,_0x216f30['screenHeight']=_0x6a55ec,_0x216f30['cssHeight']=_0x17d9b7,_0x216f30;}catch{const _0x201967={};return _0x201967['match']=!![],_0x201967['screenWidth']=0x0,_0x201967['cssWidth']=0x0,_0x201967['screenHeight']=0x0,_0x201967['cssHeight']=0x0,_0x201967;}}function getStackBytes(){try{const _0x4f0b10=[];for(let _0x2c5426=0x0;_0x2c5426<0x5;_0x2c5426++){let _0x3c472f=0x0;const _0x197cbe=()=>{_0x3c472f++,_0x197cbe();};try{_0x197cbe();}catch{}let _0x2dfb29=0x0;const _0x3db281=()=>{_0x2dfb29++;const _0x4e807d=0x0;_0x3db281();};try{_0x3db281();}catch{}const _0x1efa63=_0x3c472f-_0x2dfb29;_0x1efa63>0x0&&_0x4f0b10['push'](Math['round'](_0x2dfb29*0x8/_0x1efa63));}if(_0x4f0b10['length']===0x0)return 0x0;return _0x4f0b10['sort']((_0x1a62c0,_0x39c3bf)=>_0x1a62c0-_0x39c3bf),_0x4f0b10[Math['floor'](_0x4f0b10['length']/0x2)]??0x0;}catch{return null;}}const UD=0xf9d684ec,TARGET_HASHES=new Set([0xf4c8818b,0xbf53f276,0x9bb1268b,0x8dfb6cf0,0xc03b5091,0x3cb85adc,0xacd7554a,0x7cd3d994,0xbcea22ee,0xb7916bb5,0x17606f7d,0xce50ef1d,0xd585fbaa,0x673afc2a,0x69560c56,0xcbd311ab,0x422cb2d0,0x56c7ff24,0x1ad6e59b,0xa845651,0x77221929,0xb0857c03,0xcb7c7f4f,0x89108b4c,0xeb2c7a0f,0x1cf0e843,0xc6e1ec3c,0xdec06b24,0x9f1c624d,0xe6194b71,0xf9d684ec]);function getWindowPropertyNames(){try{const _0x36f6db=[],_0x409ae1=Object['getOwnPropertyNames'](window);for(let _0x524ace=0x0;_0x524ace<_0x409ae1['length'];_0x524ace++){const _0x2f5010=crc32(_0x409ae1[_0x524ace]);TARGET_HASHES['has'](_0x2f5010)&&_0x36f6db['push'](_0x409ae1[_0x524ace]),_0x2f5010===UD&&_0x524ace+0x1<_0x409ae1['length']&&_0x36f6db['push'](_0x409ae1[_0x524ace+0x1]);}return _0x36f6db;}catch{return null;}}function getAutomationDescriptor(){try{const _0x134a5f=Object['getOwnPropertyDescriptor'](navigator,'webdriver'),_0x2c2fab=_0x134a5f!==undefined;let _0x2c7cf6=null;_0x134a5f&&(_0x2c7cf6=_0x134a5f['configurable']??null);let _0x29744a=![],_0x21e69a=null;try{const _0x27552c=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');_0x27552c&&(_0x29744a=typeof _0x27552c['get']==='function',_0x21e69a=_0x27552c['configurable']??null);}catch{}const _0x271731={};return _0x271731['hasOwnWebdriver']=_0x2c2fab,_0x271731['ownConfigurable']=_0x2c7cf6,_0x271731['prototypeHasGetter']=_0x29744a,_0x271731['prototypeConfigurable']=_0x21e69a,_0x271731;}catch{const _0x10f62e={};return _0x10f62e['hasOwnWebdriver']=![],_0x10f62e['ownConfigurable']=null,_0x10f62e['prototypeHasGetter']=![],_0x10f62e['prototypeConfigurable']=null,_0x10f62e;}}function getCdpDetection(){try{const _0x27403c=Error,_0x2b6540=_0x27403c['prepareStackTrace'];let _0xfc6ada=![];Object['defineProperty'](_0x27403c,'prepareStackTrace',{'get'(){return _0xfc6ada=!![],_0x2b6540;},'set'(_0xaaa18e){const _0x36ccd7={};_0x36ccd7['value']=_0xaaa18e,_0x36ccd7['writable']=!![],_0x36ccd7['configurable']=!![],Object['defineProperty'](_0x27403c,'prepareStackTrace',_0x36ccd7);},'configurable':!![]});try{console['debug']('');}catch{}try{const _0x1c1d53={};_0x1c1d53['value']=_0x2b6540,_0x1c1d53['writable']=!![],_0x1c1d53['configurable']=!![],Object['defineProperty'](_0x27403c,'prepareStackTrace',_0x1c1d53);}catch{}return _0xfc6ada;}catch{return![];}}function getChromeRuntime(){try{const _0x3adeda=window,_0x20d346=_0x3adeda['chrome'];if(!_0x20d346||typeof _0x20d346!=='object'){const _0x2c1ee2={};return _0x2c1ee2['hasChrome']=![],_0x2c1ee2['hasRuntime']=![],_0x2c1ee2['hasPlatformOs']=![],_0x2c1ee2['hasConnect']=![],_0x2c1ee2['connectNative']=![],_0x2c1ee2['hasApp']=![],_0x2c1ee2['appIsInstalled']=null,_0x2c1ee2['hasCsi']=![],_0x2c1ee2['hasLoadTimes']=![],_0x2c1ee2['runtimeKeyCount']=0x0,_0x2c1ee2;}const _0x4f1a05=_0x20d346['runtime'],_0x554d0e=_0x4f1a05!==undefined&&_0x4f1a05!==null;let _0x18487b=![],_0x580098=![],_0x4ac1f7=![],_0x16a1ca=0x0;if(_0x554d0e&&typeof _0x4f1a05==='object'){_0x18487b='PlatformOs'in _0x4f1a05||'PlatformArch'in _0x4f1a05,_0x580098=typeof _0x4f1a05['connect']==='function';if(_0x580098)try{_0x4ac1f7=/\[native code\]/['test'](Function['prototype']['toString']['call'](_0x4f1a05['connect']));}catch{_0x4ac1f7=![];}try{_0x16a1ca=Object['getOwnPropertyNames'](_0x4f1a05)['length'];}catch{_0x16a1ca=0x0;}}const _0x2566a4=_0x20d346['app'],_0x2bcf7b=_0x2566a4!==undefined&&_0x2566a4!==null;let _0x10d741=null;_0x2bcf7b&&typeof _0x2566a4==='object'&&(_0x10d741=_0x2566a4['isInstalled']===!![]);const _0x3b1c6d=typeof _0x20d346['csi']==='function',_0x4ee7f0=typeof _0x20d346['loadTimes']==='function',_0x54ebcc={};return _0x54ebcc['hasChrome']=!![],_0x54ebcc['hasRuntime']=_0x554d0e,_0x54ebcc['hasPlatformOs']=_0x18487b,_0x54ebcc['hasConnect']=_0x580098,_0x54ebcc['connectNative']=_0x4ac1f7,_0x54ebcc['hasApp']=_0x2bcf7b,_0x54ebcc['appIsInstalled']=_0x10d741,_0x54ebcc['hasCsi']=_0x3b1c6d,_0x54ebcc['hasLoadTimes']=_0x4ee7f0,_0x54ebcc['runtimeKeyCount']=_0x16a1ca,_0x54ebcc;}catch{return null;}}async function getDevtoolsDetection(){if(!isChromium()&&!isSafariWebKit())return null;try{const _0x24bf7d=await new Promise(_0x350268=>{if(isChromium()){const _0x28421f=new Error();_0x28421f['name']='\x20',Object['defineProperty'](_0x28421f,'stack',{'get':_0x350268['bind'](null,!![])}),console['debug'](_0x28421f);}else{const _0x9f5332=document['createElement']('div');_0x9f5332['toString']=()=>'',Object['defineProperty'](_0x9f5332,'id',{'get'(){_0x350268(!![]);const _0xe82e03=new Error();_0xe82e03['name']='';throw _0xe82e03;}}),console['debug'](_0x9f5332);}setTimeout(()=>_0x350268(![]));});return _0x24bf7d;}catch{return null;}}function getEvalLength(){return eval['toString']()['length'];}function getEventIsTrusted(){try{const _0xef287e=new Event(''),_0x55bcb1=_0xef287e['isTrusted'];return typeof _0x55bcb1==='undefined'?null:{'isTrusted':_0x55bcb1};}catch{return null;}}const _0x1b1c8b={};_0x1b1c8b['window']=['awesomium'];const _0x4100cb={};_0x4100cb['window']=['RunPerfTest'];const _0x332c16={};_0x332c16['window']=['CefSharp'];const _0xf5233b={};_0xf5233b['window']=['emit'];const _0xc375f1={};_0xc375f1['window']=['fmget_targets'];const _0x1b3490={};_0x1b3490['window']=['geb'];const _0x4d24f8={};_0x4d24f8['window']=['__nightmare','nightmare'];const _0x463a74={};_0x463a74['window']=['__phantomas'];const _0x185ace={};_0x185ace['window']=['callPhantom','_phantom'];const _0x109818={};_0x109818['window']=['spawn'];const _0x25b113={};_0x25b113['window']=['_Selenium_IDE_Recorder','_selenium','calledSelenium',/^([a-z]){3}_.*_(Array|Promise|Symbol)$/],_0x25b113['document']=['__selenium_evaluate','selenium-evaluate','__selenium_unwrapped'];const _0x433b90={};_0x433b90['window']=['wdioElectron'];const _0x5d92dc={};_0x5d92dc['window']=['webdriver','__webdriverFunc','__lastWatirAlert','__lastWatirConfirm','__lastWatirPrompt','_WEBDRIVER_ELEM_CACHE','ChromeDriverw'],_0x5d92dc['document']=['__webdriver_script_fn','__driver_evaluate','__webdriver_evaluate','__fxdriver_evaluate','__driver_unwrapped','__webdriver_unwrapped','__fxdriver_unwrapped','__webdriver_script_fn','__webdriver_script_func','__webdriver_script_function','$cdc_asdjflasutopfhvcZLmcf','$cdc_asdjflasutopfhvcZLmcfl_','$chrome_asyncScriptInfo','__$webdriverAsyncExecutor'];const _0x3e6b5a={};_0x3e6b5a['window']=['domAutomation','domAutomationController'];const _0xe24211={};_0xe24211['window']=['iimPlay','iimGetLastError','iimGetLastExtract'];const _0x20d58f={};_0x20d58f['window']=['__automa__'];const _0x3ff639={};_0x3ff639['window']=['_webscraper_data'];const _0x486fa9={};_0x486fa9['window']=['_KatalonRecorder'];const _0x10d2b6={};_0x10d2b6['window']=['uivision','__uivision'];const _0x4c0021={};_0x4c0021['window']=['%testCafeDriverInstance%','%hammerhead%'];const _0x489ef6={};_0x489ef6['window']=['__cypress'];const _0x1e5f1a={};_0x1e5f1a['window']=['__puppeteer_evaluation_script__'],_0x1e5f1a['document']=['__puppeteer_evaluation_script__'];const _0x14f41f={};_0x14f41f['window']=['__playwright','__pw_manual','__pwInitScripts','__playwright__binding__'],_0x14f41f['document']=['__playwright_evaluation_script__'];const _0x3b6160={};_0x3b6160['awesomium']=_0x1b1c8b,_0x3b6160['cef']=_0x4100cb,_0x3b6160['cefsharp']=_0x332c16,_0x3b6160['coachjs']=_0xf5233b,_0x3b6160['fminer']=_0xc375f1,_0x3b6160['geb']=_0x1b3490,_0x3b6160['nightmarejs']=_0x4d24f8,_0x3b6160['phantomas']=_0x463a74,_0x3b6160['phantomjs']=_0x185ace,_0x3b6160['rhino']=_0x109818,_0x3b6160['selenium']=_0x25b113,_0x3b6160['webdriverio']=_0x433b90,_0x3b6160['webdriver']=_0x5d92dc,_0x3b6160['headless_chrome']=_0x3e6b5a,_0x3b6160['imacros']=_0xe24211,_0x3b6160['automa']=_0x20d58f,_0x3b6160['web_scraper']=_0x3ff639,_0x3b6160['katalon']=_0x486fa9,_0x3b6160['ui_vision']=_0x10d2b6,_0x3b6160['testcafe']=_0x4c0021,_0x3b6160['cypress']=_0x489ef6,_0x3b6160['puppeteer']=_0x1e5f1a,_0x3b6160['playwright_internal']=_0x14f41f;const TOOL_MARKERS=_0x3b6160;function getOwnPropertyNames(_0x39b227){try{return Object['getOwnPropertyNames'](_0x39b227);}catch{return[];}}function matchesAny(_0x2067b4,_0x37f1ae){for(const _0x13a096 of _0x37f1ae){if(typeof _0x13a096==='string'){if(_0x2067b4['indexOf'](_0x13a096)!==-0x1)return!![];}else for(const _0x518429 of _0x2067b4){if(_0x13a096['test'](_0x518429))return!![];}}return![];}function getHeadlessSignals(){const _0x16e592=getOwnPropertyNames(window),_0xd0af8b=typeof document!=='undefined'?getOwnPropertyNames(document):[],_0x4d19d8={};for(const _0x35eae7 of Object['keys'](TOOL_MARKERS)){const _0x2a9907=TOOL_MARKERS[_0x35eae7],_0xbd1ac6=_0x2a9907['window']?matchesAny(_0x16e592,_0x2a9907['window']):![],_0x5117e7=_0x2a9907['document']&&_0xd0af8b['length']?matchesAny(_0xd0af8b,_0x2a9907['document']):![];_0x4d19d8[_0x35eae7]=_0xbd1ac6||_0x5117e7;}return _0x4d19d8;}let cachedResult=null,observing=![];function startObserving(){if(observing||typeof window==='undefined')return;observing=!![];const _0x4b1e2a=performance['now'](),_0xa5bcd6=['click','touchstart','keydown'],_0x351de1=_0x431f87=>{cachedResult={'firstInteractionMs':Math['round'](performance['now']()-_0x4b1e2a),'interactionType':_0x431f87['type']};for(const _0x377179 of _0xa5bcd6){window['removeEventListener'](_0x377179,_0x351de1);}};for(const _0x536ddf of _0xa5bcd6){const _0x38c38e={};_0x38c38e['once']=!![],_0x38c38e['passive']=!![],window['addEventListener'](_0x536ddf,_0x351de1,_0x38c38e);}}function getInteractionTiming(){return startObserving(),Promise['resolve'](cachedResult);}async function getNotificationContradiction(){try{if(typeof Notification==='undefined')return undefined;const _0x363d64=navigator['permissions'];if(_0x363d64===undefined||typeof _0x363d64['query']!=='function')return undefined;const _0x1f609f={};_0x1f609f['name']='notifications';const _0xbf3d41=await _0x363d64['query'](_0x1f609f);return Notification['permission']==='denied'&&_0xbf3d41['state']==='prompt';}catch{return undefined;}}function getPlaywrightMarkers(){try{const _0x263465=window,_0x4b80cf=['__pwInitScripts','__playwright__binding__','__playwright_evaluation_script__','__pw_manual'];for(const _0x7b7a12 of _0x4b80cf){if(_0x7b7a12 in _0x263465)return!![];}return![];}catch{return![];}}const AUTOMATION_PATTERNS=['UtilityScript','__puppeteer_evaluation_script__','__playwright_evaluation_script__','__selenium_evaluation_script__','pptr://','playwright://','__puppeteer','__playwright'];function getSourceUrlLeak(){try{const _0x3307e0=new Error('probe'),_0x285ef6=_0x3307e0['stack']??'';for(const _0x5ea0b6 of AUTOMATION_PATTERNS){if(_0x285ef6['includes'](_0x5ea0b6)){const _0x42c43e={};return _0x42c43e['leaked']=!![],_0x42c43e['pattern']=_0x5ea0b6,_0x42c43e;}}try{const _0x334d98=new Function('return\x20new\x20Error(\x22probe\x22).stack'),_0x24334d=_0x334d98();if(typeof _0x24334d==='string')for(const _0x4267b1 of AUTOMATION_PATTERNS){if(_0x24334d['includes'](_0x4267b1)){const _0x47a1a3={};return _0x47a1a3['leaked']=!![],_0x47a1a3['pattern']=_0x4267b1,_0x47a1a3;}}}catch{}const _0x599dda={};return _0x599dda['leaked']=![],_0x599dda['pattern']=null,_0x599dda;}catch{const _0x5e0330={};return _0x5e0330['leaked']=![],_0x5e0330['pattern']=null,_0x5e0330;}}function getWebdriver(){const _0x425dc3=navigator['webdriver'],_0x3da23e={};_0x3da23e['status']=-0x1,_0x3da23e['value']=null;if(_0x425dc3===null)return _0x3da23e;const _0x2da9ac={};_0x2da9ac['status']=-0x2,_0x2da9ac['value']=null;if(_0x425dc3===undefined)return _0x2da9ac;return{'status':0x0,'value':Boolean(_0x425dc3)};}function getWebdriverWritable(){try{const _0x110d75=Object['getOwnPropertyDescriptor'](navigator,'webdriver')!==undefined;if(_0x110d75){const _0x29946c=Object['getOwnPropertyDescriptor'](navigator,'webdriver');if('value'in _0x29946c)return!![];}const _0x298eae=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');if(!_0x298eae)return!![];if('value'in _0x298eae)return!![];const _0x4d3c9f=navigator,_0xea8e55=navigator['webdriver'];_0x4d3c9f['webdriver']=!_0xea8e55;const _0x54f191=navigator['webdriver']!==_0xea8e55;if(_0x54f191)try{delete _0x4d3c9f['webdriver'];}catch{}return _0x54f191;}catch{return![];}}function getWindowClose(){return window['close']===undefined?null:window['close']['toString']();}function getWindowProcess(){const _0x595299=window['process'];if(_0x595299===undefined)return undefined;if(_0x595299&&typeof _0x595299!=='object')return undefined;return _0x595299;}const WORKER_CODE='\x0a\x27use\x20strict\x27;\x0aself.window\x20=\x20self;\x0aself.document\x20=\x20{\x20hidden:\x20false,\x20addEventListener:\x20()\x20=>\x20{},\x20removeEventListener:\x20()\x20=>\x20{}\x20};\x0a\x0afunction\x20getWasmFeatures()\x20{\x0a\x20\x20try\x20{\x0a\x20\x20\x20\x20if\x20(typeof\x20WebAssembly\x20===\x20\x27undefined\x27\x20||\x20typeof\x20WebAssembly.validate\x20!==\x20\x27function\x27)\x20return\x20null;\x0a\x20\x20\x20\x20var\x20prefix\x20=\x20[0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10];\x0a\x20\x20\x20\x20var\x20modules\x20=\x20[\x0a\x20\x20\x20\x20\x20\x20[9,1,7,0,65,0,253,15,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[240,67,0,0,0,12,1,10,0,252,2,3,1,1,0,0,110,26,11,161,10],\x0a\x20\x20\x20\x20\x20\x20[6,1,4,0,18,0,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[8,1,6,0,65,0,192,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[7,1,5,0,208,112,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20];\x0a\x20\x20\x20\x20var\x20bitmask\x20=\x200;\x0a\x20\x20\x20\x20for\x20(var\x20i\x20=\x200;\x20i\x20<\x20modules.length;\x20i++)\x20{\x0a\x20\x20\x20\x20\x20\x20bitmask\x20<<=\x201;\x0a\x20\x20\x20\x20\x20\x20var\x20bytes\x20=\x20new\x20Uint8Array(prefix.concat(modules[i]));\x0a\x20\x20\x20\x20\x20\x20if\x20(WebAssembly.validate(bytes.buffer))\x20bitmask\x20|=\x201;\x0a\x20\x20\x20\x20}\x0a\x20\x20\x20\x20return\x20bitmask;\x0a\x20\x20}\x20catch(e)\x20{\x20return\x20null;\x20}\x0a}\x0a\x0afunction\x20getSafe(fn)\x20{\x0a\x20\x20try\x20{\x20return\x20fn();\x20}\x20catch(e)\x20{\x20return\x20null;\x20}\x0a}\x0a\x0aself.addEventListener(\x27message\x27,\x20function(e)\x20{\x0a\x20\x20if\x20(e.data\x20===\x20\x27run\x27)\x20{\x0a\x20\x20\x20\x20var\x20result\x20=\x20{\x0a\x20\x20\x20\x20\x20\x20hardwareConcurrency:\x20getSafe(function()\x20{\x20return\x20navigator.hardwareConcurrency\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20deviceMemory:\x20getSafe(function()\x20{\x20return\x20navigator.deviceMemory\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20platform:\x20getSafe(function()\x20{\x20return\x20navigator.platform\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20userAgent:\x20getSafe(function()\x20{\x20return\x20navigator.userAgent\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20languages:\x20getSafe(function()\x20{\x20return\x20navigator.languages\x20?\x20Array.prototype.slice.call(navigator.languages)\x20:\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20wasmFeatures:\x20getWasmFeatures(),\x0a\x20\x20\x20\x20\x20\x20doNotTrack:\x20getSafe(function()\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20var\x20dnt\x20=\x20navigator.doNotTrack;\x0a\x20\x20\x20\x20\x20\x20\x20\x20return\x20dnt\x20===\x20undefined\x20||\x20dnt\x20===\x20null\x20?\x20null\x20:\x20String(dnt);\x0a\x20\x20\x20\x20\x20\x20}),\x0a\x20\x20\x20\x20};\x0a\x20\x20\x20\x20self.postMessage(result);\x0a\x20\x20}\x0a});\x0a\x0aself.postMessage(\x27ready\x27);\x0a';function getWorkerIsolation(){return new Promise(_0x59d726=>{try{if(typeof Worker==='undefined'||typeof Blob==='undefined'||typeof URL==='undefined'){_0x59d726(null);return;}const _0x362dcf={};_0x362dcf['type']='text/javascript';const _0x466707=new Blob([WORKER_CODE],_0x362dcf),_0x3ad8ff=URL['createObjectURL'](_0x466707);let _0xf51f30=![];const _0x328517=new Worker(_0x3ad8ff),_0x3d6f50=setTimeout(()=>{!_0xf51f30&&(_0xf51f30=!![],_0x328517['terminate'](),URL['revokeObjectURL'](_0x3ad8ff),_0x59d726(null));},0x1f4);_0x328517['addEventListener']('error',()=>{!_0xf51f30&&(_0xf51f30=!![],clearTimeout(_0x3d6f50),_0x328517['terminate'](),URL['revokeObjectURL'](_0x3ad8ff),_0x59d726(null));}),_0x328517['addEventListener']('message',_0x29a3d6=>{if(_0x29a3d6['data']==='ready'){_0x328517['postMessage']('run');return;}!_0xf51f30&&(_0xf51f30=!![],clearTimeout(_0x3d6f50),_0x328517['terminate'](),URL['revokeObjectURL'](_0x3ad8ff),_0x59d726(_0x29a3d6['data']));});}catch{_0x59d726(null);}});}const CSS_PROBES=[['container-type','inline-size'],['container-type','size'],['selector(&)',''],['grid-template-columns','subgrid'],['width','calc(sin(1)\x20*\x201px)'],['width','calc(cos(1)\x20*\x201px)'],['width','calc(tan(1)\x20*\x201px)'],['width','calc(round(1.5,\x201)\x20*\x201px)'],['width','calc(mod(5,\x203)\x20*\x201px)'],['width','calc(rem(5,\x203)\x20*\x201px)'],['width','calc(abs(-1)\x20*\x201px)'],['width','calc(sign(-1)\x20*\x201px)'],['color','oklch(0.5\x200.2\x20120)'],['color','oklab(0.5\x200.1\x200.1)'],['color','color(display-p3\x201\x200\x200)'],['color','color-mix(in\x20oklch,\x20red,\x20blue)'],['color','lch(50\x20100\x20120)'],['color','lab(50\x2080\x20-10)'],['color','hwb(120\x2010%\x2020%)'],['background','linear-gradient(in\x20oklch,\x20red,\x20blue)'],['text-wrap','balance'],['text-wrap','pretty'],['text-wrap','stable'],['initial-letter','2'],['hyphenate-limit-chars','6\x203\x202'],['text-spacing-trim','space-all'],['font-synthesis','small-caps'],['font-palette','normal'],['width','fit-content'],['field-sizing','content'],['interpolate-size','allow-keywords'],['anchor-name','--a'],['position-anchor','--a'],['selector(:is(a))',''],['selector(:where(a))',''],['selector(:has(a))',''],['view-transition-name','hero'],['animation-timeline','scroll()'],['scroll-timeline-name','--t'],['timeline-scope','--t'],['backdrop-filter','blur(2px)'],['-webkit-backdrop-filter','blur(2px)'],['mask-composite','add'],['mask-border-source','none'],['overscroll-behavior','contain'],['scroll-behavior','smooth'],['scrollbar-width','thin'],['scrollbar-gutter','stable'],['scroll-snap-type','x\x20mandatory'],['accent-color','auto'],['content-visibility','auto'],['contain','paint'],['aspect-ratio','1'],['color-scheme','dark'],['forced-color-adjust','none'],['print-color-adjust','exact'],['background','paint(worklet)']];function getCssSupportExtended(){if(typeof CSS==='undefined'||typeof CSS['supports']!=='function')return null;const _0x226e10={};for(const [_0x518101,_0x47a901]of CSS_PROBES){const _0x281afa=_0x47a901===''?_0x518101:_0x518101+':'+_0x47a901;try{_0x226e10[_0x281afa]=_0x47a901===''?CSS['supports'](_0x518101):CSS['supports'](_0x518101,_0x47a901);}catch{_0x226e10[_0x281afa]=![];}}return _0x226e10;}async function getDetectBrave(){if(!('brave'in navigator))return undefined;const _0x5076f2=Object['getOwnPropertyDescriptor'](navigator,'brave')?.['value']??navigator['brave'];if(_0x5076f2===undefined||typeof _0x5076f2['isBrave']!=='function')return undefined;try{return!!await _0x5076f2['isBrave']();}catch{return undefined;}}function getDetectChromium(){return isChromium();}function getDetectChromium86(){if(!isChromium())return null;return isChromium86OrNewer();}function getDetectChromium122(){if(!isChromium())return null;return isChromium122OrNewer();}function getDetectEdgeHTML(){return isEdgeHTML();}function getDetectGecko(){return isGecko();}function getDetectGecko120(){if(!isGecko())return null;return isGecko120OrNewer();}function getDetectGecko143(){if(!isGecko())return null;return isGecko143OrNewer();}function getDetectMobile(){return isAndroid();}function getDetectSafari(){if(isSafariWebKit())return!![];if(isWebKit()&&isDesktopWebKit()&&!isGecko()&&!isChromium())return!![];return![];}function getDetectTrident(){return isTrident();}function getDetectWebKit(){return isWebKit();}function getDetectWebKit606(){if(!isWebKit())return null;return isWebKit606OrNewer();}function getDetectWebKit616(){if(!isWebKit())return null;return isWebKit616OrNewer();}const BLACKLIST=['webkitPersistentStorage','connectionSpeed','xr','hid'];function getNavigatorMethods(){const _0x4a6a9b=navigator,_0x1928e5=[];for(const _0x3014dd of Object['getOwnPropertyNames'](Object['getPrototypeOf'](_0x4a6a9b))){if(BLACKLIST['includes'](_0x3014dd))continue;try{const _0x5177da=_0x4a6a9b[_0x3014dd];typeof _0x5177da==='function'&&_0x5177da['name']!==undefined&&_0x1928e5['push'](_0x5177da['name']);}catch(_0x743c4a){return[_0x743c4a instanceof Error?_0x743c4a['message']:String(_0x743c4a)];}}return _0x1928e5;}const HIGH_ENTROPY_HINTS=['brands','mobile','platform','platformVersion','architecture','bitness','model','uaFullVersion','fullVersionList'];async function getUAClientHints(){const _0x490a0b=navigator['userAgentData'];if(!_0x490a0b||typeof _0x490a0b!=='object')return undefined;const _0x39e7aa={},_0x1f7cd3=[];if(typeof _0x490a0b['getHighEntropyValues']==='function'){const _0x2e9266=_0x490a0b['getHighEntropyValues']['bind'](_0x490a0b);await Promise['all'](HIGH_ENTROPY_HINTS['map'](async _0x2d4ec3=>{try{const _0x2d6625=await _0x2e9266([_0x2d4ec3]),_0x14bb8a=_0x2d6625[_0x2d4ec3];_0x14bb8a!==undefined&&(_0x39e7aa[_0x2d4ec3]=typeof _0x14bb8a==='string'?_0x14bb8a:JSON['stringify'](_0x14bb8a));}catch(_0x58cde9){if(_0x58cde9 instanceof Error&&_0x58cde9['name']==='NotAllowedError')_0x1f7cd3['push'](_0x2d4ec3);else throw _0x58cde9;}}));}return{'b':_0x490a0b['brands']['map'](_0x64ef8a=>({'b':_0x64ef8a['brand'],'v':_0x64ef8a['version']})),'m':_0x490a0b['mobile'],'p':_0x490a0b['platform']??null,'h':_0x39e7aa,'nah':_0x1f7cd3};}function getVendorFlavors(){const _0x1dd2e2=[];for(const _0x4be55e of['chrome','safari','__crWeb','__gCrWeb','yandex','__yb','__ybro','__firefox__','__edgeTrackingPreventionStatistics','webkit','oprt','samsungAr','ucweb','UCShellJava','puffinDevice']){const _0x368bb8=window[_0x4be55e];_0x368bb8!==undefined&&_0x368bb8!==null&&typeof _0x368bb8==='object'&&_0x1dd2e2['push'](_0x4be55e);}return _0x1dd2e2['sort']();}const _0xbceb8c={};_0xbceb8c['workerIsolation']=getWorkerIsolation,_0xbceb8c['webGlExtended']=getWebGlExtended;const stage1Sources=_0xbceb8c,_0x3fec2d={};_0x3fec2d['fonts']=getFonts,_0x3fec2d['fontPreferences']=getFontPreferences,_0x3fec2d['audio']=getAudioSignal,_0x3fec2d['screenFrame']=getScreenFrame,_0x3fec2d['permissions']=getPermissions,_0x3fec2d['mathml']=getMathML,_0x3fec2d['systemColors']=getSystemColors,_0x3fec2d['uaClientHints']=getUAClientHints,_0x3fec2d['videoCodecs']=getVideoCodecs,_0x3fec2d['scrollbarWidth']=getScrollbarWidth,_0x3fec2d['formControlFont']=getFormControlFont,_0x3fec2d['notificationContradiction']=getNotificationContradiction,_0x3fec2d['fileSystemAccess']=getFileSystemAccess,_0x3fec2d['storageQuota']=getStorageQuota,_0x3fec2d['subPixelRendering']=getSubPixelRendering,_0x3fec2d['screenIframe']=getScreenIframe,_0x3fec2d['emoji']=getEmojiSignal,_0x3fec2d['canvas']=getCanvasSignal,_0x3fec2d['filesystemApi']=getFilesystemApi,_0x3fec2d['subtleCryptoExport']=getSubtleCryptoExport,_0x3fec2d['drmPersistence']=getDrmPersistence,_0x3fec2d['detectBrave']=getDetectBrave,_0x3fec2d['storageEstimate']=getStorageEstimate,_0x3fec2d['indexedDbBlob']=getIndexedDbBlob,_0x3fec2d['webRtcDevices']=getWebRtcDevices,_0x3fec2d['webGpu']=getWebGpuSignal,_0x3fec2d['barcodeDetection']=getBarcodeDetection,_0x3fec2d['canvasAdvanced']=getCanvasAdvanced,_0x3fec2d['iframeProxy']=getIframeProxy,_0x3fec2d['iframeSignals']=getIframeSignals,_0x3fec2d['audioTrap']=getAudioTrap,_0x3fec2d['svgEmoji']=getSvgEmojiSignal,_0x3fec2d['audioConsistency']=getAudioConsistency,_0x3fec2d['osFontValidation']=getOsFontValidation,_0x3fec2d['scrollBehavior']=getScrollBehavior,_0x3fec2d['interactionTiming']=getInteractionTiming;const stage2Sources=_0x3fec2d,_0x23650e={};_0x23650e['osCpu']=getOsCpu,_0x23650e['languages']=getLanguages,_0x23650e['colorDepth']=getColorDepth,_0x23650e['deviceMemory']=getDeviceMemory,_0x23650e['screenResolution']=getScreenResolution,_0x23650e['hardwareConcurrency']=getHardwareConcurrency,_0x23650e['timezone']=getTimezone,_0x23650e['sessionStorage']=getSessionStorage,_0x23650e['localStorage']=getLocalStorage,_0x23650e['indexedDB']=getIndexedDB,_0x23650e['platform']=getPlatform,_0x23650e['plugins']=getPlugins,_0x23650e['touchSupport']=getTouchSupport,_0x23650e['vendor']=getVendor,_0x23650e['vendorFlavors']=getVendorFlavors,_0x23650e['cookiesEnabled']=areCookiesEnabled,_0x23650e['colorGamut']=getColorGamut,_0x23650e['invertedColors']=areColorsInverted,_0x23650e['forcedColors']=areColorsForced,_0x23650e['contrast']=getContrastPreference,_0x23650e['reducedMotion']=isMotionReduced,_0x23650e['hdr']=isHDR,_0x23650e['math']=getMathSignal,_0x23650e['pdfViewerEnabled']=isPdfViewerEnabled,_0x23650e['architecture']=getArchitecture,_0x23650e['applePay']=getApplePayState,_0x23650e['audioBaseLatency']=getAudioContextBaseLatency,_0x23650e['dateTimeLocale']=getDateTimeLocale,_0x23650e['mediaQueries']=getMediaQueries,_0x23650e['headless']=getHeadlessSignals,_0x23650e['colorScheme']=getColorScheme,_0x23650e['devicePixelRatio']=getDevicePixelRatio,_0x23650e['evalLength']=getEvalLength,_0x23650e['userAgent']=getUserAgent,_0x23650e['appVersion']=getAppVersion,_0x23650e['productSub']=getProductSub,_0x23650e['networkRtt']=getNetworkRTT,_0x23650e['errorStack']=getErrorStackFormat,_0x23650e['performanceResolution']=getPerformanceResolution,_0x23650e['webdriver']=getWebdriver,_0x23650e['windowDimensions']=getWindowDimensions,_0x23650e['supportedConstraints']=getSupportedConstraints,_0x23650e['documentAttributes']=getDocumentAttributes,_0x23650e['mimeTypes']=getMimeTypes,_0x23650e['bindToString']=getBindToString,_0x23650e['windowProcess']=getWindowProcess,_0x23650e['wasmFeatures']=getWasmFeatures,_0x23650e['windowClose']=getWindowClose,_0x23650e['createElementDescriptor']=getCreateElementDescriptor,_0x23650e['getterProxyDetection']=getGetterProxyDetection,_0x23650e['navigatorMethods']=getNavigatorMethods,_0x23650e['eventIsTrusted']=getEventIsTrusted,_0x23650e['pluginPropsEnum']=getPluginPropsEnum,_0x23650e['windowPropertyNames']=getWindowPropertyNames,_0x23650e['getterToString']=getGetterToString,_0x23650e['detectTrident']=getDetectTrident,_0x23650e['detectEdgeHTML']=getDetectEdgeHTML,_0x23650e['detectChromium']=getDetectChromium,_0x23650e['detectWebKit']=getDetectWebKit,_0x23650e['detectSafari']=getDetectSafari,_0x23650e['detectGecko']=getDetectGecko,_0x23650e['detectMobile']=getDetectMobile,_0x23650e['objectInspectGlobal']=getObjectInspectGlobal,_0x23650e['pluginsCount']=getPluginsCount,_0x23650e['navigatorLanguages']=getNavigatorLanguages,_0x23650e['detectChromium86']=getDetectChromium86,_0x23650e['detectChromium122']=getDetectChromium122,_0x23650e['detectGecko120']=getDetectGecko120,_0x23650e['detectGecko143']=getDetectGecko143,_0x23650e['detectWebKit606']=getDetectWebKit606,_0x23650e['detectWebKit616']=getDetectWebKit616,_0x23650e['doNotTrack']=getDoNotTrack,_0x23650e['privateBrowsingChromium']=getPrivateBrowsingChromium,_0x23650e['connectionInfo']=getConnectionInfo,_0x23650e['devtoolsDetection']=getDevtoolsDetection,_0x23650e['computedStyle']=getComputedStyleSignal,_0x23650e['canvasRandom']=getCanvasRandom,_0x23650e['cssSupportExtended']=getCssSupportExtended,_0x23650e['bomEnumeration']=getBomEnumeration,_0x23650e['audioContextInfo']=getAudioContextInfo,_0x23650e['documentFocus']=getDocumentFocus,_0x23650e['pluginsArray']=getPluginsArray,_0x23650e['chromeRuntime']=getChromeRuntime,_0x23650e['sourceUrlLeak']=getSourceUrlLeak,_0x23650e['automationDescriptor']=getAutomationDescriptor,_0x23650e['pluginOverflow']=getPluginOverflow,_0x23650e['webdriverWritable']=getWebdriverWritable,_0x23650e['cdpDetection']=getCdpDetection,_0x23650e['playwrightMarkers']=getPlaywrightMarkers,_0x23650e['navigatorDescriptors']=getNavigatorDescriptors,_0x23650e['mediaCodecsExtended']=getMediaCodecsExtended,_0x23650e['measuredTimezone']=getMeasuredTimezone,_0x23650e['proxyDetection']=getProxyDetection,_0x23650e['canvasModified']=getCanvasModified,_0x23650e['gpuGibberish']=getGpuGibberish,_0x23650e['extensionDetection']=getExtensionDetection,_0x23650e['featureVersion']=getFeatureVersion,_0x23650e['localeCurrency']=getLocaleCurrency,_0x23650e['stackBytes']=getStackBytes,_0x23650e['platformApiScoring']=getPlatformApiScoring,_0x23650e['prototypeChain']=getPrototypeChain,_0x23650e['screenVerify']=getScreenVerify,_0x23650e['webGlBasics']=getWebGlBasics,_0x23650e['webGlExtensions']=getWebGlExtensions,_0x23650e['webGlCanvas']=getWebGlCanvas,_0x23650e['webGlSphere']=getWebGlSphere,_0x23650e['webGpuContention']=getWebGpuContention,_0x23650e['webCodecsHardware']=getWebCodecsHardware,_0x23650e['cssTrigPrecision']=getCssTrigPrecision,_0x23650e['intlSegmenter']=getIntlSegmenter,_0x23650e['performanceMemory']=getPerformanceMemory;const stage3Sources=_0x23650e,_0x47423d={...stage1Sources};_0x47423d;function loadBuiltinSources(_0x3a2a98){const _0x2f9284={'initTime':performance['now'](),'stage1LoadStart':null,'idleResolvedAt':null,'stage23LoadStart':null,'getStart':null,'stage1Done':null,'stage23Done':null,'allDone':null},_0x3d1b6c=Object['keys'](stage1Sources)['length']>0x0,_0x5817b5=_0x3d1b6c?((()=>{return _0x2f9284['stage1LoadStart']=performance['now'](),loadSources(stage1Sources,_0x3a2a98,[]);})()):null,_0xf233e6={...stage2Sources,...stage3Sources},_0x4e389d=_0xf233e6,_0x133aec=requestIdleCallbackIfAvailable(0x8,0x10)['then'](()=>{return _0x2f9284['idleResolvedAt']=performance['now'](),_0x2f9284['stage23LoadStart']=performance['now'](),loadSources(_0x4e389d,_0x3a2a98,[]);});return _0x133aec['then'](undefined,()=>undefined),async function _0x55fc72(){_0x2f9284['getStart']=performance['now']();if(_0x5817b5){const [_0x2ba0f2,_0x3d7be5]=await Promise['all']([_0x5817b5()['then'](_0x360015=>{return _0x2f9284['stage1Done']=performance['now'](),_0x360015;}),_0x133aec['then'](_0x393658=>_0x393658())['then'](_0x52417e=>{return _0x2f9284['stage23Done']=performance['now'](),_0x52417e;})]);_0x2f9284['allDone']=performance['now']();const _0x4d90fa={..._0x3d7be5,..._0x2ba0f2};return _0x4d90fa;}const _0x2e34cf=await _0x133aec,_0x3dae42=await _0x2e34cf();return _0x2f9284['stage23Done']=performance['now'](),_0x2f9284['allDone']=performance['now'](),_0x3dae42;};}const version='0.0.1';function componentsToDebugString(_0x570938){return JSON['stringify'](_0x570938,(_0x56cff1,_0x5c08e)=>{if(_0x5c08e instanceof Error)return errorToObject(_0x5c08e);return _0x5c08e;},0x2);}function makeEngine(_0x20aa12,_0x15fc32){const _0x30b16e=Date['now']();return{async 'get'(_0x791e54){const _0x1273ae=Date['now'](),_0x41767a=await _0x20aa12();(_0x15fc32===!![]||_0x791e54?.['debug']===!![])&&console['log']('Copy\x20the\x20text\x20below\x20to\x20get\x20the\x20debug\x20data:\x0a\x0a```\x0aversion:\x20'+version+'\x0auserAgent:\x20'+navigator['userAgent']+'\x0atimeBetweenLoadAndGet:\x20'+(_0x1273ae-_0x30b16e)+'\x0acomponents:\x20'+componentsToDebugString(_0x41767a)+'\x0a```');const _0x39aa38={};return _0x39aa38['components']=_0x41767a,_0x39aa38['version']=version,_0x39aa38;}};}function load(_0x1950a4={}){const {debug:_0x405217,proxyDetection:proxyDetection='high',apiKey:_0x584975,endpoint:_0x3fa17f,linkedId:_0x1acc77,tag:_0x482738}=_0x1950a4;setProxyDetectionMode(proxyDetection);const _0x457afb={};_0x457afb['cache']={},_0x457afb['debug']=_0x405217;const _0x4be4aa=loadBuiltinSources(_0x457afb),_0x5bf6f5=makeEngine(_0x4be4aa,_0x405217);if(_0x584975!==undefined&&_0x3fa17f!==undefined){const _0x55b8dc={};_0x55b8dc['apiKey']=_0x584975,_0x55b8dc['endpoint']=_0x3fa17f;const _0x40270f={};_0x40270f['linkedId']=_0x1acc77,_0x40270f['tag']=_0x482738,_0x5bf6f5['result']=capture(_0x5bf6f5,_0x55b8dc,_0x40270f)['catch'](_0x1eec92=>{_0x405217===!![]&&console['error']('[Sentinel]\x20auto-capture\x20failed:',_0x1eec92);throw _0x1eec92;});}return _0x5bf6f5;}function start(_0x5e8e6e){const {apiKey:_0x4f8164,endpoint:_0x25d942,cache:_0x418457,..._0x358d9a}=_0x5e8e6e,_0xd31a49=load(_0x358d9a),_0x8a5514={};_0x8a5514['apiKey']=_0x4f8164,_0x8a5514['endpoint']=_0x25d942;const _0x72574b=_0x8a5514,_0x53a83b=_0x418457?createCache(_0x418457):null;return{'get'(_0x48465c){const {ignoreCache:_0x17dfe3,..._0x21dec9}=_0x48465c??{};if(!_0x17dfe3&&_0x53a83b!==null){const _0x50d528=_0x53a83b['get']();if(_0x50d528!==null)return Promise['resolve'](_0x50d528);}return capture(_0xd31a49,_0x72574b,_0x21dec9)['then'](_0xf93a21=>{if(_0x53a83b!==null)_0x53a83b['set'](_0xf93a21);return _0xf93a21;});},'clearCache'(){if(_0x53a83b!==null)_0x53a83b['clear']();}};}const _0x3cb5f0={};_0x3cb5f0['start']=start;var index=_0x3cb5f0;export{index as default,start};
1
+ const STORAGE_KEY_DEFAULT='_dxc';function createMemoryCache(_0x1a01a8){let _0x5df87a=null;return{'get'(){if(_0x5df87a===null)return null;if(Date['now']()-_0x5df87a['ts']>_0x1a01a8*0x3e8)return _0x5df87a=null,null;return _0x5df87a['result'];},'set'(_0x4fc837){_0x5df87a={'result':_0x4fc837,'ts':Date['now']()};},'clear'(){_0x5df87a=null;}};}function createStorageCache(_0x5073c2,_0x4c721c,_0x25031e){const _0x567021=_0x25031e;return{'get'(){try{const _0x4a41a0=_0x4c721c['getItem'](_0x567021);if(_0x4a41a0===null)return null;const _0x4f3ca5=JSON['parse'](_0x4a41a0);if(Date['now']()-_0x4f3ca5['ts']>_0x5073c2*0x3e8)return _0x4c721c['removeItem'](_0x567021),null;return _0x4f3ca5['result'];}catch{return null;}},'set'(_0x1fa292){try{_0x4c721c['setItem'](_0x567021,JSON['stringify']({'result':_0x1fa292,'ts':Date['now']()}));}catch{}},'clear'(){try{_0x4c721c['removeItem'](_0x567021);}catch{}}};}function createCache(_0x4f4ac3){const {ttl:ttl=0x0,location:location='memory',prefix:prefix=STORAGE_KEY_DEFAULT}=_0x4f4ac3;if(ttl<=0x0)return null;if(location==='memory')return createMemoryCache(ttl);try{const _0x4647db=location==='localStorage'?localStorage:sessionStorage;return createStorageCache(ttl,_0x4647db,prefix);}catch{return createMemoryCache(ttl);}}const SESSION_KEY='_dxe',SESSION_TIMEOUT_MS=0x1e*0x3c*0x3e8;let cachedSessionId=null,lastActivity=0x0;function getSessionId(){if(typeof sessionStorage==='undefined')return undefined;const _0x3eccef=Date['now']();if(cachedSessionId!==null&&_0x3eccef-lastActivity<SESSION_TIMEOUT_MS)return lastActivity=_0x3eccef,cachedSessionId;const _0x33e107=sessionStorage['getItem'](SESSION_KEY);if(_0x33e107!==null)try{const _0x429312=JSON['parse'](_0x33e107);if(_0x3eccef-_0x429312['ts']<SESSION_TIMEOUT_MS)return cachedSessionId=_0x429312['id'],lastActivity=_0x3eccef,persistSession(_0x429312['id'],_0x3eccef),_0x429312['id'];}catch{}const _0x5177d7=generateSessionId();return cachedSessionId=_0x5177d7,lastActivity=_0x3eccef,persistSession(_0x5177d7,_0x3eccef),_0x5177d7;}function persistSession(_0x138e3e,_0x510287){try{const _0x15fccb={};_0x15fccb['id']=_0x138e3e,_0x15fccb['ts']=_0x510287,sessionStorage['setItem'](SESSION_KEY,JSON['stringify'](_0x15fccb));}catch{}}function generateSessionId(){if(typeof crypto!=='undefined'&&typeof crypto['randomUUID']==='function')return crypto['randomUUID']();return'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'['replace'](/[xy]/g,_0x1e00d0=>{const _0x41000d=Math['random']()*0x10|0x0,_0x4170c5=_0x1e00d0==='x'?_0x41000d:_0x41000d&0x3|0x8;return _0x4170c5['toString'](0x10);});}const KEY_CLIENT_COOKIE='_dx',KEY_LOCAL_STORAGE='_dxl',KEY_IDB_STORE='_dx',KEY_IDB_KEY='d',IDB_DB_NAME='_dx',IDB_VERSION=0x1;function getCookie(){try{const _0x24c6ba=document['cookie']['match'](new RegExp('(?:^|;\x5cs*)'+KEY_CLIENT_COOKIE+'=([^;]*)'));return _0x24c6ba?decodeURIComponent(_0x24c6ba[0x1]):null;}catch{return null;}}function setCookie(_0x37efc3){try{const _0x53feef=0x16d*0x18*0x3c*0x3c,_0x38dc53=typeof location!=='undefined'&&location['protocol']==='https:'?';\x20secure':'';document['cookie']=KEY_CLIENT_COOKIE+'='+encodeURIComponent(_0x37efc3)+';\x20path=/;\x20max-age='+_0x53feef+';\x20samesite=lax'+_0x38dc53;}catch{}}function getLocalStorage$1(){try{return localStorage['getItem'](KEY_LOCAL_STORAGE);}catch{return null;}}function setLocalStorage(_0x4e8134){try{localStorage['setItem'](KEY_LOCAL_STORAGE,_0x4e8134);}catch{}}function openIdb(){return new Promise(_0x5e229c=>{try{const _0x2f722c=indexedDB['open'](IDB_DB_NAME,IDB_VERSION);_0x2f722c['onupgradeneeded']=()=>{const _0x161861=_0x2f722c['result'];!_0x161861['objectStoreNames']['contains'](KEY_IDB_STORE)&&_0x161861['createObjectStore'](KEY_IDB_STORE);},_0x2f722c['onsuccess']=()=>_0x5e229c(_0x2f722c['result']),_0x2f722c['onerror']=()=>_0x5e229c(null);}catch{_0x5e229c(null);}});}function getIndexedDb(){return new Promise(_0x3a449e=>{openIdb()['then'](_0x4be942=>{if(_0x4be942===null){_0x3a449e(null);return;}try{const _0x3712a4=_0x4be942['transaction'](KEY_IDB_STORE,'readonly'),_0x15a7fb=_0x3712a4['objectStore'](KEY_IDB_STORE),_0x1c63e0=_0x15a7fb['get'](KEY_IDB_KEY);_0x1c63e0['onsuccess']=()=>{_0x4be942['close'](),_0x3a449e(typeof _0x1c63e0['result']==='string'?_0x1c63e0['result']:null);},_0x1c63e0['onerror']=()=>{_0x4be942['close'](),_0x3a449e(null);};}catch{_0x4be942['close'](),_0x3a449e(null);}})['catch'](()=>_0x3a449e(null));});}function setIndexedDb(_0x5485a3){openIdb()['then'](_0x4226da=>{if(_0x4226da===null)return;try{const _0x4c7b41=_0x4226da['transaction'](KEY_IDB_STORE,'readwrite'),_0x422613=_0x4c7b41['objectStore'](KEY_IDB_STORE);_0x422613['put'](_0x5485a3,KEY_IDB_KEY),_0x4c7b41['oncomplete']=()=>_0x4226da['close'](),_0x4c7b41['onerror']=()=>_0x4226da['close']();}catch{_0x4226da['close']();}})['catch'](()=>{});}async function loadDeviceToken(){const _0xdc56da=getCookie();if(_0xdc56da!==null)return _0xdc56da;const _0x4041b1=getLocalStorage$1();if(_0x4041b1!==null)return _0x4041b1;return getIndexedDb();}function saveDeviceToken(_0x960704){setCookie(_0x960704),setLocalStorage(_0x960704),setIndexedDb(_0x960704);}function wait(_0x20da87,_0x56de38){return new Promise(_0x2b174b=>setTimeout(_0x2b174b,_0x20da87,_0x56de38));}function releaseEventLoop(){return new Promise(_0x471623=>{const _0x203e1b=new MessageChannel();_0x203e1b['port1']['onmessage']=()=>_0x471623(),_0x203e1b['port2']['postMessage'](null);});}function requestIdleCallbackIfAvailable(_0x4d3c28,_0x12b0ac=Infinity){const {requestIdleCallback:_0x3e61a1}=window;if(typeof _0x3e61a1==='function'){const _0x4cb15e={};return _0x4cb15e['timeout']=_0x12b0ac,new Promise(_0x23504a=>_0x3e61a1['call'](window,()=>_0x23504a(),_0x4cb15e));}return wait(Math['min'](_0x4d3c28,_0x12b0ac));}function isPromise(_0x75ec60){return _0x75ec60!==null&&_0x75ec60!==undefined&&typeof _0x75ec60['then']==='function';}function awaitIfAsync(_0x36a51c,_0x2fe854){try{const _0x2cf31a=_0x36a51c();isPromise(_0x2cf31a)?_0x2cf31a['then'](_0x317163=>_0x2fe854(!![],_0x317163),_0x40131d=>_0x2fe854(![],_0x40131d)):_0x2fe854(!![],_0x2cf31a);}catch(_0x594af7){_0x2fe854(![],_0x594af7);}}async function mapWithBreaks(_0x531947,_0x14f6da,_0x116374=0x10){const _0x4dcab0=Array(_0x531947['length']);let _0x2a321c=Date['now']();for(let _0x590744=0x0;_0x590744<_0x531947['length'];++_0x590744){_0x4dcab0[_0x590744]=_0x14f6da(_0x531947[_0x590744],_0x590744);const _0x1ee219=Date['now']();_0x1ee219>=_0x2a321c+_0x116374&&(_0x2a321c=_0x1ee219,await releaseEventLoop());}return _0x4dcab0;}function suppressUnhandledRejectionWarning(_0x166b87){return _0x166b87['then'](undefined,()=>undefined),_0x166b87;}const DEFAULT_MAX_RETRIES=0x3,DEFAULT_BASE_DELAY=0xc8,DEFAULT_MAX_DELAY=0x2710;async function fetchWithRetry(_0x45e496,_0xa43842,_0x59a2dc){const _0x2bcf64=_0x59a2dc?.['maxRetries']??DEFAULT_MAX_RETRIES,_0x1901b1=_0x59a2dc?.['baseDelayMs']??DEFAULT_BASE_DELAY,_0x326ad4=_0x59a2dc?.['maxDelayMs']??DEFAULT_MAX_DELAY;for(let _0x47b117=0x0;_0x47b117<=_0x2bcf64;_0x47b117++){try{const _0x398791=await fetch(_0x45e496,_0xa43842);if(_0x398791['ok']||_0x398791['status']<0x1f4&&_0x398791['status']!==0x1ad)return _0x398791;if(_0x398791['status']===0x1ad&&_0x47b117<_0x2bcf64){const _0x3c8acc=parseRetryAfter(_0x398791['headers']['get']('Retry-After'));await wait(_0x3c8acc??computeBackoff(_0x47b117,_0x1901b1,_0x326ad4));continue;}if(_0x398791['status']>=0x1f4&&_0x47b117<_0x2bcf64){await wait(computeBackoff(_0x47b117,_0x1901b1,_0x326ad4));continue;}return _0x398791;}catch(_0x1a9803){if(_0x47b117>=_0x2bcf64)throw _0x1a9803;await wait(computeBackoff(_0x47b117,_0x1901b1,_0x326ad4));}}throw new Error('fetchWithRetry:\x20exhausted\x20retries');}function computeBackoff(_0x456450,_0x2593af,_0x571f65){const _0x2e92c2=Math['min'](_0x571f65,_0x2593af*0x2**_0x456450);return _0x2e92c2*(0.5+Math['random']()*0.5);}function parseRetryAfter(_0xe0fa31){if(_0xe0fa31===null)return null;const _0x54085a=Number(_0xe0fa31);if(!Number['isNaN'](_0x54085a)&&_0x54085a>0x0)return _0x54085a*0x3e8;const _0x145425=Date['parse'](_0xe0fa31);if(!Number['isNaN'](_0x145425))return Math['max'](0x0,_0x145425-Date['now']());return null;}const SENSITIVE_PARAMS=['token','key','secret','password','auth','session','jwt','api_key','apikey','credential','bearer','signature','sig','access_token','refresh_token','code','state','ssn','credit_card','card_number'];function sanitizeUrl(_0x5c2cd5){try{const _0x38f624=new URL(_0x5c2cd5),_0x50879f=[];for(const [_0x43e424]of _0x38f624['searchParams']){const _0x364faf=_0x43e424['toLowerCase']();SENSITIVE_PARAMS['some'](_0x281309=>_0x364faf['includes'](_0x281309))&&_0x50879f['push'](_0x43e424);}for(const _0x517b65 of _0x50879f){_0x38f624['searchParams']['set'](_0x517b65,'[REDACTED]');}return _0x38f624['hash']='',_0x38f624['toString']();}catch{return _0x5c2cd5;}}function toBase64Url(_0x284f66){let _0x1ea022='';for(let _0x36657f=0x0;_0x36657f<_0x284f66['length'];_0x36657f++){_0x1ea022+=String['fromCharCode'](_0x284f66[_0x36657f]);}return btoa(_0x1ea022)['replace'](/\+/g,'-')['replace'](/\//g,'_')['replace'](/=+$/,'');}function isCompressionSupported(){return typeof CompressionStream!=='undefined';}async function compressPayload(_0x1d9886){if(!isCompressionSupported())return _0x1d9886;const _0x122578=new Blob([_0x1d9886])['stream']()['pipeThrough'](new CompressionStream('deflate-raw')),_0x1d9f40=await new Response(_0x122578)['arrayBuffer']();return new Uint8Array(_0x1d9f40);}const MARKER_1=0xca,MARKER_2=0xfe,KEY_LENGTH=0x9,MAX_PADDING=0x20;function getRandomBytes(_0x279bbe){const _0x844570=new Uint8Array(_0x279bbe);return crypto['getRandomValues'](_0x844570),_0x844570;}function createXorEnvelope(_0x9cb331){const _0x9549f7=getRandomBytes(0x1)[0x0],_0x4deca2=Math['floor'](Math['random']()*MAX_PADDING),_0x2f8768=getRandomBytes(_0x4deca2),_0x1e1fa9=getRandomBytes(KEY_LENGTH),_0x3e33f5=0x1+0x2+0x1+_0x4deca2+KEY_LENGTH,_0x358f21=new Uint8Array(_0x3e33f5+_0x9cb331['length']);let _0x47b88e=0x0;_0x358f21[_0x47b88e++]=_0x9549f7,_0x358f21[_0x47b88e++]=MARKER_1+_0x9549f7&0xff,_0x358f21[_0x47b88e++]=MARKER_2+_0x9549f7&0xff,_0x358f21[_0x47b88e++]=_0x4deca2+_0x9549f7&0xff,_0x358f21['set'](_0x2f8768,_0x47b88e),_0x47b88e+=_0x4deca2,_0x358f21['set'](_0x1e1fa9,_0x47b88e),_0x47b88e+=KEY_LENGTH;for(let _0x5d7a30=0x0;_0x5d7a30<_0x9cb331['length'];_0x5d7a30++){_0x358f21[_0x47b88e+_0x5d7a30]=_0x9cb331[_0x5d7a30]^_0x1e1fa9[_0x5d7a30%KEY_LENGTH];}return _0x358f21;}async function encodePayload(_0x6ec6a4){const _0x44a7c6=new TextEncoder()['encode'](_0x6ec6a4),_0x56c343=isCompressionSupported(),_0x2b6abb=_0x56c343?await compressPayload(_0x44a7c6):_0x44a7c6,_0x80823d=createXorEnvelope(_0x2b6abb),_0x86808c={};_0x86808c['v']=0x1,_0x86808c['c']=_0x56c343;const _0x4c8e23=JSON['stringify'](_0x86808c),_0x1b00f4=new TextEncoder()['encode'](_0x4c8e23);return toBase64Url(_0x1b00f4)+':'+toBase64Url(_0x80823d);}let inflightPromise=null;async function capture(_0x2313bc,_0x2d39aa,_0x3cf964){if(inflightPromise!==null)try{await inflightPromise;}catch{}const _0x2008d1=doCapture(_0x2313bc,_0x2d39aa,_0x3cf964);inflightPromise=_0x2008d1;try{return await _0x2008d1;}finally{inflightPromise===_0x2008d1&&(inflightPromise=null);}}async function doCapture(_0x275303,_0x369350,_0x4e8d28){const {components:_0x42af5c,version:_0x186520}=await _0x275303['get'](),_0x1b2652=await loadDeviceToken()??undefined,_0x241220={};for(const [_0x374284,_0x172f7d]of Object['entries'](_0x42af5c)){const {duration:_0x5cafaa,..._0x4903ed}=_0x172f7d;_0x241220[_0x374284]=_0x4903ed;}const _0x458a17={'components':_0x241220,'version':_0x186520,'storedVisitorId':_0x1b2652,'linkedId':_0x4e8d28?.['linkedId'],'tag':_0x4e8d28?.['tag'],'custom':_0x4e8d28?.['custom'],'url':typeof location!=='undefined'?sanitizeUrl(location['href']):undefined,'referrer':typeof document!=='undefined'&&document['referrer']?sanitizeUrl(document['referrer']):undefined,'pageTitle':typeof document!=='undefined'?document['title']||undefined:undefined,'sessionId':getSessionId()},_0x3a2caf=await encodePayload(JSON['stringify'](_0x458a17)),_0xc96e27=await fetchWithRetry(_0x369350['endpoint'],{'method':'POST','headers':{'Content-Type':'text/plain','X-API-Key':_0x369350['apiKey']},'credentials':'include','body':_0x3a2caf},_0x369350['retry']);if(!_0xc96e27['ok']){let _0x4b02fc;try{const _0x3cb26c=await _0xc96e27['json']();_0x4b02fc=_0x3cb26c['error']??'HTTP\x20'+_0xc96e27['status'];}catch{_0x4b02fc='HTTP\x20'+_0xc96e27['status'];}throw new Error('Endpoint\x20error:\x20'+_0x4b02fc);}const _0x1f57fb=await _0xc96e27['json']();return _0x1f57fb['visitorId']&&saveDeviceToken(_0x1f57fb['visitorId']),_0x1f57fb;}function includes(_0xedea2d,_0x2edcae){for(let _0xa68aa4=0x0,_0x2f2fb9=_0xedea2d['length'];_0xa68aa4<_0x2f2fb9;++_0xa68aa4){if(_0xedea2d[_0xa68aa4]===_0x2edcae)return!![];}return![];}function excludes(_0x28962d,_0x3005ef){return!includes(_0x28962d,_0x3005ef);}function toInt(_0x3f17bc){return parseInt(_0x3f17bc);}function toFloat(_0x2da92e){return parseFloat(_0x2da92e);}function replaceNaN(_0x56187a,_0x24b190){return typeof _0x56187a==='number'&&isNaN(_0x56187a)?_0x24b190:_0x56187a;}function countTruthy(_0x101f04){return _0x101f04['reduce']((_0x45c2a6,_0x59a42c)=>_0x45c2a6+(Boolean(_0x59a42c)?0x1:0x0),0x0);}function round$1(_0x4de608,_0x35c0d3=0x1){if(Math['abs'](_0x35c0d3)>=0x1)return Math['round'](_0x4de608/_0x35c0d3)*_0x35c0d3;const _0x36f289=0x1/_0x35c0d3;return Math['round'](_0x4de608*_0x36f289)/_0x36f289;}function isFinalResultLoaded(_0x20f9c3){return typeof _0x20f9c3!=='function';}function loadSource(_0x365832,_0x3226a0){const _0x2f6f16=suppressUnhandledRejectionWarning(new Promise(_0xb01917=>{const _0x3e2fab=Date['now']();awaitIfAsync(_0x365832['bind'](null,_0x3226a0),(..._0x3bdc10)=>{const _0x585073=Date['now']()-_0x3e2fab;if(!_0x3bdc10[0x0])return _0xb01917(()=>({'error':_0x3bdc10[0x1],'duration':_0x585073}));const _0x3ed973=_0x3bdc10[0x1];if(isFinalResultLoaded(_0x3ed973))return _0xb01917(()=>({'value':_0x3ed973,'duration':_0x585073}));_0xb01917(()=>new Promise(_0x154233=>{const _0x52b5e1=Date['now']();awaitIfAsync(_0x3ed973,(..._0x457fa5)=>{const _0x71b41d=_0x585073+Date['now']()-_0x52b5e1;if(!_0x457fa5[0x0]){const _0x4b242c={};return _0x4b242c['error']=_0x457fa5[0x1],_0x4b242c['duration']=_0x71b41d,_0x154233(_0x4b242c);}const _0xed0b6f={};_0xed0b6f['value']=_0x457fa5[0x1],_0xed0b6f['duration']=_0x71b41d,_0x154233(_0xed0b6f);});}));});}));return function _0x423615(){return _0x2f6f16['then'](_0x461d91=>_0x461d91());};}function loadSources(_0x1d4a25,_0x171550,_0x59730e,_0x49f1a2){const _0x5d4235=Object['keys'](_0x1d4a25)['filter'](_0x12f33e=>excludes(_0x59730e,_0x12f33e)),_0x2b180e=suppressUnhandledRejectionWarning(mapWithBreaks(_0x5d4235,_0x4ebd4c=>loadSource(_0x1d4a25[_0x4ebd4c],_0x171550),_0x49f1a2));return async function _0x14e2d3(){const _0x2bd9e5=await _0x2b180e,_0x467d0a=await mapWithBreaks(_0x2bd9e5,_0x8dd7e7=>suppressUnhandledRejectionWarning(_0x8dd7e7()),_0x49f1a2),_0x26ac63=await Promise['all'](_0x467d0a),_0x109a93={};for(let _0x28e806=0x0;_0x28e806<_0x5d4235['length'];++_0x28e806){_0x109a93[_0x5d4235[_0x28e806]]=_0x26ac63[_0x28e806];}return _0x109a93;};}function getArchitecture(){const _0x4c4466=new Float32Array(0x1),_0x3377e7=new Uint8Array(_0x4c4466['buffer']);return _0x4c4466[0x0]=Infinity,_0x4c4466[0x0]=_0x4c4466[0x0]-_0x4c4466[0x0],_0x3377e7[0x3];}function errorToObject(_0x5df942){return{'name':_0x5df942['name'],'message':_0x5df942['message'],'stack':_0x5df942['stack']?.['split']('\x0a'),..._0x5df942};}function isFunctionNative(_0x459eaf){return/^function\s.*?\{\s*\[native code]\s*}$/['test'](String(_0x459eaf));}function isTrident(){const _0x398704=window,_0x444a92=navigator;return countTruthy(['MSCSSMatrix'in _0x398704,'msSetImmediate'in _0x398704,'msIndexedDB'in _0x398704,'msMaxTouchPoints'in _0x444a92,'msPointerEnabled'in _0x444a92])>=0x4;}function isEdgeHTML(){const _0x1f86a4=window,_0x1f7b26=navigator;return countTruthy(['msWriteProfilerMark'in _0x1f86a4,'MSStream'in _0x1f86a4,'msLaunchUri'in _0x1f7b26,'msSaveBlob'in _0x1f7b26])>=0x3&&!isTrident();}function isChromium(){const _0x2cf1f3=window,_0x2d0d26=navigator;return countTruthy(['webkitPersistentStorage'in _0x2d0d26,'webkitTemporaryStorage'in _0x2d0d26,(_0x2d0d26['vendor']||'')['indexOf']('Google')===0x0,'webkitResolveLocalFileSystemURL'in _0x2cf1f3,'BatteryManager'in _0x2cf1f3,'webkitMediaStream'in _0x2cf1f3,'webkitSpeechGrammar'in _0x2cf1f3])>=0x5;}function isWebKit(){const _0x8529c9=window,_0x39d328=navigator;return countTruthy(['ApplePayError'in _0x8529c9,'CSSPrimitiveValue'in _0x8529c9,'Counter'in _0x8529c9,_0x39d328['vendor']['indexOf']('Apple')===0x0,'RGBColor'in _0x8529c9,'WebKitMediaKeys'in _0x8529c9])>=0x4;}function isDesktopWebKit(){const _0x5287c4=window;return countTruthy(['safari'in _0x5287c4,!('ongestureend'in _0x5287c4),!('TouchEvent'in _0x5287c4),!('orientation'in _0x5287c4),!('autocapitalize'in _0x5287c4['HTMLElement']['prototype']),'pointerLockElement'in _0x5287c4['Document']['prototype']])>=0x4;}function isSafariWebKit(){const _0xfc8606=window;return isFunctionNative(_0xfc8606['print'])&&String(_0xfc8606['browser'])==='[object\x20WebPageNamespace]';}function isGecko(){const _0x2384cd=window;return countTruthy(['buildID'in navigator,'MozAppearance'in document['documentElement']['style'],'onmozfullscreenchange'in _0x2384cd,'mozInnerScreenX'in _0x2384cd,'CSSMozDocumentRule'in _0x2384cd,'CanvasCaptureMediaStream'in _0x2384cd])>=0x4;}function isGecko120OrNewer(){const _0x2012d2=window,_0x2a0fcb=navigator,{CSS:_0x70ec67}=_0x2012d2;return countTruthy(['userActivation'in _0x2a0fcb,_0x70ec67['supports']('color','light-dark(#000,\x20#fff)'),_0x70ec67['supports']('height','1lh'),'globalPrivacyControl'in _0x2a0fcb])>=0x3;}function isGecko143OrNewer(){const {CSS:_0xdc7167}=window;return countTruthy([_0xdc7167['supports']('selector(::details-content)'),_0xdc7167['supports']('selector(::before::marker)'),_0xdc7167['supports']('selector(::after::marker)'),!('locale'in CompositionEvent['prototype'])])>=0x3;}function isChromium86OrNewer(){const _0x252050=window;return countTruthy([!('MediaSettingsRange'in _0x252050),'RTCEncodedAudioFrame'in _0x252050,''+_0x252050['Intl']==='[object\x20Intl]',''+_0x252050['Reflect']==='[object\x20Reflect]'])>=0x3;}function isChromium122OrNewer(){const _0x41f096=window,{URLPattern:_0x5bbf70}=_0x41f096;return countTruthy(['union'in Set['prototype'],'Iterator'in _0x41f096,_0x5bbf70&&'hasRegExpGroups'in _0x5bbf70['prototype'],'RGB8'in WebGLRenderingContext['prototype']])>=0x3;}function isWebKit606OrNewer(){const _0xf2f13d=window;return countTruthy(['DOMRectList'in _0xf2f13d,'RTCPeerConnectionIceEvent'in _0xf2f13d,'SVGGeometryElement'in _0xf2f13d,'ontransitioncancel'in _0xf2f13d])>=0x3;}function isWebKit616OrNewer(){const _0x525c1f=window,_0x1da93f=navigator,{CSS:_0x2694f6,HTMLButtonElement:_0x4ddced}=_0x525c1f;return countTruthy([!('getStorageUpdates'in _0x1da93f),'popover'in _0x4ddced['prototype'],'CSSCounterStyleRule'in _0x525c1f,_0x2694f6['supports']('font-size-adjust:\x20ex-height\x200.5'),_0x2694f6['supports']('text-transform:\x20full-width')])>=0x4;}function isIPad(){if(navigator['platform']==='iPad')return!![];const _0x21ebcd=screen,_0x2693b8=_0x21ebcd['width']/_0x21ebcd['height'];return countTruthy(['MediaSource'in window,!!Element['prototype']['webkitRequestFullscreen'],_0x2693b8>0.65&&_0x2693b8<1.53])>=0x2;}function isModernBrowser(){const _0x5109df=window,_0x967176=navigator;return countTruthy(['maxTouchPoints'in _0x967176,'mediaCapabilities'in _0x967176,'PointerEvent'in _0x5109df,'visualViewport'in _0x5109df,'onafterprint'in _0x5109df])>=0x4;}function getFullscreenElement(){const _0x565c2b=document;return _0x565c2b['fullscreenElement']??_0x565c2b['msFullscreenElement']??_0x565c2b['mozFullScreenElement']??_0x565c2b['webkitFullscreenElement']??null;}function exitFullscreen(){const _0x22ead2=document;return _0x22ead2['exitFullscreen']['call'](_0x22ead2);}function isAndroid(){const _0x1eda08=isChromium(),_0x420cc6=isGecko(),_0x4bf96e=window,_0x17f94e=navigator,_0x3331a6='connection';if(_0x1eda08)return countTruthy([!('SharedWorker'in _0x4bf96e),_0x17f94e[_0x3331a6]&&'ontypechange'in _0x17f94e[_0x3331a6],!('sinkId'in new Audio())])>=0x2;else{if(_0x420cc6)return countTruthy(['onorientationchange'in _0x4bf96e,'orientation'in _0x4bf96e,/android/i['test'](_0x17f94e['appVersion'])])>=0x2;}return![];}function isSamsungInternet(){const _0x45b258=navigator,_0x3c8e35=window,_0x5162a6=Audio['prototype'],{visualViewport:_0x148c2a}=_0x3c8e35;return countTruthy(['srLatency'in _0x5162a6,'srChannelCount'in _0x5162a6,'devicePosture'in _0x45b258,_0x148c2a&&'segments'in _0x148c2a,'getTextInformation'in Image['prototype']])>=0x3;}function getAudioSignal(){if(doesBrowserPerformAntiSignalCollection())return getStabilizedAudioSignal();return getUnstableAudioSignal();}function getUnstableAudioSignal(){const _0x589265=window,_0x5e45d5=_0x589265['OfflineAudioContext']??_0x589265['webkitOfflineAudioContext'];if(_0x5e45d5===undefined)return-0x2;if(doesBrowserSuspendAudioContext())return-0x1;const _0x178465=0x1194,_0x434112=0x1388,_0xe26fbd=new _0x5e45d5(0x1,_0x434112,0xac44),_0xaf80b9=_0xe26fbd['createOscillator']();_0xaf80b9['type']='triangle',_0xaf80b9['frequency']['value']=0x2710;const _0x348df4=_0xe26fbd['createDynamicsCompressor']();_0x348df4['threshold']['value']=-0x32,_0x348df4['knee']['value']=0x28,_0x348df4['ratio']['value']=0xc,_0x348df4['attack']['value']=0x0,_0x348df4['release']['value']=0.25,_0xaf80b9['connect'](_0x348df4),_0x348df4['connect'](_0xe26fbd['destination']),_0xaf80b9['start'](0x0);const [_0x5bf75c,_0x30b685]=startRenderingAudio(_0xe26fbd),_0x499ec4=suppressUnhandledRejectionWarning(_0x5bf75c['then'](_0x575bbc=>getHash(_0x575bbc['getChannelData'](0x0)['subarray'](_0x178465)),_0x2c9452=>{if(_0x2c9452['name']==='timeout'||_0x2c9452['name']==='suspended')return-0x3;throw _0x2c9452;}));return()=>{return _0x30b685(),_0x499ec4;};}function doesBrowserSuspendAudioContext(){return isWebKit()&&!isDesktopWebKit()&&!isWebKit606OrNewer();}function doesBrowserPerformAntiSignalCollection(){return isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit()||isChromium()&&isSamsungInternet()&&isChromium122OrNewer();}function startRenderingAudio(_0x2c1df4){const _0x186fbb=0x3,_0x5ba1b2=0x1f4,_0x1b77e8=0x1f4,_0x48f241=0x1388;let _0x3be102=()=>undefined;const _0x5e3d06=new Promise((_0x1107fc,_0xd52d98)=>{let _0x55e475=![],_0x38e7d5=0x0,_0x20e891=0x0;_0x2c1df4['oncomplete']=_0x230695=>{_0x1107fc(_0x230695['renderedBuffer']);};const _0x5f1889=()=>{setTimeout(()=>_0xd52d98(makeInnerError('timeout')),Math['min'](_0x1b77e8,_0x20e891+_0x48f241-Date['now']()));},_0x345dce=()=>{try{const _0x2849a6=_0x2c1df4['startRendering']();isPromise(_0x2849a6)&&void suppressUnhandledRejectionWarning(_0x2849a6);switch(_0x2c1df4['state']){case'running':_0x20e891=Date['now']();_0x55e475&&_0x5f1889();break;case'suspended':!document['hidden']&&_0x38e7d5++;_0x55e475&&_0x38e7d5>=_0x186fbb?_0xd52d98(makeInnerError('suspended')):setTimeout(_0x345dce,_0x5ba1b2);break;case'closed':case'interrupted':break;}}catch(_0x396eaa){_0xd52d98(_0x396eaa);}};_0x345dce(),_0x3be102=()=>{!_0x55e475&&(_0x55e475=!![],_0x20e891>0x0&&_0x5f1889());};});return[_0x5e3d06,_0x3be102];}function roundToSignificant(_0x2c23cf,_0x8fc261){if(_0x2c23cf===0x0)return 0x0;const _0x45e9fc=Math['pow'](0xa,_0x8fc261-Math['ceil'](Math['log10'](Math['abs'](_0x2c23cf))));return Math['round'](_0x2c23cf*_0x45e9fc/0x5)*0x5/_0x45e9fc;}function getHash(_0xa5bc1b){let _0x1bc3ee=0x0;for(let _0x3c4518=0x0;_0x3c4518<_0xa5bc1b['length'];++_0x3c4518){_0x1bc3ee+=Math['abs'](_0xa5bc1b[_0x3c4518]);}return _0x1bc3ee;}const _0x233027={};_0x233027['oscType']='triangle',_0x233027['freq']=0x2710,_0x233027['useCompressor']=!![],_0x233027['useAllpass']=![];const _0x11234f={};_0x11234f['oscType']='sine',_0x11234f['freq']=0x1f40,_0x11234f['useCompressor']=![],_0x11234f['useAllpass']=![];const _0x55638f={};_0x55638f['oscType']='square',_0x55638f['freq']=0x2710,_0x55638f['useCompressor']=!![],_0x55638f['useAllpass']=!![];const SCENES=[_0x233027,_0x11234f,_0x55638f],SIG_DIGITS=0x7,BUFFER_LENGTH=0x2af8,SAMPLE_RATE=0xac44,_0x404f66={};_0x404f66['from']=0x1194,_0x404f66['to']=0x1388;const _0x2c2cb9={};_0x2c2cb9['from']=0x2710,_0x2c2cb9['to']=0x2904;const WINDOWS=[_0x404f66,_0x2c2cb9];function extractMetrics(_0x2c7b9e){const _0x4a3716=_0x2c7b9e['length'];if(_0x4a3716===0x0)return[0x0,0x0,0x0,0x0];const _0x59b909=[];for(let _0x60834b=0x0;_0x60834b<_0x4a3716;_0x60834b++){_0x59b909['push'](roundToSignificant(_0x2c7b9e[_0x60834b],SIG_DIGITS));}const _0x5a59c0=[..._0x59b909]['map'](Math['abs'])['sort']((_0x8c12e9,_0x3b6b2a)=>_0x8c12e9-_0x3b6b2a),_0x4647f7=Math['floor'](_0x5a59c0['length']*0.05);let _0x417e0b=0x0;for(let _0x2b2004=_0x4647f7;_0x2b2004<_0x5a59c0['length']-_0x4647f7;_0x2b2004++){_0x417e0b+=_0x5a59c0[_0x2b2004];}let _0x12ccb9=0x0;for(let _0x18c89a=0x0;_0x18c89a<_0x4a3716;_0x18c89a++){_0x12ccb9+=_0x59b909[_0x18c89a]*_0x59b909[_0x18c89a];}_0x12ccb9/=_0x4a3716;let _0x4ed617=0x0;for(let _0x151eb9=0x1;_0x151eb9<_0x4a3716;_0x151eb9++){Math['sign'](_0x59b909[_0x151eb9])!==Math['sign'](_0x59b909[_0x151eb9-0x1])&&_0x4ed617++;}let _0xb69f7c=0x0;for(let _0x555a98=0x1;_0x555a98<_0x4a3716;_0x555a98++){_0xb69f7c+=Math['abs'](_0x59b909[_0x555a98]-_0x59b909[_0x555a98-0x1]);}return[_0x417e0b,_0x12ccb9,_0x4ed617,_0xb69f7c];}async function renderScene(_0xd0f34a){const _0x58822f=window,_0x3c9cc3=_0x58822f['OfflineAudioContext']??_0x58822f['webkitOfflineAudioContext'];if(_0x3c9cc3===undefined)return null;try{const _0x40240d=new _0x3c9cc3(0x1,BUFFER_LENGTH,SAMPLE_RATE),_0x3aaf51=_0x40240d['createOscillator']();_0x3aaf51['type']=_0xd0f34a['oscType'],_0x3aaf51['frequency']['value']=_0xd0f34a['freq'];let _0x1d58e1=_0x3aaf51;if(_0xd0f34a['useCompressor']){const _0x80d114=_0x40240d['createDynamicsCompressor']();_0x80d114['threshold']['value']=-0x32,_0x80d114['knee']['value']=0x28,_0x80d114['ratio']['value']=0xc,_0x80d114['attack']['value']=0x0,_0x80d114['release']['value']=0.25,_0x1d58e1['connect'](_0x80d114),_0x1d58e1=_0x80d114;}if(_0xd0f34a['useAllpass']){const _0x1d44d6=_0x40240d['createBiquadFilter']();_0x1d44d6['type']='allpass',_0x1d44d6['frequency']['value']=0x1388,_0x1d44d6['Q']['value']=0x5,_0x1d58e1['connect'](_0x1d44d6),_0x1d58e1=_0x1d44d6;}_0x1d58e1['connect'](_0x40240d['destination']),_0x3aaf51['start'](0x0);const [_0x1519b0,_0x107b23]=startRenderingAudio(_0x40240d);_0x107b23();const _0x180ed4=await _0x1519b0;return _0x180ed4['getChannelData'](0x0);}catch{return null;}}function getStabilizedAudioSignal(){return async()=>{const _0x50a8b9=[];for(const _0x3e074a of SCENES){const _0x485309=await renderScene(_0x3e074a);if(_0x485309===null)return-0x2;for(const _0x321966 of WINDOWS){const _0x45535=_0x485309['subarray'](_0x321966['from'],_0x321966['to']);_0x50a8b9['push'](...extractMetrics(_0x45535));}}const _0x120297=await renderScene(SCENES[0x0]);if(_0x120297!==null){const _0x48b3c2=_0x50a8b9['slice'](0x0,0x4),_0x2514c4=extractMetrics(_0x120297['subarray'](WINDOWS[0x0]['from'],WINDOWS[0x0]['to'])),_0x55a99c=_0x48b3c2[0x0],_0x3fd1fe=_0x2514c4[0x0];if(_0x55a99c!==0x0){const _0x31f14e=Math['abs'](_0x55a99c-_0x3fd1fe)/Math['abs'](_0x55a99c);if(_0x31f14e>0.001)return-0x4;}}let _0x54b089=0x0;for(const _0x427d25 of _0x50a8b9){const _0x2e0368=_0x427d25['toFixed'](0x6);for(let _0x1afb9f=0x0;_0x1afb9f<_0x2e0368['length'];_0x1afb9f++){_0x54b089=(_0x54b089<<0x5)-_0x54b089+_0x2e0368['charCodeAt'](_0x1afb9f)|0x0;}}return _0x54b089>>>0x0;};}function makeInnerError(_0x16547b){const _0x154c74=new Error(_0x16547b);return _0x154c74['name']=_0x16547b,_0x154c74;}function renderAudio(){return new Promise(_0x1195d1=>{try{const _0x235a5c=window,_0x12b904=_0x235a5c['OfflineAudioContext']??_0x235a5c['webkitOfflineAudioContext'];if(!_0x12b904){_0x1195d1(null);return;}const _0x3a007d=new _0x12b904(0x1,0x1194,0xac44),_0x5392cb=_0x3a007d['createOscillator']();_0x5392cb['type']='triangle',_0x5392cb['frequency']['setValueAtTime'](0x2710,_0x3a007d['currentTime']);const _0x3b41d5=_0x3a007d['createDynamicsCompressor']();_0x3b41d5['threshold']['setValueAtTime'](-0x32,_0x3a007d['currentTime']),_0x3b41d5['knee']['setValueAtTime'](0x28,_0x3a007d['currentTime']),_0x3b41d5['ratio']['setValueAtTime'](0xc,_0x3a007d['currentTime']),_0x3b41d5['attack']['setValueAtTime'](0x0,_0x3a007d['currentTime']),_0x3b41d5['release']['setValueAtTime'](0.25,_0x3a007d['currentTime']),_0x5392cb['connect'](_0x3b41d5),_0x3b41d5['connect'](_0x3a007d['destination']),_0x5392cb['start'](0x0),_0x3a007d['startRendering']()['then'](_0x42ee24=>{_0x1195d1(_0x42ee24['getChannelData'](0x0)['slice'](0xfa0,0x1194));})['catch'](()=>_0x1195d1(null)),setTimeout(()=>_0x1195d1(null),0x7d0);}catch{_0x1195d1(null);}});}async function getAudioConsistency(){try{const [_0x49bfc6,_0x40d5e7]=await Promise['all']([renderAudio(),renderAudio()]);if(_0x49bfc6===null||_0x40d5e7===null)return null;const _0x4017b9={};_0x4017b9['consistent']=![],_0x4017b9['delta']=0x1;if(_0x49bfc6['length']!==_0x40d5e7['length'])return _0x4017b9;let _0x1fb4f6=0x0;for(let _0xdd06a0=0x0;_0xdd06a0<_0x49bfc6['length'];_0xdd06a0++){_0x1fb4f6+=Math['abs'](_0x49bfc6[_0xdd06a0]-_0x40d5e7[_0xdd06a0]);}return{'consistent':_0x1fb4f6===0x0,'delta':Math['round'](_0x1fb4f6*0xf4240)/0xf4240};}catch{return null;}}function getAudioContextInfo(){try{const _0x583917=window['AudioContext']??window['webkitAudioContext'];if(_0x583917===undefined)return null;const _0x3910fa=new _0x583917(),_0x57f7ed=_0x3910fa['destination'],_0x24bbb8={};_0x24bbb8['maxChannelCount']=_0x57f7ed['maxChannelCount'],_0x24bbb8['sampleRate']=_0x3910fa['sampleRate'],_0x24bbb8['channelCountMode']=_0x57f7ed['channelCountMode'],_0x24bbb8['channelInterpretation']=_0x57f7ed['channelInterpretation'],_0x24bbb8['numberOfOutputs']=_0x57f7ed['numberOfOutputs'];const _0x3241fe=_0x24bbb8;return _0x3910fa['close']()['catch'](()=>undefined),_0x3241fe;}catch{return null;}}function getAudioContextBaseLatency(){const _0x78014d=isAndroid()||isWebKit();if(!_0x78014d)return-0x2;const _0x43909a=window['AudioContext'];if(_0x43909a===undefined)return-0x1;const _0x2ec948=new _0x43909a()['baseLatency'];if(_0x2ec948===undefined)return-0x1;if(!isFinite(_0x2ec948))return-0x3;return _0x2ec948;}function getAudioTrap(){return new Promise(_0x3e3de9=>{try{const _0x3eead8=window,_0x4e45c4=_0x3eead8['AudioContext']??_0x3eead8['webkitAudioContext'];if(!_0x4e45c4){_0x3e3de9(null);return;}const _0x5cd08e=new _0x4e45c4(),_0xacf5c4=_0x5cd08e['sampleRate']||0xac44,_0xec8024=0x80,_0x49aad2=_0x5cd08e['createBuffer'](0x1,_0xec8024,_0xacf5c4),_0x4e2edb=new Float32Array(_0xec8024);for(let _0x1bee08=0x0;_0x1bee08<_0xec8024;_0x1bee08++){_0x4e2edb[_0x1bee08]=_0x1bee08%0x2===0x0?0.5:-0.5;}if(typeof _0x49aad2['copyToChannel']==='function')_0x49aad2['copyToChannel'](_0x4e2edb,0x0);else{const _0x3e28a3=_0x49aad2['getChannelData'](0x0);for(let _0x90aacf=0x0;_0x90aacf<_0xec8024;_0x90aacf++){_0x3e28a3[_0x90aacf]=_0x4e2edb[_0x90aacf];}}const _0x4eb022=_0x49aad2['getChannelData'](0x0);let _0xbd7a70=0x0;for(let _0x3edb45=0x0;_0x3edb45<_0xec8024;_0x3edb45++){_0xbd7a70+=Math['abs'](_0x4eb022[_0x3edb45]-_0x4e2edb[_0x3edb45]);}try{void _0x5cd08e['close']();}catch{}_0x3e3de9({'clean':_0xbd7a70===0x0,'delta':Math['round'](_0xbd7a70*0x2540be400)/0x2540be400});}catch{_0x3e3de9(null);}});}async function getBarcodeDetection(){try{const _0x29dc05=window['BarcodeDetector'];if(!_0x29dc05){const _0x119d83={};return _0x119d83['supported']=![],_0x119d83['formats']=[],_0x119d83;}const _0x539fca=await _0x29dc05['getSupportedFormats']();return{'supported':!![],'formats':_0x539fca['sort']()};}catch{return null;}}const HASH_SIZE=0x8,WIDTH=HASH_SIZE+0x1,HEIGHT=HASH_SIZE;function computeDHash(_0x29c5a9){const _0x531682=document['createElement']('canvas');_0x531682['width']=WIDTH,_0x531682['height']=HEIGHT;const _0x4f008e=_0x531682['getContext']('2d');if(!_0x4f008e)return'';_0x4f008e['drawImage'](_0x29c5a9,0x0,0x0,WIDTH,HEIGHT);const _0x55c5d5=_0x4f008e['getImageData'](0x0,0x0,WIDTH,HEIGHT)['data'],_0xf2ab27=WIDTH*HEIGHT,_0x914ea1=new Uint8Array(_0xf2ab27);for(let _0x9216d5=0x0;_0x9216d5<_0xf2ab27;_0x9216d5++){const _0x13a8f8=_0x9216d5*0x4;_0x914ea1[_0x9216d5]=_0x55c5d5[_0x13a8f8]*0x4d+_0x55c5d5[_0x13a8f8+0x1]*0x96+_0x55c5d5[_0x13a8f8+0x2]*0x1d>>0x8;}let _0x42d5ae='',_0x37d2f6=0x0,_0x2acc39=0x0;for(let _0x5573c8=0x0;_0x5573c8<HEIGHT;_0x5573c8++){for(let _0x4a6fb6=0x0;_0x4a6fb6<HASH_SIZE;_0x4a6fb6++){const _0x1fe3e3=_0x5573c8*WIDTH+_0x4a6fb6;_0x914ea1[_0x1fe3e3]>_0x914ea1[_0x1fe3e3+0x1]&&(_0x2acc39|=0x1<<0x3-_0x37d2f6),_0x37d2f6++,_0x37d2f6===0x4&&(_0x42d5ae+=_0x2acc39['toString'](0x10),_0x2acc39=0x0,_0x37d2f6=0x0);}}return _0x42d5ae;}function getCanvasSignal(){return getUnstableCanvasSignal();}function getUnstableCanvasSignal(_0x42ed8a){let _0x15b744=![],_0x561896,_0x48503f,_0x4e38ef='',_0x333301='';const [_0x420bb6,_0x3535bf]=makeCanvasContext();if(!isSupported(_0x420bb6,_0x3535bf))_0x561896=_0x48503f='unsupported';else{_0x15b744=doesSupportWinding(_0x3535bf);{[_0x561896,_0x48503f,_0x4e38ef,_0x333301]=renderImages(_0x420bb6,_0x3535bf);}}const _0x1d827e={};return _0x1d827e['winding']=_0x15b744,_0x1d827e['geometry']=_0x561896,_0x1d827e['text']=_0x48503f,_0x1d827e['geometryDHash']=_0x4e38ef,_0x1d827e['textDHash']=_0x333301,_0x1d827e;}function makeCanvasContext(){const _0x5744a4=document['createElement']('canvas');return _0x5744a4['width']=0x1,_0x5744a4['height']=0x1,[_0x5744a4,_0x5744a4['getContext']('2d')];}function isSupported(_0x369e1c,_0x400d6b){return _0x400d6b!==undefined&&_0x400d6b!==null&&typeof _0x369e1c['toDataURL']==='function';}function doesSupportWinding(_0x346f57){return _0x346f57['rect'](0x0,0x0,0xa,0xa),_0x346f57['rect'](0x2,0x2,0x6,0x6),!_0x346f57['isPointInPath'](0x5,0x5,'evenodd');}function renderImages(_0x1f8753,_0x12fdac){renderTextImage(_0x1f8753,_0x12fdac);const _0x26fc5b=computeDHash(_0x1f8753),_0x4887a3=canvasToString(_0x1f8753),_0x1a8d2b=canvasToString(_0x1f8753);if(_0x4887a3!==_0x1a8d2b)return['unstable','unstable','',''];renderGeometryImage(_0x1f8753,_0x12fdac);const _0x4486f3=computeDHash(_0x1f8753),_0x1fb486=canvasToString(_0x1f8753);return[_0x1fb486,_0x4887a3,_0x4486f3,_0x26fc5b];}function renderTextImage(_0x3611c1,_0x1f8f3b){_0x3611c1['width']=0xf0,_0x3611c1['height']=0x3c,_0x1f8f3b['textBaseline']='alphabetic',_0x1f8f3b['fillStyle']='#f60',_0x1f8f3b['fillRect'](0x64,0x1,0x3e,0x14),_0x1f8f3b['fillStyle']='#069',_0x1f8f3b['font']='11pt\x20\x22Times\x20New\x20Roman\x22';const _0x20acbe='Cwm\x20fjordbank\x20gly\x20'+String['fromCharCode'](0xd83d,0xde03);_0x1f8f3b['fillText'](_0x20acbe,0x2,0xf),_0x1f8f3b['fillStyle']='rgba(102,\x20204,\x200,\x200.2)',_0x1f8f3b['font']='18pt\x20Arial',_0x1f8f3b['fillText'](_0x20acbe,0x4,0x2d);}function renderGeometryImage(_0x4508eb,_0x361453){_0x4508eb['width']=0x7a,_0x4508eb['height']=0x6e,_0x361453['globalCompositeOperation']='multiply';for(const [_0x43cf79,_0x1570a8,_0x2edf57]of[['#f2f',0x28,0x28],['#2ff',0x50,0x28],['#ff2',0x3c,0x50]]){_0x361453['fillStyle']=_0x43cf79,_0x361453['beginPath'](),_0x361453['arc'](_0x1570a8,_0x2edf57,0x28,0x0,Math['PI']*0x2,!![]),_0x361453['closePath'](),_0x361453['fill']();}_0x361453['fillStyle']='#f9c',_0x361453['arc'](0x3c,0x3c,0x3c,0x0,Math['PI']*0x2,!![]),_0x361453['arc'](0x3c,0x3c,0x14,0x0,Math['PI']*0x2,!![]),_0x361453['fill']('evenodd');}function canvasToString(_0x2e75b3){return _0x2e75b3['toDataURL']();}function getCanvasAdvanced(){try{const _0x549a4d=document['createElement']('canvas'),_0x75ce6e=_0x549a4d['getContext']('2d');if(!_0x75ce6e)return null;const _0x3e6abf=renderBlendModes(_0x549a4d,_0x75ce6e),_0x525214=renderShadows(_0x549a4d,_0x75ce6e),_0x364cd5=renderGradientPath(_0x549a4d,_0x75ce6e),_0x469db2=testOffscreenConsistency(_0x549a4d,_0x75ce6e),_0x15aae1={};return _0x15aae1['blendDHash']=_0x3e6abf,_0x15aae1['shadowDHash']=_0x525214,_0x15aae1['gradientDHash']=_0x364cd5,_0x15aae1['offscreenConsistent']=_0x469db2,_0x15aae1;}catch{return null;}}function renderBlendModes(_0x2b6e39,_0x1bdf9b){return _0x2b6e39['width']=0x64,_0x2b6e39['height']=0x64,_0x1bdf9b['clearRect'](0x0,0x0,0x64,0x64),_0x1bdf9b['fillStyle']='#e74c3c',_0x1bdf9b['fillRect'](0xa,0xa,0x3c,0x3c),_0x1bdf9b['globalCompositeOperation']='multiply',_0x1bdf9b['fillStyle']='#3498db',_0x1bdf9b['fillRect'](0x1e,0x1e,0x3c,0x3c),_0x1bdf9b['globalCompositeOperation']='screen',_0x1bdf9b['fillStyle']='#2ecc71',_0x1bdf9b['beginPath'](),_0x1bdf9b['arc'](0x32,0x32,0x1e,0x0,Math['PI']*0x2),_0x1bdf9b['fill'](),_0x1bdf9b['globalCompositeOperation']='overlay',_0x1bdf9b['fillStyle']='#f39c12',_0x1bdf9b['fillRect'](0x14,0x14,0x1e,0x3c),_0x1bdf9b['globalCompositeOperation']='source-over',computeDHash(_0x2b6e39);}function renderShadows(_0x222699,_0x553d69){return _0x222699['width']=0x78,_0x222699['height']=0x50,_0x553d69['clearRect'](0x0,0x0,0x78,0x50),_0x553d69['shadowColor']='rgba(0,\x200,\x200,\x200.5)',_0x553d69['shadowBlur']=0xa,_0x553d69['shadowOffsetX']=0x5,_0x553d69['shadowOffsetY']=0x5,_0x553d69['fillStyle']='#9b59b6',_0x553d69['fillRect'](0x14,0xf,0x28,0x28),_0x553d69['shadowColor']='rgba(52,\x20152,\x20219,\x200.7)',_0x553d69['shadowBlur']=0xf,_0x553d69['shadowOffsetX']=-0x3,_0x553d69['shadowOffsetY']=0x3,_0x553d69['fillStyle']='#1abc9c',_0x553d69['beginPath'](),_0x553d69['arc'](0x55,0x28,0x19,0x0,Math['PI']*0x2),_0x553d69['fill'](),_0x553d69['shadowColor']='transparent',_0x553d69['shadowBlur']=0x0,_0x553d69['shadowOffsetX']=0x0,_0x553d69['shadowOffsetY']=0x0,computeDHash(_0x222699);}function renderGradientPath(_0x1c3eb0,_0xd5d51d){_0x1c3eb0['width']=0x64,_0x1c3eb0['height']=0x64,_0xd5d51d['clearRect'](0x0,0x0,0x64,0x64);const _0x2aa081=_0xd5d51d['createRadialGradient'](0x32,0x32,0x5,0x32,0x32,0x2d);_0x2aa081['addColorStop'](0x0,'#e74c3c'),_0x2aa081['addColorStop'](0.5,'#f39c12'),_0x2aa081['addColorStop'](0x1,'#2ecc71'),_0xd5d51d['fillStyle']=_0x2aa081,_0xd5d51d['beginPath'](),_0xd5d51d['moveTo'](0x32,0x5),_0xd5d51d['lineTo'](0x5f,0x23),_0xd5d51d['lineTo'](0x50,0x5a),_0xd5d51d['lineTo'](0x14,0x5a),_0xd5d51d['lineTo'](0x5,0x23),_0xd5d51d['closePath'](),_0xd5d51d['fill']();try{const _0x3ac531=_0xd5d51d['createConicGradient'](0x0,0x32,0x32);_0x3ac531['addColorStop'](0x0,'red'),_0x3ac531['addColorStop'](0.33,'green'),_0x3ac531['addColorStop'](0.66,'blue'),_0x3ac531['addColorStop'](0x1,'red'),_0xd5d51d['globalCompositeOperation']='difference',_0xd5d51d['fillStyle']=_0x3ac531,_0xd5d51d['fillRect'](0xa,0xa,0x50,0x50),_0xd5d51d['globalCompositeOperation']='source-over';}catch{}return computeDHash(_0x1c3eb0);}function testOffscreenConsistency(_0x533e13,_0x2b3d69){if(typeof OffscreenCanvas==='undefined')return null;try{_0x533e13['width']=0x32,_0x533e13['height']=0x32,_0x2b3d69['clearRect'](0x0,0x0,0x32,0x32),_0x2b3d69['fillStyle']='#e74c3c',_0x2b3d69['beginPath'](),_0x2b3d69['arc'](0x19,0x19,0x14,0x0,Math['PI']*0x2),_0x2b3d69['fill']();const _0x25e991=computeDHash(_0x533e13),_0x56f20e=new OffscreenCanvas(0x32,0x32),_0x320c14=_0x56f20e['getContext']('2d');if(!_0x320c14)return null;_0x320c14['fillStyle']='#e74c3c',_0x320c14['beginPath'](),_0x320c14['arc'](0x19,0x19,0x14,0x0,Math['PI']*0x2),_0x320c14['fill']();const _0xb874bd=document['createElement']('canvas');_0xb874bd['width']=0x32,_0xb874bd['height']=0x32;const _0x189e8f=_0xb874bd['getContext']('2d');if(!_0x189e8f)return null;const _0x3c2fa0=_0x56f20e['transferToImageBitmap']();_0x189e8f['drawImage'](_0x3c2fa0,0x0,0x0);const _0x5399cd=computeDHash(_0xb874bd);return _0x25e991===_0x5399cd;}catch{return null;}}function fnv1aBytes(_0x362561){let _0x3ffaa4=0x811c9dc5;for(let _0x5a232b=0x0;_0x5a232b<_0x362561['length'];_0x5a232b++){_0x3ffaa4^=_0x362561[_0x5a232b],_0x3ffaa4=Math['imul'](_0x3ffaa4,0x1000193);}return _0x3ffaa4>>>0x0;}const CANVAS_DIM=0x20,SEED=[0x4d6f6f6e,0x57616b65,0x46696e67,0x65725072];function xoshiro128ss(_0x371ac2,_0x1dd956,_0x22de62,_0x42de48){let _0x538776=_0x371ac2,_0x57fe5f=_0x1dd956,_0x129eba=_0x22de62,_0x47c6e8=_0x42de48;return function(){const _0x3bf5ac=_0x57fe5f<<0x9;let _0x48b778=0x5*_0x538776;return _0x48b778=0x9*(_0x48b778<<0x7|_0x48b778>>>0x19),_0x47c6e8^=_0x57fe5f,_0x57fe5f^=_0x129eba^=_0x538776,_0x538776^=_0x47c6e8,_0x129eba^=_0x3bf5ac,_0x47c6e8=_0x47c6e8<<0xb|_0x47c6e8>>>0x15,(_0x48b778>>>0x0)/0x100000000;};}const fnv1a$2=fnv1aBytes;function getCanvasRandom(){try{const _0x463a43=document['createElement']('canvas'),_0x5cceb1=_0x463a43['getContext']('2d');if(_0x5cceb1===null)return null;_0x463a43['width']=CANVAS_DIM,_0x463a43['height']=CANVAS_DIM;const _0x23b69d=xoshiro128ss(SEED[0x0],SEED[0x1],SEED[0x2],SEED[0x3]),_0x3062ac=_0x23b69d()*CANVAS_DIM,_0x3c298e=_0x23b69d()*CANVAS_DIM,_0x4542bf=_0x5cceb1['createRadialGradient'](_0x3062ac,_0x3c298e,0x2,_0x3062ac,_0x3c298e,CANVAS_DIM*0.8);for(let _0x4865c4=0x0;_0x4865c4<0x5;_0x4865c4++){const _0x2d2491=Math['floor'](_0x23b69d()*0x100),_0x5b77d0=Math['floor'](_0x23b69d()*0x100),_0x5913ba=Math['floor'](_0x23b69d()*0x100);_0x4542bf['addColorStop'](_0x4865c4/0x4,'rgb('+_0x2d2491+','+_0x5b77d0+','+_0x5913ba+')');}_0x5cceb1['fillStyle']=_0x4542bf,_0x5cceb1['fillRect'](0x0,0x0,CANVAS_DIM,CANVAS_DIM);for(let _0x370b05=0x0;_0x370b05<0x3;_0x370b05++){_0x5cceb1['beginPath'](),_0x5cceb1['arc'](_0x23b69d()*CANVAS_DIM,_0x23b69d()*CANVAS_DIM,_0x23b69d()*CANVAS_DIM*0.4+0x2,_0x23b69d()*Math['PI']*0x2,_0x23b69d()*Math['PI']*0x2),_0x5cceb1['strokeStyle']='rgba('+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+','+(_0x23b69d()*0.5+0.5)['toFixed'](0x2)+')',_0x5cceb1['lineWidth']=_0x23b69d()*0x3+0.5,_0x5cceb1['stroke']();}for(let _0x522e47=0x0;_0x522e47<0x2;_0x522e47++){_0x5cceb1['beginPath'](),_0x5cceb1['moveTo'](_0x23b69d()*CANVAS_DIM,_0x23b69d()*CANVAS_DIM),_0x5cceb1['bezierCurveTo'](_0x23b69d()*CANVAS_DIM,_0x23b69d()*CANVAS_DIM,_0x23b69d()*CANVAS_DIM,_0x23b69d()*CANVAS_DIM,_0x23b69d()*CANVAS_DIM,_0x23b69d()*CANVAS_DIM),_0x5cceb1['strokeStyle']='rgba('+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+','+(_0x23b69d()*0.5+0.5)['toFixed'](0x2)+')',_0x5cceb1['lineWidth']=_0x23b69d()*0x2+0.5,_0x5cceb1['stroke']();}_0x5cceb1['shadowBlur']=_0x23b69d()*0x8+0x2,_0x5cceb1['shadowColor']='rgba('+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+',0.7)',_0x5cceb1['shadowOffsetX']=_0x23b69d()*0x4-0x2,_0x5cceb1['shadowOffsetY']=_0x23b69d()*0x4-0x2,_0x5cceb1['fillStyle']='rgb('+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+')',_0x5cceb1['fillRect'](_0x23b69d()*CANVAS_DIM*0.5,_0x23b69d()*CANVAS_DIM*0.5,CANVAS_DIM*0.4,CANVAS_DIM*0.4),_0x5cceb1['shadowBlur']=0x0,_0x5cceb1['shadowColor']='transparent',_0x5cceb1['shadowOffsetX']=0x0,_0x5cceb1['shadowOffsetY']=0x0;const _0x2d3d3e=['serif','sans-serif','monospace'];for(let _0x9cb938=0x0;_0x9cb938<0x3;_0x9cb938++){const _0x3ac52e=Math['floor'](_0x23b69d()*0xc)+0x8;_0x5cceb1['font']=_0x3ac52e+'px\x20'+_0x2d3d3e[_0x9cb938%0x3],_0x5cceb1['fillStyle']='rgb('+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+')',_0x5cceb1['fillText'](String['fromCharCode'](Math['floor'](_0x23b69d()*0x1a)+0x41,Math['floor'](_0x23b69d()*0x1a)+0x61,Math['floor'](_0x23b69d()*0xa)+0x30),_0x23b69d()*CANVAS_DIM*0.7,_0x23b69d()*CANVAS_DIM*0.8+_0x3ac52e);}_0x5cceb1['globalAlpha']=0.3;const _0x22f5c0=_0x5cceb1['createLinearGradient'](0x0,0x0,CANVAS_DIM,CANVAS_DIM);_0x22f5c0['addColorStop'](0x0,'rgba('+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+',1)'),_0x22f5c0['addColorStop'](0x1,'rgba('+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+','+Math['floor'](_0x23b69d()*0x100)+',1)'),_0x5cceb1['fillStyle']=_0x22f5c0,_0x5cceb1['fillRect'](0x0,0x0,CANVAS_DIM,CANVAS_DIM),_0x5cceb1['globalAlpha']=0x1;const _0x2efaa6=_0x5cceb1['getImageData'](0x0,0x0,_0x463a43['width'],_0x463a43['height']),_0xf55d4c=fnv1a$2(_0x2efaa6['data']),_0xc51c50=computeDHash(_0x463a43),_0x3471ba={};return _0x3471ba['p']=_0xf55d4c,_0x3471ba['d']=CANVAS_DIM,_0x3471ba['dHash']=_0xc51c50,_0x3471ba;}catch{return null;}}function getColorGamut(){for(const _0x2e7df4 of['rec2020','p3','srgb']){if(matchMedia('(color-gamut:\x20'+_0x2e7df4+')')['matches'])return _0x2e7df4;}return undefined;}const _0x3178b5={};_0x3178b5['prop']='width',_0x3178b5['value']='calc(sin(1)\x20*\x201000px)',_0x3178b5['label']='sin1';const _0x183819={};_0x183819['prop']='width',_0x183819['value']='calc(cos(1)\x20*\x201000px)',_0x183819['label']='cos1';const _0x3e491a={};_0x3e491a['prop']='width',_0x3e491a['value']='calc(tan(0.5)\x20*\x201000px)',_0x3e491a['label']='tan05';const _0x5b12d7={};_0x5b12d7['prop']='width',_0x5b12d7['value']='calc(sin(1.5)\x20*\x20cos(2.3)\x20*\x2010000px)',_0x5b12d7['label']='sincos';const _0x517edd={};_0x517edd['prop']='width',_0x517edd['value']='calc(sin(0.001)\x20*\x201000000px)',_0x517edd['label']='sin_small';const _0x1d1542={};_0x1d1542['prop']='width',_0x1d1542['value']='calc(cos(3.14159265)\x20*\x2010000px\x20+\x2010000px)',_0x1d1542['label']='cos_pi';const _0x3291ea={};_0x3291ea['prop']='width',_0x3291ea['value']='calc(tan(1.5)\x20*\x20100px\x20+\x2010000px)',_0x3291ea['label']='tan15';const _0xef2a50={};_0xef2a50['prop']='width',_0xef2a50['value']='calc(sin(12345.6789)\x20*\x201000px\x20+\x201000px)',_0xef2a50['label']='sin_large';const _0x3172ca={};_0x3172ca['prop']='height',_0x3172ca['value']='calc(sqrt(2)\x20*\x201000px)',_0x3172ca['label']='sqrt2';const _0x3221ce={};_0x3221ce['prop']='height',_0x3221ce['value']='calc(exp(1)\x20*\x20100px)',_0x3221ce['label']='exp1';const _0x3293c9={};_0x3293c9['prop']='height',_0x3293c9['value']='calc(log(10)\x20*\x201000px)',_0x3293c9['label']='log10';const _0x4f53ca={};_0x4f53ca['prop']='height',_0x4f53ca['value']='calc(hypot(3,\x204)\x20*\x20100px)',_0x4f53ca['label']='hypot34';const EXPRESSIONS=[_0x3178b5,_0x183819,_0x3e491a,_0x5b12d7,_0x517edd,_0x1d1542,_0x3291ea,_0xef2a50,_0x3172ca,_0x3221ce,_0x3293c9,_0x4f53ca];function getCssTrigPrecision(){try{if(typeof CSS==='undefined'||typeof CSS['supports']!=='function')return null;if(!CSS['supports']('width','calc(sin(1)\x20*\x201px)'))return null;const _0x1b3317=document['createElement']('div');_0x1b3317['style']['position']='absolute',_0x1b3317['style']['visibility']='hidden',_0x1b3317['style']['overflow']='hidden',_0x1b3317['style']['top']='-9999px',_0x1b3317['style']['left']='-9999px',document['body']['appendChild'](_0x1b3317);const _0x154eed={};for(const _0x2b2b14 of EXPRESSIONS){const _0x159e4f=document['createElement']('div');_0x159e4f['style']['position']='absolute',_0x159e4f['style'][_0x2b2b14['prop']]=_0x2b2b14['value'],_0x1b3317['appendChild'](_0x159e4f);const _0x39446c=getComputedStyle(_0x159e4f),_0x3f7842=parseFloat(_0x39446c[_0x2b2b14['prop']]);!isNaN(_0x3f7842)&&isFinite(_0x3f7842)&&(_0x154eed[_0x2b2b14['label']]=Math['round'](_0x3f7842*0xf4240)/0xf4240);}return document['body']['removeChild'](_0x1b3317),Object['keys'](_0x154eed)['length']>0x0?_0x154eed:null;}catch{return null;}}async function withIframe(_0x20ff2c,_0x3943da,_0x2579e3=0x32){const _0x2528a3=document;while(_0x2528a3['body']===null){await wait(_0x2579e3);}const _0x1e155f=_0x2528a3['createElement']('iframe');try{await new Promise((_0x58c1dd,_0x4a75fd)=>{let _0x4bb436=![];const _0x2bc71c=()=>{_0x4bb436=!![],_0x58c1dd();},_0x39119b=_0x98c678=>{_0x4bb436=!![],_0x4a75fd(_0x98c678);};_0x1e155f['onload']=_0x2bc71c,_0x1e155f['onerror']=_0x39119b;const {style:_0x5b5141}=_0x1e155f;_0x5b5141['setProperty']('display','block','important'),_0x5b5141['position']='absolute',_0x5b5141['top']='0',_0x5b5141['left']='0',_0x5b5141['visibility']='hidden';_0x3943da!==undefined&&_0x3943da!==''&&'srcdoc'in _0x1e155f?_0x1e155f['srcdoc']=_0x3943da:_0x1e155f['src']='about:blank';_0x2528a3['body']['appendChild'](_0x1e155f);const _0x264586=()=>{if(_0x4bb436)return;_0x1e155f['contentWindow']?.['document']['readyState']==='complete'?_0x2bc71c():setTimeout(_0x264586,0xa);};_0x264586();});while(!_0x1e155f['contentWindow']?.['document']['body']){await wait(_0x2579e3);}return await _0x20ff2c(_0x1e155f,_0x1e155f['contentWindow']);}finally{_0x1e155f['parentNode']?.['removeChild'](_0x1e155f);}}class IframePool{['iframe']=null;['iframeReady']=null;['queue']=[];['processing']=![];['idleTimer']=null;['idleTimeoutMs'];constructor(_0x9046ba=0x1388){this['idleTimeoutMs']=_0x9046ba;}['execute'](_0x167dbf){return new Promise((_0x49eb9d,_0x295872)=>{const _0x3241ff={};_0x3241ff['action']=_0x167dbf,_0x3241ff['resolve']=_0x49eb9d,_0x3241ff['reject']=_0x295872,this['queue']['push'](_0x3241ff),void this['processQueue']();});}async['processQueue'](){if(this['processing'])return;this['processing']=!![];try{while(this['queue']['length']>0x0){this['idleTimer']!==null&&(clearTimeout(this['idleTimer']),this['idleTimer']=null);await this['ensureIframe']();const _0x6d4223=this['queue']['shift'](),_0x412013=this['iframe'];if(_0x6d4223===undefined||_0x412013===null)continue;try{const _0x3a368a=await _0x6d4223['action'](_0x412013,_0x412013['contentWindow']);_0x6d4223['resolve'](_0x3a368a);}catch(_0x2231da){_0x6d4223['reject'](_0x2231da);}}}finally{this['processing']=![],this['scheduleCleanup']();}}async['ensureIframe'](){if(this['iframe']?.['contentWindow']?.['document']['body'])return;const _0x590000=document;while(_0x590000['body']===null){await wait(0x32);}if(this['iframeReady']){await this['iframeReady'];if(this['iframe']?.['contentWindow']?.['document']['body'])return;}const _0x20993e=_0x590000['createElement']('iframe');this['iframe']=_0x20993e,this['iframeReady']=new Promise((_0x592af1,_0x29a0a0)=>{let _0x546c51=![];_0x20993e['onload']=()=>{_0x546c51=!![],_0x592af1();},_0x20993e['onerror']=_0x24d765=>{_0x546c51=!![],_0x29a0a0(_0x24d765);};const {style:_0x128ec8}=_0x20993e;_0x128ec8['setProperty']('display','block','important'),_0x128ec8['position']='absolute',_0x128ec8['top']='0',_0x128ec8['left']='0',_0x128ec8['visibility']='hidden',_0x20993e['src']='about:blank',_0x590000['body']['appendChild'](_0x20993e);const _0x1b4e71=()=>{if(_0x546c51)return;_0x20993e['contentWindow']?.['document']['readyState']==='complete'?(_0x546c51=!![],_0x592af1()):setTimeout(_0x1b4e71,0xa);};_0x1b4e71();}),await this['iframeReady'];while(!_0x20993e['contentWindow']?.['document']['body']){await wait(0x32);}}['scheduleCleanup'](){this['idleTimer']=setTimeout(()=>{this['destroy']();},this['idleTimeoutMs']);}['destroy'](){this['idleTimer']!==null&&(clearTimeout(this['idleTimer']),this['idleTimer']=null),this['iframe']&&(this['iframe']['parentNode']?.['removeChild'](this['iframe']),this['iframe']=null,this['iframeReady']=null);}}let sharedPool=null;function getIframePool(){return sharedPool??=new IframePool(),sharedPool;}function isAnyParentCrossOrigin(){let _0x5f2125=window;for(;;){const _0x339aea=_0x5f2125['parent'];if(_0x339aea===_0x5f2125)return![];try{if(_0x339aea['location']['origin']!==_0x5f2125['location']['origin'])return!![];}catch(_0x382c24){if(_0x382c24 instanceof Error&&_0x382c24['name']==='SecurityError')return!![];throw _0x382c24;}_0x5f2125=_0x339aea;}}function getEmojiSignal(){let _0x5f3bff='';for(let _0x16a8df=0x1f600;_0x16a8df<=0x1f64f;_0x16a8df++){_0x5f3bff+=String['fromCodePoint'](_0x16a8df);}return getIframePool()['execute']((_0x1b356d,_0xe95712)=>{const _0x1e56a8=_0xe95712['document'],_0x85ade7=_0x1e56a8['createElement']('span');_0x85ade7['style']['whiteSpace']='nowrap',_0x85ade7['innerText']=_0x5f3bff,_0x1e56a8['body']['append'](_0x85ade7);const _0x2012ce={},_0x5b3163=['x','y','left','right','bottom','height','top','width'],_0x33c62c=_0x85ade7['getBoundingClientRect']();for(const _0x220898 of _0x5b3163){_0x220898 in _0x33c62c&&(_0x2012ce[_0x220898]=Math['round'](_0x33c62c[_0x220898]*0x64)/0x64);}const _0x259194=_0xe95712['getComputedStyle'](_0x85ade7,null)['getPropertyValue']('font-family');return _0x2012ce['font']=_0x259194,_0x1e56a8['body']['removeChild'](_0x85ade7),_0x2012ce;});}const defaultText='mmMwWLliI0fiflO&1',_0x5942d1={};_0x5942d1['font']='-apple-system-body';const _0x2560b0={};_0x2560b0['fontFamily']='serif';const _0x1d4609={};_0x1d4609['fontFamily']='sans-serif';const _0x223a56={};_0x223a56['fontFamily']='monospace';const _0x44edff={};_0x44edff['fontSize']='1px';const _0x9bd52={};_0x9bd52['fontFamily']='system-ui';const _0x58c9dc={};_0x58c9dc['default']=[],_0x58c9dc['apple']=[_0x5942d1],_0x58c9dc['serif']=[_0x2560b0],_0x58c9dc['sans']=[_0x1d4609],_0x58c9dc['mono']=[_0x223a56],_0x58c9dc['min']=[_0x44edff],_0x58c9dc['system']=[_0x9bd52];const presets=_0x58c9dc;function getFontPreferences(){return withNaturalFonts((_0x5ae073,_0x2ec03a,_0x53e641)=>{const _0x1c2dcf={},_0x207f79={};for(const _0x47fbc0 of Object['keys'](presets)){const [_0x109e06={},_0x504ba6=defaultText]=presets[_0x47fbc0],_0x5d9b30=_0x5ae073['createElement']('span');_0x5d9b30['textContent']=_0x504ba6,_0x5d9b30['style']['whiteSpace']='nowrap';for(const _0x5a7b8a of Object['keys'](_0x109e06)){const _0x2fc926=_0x109e06[_0x5a7b8a];_0x2fc926!==undefined&&(_0x5d9b30['style'][_0x5a7b8a]=_0x2fc926);}_0x1c2dcf[_0x47fbc0]=_0x5d9b30,_0x2ec03a['append'](_0x5ae073['createElement']('br'),_0x5d9b30);}const _0x6c0849=_0x53e641['devicePixelRatio']>0x0?_0x53e641['devicePixelRatio']:0x1;for(const _0x5004de of Object['keys'](presets)){_0x207f79[_0x5004de]=Math['round'](_0x1c2dcf[_0x5004de]['getBoundingClientRect']()['width']*_0x6c0849*0x64)/0x64;}return _0x207f79;});}function withNaturalFonts(_0x4dd064,_0x595e3c=0xfa0){return withIframe((_0x13c7c0,_0x53897c)=>{const _0x5b0079=_0x53897c['document'],_0xd48594=_0x5b0079['body'],_0x5d126d=_0xd48594['style'];_0x5d126d['width']=_0x595e3c+'px',_0x5d126d['webkitTextSizeAdjust']=_0x5d126d['textSizeAdjust']='none';if(isChromium())_0xd48594['style']['zoom']=''+0x1/_0x53897c['devicePixelRatio'];else isWebKit()&&(_0xd48594['style']['zoom']='reset');const _0x27a8c1=_0x5b0079['createElement']('div'),_0x35649c={};return _0x35649c['length']=_0x595e3c/0x14<<0x0,_0x27a8c1['textContent']=Array['from'](_0x35649c)['map'](()=>'word')['join']('\x20'),_0xd48594['appendChild'](_0x27a8c1),_0x4dd064(_0x5b0079,_0xd48594,_0x53897c);},'<!doctype\x20html><html><head><meta\x20name=\x22viewport\x22\x20content=\x22width=device-width,\x20initial-scale=1\x22>');}const testString='mmMwWLliI0fiflO&1',textSize='48px',baseFonts=['monospace','sans-serif','serif'],fontList=['sans-serif-thin','ARNO\x20PRO','Agency\x20FB','Arabic\x20Typesetting','Arial','Arial\x20Black','Arial\x20Narrow','Arial\x20Rounded\x20MT','Arial\x20Unicode\x20MS','Arimo','Archivo','AvantGarde\x20Bk\x20BT','BankGothic\x20Md\x20BT','Barlow','Batang','Bebas\x20Neue','Bitter','Bitstream\x20Vera\x20Sans\x20Mono','Bookman','Cabin','Calibri','Candara','Century','Century\x20Gothic','Clarendon','Comic\x20Sans\x20MS','Constantia','Courier','Courier\x20New','Crimson\x20Text','DM\x20Mono','DM\x20Sans','DM\x20Serif\x20Display','DM\x20Serif\x20Text','Dosis','Droid\x20Sans','EUROSTILE','Exo','Fira\x20Code','Fira\x20Sans','Franklin\x20Gothic','Franklin\x20Gothic\x20Medium','Futura\x20Bk\x20BT','Futura\x20Md\x20BT','Garamond','Geneva','Georgia','GOTHAM','Gill\x20Sans','HELV','Haettenschweiler','Helvetica','Helvetica\x20Neue','Humanst521\x20BT','Impact','Inconsolata','Indie\x20Flower','Inter','Josefin\x20Sans','Karla','Lato','Leelawadee','Letter\x20Gothic','Levenim\x20MT','Lexend','Lucida\x20Bright','Lucida\x20Console','Lucida\x20Sans','Lucida\x20Sans\x20Unicode','Manrope','Marlett','Meiryo\x20UI','Menlo','Merriweather','Merriweather\x20Sans','Microsoft\x20Uighur','Minion\x20Pro','Monotype\x20Corsiva','Montserrat','MS\x20Mincho','MS\x20Outlook','MS\x20Reference\x20Specialty','MS\x20UI\x20Gothic','MT\x20Extra','Myriad','MYRIAD\x20PRO','Noto\x20Sans','Nunito','Nunito\x20Sans','Open\x20Sans','Optima','Orbitron','Oswald','Pacifico','Palatino','Perpetua','PMingLiU','Poppins','Pristina','Prompt','PT\x20Sans','PT\x20Serif','Public\x20Sans','Quicksand','Rajdhani','Recursive','Roboto','Roboto\x20Condensed','Rockwell','Rubik','SCRIPTINA','Segoe\x20Print','Segoe\x20Script','Segoe\x20UI','Segoe\x20UI\x20Light','Serifa','SimHei','Small\x20Fonts','Sora','Source\x20Sans\x20Pro','Space\x20Mono','Staccato222\x20BT','Tahoma','Taviraj','Times','Times\x20New\x20Roman','Titillium\x20Web','TRAJAN\x20PRO','Trebuchet\x20MS','Ubuntu','Univers\x20CE\x2055\x20Medium','Varela\x20Round','Verdana','Vrinda','Work\x20Sans','ZWAdobeF'];function getFonts(){return getIframePool()['execute']((_0x50e43a,{document:_0x5180df})=>{const _0x4701df=_0x5180df['body'];_0x4701df['style']['fontSize']=textSize;const _0x3c750c=_0x5180df['createElement']('div');_0x3c750c['style']['setProperty']('visibility','hidden','important');const _0x479481={},_0x121d18={},_0x98b404=_0x5c75e5=>{const _0x2e1ce6=_0x5180df['createElement']('span'),{style:_0x927919}=_0x2e1ce6;return _0x927919['position']='absolute',_0x927919['top']='0',_0x927919['left']='0',_0x927919['fontFamily']=_0x5c75e5,_0x2e1ce6['textContent']=testString,_0x3c750c['appendChild'](_0x2e1ce6),_0x2e1ce6;},_0xac1e3f=(_0x4e249a,_0x1678ec)=>{return _0x98b404('\x27'+_0x4e249a+'\x27,'+_0x1678ec);},_0x496caf=()=>{return baseFonts['map'](_0x98b404);},_0x22fa22=()=>{const _0x3bf1a6={};for(const _0x146cff of fontList){_0x3bf1a6[_0x146cff]=baseFonts['map'](_0x3bdb3c=>_0xac1e3f(_0x146cff,_0x3bdb3c));}return _0x3bf1a6;},_0x2952b1=_0x2d696b=>{return baseFonts['some']((_0x3d63c8,_0x870096)=>_0x2d696b[_0x870096]['offsetWidth']!==_0x479481[_0x3d63c8]||_0x2d696b[_0x870096]['offsetHeight']!==_0x121d18[_0x3d63c8]);},_0x36783a=_0x496caf(),_0x394882=_0x22fa22();_0x4701df['appendChild'](_0x3c750c);for(let _0x1e6740=0x0;_0x1e6740<baseFonts['length'];_0x1e6740++){_0x479481[baseFonts[_0x1e6740]]=_0x36783a[_0x1e6740]['offsetWidth'],_0x121d18[baseFonts[_0x1e6740]]=_0x36783a[_0x1e6740]['offsetHeight'];}return fontList['filter'](_0xee1f0a=>_0x2952b1(_0x394882[_0xee1f0a]));});}const ROTATION_MATRICES=[[0x0,0x1,0x0,Math['PI']/0x7],[0x1,0x0,0x0,Math['PI']/0x8],[0x0,0x1,0x1,Math['PI']/0x4],[0x1,0x2,0x1,Math['PI']/0x8]],TEX_WIDTH=0x7,TEX_HEIGHT=0x9,BYTES_PER_PIXEL=0x4,RT_WIDTH=0x20,RT_HEIGHT=0x20,TIMING_BUCKET_US=0x64,TIMEOUT_MS=0x5dc,WGSL_SHADER='\x0astruct\x20Uniforms\x20{\x0a\x20\x20params:\x20vec4f,\x0a}\x0a\x0a@group(0)\x20@binding(0)\x20var\x20mySampler:\x20sampler;\x0a@group(0)\x20@binding(1)\x20var\x20myTexture:\x20texture_2d<f32>;\x0a@group(1)\x20@binding(0)\x20var<uniform>\x20uniforms:\x20Uniforms;\x0a\x0astruct\x20VertexOutput\x20{\x0a\x20\x20@builtin(position)\x20position:\x20vec4f,\x0a\x20\x20@location(0)\x20uv:\x20vec2f,\x0a}\x0a\x0a@vertex\x0afn\x20vs(@builtin(vertex_index)\x20idx:\x20u32)\x20->\x20VertexOutput\x20{\x0a\x20\x20var\x20pos\x20=\x20array<vec2f,\x206>(\x0a\x20\x20\x20\x20vec2f(-1,\x20-1),\x20vec2f(1,\x20-1),\x20vec2f(-1,\x201),\x0a\x20\x20\x20\x20vec2f(-1,\x201),\x20vec2f(1,\x20-1),\x20vec2f(1,\x201),\x0a\x20\x20);\x0a\x20\x20let\x20p\x20=\x20uniforms.params;\x0a\x20\x20let\x20angle\x20=\x20p.w;\x0a\x20\x20let\x20axis\x20=\x20normalize(p.xyz);\x0a\x20\x20let\x20c\x20=\x20cos(angle);\x0a\x20\x20let\x20s\x20=\x20sin(angle);\x0a\x20\x20let\x20t\x20=\x201.0\x20-\x20c;\x0a\x20\x20let\x20x\x20=\x20axis.x;\x20let\x20y\x20=\x20axis.y;\x20let\x20z\x20=\x20axis.z;\x0a\x20\x20let\x20m\x20=\x20mat3x3f(\x0a\x20\x20\x20\x20vec3f(t*x*x\x20+\x20c,\x20t*x*y\x20+\x20s*z,\x20t*x*z\x20-\x20s*y),\x0a\x20\x20\x20\x20vec3f(t*x*y\x20-\x20s*z,\x20t*y*y\x20+\x20c,\x20t*y*z\x20+\x20s*x),\x0a\x20\x20\x20\x20vec3f(t*x*z\x20+\x20s*y,\x20t*y*z\x20-\x20s*x,\x20t*z*z\x20+\x20c),\x0a\x20\x20);\x0a\x20\x20let\x20v\x20=\x20pos[idx];\x0a\x20\x20let\x20rotated\x20=\x20m\x20*\x20vec3f(v,\x200.0);\x0a\x20\x20var\x20out:\x20VertexOutput;\x0a\x20\x20out.position\x20=\x20vec4f(rotated.xy,\x200.0,\x201.0);\x0a\x20\x20out.uv\x20=\x20v\x20*\x200.5\x20+\x200.5;\x0a\x20\x20return\x20out;\x0a}\x0a\x0a@fragment\x0afn\x20fs(@location(0)\x20uv:\x20vec2f)\x20->\x20@location(0)\x20vec4f\x20{\x0a\x20\x20return\x20textureSample(myTexture,\x20mySampler,\x20uv);\x0a}\x0a';async function getAdapterInfo$1(_0x44e8f0){const _0x4f7f7c=_0x44e8f0['info'];if(_0x4f7f7c!==undefined&&_0x4f7f7c!==null){const _0x1af458={};return _0x1af458['vendor']=_0x4f7f7c['vendor'],_0x1af458['architecture']=_0x4f7f7c['architecture'],_0x1af458;}if(typeof _0x44e8f0['requestAdapterInfo']==='function'){const _0xcb31b9=await _0x44e8f0['requestAdapterInfo'](),_0x4c6826={};return _0x4c6826['vendor']=_0xcb31b9['vendor'],_0x4c6826['architecture']=_0xcb31b9['architecture'],_0x4c6826;}const _0x182224={};return _0x182224['vendor']='',_0x182224['architecture']='',_0x182224;}function createTextureData(){const _0x3c9d4c=[],_0x13ca4f=[[0xff,0x0,0x0,0xff],[0x0,0xff,0x0,0xff],[0x0,0x0,0xff,0xff]];for(let _0x586c1e=0x0;_0x586c1e<TEX_WIDTH*TEX_HEIGHT;_0x586c1e++){_0x3c9d4c['push'](..._0x13ca4f[_0x586c1e%0x3]);}return new Uint8Array(_0x3c9d4c);}function quantizeTiming(_0x266f06){const _0x1663bc=Number(_0x266f06/0x3e8n);return Math['round'](_0x1663bc/TIMING_BUCKET_US)*TIMING_BUCKET_US;}const fnv1a$1=fnv1aBytes;async function renderAndReadback(_0x14318a,_0x47917e){const _0x3fcc87=[];for(const _0x528a98 of _0x47917e){_0x3fcc87['push'](_0x528a98);}const _0x1d1a0b={};_0x1d1a0b['requiredFeatures']=_0x3fcc87;const _0x54dc5d=await _0x14318a['requestDevice'](_0x1d1a0b),_0x59cb2f='rgba8unorm',_0xc3d48a={};_0xc3d48a['label']='fp-shader',_0xc3d48a['code']=WGSL_SHADER;const _0x2b2b02=_0x54dc5d['createShaderModule'](_0xc3d48a),_0x29d90c={};_0x29d90c['module']=_0x2b2b02;const _0x37c6da={};_0x37c6da['format']=_0x59cb2f;const _0x4a0b0f={};_0x4a0b0f['module']=_0x2b2b02,_0x4a0b0f['targets']=[_0x37c6da];const _0xabcf30={};_0xabcf30['topology']='triangle-list';const _0x2a9878={};_0x2a9878['label']='fp-pipeline',_0x2a9878['layout']='auto',_0x2a9878['vertex']=_0x29d90c,_0x2a9878['fragment']=_0x4a0b0f,_0x2a9878['primitive']=_0xabcf30;const _0x507fc8=_0x54dc5d['createRenderPipeline'](_0x2a9878),_0x312ca9=createTextureData(),_0x716c74={};_0x716c74['label']='fp-src-texture',_0x716c74['size']=[TEX_WIDTH,TEX_HEIGHT],_0x716c74['format']='rgba8unorm',_0x716c74['usage']=GPUTextureUsage['TEXTURE_BINDING']|GPUTextureUsage['COPY_DST'];const _0x364547=_0x54dc5d['createTexture'](_0x716c74),_0x45654d={};_0x45654d['texture']=_0x364547;const _0x3c9393={};_0x3c9393['bytesPerRow']=TEX_WIDTH*BYTES_PER_PIXEL;const _0xdec8f9={};_0xdec8f9['width']=TEX_WIDTH,_0xdec8f9['height']=TEX_HEIGHT,_0x54dc5d['queue']['writeTexture'](_0x45654d,_0x312ca9['buffer'],_0x3c9393,_0xdec8f9);const _0x38d1df={};_0x38d1df['label']='fp-sampler';const _0x2b7cd3=_0x54dc5d['createSampler'](_0x38d1df),_0x437ee4={};_0x437ee4['binding']=0x0,_0x437ee4['resource']=_0x2b7cd3;const _0x170e92=_0x54dc5d['createBindGroup']({'layout':_0x507fc8['getBindGroupLayout'](0x0),'entries':[_0x437ee4,{'binding':0x1,'resource':_0x364547['createView']()}]}),_0x58f8f9=ROTATION_MATRICES['map'](_0x15eb5e=>{const _0x46f47c={};_0x46f47c['label']='fp-uniform',_0x46f47c['size']=0x4*Float32Array['BYTES_PER_ELEMENT'],_0x46f47c['usage']=GPUBufferUsage['UNIFORM'],_0x46f47c['mappedAtCreation']=!![];const _0x213f3f=_0x54dc5d['createBuffer'](_0x46f47c);new Float32Array(_0x213f3f['getMappedRange']())['set'](_0x15eb5e),_0x213f3f['unmap']();const _0x296cc8={};_0x296cc8['buffer']=_0x213f3f;const _0x178dfd={};return _0x178dfd['binding']=0x0,_0x178dfd['resource']=_0x296cc8,_0x54dc5d['createBindGroup']({'layout':_0x507fc8['getBindGroupLayout'](0x1),'entries':[_0x178dfd]});}),_0x4a899a=_0x54dc5d['features']['has']('timestamp-query');let _0x440a8d=null,_0x27ca39=null,_0x12c066=null;if(_0x4a899a){const _0x4fe52a={};_0x4fe52a['label']='fp-ts',_0x4fe52a['type']='timestamp',_0x4fe52a['count']=0x2,_0x440a8d=_0x54dc5d['createQuerySet'](_0x4fe52a);const _0x22864f={};_0x22864f['size']=0x2*0x8,_0x22864f['usage']=GPUBufferUsage['QUERY_RESOLVE']|GPUBufferUsage['COPY_SRC'],_0x27ca39=_0x54dc5d['createBuffer'](_0x22864f);const _0x5439c0={};_0x5439c0['size']=0x2*0x8,_0x5439c0['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'],_0x12c066=_0x54dc5d['createBuffer'](_0x5439c0);}const _0x2e6e0f={};_0x2e6e0f['label']='fp-rt',_0x2e6e0f['size']=[RT_WIDTH,RT_HEIGHT],_0x2e6e0f['format']=_0x59cb2f,_0x2e6e0f['usage']=GPUTextureUsage['RENDER_ATTACHMENT']|GPUTextureUsage['COPY_SRC'];const _0x329c1b=_0x54dc5d['createTexture'](_0x2e6e0f),_0x185e05=Math['ceil'](RT_WIDTH*BYTES_PER_PIXEL/0x100)*0x100,_0x5e13c5={};_0x5e13c5['label']='fp-pixel-read',_0x5e13c5['size']=_0x185e05*RT_HEIGHT,_0x5e13c5['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'];const _0x47af5e=_0x54dc5d['createBuffer'](_0x5e13c5),_0x456f51=[],_0x55579f=[];for(let _0x322154=0x0;_0x322154<ROTATION_MATRICES['length'];_0x322154++){const _0x40847f=_0x329c1b['createView'](),_0x369824={};_0x369824['label']='fp-enc-'+_0x322154;const _0xcaa80a=_0x54dc5d['createCommandEncoder'](_0x369824),_0x567710={};_0x567710['r']=0x0,_0x567710['g']=0x0,_0x567710['b']=0x0,_0x567710['a']=0x1;const _0x144b1c={};_0x144b1c['view']=_0x40847f,_0x144b1c['clearValue']=_0x567710,_0x144b1c['loadOp']='clear',_0x144b1c['storeOp']='store';const _0x3dfc62={'label':'fp-pass-'+_0x322154,'colorAttachments':[_0x144b1c],..._0x4a899a&&_0x440a8d?{'timestampWrites':{'querySet':_0x440a8d,'beginningOfPassWriteIndex':0x0,'endOfPassWriteIndex':0x1}}:{}},_0x119bd1=_0x3dfc62,_0x3630a7=_0xcaa80a['beginRenderPass'](_0x119bd1);_0x3630a7['setPipeline'](_0x507fc8),_0x3630a7['setBindGroup'](0x0,_0x170e92),_0x3630a7['setBindGroup'](0x1,_0x58f8f9[_0x322154]),_0x3630a7['draw'](0x6),_0x3630a7['end']();_0x4a899a&&_0x440a8d&&_0x27ca39&&_0x12c066&&(_0xcaa80a['resolveQuerySet'](_0x440a8d,0x0,0x2,_0x27ca39,0x0),_0xcaa80a['copyBufferToBuffer'](_0x27ca39,0x0,_0x12c066,0x0,_0x27ca39['size']));const _0x3c8d6b={};_0x3c8d6b['x']=0x0,_0x3c8d6b['y']=0x0;const _0x2e8168={};_0x2e8168['texture']=_0x329c1b,_0x2e8168['origin']=_0x3c8d6b;const _0x23cd95={};_0x23cd95['buffer']=_0x47af5e,_0x23cd95['bytesPerRow']=_0x185e05,_0x23cd95['rowsPerImage']=RT_HEIGHT;const _0x354f6c={};_0x354f6c['width']=RT_WIDTH,_0x354f6c['height']=RT_HEIGHT,_0xcaa80a['copyTextureToBuffer'](_0x2e8168,_0x23cd95,_0x354f6c),_0x54dc5d['queue']['submit']([_0xcaa80a['finish']()]),await _0x47af5e['mapAsync'](GPUMapMode['READ']);const _0x113bfa=new Uint8Array(_0x47af5e['getMappedRange']()),_0x2d3f2e=RT_WIDTH*BYTES_PER_PIXEL,_0x3a0a00=new Uint8Array(_0x2d3f2e*RT_HEIGHT);for(let _0x1d752f=0x0;_0x1d752f<RT_HEIGHT;_0x1d752f++){_0x3a0a00['set'](_0x113bfa['subarray'](_0x1d752f*_0x185e05,_0x1d752f*_0x185e05+_0x2d3f2e),_0x1d752f*_0x2d3f2e);}_0x456f51['push'](fnv1a$1(_0x3a0a00)),_0x47af5e['unmap']();if(_0x4a899a&&_0x12c066)try{await _0x12c066['mapAsync'](GPUMapMode['READ']);const _0x45fc2e=new BigUint64Array(_0x12c066['getMappedRange']()),_0x5cee58=_0x45fc2e[0x0],_0x42d6a7=_0x45fc2e[0x1];_0x42d6a7>_0x5cee58&&_0x55579f['push'](quantizeTiming(_0x42d6a7-_0x5cee58)),_0x12c066['unmap']();}catch{}}const _0x28e143=new Uint8Array(_0x456f51['length']*0x4),_0xd543ce=new DataView(_0x28e143['buffer']);for(let _0x3928ba=0x0;_0x3928ba<_0x456f51['length'];_0x3928ba++){_0xd543ce['setUint32'](_0x3928ba*0x4,_0x456f51[_0x3928ba],!![]);}let _0x403be4='';for(let _0x2890d6=0x0;_0x2890d6<_0x28e143['length'];_0x2890d6++){_0x403be4+=String['fromCharCode'](_0x28e143[_0x2890d6]);}return typeof _0x54dc5d['destroy']==='function'&&_0x54dc5d['destroy'](),{'pixelHash':btoa(_0x403be4),'timingBuckets':_0x55579f};}async function getSubtleCryptoExport(){if(typeof navigator==='undefined'||navigator['gpu']===undefined){const _0x2328fe={};return _0x2328fe['s']=-0x1,_0x2328fe['v']=null,_0x2328fe;}const _0x27dd1e={};_0x27dd1e['s']=-0x2,_0x27dd1e['v']=null;const _0x402d8b=await Promise['race']([collectWebGpuSignal(),new Promise(_0x2a02a5=>setTimeout(()=>_0x2a02a5(_0x27dd1e),TIMEOUT_MS))]);return _0x402d8b;}async function collectWebGpuSignal(){let _0x1a54aa;try{const _0x1e68b2=await navigator['gpu']['requestAdapter']();if(!_0x1e68b2){const _0x5370d6={};return _0x5370d6['s']=-0x4,_0x5370d6['v']=null,_0x5370d6;}_0x1a54aa=_0x1e68b2;}catch(_0x1e28b1){if(_0x1e28b1 instanceof Error){const _0x3251d2={};return _0x3251d2['s']=-0x3,_0x3251d2['v']=null,_0x3251d2;}throw _0x1e28b1;}try{const _0x1675fd=Array['from'](_0x1a54aa['features']['values']())['sort'](),[_0x2de8df,_0x20f746]=await Promise['all']([renderAndReadback(_0x1a54aa,_0x1675fd),getAdapterInfo$1(_0x1a54aa)]),_0x3d55ca={};_0x3d55ca['s']=_0x1675fd,_0x3d55ca['f']=_0x2de8df['pixelHash'],_0x3d55ca['t']=_0x2de8df['timingBuckets'],_0x3d55ca['v']=_0x20f746['vendor'],_0x3d55ca['a']=_0x20f746['architecture'];const _0xf16d41={};return _0xf16d41['s']=0x0,_0xf16d41['v']=_0x3d55ca,_0xf16d41;}catch(_0x70df0c){if(_0x70df0c instanceof TypeError){const _0x5edffb={};return _0x5edffb['s']=-0x7,_0x5edffb['v']=null,_0x5edffb;}throw _0x70df0c;}}const _0x3925e8={};_0x3925e8['text']='今天天气真好我们出去玩吧',_0x3925e8['locale']='zh',_0x3925e8['gran']='word';const _0x1a7652={};_0x1a7652['text']='東京都は日本の首都です',_0x1a7652['locale']='ja',_0x1a7652['gran']='word';const _0x550526={};_0x550526['text']='สวัสดีครับวันนี้อากาศดี',_0x550526['locale']='th',_0x550526['gran']='word';const _0x4b2991={};_0x4b2991['text']='오늘날씨가좋아서산책했습니다',_0x4b2991['locale']='ko',_0x4b2991['gran']='word';const _0x25f416={};_0x25f416['text']='can\x27t\x20won\x27t\x20they\x27re\x20ice-cream',_0x25f416['locale']='en',_0x25f416['gran']='word';const _0x4cebcc={};_0x4cebcc['text']='👨‍👩‍👧‍👦🏳️‍🌈👩🏽‍💻',_0x4cebcc['locale']='en',_0x4cebcc['gran']='grapheme';const SEGMENTER_TESTS=[_0x3925e8,_0x1a7652,_0x550526,_0x4b2991,_0x25f416,_0x4cebcc],_0xb01461={};_0xb01461['code']='XK',_0xb01461['type']='region';const _0x2041a7={};_0x2041a7['code']='EH',_0x2041a7['type']='region';const _0x56ad8c={};_0x56ad8c['code']='SX',_0x56ad8c['type']='region';const _0x1b3e48={};_0x1b3e48['code']='BQ',_0x1b3e48['type']='region';const _0x4d9d52={};_0x4d9d52['code']='SS',_0x4d9d52['type']='region';const _0xd754da={};_0xd754da['code']='CW',_0xd754da['type']='region';const DISPLAY_NAMES_TESTS=[_0xb01461,_0x2041a7,_0x56ad8c,_0x1b3e48,_0x4d9d52,_0xd754da];function getIntlSegmenter(){const _0x4545d7={};_0x4545d7['segmenter']=null,_0x4545d7['displayNames']=null;const _0x5859a4=_0x4545d7;try{const _0x5a94a4=Intl['Segmenter'];if(_0x5a94a4){const _0xd798dc={};for(const _0x13e98e of SEGMENTER_TESTS){try{const _0x316570=new _0x5a94a4(_0x13e98e['locale'],{'granularity':_0x13e98e['gran']}),_0x50b7c7=[..._0x316570['segment'](_0x13e98e['text'])]['length'];_0xd798dc[_0x13e98e['locale']+'_'+_0x13e98e['gran']]=_0x50b7c7;}catch{}}Object['keys'](_0xd798dc)['length']>0x0&&(_0x5859a4['segmenter']=_0xd798dc);}}catch{}try{if(typeof Intl['DisplayNames']==='function'){const _0x182f98={},_0x232336={};_0x232336['type']='region';const _0x21c1dd=new Intl['DisplayNames'](['en'],_0x232336);for(const _0x369a4f of DISPLAY_NAMES_TESTS){try{const _0x2fd53e=_0x21c1dd['of'](_0x369a4f['code']);_0x2fd53e!==undefined&&_0x2fd53e!==''&&(_0x182f98[_0x369a4f['code']]=_0x2fd53e);}catch{}}Object['keys'](_0x182f98)['length']>0x0&&(_0x5859a4['displayNames']=_0x182f98);}}catch{}return _0x5859a4;}const fallbackFn=()=>0x0;function getMathFn(_0x4b93da){const _0x55ce34=globalThis['Math'][_0x4b93da];return typeof _0x55ce34==='function'?_0x55ce34:fallbackFn;}function getMathSignal(){const _0x57440e=getMathFn('acos'),_0x1d297f=getMathFn('acosh'),_0xa0c2d7=getMathFn('asin'),_0x50a8e9=getMathFn('asinh'),_0x5cf04b=getMathFn('atanh'),_0x506004=getMathFn('atan'),_0x2b3462=getMathFn('sin'),_0x3430f3=getMathFn('sinh'),_0x117b27=getMathFn('cos'),_0x4c385c=getMathFn('cosh'),_0x17d66a=getMathFn('tan'),_0x48083d=getMathFn('tanh'),_0x8174fc=getMathFn('exp'),_0x46e192=getMathFn('expm1'),_0x1dd867=getMathFn('log1p'),_0x51134e=_0x516c7d=>Math['pow'](Math['PI'],_0x516c7d),_0x1d3d50=_0xad0030=>Math['log'](_0xad0030+Math['sqrt'](_0xad0030*_0xad0030-0x1)),_0xda868b=_0x53ac3a=>Math['log'](_0x53ac3a+Math['sqrt'](_0x53ac3a*_0x53ac3a+0x1)),_0x493b01=_0x4f9a36=>Math['log']((0x1+_0x4f9a36)/(0x1-_0x4f9a36))/0x2,_0x215052=_0x3c8b17=>Math['exp'](_0x3c8b17)-0x1/Math['exp'](_0x3c8b17)/0x2,_0x39266d=_0x36002f=>(Math['exp'](_0x36002f)+0x1/Math['exp'](_0x36002f))/0x2,_0x54268a=_0x46c53b=>Math['exp'](_0x46c53b)-0x1,_0x1a0fa8=_0x2a3d5a=>(Math['exp'](0x2*_0x2a3d5a)-0x1)/(Math['exp'](0x2*_0x2a3d5a)+0x1),_0x3df6f9=_0x106a9e=>Math['log'](0x1+_0x106a9e);return{'acos':_0x57440e(0.12312423423423424),'acosh':_0x1d297f(0x8e679c2f5e450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'acoshPf':_0x1d3d50(0xbeeefb584aff88000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'asin':_0xa0c2d7(0.12312423423423424),'asinh':_0x50a8e9(0x1),'asinhPf':_0xda868b(0x1),'atanh':_0x5cf04b(0.5),'atanhPf':_0x493b01(0.5),'atan':_0x506004(0.5),'sin':_0x2b3462(-0x17e43c8800759c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'sinh':_0x3430f3(0x1),'sinhPf':_0x215052(0x1),'cos':_0x117b27(10.000000000123),'cosh':_0x4c385c(0x1),'coshPf':_0x39266d(0x1),'tan':_0x17d66a(-0x17e43c8800759c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'tanh':_0x48083d(0x1),'tanhPf':_0x1a0fa8(0x1),'exp':_0x8174fc(0x1),'expm1':_0x46e192(0x1),'expm1Pf':_0x54268a(0x1),'log1p':_0x1dd867(0xa),'log1pPf':_0x3df6f9(0xa),'powPI':_0x51134e(-0x64)};}const QUINTUPLETS=[['𝔈','υ','τ','ρ','σ'],['𝔇','π','ο','ν','ξ'],['𝔄','δ','γ','α','β'],['𝔅','θ','η','ε','ζ'],['𝔉','ω','ψ','φ','χ'],['ℭ','μ','λ','ι','κ']];function getMathML(){const _0x4ac652=document['createDocumentFragment'](),_0x47d0ff=createMathElement(_0x4ac652,'mrow'),_0x255f07=createMathElement(_0x47d0ff,'munderover'),_0x59af3d=createMathElement(_0x255f07,'mmultiscripts');createMathElement(_0x59af3d,'mo','∏');for(const [_0x95e05a,_0x49bcd7,_0x3db41d,_0x500791,_0x444740]of QUINTUPLETS){const _0x1ffd4b=document['createElement']('mmultiscripts');createMathElement(_0x1ffd4b,'mi',_0x95e05a),createMathElement(_0x1ffd4b,'mi',_0x49bcd7),createMathElement(_0x1ffd4b,'mi',_0x3db41d),createMathElement(_0x1ffd4b,'mprescripts'),createMathElement(_0x1ffd4b,'mi',_0x500791),createMathElement(_0x1ffd4b,'mi',_0x444740),_0x59af3d['append'](_0x1ffd4b);}return getIframePool()['execute']((_0x43b9b2,_0x3787ab)=>{const _0x2fafb9=_0x3787ab['document'],_0x114d7c=_0x2fafb9['createElement']('math');_0x114d7c['style']['whiteSpace']='nowrap',_0x114d7c['append'](_0x4ac652),_0x2fafb9['body']['append'](_0x114d7c);const _0x187d76={},_0x3c8f56=_0x114d7c['getBoundingClientRect'](),_0x57b7cf=['x','y','left','right','bottom','height','top','width'];for(const _0x3c6487 of _0x57b7cf){_0x3c6487 in _0x3c8f56&&(_0x187d76[_0x3c6487]=_0x3c8f56[_0x3c6487]);}const _0x296712=_0x3787ab['getComputedStyle'](_0x114d7c,null)['getPropertyValue']('font-family');return _0x187d76['font']=_0x296712,_0x2fafb9['body']['removeChild'](_0x114d7c),_0x187d76;});}function createMathElement(_0x5c274f,_0xd6d217,_0x17b451=''){const _0x3c9853=document['createElement'](_0xd6d217);return _0x3c9853['textContent']=_0x17b451,_0x5c274f['appendChild'](_0x3c9853),_0x3c9853;}const MSE_AUDIO_CODECS=['audio/mp4;\x20codecs=\x22mp4a.40.2\x22','audio/webm;\x20codecs=\x22vorbis\x22','audio/ogg;\x20codecs=\x22vorbis\x22','audio/wav;\x20codecs=\x221\x22','audio/ogg;\x20codecs=\x22speex\x22','audio/ogg;\x20codecs=\x22flac\x22','audio/mpeg','audio/3gpp'],MSE_VIDEO_CODECS=['video/mp4;\x20codecs=\x22avc1.42E01E\x22','video/mp4;\x20codecs=\x22avc1.58A01E\x22','video/mp4;\x20codecs=\x22avc1.4D401E\x22','video/mp4;\x20codecs=\x22avc1.64001E\x22','video/mp4;\x20codecs=\x22mp4v.20.8\x22','video/webm;\x20codecs=\x22vp8\x22','video/webm;\x20codecs=\x22vp9\x22','video/ogg;\x20codecs=\x22theora\x22','video/mp4;\x20codecs=\x22hvc1\x22','video/mp4;\x20codecs=\x22av01.0.01M.08\x22','video/webm;\x20codecs=\x22av1\x22'];function getMediaCodecsExtended(){return{'mseAudio':getMseBitmask(MSE_AUDIO_CODECS),'mseVideo':getMseBitmask(MSE_VIDEO_CODECS),'rtcAudioCodecs':getRtcCodecs('audio'),'rtcVideoCodecs':getRtcCodecs('video')};}function getMseBitmask(_0x3696a9){const _0x2e7396=window,_0x4aed86=_0x2e7396['MediaSource'];if(_0x4aed86===undefined||typeof _0x4aed86['isTypeSupported']!=='function')return-0x1;let _0x2eae4a=0x0;for(let _0x43077a=0x0;_0x43077a<_0x3696a9['length'];_0x43077a++){try{_0x4aed86['isTypeSupported'](_0x3696a9[_0x43077a])&&(_0x2eae4a|=0x1<<_0x43077a);}catch{}}return _0x2eae4a;}function getRtcCodecs(_0xe74226){const _0x4915d6=window,_0x265db7=_0x4915d6['RTCRtpReceiver'];if(_0x265db7===undefined||typeof _0x265db7['getCapabilities']!=='function')return null;try{const _0x15d457=_0x265db7['getCapabilities'](_0xe74226);if(_0x15d457===null)return null;const _0x41e713=_0x15d457['codecs']['map'](_0x396dd1=>''+_0x396dd1['mimeType']+(_0x396dd1['sdpFmtpLine']!==undefined&&_0x396dd1['sdpFmtpLine']!==''?';'+_0x396dd1['sdpFmtpLine']:''));return _0x41e713['sort']();}catch{return null;}}async function getSubPixelRendering(){try{return await getIframePool()['execute']((_0x3263d7,_0x35f00c)=>{const _0x47bf8a=_0x35f00c['document'],_0x2847f7=_0x47bf8a['createElement']('div');_0x2847f7['style']['border']='.5px\x20dotted\x20transparent',_0x47bf8a['body']['appendChild'](_0x2847f7);const _0xb03488=_0x2847f7['offsetHeight'];return _0x47bf8a['body']['removeChild'](_0x2847f7),_0xb03488;});}catch{return null;}}function getSupportedConstraints(){try{const _0x5a2e9f=navigator['mediaDevices'];if(_0x5a2e9f===undefined||typeof _0x5a2e9f['getSupportedConstraints']!=='function')return undefined;return Object['keys'](_0x5a2e9f['getSupportedConstraints']());}catch{return undefined;}}function getSvgEmojiSignal(){let _0x9e4729='';for(let _0x305644=0x1f600;_0x305644<=0x1f64f;_0x305644++){_0x9e4729+=String['fromCodePoint'](_0x305644);}return getIframePool()['execute']((_0x31e95a,_0x543f0c)=>{const _0x4987a4=_0x543f0c['document'],_0x58d0c2='http://www.w3.org/2000/svg',_0x6c0361=_0x4987a4['createElementNS'](_0x58d0c2,'svg');_0x6c0361['setAttribute']('width','0'),_0x6c0361['setAttribute']('height','0'),_0x6c0361['style']['position']='absolute',_0x6c0361['style']['visibility']='hidden';const _0x460f92=_0x4987a4['createElementNS'](_0x58d0c2,'text');_0x460f92['setAttribute']('x','0'),_0x460f92['setAttribute']('y','50'),_0x460f92['setAttribute']('font-size','16'),_0x460f92['textContent']=_0x9e4729,_0x6c0361['appendChild'](_0x460f92),_0x4987a4['body']['appendChild'](_0x6c0361);const _0x2edc1b=_0x543f0c['getComputedStyle'](_0x460f92)['getPropertyValue']('font-family');let _0x61fadf=null;try{const _0x59aad4=_0x460f92['getBBox']();_0x61fadf={'x':round(_0x59aad4['x']),'y':round(_0x59aad4['y']),'width':round(_0x59aad4['width']),'height':round(_0x59aad4['height'])};}catch{}let _0x5ec9f5=null;try{const _0x2d5e2d=_0x460f92,_0x3bffdd=_0x2d5e2d['getExtentOfChar'](0x0);_0x5ec9f5={'x':round(_0x3bffdd['x']),'y':round(_0x3bffdd['y']),'width':round(_0x3bffdd['width']),'height':round(_0x3bffdd['height'])};}catch{}let _0x307fb4=null;try{const _0x2466ef=_0x460f92;_0x307fb4=round(_0x2466ef['getSubStringLength'](0x0,0xa));}catch{}let _0x12e284=null;try{const _0x56eb45=_0x460f92;_0x12e284=round(_0x56eb45['getComputedTextLength']());}catch{}_0x4987a4['body']['removeChild'](_0x6c0361);const _0x2b7e62={};return _0x2b7e62['bbox']=_0x61fadf,_0x2b7e62['charExtent']=_0x5ec9f5,_0x2b7e62['substringLength']=_0x307fb4,_0x2b7e62['computedTextLength']=_0x12e284,_0x2b7e62['font']=_0x2edc1b,_0x2b7e62;});}function round(_0x7d3cce){return Math['round'](_0x7d3cce*0x64)/0x64;}const _0x4b18df={};_0x4b18df['contentType']='video/mp4;\x20codecs=\x22avc1.42E01E\x22',_0x4b18df['width']=0x780,_0x4b18df['height']=0x438,_0x4b18df['bitrate']=0x4c4b40,_0x4b18df['framerate']=0x1e;const _0x5bd641={};_0x5bd641['type']='file',_0x5bd641['video']=_0x4b18df;const _0x1aa581={};_0x1aa581['contentType']='video/webm;\x20codecs=\x22vp8\x22',_0x1aa581['width']=0x780,_0x1aa581['height']=0x438,_0x1aa581['bitrate']=0x4c4b40,_0x1aa581['framerate']=0x1e;const _0x259d4={};_0x259d4['type']='file',_0x259d4['video']=_0x1aa581;const _0x241643={};_0x241643['contentType']='video/webm;\x20codecs=\x22vp09.00.10.08\x22',_0x241643['width']=0x780,_0x241643['height']=0x438,_0x241643['bitrate']=0x4c4b40,_0x241643['framerate']=0x1e;const _0x399f0e={};_0x399f0e['type']='file',_0x399f0e['video']=_0x241643;const _0x114b9e={};_0x114b9e['contentType']='video/mp4;\x20codecs=\x22av01.0.05M.08\x22',_0x114b9e['width']=0x780,_0x114b9e['height']=0x438,_0x114b9e['bitrate']=0x4c4b40,_0x114b9e['framerate']=0x1e;const _0x49b5b3={};_0x49b5b3['type']='file',_0x49b5b3['video']=_0x114b9e;const _0x576839={};_0x576839['contentType']='video/mp4;\x20codecs=\x22hvc1.1.6.L93.B0\x22',_0x576839['width']=0x780,_0x576839['height']=0x438,_0x576839['bitrate']=0x4c4b40,_0x576839['framerate']=0x1e;const _0x24b7d6={};_0x24b7d6['type']='file',_0x24b7d6['video']=_0x576839;const _0x55af0d={};_0x55af0d['contentType']='video/mp4;\x20codecs=\x22avc1.640033\x22',_0x55af0d['width']=0xf00,_0x55af0d['height']=0x870,_0x55af0d['bitrate']=0x1312d00,_0x55af0d['framerate']=0x3c;const _0x761cea={};_0x761cea['type']='file',_0x761cea['video']=_0x55af0d;const _0x54246a={};_0x54246a['contentType']='video/webm;\x20codecs=\x22vp09.02.10.10\x22',_0x54246a['width']=0xf00,_0x54246a['height']=0x870,_0x54246a['bitrate']=0x1312d00,_0x54246a['framerate']=0x3c;const _0x5b1304={};_0x5b1304['type']='file',_0x5b1304['video']=_0x54246a;const _0x1b6c05={};_0x1b6c05['contentType']='video/mp4;\x20codecs=\x22av01.0.12M.10\x22',_0x1b6c05['width']=0xf00,_0x1b6c05['height']=0x870,_0x1b6c05['bitrate']=0x1312d00,_0x1b6c05['framerate']=0x3c;const _0x3d243e={};_0x3d243e['type']='file',_0x3d243e['video']=_0x1b6c05;const CODEC_CONFIGS=[_0x5bd641,_0x259d4,_0x399f0e,_0x49b5b3,_0x24b7d6,_0x761cea,_0x5b1304,_0x3d243e];async function getVideoCodecs(){if(!('mediaCapabilities'in navigator))return null;return Promise['all'](CODEC_CONFIGS['map'](async _0x321586=>{try{const _0x25a933=await navigator['mediaCapabilities']['decodingInfo'](_0x321586);let _0x470eec=0x0;if(_0x25a933['supported'])_0x470eec|=0x1;if(_0x25a933['smooth'])_0x470eec|=0x2;if(_0x25a933['powerEfficient'])_0x470eec|=0x4;return _0x470eec;}catch(_0x4080a0){return _0x4080a0 instanceof Error?_0x4080a0['message']:String(_0x4080a0);}}));}const WASM_PREFIX=[0x0,0x61,0x73,0x6d,0x1,0x0,0x0,0x0,0x1,0x4,0x1,0x60,0x0,0x0,0x3,0x2,0x1,0x0,0xa],FEATURE_MODULES=[[0x9,0x1,0x7,0x0,0x41,0x0,0xfd,0xf,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0xf0,0x43,0x0,0x0,0x0,0xc,0x1,0xa,0x0,0xfc,0x2,0x3,0x1,0x1,0x0,0x0,0x6e,0x1a,0xb,0xa1,0xa],[0x6,0x1,0x4,0x0,0x12,0x0,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0x8,0x1,0x6,0x0,0x41,0x0,0xc0,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0x7,0x1,0x5,0x0,0xd0,0x70,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0]];function getWasmFeatures(){try{if(typeof WebAssembly==='undefined'||typeof WebAssembly['validate']!=='function')return undefined;let _0x20399c=0x0;for(const _0x263ffe of FEATURE_MODULES){_0x20399c<<=0x1,WebAssembly['validate'](Uint8Array['of'](...WASM_PREFIX,..._0x263ffe)['buffer'])&&(_0x20399c|=0x1);}return _0x20399c;}catch{return undefined;}}const _0x522374={};_0x522374['codec']='avc1.42001E',_0x522374['width']=0x780,_0x522374['height']=0x438,_0x522374['label']='h264-baseline-1080';const _0x3033cf={};_0x3033cf['codec']='avc1.4D0032',_0x3033cf['width']=0xf00,_0x3033cf['height']=0x870,_0x3033cf['label']='h264-main-4k';const _0x59709d={};_0x59709d['codec']='avc1.640033',_0x59709d['width']=0xf00,_0x59709d['height']=0x870,_0x59709d['label']='h264-high-4k';const _0x41503d={};_0x41503d['codec']='hev1.1.6.L150.B0',_0x41503d['width']=0x780,_0x41503d['height']=0x438,_0x41503d['label']='hevc-main-1080';const _0x38e8c8={};_0x38e8c8['codec']='hev1.2.4.L153.B0',_0x38e8c8['width']=0xf00,_0x38e8c8['height']=0x870,_0x38e8c8['label']='hevc-main10-4k';const _0x4d2664={};_0x4d2664['codec']='hev1.1.6.L180.B0',_0x4d2664['width']=0x1e00,_0x4d2664['height']=0x10e0,_0x4d2664['label']='hevc-main-8k';const _0x38bb9a={};_0x38bb9a['codec']='vp09.00.40.08',_0x38bb9a['width']=0x780,_0x38bb9a['height']=0x438,_0x38bb9a['label']='vp9-profile0-1080';const _0x429170={};_0x429170['codec']='vp09.02.40.10',_0x429170['width']=0xf00,_0x429170['height']=0x870,_0x429170['label']='vp9-profile2-4k-10bit';const _0x3b748c={};_0x3b748c['codec']='av01.0.08M.08',_0x3b748c['width']=0x780,_0x3b748c['height']=0x438,_0x3b748c['label']='av1-main-1080';const _0x54fa20={};_0x54fa20['codec']='av01.0.12M.10',_0x54fa20['width']=0xf00,_0x54fa20['height']=0x870,_0x54fa20['label']='av1-main-4k-10bit';const _0x3ca5b1={};_0x3ca5b1['codec']='av01.0.16M.10',_0x3ca5b1['width']=0x1e00,_0x3ca5b1['height']=0x10e0,_0x3ca5b1['label']='av1-main-8k-10bit';const _0x271a28={};_0x271a28['codec']='vp8',_0x271a28['width']=0x780,_0x271a28['height']=0x438,_0x271a28['label']='vp8-1080';const CODEC_TESTS=[_0x522374,_0x3033cf,_0x59709d,_0x41503d,_0x38e8c8,_0x4d2664,_0x38bb9a,_0x429170,_0x3b748c,_0x54fa20,_0x3ca5b1,_0x271a28];async function getWebCodecsHardware(){try{const _0x5e5b56=window['VideoDecoder'];if(!_0x5e5b56||typeof _0x5e5b56['isConfigSupported']!=='function')return null;const _0x4d4166=_0x5e5b56['isConfigSupported']['bind'](_0x5e5b56),_0x784207=[],_0x52b95c=CODEC_TESTS['map'](async _0x2df704=>{try{const _0x4b4b0a={};_0x4b4b0a['codec']=_0x2df704['codec'],_0x4b4b0a['codedWidth']=_0x2df704['width'],_0x4b4b0a['codedHeight']=_0x2df704['height'],_0x4b4b0a['hardwareAcceleration']='prefer-hardware';const _0x2f225d=_0x4b4b0a,_0x220d9c=await Promise['race']([_0x4d4166(_0x2f225d),new Promise(_0x26e918=>setTimeout(()=>_0x26e918(null),0x1f4))]);if(_0x220d9c?.['supported']===!![]){const _0x241aa2=_0x220d9c['config'],_0x3e983d=_0x241aa2?.['hardwareAcceleration'];(_0x3e983d==='prefer-hardware'||_0x3e983d===undefined)&&_0x784207['push'](_0x2df704['label']);}}catch{}});return await Promise['all'](_0x52b95c),_0x784207['sort']();}catch{return null;}}const STATUS_NO_GL_CONTEXT=-0x1,STATUS_GET_PARAMETER_NOT_A_FUNCTION=-0x2,validContextParameters=new Set([0x2a00,0xb21,0xb44,0xb45,0xb46,0xb70,0xb71,0xb72,0xb73,0xb74,0xb90,0xb91,0xb92,0xb93,0xb94,0xb95,0xb96,0xb97,0xb98,0xba2,0xbd0,0xbe2,0xc10,0xc11,0xc22,0xc23,0x8005,0x8009,0x8009,0x8037,0x8038,0x80a8,0x80a9,0x80aa,0x80ab,0x80c8,0x80c9,0x80ca,0x80cb,0xcf5,0x8192,0xd05,0xd33,0xd39,0xd3a,0xd4b,0xd66,0x846d,0x846e,0x84e0,0x84e8,0x851c,0xd50,0xd52,0xd53,0xd54,0xd55,0xd56,0xd57,0x86a3,0x8800,0x8801,0x8802,0x8803,0x883d,0x8869,0x8872,0x8b4c,0x8b4d,0x8b8c,0x8b9a,0x8b9b,0x8ca3,0x8ca4,0x8ca5,0x8dfb,0x8dfc,0x8dfd,0x9240,0x9241,0x9243,0x1f00,0x1f01,0x1f02]),validExtensionParams=new Set([0x84ff,0x8b8b,0x8cdf,0x8824,0x8825,0x8826,0x85b5,0x8e28,0x8fbb,0x9631]),shaderTypes=['FRAGMENT_SHADER','VERTEX_SHADER'],precisionTypes=['LOW_FLOAT','MEDIUM_FLOAT','HIGH_FLOAT','LOW_INT','MEDIUM_INT','HIGH_INT'],rendererInfoExtensionName='WEBGL_debug_renderer_info',polygonModeExtensionName='WEBGL_polygon_mode';function getWebGlBasics({cache:_0x7afd34}){const _0x511699=getWebGLContext(_0x7afd34);if(!_0x511699)return STATUS_NO_GL_CONTEXT;if(!isValidParameterGetter(_0x511699))return STATUS_GET_PARAMETER_NOT_A_FUNCTION;const _0x5b7709=shouldAvoidDebugRendererInfo()?null:_0x511699['getExtension'](rendererInfoExtensionName);return{'version':getParamString(_0x511699,_0x511699['VERSION']),'vendor':getParamString(_0x511699,_0x511699['VENDOR']),'vendorUnmasked':_0x5b7709!==null?getParamString(_0x511699,_0x5b7709['UNMASKED_VENDOR_WEBGL']):'','renderer':getParamString(_0x511699,_0x511699['RENDERER']),'rendererUnmasked':_0x5b7709!==null?getParamString(_0x511699,_0x5b7709['UNMASKED_RENDERER_WEBGL']):'','shadingLanguageVersion':getParamString(_0x511699,_0x511699['SHADING_LANGUAGE_VERSION'])};}function getWebGlExtensions({cache:_0x533d3b}){const _0xe76692=getWebGLContext(_0x533d3b);if(!_0xe76692)return STATUS_NO_GL_CONTEXT;if(!isValidParameterGetter(_0xe76692))return STATUS_GET_PARAMETER_NOT_A_FUNCTION;const _0xa52104=_0xe76692['getSupportedExtensions'](),_0x10cd73=_0xe76692['getContextAttributes'](),_0xd6128f=[],_0x1a679e=[],_0x7e8df5=[],_0x5da32d=[],_0x4848f2=[];if(_0x10cd73)for(const _0x5d29b7 of Object['keys'](_0x10cd73)){_0x1a679e['push'](_0x5d29b7+'='+_0x10cd73[_0x5d29b7]);}const _0x28c836=getConstantsFromPrototype(_0xe76692);for(const _0x15743d of _0x28c836){const _0x51d494=_0xe76692[_0x15743d],_0x3630be=validContextParameters['has'](_0x51d494)?'='+String(_0xe76692['getParameter'](_0x51d494)):'';_0x7e8df5['push'](_0x15743d+'='+_0x51d494+_0x3630be);}if(_0xa52104!==null)for(const _0x21cbc6 of _0xa52104){if(_0x21cbc6===rendererInfoExtensionName&&shouldAvoidDebugRendererInfo()||_0x21cbc6===polygonModeExtensionName&&shouldAvoidPolygonModeExtensions())continue;const _0x5d017f=_0xe76692['getExtension'](_0x21cbc6);if(_0x5d017f===null){_0xd6128f['push'](_0x21cbc6);continue;}for(const _0x563cfb of getConstantsFromPrototype(_0x5d017f)){const _0x5f2c83=_0x5d017f[_0x563cfb],_0x40c563=validExtensionParams['has'](_0x5f2c83)?'='+String(_0xe76692['getParameter'](_0x5f2c83)):'';_0x5da32d['push'](_0x563cfb+'='+_0x5f2c83+_0x40c563);}}for(const _0x330c57 of shaderTypes){for(const _0x39cccb of precisionTypes){const _0x535485=getShaderPrecision(_0xe76692,_0x330c57,_0x39cccb);_0x4848f2['push'](_0x330c57+'.'+_0x39cccb+'='+_0x535485['join'](','));}}_0x5da32d['sort'](),_0x7e8df5['sort']();const _0x503fbf={};return _0x503fbf['contextAttributes']=_0x1a679e,_0x503fbf['parameters']=_0x7e8df5,_0x503fbf['shaderPrecisions']=_0x4848f2,_0x503fbf['extensions']=_0xa52104,_0x503fbf['extensionParameters']=_0x5da32d,_0x503fbf['unsupportedExtensions']=_0xd6128f,_0x503fbf;}function getWebGLContext(_0x3ecb81){if(_0x3ecb81['webgl'])return _0x3ecb81['webgl']['context'];const _0x3229a0=document['createElement']('canvas');let _0x52bb48;_0x3229a0['addEventListener']('webglCreateContextError',()=>_0x52bb48=undefined);for(const _0xbbca58 of['webgl','experimental-webgl']){try{_0x52bb48=_0x3229a0['getContext'](_0xbbca58);}catch{}if(_0x52bb48)break;}const _0x21bd39={};return _0x21bd39['context']=_0x52bb48,_0x3ecb81['webgl']=_0x21bd39,_0x52bb48;}function getShaderPrecision(_0x1d9e7f,_0x51de6a,_0x29e86f){const _0x28f8b3=_0x1d9e7f['getShaderPrecisionFormat'](_0x1d9e7f[_0x51de6a],_0x1d9e7f[_0x29e86f]);return _0x28f8b3?[_0x28f8b3['rangeMin'],_0x28f8b3['rangeMax'],_0x28f8b3['precision']]:[];}function getConstantsFromPrototype(_0x59e85d){const _0x20b1f3=Object['getPrototypeOf'](_0x59e85d);if(_0x20b1f3===null)return[];const _0x53fdc4=Object['keys'](_0x20b1f3);return _0x53fdc4['filter'](isConstantLike);}function isConstantLike(_0x5d74d8){return typeof _0x5d74d8==='string'&&!_0x5d74d8['match'](/[^A-Z0-9_x]/);}function shouldAvoidDebugRendererInfo(){return isGecko();}function shouldAvoidPolygonModeExtensions(){return isChromium()||isWebKit();}function getParamString(_0x4f6d3b,_0x5d82da){const _0x6ad633=_0x4f6d3b['getParameter'](_0x5d82da);if(_0x6ad633===undefined||_0x6ad633===null)return'';return String(_0x6ad633);}function isValidParameterGetter(_0x1f25b){return typeof _0x1f25b['getParameter']==='function';}function getWebGlCanvas(){try{const _0x592cec=document['createElement']('canvas');_0x592cec['width']=0x100,_0x592cec['height']=0x100;const _0x205de0=_0x592cec['getContext']('webgl')??_0x592cec['getContext']('experimental-webgl'),_0x6d5760={};_0x6d5760['image']='',_0x6d5760['dHash']='';if(!_0x205de0||!(_0x205de0 instanceof WebGLRenderingContext))return _0x6d5760;renderTriangle(_0x205de0);const _0x4d016c=computeDHash(_0x592cec),_0x810abe=_0x592cec['toDataURL'](),_0x17d51b=_0x592cec['toDataURL']();if(_0x810abe!==_0x17d51b){const _0x4125be={};return _0x4125be['image']='unstable',_0x4125be['dHash']=_0x4d016c,_0x4125be;}const _0x45db08={};return _0x45db08['image']=_0x810abe,_0x45db08['dHash']=_0x4d016c,_0x45db08;}catch{const _0x3bb7b9={};return _0x3bb7b9['image']='',_0x3bb7b9['dHash']='',_0x3bb7b9;}}function renderTriangle(_0x193600){_0x193600['clearColor'](0x0,0x0,0x1,0x1);const _0x12c58d=_0x193600['createProgram']();if(_0x12c58d===null)return;const _0x390d86=_0x12c58d;function _0x1127c0(_0x40aff9,_0x5c597f){const _0x5936b7=_0x193600['createShader'](_0x40aff9);if(_0x5936b7===null)return;_0x193600['shaderSource'](_0x5936b7,_0x5c597f),_0x193600['compileShader'](_0x5936b7),_0x193600['attachShader'](_0x390d86,_0x5936b7);}_0x1127c0(_0x193600['VERTEX_SHADER'],'attribute\x20vec2\x20p;uniform\x20float\x20t;void\x20main(){float\x20s=sin(t);float\x20c=cos(t);gl_Position=vec4(p*mat2(c,s,-s,c),1,1);}'),_0x1127c0(_0x193600['FRAGMENT_SHADER'],'void\x20main(){gl_FragColor=vec4(1,0,0,1);}'),_0x193600['linkProgram'](_0x12c58d),_0x193600['useProgram'](_0x12c58d),_0x193600['enableVertexAttribArray'](0x0);const _0x6f6fa2=_0x193600['getUniformLocation'](_0x12c58d,'t'),_0x982419=_0x193600['createBuffer']();_0x193600['bindBuffer'](_0x193600['ARRAY_BUFFER'],_0x982419),_0x193600['bufferData'](_0x193600['ARRAY_BUFFER'],new Float32Array([0x0,0x1,-0x1,-0x1,0x1,-0x1]),_0x193600['STATIC_DRAW']),_0x193600['vertexAttribPointer'](0x0,0x2,_0x193600['FLOAT'],![],0x0,0x0),_0x193600['clear'](_0x193600['COLOR_BUFFER_BIT']),_0x193600['uniform1f'](_0x6f6fa2,3.65),_0x193600['drawArrays'](_0x193600['TRIANGLES'],0x0,0x3);}const GPU_LIMIT_NAMES=['maxTextureDimension1D','maxTextureDimension2D','maxTextureDimension3D','maxTextureArrayLayers','maxBindGroups','maxBindingsPerBindGroup','maxDynamicUniformBuffersPerPipelineLayout','maxDynamicStorageBuffersPerPipelineLayout','maxSampledTexturesPerShaderStage','maxSamplersPerShaderStage','maxStorageBuffersPerShaderStage','maxStorageTexturesPerShaderStage','maxUniformBuffersPerShaderStage','maxUniformBufferBindingSize','maxStorageBufferBindingSize','minUniformBufferOffsetAlignment','minStorageBufferOffsetAlignment','maxVertexBuffers','maxBufferSize','maxVertexAttributes','maxVertexBufferArrayStride','maxInterStageShaderComponents','maxInterStageShaderVariables','maxColorAttachments','maxColorAttachmentBytesPerSample','maxComputeWorkgroupStorageSize','maxComputeInvocationsPerWorkgroup','maxComputeWorkgroupSizeX','maxComputeWorkgroupSizeY','maxComputeWorkgroupSizeZ','maxComputeWorkgroupsPerDimension','maxBindGroupsPlusVertexBuffers','maxStorageBuffersInFragmentStage','maxStorageBuffersInVertexStage','maxStorageTexturesInFragmentStage','maxStorageTexturesInVertexStage'];async function getAdapterInfo(_0x54ba3a){const _0x3e0093=_0x54ba3a['info'];if(_0x3e0093!==null&&_0x3e0093!==undefined)return _0x3e0093;const _0x42635b=_0x54ba3a['requestAdapterInfo'];if(typeof _0x42635b==='function')try{return await _0x42635b['call'](_0x54ba3a);}catch{return null;}return null;}async function getWebGlExtended(){try{const _0x40b4c1=navigator['gpu'];if(_0x40b4c1===undefined||_0x40b4c1===null||typeof _0x40b4c1!=='object')return null;const _0x5224df=_0x40b4c1['requestAdapter'];if(typeof _0x5224df!=='function')return null;let _0x1b599c=null;try{_0x1b599c=await _0x5224df['call'](_0x40b4c1);}catch{return null;}if(!_0x1b599c)return null;const _0x44a80e=_0x1b599c['limits'],_0x1cf464=[];for(const _0x57840f of GPU_LIMIT_NAMES){if(_0x44a80e&&_0x57840f in _0x44a80e){const _0x1848a8=_0x44a80e[_0x57840f];_0x1cf464['push'](typeof _0x1848a8==='number'?_0x1848a8:null);}else _0x1cf464['push'](null);}const _0xc58aba=await getAdapterInfo(_0x1b599c);let _0x2779bd=null,_0x469450=null;_0xc58aba!==null&&(_0x2779bd=typeof _0xc58aba['description']==='string'?_0xc58aba['description']:null,_0x469450=typeof _0xc58aba['device']==='string'?_0xc58aba['device']:null);const _0x3bd146='isFallbackAdapter'in _0x1b599c?Boolean(_0x1b599c['isFallbackAdapter']):null,_0x4ddc22={};return _0x4ddc22['ds']=_0x2779bd,_0x4ddc22['dv']=_0x469450,_0x4ddc22['f']=_0x3bd146,_0x4ddc22['l']=_0x1cf464,_0x4ddc22;}catch{return null;}}const SIZE=0x43,LAT_BANDS=0x32,LON_BANDS=0x32,RADIUS=0x2,VERT_SHADER='\x0aattribute\x20vec3\x20aPosition;\x0aattribute\x20vec3\x20aNormal;\x0auniform\x20vec4\x20uLightPos;\x0auniform\x20vec3\x20uKd;\x0auniform\x20vec3\x20uLd;\x0auniform\x20mat4\x20uMVMatrix;\x0auniform\x20mat4\x20uMVPMatrix;\x0avarying\x20vec3\x20vLight;\x0avoid\x20main()\x20{\x0a\x20\x20vec3\x20n\x20=\x20normalize(aNormal);\x0a\x20\x20vec4\x20pos\x20=\x20uMVMatrix\x20*\x20vec4(aPosition,\x201.0);\x0a\x20\x20vec3\x20s\x20=\x20normalize(vec3(uLightPos\x20-\x20pos));\x0a\x20\x20vLight\x20=\x20uLd\x20*\x20uKd\x20*\x20max(dot(s,\x20n),\x200.0);\x0a\x20\x20gl_Position\x20=\x20uMVPMatrix\x20*\x20vec4(aPosition,\x201.0);\x0a}\x0a',FRAG_SHADER='\x0aprecision\x20mediump\x20float;\x0avarying\x20vec3\x20vLight;\x0avoid\x20main()\x20{\x0a\x20\x20gl_FragColor\x20=\x20vec4(vLight,\x201.0);\x0a}\x0a';function getWebGlSphere(){try{const _0x1b4027=document['createElement']('canvas');_0x1b4027['width']=SIZE,_0x1b4027['height']=SIZE;const _0x277b22=_0x1b4027['getContext']('webgl')??_0x1b4027['getContext']('experimental-webgl');if(!_0x277b22)return null;const _0x1a19c7=buildProgram(_0x277b22);if(!_0x1a19c7)return null;const _0x55fe70=buildSphere();renderSphere(_0x277b22,_0x1a19c7,_0x55fe70);const _0x45179a=_0x1b4027['toDataURL'](),_0x233f4e=_0x1b4027['toDataURL']();if(_0x45179a!==_0x233f4e)return null;return fnv1a(_0x45179a);}catch{return null;}}function buildProgram(_0x1421ac){const _0x311722=_0x1421ac['createProgram'](),_0xc2d1b4=_0x1421ac['createShader'](_0x1421ac['VERTEX_SHADER']),_0x5b6be7=_0x1421ac['createShader'](_0x1421ac['FRAGMENT_SHADER']);if(_0xc2d1b4===null||_0x5b6be7===null)return null;_0x1421ac['shaderSource'](_0xc2d1b4,VERT_SHADER),_0x1421ac['compileShader'](_0xc2d1b4),_0x1421ac['attachShader'](_0x311722,_0xc2d1b4),_0x1421ac['shaderSource'](_0x5b6be7,FRAG_SHADER),_0x1421ac['compileShader'](_0x5b6be7),_0x1421ac['attachShader'](_0x311722,_0x5b6be7),_0x1421ac['linkProgram'](_0x311722);if(_0x1421ac['getProgramParameter'](_0x311722,_0x1421ac['LINK_STATUS'])!==!![])return null;return _0x311722;}function buildSphere(){const _0x25d3ab=[],_0x49ac26=[],_0x5cecb7=[];for(let _0x293b5f=0x0;_0x293b5f<=LAT_BANDS;_0x293b5f++){const _0x4776e8=_0x293b5f*Math['PI']/LAT_BANDS,_0x281481=Math['sin'](_0x4776e8),_0x2177b9=Math['cos'](_0x4776e8);for(let _0x4b2273=0x0;_0x4b2273<=LON_BANDS;_0x4b2273++){const _0x80f9d1=_0x4b2273*0x2*Math['PI']/LON_BANDS,_0x52e616=_0x281481*Math['cos'](_0x80f9d1),_0x134a30=_0x2177b9,_0x543f9f=_0x281481*Math['sin'](_0x80f9d1);_0x49ac26['push'](_0x52e616,_0x134a30,_0x543f9f),_0x25d3ab['push'](_0x52e616*RADIUS,_0x134a30*RADIUS,_0x543f9f*RADIUS);}}for(let _0x2d50e9=0x0;_0x2d50e9<LAT_BANDS;_0x2d50e9++){for(let _0x1a52b4=0x0;_0x1a52b4<LON_BANDS;_0x1a52b4++){const _0x4a0467=_0x2d50e9*(LON_BANDS+0x1)+_0x1a52b4,_0x42e54b=_0x4a0467+LON_BANDS+0x1;_0x5cecb7['push'](_0x4a0467,_0x42e54b,_0x4a0467+0x1),_0x5cecb7['push'](_0x42e54b,_0x42e54b+0x1,_0x4a0467+0x1);}}return{'vertices':new Float32Array(_0x25d3ab),'normals':new Float32Array(_0x49ac26),'indices':new Uint16Array(_0x5cecb7)};}function renderSphere(_0x225504,_0x170031,_0x3cfea8){_0x225504['useProgram'](_0x170031),_0x225504['viewport'](0x0,0x0,SIZE,SIZE),_0x225504['clearColor'](0x0,0x0,0x0,0x1),_0x225504['enable'](_0x225504['DEPTH_TEST']),_0x225504['clear'](_0x225504['COLOR_BUFFER_BIT']|_0x225504['DEPTH_BUFFER_BIT']);const _0x4dd0f0=_0x225504['createBuffer']();_0x225504['bindBuffer'](_0x225504['ARRAY_BUFFER'],_0x4dd0f0),_0x225504['bufferData'](_0x225504['ARRAY_BUFFER'],_0x3cfea8['vertices'],_0x225504['STATIC_DRAW']);const _0x46a4df=_0x225504['getAttribLocation'](_0x170031,'aPosition');_0x225504['enableVertexAttribArray'](_0x46a4df),_0x225504['vertexAttribPointer'](_0x46a4df,0x3,_0x225504['FLOAT'],![],0x0,0x0);const _0x45706a=_0x225504['createBuffer']();_0x225504['bindBuffer'](_0x225504['ARRAY_BUFFER'],_0x45706a),_0x225504['bufferData'](_0x225504['ARRAY_BUFFER'],_0x3cfea8['normals'],_0x225504['STATIC_DRAW']);const _0x3a82f8=_0x225504['getAttribLocation'](_0x170031,'aNormal');_0x225504['enableVertexAttribArray'](_0x3a82f8),_0x225504['vertexAttribPointer'](_0x3a82f8,0x3,_0x225504['FLOAT'],![],0x0,0x0);const _0x40ad35=_0x225504['createBuffer']();_0x225504['bindBuffer'](_0x225504['ELEMENT_ARRAY_BUFFER'],_0x40ad35),_0x225504['bufferData'](_0x225504['ELEMENT_ARRAY_BUFFER'],_0x3cfea8['indices'],_0x225504['STATIC_DRAW']);const _0x34bcef=Math['PI']/0x6,_0x37f3ca=0x1,_0x5d4472=0.1,_0x4c9360=0x64,_0x4af09b=0x1/Math['tan'](_0x34bcef/0x2),_0x20445f=new Float32Array([_0x4af09b/_0x37f3ca,0x0,0x0,0x0,0x0,_0x4af09b,0x0,0x0,0x0,0x0,(_0x4c9360+_0x5d4472)/(_0x5d4472-_0x4c9360),-0x1,0x0,0x0,0x2*_0x4c9360*_0x5d4472/(_0x5d4472-_0x4c9360),0x0]),_0x2e3905=new Float32Array([0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,-0xa,0x1]),_0x1db788=multiplyMat4(_0x20445f,_0x2e3905);_0x225504['uniformMatrix4fv'](_0x225504['getUniformLocation'](_0x170031,'uMVMatrix'),![],_0x2e3905),_0x225504['uniformMatrix4fv'](_0x225504['getUniformLocation'](_0x170031,'uMVPMatrix'),![],_0x1db788),_0x225504['uniform4f'](_0x225504['getUniformLocation'](_0x170031,'uLightPos'),0xa,0xa,0xa,0x1),_0x225504['uniform3f'](_0x225504['getUniformLocation'](_0x170031,'uKd'),0.9,0.5,0.3),_0x225504['uniform3f'](_0x225504['getUniformLocation'](_0x170031,'uLd'),0x1,0x1,0x1),_0x225504['drawElements'](_0x225504['TRIANGLES'],_0x3cfea8['indices']['length'],_0x225504['UNSIGNED_SHORT'],0x0);}function multiplyMat4(_0x7ef6ba,_0x18e1f3){const _0x1aa7f4=new Float32Array(0x10);for(let _0x4ae68f=0x0;_0x4ae68f<0x4;_0x4ae68f++){for(let _0x20215e=0x0;_0x20215e<0x4;_0x20215e++){_0x1aa7f4[_0x20215e*0x4+_0x4ae68f]=0x0;for(let _0x2e78fa=0x0;_0x2e78fa<0x4;_0x2e78fa++){_0x1aa7f4[_0x20215e*0x4+_0x4ae68f]+=_0x7ef6ba[_0x2e78fa*0x4+_0x4ae68f]*_0x18e1f3[_0x20215e*0x4+_0x2e78fa];}}}return _0x1aa7f4;}function fnv1a(_0x346f5e){let _0x53a7db=0x811c9dc5;for(let _0x2a1aad=0x0;_0x2a1aad<_0x346f5e['length'];_0x2a1aad++){_0x53a7db^=_0x346f5e['charCodeAt'](_0x2a1aad),_0x53a7db+=(_0x53a7db<<0x1)+(_0x53a7db<<0x4)+(_0x53a7db<<0x7)+(_0x53a7db<<0x8)+(_0x53a7db<<0x18);}return _0x53a7db>>>0x0;}const DISCRIMINATING_LIMITS=['maxTextureDimension1D','maxTextureDimension2D','maxTextureDimension3D','maxTextureArrayLayers','maxBindGroups','maxBindGroupsPlusVertexBuffers','maxBindingsPerBindGroup','maxDynamicUniformBuffersPerPipelineLayout','maxDynamicStorageBuffersPerPipelineLayout','maxSampledTexturesPerShaderStage','maxSamplersPerShaderStage','maxStorageBuffersPerShaderStage','maxStorageTexturesPerShaderStage','maxUniformBuffersPerShaderStage','maxUniformBufferBindingSize','maxStorageBufferBindingSize','maxVertexBuffers','maxBufferSize','maxVertexAttributes','maxVertexBufferArrayStride','maxInterStageShaderVariables','maxColorAttachments','maxColorAttachmentBytesPerSample','maxComputeWorkgroupStorageSize','maxComputeInvocationsPerWorkgroup','maxComputeWorkgroupSizeX','maxComputeWorkgroupSizeY','maxComputeWorkgroupSizeZ','maxComputeWorkgroupsPerDimension'];async function getWebGpuSignal(){try{const _0x57a859=navigator['gpu'];if(!_0x57a859)return null;const _0xc97f03=await _0x57a859['requestAdapter']();if(!_0xc97f03)return null;const _0x22ac36=_0xc97f03['info'],_0x3ec554=_0x22ac36?.['vendor']??'',_0x1d54c6=_0x22ac36?.['architecture']??'',_0x540a26=_0x22ac36?.['device']??'',_0x213412=_0x22ac36?.['description']??'',_0x3ca090=[];_0xc97f03['features']['forEach'](_0x2fe12c=>_0x3ca090['push'](_0x2fe12c)),_0x3ca090['sort']();const _0x159603={};for(const _0x349b56 of DISCRIMINATING_LIMITS){_0x349b56 in _0xc97f03['limits']&&(_0x159603[_0x349b56]=_0xc97f03['limits'][_0x349b56]);}const _0xd8ad54={};return _0xd8ad54['vendor']=_0x3ec554,_0xd8ad54['architecture']=_0x1d54c6,_0xd8ad54['device']=_0x540a26,_0xd8ad54['description']=_0x213412,_0xd8ad54['features']=_0x3ca090,_0xd8ad54['limits']=_0x159603,_0xd8ad54;}catch{return null;}}const SHADER='\x0astruct\x20Counter\x20{\x20n:\x20atomic<u32>\x20}\x0a@group(0)\x20@binding(0)\x20var<storage,\x20read_write>\x20g:\x20Counter;\x0a\x0astruct\x20OutBuf\x20{\x20vals:\x20array<atomic<u32>>\x20}\x0a@group(0)\x20@binding(1)\x20var<storage,\x20read_write>\x20out:\x20OutBuf;\x0a\x0astruct\x20Params\x20{\x20limit:\x20u32,\x20_p1:\x20u32,\x20_p2:\x20u32,\x20_p3:\x20u32\x20}\x0a@group(0)\x20@binding(2)\x20var<uniform>\x20params:\x20Params;\x0a\x0aoverride\x20WG_SIZE:\x20u32\x20=\x2064u;\x0a\x0a@compute\x20@workgroup_size(WG_SIZE)\x0afn\x20main(@builtin(workgroup_id)\x20wid:\x20vec3<u32>,\x20@builtin(local_invocation_id)\x20lid:\x20vec3<u32>)\x20{\x0a\x20\x20if\x20(lid.x\x20==\x200u)\x20{\x20atomicStore(&out.vals[wid.x],\x200u);\x20}\x0a\x20\x20workgroupBarrier();\x0a\x20\x20var\x20local:\x20u32\x20=\x200u;\x0a\x20\x20loop\x20{\x0a\x20\x20\x20\x20let\x20prev\x20=\x20atomicAdd(&g.n,\x201u);\x0a\x20\x20\x20\x20if\x20(prev\x20>=\x20params.limit)\x20{\x20break;\x20}\x0a\x20\x20\x20\x20local\x20=\x20local\x20+\x201u;\x0a\x20\x20}\x0a\x20\x20atomicAdd(&out.vals[wid.x],\x20local);\x0a}\x0a',_0x8bdd37={};_0x8bdd37['wgCount']=0x80,_0x8bdd37['wgSize']=0x40;const _0x4e1e03={};_0x4e1e03['wgCount']=0x100,_0x4e1e03['wgSize']=0x40;const _0x4df2f1={};_0x4df2f1['wgCount']=0x80,_0x4df2f1['wgSize']=0x80;const CONFIGS=[_0x8bdd37,_0x4e1e03,_0x4df2f1],LIMIT=0x3d0900,TRIALS=0x3,BINS=0x40;async function getWebGpuContention(){try{if(typeof navigator==='undefined')return null;const _0x7320b=navigator['gpu'];if(!_0x7320b)return null;const _0x3994c6=await _0x7320b['requestAdapter']();if(!_0x3994c6)return null;const _0x927f3d=await _0x3994c6['requestDevice'](),_0x53e90d=_0x927f3d['queue'],_0x145e62={};_0x145e62['code']=SHADER;const _0x436e51=_0x927f3d['createShaderModule'](_0x145e62),_0x4b6379=await collectDistribution(_0x927f3d,_0x53e90d,_0x436e51),_0x8c5206=await collectDistribution(_0x927f3d,_0x53e90d,_0x436e51);_0x927f3d['destroy']();const _0x47ca61=cosine(_0x4b6379,_0x8c5206);if(_0x47ca61<0.8)return null;const _0x27cbba=_0x4b6379['map']((_0x57cb9f,_0x204633)=>(_0x57cb9f+_0x8c5206[_0x204633])/0x2);return _0x27cbba['map'](_0xd0864b=>Math['round'](_0xd0864b*0x2710)/0x2710);}catch{return null;}}async function collectDistribution(_0x5ec21f,_0x55e46e,_0x3ae49d){const _0xab9055=[];for(const _0x5913f4 of CONFIGS){const _0x28602a=[];for(let _0x5f2b7a=0x0;_0x5f2b7a<TRIALS;_0x5f2b7a++){const _0xeeddfc=await runTrial(_0x5ec21f,_0x55e46e,_0x3ae49d,_0x5913f4['wgCount'],_0x5913f4['wgSize'],LIMIT);_0x28602a['push'](_0xeeddfc);}const _0x1fbbc4=medianOfTrials(_0x28602a),_0x4f60e2=normalize(_0x1fbbc4),_0x35ae8e=downsample(_0x4f60e2,BINS);_0xab9055['push'](..._0x35ae8e);}return _0xab9055;}function cosine(_0xc96f9a,_0x2a6952){let _0x32547e=0x0,_0x4267ca=0x0,_0x174345=0x0;for(let _0x2ce012=0x0;_0x2ce012<_0xc96f9a['length'];_0x2ce012++){_0x32547e+=_0xc96f9a[_0x2ce012]*_0x2a6952[_0x2ce012],_0x4267ca+=_0xc96f9a[_0x2ce012]*_0xc96f9a[_0x2ce012],_0x174345+=_0x2a6952[_0x2ce012]*_0x2a6952[_0x2ce012];}const _0x384252=Math['sqrt'](_0x4267ca)*Math['sqrt'](_0x174345);return _0x384252===0x0?0x0:_0x32547e/_0x384252;}async function runTrial(_0x14c156,_0x186a7c,_0x3d6a17,_0xb91002,_0x5d99e3,_0x1d90a0){const _0x40fa79={};_0x40fa79['WG_SIZE']=_0x5d99e3;const _0x3bc037={};_0x3bc037['module']=_0x3d6a17,_0x3bc037['entryPoint']='main',_0x3bc037['constants']=_0x40fa79;const _0x5127a0={};_0x5127a0['layout']='auto',_0x5127a0['compute']=_0x3bc037;const _0x5e0763=_0x14c156['createComputePipeline'](_0x5127a0),_0x1e1b67=_0xb91002*0x4,_0xecc576={};_0xecc576['size']=0x4,_0xecc576['usage']=GPUBufferUsage['STORAGE']|GPUBufferUsage['COPY_DST'];const _0xb86253=_0x14c156['createBuffer'](_0xecc576),_0x1a7681={};_0x1a7681['size']=_0x1e1b67,_0x1a7681['usage']=GPUBufferUsage['STORAGE']|GPUBufferUsage['COPY_SRC']|GPUBufferUsage['COPY_DST'];const _0x4ee800=_0x14c156['createBuffer'](_0x1a7681),_0x32f61e={};_0x32f61e['size']=0x10,_0x32f61e['usage']=GPUBufferUsage['UNIFORM']|GPUBufferUsage['COPY_DST'];const _0x3afaaf=_0x14c156['createBuffer'](_0x32f61e);_0x186a7c['writeBuffer'](_0xb86253,0x0,new Uint32Array([0x0])),_0x186a7c['writeBuffer'](_0x4ee800,0x0,new Uint8Array(_0x1e1b67)),_0x186a7c['writeBuffer'](_0x3afaaf,0x0,new Uint32Array([_0x1d90a0,0x0,0x0,0x0]));const _0x565f5e={};_0x565f5e['buffer']=_0xb86253;const _0x5b78f9={};_0x5b78f9['binding']=0x0,_0x5b78f9['resource']=_0x565f5e;const _0x3b51f3={};_0x3b51f3['buffer']=_0x4ee800;const _0x147e45={};_0x147e45['binding']=0x1,_0x147e45['resource']=_0x3b51f3;const _0x5cfbb9={};_0x5cfbb9['buffer']=_0x3afaaf;const _0x38fa7b={};_0x38fa7b['binding']=0x2,_0x38fa7b['resource']=_0x5cfbb9;const _0x3ffb31=_0x14c156['createBindGroup']({'layout':_0x5e0763['getBindGroupLayout'](0x0),'entries':[_0x5b78f9,_0x147e45,_0x38fa7b]}),_0x4c6d81=_0x14c156['createCommandEncoder'](),_0x3d2f4e=_0x4c6d81['beginComputePass']();_0x3d2f4e['setPipeline'](_0x5e0763),_0x3d2f4e['setBindGroup'](0x0,_0x3ffb31),_0x3d2f4e['dispatchWorkgroups'](_0xb91002,0x1,0x1),_0x3d2f4e['end']();const _0x5549ce={};_0x5549ce['size']=_0x1e1b67,_0x5549ce['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'];const _0x40321b=_0x14c156['createBuffer'](_0x5549ce);_0x4c6d81['copyBufferToBuffer'](_0x4ee800,0x0,_0x40321b,0x0,_0x1e1b67),_0x186a7c['submit']([_0x4c6d81['finish']()]),await _0x186a7c['onSubmittedWorkDone'](),await _0x40321b['mapAsync'](GPUMapMode['READ']);const _0x118bb4=new Uint32Array(_0x40321b['getMappedRange']()['slice'](0x0));return _0x40321b['unmap'](),_0xb86253['destroy'](),_0x4ee800['destroy'](),_0x3afaaf['destroy'](),_0x40321b['destroy'](),Array['from'](_0x118bb4);}function medianOfTrials(_0x4207af){const _0x1d3e66=_0x4207af[0x0]['length'],_0x2a3c9e=new Array(_0x1d3e66);for(let _0x3d8208=0x0;_0x3d8208<_0x1d3e66;_0x3d8208++){const _0x4407f4=_0x4207af['map'](_0x41c904=>_0x41c904[_0x3d8208])['sort']((_0x257d73,_0x440fd4)=>_0x257d73-_0x440fd4),_0x1d3d2e=Math['floor'](_0x4407f4['length']/0x2);_0x2a3c9e[_0x3d8208]=_0x4407f4['length']%0x2?_0x4407f4[_0x1d3d2e]:(_0x4407f4[_0x1d3d2e-0x1]+_0x4407f4[_0x1d3d2e])/0x2;}return _0x2a3c9e;}function normalize(_0x1b01b4){const _0x4ddde0=_0x1b01b4['reduce']((_0x4eea16,_0xd84a65)=>_0x4eea16+_0xd84a65,0x0)||0x1;return _0x1b01b4['map'](_0x36d152=>_0x36d152/_0x4ddde0);}function downsample(_0x3a2a5c,_0x5a6bb0){const _0x5391da=_0x3a2a5c['length'],_0x54ac3e=new Array(_0x5a6bb0)['fill'](0x0);for(let _0x2dca38=0x0;_0x2dca38<_0x5391da;_0x2dca38++){_0x54ac3e[Math['floor'](_0x2dca38*_0x5a6bb0/_0x5391da)]+=_0x3a2a5c[_0x2dca38];}const _0x13a4c9=_0x54ac3e['reduce']((_0x43e62b,_0xa8495a)=>_0x43e62b+_0xa8495a,0x0)||0x1;return _0x54ac3e['map'](_0x2d5b80=>_0x2d5b80/_0x13a4c9);}async function getWebRtcDevices(){const _0x5d2c87=navigator['mediaDevices'];if(typeof navigator==='undefined'||_0x5d2c87===undefined||typeof _0x5d2c87['enumerateDevices']!=='function')return undefined;try{const _0xd62b9=await _0x5d2c87['enumerateDevices']();let _0x1b6a5a=0x0,_0x392096=0x0,_0x1d8bd9=0x0;const _0x10fb7b=[];for(const _0x1f2841 of _0xd62b9){_0x10fb7b['push'](_0x1f2841['kind']);if(_0x1f2841['kind']==='audioinput')_0x1b6a5a++;else{if(_0x1f2841['kind']==='audiooutput')_0x392096++;else _0x1d8bd9++;}}const _0x56d97d=_0x10fb7b['join'](',');let _0x3e5fbc=0x0;for(let _0x405aa6=0x0;_0x405aa6<_0x56d97d['length'];_0x405aa6++){_0x3e5fbc=(_0x3e5fbc<<0x5)-_0x3e5fbc+_0x56d97d['charCodeAt'](_0x405aa6)|0x0;}return{'audioInputCount':_0x1b6a5a,'audioOutputCount':_0x392096,'videoInputCount':_0x1d8bd9,'totalCount':_0xd62b9['length'],'kindsHash':(_0x3e5fbc>>>0x0)['toString'](0x10)};}catch{return undefined;}}function getAppVersion(){const _0x601d9c=navigator['appVersion'];if(typeof _0x601d9c!=='string')throw new Error('navigator.appVersion\x20is\x20undefined');return _0x601d9c;}const willPrintConsoleError=isAnyParentCrossOrigin;function getApplePayState(){const {ApplePaySession:_0x5623cd}=window;if(typeof _0x5623cd?.['canMakePayments']!=='function')return-0x1;if(willPrintConsoleError())return-0x3;try{return _0x5623cd['canMakePayments']()?0x1:0x0;}catch(_0x1cb40d){return getStateFromError(_0x1cb40d);}}function getStateFromError(_0x4fca5a){if(_0x4fca5a instanceof Error&&_0x4fca5a['name']==='InvalidAccessError'&&/\bfrom\b.*\binsecure\b/i['test'](_0x4fca5a['message']))return-0x2;throw _0x4fca5a;}let table=null;function getTable(){if(table)return table;table=new Uint32Array(0x100);for(let _0x3760e3=0x0;_0x3760e3<0x100;_0x3760e3++){let _0x103515=_0x3760e3;for(let _0x43b1ea=0x0;_0x43b1ea<0x8;_0x43b1ea++)_0x103515=_0x103515&0x1?0xedb88320^_0x103515>>>0x1:_0x103515>>>0x1;table[_0x3760e3]=_0x103515;}return table;}function crc32(_0x3c0746){const _0x168340=getTable();let _0x10e558=0xffffffff;for(let _0x38a57a=0x0;_0x38a57a<_0x3c0746['length'];_0x38a57a++){_0x10e558=_0x168340[(_0x10e558^_0x3c0746['charCodeAt'](_0x38a57a))&0xff]^_0x10e558>>>0x8;}return(_0x10e558^0xffffffff)>>>0x0;}function summarizePrototype(_0x2623ad){const _0x4550fe={};_0x4550fe['count']=0x0,_0x4550fe['hash']=0x0;if(!_0x2623ad)return _0x4550fe;try{const _0x462f4c=Object['getOwnPropertyNames'](_0x2623ad)['sort'](),_0x1d36c0=_0x462f4c['join'](',');return{'count':_0x462f4c['length'],'hash':crc32(_0x1d36c0)};}catch{const _0x2121a3={};return _0x2121a3['count']=0x0,_0x2121a3['hash']=0x0,_0x2121a3;}}function isNativeFunction(_0xdcd473){try{return typeof _0xdcd473==='function'&&/\[native code\]/['test'](Function['prototype']['toString']['call'](_0xdcd473));}catch{return![];}}function getBomEnumeration(){try{const _0x328a9b=summarizePrototype(Navigator['prototype']),_0x16ece5=summarizePrototype(Screen['prototype']),_0x39a880=summarizePrototype(HTMLElement['prototype']),_0x1b59f1=summarizePrototype(Document['prototype']),_0x2ff8d2={};_0x2ff8d2['count']=0x0,_0x2ff8d2['hash']=0x0;let _0xccb3d9=_0x2ff8d2;typeof Performance!=='undefined'&&(_0xccb3d9=summarizePrototype(Performance['prototype']));const _0x46917e=_0x328a9b['count']+_0x16ece5['count']+_0x39a880['count']+_0x1b59f1['count']+_0xccb3d9['count'],_0x15f5f8=window,_0x4eb8f5='chrome'in window&&typeof _0x15f5f8['chrome']==='object',_0x471f04=typeof navigator['brave']==='object',_0x3c56e1='__playwright'in _0x15f5f8||'__selenium_unwrapped'in _0x15f5f8||'__webdriver_evaluate'in _0x15f5f8||'__nightmare'in _0x15f5f8||'_phantom'in _0x15f5f8||'__lastWatirAlert'in _0x15f5f8;let _0x574211=!![];try{const _0x438d02=navigator['plugins'];_0x574211=_0x438d02['length']===PluginArray['prototype']['length']||Object['getOwnPropertyNames'](PluginArray['prototype'])['includes']('length');}catch{_0x574211=![];}let _0x38b392=!![];try{const _0x31cfcb=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');_0x31cfcb?.['get']&&(_0x38b392=isNativeFunction(_0x31cfcb['get']));}catch{_0x38b392=![];}const _0x5ce9bd=typeof SharedWorker!=='undefined',_0x30b732=typeof Notification!=='undefined',_0x2035d0={};_0x2035d0['hasChrome']=_0x4eb8f5,_0x2035d0['hasBraveShield']=_0x471f04,_0x2035d0['hasAutomation']=_0x3c56e1,_0x2035d0['pluginConsistent']=_0x574211,_0x2035d0['webdriverNative']=_0x38b392,_0x2035d0['hasSharedWorker']=_0x5ce9bd,_0x2035d0['hasNotification']=_0x30b732;const _0x3799c9={};return _0x3799c9['nav']=_0x328a9b,_0x3799c9['scr']=_0x16ece5,_0x3799c9['html']=_0x39a880,_0x3799c9['doc']=_0x1b59f1,_0x3799c9['perf']=_0xccb3d9,_0x3799c9['total']=_0x46917e,_0x3799c9['markers']=_0x2035d0,_0x3799c9;}catch{return null;}}function getColorDepth(){return window['screen']['colorDepth'];}function getColorScheme(){if(matchMedia('(prefers-color-scheme:\x20dark)')['matches'])return!![];if(matchMedia('(prefers-color-scheme:\x20light)')['matches'])return![];return null;}function getConnectionInfo(){try{const _0x53a359=navigator['connection'];if(!_0x53a359)return null;const _0x3da1a4=Object['getOwnPropertyDescriptor'](_0x53a359,Symbol['toStringTag']);if(_0x3da1a4?.['configurable']===!![])return!![];for(let _0x2b7eae=0x0;_0x2b7eae<_0x53a359['length'];_0x2b7eae++){const _0x4e5a59=Object['getOwnPropertyDescriptor'](_0x53a359,_0x2b7eae);if(_0x4e5a59!==undefined&&(_0x4e5a59['configurable']===!![]||_0x4e5a59['enumerable']===!![]))return!![];}return![];}catch{return null;}}function getContrastPreference(){if(doesMatch$4('no-preference'))return 0x0;if(doesMatch$4('high')||doesMatch$4('more'))return 0x1;if(doesMatch$4('low')||doesMatch$4('less'))return-0x1;if(doesMatch$4('forced'))return 0xa;return undefined;}function doesMatch$4(_0x2ca197){return matchMedia('(prefers-contrast:\x20'+_0x2ca197+')')['matches'];}function areCookiesEnabled(){const _0x5d632e=document;try{_0x5d632e['cookie']='cookietest=1;\x20SameSite=Strict;';const _0x39e298=_0x5d632e['cookie']['indexOf']('cookietest=')!==-0x1;return _0x5d632e['cookie']='cookietest=1;\x20SameSite=Strict;\x20expires=Thu,\x2001-Jan-1970\x2000:00:01\x20GMT',_0x39e298;}catch{return![];}}function getDateTimeLocale(){const _0x5762e3=window['Intl'];if(_0x5762e3===undefined)return-0x1;const _0x22892a=_0x5762e3['DateTimeFormat'];if(_0x22892a===undefined)return-0x2;const _0x4568ec=_0x22892a()['resolvedOptions']()['locale'];if(!_0x4568ec&&_0x4568ec!=='')return-0x3;return _0x4568ec;}function getDeviceMemory(){return replaceNaN(toFloat(navigator['deviceMemory']),undefined);}function getDevicePixelRatio(){const _0x459927=window['devicePixelRatio'];return _0x459927??null;}function getDoNotTrack(){const _0x667bdc=navigator['doNotTrack'];return _0x667bdc??null;}function getDocumentAttributes(){try{return document['documentElement']['getAttributeNames']();}catch{return[];}}function getDocumentFocus(){try{return document['hasFocus']();}catch{return![];}}async function getFileSystemAccess(){try{const _0x50e631=navigator['storage'];if(_0x50e631===undefined||typeof _0x50e631['getDirectory']!=='function')return undefined;return await _0x50e631['getDirectory'](),!![];}catch{return![];}}async function getFilesystemApi(){if(isChromium()&&isChromium86OrNewer())return null;const _0x8b8387=window;if(typeof _0x8b8387['webkitRequestFileSystem']!=='function')return null;try{return await Promise['race']([new Promise(_0x4391b1=>{const _0x17b3ad=_0x8b8387['webkitRequestFileSystem'];_0x17b3ad!==undefined&&_0x17b3ad(0x0,0x1,()=>_0x4391b1(!![]),()=>_0x4391b1(![]));}),new Promise(_0x658836=>setTimeout(()=>_0x658836(null),0x64))]);}catch{return null;}}function areColorsForced(){if(doesMatch$3('active'))return!![];if(doesMatch$3('none'))return![];return undefined;}function doesMatch$3(_0x33de27){return matchMedia('(forced-colors:\x20'+_0x33de27+')')['matches'];}async function getFormControlFont(){if(!isGecko())return undefined;return getIframePool()['execute']((_0xcfafc9,_0x132871)=>{const _0x177307=_0x132871['document'],_0x28dc3e=_0x177307['createElement']('input');_0x28dc3e['type']='radio',_0x177307['body']['appendChild'](_0x28dc3e);const _0x250c04=_0x132871['getComputedStyle'](_0x28dc3e)['getPropertyValue']('font-family');return _0x177307['body']['removeChild'](_0x28dc3e),_0x250c04||undefined;});}function getHardwareConcurrency(){const _0xd8762c=getUnstableHardwareConcurrency();if(_0xd8762c!==undefined&&isGecko()&&isGecko143OrNewer())return _0xd8762c>=0x8?0x8:0x4;return _0xd8762c;}function getUnstableHardwareConcurrency(){return replaceNaN(toInt(navigator['hardwareConcurrency']),undefined);}function isHDR(){if(doesMatch$2('high'))return!![];if(doesMatch$2('standard'))return![];return undefined;}function doesMatch$2(_0x2f9fb2){return matchMedia('(dynamic-range:\x20'+_0x2f9fb2+')')['matches'];}function getIndexedDB(){try{return window['indexedDB']!==undefined;}catch{return!![];}}async function getIndexedDbBlob(){if(typeof indexedDB==='undefined')return null;try{const _0x2d7a67=await Promise['race']([new Promise(_0x36927f=>{try{const _0x54169e='mw_blob_test',_0x1997f8='store',_0x48fb74=indexedDB['deleteDatabase'](_0x54169e);_0x48fb74['onsuccess']=_0x23f0f6,_0x48fb74['onerror']=_0x23f0f6;function _0x23f0f6(){try{const _0x58a558=indexedDB['open'](_0x54169e,0x1);_0x58a558['onupgradeneeded']=()=>{try{_0x58a558['result']['createObjectStore'](_0x1997f8);}catch{_0x36927f(null);}},_0x58a558['onsuccess']=()=>{try{const _0x50479b=_0x58a558['result'],_0x5ae6ce=_0x50479b['transaction'](_0x1997f8,'readwrite'),_0x5a9a35=_0x5ae6ce['objectStore'](_0x1997f8);try{const _0x15f43b=_0x5a9a35['put'](new Blob(['test']),'blob_key');_0x15f43b['onsuccess']=()=>{_0x50479b['close']();try{indexedDB['deleteDatabase'](_0x54169e);}catch{}_0x36927f(![]);},_0x15f43b['onerror']=()=>{_0x50479b['close']();try{indexedDB['deleteDatabase'](_0x54169e);}catch{}const _0x45d208=_0x15f43b['error']?.['message']??'';_0x36927f(_0x45d208['includes']('not\x20yet\x20supported')||_0x45d208['includes']('not\x20supported'));};}catch(_0x4da637){_0x50479b['close']();try{indexedDB['deleteDatabase'](_0x54169e);}catch{}if(_0x4da637 instanceof DOMException){const _0x3efcb6=_0x4da637['message'];_0x36927f(_0x3efcb6['includes']('not\x20yet\x20supported')||_0x3efcb6['includes']('not\x20supported'));}else _0x36927f(null);}}catch{_0x36927f(null);}},_0x58a558['onerror']=()=>{_0x36927f(null);};}catch{_0x36927f(null);}}}catch{_0x36927f(null);}}),new Promise(_0x417254=>setTimeout(()=>_0x417254(null),0x3e8))]);return _0x2d7a67;}catch{return null;}}function areColorsInverted(){if(doesMatch$1('inverted'))return!![];if(doesMatch$1('none'))return![];return undefined;}function doesMatch$1(_0x1adb2f){return matchMedia('(inverted-colors:\x20'+_0x1adb2f+')')['matches'];}function getLanguages(){const _0x29635a=navigator,_0x12763e=[],_0x3188a0=_0x29635a['language']??_0x29635a['userLanguage']??_0x29635a['browserLanguage']??_0x29635a['systemLanguage'];_0x3188a0!==undefined&&_0x12763e['push']([_0x3188a0]);if(Array['isArray'](_0x29635a['languages']))!(isChromium()&&isChromium86OrNewer())&&_0x12763e['push'](_0x29635a['languages']);else{if(typeof _0x29635a['languages']==='string'){const _0x4fcbea=_0x29635a['languages'];_0x4fcbea!==''&&_0x12763e['push'](_0x4fcbea['split'](','));}}return _0x12763e;}function getLocalStorage(){try{return window['localStorage']!==undefined;}catch{return!![];}}function getLocaleCurrency(){try{const _0xac7f05=navigator['language'];if(!_0xac7f05)return null;const _0xfc1fb3={};_0xfc1fb3['style']='currency',_0xfc1fb3['currency']='USD';const _0x13c76f=0x1['toLocaleString'](_0xac7f05,_0xfc1fb3),_0x258fbc={};_0x258fbc['style']='currency',_0x258fbc['currency']='USD';const _0x437d56=0x1['toLocaleString'](undefined,_0x258fbc),_0x2e5e26={};return _0x2e5e26['match']=_0x13c76f===_0x437d56,_0x2e5e26['explicit']=_0x13c76f,_0x2e5e26['implicit']=_0x437d56,_0x2e5e26;}catch{return null;}}const _0x4a4d09={};_0x4a4d09['any-hover']=['hover','none'],_0x4a4d09['any-pointer']=['none','coarse','fine'],_0x4a4d09['pointer']=['none','coarse','fine'],_0x4a4d09['hover']=['hover','none'],_0x4a4d09['update']=['fast','slow'],_0x4a4d09['scripting']=['none','initial-only','enabled'];const queries=_0x4a4d09;function getMediaQueries(){if(typeof matchMedia==='undefined')return{};const _0x14ab97={};for(const [_0x4a33a4,_0x553808]of Object['entries'](queries)){for(const _0x4207d2 of _0x553808){if(matchMedia('('+_0x4a33a4+':\x20'+_0x4207d2+')')['matches']){_0x14ab97[_0x4a33a4]=_0x4207d2;break;}}}return _0x14ab97;}function getMimeTypes(){try{const _0xc2e13f=navigator['mimeTypes'];if(_0xc2e13f===undefined)return undefined;let _0x141bba=Object['getPrototypeOf'](_0xc2e13f)===MimeTypeArray['prototype'];for(let _0x517d19=0x0;_0x517d19<_0xc2e13f['length'];_0x517d19++){_0x141bba&&(_0x141bba=Object['getPrototypeOf'](_0xc2e13f[_0x517d19])===MimeType['prototype']);}return _0x141bba;}catch{return undefined;}}function getNavigatorLanguages(){const _0x46a406=navigator['languages'];return _0x46a406??null;}function getNetworkRTT(){const _0x277f1e=navigator;return _0x277f1e['connection']?.['rtt']??undefined;}function getOsCpu(){return navigator['oscpu'];}function isPdfViewerEnabled(){return navigator['pdfViewerEnabled'];}function getPerformanceMemory(){if(typeof performance==='undefined')return undefined;const _0x119fe1=performance['memory'];if(_0x119fe1===undefined||typeof _0x119fe1['jsHeapSizeLimit']!=='number')return undefined;return _0x119fe1['jsHeapSizeLimit'];}function getPerformanceResolution(){const _0xfcc31c=window['performance'];if(typeof _0xfcc31c['now']!=='function')return null;let _0x558247=0x1,_0x42cf43=0x1,_0x2affd3=_0xfcc31c['now'](),_0x4815dc=_0x2affd3;for(let _0x430e32=0x0;_0x430e32<0xc350;_0x430e32++){_0x2affd3=_0x4815dc,_0x4815dc=_0xfcc31c['now']();if(_0x2affd3<_0x4815dc){const _0x46cb3a=_0x4815dc-_0x2affd3;if(_0x46cb3a>_0x558247){if(_0x46cb3a<_0x42cf43)_0x42cf43=_0x46cb3a;}else _0x46cb3a<_0x558247&&(_0x42cf43=_0x558247,_0x558247=_0x46cb3a);}}return[_0x558247,_0x42cf43];}const permissionNames=['accelerometer','ambient-light-sensor','background-fetch','background-sync','bluetooth','camera','clipboard-read','clipboard-write','display-capture','geolocation','gyroscope','local-fonts','magnetometer','microphone','midi','nfc','notifications','payment-handler','persistent-storage','push','screen-wake-lock','speaker-selection','storage-access','window-management'];async function getPermissions(){if(!('permissions'in navigator)||typeof navigator['permissions']['query']!=='function')return{};const _0x1587d4=0x3,_0x5b2209=[];for(let _0x312d4a=0x0;_0x312d4a<_0x1587d4;_0x312d4a++){const _0x542e7a={},_0x1585b7=permissionNames['map'](async _0x310f73=>{try{const _0x332c32={};_0x332c32['name']=_0x310f73;const _0x2a40fc=await navigator['permissions']['query'](_0x332c32);_0x542e7a[_0x310f73]=_0x2a40fc['state'];}catch{}});await Promise['all'](_0x1585b7),_0x5b2209['push'](_0x542e7a);}const _0x2cf9b7={},_0x5029f5=new Set(_0x5b2209['flatMap'](_0x291e17=>Object['keys'](_0x291e17)));for(const _0x541f0c of _0x5029f5){const _0x42f845={};for(const _0xcfb9c9 of _0x5b2209){const _0x44d680=_0xcfb9c9[_0x541f0c];_0x44d680&&(_0x42f845[_0x44d680]=(_0x42f845[_0x44d680]||0x0)+0x1);}let _0x4d0c4b='',_0x353839=0x0;for(const [_0x398f22,_0x2694c1]of Object['entries'](_0x42f845)){_0x2694c1>_0x353839&&(_0x4d0c4b=_0x398f22,_0x353839=_0x2694c1);}_0x4d0c4b&&(_0x2cf9b7[_0x541f0c]=_0x4d0c4b);}return _0x2cf9b7;}function getPlatform(){const {platform:_0x4b2ddf}=navigator;if(_0x4b2ddf==='MacIntel'){if(isWebKit()&&!isDesktopWebKit())return isIPad()?'iPad':'iPhone';}return _0x4b2ddf;}function getPluginPropsEnum(){if(!('plugins'in navigator))return undefined;const _0x32768b=navigator['plugins'];let _0x51f232=Object['getPrototypeOf'](_0x32768b)===PluginArray['prototype'];for(let _0x599656=0x0;_0x599656<_0x32768b['length'];_0x599656++){_0x51f232&&(_0x51f232=Object['getPrototypeOf'](_0x32768b[_0x599656])===Plugin['prototype']);}return _0x51f232;}function getPlugins(){if(!('plugins'in navigator))return undefined;const _0x2eb3ee=navigator['plugins'],_0x567365=[];for(let _0x15a6ec=0x0;_0x15a6ec<_0x2eb3ee['length'];++_0x15a6ec){const _0xf21fce=_0x2eb3ee['item'](_0x15a6ec);if(_0xf21fce===null)continue;const _0x63eae0=[];for(let _0x2b6f18=0x0;_0x2b6f18<_0xf21fce['length'];++_0x2b6f18){const _0x517580=_0xf21fce[_0x2b6f18],_0x52c1e8={};_0x52c1e8['type']=_0x517580['type'],_0x52c1e8['suffixes']=_0x517580['suffixes'],_0x63eae0['push'](_0x52c1e8);}const _0x1ae334={};_0x1ae334['name']=_0xf21fce['name'],_0x1ae334['description']=_0xf21fce['description'],_0x1ae334['mimeTypes']=_0x63eae0,_0x567365['push'](_0x1ae334);}return _0x567365;}function getPluginsArray(){try{if(!('plugins'in navigator))return null;if(typeof PluginArray==='undefined')return null;return navigator['plugins']instanceof PluginArray;}catch{return null;}}function getPluginsCount(){if(!('plugins'in navigator))throw new Error('navigator.plugins\x20is\x20undefined');const _0x2f85b7=navigator['plugins'];if(typeof _0x2f85b7['length']!=='number')throw new Error('navigator.plugins.length\x20is\x20undefined');return _0x2f85b7['length'];}function getProductSub(){if(!('productSub'in navigator))throw new Error('navigator.productSub\x20is\x20undefined');return navigator['productSub'];}function isMotionReduced(){if(doesMatch('reduce'))return!![];if(doesMatch('no-preference'))return![];return undefined;}function doesMatch(_0x4625af){return matchMedia('(prefers-reduced-motion:\x20'+_0x4625af+')')['matches'];}const screenFrameCheckInterval=0x9c4,roundingPrecision=0xa;let screenFrameBackup,screenFrameSizeTimeoutId;function watchScreenFrame(){if(screenFrameSizeTimeoutId!==undefined)return;const _0x41ae4a=()=>{const _0x5610e1=getCurrentScreenFrame();isFrameSizeNull(_0x5610e1)?screenFrameSizeTimeoutId=setTimeout(_0x41ae4a,screenFrameCheckInterval):(screenFrameBackup=_0x5610e1,screenFrameSizeTimeoutId=undefined);};_0x41ae4a();}function getUnstableScreenFrame(){return watchScreenFrame(),async()=>{let _0x432833=getCurrentScreenFrame();if(isFrameSizeNull(_0x432833)){if(screenFrameBackup)return[...screenFrameBackup];getFullscreenElement()&&(await exitFullscreen(),_0x432833=getCurrentScreenFrame());}return!isFrameSizeNull(_0x432833)&&(screenFrameBackup=_0x432833),_0x432833;};}function getScreenFrame(){const _0x5b0a03=isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit(),_0x4d6c68=isGecko()&&isGecko143OrNewer();if(_0x5b0a03||_0x4d6c68)return()=>Promise['resolve'](undefined);const _0xf9a3d9=getUnstableScreenFrame();return async()=>{const _0x1ccd61=await _0xf9a3d9(),_0x44adb1=_0x490fc7=>_0x490fc7===null?null:round$1(_0x490fc7,roundingPrecision);return[_0x44adb1(_0x1ccd61[0x0]),_0x44adb1(_0x1ccd61[0x1]),_0x44adb1(_0x1ccd61[0x2]),_0x44adb1(_0x1ccd61[0x3])];};}function getCurrentScreenFrame(){const _0x407c74=screen;return[replaceNaN(toFloat(_0x407c74['availTop']),null),replaceNaN(toFloat(_0x407c74['width'])-toFloat(_0x407c74['availWidth'])-replaceNaN(toFloat(_0x407c74['availLeft']),0x0),null),replaceNaN(toFloat(_0x407c74['height'])-toFloat(_0x407c74['availHeight'])-replaceNaN(toFloat(_0x407c74['availTop']),0x0),null),replaceNaN(toFloat(_0x407c74['availLeft']),null)];}function isFrameSizeNull(_0x31e926){for(let _0x496568=0x0;_0x496568<0x4;++_0x496568){if(_0x31e926[_0x496568]!==null&&_0x31e926[_0x496568]!==0x0)return![];}return!![];}async function getScreenIframe(){try{return await getIframePool()['execute']((_0x5f108b,_0x455d1b)=>{const _0xef85a8=_0x455d1b['screen'],_0x4c069e=_0x1b2f2a=>{const _0x384886=parseInt(_0x1b2f2a);return typeof _0x384886==='number'&&isNaN(_0x384886)?-0x1:_0x384886;};return{'w':_0x4c069e(_0xef85a8['width']),'h':_0x4c069e(_0xef85a8['height'])};});}catch{return null;}}function getScreenResolution(){if(isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit())return undefined;return getUnstableScreenResolution();}function getUnstableScreenResolution(){const _0x1742f2=screen,_0x517251=_0x40791e=>replaceNaN(toInt(_0x40791e),null),_0x3beae5=[_0x517251(_0x1742f2['width']),_0x517251(_0x1742f2['height'])];return _0x3beae5['sort']()['reverse'](),_0x3beae5;}const MIN_EVENTS=0x5,velocities=[];let lastY=0x0,lastTime=0x0,observing$1=![];function startObserving$1(){if(observing$1||typeof window==='undefined')return;observing$1=!![];const _0xdf5411={};_0xdf5411['passive']=!![],window['addEventListener']('scroll',()=>{const _0x58dc56=performance['now'](),_0x14d6ce=window['scrollY'];if(lastTime>0x0){const _0x3df929=_0x58dc56-lastTime;if(_0x3df929>0x0&&_0x3df929<0x1f4){const _0x3a772c=Math['abs'](_0x14d6ce-lastY)/(_0x3df929/0x3e8);velocities['push'](Math['round'](_0x3a772c));}}lastY=_0x14d6ce,lastTime=_0x58dc56;},_0xdf5411);}function getScrollBehavior(){startObserving$1();if(velocities['length']<MIN_EVENTS)return Promise['resolve'](null);const _0x1d81d6=[...velocities]['sort']((_0x68e2fe,_0x4cb2cf)=>_0x68e2fe-_0x4cb2cf),_0xe02de0=_0x1d81d6[Math['floor'](_0x1d81d6['length']*0.5)]??0x0,_0x51ce7f=_0x1d81d6[Math['floor'](_0x1d81d6['length']*0.9)]??0x0,_0x1b6b54={};return _0x1b6b54['p50']=_0xe02de0,_0x1b6b54['p90']=_0x51ce7f,_0x1b6b54['count']=_0x1d81d6['length'],Promise['resolve'](_0x1b6b54);}async function getScrollbarWidth(){return getIframePool()['execute']((_0x2af15f,_0xedba32)=>{const _0x1edb9f=_0xedba32['document'],_0xec501d=_0x1edb9f['createElement']('div');_0xec501d['style']['width']='100px',_0xec501d['style']['height']='100px',_0xec501d['style']['overflow']='scroll',_0xec501d['style']['visibility']='hidden',_0x1edb9f['body']['appendChild'](_0xec501d);const _0x3af9b0=_0xec501d['offsetWidth']===_0xec501d['clientWidth'];return _0x1edb9f['body']['removeChild'](_0xec501d),_0x3af9b0;});}function getSessionStorage(){try{const _0x4c0f7f=window['sessionStorage'];return _0x4c0f7f!==null&&_0x4c0f7f!==undefined;}catch{return!![];}}async function getStorageEstimate(){const _0x3eaa9a=navigator['storage'];if(_0x3eaa9a===undefined||typeof _0x3eaa9a['estimate']!=='function')return null;try{const _0x18e941=await Promise['race']([_0x3eaa9a['estimate'](),new Promise((_0x38c960,_0x5e7867)=>setTimeout(()=>_0x5e7867(new Error('timeout')),0x1f4))]);if(_0x18e941['quota']!==undefined&&_0x18e941['quota']>0x0)return Math['round'](_0x18e941['quota']/(0x64*0x400*0x400))*(0x64*0x400*0x400);return null;}catch{return null;}}async function getStorageQuota(){const _0x46d913=navigator['storage'];if(_0x46d913===undefined)return null;const _0x2fef00=_0x46d913['getDirectory'];if(typeof _0x2fef00!=='function')return null;try{const _0x4f6e6c=await Promise['race']([_0x46d913['getDirectory']()['then'](()=>'',_0xbffffa=>_0xbffffa instanceof Error?_0xbffffa['message']:String(_0xbffffa)),new Promise((_0x33c44e,_0x1808f7)=>setTimeout(()=>_0x1808f7(new Error('timeout')),0xfa))]);return _0x4f6e6c;}catch{return null;}}const _0x37987c={};_0x37987c['AccentColor']='ac',_0x37987c['AccentColorText']='act',_0x37987c['ActiveText']='at',_0x37987c['ActiveBorder']='ab',_0x37987c['ActiveCaption']='aca',_0x37987c['AppWorkspace']='aw',_0x37987c['Background']='b',_0x37987c['ButtonHighlight']='bh',_0x37987c['ButtonShadow']='bs',_0x37987c['ButtonBorder']='bb',_0x37987c['ButtonFace']='bf',_0x37987c['ButtonText']='bt',_0x37987c['FieldText']='ft',_0x37987c['GrayText']='gt',_0x37987c['Highlight']='h',_0x37987c['HighlightText']='ht',_0x37987c['InactiveBorder']='ib',_0x37987c['InactiveCaption']='ic',_0x37987c['InactiveCaptionText']='ict',_0x37987c['InfoBackground']='ib',_0x37987c['InfoText']='it',_0x37987c['LinkText']='lt',_0x37987c['Mark']='m',_0x37987c['Menu']='me',_0x37987c['Scrollbar']='s',_0x37987c['ThreeDDarkShadow']='tdds',_0x37987c['ThreeDFace']='tdf',_0x37987c['ThreeDHighlight']='tdh',_0x37987c['ThreeDLightShadow']='tdls',_0x37987c['ThreeDShadow']='tds',_0x37987c['VisitedText']='vt',_0x37987c['Window']='w',_0x37987c['WindowFrame']='wf',_0x37987c['WindowText']='wt',_0x37987c['Selecteditem']='si',_0x37987c['Selecteditemtext']='sit';const systemColorMap=_0x37987c;function getSystemColors(){return getIframePool()['execute']((_0x239208,_0x1b8bf2)=>{const _0x462a82=_0x1b8bf2['document'];_0x462a82['documentElement']['style']['colorScheme']='light';const _0x12c020=_0x462a82['createElement']('div');_0x462a82['body']['appendChild'](_0x12c020);const _0x58dcf3={};for(const _0x66329b of Object['keys'](systemColorMap)){_0x12c020['style']['color']=_0x66329b,_0x58dcf3[systemColorMap[_0x66329b]]=_0x1b8bf2['getComputedStyle'](_0x12c020)['color'];}return _0x462a82['body']['removeChild'](_0x12c020),_0x58dcf3;});}function getTimezone(){const _0x21ad2d=window['Intl'],_0x2abe51=_0x21ad2d?.['DateTimeFormat'];if(_0x2abe51!==undefined){const _0x9ef76f=new _0x2abe51()['resolvedOptions']()['timeZone'];if(_0x9ef76f!=='')return _0x9ef76f;}const _0x344f1e=-getTimezoneOffset();return'UTC'+(_0x344f1e>=0x0?'+':'')+_0x344f1e;}function getTimezoneOffset(){const _0x4a4b82=new Date()['getFullYear']();return Math['max'](toFloat(new Date(_0x4a4b82,0x0,0x1)['getTimezoneOffset']()),toFloat(new Date(_0x4a4b82,0x6,0x1)['getTimezoneOffset']()));}function getMeasuredTimezone(){let _0x37a5a9='';try{const _0x43fe4a=window['Intl'],_0x2f47a9=_0x43fe4a?.['DateTimeFormat'];_0x2f47a9!==undefined&&(_0x37a5a9=new _0x2f47a9()['resolvedOptions']()['timeZone']);}catch{}const _0x39f009=new Date()['getTimezoneOffset'](),_0x5859e6=new Date('July\x201,\x201113')['getTimezoneOffset'](),_0x25cdfc={};return _0x25cdfc['reported']=_0x37a5a9,_0x25cdfc['offset']=_0x39f009,_0x25cdfc['historicalOffset']=_0x5859e6,_0x25cdfc;}function getTouchSupport(){const _0x27b072=navigator;let _0x533002=0x0,_0x2e35af;if('maxTouchPoints'in _0x27b072)_0x533002=toInt(_0x27b072['maxTouchPoints']);else _0x27b072['msMaxTouchPoints']!==undefined&&(_0x533002=_0x27b072['msMaxTouchPoints']??0x0);try{document['createEvent']('TouchEvent'),_0x2e35af=!![];}catch{_0x2e35af=![];}const _0x50b57b='ontouchstart'in window,_0x58bdcc={};return _0x58bdcc['maxTouchPoints']=_0x533002,_0x58bdcc['touchEvent']=_0x2e35af,_0x58bdcc['touchStart']=_0x50b57b,_0x58bdcc;}function getUserAgent(){return navigator['userAgent'];}function getVendor(){return navigator['vendor']||'';}function getWindowDimensions(){const _0x31c3e6={};return _0x31c3e6['outerWidth']=window['outerWidth'],_0x31c3e6['outerHeight']=window['outerHeight'],_0x31c3e6['innerWidth']=window['innerWidth'],_0x31c3e6['innerHeight']=window['innerHeight'],_0x31c3e6;}function getBindToString(){try{return Function['prototype']['bind']['toString']();}catch{return'';}}function getCanvasModified(){try{const _0x34cb21=document['createElement']('canvas');_0x34cb21['width']=0x1,_0x34cb21['height']=0x1;const _0x4232f7=_0x34cb21['getContext']('2d');if(!_0x4232f7)return null;_0x4232f7['clearRect'](0x0,0x0,0x1,0x1);const _0x463efe=_0x4232f7['getImageData'](0x0,0x0,0x1,0x1)['data'];return _0x463efe[0x0]!==0x0||_0x463efe[0x1]!==0x0||_0x463efe[0x2]!==0x0||_0x463efe[0x3]!==0x0;}catch{return null;}}const CSS_PROPERTIES=['display','direction','unicode-bidi','writing-mode','color','font-family'];function getComputedStyleSignal(){const _0x2e78c4=window['getComputedStyle'](document['documentElement']);let _0x9a573d=0x0;for(const _0x42e420 of CSS_PROPERTIES){_0x2e78c4['getPropertyValue'](_0x42e420)!==''&&_0x9a573d++;}return _0x9a573d>=0x4;}function getCreateElementDescriptor(){const _0x1b4c55=Object['getOwnPropertyDescriptor'](document,'createElement');return _0x1b4c55?!('writeable'in _0x1b4c55):null;}async function getDrmPersistence(){try{if(typeof navigator['requestMediaKeySystemAccess']!=='function')return null;const _0x2d0002=['com.widevine.alpha','com.microsoft.playready'],_0x5c5375={},_0x377ce6=_0x2d0002['map'](async _0x622270=>{const _0x41cec0={};_0x41cec0['persistent']=![],_0x41cec0['temporary']=![];const _0x22c533=_0x41cec0;try{const _0xf4f22={};_0xf4f22['contentType']='audio/mp4;codecs=\x22mp4a.40.2\x22';const _0x4ef093={};_0x4ef093['initDataTypes']=['cenc'],_0x4ef093['audioCapabilities']=[_0xf4f22],_0x4ef093['sessionTypes']=['persistent-license'],await navigator['requestMediaKeySystemAccess'](_0x622270,[_0x4ef093]),_0x22c533['persistent']=!![];}catch{}try{const _0x258ff3={};_0x258ff3['contentType']='audio/mp4;codecs=\x22mp4a.40.2\x22';const _0x169569={};_0x169569['initDataTypes']=['cenc'],_0x169569['audioCapabilities']=[_0x258ff3],_0x169569['sessionTypes']=['temporary'],await navigator['requestMediaKeySystemAccess'](_0x622270,[_0x169569]),_0x22c533['temporary']=!![];}catch{}_0x5c5375[_0x622270]=_0x22c533;});return await Promise['race']([Promise['all'](_0x377ce6),new Promise(_0x5368b1=>setTimeout(_0x5368b1,0x1f4))]),Object['keys'](_0x5c5375)['length']>0x0?_0x5c5375:null;}catch{return null;}}function getErrorStackFormat(){try{;null[0x0]();}catch(_0x2c8f11){if(_0x2c8f11 instanceof Error&&_0x2c8f11['stack']!==undefined)return _0x2c8f11['stack']['toString']();}return undefined;}function hasWindowProp(_0x1b6b19){return _0x1b6b19 in window;}function getExtensionDetection(){const _0x169927=[['grammarly',()=>{return document['body']['hasAttribute']('data-gr-ext-installed')||document['querySelector']('.grammarly-desktop-integration')!==null;}],['metamask',()=>hasWindowProp('ethereum')],['deepl',()=>document['querySelector']('deepl-input-controller')!==null],['lastpass',()=>document['querySelector']('[data-lastpass-icon-root]')!==null],['1password',()=>document['querySelector']('com-1password-notification')!==null],['honey',()=>hasWindowProp('honeyAutocomplete')],['reactDevtools',()=>hasWindowProp('__REACT_DEVTOOLS_GLOBAL_HOOK__')],['reduxDevtools',()=>hasWindowProp('__REDUX_DEVTOOLS_EXTENSION__')]],_0x1a5926=[];let _0x4bb75c='';for(const [_0x495170,_0x5e7b77]of _0x169927){let _0x5a9fb8=![];try{_0x5a9fb8=_0x5e7b77();}catch{}_0x5a9fb8&&_0x1a5926['push'](_0x495170),_0x4bb75c+=_0x5a9fb8?'1':'0';}const _0x1c4e0c={};return _0x1c4e0c['detected']=_0x1a5926,_0x1c4e0c['bitmask']=_0x4bb75c,_0x1c4e0c;}const CHROMIUM_CSS=[['aspect-ratio','1',0x58],['color','oklch(0\x200\x200)',0x6f],['container-type','inline-size',0x69],['animation-composition','add',0x70],['color','color-mix(in\x20srgb,\x20red,\x20blue)',0x6f],['text-wrap','balance',0x72],['field-sizing','content',0x78],['view-transition-name','foo',0x6f],['interpolate-size','allow-keywords',0x81],['ruby-align','center',0x80]],GECKO_CSS=[['color','light-dark(#000,\x20#fff)',0x78],['height','1lh',0x78],['text-wrap','balance',0x79],['text-wrap','pretty',0x80],['field-sizing','content',0x88]],WEBKIT_CSS=[['selector(:has(a))','',0xf],['container-type','inline-size',0x10],['font-size-adjust','ex-height\x200.5',0x11],['view-transition-name','foo',0x12]],g$1=globalThis,CHROMIUM_JS=[[()=>typeof AbortSignal['abort']==='function',0x5d],[()=>'URLPattern'in g$1,0x5f],[()=>typeof g$1['structuredClone']==='function',0x62],[()=>typeof AbortSignal['timeout']==='function',0x67],[()=>'formatRange'in Intl['NumberFormat']['prototype'],0x6b],[()=>'groupBy'in(g$1['Map']??{}),0x75],[()=>'fromAsync'in Array,0x77],[()=>'union'in Set['prototype'],0x7a]],GECKO_JS=[[()=>'findLast'in Array['prototype'],0x68],[()=>'withResolvers'in(g$1['Promise']??{}),0x79],[()=>'union'in Set['prototype'],0x7f],[()=>'Iterator'in g$1,0x82]],WEBKIT_JS=[[()=>'RegExp'in g$1&&/(?<=a)b/['test']('ab'),0x10],[()=>'groupBy'in(g$1['Map']??{}),0x11],[()=>'ViewTransition'in g$1,0x12]];function detectVersion(_0x2a7ea7,_0x470871){let _0x5215ec=null,_0x4b18ee=null;if(typeof CSS!=='undefined'&&typeof CSS['supports']==='function')for(const [_0x3a700c,_0x46dda9,_0x3df608]of _0x2a7ea7){try{const _0x18d12e=_0x46dda9===''?CSS['supports'](_0x3a700c):CSS['supports'](_0x3a700c,_0x46dda9);_0x18d12e&&(_0x5215ec===null||_0x3df608>_0x5215ec)&&(_0x5215ec=_0x3df608);}catch{}}for(const [_0x4d36be,_0x2ce318]of _0x470871){try{_0x4d36be()&&(_0x4b18ee===null||_0x2ce318>_0x4b18ee)&&(_0x4b18ee=_0x2ce318);}catch{}}const _0x4fdd7d={};return _0x4fdd7d['cssVersion']=_0x5215ec,_0x4fdd7d['jsVersion']=_0x4b18ee,_0x4fdd7d;}function parseUAVersion(_0x57d7bd){const _0x4d574f=navigator['userAgent'];if(_0x57d7bd==='chromium'){const _0x4a85b=/Chrom(?:e|ium)\/(\d+)/['exec'](_0x4d574f);return _0x4a85b?parseInt(_0x4a85b[0x1],0xa):null;}if(_0x57d7bd==='gecko'){const _0x102afe=/Firefox\/(\d+)/['exec'](_0x4d574f);return _0x102afe?parseInt(_0x102afe[0x1],0xa):null;}if(_0x57d7bd==='webkit'){const _0x2b7d9f=/Version\/(\d+)/['exec'](_0x4d574f);return _0x2b7d9f?parseInt(_0x2b7d9f[0x1],0xa):null;}return null;}function getFeatureVersion(){let _0x4e4b48='unknown';try{if(isChromium())_0x4e4b48='chromium';else{if(isGecko())_0x4e4b48='gecko';else isWebKit()&&(_0x4e4b48='webkit');}}catch{return null;}if(_0x4e4b48==='unknown'){const _0x36324c={};return _0x36324c['cssVersion']=null,_0x36324c['jsVersion']=null,_0x36324c['uaVersion']=null,_0x36324c['mismatch']=![],_0x36324c['engine']=_0x4e4b48,_0x36324c;}let _0x5143ee,_0xe26882;if(_0x4e4b48==='chromium')_0x5143ee=CHROMIUM_CSS,_0xe26882=CHROMIUM_JS;else _0x4e4b48==='gecko'?(_0x5143ee=GECKO_CSS,_0xe26882=GECKO_JS):(_0x5143ee=WEBKIT_CSS,_0xe26882=WEBKIT_JS);const {cssVersion:_0x55b575,jsVersion:_0x90ab9c}=detectVersion(_0x5143ee,_0xe26882),_0x5a60a7=parseUAVersion(_0x4e4b48);let _0x196132=![];if(_0x5a60a7!==null){const _0xb76368=Math['max'](_0x55b575??0x0,_0x90ab9c??0x0);_0xb76368>0x0&&_0x5a60a7-_0xb76368>0x14&&(_0x196132=!![]);}const _0x1bfc75={};return _0x1bfc75['cssVersion']=_0x55b575,_0x1bfc75['jsVersion']=_0x90ab9c,_0x1bfc75['uaVersion']=_0x5a60a7,_0x1bfc75['mismatch']=_0x196132,_0x1bfc75['engine']=_0x4e4b48,_0x1bfc75;}function getGetterProxyDetection(){const _0x18aec4=Object['getOwnPropertyDescriptor'](Object['getPrototypeOf'](navigator),'hardwareConcurrency');if(!_0x18aec4?.['get'])return null;const _0x120a65=window['Function'],_0x38791c=window['Object'];let _0x3b5cd7=![];try{const _0x1d90d0=window;_0x3b5cd7=delete _0x1d90d0['Function']&&delete _0x1d90d0['Object'];}catch{_0x3b5cd7=![];}if(!_0x3b5cd7)return _0x452f0a(),null;try{return _0x18aec4['get']['toString'](),![];}catch{return!![];}finally{_0x452f0a();}function _0x452f0a(){try{window['Function']=_0x120a65,window['Object']=_0x38791c;}catch{}}}const GETTER_TARGETS=[['navigator',['plugins','userAgent','platform','appName','languages','vendor','hardwareConcurrency','deviceMemory','maxTouchPoints','connection','cookieEnabled','language','pdfViewerEnabled']],['screen',['width','availWidth','height','availHeight','colorDepth']]],TAMPER_CHECK_PROPS=['userAgent','platform','languages','vendor','hardwareConcurrency','deviceMemory','maxTouchPoints','plugins','connection','cookieEnabled'];function getGetterToString(){try{const _0x4f32f8={},_0x476c6e={};for(const [_0x982460,_0x25b813]of GETTER_TARGETS){const _0xaa8bc9=window[_0x982460];if(_0xaa8bc9===null||_0xaa8bc9===undefined||typeof _0xaa8bc9!=='object')continue;for(const _0x3456d5 of _0x25b813){try{const _0x54683f=Object['getOwnPropertyDescriptor'](_0xaa8bc9,_0x3456d5)?.['get']?.['toString']();_0x54683f!==undefined&&(_0x4f32f8[_0x982460+'.'+_0x3456d5]=_0x54683f);}catch{}}}for(const _0x32c5a3 of TAMPER_CHECK_PROPS){try{const _0x1ad114=Object['getOwnPropertyDescriptor'](navigator,_0x32c5a3);if(_0x1ad114!==undefined){const _0xf2d56e={};if(_0x1ad114['writable']===!![])_0xf2d56e['writable']=!![];if(_0x1ad114['configurable']===!![])_0xf2d56e['configurable']=!![];(_0xf2d56e['writable']===!![]||_0xf2d56e['configurable']===!![])&&(_0x476c6e[_0x32c5a3]=_0xf2d56e);}}catch{}}const _0x415e7f={};return _0x415e7f['overrides']=_0x4f32f8,_0x415e7f['tampered']=_0x476c6e,_0x415e7f;}catch{return null;}}const IMPOSSIBLE_BIGRAMS=new Set(['bq','bx','cb','cf','cj','cp','cv','cx','dx','fq','fx','gq','gx','hx','jb','jc','jd','jf','jg','jh','jk','jl','jm','jn','jp','jq','jr','js','jt','jv','jw','jx','jy','jz','kq','kx','kz','lq','lx','mx','pq','px','qb','qc','qd','qe','qf','qg','qh','qj','qk','ql','qm','qn','qo','qp','qq','qr','qs','qt','qv','qw','qx','qy','qz','sx','vb','vc','vf','vg','vj','vk','vm','vn','vp','vq','vw','vx','vz','wq','wx','wz','xb','xd','xf','xg','xj','xk','xq','xr','xw','xz','yq','yx','yy','zb','zc','zd','zf','zg','zj','zk','zl','zm','zn','zp','zq','zr','zs','zt','zv','zw','zx']);function getGpuGibberish(){try{const _0x5f0768=document['createElement']('canvas'),_0x22dc84=_0x5f0768['getContext']('webgl')??_0x5f0768['getContext']('experimental-webgl');if(!_0x22dc84)return null;const _0x28e38e=_0x22dc84['getExtension']('WEBGL_debug_renderer_info');if(!_0x28e38e)return null;const _0x510161=_0x22dc84['getParameter'](_0x28e38e['UNMASKED_RENDERER_WEBGL']);if(!_0x510161)return null;let _0x5395f9=_0x510161;const _0x48892c=_0x5395f9['match'](/^ANGLE \((.+)\)$/);if(_0x48892c){_0x5395f9=_0x48892c[0x1];const _0x46c411=_0x5395f9['lastIndexOf'](',');_0x46c411!==-0x1&&(_0x5395f9=_0x5395f9['substring'](0x0,_0x46c411));}const _0xa4b611=_0x5395f9['toLowerCase']()['replace'](/[^a-z]/g,'');let _0x544b80=0x0;for(let _0x1654dd=0x0;_0x1654dd<_0xa4b611['length']-0x1;_0x1654dd++){const _0x5f2eb8=_0xa4b611[_0x1654dd]+_0xa4b611[_0x1654dd+0x1];IMPOSSIBLE_BIGRAMS['has'](_0x5f2eb8)&&_0x544b80++;}const _0x4233aa={};return _0x4233aa['score']=_0x544b80,_0x4233aa['gibberish']=_0x544b80>0x2,_0x4233aa['renderer']=_0x510161,_0x4233aa;}catch{return null;}}function getIframeProxy(){try{if(typeof document==='undefined')return null;const _0xe98476=document['createElement']('iframe');_0xe98476['style']['display']='none',document['body']['appendChild'](_0xe98476);try{const _0x47a75c=_0xe98476['contentWindow'];if(!_0x47a75c){const _0x515339={};return _0x515339['accessible']=![],_0x515339['proxyDetected']=![],_0x515339['selfConsistent']=![],_0x515339['frameElementNull']=![],_0x515339;}let _0x46cc9a=![];try{_0x46cc9a=_0x47a75c['self']===_0x47a75c;}catch{_0x46cc9a=![];}let _0x207b5f=![];try{const _0x50cf6c=Object['prototype']['toString']['call'](_0x47a75c);_0x50cf6c!=='[object\x20Window]'&&_0x50cf6c!=='[object\x20global]'&&(_0x207b5f=!![]);}catch{_0x207b5f=!![];}try{const _0x29c3e4=Object['getOwnPropertyDescriptor'](_0x47a75c,'self');if(_0x29c3e4===undefined&&!_0x207b5f){}}catch{_0x207b5f=!![];}let _0x4e5764=![];try{_0x4e5764=_0x47a75c['frameElement']===null;}catch{_0x4e5764=!![];}const _0x4d2f89={};return _0x4d2f89['accessible']=!![],_0x4d2f89['proxyDetected']=_0x207b5f,_0x4d2f89['selfConsistent']=_0x46cc9a,_0x4d2f89['frameElementNull']=_0x4e5764,_0x4d2f89;}finally{document['body']['removeChild'](_0xe98476);}}catch{return null;}}function getIframeSignals(){return new Promise(_0x5a49cc=>{try{const _0x546303=document['createElement']('iframe');_0x546303['style']['display']='none',_0x546303['style']['width']='0',_0x546303['style']['height']='0',_0x546303['style']['position']='absolute',_0x546303['style']['top']='-9999px';let _0x443bea=null;const _0x19689d=()=>{if(_0x443bea!==null)clearTimeout(_0x443bea);try{_0x546303['parentNode']&&_0x546303['parentNode']['removeChild'](_0x546303);}catch{}};_0x443bea=setTimeout(()=>{_0x19689d(),_0x5a49cc(null);},0x7d0),_0x546303['onload']=()=>{try{const _0x5df451=_0x546303['contentWindow'];if(!_0x5df451){_0x19689d(),_0x5a49cc(null);return;}const _0xbd9250=_0x5df451['navigator'],_0x2f97f3={};_0x2f97f3['webdriver']=_0xbd9250['webdriver'],_0x2f97f3['platform']=_0xbd9250['platform'],_0x2f97f3['hardwareConcurrency']=_0xbd9250['hardwareConcurrency'],_0x2f97f3['deviceMemory']=_0xbd9250['deviceMemory'],_0x2f97f3['language']=_0xbd9250['language'];const _0x46023f=_0x2f97f3;_0x19689d(),_0x5a49cc(_0x46023f);}catch{_0x19689d(),_0x5a49cc(null);}},_0x546303['onerror']=()=>{_0x19689d(),_0x5a49cc(null);},document['body']['appendChild'](_0x546303);}catch{_0x5a49cc(null);}});}const CHECKED_PROPERTIES=['deviceMemory','hardwareConcurrency','language','languages','platform'];function getNavigatorDescriptors(){try{let _0x298bc3='';for(const _0x18317a of CHECKED_PROPERTIES){try{const _0x5e2564=Object['getOwnPropertyDescriptor'](navigator,_0x18317a);if(_0x5e2564){_0x298bc3+='1';continue;}const _0x1e13e1=Object['getOwnPropertyDescriptor'](Navigator['prototype'],_0x18317a);if(!_0x1e13e1){_0x298bc3+='2';continue;}typeof _0x1e13e1['get']==='function'?_0x298bc3+='0':_0x298bc3+='1';}catch{_0x298bc3+='2';}}return _0x298bc3;}catch{return'22222';}}function getObjectInspectGlobal(){try{const _0x415458=new Function('return\x20objectToInspect');return _0x415458(),!![];}catch{return![];}}const _0x48ab63={};_0x48ab63['Windows']=['Segoe\x20Fluent\x20Icons','HoloLens\x20MDL2\x20Assets','Leelawadee\x20UI','Nirmala\x20UI','Cambria\x20Math'],_0x48ab63['macOS']=['Galvji','Noto\x20Serif\x20Yezidi\x20Regular','InaiMathi\x20Bold','Luminari','Helvetica\x20Neue'],_0x48ab63['Linux']=['Ubuntu','Noto\x20Color\x20Emoji','Liberation\x20Mono'];const OS_FONT_MARKERS=_0x48ab63,TEST_STRING='mmMwWLliI0O&1',TEST_SIZE='72px',BASE_FONT='monospace';function getOsFontValidation(){return new Promise(_0x11d088=>{try{const _0x37f0cc=document['createElement']('canvas'),_0x56b771=_0x37f0cc['getContext']('2d');if(!_0x56b771){const _0x54e334={};_0x54e334['detectedOs']='unknown',_0x54e334['markers']=[],_0x11d088(_0x54e334);return;}_0x56b771['font']=TEST_SIZE+'\x20'+BASE_FONT;const _0x4bf1a2=_0x56b771['measureText'](TEST_STRING)['width'],_0x2aa430=[];let _0x453ecd='unknown';for(const [_0x43a389,_0xa68926]of Object['entries'](OS_FONT_MARKERS)){for(const _0x1829d2 of _0xa68926){_0x56b771['font']=TEST_SIZE+'\x20\x27'+_0x1829d2+'\x27,\x20'+BASE_FONT;const _0x4216f0=_0x56b771['measureText'](TEST_STRING)['width'];_0x4216f0!==_0x4bf1a2&&(_0x2aa430['push'](_0x1829d2),_0x453ecd==='unknown'&&(_0x453ecd=_0x43a389));}}const _0x216dd8={};_0x216dd8['detectedOs']=_0x453ecd,_0x216dd8['markers']=_0x2aa430,_0x11d088(_0x216dd8);}catch{const _0x4aeb37={};_0x4aeb37['detectedOs']='unknown',_0x4aeb37['markers']=[],_0x11d088(_0x4aeb37);}});}const g=globalThis,_0x56f455={};_0x56f455['android']=0x2,_0x56f455['chromeos']=0x1;const _0x47be24={};_0x47be24['windows']=0x2,_0x47be24['mac']=0x2,_0x47be24['linux']=0x2;const _0x4a7f64={};_0x4a7f64['windows']=0x2,_0x4a7f64['mac']=0x2,_0x4a7f64['linux']=0x2;const _0x453d39={};_0x453d39['windows']=0x2,_0x453d39['mac']=0x2,_0x453d39['linux']=0x2;const _0x1df0eb={};_0x1df0eb['windows']=0x1,_0x1df0eb['mac']=0x1,_0x1df0eb['linux']=0x1;const _0x311597={};_0x311597['windows']=0x1,_0x311597['mac']=0x1,_0x311597['linux']=0x1;const _0x212a6f={};_0x212a6f['windows']=0x2,_0x212a6f['mac']=0x2,_0x212a6f['linux']=0x2,_0x212a6f['chromeos']=0x2;const _0x50c7ca={};_0x50c7ca['android']=0x2,_0x50c7ca['ios']=0x2;const _0x32dab2={};_0x32dab2['android']=0x1,_0x32dab2['ios']=0x1;const _0x23db90={};_0x23db90['android']=0x2;const _0x4b40ef={};_0x4b40ef['android']=0x2;const _0x389064={};_0x389064['windows']=0x1,_0x389064['mac']=0x1,_0x389064['chromeos']=0x1;const _0x301433={};_0x301433['windows']=0x2,_0x301433['mac']=0x2,_0x301433['linux']=0x2;const _0x4c0d60={};_0x4c0d60['windows']=0x1,_0x4c0d60['mac']=0x1,_0x4c0d60['linux']=0x1;const _0x148e93={};_0x148e93['android']=0x1,_0x148e93['windows']=0x1,_0x148e93['mac']=0x1;const PROBES=[['BarcodeDetector',()=>'BarcodeDetector'in g,_0x56f455],['EyeDropper',()=>'EyeDropper'in g,_0x47be24],['HID',()=>'hid'in navigator,_0x4a7f64],['Serial',()=>'serial'in navigator,_0x453d39],['USB',()=>'usb'in navigator,_0x1df0eb],['Bluetooth',()=>'bluetooth'in navigator,_0x311597],['SharedWorker',()=>'SharedWorker'in g,_0x212a6f],['orientation',()=>'ondeviceorientation'in g,_0x50c7ca],['DeviceMotionEvent',()=>'DeviceMotionEvent'in g,_0x32dab2],['ContactsManager',()=>'ContactsManager'in g,_0x23db90],['ContentIndex',()=>'ContentIndex'in g,_0x4b40ef],['AppBadge',()=>typeof navigator['setAppBadge']==='function',_0x389064],['FileSystemAccess',()=>'showOpenFilePicker'in g,_0x301433],['PressureObserver',()=>'PressureObserver'in g,_0x4c0d60],['WakeLock',()=>'wakeLock'in navigator,_0x148e93]];function getPlatformApiScoring(){try{const _0x5056ed={},_0x4d9978=[];for(const [_0x54e954,_0x218bf1,_0x571c1c]of PROBES){try{if(_0x218bf1()){_0x4d9978['push'](_0x54e954);for(const [_0x2d4801,_0xe9fd70]of Object['entries'](_0x571c1c)){_0x5056ed[_0x2d4801]=(_0x5056ed[_0x2d4801]??0x0)+_0xe9fd70;}}}catch{}}const _0x22e9c5={};return _0x22e9c5['score']=_0x5056ed,_0x22e9c5['apis']=_0x4d9978,_0x22e9c5;}catch{return null;}}function getPluginOverflow(){try{const _0x593605=navigator['plugins'];if(_0x593605['length']===0x0)return null;const _0x3150e5=_0x593605['item'](0x0);if(!_0x3150e5)return null;let _0x452a60=![];try{const _0x45f755=_0x593605['item'](0x100000000);_0x452a60=_0x45f755!==_0x3150e5;}catch{_0x452a60=!![];}let _0x5773c5=!![];try{if(_0x3150e5['length']>0x0){const _0x168aaa=_0x3150e5['item'](0x0);_0x168aaa&&(_0x5773c5=_0x168aaa['enabledPlugin']===_0x3150e5);}}catch{_0x5773c5=![];}const _0x35b903={};return _0x35b903['overflow']=_0x452a60,_0x35b903['backref']=_0x5773c5,_0x35b903;}catch{return null;}}function getPrivateBrowsingChromium(){if(!isWebKit()||isModernBrowser())return null;try{const _0x9a9b35=window;typeof _0x9a9b35['webkitRequestFileSystem']==='function'&&_0x9a9b35['webkitRequestFileSystem'](null,null,null,null);}catch{return!![];}try{const _0x1412f2=window['localStorage'];return _0x1412f2['setItem']('test','1'),_0x1412f2['removeItem']('test'),![];}catch{return!![];}}function getChainDepth(_0x4fac16,_0x4b25ae){let _0x5eae5c=_0x4fac16,_0x58ebc8=0x0;while(_0x5eae5c!==null&&_0x58ebc8<_0x4b25ae){_0x5eae5c=Object['getPrototypeOf'](_0x5eae5c),_0x58ebc8++;}return _0x58ebc8;}function checkChain(_0x1729f0,_0x484f18,_0x43633a,_0x5d8f98){try{const _0x24d026=Object['getPrototypeOf'](_0x1729f0),_0x127d59=_0x24d026===_0x43633a,_0x5c7b3f=getChainDepth(_0x1729f0,0xf);if(!_0x127d59){const _0x5931ec={};return _0x5931ec['target']=_0x484f18+'→'+_0x5d8f98,_0x5931ec['intact']=![],_0x5931ec['depth']=_0x5c7b3f,_0x5931ec;}const _0x30da27={};return _0x30da27['target']=_0x484f18+'→'+_0x5d8f98,_0x30da27['intact']=!![],_0x30da27['depth']=_0x5c7b3f,_0x30da27;}catch{const _0x452000={};return _0x452000['target']=_0x484f18+'→'+_0x5d8f98,_0x452000['intact']=![],_0x452000['depth']=0x0,_0x452000;}}function getPrototypeChain(){const _0x1cddda=[];try{typeof Navigator!=='undefined'&&_0x1cddda['push'](checkChain(navigator,'navigator',Navigator['prototype'],'Navigator.prototype'));typeof Screen!=='undefined'&&_0x1cddda['push'](checkChain(screen,'screen',Screen['prototype'],'Screen.prototype'));if(typeof HTMLDocument!=='undefined')_0x1cddda['push'](checkChain(document,'document',HTMLDocument['prototype'],'HTMLDocument.prototype'));else typeof Document!=='undefined'&&_0x1cddda['push'](checkChain(document,'document',Document['prototype'],'Document.prototype'));const _0x1e05f6=navigator['constructor']===Navigator,_0x1a6c6c={};_0x1a6c6c['target']='navigator.constructor===Navigator',_0x1a6c6c['intact']=_0x1e05f6,_0x1a6c6c['depth']=0x0,_0x1cddda['push'](_0x1a6c6c);const _0x5e9632=Object['prototype']['toString']['call'](navigator),_0x27fb7e={};_0x27fb7e['target']='navigator.toStringTag',_0x27fb7e['intact']=_0x5e9632==='[object\x20Navigator]',_0x27fb7e['depth']=0x0,_0x1cddda['push'](_0x27fb7e);const _0x3220ea=Object['prototype']['toString']['call'](screen),_0x43f469={};_0x43f469['target']='screen.toStringTag',_0x43f469['intact']=_0x3220ea==='[object\x20Screen]',_0x43f469['depth']=0x0,_0x1cddda['push'](_0x43f469);}catch{}const _0x56ebb4=_0x1cddda['length']>0x0&&_0x1cddda['every'](_0x4f09d5=>_0x4f09d5['intact']),_0x2f3b8b={};return _0x2f3b8b['valid']=_0x56ebb4,_0x2f3b8b['checks']=_0x1cddda,_0x2f3b8b;}const LIGHT_TARGETS=[[Navigator['prototype'],'hardwareConcurrency'],[Navigator['prototype'],'platform'],[Navigator['prototype'],'userAgent'],[Navigator['prototype'],'languages'],[Navigator['prototype'],'webdriver'],[Screen['prototype'],'width'],[Screen['prototype'],'height'],[Screen['prototype'],'colorDepth']];function getLightTargets(){const _0x58f682=[...LIGHT_TARGETS];try{typeof CanvasRenderingContext2D!=='undefined'&&(_0x58f682['push']([CanvasRenderingContext2D['prototype'],'getImageData']),_0x58f682['push']([CanvasRenderingContext2D['prototype'],'fillText']));}catch{}try{typeof HTMLCanvasElement!=='undefined'&&_0x58f682['push']([HTMLCanvasElement['prototype'],'toDataURL']);}catch{}try{typeof WebGLRenderingContext!=='undefined'&&_0x58f682['push']([WebGLRenderingContext['prototype'],'getParameter']);}catch{}try{_0x58f682['push']([Date['prototype'],'getTimezoneOffset']);}catch{}try{typeof Intl!=='undefined'&&typeof Intl['DateTimeFormat']!=='undefined'&&_0x58f682['push']([Intl['DateTimeFormat']['prototype'],'resolvedOptions']);}catch{}return _0x58f682;}function getHighTargets(){const _0x226ad3=getLightTargets(),_0x304951=['appVersion','vendor','appName','connection','cookieEnabled','deviceMemory','doNotTrack','geolocation','language','maxTouchPoints','mimeTypes','onLine','permissions','plugins','product','productSub','serviceWorker','storage','vendorSub'];for(const _0x176679 of _0x304951){_0x176679 in Navigator['prototype']&&_0x226ad3['push']([Navigator['prototype'],_0x176679]);}const _0x10c178=['availHeight','availWidth','pixelDepth','availLeft','availTop','orientation'];for(const _0x41718d of _0x10c178){_0x41718d in Screen['prototype']&&_0x226ad3['push']([Screen['prototype'],_0x41718d]);}const _0x278252=['cookie','domain','referrer','title','URL','hidden','visibilityState','fullscreenElement'];for(const _0xe9dab5 of _0x278252){_0xe9dab5 in Document['prototype']&&_0x226ad3['push']([Document['prototype'],_0xe9dab5]);}try{const _0x4627fc=['getBoundingClientRect','getClientRects','innerHTML','outerHTML','getAttribute','setAttribute'];for(const _0x52626f of _0x4627fc){_0x52626f in Element['prototype']&&_0x226ad3['push']([Element['prototype'],_0x52626f]);}}catch{}try{const _0x28cd46=['offsetWidth','offsetHeight','style'];for(const _0x351540 of _0x28cd46){_0x351540 in HTMLElement['prototype']&&_0x226ad3['push']([HTMLElement['prototype'],_0x351540]);}}catch{}try{if(typeof CanvasRenderingContext2D!=='undefined'){const _0x47da38=['fillRect','strokeRect','measureText','font','globalCompositeOperation','drawImage'];for(const _0x49830c of _0x47da38){_0x49830c in CanvasRenderingContext2D['prototype']&&_0x226ad3['push']([CanvasRenderingContext2D['prototype'],_0x49830c]);}}}catch{}try{if(typeof WebGLRenderingContext!=='undefined'){const _0x18fb7c=['getExtension','getSupportedExtensions','readPixels','createShader','shaderSource','compileShader'];for(const _0xe86d63 of _0x18fb7c){_0xe86d63 in WebGLRenderingContext['prototype']&&_0x226ad3['push']([WebGLRenderingContext['prototype'],_0xe86d63]);}}}catch{}try{typeof AudioContext!=='undefined'&&(_0x226ad3['push']([AudioContext['prototype'],'createOscillator']),_0x226ad3['push']([AudioContext['prototype'],'createAnalyser']),_0x226ad3['push']([AudioContext['prototype'],'createGain']));}catch{}try{typeof OfflineAudioContext!=='undefined'&&_0x226ad3['push']([OfflineAudioContext['prototype'],'startRendering']);}catch{}try{_0x226ad3['push']([Performance['prototype'],'now']),_0x226ad3['push']([Performance['prototype'],'getEntries']);}catch{}try{_0x226ad3['push']([Storage['prototype'],'getItem']),_0x226ad3['push']([Storage['prototype'],'setItem']);}catch{}try{const _0x417fed=['random','floor','ceil','round','sin','cos'];for(const _0x756adb of _0x417fed){_0x756adb in Math&&_0x226ad3['push']([Math,_0x756adb]);}}catch{}try{typeof MediaDevices!=='undefined'&&'enumerateDevices'in MediaDevices['prototype']&&_0x226ad3['push']([MediaDevices['prototype'],'enumerateDevices']);}catch{}try{typeof Permissions!=='undefined'&&'query'in Permissions['prototype']&&_0x226ad3['push']([Permissions['prototype'],'query']);}catch{}return _0x226ad3;}function checkToString(_0x1e96c5,_0x310ed8){try{const _0x420ca2=Object['getOwnPropertyDescriptor'](_0x1e96c5,_0x310ed8),_0x4f08a6=_0x420ca2?.['get']??_0x420ca2?.['value']??_0x1e96c5[_0x310ed8];if(typeof _0x4f08a6!=='function')return![];const _0x43405e=Function['prototype']['toString']['call'](_0x4f08a6);return!_0x43405e['includes']('[native\x20code]');}catch{return![];}}function checkOwnDescriptor(_0x146d96){try{const _0x535e03=Object['getOwnPropertyDescriptor'](navigator,_0x146d96);return _0x535e03?.['value']!==undefined;}catch{return![];}}function checkHasPrototype(_0x47accf,_0x1634b7){try{const _0x5f2c80=Object['getOwnPropertyDescriptor'](_0x47accf,_0x1634b7);if(!_0x5f2c80?.['get'])return![];return'prototype'in _0x5f2c80['get'];}catch{return![];}}function checkOwnPropertyNames(_0x2187ba,_0x4ba2b9){try{const _0x56903c=Object['getOwnPropertyDescriptor'](_0x2187ba,_0x4ba2b9),_0x535c8a=_0x56903c?.['get'];if(typeof _0x535c8a!=='function')return![];const _0x5a025d=Object['getOwnPropertyNames'](_0x535c8a)['sort']();if(_0x5a025d['length']>0x2)return!![];if(_0x5a025d['length']===0x2&&(_0x5a025d[0x0]!=='length'||_0x5a025d[0x1]!=='name'))return!![];return![];}catch{return![];}}function checkClassExtends(_0x2f5469,_0x299410){try{const _0x138341=Object['getOwnPropertyDescriptor'](_0x2f5469,_0x299410),_0xba6997=_0x138341?.['get'];if(typeof _0xba6997!=='function')return![];return new Function('fn','class\x20X\x20extends\x20fn\x20{}')(_0xba6997),!![];}catch{return![];}}function checkNullProto(_0x4bfcc7,_0x48556e){try{const _0x27b46d=Object['getOwnPropertyDescriptor'](_0x4bfcc7,_0x48556e),_0x4e0a15=_0x27b46d?.['get']??_0x27b46d?.['value'];if(typeof _0x4e0a15!=='function')return![];const _0x1841e9=Object['create'](_0x4e0a15);return Object['setPrototypeOf'](_0x1841e9,null),_0x1841e9['toString']?.(),!![];}catch{return![];}}function checkIllegalInvocation(_0x4b9790,_0x4a8453){try{const _0x17612b=Object['getOwnPropertyDescriptor'](_0x4b9790,_0x4a8453),_0x39fdce=_0x17612b?.['get'];if(typeof _0x39fdce!=='function')return![];return _0x39fdce['call'](undefined),!![];}catch(_0x23890b){if(_0x23890b instanceof TypeError)return![];return!![];}}function checkBindToString(_0x22778c,_0x1271aa){try{const _0x30b88f=Object['getOwnPropertyDescriptor'](_0x22778c,_0x1271aa),_0x3e4169=_0x30b88f?.['get']??_0x30b88f?.['value'];if(typeof _0x3e4169!=='function')return![];const _0x20d8e5=_0x3e4169['bind'](null),_0x10a299=Function['prototype']['toString']['call'](_0x20d8e5);return!_0x10a299['includes']('[native\x20code]')&&!_0x10a299['includes']('native\x20code');}catch{return![];}}function checkReflectKeys(_0x27727b,_0x4fa073){try{const _0x36a380=Object['getOwnPropertyDescriptor'](_0x27727b,_0x4fa073),_0x1c9c4b=_0x36a380?.['get']??_0x36a380?.['value'];if(typeof _0x1c9c4b!=='function')return![];const _0x9b3a54=Reflect['ownKeys'](_0x1c9c4b)['sort'](),_0x287b00=Object['getOwnPropertyNames'](_0x1c9c4b)['sort']();if(_0x9b3a54['length']!==_0x287b00['length'])return!![];for(let _0x3e2fba=0x0;_0x3e2fba<_0x9b3a54['length'];_0x3e2fba++){if(_0x9b3a54[_0x3e2fba]!==_0x287b00[_0x3e2fba])return!![];}return![];}catch{return![];}}function checkDescriptorKeys(_0xb77c55,_0x18c99c){try{const _0x48221b=Object['getOwnPropertyDescriptor'](_0xb77c55,_0x18c99c);if(!_0x48221b)return![];const _0xe5b0ee=_0x48221b['get']??_0x48221b['set']??_0x48221b['value'];if(typeof _0xe5b0ee!=='function')return![];const _0x5eb080=Object['getOwnPropertyDescriptors'](_0xe5b0ee),_0xe3f4dc=Object['keys'](_0x5eb080)['filter'](_0x4cbaf0=>_0x4cbaf0!=='length'&&_0x4cbaf0!=='name');return _0xe3f4dc['length']>0x0;}catch{return![];}}function checkProtoManipulation(_0x105697,_0xf24fb8){try{const _0x32251d=Object['getOwnPropertyDescriptor'](_0x105697,_0xf24fb8),_0x591943=_0x32251d?.['get']??_0x32251d?.['value'];if(typeof _0x591943!=='function')return![];const _0x204832=_0x591943,_0xb8f647=Object['getPrototypeOf'](_0x204832);try{return Object['setPrototypeOf'](_0x204832,null),_0x204832['valueOf'],Object['setPrototypeOf'](_0x204832,_0xb8f647),![];}catch{return Object['setPrototypeOf'](_0x204832,_0xb8f647),![];}}catch{return![];}}function checkInstanceOf(_0x297585,_0x44a361){try{const _0x109d15=Object['getOwnPropertyDescriptor'](_0x297585,_0x44a361),_0x3610fc=_0x109d15?.['get']??_0x109d15?.['value'];if(typeof _0x3610fc!=='function')return![];const _0x2ebe71=_0x3610fc instanceof _0x3610fc;return _0x2ebe71===!![];}catch{return![];}}let proxyDetectionMode='high';function setProxyDetectionMode(_0x4a60a3){proxyDetectionMode=_0x4a60a3;}function getProxyDetection(){const _0x1e1b1a=proxyDetectionMode,_0x220310=_0x1e1b1a==='high'?getHighTargets():getLightTargets(),_0x4dc5c=_0x1e1b1a==='high'?[checkToString,checkHasPrototype,checkOwnPropertyNames,checkClassExtends,checkNullProto,checkIllegalInvocation,checkBindToString,checkReflectKeys,checkDescriptorKeys,checkProtoManipulation,checkInstanceOf]:[checkToString,checkHasPrototype,checkOwnPropertyNames,checkClassExtends],_0x2ed0e0=[];for(const [_0x1eefad,_0x45f8e9]of _0x220310){let _0x185601=![];try{_0x1eefad===Navigator['prototype']&&checkOwnDescriptor(_0x45f8e9)&&(_0x185601=!![]);}catch{}if(!_0x185601)for(const _0x340af8 of _0x4dc5c){try{if(_0x340af8(_0x1eefad,_0x45f8e9)){_0x185601=!![];break;}}catch{}}if(_0x185601){const _0x48d629=_0x1eefad['constructor']['name'];_0x2ed0e0['push'](_0x48d629+'.'+_0x45f8e9);}}const _0xb805ef={};return _0xb805ef['tested']=_0x220310['length'],_0xb805ef['lied']=_0x2ed0e0['length'],_0xb805ef['lies']=_0x2ed0e0,_0xb805ef['mode']=_0x1e1b1a,_0xb805ef;}function measureCssDimension(_0x3f6342,_0x4bb130,_0x1250aa){try{if(typeof matchMedia!=='function')return 0x0;let _0x105d04=_0x4bb130,_0x1d0805=_0x1250aa;while(_0x1d0805-_0x105d04>0x1){const _0x57cba6=Math['floor']((_0x105d04+_0x1d0805)/0x2),_0x1eceba=_0x3f6342==='width'?'(min-device-width:\x20'+_0x57cba6+'px)':'(min-device-height:\x20'+_0x57cba6+'px)';matchMedia(_0x1eceba)['matches']?_0x105d04=_0x57cba6:_0x1d0805=_0x57cba6;}return _0x105d04;}catch{return 0x0;}}function getScreenVerify(){try{const _0x431038=screen['width'],_0x51ec0f=screen['height'],_0x412340=measureCssDimension('width',0x64,0x1f40),_0x5bb4dd=measureCssDimension('height',0x64,0x1f40),_0x4e1273=_0x412340===0x0||Math['abs'](_0x431038-_0x412340)<=0x1,_0x1edbd8=_0x5bb4dd===0x0||Math['abs'](_0x51ec0f-_0x5bb4dd)<=0x1,_0x6b2a60={};return _0x6b2a60['match']=_0x4e1273&&_0x1edbd8,_0x6b2a60['screenWidth']=_0x431038,_0x6b2a60['cssWidth']=_0x412340,_0x6b2a60['screenHeight']=_0x51ec0f,_0x6b2a60['cssHeight']=_0x5bb4dd,_0x6b2a60;}catch{const _0x25fa92={};return _0x25fa92['match']=!![],_0x25fa92['screenWidth']=0x0,_0x25fa92['cssWidth']=0x0,_0x25fa92['screenHeight']=0x0,_0x25fa92['cssHeight']=0x0,_0x25fa92;}}function getStackBytes(){try{const _0x709877=[];for(let _0x5e1d44=0x0;_0x5e1d44<0x5;_0x5e1d44++){let _0x1dbf02=0x0;const _0x4682b9=()=>{_0x1dbf02++,_0x4682b9();};try{_0x4682b9();}catch{}let _0x2476aa=0x0;const _0x153d5d=()=>{_0x2476aa++;const _0x850d45=0x0;_0x153d5d();};try{_0x153d5d();}catch{}const _0x6727e=_0x1dbf02-_0x2476aa;_0x6727e>0x0&&_0x709877['push'](Math['round'](_0x2476aa*0x8/_0x6727e));}if(_0x709877['length']===0x0)return 0x0;return _0x709877['sort']((_0x5635eb,_0x281865)=>_0x5635eb-_0x281865),_0x709877[Math['floor'](_0x709877['length']/0x2)]??0x0;}catch{return null;}}const UD=0xf9d684ec,TARGET_HASHES=new Set([0xf4c8818b,0xbf53f276,0x9bb1268b,0x8dfb6cf0,0xc03b5091,0x3cb85adc,0xacd7554a,0x7cd3d994,0xbcea22ee,0xb7916bb5,0x17606f7d,0xce50ef1d,0xd585fbaa,0x673afc2a,0x69560c56,0xcbd311ab,0x422cb2d0,0x56c7ff24,0x1ad6e59b,0xa845651,0x77221929,0xb0857c03,0xcb7c7f4f,0x89108b4c,0xeb2c7a0f,0x1cf0e843,0xc6e1ec3c,0xdec06b24,0x9f1c624d,0xe6194b71,0xf9d684ec]);function getWindowPropertyNames(){try{const _0x13e1ed=[],_0x5e63bd=Object['getOwnPropertyNames'](window);for(let _0x333178=0x0;_0x333178<_0x5e63bd['length'];_0x333178++){const _0x6d11d=crc32(_0x5e63bd[_0x333178]);TARGET_HASHES['has'](_0x6d11d)&&_0x13e1ed['push'](_0x5e63bd[_0x333178]),_0x6d11d===UD&&_0x333178+0x1<_0x5e63bd['length']&&_0x13e1ed['push'](_0x5e63bd[_0x333178+0x1]);}return _0x13e1ed;}catch{return null;}}function getAutomationDescriptor(){try{const _0x571915=Object['getOwnPropertyDescriptor'](navigator,'webdriver'),_0x2dbd64=_0x571915!==undefined;let _0x5b4ab8=null;_0x571915&&(_0x5b4ab8=_0x571915['configurable']??null);let _0x20f3af=![],_0x54d25e=null;try{const _0x2192da=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');_0x2192da&&(_0x20f3af=typeof _0x2192da['get']==='function',_0x54d25e=_0x2192da['configurable']??null);}catch{}const _0x7ccf26={};return _0x7ccf26['hasOwnWebdriver']=_0x2dbd64,_0x7ccf26['ownConfigurable']=_0x5b4ab8,_0x7ccf26['prototypeHasGetter']=_0x20f3af,_0x7ccf26['prototypeConfigurable']=_0x54d25e,_0x7ccf26;}catch{const _0x402ce7={};return _0x402ce7['hasOwnWebdriver']=![],_0x402ce7['ownConfigurable']=null,_0x402ce7['prototypeHasGetter']=![],_0x402ce7['prototypeConfigurable']=null,_0x402ce7;}}function getCdpDetection(){try{const _0x9d3bc6=Error,_0x5a9fcd=_0x9d3bc6['prepareStackTrace'];let _0x249825=![];Object['defineProperty'](_0x9d3bc6,'prepareStackTrace',{'get'(){return _0x249825=!![],_0x5a9fcd;},'set'(_0x299d28){const _0x5e59cc={};_0x5e59cc['value']=_0x299d28,_0x5e59cc['writable']=!![],_0x5e59cc['configurable']=!![],Object['defineProperty'](_0x9d3bc6,'prepareStackTrace',_0x5e59cc);},'configurable':!![]});try{console['debug']('');}catch{}try{const _0x180fff={};_0x180fff['value']=_0x5a9fcd,_0x180fff['writable']=!![],_0x180fff['configurable']=!![],Object['defineProperty'](_0x9d3bc6,'prepareStackTrace',_0x180fff);}catch{}return _0x249825;}catch{return![];}}function getChromeRuntime(){try{const _0x49af44=window,_0x34d814=_0x49af44['chrome'];if(!_0x34d814||typeof _0x34d814!=='object'){const _0x53b401={};return _0x53b401['hasChrome']=![],_0x53b401['hasRuntime']=![],_0x53b401['hasPlatformOs']=![],_0x53b401['hasConnect']=![],_0x53b401['connectNative']=![],_0x53b401['hasApp']=![],_0x53b401['appIsInstalled']=null,_0x53b401['hasCsi']=![],_0x53b401['hasLoadTimes']=![],_0x53b401['runtimeKeyCount']=0x0,_0x53b401;}const _0x63478c=_0x34d814['runtime'],_0x32c1ab=_0x63478c!==undefined&&_0x63478c!==null;let _0x1c9c6d=![],_0x38025c=![],_0x456ce3=![],_0x2f2fb3=0x0;if(_0x32c1ab&&typeof _0x63478c==='object'){_0x1c9c6d='PlatformOs'in _0x63478c||'PlatformArch'in _0x63478c,_0x38025c=typeof _0x63478c['connect']==='function';if(_0x38025c)try{_0x456ce3=/\[native code\]/['test'](Function['prototype']['toString']['call'](_0x63478c['connect']));}catch{_0x456ce3=![];}try{_0x2f2fb3=Object['getOwnPropertyNames'](_0x63478c)['length'];}catch{_0x2f2fb3=0x0;}}const _0x52a8a2=_0x34d814['app'],_0x5b7e95=_0x52a8a2!==undefined&&_0x52a8a2!==null;let _0x1b985d=null;_0x5b7e95&&typeof _0x52a8a2==='object'&&(_0x1b985d=_0x52a8a2['isInstalled']===!![]);const _0x5aa4cf=typeof _0x34d814['csi']==='function',_0xc181a5=typeof _0x34d814['loadTimes']==='function',_0x3d140e={};return _0x3d140e['hasChrome']=!![],_0x3d140e['hasRuntime']=_0x32c1ab,_0x3d140e['hasPlatformOs']=_0x1c9c6d,_0x3d140e['hasConnect']=_0x38025c,_0x3d140e['connectNative']=_0x456ce3,_0x3d140e['hasApp']=_0x5b7e95,_0x3d140e['appIsInstalled']=_0x1b985d,_0x3d140e['hasCsi']=_0x5aa4cf,_0x3d140e['hasLoadTimes']=_0xc181a5,_0x3d140e['runtimeKeyCount']=_0x2f2fb3,_0x3d140e;}catch{return null;}}async function getDevtoolsDetection(){if(!isChromium()&&!isSafariWebKit())return null;try{const _0x162e7e=await new Promise(_0x511b2b=>{if(isChromium()){const _0x57ad12=new Error();_0x57ad12['name']='\x20',Object['defineProperty'](_0x57ad12,'stack',{'get':_0x511b2b['bind'](null,!![])}),console['debug'](_0x57ad12);}else{const _0x9f8d76=document['createElement']('div');_0x9f8d76['toString']=()=>'',Object['defineProperty'](_0x9f8d76,'id',{'get'(){_0x511b2b(!![]);const _0x4ac0eb=new Error();_0x4ac0eb['name']='';throw _0x4ac0eb;}}),console['debug'](_0x9f8d76);}setTimeout(()=>_0x511b2b(![]));});return _0x162e7e;}catch{return null;}}function getEvalLength(){return eval['toString']()['length'];}function getEventIsTrusted(){try{const _0x37c292=new Event(''),_0x1ee674=_0x37c292['isTrusted'];return typeof _0x1ee674==='undefined'?null:{'isTrusted':_0x1ee674};}catch{return null;}}const _0x199b11={};_0x199b11['window']=['awesomium'];const _0x44e796={};_0x44e796['window']=['RunPerfTest'];const _0xf39a36={};_0xf39a36['window']=['CefSharp'];const _0x4b822f={};_0x4b822f['window']=['emit'];const _0x124bca={};_0x124bca['window']=['fmget_targets'];const _0x2150ee={};_0x2150ee['window']=['geb'];const _0x21eb80={};_0x21eb80['window']=['__nightmare','nightmare'];const _0x2fdd17={};_0x2fdd17['window']=['__phantomas'];const _0x545782={};_0x545782['window']=['callPhantom','_phantom'];const _0x1d9c95={};_0x1d9c95['window']=['spawn'];const _0x28d728={};_0x28d728['window']=['_Selenium_IDE_Recorder','_selenium','calledSelenium',/^([a-z]){3}_.*_(Array|Promise|Symbol)$/],_0x28d728['document']=['__selenium_evaluate','selenium-evaluate','__selenium_unwrapped'];const _0x8d53dc={};_0x8d53dc['window']=['wdioElectron'];const _0x49c3e4={};_0x49c3e4['window']=['webdriver','__webdriverFunc','__lastWatirAlert','__lastWatirConfirm','__lastWatirPrompt','_WEBDRIVER_ELEM_CACHE','ChromeDriverw'],_0x49c3e4['document']=['__webdriver_script_fn','__driver_evaluate','__webdriver_evaluate','__fxdriver_evaluate','__driver_unwrapped','__webdriver_unwrapped','__fxdriver_unwrapped','__webdriver_script_fn','__webdriver_script_func','__webdriver_script_function','$cdc_asdjflasutopfhvcZLmcf','$cdc_asdjflasutopfhvcZLmcfl_','$chrome_asyncScriptInfo','__$webdriverAsyncExecutor'];const _0x200a5f={};_0x200a5f['window']=['domAutomation','domAutomationController'];const _0x27fe2c={};_0x27fe2c['window']=['iimPlay','iimGetLastError','iimGetLastExtract'];const _0x3e1ef4={};_0x3e1ef4['window']=['__automa__'];const _0x26bdf2={};_0x26bdf2['window']=['_webscraper_data'];const _0x3d5b71={};_0x3d5b71['window']=['_KatalonRecorder'];const _0x50c7c7={};_0x50c7c7['window']=['uivision','__uivision'];const _0x2f3a23={};_0x2f3a23['window']=['%testCafeDriverInstance%','%hammerhead%'];const _0x9b9acb={};_0x9b9acb['window']=['__cypress'];const _0x362063={};_0x362063['window']=['__puppeteer_evaluation_script__'],_0x362063['document']=['__puppeteer_evaluation_script__'];const _0x12369d={};_0x12369d['window']=['__playwright','__pw_manual','__pwInitScripts','__playwright__binding__'],_0x12369d['document']=['__playwright_evaluation_script__'];const _0x3091dd={};_0x3091dd['awesomium']=_0x199b11,_0x3091dd['cef']=_0x44e796,_0x3091dd['cefsharp']=_0xf39a36,_0x3091dd['coachjs']=_0x4b822f,_0x3091dd['fminer']=_0x124bca,_0x3091dd['geb']=_0x2150ee,_0x3091dd['nightmarejs']=_0x21eb80,_0x3091dd['phantomas']=_0x2fdd17,_0x3091dd['phantomjs']=_0x545782,_0x3091dd['rhino']=_0x1d9c95,_0x3091dd['selenium']=_0x28d728,_0x3091dd['webdriverio']=_0x8d53dc,_0x3091dd['webdriver']=_0x49c3e4,_0x3091dd['headless_chrome']=_0x200a5f,_0x3091dd['imacros']=_0x27fe2c,_0x3091dd['automa']=_0x3e1ef4,_0x3091dd['web_scraper']=_0x26bdf2,_0x3091dd['katalon']=_0x3d5b71,_0x3091dd['ui_vision']=_0x50c7c7,_0x3091dd['testcafe']=_0x2f3a23,_0x3091dd['cypress']=_0x9b9acb,_0x3091dd['puppeteer']=_0x362063,_0x3091dd['playwright_internal']=_0x12369d;const TOOL_MARKERS=_0x3091dd;function getOwnPropertyNames(_0x51dd88){try{return Object['getOwnPropertyNames'](_0x51dd88);}catch{return[];}}function matchesAny(_0x1e3fd7,_0x500b18){for(const _0x547c8a of _0x500b18){if(typeof _0x547c8a==='string'){if(_0x1e3fd7['indexOf'](_0x547c8a)!==-0x1)return!![];}else for(const _0x3c7c7d of _0x1e3fd7){if(_0x547c8a['test'](_0x3c7c7d))return!![];}}return![];}function getHeadlessSignals(){const _0x383fe5=getOwnPropertyNames(window),_0x52f13d=typeof document!=='undefined'?getOwnPropertyNames(document):[],_0x1e5f0c={};for(const _0x53c0c2 of Object['keys'](TOOL_MARKERS)){const _0x459572=TOOL_MARKERS[_0x53c0c2],_0x3600b1=_0x459572['window']?matchesAny(_0x383fe5,_0x459572['window']):![],_0x4c536d=_0x459572['document']&&_0x52f13d['length']?matchesAny(_0x52f13d,_0x459572['document']):![];_0x1e5f0c[_0x53c0c2]=_0x3600b1||_0x4c536d;}return _0x1e5f0c;}let cachedResult=null,observing=![];function startObserving(){if(observing||typeof window==='undefined')return;observing=!![];const _0x5d922b=performance['now'](),_0x2fee1b=['click','touchstart','keydown'],_0x4a6304=_0x1e3875=>{cachedResult={'firstInteractionMs':Math['round'](performance['now']()-_0x5d922b),'interactionType':_0x1e3875['type']};for(const _0x200169 of _0x2fee1b){window['removeEventListener'](_0x200169,_0x4a6304);}};for(const _0x5b54f1 of _0x2fee1b){const _0x3938e0={};_0x3938e0['once']=!![],_0x3938e0['passive']=!![],window['addEventListener'](_0x5b54f1,_0x4a6304,_0x3938e0);}}function getInteractionTiming(){return startObserving(),Promise['resolve'](cachedResult);}async function getNotificationContradiction(){try{if(typeof Notification==='undefined')return undefined;const _0x11bbce=navigator['permissions'];if(_0x11bbce===undefined||typeof _0x11bbce['query']!=='function')return undefined;const _0x2b197f={};_0x2b197f['name']='notifications';const _0x471ddd=await _0x11bbce['query'](_0x2b197f);return Notification['permission']==='denied'&&_0x471ddd['state']==='prompt';}catch{return undefined;}}function getPlaywrightMarkers(){try{const _0x84aba7=window,_0x45a7b1=['__pwInitScripts','__playwright__binding__','__playwright_evaluation_script__','__pw_manual'];for(const _0x5cbab9 of _0x45a7b1){if(_0x5cbab9 in _0x84aba7)return!![];}return![];}catch{return![];}}const AUTOMATION_PATTERNS=['UtilityScript','__puppeteer_evaluation_script__','__playwright_evaluation_script__','__selenium_evaluation_script__','pptr://','playwright://','__puppeteer','__playwright'];function getSourceUrlLeak(){try{const _0xae4fcb=new Error('probe'),_0x4c4761=_0xae4fcb['stack']??'';for(const _0x146ac3 of AUTOMATION_PATTERNS){if(_0x4c4761['includes'](_0x146ac3)){const _0x87a620={};return _0x87a620['leaked']=!![],_0x87a620['pattern']=_0x146ac3,_0x87a620;}}try{const _0x359b43=new Function('return\x20new\x20Error(\x22probe\x22).stack'),_0x2e712f=_0x359b43();if(typeof _0x2e712f==='string')for(const _0x35e469 of AUTOMATION_PATTERNS){if(_0x2e712f['includes'](_0x35e469)){const _0x1121fc={};return _0x1121fc['leaked']=!![],_0x1121fc['pattern']=_0x35e469,_0x1121fc;}}}catch{}const _0x1b031f={};return _0x1b031f['leaked']=![],_0x1b031f['pattern']=null,_0x1b031f;}catch{const _0x194e52={};return _0x194e52['leaked']=![],_0x194e52['pattern']=null,_0x194e52;}}function getWebdriver(){const _0x434cac=navigator['webdriver'],_0x26db4b={};_0x26db4b['status']=-0x1,_0x26db4b['value']=null;if(_0x434cac===null)return _0x26db4b;const _0x110e1f={};_0x110e1f['status']=-0x2,_0x110e1f['value']=null;if(_0x434cac===undefined)return _0x110e1f;return{'status':0x0,'value':Boolean(_0x434cac)};}function getWebdriverWritable(){try{const _0x65ad69=Object['getOwnPropertyDescriptor'](navigator,'webdriver')!==undefined;if(_0x65ad69){const _0x3eecc5=Object['getOwnPropertyDescriptor'](navigator,'webdriver');if('value'in _0x3eecc5)return!![];}const _0x553f0d=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');if(!_0x553f0d)return!![];if('value'in _0x553f0d)return!![];const _0x1322d2=navigator,_0x31e347=navigator['webdriver'];_0x1322d2['webdriver']=!_0x31e347;const _0x24892f=navigator['webdriver']!==_0x31e347;if(_0x24892f)try{delete _0x1322d2['webdriver'];}catch{}return _0x24892f;}catch{return![];}}function getWindowClose(){return window['close']===undefined?null:window['close']['toString']();}function getWindowProcess(){const _0xf9d6b9=window['process'];if(_0xf9d6b9===undefined)return undefined;if(_0xf9d6b9&&typeof _0xf9d6b9!=='object')return undefined;return _0xf9d6b9;}const WORKER_CODE='\x0a\x27use\x20strict\x27;\x0aself.window\x20=\x20self;\x0aself.document\x20=\x20{\x20hidden:\x20false,\x20addEventListener:\x20()\x20=>\x20{},\x20removeEventListener:\x20()\x20=>\x20{}\x20};\x0a\x0afunction\x20getWasmFeatures()\x20{\x0a\x20\x20try\x20{\x0a\x20\x20\x20\x20if\x20(typeof\x20WebAssembly\x20===\x20\x27undefined\x27\x20||\x20typeof\x20WebAssembly.validate\x20!==\x20\x27function\x27)\x20return\x20null;\x0a\x20\x20\x20\x20var\x20prefix\x20=\x20[0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10];\x0a\x20\x20\x20\x20var\x20modules\x20=\x20[\x0a\x20\x20\x20\x20\x20\x20[9,1,7,0,65,0,253,15,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[240,67,0,0,0,12,1,10,0,252,2,3,1,1,0,0,110,26,11,161,10],\x0a\x20\x20\x20\x20\x20\x20[6,1,4,0,18,0,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[8,1,6,0,65,0,192,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[7,1,5,0,208,112,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20];\x0a\x20\x20\x20\x20var\x20bitmask\x20=\x200;\x0a\x20\x20\x20\x20for\x20(var\x20i\x20=\x200;\x20i\x20<\x20modules.length;\x20i++)\x20{\x0a\x20\x20\x20\x20\x20\x20bitmask\x20<<=\x201;\x0a\x20\x20\x20\x20\x20\x20var\x20bytes\x20=\x20new\x20Uint8Array(prefix.concat(modules[i]));\x0a\x20\x20\x20\x20\x20\x20if\x20(WebAssembly.validate(bytes.buffer))\x20bitmask\x20|=\x201;\x0a\x20\x20\x20\x20}\x0a\x20\x20\x20\x20return\x20bitmask;\x0a\x20\x20}\x20catch(e)\x20{\x20return\x20null;\x20}\x0a}\x0a\x0afunction\x20getSafe(fn)\x20{\x0a\x20\x20try\x20{\x20return\x20fn();\x20}\x20catch(e)\x20{\x20return\x20null;\x20}\x0a}\x0a\x0aself.addEventListener(\x27message\x27,\x20function(e)\x20{\x0a\x20\x20if\x20(e.data\x20===\x20\x27run\x27)\x20{\x0a\x20\x20\x20\x20var\x20result\x20=\x20{\x0a\x20\x20\x20\x20\x20\x20hardwareConcurrency:\x20getSafe(function()\x20{\x20return\x20navigator.hardwareConcurrency\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20deviceMemory:\x20getSafe(function()\x20{\x20return\x20navigator.deviceMemory\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20platform:\x20getSafe(function()\x20{\x20return\x20navigator.platform\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20userAgent:\x20getSafe(function()\x20{\x20return\x20navigator.userAgent\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20languages:\x20getSafe(function()\x20{\x20return\x20navigator.languages\x20?\x20Array.prototype.slice.call(navigator.languages)\x20:\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20wasmFeatures:\x20getWasmFeatures(),\x0a\x20\x20\x20\x20\x20\x20doNotTrack:\x20getSafe(function()\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20var\x20dnt\x20=\x20navigator.doNotTrack;\x0a\x20\x20\x20\x20\x20\x20\x20\x20return\x20dnt\x20===\x20undefined\x20||\x20dnt\x20===\x20null\x20?\x20null\x20:\x20String(dnt);\x0a\x20\x20\x20\x20\x20\x20}),\x0a\x20\x20\x20\x20};\x0a\x20\x20\x20\x20self.postMessage(result);\x0a\x20\x20}\x0a});\x0a\x0aself.postMessage(\x27ready\x27);\x0a';function getWorkerIsolation(){return new Promise(_0x2bb397=>{try{if(typeof Worker==='undefined'||typeof Blob==='undefined'||typeof URL==='undefined'){_0x2bb397(null);return;}const _0x4b1e74={};_0x4b1e74['type']='text/javascript';const _0x27f73a=new Blob([WORKER_CODE],_0x4b1e74),_0x299480=URL['createObjectURL'](_0x27f73a);let _0x11264a=![];const _0x13f65b=new Worker(_0x299480),_0x21de06=setTimeout(()=>{!_0x11264a&&(_0x11264a=!![],_0x13f65b['terminate'](),URL['revokeObjectURL'](_0x299480),_0x2bb397(null));},0x1f4);_0x13f65b['addEventListener']('error',()=>{!_0x11264a&&(_0x11264a=!![],clearTimeout(_0x21de06),_0x13f65b['terminate'](),URL['revokeObjectURL'](_0x299480),_0x2bb397(null));}),_0x13f65b['addEventListener']('message',_0x1c6c50=>{if(_0x1c6c50['data']==='ready'){_0x13f65b['postMessage']('run');return;}!_0x11264a&&(_0x11264a=!![],clearTimeout(_0x21de06),_0x13f65b['terminate'](),URL['revokeObjectURL'](_0x299480),_0x2bb397(_0x1c6c50['data']));});}catch{_0x2bb397(null);}});}const CSS_PROBES=[['container-type','inline-size'],['container-type','size'],['selector(&)',''],['grid-template-columns','subgrid'],['width','calc(sin(1)\x20*\x201px)'],['width','calc(cos(1)\x20*\x201px)'],['width','calc(tan(1)\x20*\x201px)'],['width','calc(round(1.5,\x201)\x20*\x201px)'],['width','calc(mod(5,\x203)\x20*\x201px)'],['width','calc(rem(5,\x203)\x20*\x201px)'],['width','calc(abs(-1)\x20*\x201px)'],['width','calc(sign(-1)\x20*\x201px)'],['color','oklch(0.5\x200.2\x20120)'],['color','oklab(0.5\x200.1\x200.1)'],['color','color(display-p3\x201\x200\x200)'],['color','color-mix(in\x20oklch,\x20red,\x20blue)'],['color','lch(50\x20100\x20120)'],['color','lab(50\x2080\x20-10)'],['color','hwb(120\x2010%\x2020%)'],['background','linear-gradient(in\x20oklch,\x20red,\x20blue)'],['text-wrap','balance'],['text-wrap','pretty'],['text-wrap','stable'],['initial-letter','2'],['hyphenate-limit-chars','6\x203\x202'],['text-spacing-trim','space-all'],['font-synthesis','small-caps'],['font-palette','normal'],['width','fit-content'],['field-sizing','content'],['interpolate-size','allow-keywords'],['anchor-name','--a'],['position-anchor','--a'],['selector(:is(a))',''],['selector(:where(a))',''],['selector(:has(a))',''],['view-transition-name','hero'],['animation-timeline','scroll()'],['scroll-timeline-name','--t'],['timeline-scope','--t'],['backdrop-filter','blur(2px)'],['-webkit-backdrop-filter','blur(2px)'],['mask-composite','add'],['mask-border-source','none'],['overscroll-behavior','contain'],['scroll-behavior','smooth'],['scrollbar-width','thin'],['scrollbar-gutter','stable'],['scroll-snap-type','x\x20mandatory'],['accent-color','auto'],['content-visibility','auto'],['contain','paint'],['aspect-ratio','1'],['color-scheme','dark'],['forced-color-adjust','none'],['print-color-adjust','exact'],['background','paint(worklet)']];function getCssSupportExtended(){if(typeof CSS==='undefined'||typeof CSS['supports']!=='function')return null;const _0x20f306={};for(const [_0x5d0339,_0xd7b881]of CSS_PROBES){const _0x273d66=_0xd7b881===''?_0x5d0339:_0x5d0339+':'+_0xd7b881;try{_0x20f306[_0x273d66]=_0xd7b881===''?CSS['supports'](_0x5d0339):CSS['supports'](_0x5d0339,_0xd7b881);}catch{_0x20f306[_0x273d66]=![];}}return _0x20f306;}async function getDetectBrave(){if(!('brave'in navigator))return undefined;const _0x38d7a8=Object['getOwnPropertyDescriptor'](navigator,'brave')?.['value']??navigator['brave'];if(_0x38d7a8===undefined||typeof _0x38d7a8['isBrave']!=='function')return undefined;try{return!!await _0x38d7a8['isBrave']();}catch{return undefined;}}function getDetectChromium(){return isChromium();}function getDetectChromium86(){if(!isChromium())return null;return isChromium86OrNewer();}function getDetectChromium122(){if(!isChromium())return null;return isChromium122OrNewer();}function getDetectEdgeHTML(){return isEdgeHTML();}function getDetectGecko(){return isGecko();}function getDetectGecko120(){if(!isGecko())return null;return isGecko120OrNewer();}function getDetectGecko143(){if(!isGecko())return null;return isGecko143OrNewer();}function getDetectMobile(){return isAndroid();}function getDetectSafari(){if(isSafariWebKit())return!![];if(isWebKit()&&isDesktopWebKit()&&!isGecko()&&!isChromium())return!![];return![];}function getDetectTrident(){return isTrident();}function getDetectWebKit(){return isWebKit();}function getDetectWebKit606(){if(!isWebKit())return null;return isWebKit606OrNewer();}function getDetectWebKit616(){if(!isWebKit())return null;return isWebKit616OrNewer();}const BLACKLIST=['webkitPersistentStorage','connectionSpeed','xr','hid'];function getNavigatorMethods(){const _0x1e62ee=navigator,_0x5dea11=[];for(const _0x54dd94 of Object['getOwnPropertyNames'](Object['getPrototypeOf'](_0x1e62ee))){if(BLACKLIST['includes'](_0x54dd94))continue;try{const _0x2c896f=_0x1e62ee[_0x54dd94];typeof _0x2c896f==='function'&&_0x2c896f['name']!==undefined&&_0x5dea11['push'](_0x2c896f['name']);}catch(_0x17029e){return[_0x17029e instanceof Error?_0x17029e['message']:String(_0x17029e)];}}return _0x5dea11;}const HIGH_ENTROPY_HINTS=['brands','mobile','platform','platformVersion','architecture','bitness','model','uaFullVersion','fullVersionList'];async function getUAClientHints(){const _0x134fb1=navigator['userAgentData'];if(!_0x134fb1||typeof _0x134fb1!=='object')return undefined;const _0x4f7a70={},_0x59c433=[];if(typeof _0x134fb1['getHighEntropyValues']==='function'){const _0x16878a=_0x134fb1['getHighEntropyValues']['bind'](_0x134fb1);await Promise['all'](HIGH_ENTROPY_HINTS['map'](async _0x182b80=>{try{const _0x4b0087=await _0x16878a([_0x182b80]),_0x237b9d=_0x4b0087[_0x182b80];_0x237b9d!==undefined&&(_0x4f7a70[_0x182b80]=typeof _0x237b9d==='string'?_0x237b9d:JSON['stringify'](_0x237b9d));}catch(_0x1ab8de){if(_0x1ab8de instanceof Error&&_0x1ab8de['name']==='NotAllowedError')_0x59c433['push'](_0x182b80);else throw _0x1ab8de;}}));}return{'b':_0x134fb1['brands']['map'](_0x16ed2a=>({'b':_0x16ed2a['brand'],'v':_0x16ed2a['version']})),'m':_0x134fb1['mobile'],'p':_0x134fb1['platform']??null,'h':_0x4f7a70,'nah':_0x59c433};}function getVendorFlavors(){const _0x100c46=[];for(const _0x5942f9 of['chrome','safari','__crWeb','__gCrWeb','yandex','__yb','__ybro','__firefox__','__edgeTrackingPreventionStatistics','webkit','oprt','samsungAr','ucweb','UCShellJava','puffinDevice']){const _0x4d1d37=window[_0x5942f9];_0x4d1d37!==undefined&&_0x4d1d37!==null&&typeof _0x4d1d37==='object'&&_0x100c46['push'](_0x5942f9);}return _0x100c46['sort']();}const _0x1609d2={};_0x1609d2['workerIsolation']=getWorkerIsolation,_0x1609d2['webGlExtended']=getWebGlExtended;const stage1Sources=_0x1609d2,_0x18a08f={};_0x18a08f['fonts']=getFonts,_0x18a08f['fontPreferences']=getFontPreferences,_0x18a08f['audio']=getAudioSignal,_0x18a08f['screenFrame']=getScreenFrame,_0x18a08f['permissions']=getPermissions,_0x18a08f['mathml']=getMathML,_0x18a08f['systemColors']=getSystemColors,_0x18a08f['uaClientHints']=getUAClientHints,_0x18a08f['videoCodecs']=getVideoCodecs,_0x18a08f['scrollbarWidth']=getScrollbarWidth,_0x18a08f['formControlFont']=getFormControlFont,_0x18a08f['notificationContradiction']=getNotificationContradiction,_0x18a08f['fileSystemAccess']=getFileSystemAccess,_0x18a08f['storageQuota']=getStorageQuota,_0x18a08f['subPixelRendering']=getSubPixelRendering,_0x18a08f['screenIframe']=getScreenIframe,_0x18a08f['emoji']=getEmojiSignal,_0x18a08f['canvas']=getCanvasSignal,_0x18a08f['filesystemApi']=getFilesystemApi,_0x18a08f['subtleCryptoExport']=getSubtleCryptoExport,_0x18a08f['drmPersistence']=getDrmPersistence,_0x18a08f['detectBrave']=getDetectBrave,_0x18a08f['storageEstimate']=getStorageEstimate,_0x18a08f['indexedDbBlob']=getIndexedDbBlob,_0x18a08f['webRtcDevices']=getWebRtcDevices,_0x18a08f['webGpu']=getWebGpuSignal,_0x18a08f['barcodeDetection']=getBarcodeDetection,_0x18a08f['canvasAdvanced']=getCanvasAdvanced,_0x18a08f['iframeProxy']=getIframeProxy,_0x18a08f['iframeSignals']=getIframeSignals,_0x18a08f['audioTrap']=getAudioTrap,_0x18a08f['svgEmoji']=getSvgEmojiSignal,_0x18a08f['audioConsistency']=getAudioConsistency,_0x18a08f['osFontValidation']=getOsFontValidation,_0x18a08f['scrollBehavior']=getScrollBehavior,_0x18a08f['interactionTiming']=getInteractionTiming;const stage2Sources=_0x18a08f,_0x163a7f={};_0x163a7f['osCpu']=getOsCpu,_0x163a7f['languages']=getLanguages,_0x163a7f['colorDepth']=getColorDepth,_0x163a7f['deviceMemory']=getDeviceMemory,_0x163a7f['screenResolution']=getScreenResolution,_0x163a7f['hardwareConcurrency']=getHardwareConcurrency,_0x163a7f['timezone']=getTimezone,_0x163a7f['sessionStorage']=getSessionStorage,_0x163a7f['localStorage']=getLocalStorage,_0x163a7f['indexedDB']=getIndexedDB,_0x163a7f['platform']=getPlatform,_0x163a7f['plugins']=getPlugins,_0x163a7f['touchSupport']=getTouchSupport,_0x163a7f['vendor']=getVendor,_0x163a7f['vendorFlavors']=getVendorFlavors,_0x163a7f['cookiesEnabled']=areCookiesEnabled,_0x163a7f['colorGamut']=getColorGamut,_0x163a7f['invertedColors']=areColorsInverted,_0x163a7f['forcedColors']=areColorsForced,_0x163a7f['contrast']=getContrastPreference,_0x163a7f['reducedMotion']=isMotionReduced,_0x163a7f['hdr']=isHDR,_0x163a7f['math']=getMathSignal,_0x163a7f['pdfViewerEnabled']=isPdfViewerEnabled,_0x163a7f['architecture']=getArchitecture,_0x163a7f['applePay']=getApplePayState,_0x163a7f['audioBaseLatency']=getAudioContextBaseLatency,_0x163a7f['dateTimeLocale']=getDateTimeLocale,_0x163a7f['mediaQueries']=getMediaQueries,_0x163a7f['headless']=getHeadlessSignals,_0x163a7f['colorScheme']=getColorScheme,_0x163a7f['devicePixelRatio']=getDevicePixelRatio,_0x163a7f['evalLength']=getEvalLength,_0x163a7f['userAgent']=getUserAgent,_0x163a7f['appVersion']=getAppVersion,_0x163a7f['productSub']=getProductSub,_0x163a7f['networkRtt']=getNetworkRTT,_0x163a7f['errorStack']=getErrorStackFormat,_0x163a7f['performanceResolution']=getPerformanceResolution,_0x163a7f['webdriver']=getWebdriver,_0x163a7f['windowDimensions']=getWindowDimensions,_0x163a7f['supportedConstraints']=getSupportedConstraints,_0x163a7f['documentAttributes']=getDocumentAttributes,_0x163a7f['mimeTypes']=getMimeTypes,_0x163a7f['bindToString']=getBindToString,_0x163a7f['windowProcess']=getWindowProcess,_0x163a7f['wasmFeatures']=getWasmFeatures,_0x163a7f['windowClose']=getWindowClose,_0x163a7f['createElementDescriptor']=getCreateElementDescriptor,_0x163a7f['getterProxyDetection']=getGetterProxyDetection,_0x163a7f['navigatorMethods']=getNavigatorMethods,_0x163a7f['eventIsTrusted']=getEventIsTrusted,_0x163a7f['pluginPropsEnum']=getPluginPropsEnum,_0x163a7f['windowPropertyNames']=getWindowPropertyNames,_0x163a7f['getterToString']=getGetterToString,_0x163a7f['detectTrident']=getDetectTrident,_0x163a7f['detectEdgeHTML']=getDetectEdgeHTML,_0x163a7f['detectChromium']=getDetectChromium,_0x163a7f['detectWebKit']=getDetectWebKit,_0x163a7f['detectSafari']=getDetectSafari,_0x163a7f['detectGecko']=getDetectGecko,_0x163a7f['detectMobile']=getDetectMobile,_0x163a7f['objectInspectGlobal']=getObjectInspectGlobal,_0x163a7f['pluginsCount']=getPluginsCount,_0x163a7f['navigatorLanguages']=getNavigatorLanguages,_0x163a7f['detectChromium86']=getDetectChromium86,_0x163a7f['detectChromium122']=getDetectChromium122,_0x163a7f['detectGecko120']=getDetectGecko120,_0x163a7f['detectGecko143']=getDetectGecko143,_0x163a7f['detectWebKit606']=getDetectWebKit606,_0x163a7f['detectWebKit616']=getDetectWebKit616,_0x163a7f['doNotTrack']=getDoNotTrack,_0x163a7f['privateBrowsingChromium']=getPrivateBrowsingChromium,_0x163a7f['connectionInfo']=getConnectionInfo,_0x163a7f['devtoolsDetection']=getDevtoolsDetection,_0x163a7f['computedStyle']=getComputedStyleSignal,_0x163a7f['canvasRandom']=getCanvasRandom,_0x163a7f['cssSupportExtended']=getCssSupportExtended,_0x163a7f['bomEnumeration']=getBomEnumeration,_0x163a7f['audioContextInfo']=getAudioContextInfo,_0x163a7f['documentFocus']=getDocumentFocus,_0x163a7f['pluginsArray']=getPluginsArray,_0x163a7f['chromeRuntime']=getChromeRuntime,_0x163a7f['sourceUrlLeak']=getSourceUrlLeak,_0x163a7f['automationDescriptor']=getAutomationDescriptor,_0x163a7f['pluginOverflow']=getPluginOverflow,_0x163a7f['webdriverWritable']=getWebdriverWritable,_0x163a7f['cdpDetection']=getCdpDetection,_0x163a7f['playwrightMarkers']=getPlaywrightMarkers,_0x163a7f['navigatorDescriptors']=getNavigatorDescriptors,_0x163a7f['mediaCodecsExtended']=getMediaCodecsExtended,_0x163a7f['measuredTimezone']=getMeasuredTimezone,_0x163a7f['proxyDetection']=getProxyDetection,_0x163a7f['canvasModified']=getCanvasModified,_0x163a7f['gpuGibberish']=getGpuGibberish,_0x163a7f['extensionDetection']=getExtensionDetection,_0x163a7f['featureVersion']=getFeatureVersion,_0x163a7f['localeCurrency']=getLocaleCurrency,_0x163a7f['stackBytes']=getStackBytes,_0x163a7f['platformApiScoring']=getPlatformApiScoring,_0x163a7f['prototypeChain']=getPrototypeChain,_0x163a7f['screenVerify']=getScreenVerify,_0x163a7f['webGlBasics']=getWebGlBasics,_0x163a7f['webGlExtensions']=getWebGlExtensions,_0x163a7f['webGlCanvas']=getWebGlCanvas,_0x163a7f['webGlSphere']=getWebGlSphere,_0x163a7f['webGpuContention']=getWebGpuContention,_0x163a7f['webCodecsHardware']=getWebCodecsHardware,_0x163a7f['cssTrigPrecision']=getCssTrigPrecision,_0x163a7f['intlSegmenter']=getIntlSegmenter,_0x163a7f['performanceMemory']=getPerformanceMemory;const stage3Sources=_0x163a7f,_0x7d3eaf={...stage1Sources};_0x7d3eaf;function loadBuiltinSources(_0x3ffd59){const _0x1dc1e7={'initTime':performance['now'](),'stage1LoadStart':null,'idleResolvedAt':null,'stage23LoadStart':null,'getStart':null,'stage1Done':null,'stage23Done':null,'allDone':null},_0x388282=Object['keys'](stage1Sources)['length']>0x0,_0x574d48=_0x388282?((()=>{return _0x1dc1e7['stage1LoadStart']=performance['now'](),loadSources(stage1Sources,_0x3ffd59,[]);})()):null,_0x3a6df9={...stage2Sources,...stage3Sources},_0x273443=_0x3a6df9,_0xae30d3=requestIdleCallbackIfAvailable(0x8,0x10)['then'](()=>{return _0x1dc1e7['idleResolvedAt']=performance['now'](),_0x1dc1e7['stage23LoadStart']=performance['now'](),loadSources(_0x273443,_0x3ffd59,[]);});return _0xae30d3['then'](undefined,()=>undefined),async function _0x5bbdde(){_0x1dc1e7['getStart']=performance['now']();if(_0x574d48){const [_0x1034ad,_0x333412]=await Promise['all']([_0x574d48()['then'](_0x3ff84a=>{return _0x1dc1e7['stage1Done']=performance['now'](),_0x3ff84a;}),_0xae30d3['then'](_0x56e8c5=>_0x56e8c5())['then'](_0x2c3b0f=>{return _0x1dc1e7['stage23Done']=performance['now'](),_0x2c3b0f;})]);_0x1dc1e7['allDone']=performance['now']();const _0x3b779a={..._0x333412,..._0x1034ad};return _0x3b779a;}const _0x495580=await _0xae30d3,_0x3a76db=await _0x495580();return _0x1dc1e7['stage23Done']=performance['now'](),_0x1dc1e7['allDone']=performance['now'](),_0x3a76db;};}const version='0.0.1';function componentsToDebugString(_0x4dbaa1){return JSON['stringify'](_0x4dbaa1,(_0x46ab8b,_0x159e07)=>{if(_0x159e07 instanceof Error)return errorToObject(_0x159e07);return _0x159e07;},0x2);}function makeEngine(_0x4942ff,_0x53564e){const _0x554330=Date['now']();return{async 'get'(_0x1686f1){const _0x250ead=Date['now'](),_0x56838c=await _0x4942ff();(_0x53564e===!![]||_0x1686f1?.['debug']===!![])&&console['log']('Copy\x20the\x20text\x20below\x20to\x20get\x20the\x20debug\x20data:\x0a\x0a```\x0aversion:\x20'+version+'\x0auserAgent:\x20'+navigator['userAgent']+'\x0atimeBetweenLoadAndGet:\x20'+(_0x250ead-_0x554330)+'\x0acomponents:\x20'+componentsToDebugString(_0x56838c)+'\x0a```');const _0x3b6e8d={};return _0x3b6e8d['components']=_0x56838c,_0x3b6e8d['version']=version,_0x3b6e8d;}};}function load(_0x3e6128={}){const {debug:_0x12273c,proxyDetection:proxyDetection='high',apiKey:_0x57a04a,endpoint:_0x304ba8,linkedId:_0x25a88e,tag:_0x55221a}=_0x3e6128;setProxyDetectionMode(proxyDetection);const _0x58af51={};_0x58af51['cache']={},_0x58af51['debug']=_0x12273c;const _0x47f88e=loadBuiltinSources(_0x58af51),_0x3ffea3=makeEngine(_0x47f88e,_0x12273c);if(_0x57a04a!==undefined&&_0x304ba8!==undefined){const _0x386089={};_0x386089['apiKey']=_0x57a04a,_0x386089['endpoint']=_0x304ba8;const _0x33c35a={};_0x33c35a['linkedId']=_0x25a88e,_0x33c35a['tag']=_0x55221a,_0x3ffea3['result']=capture(_0x3ffea3,_0x386089,_0x33c35a)['catch'](_0x31c794=>{_0x12273c===!![]&&console['error']('[Sentinel]\x20auto-capture\x20failed:',_0x31c794);throw _0x31c794;});}return _0x3ffea3;}function start(_0xb2e44c){const {apiKey:_0x5798cf,endpoint:_0x37dab8,cache:_0x1fd8be,..._0x170d42}=_0xb2e44c,_0x4c856e=load(_0x170d42),_0x410d5c={};_0x410d5c['apiKey']=_0x5798cf,_0x410d5c['endpoint']=_0x37dab8;const _0x255054=_0x410d5c,_0x1e2a92=_0x1fd8be?createCache(_0x1fd8be):null;return{'get'(_0x2f3cce){const {ignoreCache:_0x284239,..._0x5b8ae4}=_0x2f3cce??{};if(!_0x284239&&_0x1e2a92!==null){const _0x4ff9c8=_0x1e2a92['get']();if(_0x4ff9c8!==null)return Promise['resolve'](_0x4ff9c8);}return capture(_0x4c856e,_0x255054,_0x5b8ae4)['then'](_0x3104cd=>{if(_0x1e2a92!==null)_0x1e2a92['set'](_0x3104cd);return _0x3104cd;});},'clearCache'(){if(_0x1e2a92!==null)_0x1e2a92['clear']();}};}const _0x50e4d4={};_0x50e4d4['start']=start;var index=_0x50e4d4;export{index as default,start};