@evomap/evolver 1.89.10 → 1.89.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. package/.cursor/BUGBOT.md +182 -0
  2. package/.env.example +68 -0
  3. package/.git-commit-guard-token +1 -0
  4. package/.github/CODEOWNERS +63 -0
  5. package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
  6. package/.github/pull_request_template.md +45 -0
  7. package/.github/workflows/test.yml +75 -0
  8. package/CHANGELOG.md +1367 -0
  9. package/README.ja-JP.md +1 -1
  10. package/README.ko-KR.md +1 -1
  11. package/README.md +90 -536
  12. package/README.public.md +578 -0
  13. package/README.zh-CN.md +1 -1
  14. package/SECURITY.md +108 -0
  15. package/assets/gep/events.jsonl +3 -0
  16. package/examples/atp-consumer-quickstart.md +100 -0
  17. package/examples/hello-world.md +38 -0
  18. package/index.js +5 -3
  19. package/package.json +6 -18
  20. package/proxy-package.json +39 -0
  21. package/public.manifest.json +145 -0
  22. package/src/adapters/scripts/evolver-session-end.js +18 -37
  23. package/src/atp/atpExecute.js +27 -71
  24. package/src/atp/serviceHelper.js +28 -36
  25. package/src/config.js +17 -0
  26. package/src/evolve/guards.js +721 -1
  27. package/src/evolve/pipeline/collect.js +1283 -1
  28. package/src/evolve/pipeline/dispatch.js +421 -1
  29. package/src/evolve/pipeline/enrich.js +440 -1
  30. package/src/evolve/pipeline/hub.js +319 -1
  31. package/src/evolve/pipeline/select.js +274 -1
  32. package/src/evolve/pipeline/signals.js +206 -1
  33. package/src/evolve/utils.js +264 -1
  34. package/src/evolve.js +350 -1
  35. package/src/gep/a2aProtocol.js +4463 -1
  36. package/src/gep/antiAbuseTelemetry.js +233 -1
  37. package/src/gep/autoDistillConv.js +205 -1
  38. package/src/gep/autoDistillLlm.js +315 -1
  39. package/src/gep/candidateEval.js +92 -1
  40. package/src/gep/candidates.js +198 -1
  41. package/src/gep/contentHash.js +30 -1
  42. package/src/gep/conversationDistiller.js +270 -0
  43. package/src/gep/conversationSniffer.js +266 -1
  44. package/src/gep/crypto.js +89 -1
  45. package/src/gep/curriculum.js +163 -1
  46. package/src/gep/deviceId.js +218 -1
  47. package/src/gep/envFingerprint.js +118 -1
  48. package/src/gep/epigenetics.js +31 -1
  49. package/src/gep/execBridge.js +712 -1
  50. package/src/gep/explore.js +289 -1
  51. package/src/gep/hash.js +15 -1
  52. package/src/gep/hubFetch.js +608 -1
  53. package/src/gep/hubReview.js +207 -1
  54. package/src/gep/hubSearch.js +526 -1
  55. package/src/gep/hubVerify.js +306 -1
  56. package/src/gep/learningSignals.js +89 -1
  57. package/src/gep/memoryGraph.js +1449 -1
  58. package/src/gep/memoryGraphAdapter.js +203 -1
  59. package/src/gep/mutation.js +203 -1
  60. package/src/gep/narrativeMemory.js +108 -1
  61. package/src/gep/oauthLogin.js +9 -3
  62. package/src/gep/openPRRegistry.js +205 -1
  63. package/src/gep/personality.js +423 -1
  64. package/src/gep/policyCheck.js +599 -1
  65. package/src/gep/privacyClient.js +10 -9
  66. package/src/gep/prompt.js +836 -1
  67. package/src/gep/questionGenerator.js +103 -0
  68. package/src/gep/recallInject.js +409 -1
  69. package/src/gep/recallVerifier.js +318 -1
  70. package/src/gep/reflection.js +177 -1
  71. package/src/gep/savingsCore.js +112 -1
  72. package/src/gep/selector.js +602 -1
  73. package/src/gep/signals.js +85 -17
  74. package/src/gep/skillDistiller.js +1294 -1
  75. package/src/gep/solidify.js +1699 -1
  76. package/src/gep/strategy.js +136 -1
  77. package/src/gep/tokenSavings.js +95 -1
  78. package/src/gep/workspaceKeychain.js +174 -1
  79. package/src/proxy/extensions/traceControl.js +109 -1
  80. package/src/proxy/index.js +100 -3
  81. package/src/proxy/inject.js +52 -1
  82. package/src/proxy/lifecycle/manager.js +108 -7
  83. package/src/proxy/server/routes.js +41 -7
  84. package/src/proxy/server/settings.js +6 -2
  85. package/src/proxy/sync/engine.js +31 -15
  86. package/src/proxy/sync/inbound.js +87 -9
  87. package/src/proxy/sync/outbound.js +57 -4
  88. package/src/proxy/trace/extractor.js +1403 -1
  89. package/src/proxy/trace/usage.js +105 -1
  90. package/CONTRIBUTING.md +0 -19
  91. package/assets/cover.png +0 -0
  92. package/scripts/a2a_export.js +0 -63
  93. package/scripts/a2a_ingest.js +0 -79
  94. package/scripts/a2a_promote.js +0 -118
  95. package/scripts/analyze_by_skill.js +0 -121
  96. package/scripts/build_binaries.js +0 -479
  97. package/scripts/check-changelog.js +0 -166
  98. package/scripts/extract_log.js +0 -85
  99. package/scripts/generate_history.js +0 -75
  100. package/scripts/gep_append_event.js +0 -96
  101. package/scripts/gep_personality_report.js +0 -234
  102. package/scripts/human_report.js +0 -147
  103. package/scripts/recall-verify-report.js +0 -234
  104. package/scripts/recover_loop.js +0 -61
  105. package/scripts/refresh_stars_badge.js +0 -168
  106. package/scripts/seed-merchants.js +0 -91
  107. package/scripts/suggest_version.js +0 -89
  108. package/scripts/validate-modules.js +0 -38
  109. package/scripts/validate-suite.js +0 -78
  110. package/skills/index.json +0 -14
  111. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  112. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,423 @@
1
- function _0x2c90(_0x24759a,_0x418eaa){_0x24759a=_0x24759a-(0x171*0x3+0x1cac+-0x2*0x103b);const _0x96f8cc=_0x5cf5();let _0x20f11f=_0x96f8cc[_0x24759a];if(_0x2c90['\x6c\x56\x72\x71\x59\x62']===undefined){var _0x52965f=function(_0x168f35){const _0x2ecd18='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';let _0xb50f8='',_0x175302='',_0x54f7bb=_0xb50f8+_0x52965f,_0x18407e=(''+function(){return 0x17d7*-0x1+0xab*-0x2f+0x373c;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x196*0xe+0x5*-0x233+-0xb34);for(let _0x467fab=-0x10a1+0x13d9+0x19c*-0x2,_0x308064,_0x2f2056,_0x49d8e=0x1*0x1b55+-0x26*0x77+-0x9ab;_0x2f2056=_0x168f35['\x63\x68\x61\x72\x41\x74'](_0x49d8e++);~_0x2f2056&&(_0x308064=_0x467fab%(-0x1c*-0x6d+0x22*-0x112+-0x2*-0xc3e)?_0x308064*(0x16c0+-0x301*-0x5+-0x235*0x11)+_0x2f2056:_0x2f2056,_0x467fab++%(-0x26e2+-0x11b4+0x389a))?_0xb50f8+=_0x18407e||_0x54f7bb['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x49d8e+(0x1*0x2597+-0x2b6*0x6+0x1549*-0x1))-(-0x19e5+-0x1946+-0x1*-0x3335)!==0x1a9b+0x1702+-0x319d?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x22fa+0x7d*-0x32+0x3c63&_0x308064>>(-(0x489+-0x1732+0x12ab)*_0x467fab&-0x3*-0x32b+-0x4*-0x137+-0xe57)):_0x467fab:0x18ae+-0x7*-0x21d+-0x2779){_0x2f2056=_0x2ecd18['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2f2056);}for(let _0x193f2f=0x1f05+-0xa03+0x1*-0x1502,_0x3f3a32=_0xb50f8['\x6c\x65\x6e\x67\x74\x68'];_0x193f2f<_0x3f3a32;_0x193f2f++){_0x175302+='\x25'+('\x30\x30'+_0xb50f8['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x193f2f)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x25c8+-0x1fcb+0x45a3))['\x73\x6c\x69\x63\x65'](-(-0x2*-0x1042+-0x268+0x1e1a*-0x1));}return decodeURIComponent(_0x175302);};const _0x2e1b92=function(_0x2d89bd,_0x6ab77d){let _0x5994fb=[],_0x5bfb82=0x2*0xe11+0x2cb*0x8+-0x327a,_0x2e0412,_0x426dde='';_0x2d89bd=_0x52965f(_0x2d89bd);let _0x34c711;for(_0x34c711=-0xb0b+0x106+0x1b*0x5f;_0x34c711<-0x2*-0x305+-0x1935+0x142b;_0x34c711++){_0x5994fb[_0x34c711]=_0x34c711;}for(_0x34c711=-0x641+0x2115*-0x1+-0x2756*-0x1;_0x34c711<-0x18de+0x197d+0x61;_0x34c711++){_0x5bfb82=(_0x5bfb82+_0x5994fb[_0x34c711]+_0x6ab77d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x34c711%_0x6ab77d['\x6c\x65\x6e\x67\x74\x68']))%(-0x618+0xb6a+0x9e*-0x7),_0x2e0412=_0x5994fb[_0x34c711],_0x5994fb[_0x34c711]=_0x5994fb[_0x5bfb82],_0x5994fb[_0x5bfb82]=_0x2e0412;}_0x34c711=-0xee8+0x59d*-0x1+-0x11*-0x135,_0x5bfb82=-0xf7*0x1+-0xc92*-0x1+-0xb9b;for(let _0x1431ad=0x7d3*-0x1+-0x1a76+0x83*0x43;_0x1431ad<_0x2d89bd['\x6c\x65\x6e\x67\x74\x68'];_0x1431ad++){_0x34c711=(_0x34c711+(-0x1*-0x1ae9+0xe06+-0x28ee))%(0x6*-0x5bc+-0x2*0xb93+0x3a8e*0x1),_0x5bfb82=(_0x5bfb82+_0x5994fb[_0x34c711])%(-0x7fe+-0x135a+-0x8*-0x38b),_0x2e0412=_0x5994fb[_0x34c711],_0x5994fb[_0x34c711]=_0x5994fb[_0x5bfb82],_0x5994fb[_0x5bfb82]=_0x2e0412,_0x426dde+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x2d89bd['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1431ad)^_0x5994fb[(_0x5994fb[_0x34c711]+_0x5994fb[_0x5bfb82])%(0xb99+0x1*-0x17e3+0x46e*0x3)]);}return _0x426dde;};_0x2c90['\x5a\x75\x67\x65\x71\x47']=_0x2e1b92,_0x2c90['\x66\x79\x4a\x70\x67\x52']={},_0x2c90['\x6c\x56\x72\x71\x59\x62']=!![];}const _0x4fe699=_0x96f8cc[-0x1041+-0x12*0xdb+0x1fa7],_0x1a065d=_0x24759a+_0x4fe699,_0x3e84b1=_0x2c90['\x66\x79\x4a\x70\x67\x52'][_0x1a065d];if(!_0x3e84b1){if(_0x2c90['\x6c\x6f\x52\x49\x76\x57']===undefined){const _0x2b243a=function(_0x4f6d7f){this['\x50\x52\x57\x4c\x6b\x47']=_0x4f6d7f,this['\x4f\x4d\x4f\x6f\x44\x44']=[-0x6d7+0x1988+-0x12b0,-0x103*0x20+-0x1e76+0x3ed6,0x1d2a*-0x1+0xa93*-0x3+0x3ce3],this['\x49\x6e\x79\x47\x62\x77']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x6e\x79\x47\x65\x77\x4c']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x74\x50\x56\x53\x4d\x75']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x2b243a['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x50\x66\x56\x46\x61\x65']=function(){const _0x26ce24=new RegExp(this['\x6e\x79\x47\x65\x77\x4c']+this['\x74\x50\x56\x53\x4d\x75']),_0x18e457=_0x26ce24['\x74\x65\x73\x74'](this['\x49\x6e\x79\x47\x62\x77']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x4f\x4d\x4f\x6f\x44\x44'][0x78b*-0x1+-0x1a*0x9d+0x1f*0xc2]:--this['\x4f\x4d\x4f\x6f\x44\x44'][-0x172*-0x9+0x139*0xb+-0x1a75];return this['\x45\x55\x6e\x59\x77\x4f'](_0x18e457);},_0x2b243a['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x45\x55\x6e\x59\x77\x4f']=function(_0x589f47){if(!Boolean(~_0x589f47))return _0x589f47;return this['\x57\x51\x4a\x62\x64\x77'](this['\x50\x52\x57\x4c\x6b\x47']);},_0x2b243a['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x57\x51\x4a\x62\x64\x77']=function(_0x54adcd){for(let _0x304e0c=0x2630+0x7f1+-0x2e21,_0x449885=this['\x4f\x4d\x4f\x6f\x44\x44']['\x6c\x65\x6e\x67\x74\x68'];_0x304e0c<_0x449885;_0x304e0c++){this['\x4f\x4d\x4f\x6f\x44\x44']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x449885=this['\x4f\x4d\x4f\x6f\x44\x44']['\x6c\x65\x6e\x67\x74\x68'];}return _0x54adcd(this['\x4f\x4d\x4f\x6f\x44\x44'][-0x5a*-0x5a+-0x7*0x100+-0x53*0x4c]);},(''+function(){return 0x1*0x651+0x4*0x7c8+0x9*-0x429;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x1*-0xde2+-0x2d*-0xf+0xb40)&&new _0x2b243a(_0x2c90)['\x50\x66\x56\x46\x61\x65'](),_0x2c90['\x6c\x6f\x52\x49\x76\x57']=!![];}_0x20f11f=_0x2c90['\x5a\x75\x67\x65\x71\x47'](_0x20f11f,_0x418eaa),_0x2c90['\x66\x79\x4a\x70\x67\x52'][_0x1a065d]=_0x20f11f;}else _0x20f11f=_0x3e84b1;return _0x20f11f;}const _0x64cedf=_0x2c90;(function(_0x361bb4,_0x1d847a){const _0x3de08d=_0x2c90,_0x1a58c1=_0x361bb4();while(!![]){try{const _0x58a074=parseInt(_0x3de08d(0x2ef,'\x28\x61\x67\x59'))/(-0x3bb*0x1+0x701+-0x345)*(-parseInt(_0x3de08d(0x168,'\x63\x6b\x5e\x7a'))/(0x2508+-0x16*-0x156+-0x426a))+parseInt(_0x3de08d(0x102,'\x46\x58\x45\x70'))/(0x53a+-0x35a+-0x1dd)*(parseInt(_0x3de08d(0x142,'\x68\x41\x28\x38'))/(0x24*0x7c+0x1a89+-0x1*0x2bf5))+parseInt(_0x3de08d(0x124,'\x33\x6d\x6d\x5e'))/(-0x1070*-0x1+-0xb*0x1fd+-0x1*-0x574)+-parseInt(_0x3de08d(0x287,'\x24\x77\x45\x77'))/(-0x11*-0x17+-0x1f*0x10c+-0x1a1*-0x13)+-parseInt(_0x3de08d(0x10b,'\x56\x6c\x55\x79'))/(0xcdb+0xb2e+-0xc01*0x2)*(parseInt(_0x3de08d(0x2df,'\x5b\x79\x62\x40'))/(0x1852+0x8d*0x11+-0x21a7*0x1))+parseInt(_0x3de08d(0x206,'\x54\x74\x4a\x32'))/(-0x188*0x7+0x2525+0x699*-0x4)*(parseInt(_0x3de08d(0xb4,'\x30\x4d\x62\x26'))/(0x13be+0xcae+0x5*-0x67a))+parseInt(_0x3de08d(0x205,'\x38\x45\x6a\x58'))/(0x6d*0x1+-0x8d9+-0x1*-0x877);if(_0x58a074===_0x1d847a)break;else _0x1a58c1['push'](_0x1a58c1['shift']());}catch(_0x2620bb){_0x1a58c1['push'](_0x1a58c1['shift']());}}}(_0x5cf5,0x6ccd4+-0xcddc7+0xf2f5b));const _0x1bccd7=(function(){let _0x3e0069=!![];return function(_0x4f3f9f,_0x347841){const _0xad5bb1=_0x3e0069?function(){const _0x141448=_0x2c90;if(_0x347841){const _0x3048cc=_0x347841[_0x141448(0xcf,'\x43\x4e\x29\x64')](_0x4f3f9f,arguments);return _0x347841=null,_0x3048cc;}}:function(){};return _0x3e0069=![],_0xad5bb1;};}()),_0x24930d=_0x1bccd7(this,function(){const _0x7b3089=_0x2c90,_0xab1d67={};_0xab1d67[_0x7b3089(0xc6,'\x54\x4f\x76\x51')]=_0x7b3089(0x27f,'\x73\x6b\x55\x23')+_0x7b3089(0x315,'\x2a\x6d\x61\x5b');const _0x100657=_0xab1d67;return _0x24930d[_0x7b3089(0x264,'\x63\x6b\x5e\x7a')]()[_0x7b3089(0x1b0,'\x63\x6b\x5e\x7a')](_0x100657[_0x7b3089(0xc4,'\x43\x47\x71\x5e')])[_0x7b3089(0x2c2,'\x5b\x79\x62\x40')]()[_0x7b3089(0x1ca,'\x28\x61\x67\x59')+_0x7b3089(0x35c,'\x43\x47\x71\x5e')](_0x24930d)[_0x7b3089(0xf7,'\x28\x71\x72\x37')](_0x100657[_0x7b3089(0x19b,'\x41\x5b\x42\x23')]);});_0x24930d();const _0x5b6e9a=require('\x66\x73'),_0x205cfc=require(_0x64cedf(0x185,'\x26\x52\x47\x50')),{getMemoryDir:_0xc707be}=require(_0x64cedf(0xd1,'\x42\x6c\x34\x61')),{hasOpportunitySignal:_0xd59b7e}=require(_0x64cedf(0x360,'\x39\x4d\x4e\x72')+'\x6f\x6e');function _0x3335af(){const _0x38a510=_0x64cedf;return new Date()[_0x38a510(0x2a7,'\x54\x74\x4a\x32')+_0x38a510(0xca,'\x33\x26\x73\x57')]();}function _0x1cb033(_0x55313d){const _0x3521bc=_0x64cedf,_0x560a86={'\x4f\x68\x42\x77\x6f':function(_0x2ba259,_0x45b7dd){return _0x2ba259(_0x45b7dd);}},_0x1b32e3=_0x560a86[_0x3521bc(0x187,'\x54\x4f\x76\x51')](Number,_0x55313d);if(!Number[_0x3521bc(0x1da,'\x46\x58\x45\x70')](_0x1b32e3))return-0x1809+0x5fa+-0x45*-0x43;return Math[_0x3521bc(0x1c5,'\x30\x65\x23\x4c')](-0x1cd*-0x4+0x1*0x85f+-0xf93,Math[_0x3521bc(0x238,'\x43\x47\x71\x5e')](-0x26bf+0xef0+-0x1fc*-0xc,_0x1b32e3));}function _0x5cf5(){const _0x1e2008=['\x74\x43\x6f\x54\x57\x52\x69\x64\x57\x4f\x37\x64\x56\x4e\x2f\x63\x54\x61','\x62\x75\x6e\x68\x6f\x6d\x6f\x79','\x42\x6d\x6b\x63\x57\x37\x46\x63\x48\x47','\x66\x43\x6b\x46\x72\x68\x6a\x44','\x57\x52\x42\x64\x53\x43\x6f\x56\x6e\x72\x6e\x48','\x61\x53\x6f\x36\x57\x37\x4b\x71\x66\x57','\x57\x52\x76\x64\x71\x71\x34\x4c','\x57\x52\x54\x75\x57\x37\x71\x63\x57\x37\x79','\x57\x51\x6c\x63\x4d\x48\x4e\x64\x4a\x53\x6f\x50','\x72\x43\x6b\x75\x57\x36\x64\x63\x49\x6d\x6f\x35','\x6a\x53\x6b\x47\x6a\x43\x6b\x79\x57\x51\x53','\x64\x6d\x6f\x34\x57\x4f\x4f\x63\x57\x37\x53','\x57\x34\x74\x64\x4c\x43\x6b\x62\x79\x6d\x6b\x49\x7a\x6d\x6f\x61\x71\x43\x6f\x56\x66\x74\x52\x64\x4f\x4d\x56\x64\x4c\x57','\x42\x38\x6b\x61\x68\x43\x6b\x6c\x57\x51\x68\x63\x4a\x6d\x6b\x50','\x57\x37\x74\x63\x51\x66\x70\x64\x51\x6d\x6f\x37\x6d\x47\x64\x64\x4d\x57','\x69\x43\x6b\x61\x46\x57\x4b\x73\x74\x5a\x79','\x62\x4d\x76\x68\x68\x38\x6f\x59\x43\x77\x71\x31','\x73\x48\x68\x64\x53\x38\x6f\x44\x57\x4f\x70\x63\x50\x47\x74\x64\x4c\x61','\x65\x31\x44\x53\x57\x4f\x4a\x63\x4b\x71','\x61\x71\x44\x63\x42\x38\x6b\x4e\x57\x34\x76\x2b\x65\x61','\x57\x52\x6c\x63\x4d\x6d\x6f\x4b\x6b\x6d\x6f\x7a','\x78\x43\x6f\x61\x71\x6d\x6b\x74\x64\x61','\x61\x53\x6b\x57\x76\x4a\x33\x63\x53\x48\x5a\x63\x50\x47','\x70\x38\x6b\x68\x72\x57','\x6b\x74\x48\x68\x44\x53\x6b\x6e','\x57\x37\x4e\x63\x48\x76\x5a\x64\x50\x43\x6f\x34','\x75\x6d\x6f\x4d\x57\x4f\x38\x42\x57\x4f\x61','\x42\x6d\x6b\x66\x57\x37\x37\x63\x55\x38\x6f\x5a','\x62\x77\x64\x64\x47\x53\x6b\x53\x73\x73\x70\x64\x4d\x64\x75','\x57\x52\x4c\x6d\x76\x76\x68\x63\x4b\x47','\x57\x52\x79\x6a\x57\x50\x31\x67\x72\x61','\x79\x43\x6f\x55\x57\x36\x5a\x64\x50\x67\x65\x35\x69\x33\x53','\x57\x35\x6c\x63\x54\x43\x6f\x58\x78\x6d\x6b\x30\x70\x59\x43\x4d','\x57\x51\x78\x64\x4c\x30\x64\x64\x4a\x6d\x6b\x36\x42\x43\x6f\x72','\x57\x51\x44\x64\x78\x58\x47\x52\x6d\x38\x6b\x61\x63\x57','\x65\x72\x7a\x56\x6c\x53\x6b\x41\x41\x63\x6d\x58','\x57\x50\x56\x64\x54\x47\x34','\x67\x4d\x39\x73\x57\x35\x43\x51\x57\x4f\x75\x57\x57\x50\x71','\x57\x52\x37\x64\x49\x38\x6f\x53\x6a\x58\x6e\x4f\x76\x43\x6b\x30','\x57\x51\x68\x63\x55\x77\x5a\x64\x4b\x4b\x65','\x67\x76\x37\x64\x48\x6d\x6b\x54\x42\x59\x78\x64\x50\x71','\x66\x65\x35\x77\x57\x50\x4a\x63\x4e\x71','\x42\x53\x6b\x39\x57\x36\x52\x63\x48\x38\x6f\x63','\x46\x6d\x6b\x6d\x57\x37\x64\x64\x4c\x53\x6f\x61\x57\x37\x34','\x67\x38\x6b\x32\x72\x64\x2f\x63\x55\x47','\x77\x6d\x6f\x66\x41\x6d\x6b\x45\x64\x71','\x57\x4f\x64\x64\x53\x47\x75\x77\x43\x71','\x57\x37\x52\x63\x50\x53\x6f\x31\x42\x38\x6b\x42','\x57\x51\x4f\x69\x57\x52\x31\x53\x74\x71','\x57\x50\x33\x64\x4f\x53\x6f\x51\x61\x58\x43','\x57\x51\x46\x63\x51\x6d\x6f\x65\x6e\x38\x6f\x69','\x57\x4f\x57\x77\x57\x4f\x42\x63\x4b\x66\x43','\x57\x35\x57\x45\x72\x31\x6e\x6b','\x62\x68\x35\x73\x65\x53\x6f\x56\x42\x68\x69\x77','\x43\x6d\x6b\x74\x57\x36\x52\x63\x48\x6d\x6b\x71','\x67\x43\x6b\x51\x7a\x64\x46\x63\x50\x72\x74\x63\x50\x57','\x68\x48\x50\x66\x42\x38\x6b\x34\x57\x36\x48\x2f\x68\x61','\x57\x37\x74\x63\x50\x30\x56\x64\x4f\x43\x6f\x35','\x57\x51\x2f\x63\x4b\x71\x68\x64\x4b\x53\x6f\x45\x57\x52\x70\x63\x4b\x75\x47','\x57\x36\x6d\x58\x76\x38\x6f\x79','\x57\x50\x33\x64\x55\x48\x4b','\x74\x62\x5a\x64\x55\x61','\x66\x67\x76\x56\x57\x52\x2f\x63\x47\x53\x6b\x55\x57\x34\x56\x64\x53\x57','\x62\x67\x6a\x69','\x6d\x31\x31\x51\x66\x53\x6f\x32','\x61\x4a\x79\x39\x57\x35\x61\x53','\x57\x51\x4e\x64\x4f\x6d\x6f\x5a\x6f\x57\x4c\x55','\x57\x34\x52\x63\x4b\x62\x4e\x64\x56\x38\x6b\x6e','\x57\x51\x4a\x64\x49\x78\x46\x63\x4c\x38\x6f\x46','\x57\x36\x78\x64\x55\x76\x31\x30\x57\x52\x43','\x7a\x6d\x6f\x4b\x43\x53\x6b\x6f\x6c\x38\x6f\x36\x57\x35\x38','\x64\x47\x62\x6d\x45\x38\x6b\x50\x57\x36\x4c\x2b\x67\x47','\x66\x6d\x6b\x4c\x42\x66\x79','\x57\x50\x6d\x34\x57\x50\x75','\x78\x53\x6b\x4d\x57\x51\x4f\x73\x57\x4f\x37\x64\x4f\x57','\x57\x4f\x6c\x64\x54\x48\x79\x65\x43\x32\x4b','\x57\x51\x52\x64\x4a\x75\x68\x64\x49\x53\x6b\x37\x44\x38\x6f\x68\x57\x37\x79','\x42\x53\x6b\x5a\x73\x53\x6f\x54\x57\x50\x44\x66\x57\x52\x6e\x78','\x57\x37\x52\x64\x53\x75\x54\x36\x57\x36\x72\x55\x79\x6d\x6f\x64','\x57\x4f\x66\x4f\x7a\x5a\x34\x6c','\x57\x51\x4a\x64\x53\x43\x6f\x47\x69\x71\x48\x4e','\x7a\x48\x6c\x64\x47\x38\x6f\x38\x57\x51\x43','\x73\x53\x6b\x32\x57\x34\x74\x63\x49\x6d\x6b\x67','\x57\x50\x52\x63\x4a\x53\x6f\x43\x6e\x43\x6f\x5a\x6b\x71','\x57\x36\x4b\x35\x7a\x66\x6a\x33\x57\x35\x48\x4c\x57\x34\x61','\x6a\x53\x6b\x54\x6f\x6d\x6b\x6c\x57\x51\x46\x63\x4c\x43\x6b\x66\x57\x50\x4f','\x57\x52\x33\x64\x48\x31\x4f','\x57\x36\x2f\x64\x54\x75\x4c\x4d\x57\x50\x72\x4f\x46\x53\x6f\x72','\x6e\x6d\x6b\x64\x41\x62\x69\x32','\x57\x4f\x4a\x63\x4e\x6d\x6f\x6b\x71\x57','\x69\x74\x62\x6e\x6e\x38\x6b\x64','\x57\x36\x53\x55\x41\x4c\x76\x33\x57\x35\x75','\x73\x48\x46\x64\x53\x38\x6f\x76','\x57\x35\x72\x44\x57\x34\x64\x63\x50\x47','\x57\x52\x58\x48\x64\x6d\x6b\x7a','\x57\x34\x74\x63\x55\x53\x6f\x7a\x76\x38\x6b\x2f','\x7a\x49\x47\x6f\x57\x51\x58\x72\x57\x51\x7a\x30\x6f\x61','\x57\x4f\x2f\x64\x48\x32\x5a\x64\x4f\x38\x6b\x56','\x61\x4b\x4c\x54\x57\x51\x74\x63\x4c\x38\x6b\x4a\x57\x35\x42\x64\x52\x47','\x57\x34\x43\x2b\x76\x53\x6f\x65\x57\x36\x34','\x6e\x6d\x6b\x31\x46\x75\x35\x4d','\x57\x4f\x76\x55\x72\x62\x34\x6a','\x57\x52\x4a\x63\x54\x6d\x6b\x52\x57\x4f\x43\x48','\x57\x4f\x64\x63\x49\x53\x6f\x72\x6b\x43\x6f\x6b','\x61\x38\x6f\x55\x57\x35\x37\x63\x48\x31\x71','\x45\x53\x6f\x34\x57\x52\x4f\x4b\x57\x4f\x43','\x57\x51\x52\x63\x51\x78\x74\x64\x48\x75\x39\x73\x74\x61','\x63\x6d\x6f\x32\x57\x51\x53\x78\x57\x36\x74\x64\x4e\x30\x6c\x63\x4c\x57','\x57\x50\x62\x77\x76\x5a\x38\x49','\x6b\x6d\x6b\x53\x77\x65\x43\x33','\x6c\x62\x34\x43\x57\x37\x61\x46','\x6e\x6d\x6f\x67\x73\x4e\x76\x32\x57\x52\x6c\x64\x4a\x4c\x53','\x6d\x6d\x6f\x47\x57\x51\x53','\x57\x52\x56\x64\x4c\x31\x46\x64\x4a\x53\x6b\x52\x44\x38\x6f\x6e\x57\x37\x79','\x64\x38\x6b\x5a\x61\x38\x6b\x79\x57\x51\x65','\x64\x61\x43\x44\x57\x35\x34\x76','\x57\x50\x5a\x63\x4a\x6d\x6f\x76\x78\x59\x79','\x78\x6d\x6f\x4f\x43\x38\x6b\x6a\x6c\x38\x6f\x4d\x57\x34\x46\x64\x4f\x47','\x42\x76\x42\x64\x55\x38\x6b\x43\x65\x4e\x44\x4b\x43\x57','\x57\x4f\x2f\x64\x4a\x4b\x33\x63\x50\x6d\x6f\x6a','\x57\x50\x53\x52\x57\x50\x35\x41\x7a\x43\x6b\x70\x57\x34\x70\x63\x55\x61','\x44\x38\x6b\x6c\x57\x34\x4a\x63\x50\x53\x6f\x78','\x57\x51\x6c\x64\x51\x67\x37\x63\x4b\x53\x6f\x30','\x57\x51\x48\x31\x46\x73\x4f\x6b','\x41\x53\x6b\x73\x57\x36\x64\x63\x4a\x6d\x6b\x78','\x57\x50\x5a\x63\x4e\x38\x6f\x57\x6f\x43\x6f\x2b\x6e\x6d\x6b\x62\x68\x61','\x73\x38\x6f\x54\x57\x52\x69\x73\x57\x4f\x37\x64\x4f\x33\x46\x63\x52\x61','\x79\x63\x75\x66','\x41\x53\x6b\x73\x57\x37\x74\x63\x49\x6d\x6b\x36\x71\x78\x47\x79','\x45\x38\x6b\x6f\x57\x37\x78\x63\x4b\x43\x6b\x61\x77\x32\x6d','\x68\x38\x6b\x53\x72\x74\x68\x63\x52\x57','\x45\x31\x74\x64\x55\x53\x6b\x43\x65\x4e\x54\x32\x72\x71','\x78\x5a\x5a\x64\x4c\x43\x6f\x36\x57\x4f\x69','\x57\x35\x37\x63\x4f\x53\x6f\x4d\x73\x53\x6b\x34\x6e\x64\x30','\x44\x72\x4c\x37\x6f\x43\x6f\x4b\x6e\x47\x5a\x63\x4f\x47','\x41\x38\x6f\x54\x57\x52\x69\x73\x57\x4f\x37\x64\x4f\x33\x46\x63\x52\x61','\x68\x66\x76\x4c\x57\x50\x78\x63\x4b\x38\x6b\x39\x57\x34\x33\x64\x54\x71','\x57\x52\x56\x63\x48\x43\x6f\x36\x67\x43\x6f\x41','\x57\x34\x42\x63\x54\x49\x78\x64\x56\x53\x6b\x6e','\x57\x4f\x4e\x64\x4f\x6d\x6f\x4c\x68\x59\x53','\x6c\x53\x6b\x4c\x78\x30\x35\x45','\x57\x36\x37\x64\x53\x76\x35\x57\x57\x51\x54\x4a','\x57\x36\x74\x64\x47\x43\x6f\x75\x57\x37\x76\x38\x57\x50\x30\x47\x6c\x43\x6b\x44\x57\x37\x64\x64\x4c\x43\x6b\x33\x44\x57','\x57\x4f\x46\x63\x49\x43\x6f\x78\x69\x38\x6f\x2f\x6d\x57','\x57\x50\x64\x63\x50\x43\x6b\x54\x57\x52\x47\x68','\x45\x5a\x47\x50\x57\x51\x7a\x69','\x57\x36\x50\x64\x57\x34\x74\x63\x49\x73\x30','\x74\x30\x68\x64\x51\x31\x53\x50','\x57\x50\x39\x6a\x57\x34\x34\x78\x57\x36\x74\x63\x56\x38\x6f\x6d\x57\x50\x47','\x57\x51\x6a\x73\x74\x61\x34\x33','\x6c\x53\x6b\x46\x78\x68\x38','\x57\x52\x75\x6b\x57\x4f\x48\x64\x46\x47','\x57\x37\x76\x33\x57\x37\x5a\x63\x54\x57\x38','\x57\x37\x64\x63\x4c\x43\x6f\x4c\x75\x53\x6b\x56','\x57\x35\x74\x63\x55\x43\x6f\x33\x76\x6d\x6b\x4f\x70\x49\x57\x32','\x57\x50\x66\x4f\x41\x78\x74\x64\x49\x63\x6e\x65\x57\x36\x65','\x65\x32\x33\x64\x49\x6d\x6b\x38\x77\x63\x70\x64\x55\x61','\x57\x34\x4c\x71\x57\x34\x4e\x64\x4f\x58\x62\x35\x7a\x43\x6b\x47','\x68\x53\x6b\x58\x71\x59\x52\x63\x52\x47','\x57\x52\x42\x63\x51\x77\x70\x64\x48\x75\x76\x6d\x77\x47','\x6b\x38\x6f\x33\x57\x52\x42\x63\x51\x43\x6f\x52','\x45\x4b\x52\x64\x55\x53\x6b\x7a','\x7a\x43\x6f\x2b\x71\x6d\x6b\x69\x6d\x53\x6f\x50\x57\x35\x38','\x77\x4d\x30\x4b\x73\x71','\x68\x48\x4c\x6b\x43\x43\x6b\x38\x57\x51\x4f\x37','\x57\x52\x42\x64\x48\x67\x34','\x57\x50\x4c\x75\x57\x35\x30\x67\x57\x37\x6d','\x57\x37\x72\x4c\x57\x36\x78\x63\x55\x57\x34','\x44\x53\x6b\x55\x71\x53\x6f\x4b','\x66\x66\x65\x45\x57\x35\x47\x4d\x57\x4f\x56\x63\x47\x73\x38','\x62\x47\x58\x72\x6d\x38\x6b\x69\x79\x59\x75','\x67\x76\x76\x53','\x57\x51\x64\x64\x4c\x65\x42\x64\x48\x53\x6b\x45','\x57\x4f\x56\x63\x4e\x43\x6f\x79\x78\x59\x69','\x69\x53\x6b\x55\x68\x53\x6b\x51\x57\x4f\x4e\x63\x53\x53\x6b\x79\x57\x4f\x43','\x57\x37\x74\x64\x53\x4e\x66\x32\x57\x4f\x65','\x57\x37\x33\x64\x4f\x4c\x48\x43\x57\x52\x44\x55\x79\x38\x6f\x71','\x57\x4f\x75\x67\x57\x50\x37\x63\x48\x75\x69\x48\x57\x34\x50\x48','\x6a\x53\x6b\x5a\x42\x4c\x61\x5a\x57\x4f\x57\x58\x57\x37\x75','\x62\x66\x39\x4d','\x6d\x53\x6b\x61\x46\x48\x6d','\x65\x31\x38\x2f','\x6a\x43\x6b\x31\x6e\x53\x6b\x6e\x57\x51\x6d','\x64\x43\x6b\x50\x41\x66\x69\x49\x57\x4f\x66\x2b\x57\x36\x53','\x57\x37\x33\x63\x49\x32\x4e\x64\x54\x53\x6f\x77','\x63\x78\x48\x66\x57\x34\x75\x58\x57\x4f\x69\x4e\x57\x50\x65','\x57\x51\x47\x50\x57\x4f\x35\x39\x41\x47','\x65\x6d\x6b\x55\x43\x30\x43\x35\x57\x4f\x54\x2b\x57\x36\x4b','\x62\x38\x6f\x47\x57\x36\x4e\x63\x51\x68\x5a\x64\x4c\x38\x6b\x6d\x57\x52\x30','\x75\x38\x6f\x48\x57\x52\x6d\x76\x57\x4f\x37\x64\x56\x32\x38','\x66\x38\x6f\x75\x57\x50\x78\x63\x51\x6d\x6f\x46','\x44\x43\x6b\x41\x57\x37\x38','\x57\x37\x46\x63\x55\x38\x6f\x4b\x73\x38\x6b\x43','\x57\x51\x34\x58\x57\x4f\x54\x2f\x46\x47','\x42\x43\x6b\x79\x57\x34\x2f\x63\x4c\x6d\x6b\x67','\x57\x37\x56\x63\x4c\x43\x6f\x45\x46\x43\x6b\x6d','\x57\x4f\x30\x31\x57\x4f\x72\x77\x42\x47','\x57\x52\x74\x64\x55\x38\x6f\x33\x6d\x58\x6e\x47\x74\x53\x6b\x5a','\x57\x4f\x46\x64\x53\x48\x47\x58\x46\x47','\x57\x4f\x35\x70\x73\x71','\x57\x51\x54\x50\x57\x37\x69\x6c\x57\x34\x65','\x76\x67\x56\x64\x56\x76\x75\x6f\x57\x36\x53\x6d\x69\x57','\x57\x50\x4e\x64\x50\x57\x34\x36\x41\x78\x6e\x48\x57\x34\x30','\x57\x50\x2f\x64\x50\x47\x6d\x75\x43\x32\x50\x4c','\x57\x37\x78\x64\x4f\x65\x7a\x71\x57\x52\x62\x53\x45\x6d\x6f\x68','\x6c\x38\x6b\x58\x43\x71\x4a\x63\x49\x61','\x57\x37\x61\x6b\x41\x75\x31\x55','\x6a\x6d\x6f\x6d\x57\x36\x4b\x35\x6d\x61','\x63\x74\x48\x73\x43\x43\x6b\x65','\x6a\x43\x6b\x77\x74\x78\x47\x44','\x6e\x43\x6b\x65\x72\x4e\x39\x4e\x57\x36\x79','\x66\x6d\x6f\x48\x57\x37\x68\x63\x51\x68\x37\x64\x4c\x57','\x62\x6d\x6f\x6f\x57\x35\x6d\x65\x67\x47','\x57\x52\x33\x63\x4b\x53\x6b\x6f\x57\x51\x75\x58\x57\x34\x79','\x70\x6d\x6f\x32\x57\x34\x57\x57\x65\x5a\x4f\x6a\x41\x47','\x66\x43\x6b\x6b\x68\x38\x6b\x70\x57\x4f\x57','\x57\x37\x52\x63\x50\x4c\x78\x64\x4f\x53\x6f\x56\x7a\x47','\x57\x35\x4c\x65\x57\x35\x2f\x64\x4b\x47\x44\x39\x57\x50\x31\x39\x77\x68\x4e\x64\x4d\x4d\x5a\x63\x49\x61','\x65\x58\x72\x46\x41\x43\x6b\x2b\x57\x37\x54\x4d\x69\x61','\x67\x58\x58\x68\x41\x6d\x6b\x50\x57\x36\x47','\x75\x59\x75\x2b\x57\x51\x39\x5a','\x57\x36\x37\x64\x54\x73\x56\x63\x47\x47','\x41\x53\x6b\x36\x7a\x43\x6f\x38\x57\x4f\x69','\x57\x36\x46\x63\x4f\x76\x37\x64\x54\x6d\x6f\x4a\x46\x61','\x57\x52\x4e\x64\x49\x78\x56\x63\x4b\x61','\x57\x50\x53\x78\x57\x52\x2f\x63\x47\x4e\x61','\x64\x53\x6f\x57\x57\x4f\x53\x69\x57\x34\x4e\x64\x47\x4b\x70\x63\x4e\x61','\x65\x38\x6b\x4f\x46\x75\x43\x5a','\x65\x53\x6b\x35\x46\x75\x61\x35\x57\x4f\x79','\x41\x4a\x38\x7a\x57\x52\x50\x44\x57\x51\x31\x55','\x65\x74\x78\x63\x4e\x48\x66\x65\x57\x36\x47\x4d\x6e\x33\x4a\x63\x52\x68\x79','\x6a\x6d\x6b\x41\x46\x58\x47\x73\x43\x73\x54\x58','\x61\x30\x35\x4a\x57\x52\x37\x63\x4b\x57','\x79\x43\x6b\x43\x57\x36\x78\x64\x48\x53\x6f\x61\x57\x37\x30\x46','\x78\x43\x6b\x31\x74\x57','\x70\x61\x76\x72\x77\x43\x6b\x51','\x57\x52\x48\x76\x42\x61\x47\x32\x69\x43\x6b\x71','\x57\x4f\x46\x63\x56\x63\x68\x64\x50\x38\x6f\x64','\x66\x43\x6f\x54\x57\x36\x57\x4c\x6f\x57','\x57\x52\x37\x64\x49\x31\x64\x64\x4d\x38\x6b\x57\x42\x6d\x6f\x42','\x57\x50\x4c\x75\x57\x35\x30\x67\x57\x36\x75','\x71\x53\x6f\x4b\x73\x6d\x6b\x37\x6e\x61','\x6c\x43\x6f\x30\x57\x51\x64\x63\x51\x61','\x68\x67\x39\x66\x57\x34\x75\x33\x57\x4f\x53\x7a\x57\x50\x6d','\x57\x50\x46\x64\x54\x62\x69\x65\x41\x67\x6a\x4b\x57\x50\x4b','\x6d\x6d\x6b\x71\x42\x61\x47\x79\x74\x57','\x57\x51\x2f\x64\x56\x78\x48\x30\x57\x50\x7a\x47\x7a\x61','\x57\x51\x56\x63\x4b\x6d\x6f\x78\x73\x61','\x76\x48\x2f\x64\x56\x38\x6f\x41\x57\x4f\x38','\x75\x6d\x6f\x39\x57\x37\x4e\x64\x49\x68\x30\x30\x6c\x77\x75','\x57\x50\x47\x73\x57\x50\x4a\x63\x48\x76\x53','\x68\x53\x6b\x58\x71\x59\x52\x63\x55\x61','\x57\x50\x64\x63\x4c\x6d\x6f\x46\x69\x38\x6f\x4b\x6c\x53\x6b\x4d\x61\x61','\x57\x37\x46\x64\x4a\x30\x74\x63\x4d\x53\x6f\x65\x57\x51\x42\x63\x56\x4d\x47\x6f\x57\x37\x71','\x57\x52\x64\x63\x4a\x62\x74\x64\x4e\x38\x6f\x2b','\x71\x33\x43\x35','\x57\x50\x48\x71\x57\x35\x43\x51\x57\x34\x71','\x6c\x77\x35\x37\x57\x35\x71\x33','\x63\x68\x72\x34\x57\x52\x4e\x63\x52\x61','\x77\x77\x57\x32\x75\x38\x6b\x31\x57\x35\x64\x64\x4e\x74\x38','\x57\x4f\x58\x6a\x57\x35\x61\x67\x57\x36\x78\x64\x52\x71','\x63\x53\x6f\x56\x57\x50\x30\x6b\x57\x35\x43','\x57\x34\x37\x63\x4f\x38\x6f\x31\x74\x6d\x6b\x55','\x57\x52\x68\x63\x4e\x4c\x70\x64\x4c\x31\x4f','\x68\x5a\x7a\x56\x73\x53\x6b\x34','\x6b\x6d\x6f\x43\x57\x51\x57\x49\x57\x37\x65','\x45\x49\x4b\x65\x57\x52\x50\x44','\x57\x4f\x58\x62\x57\x35\x75\x45','\x57\x51\x52\x63\x56\x4d\x78\x64\x47\x4b\x4c\x41\x72\x38\x6b\x47','\x57\x4f\x58\x37\x42\x78\x78\x63\x4e\x63\x76\x39\x57\x36\x57','\x79\x38\x6f\x54\x57\x37\x4e\x64\x49\x78\x43\x30\x6f\x61','\x43\x38\x6f\x79\x57\x52\x61\x73\x57\x51\x34','\x77\x43\x6f\x6b\x57\x34\x6c\x64\x4c\x77\x75','\x57\x36\x4a\x63\x52\x48\x5a\x64\x56\x6d\x6b\x4e','\x68\x43\x6f\x51\x57\x37\x46\x63\x55\x78\x4a\x64\x4b\x71','\x57\x4f\x4a\x63\x49\x6d\x6f\x6c\x77\x63\x69','\x61\x53\x6b\x52\x75\x71','\x44\x47\x56\x64\x4b\x53\x6f\x50\x57\x51\x4b','\x57\x4f\x68\x64\x4e\x31\x2f\x63\x4d\x43\x6f\x35','\x43\x71\x71\x72\x57\x52\x54\x49','\x57\x36\x4e\x63\x4c\x49\x4a\x64\x48\x38\x6b\x6c\x57\x52\x4c\x6e\x6d\x62\x57\x37\x57\x36\x72\x58\x57\x36\x30','\x57\x50\x6e\x6f\x42\x32\x78\x63\x4e\x61','\x6e\x43\x6b\x57\x76\x74\x46\x63\x55\x61','\x62\x6d\x6f\x79\x57\x4f\x68\x63\x4a\x6d\x6f\x55','\x76\x4c\x57\x61\x6f\x61','\x57\x50\x39\x32\x57\x35\x30\x68\x57\x37\x65','\x61\x68\x39\x46\x69\x6d\x6f\x56\x7a\x67\x4b\x44','\x57\x52\x4a\x63\x48\x6d\x6b\x4d\x57\x51\x53\x52\x57\x34\x44\x4d\x6d\x71','\x71\x78\x6c\x64\x49\x78\x34\x70\x57\x36\x65\x6e\x6e\x47','\x6c\x38\x6f\x4b\x57\x52\x46\x63\x54\x43\x6f\x6a\x6d\x49\x58\x69','\x65\x38\x6b\x47\x57\x36\x48\x70\x57\x34\x52\x63\x50\x64\x33\x64\x51\x71','\x62\x4b\x58\x4e\x57\x51\x70\x63\x54\x57','\x7a\x6d\x6f\x39\x57\x36\x46\x64\x4a\x33\x6d','\x57\x52\x38\x34\x73\x38\x6f\x43\x57\x34\x37\x63\x4a\x53\x6f\x4c\x6a\x71','\x6e\x6d\x6b\x75\x42\x4c\x61\x58','\x74\x64\x64\x64\x4e\x43\x6f\x38\x57\x4f\x34','\x77\x6d\x6f\x36\x57\x34\x68\x64\x49\x30\x69','\x57\x36\x69\x52\x42\x38\x6f\x6b\x57\x35\x4b','\x57\x36\x4a\x63\x54\x6d\x6f\x45\x41\x6d\x6b\x52','\x57\x37\x42\x64\x48\x31\x78\x64\x4a\x53\x6b\x5a\x42\x43\x6b\x6c','\x6f\x53\x6b\x73\x67\x38\x6b\x77\x57\x51\x38','\x57\x36\x46\x63\x52\x76\x4a\x64\x51\x6d\x6f\x2b','\x57\x51\x37\x64\x52\x43\x6f\x73\x6a\x47\x7a\x39\x72\x61','\x43\x43\x6b\x4f\x73\x53\x6f\x39\x57\x52\x71','\x57\x52\x4e\x63\x49\x38\x6f\x61\x74\x49\x71','\x57\x50\x4a\x63\x4a\x43\x6f\x67','\x62\x43\x6b\x59\x72\x74\x68\x63\x48\x61','\x57\x4f\x54\x63\x57\x35\x61\x78\x57\x36\x71','\x57\x52\x46\x64\x4b\x4c\x70\x64\x47\x38\x6b\x32\x45\x38\x6f\x67','\x6b\x43\x6f\x34\x57\x51\x70\x63\x50\x71','\x57\x4f\x2f\x63\x49\x76\x78\x64\x4c\x4c\x79','\x57\x52\x74\x63\x48\x43\x6f\x61\x57\x51\x43\x33\x57\x35\x58\x39\x6a\x47','\x72\x71\x47\x39\x57\x52\x58\x37','\x75\x4c\x79\x54\x75\x53\x6b\x42','\x57\x4f\x34\x30\x57\x50\x37\x63\x49\x4e\x53','\x6b\x5a\x35\x79\x74\x38\x6b\x47','\x73\x77\x4f\x59\x71\x6d\x6b\x31\x57\x34\x52\x64\x56\x64\x38','\x7a\x38\x6b\x36\x57\x37\x64\x64\x52\x6d\x6f\x2f','\x57\x50\x70\x64\x50\x47\x75\x66\x45\x77\x4c\x30','\x77\x4e\x4b\x4c\x71\x6d\x6b\x53','\x57\x35\x74\x63\x48\x75\x2f\x64\x4e\x43\x6f\x4b','\x64\x71\x62\x79\x44\x61','\x57\x50\x33\x64\x53\x47\x38','\x57\x51\x69\x42\x57\x52\x52\x63\x53\x78\x6d','\x7a\x38\x6b\x4b\x71\x53\x6f\x36\x57\x52\x6e\x74\x57\x50\x6a\x44','\x57\x34\x33\x63\x54\x53\x6f\x4d\x77\x43\x6b\x57','\x78\x43\x6f\x50\x57\x51\x4b\x6e\x57\x4f\x74\x64\x51\x71','\x6e\x38\x6b\x68\x78\x61','\x6e\x43\x6b\x61\x7a\x74\x4f\x71','\x43\x53\x6f\x39\x57\x36\x52\x64\x4e\x31\x71\x5a\x69\x67\x57','\x57\x51\x6a\x74\x73\x48\x30\x48\x6d\x38\x6b\x44\x67\x47','\x57\x35\x6e\x62\x57\x35\x68\x63\x53\x71\x62\x34','\x57\x34\x35\x6a\x57\x35\x46\x63\x50\x49\x30','\x57\x35\x64\x63\x4f\x53\x6f\x47\x77\x43\x6b\x50\x6d\x59\x79\x52','\x57\x52\x56\x64\x50\x6d\x6f\x58\x70\x47\x35\x53\x72\x71','\x57\x34\x4e\x63\x50\x43\x6f\x39\x76\x71','\x57\x51\x7a\x4a\x42\x4e\x42\x63\x4d\x47','\x63\x43\x6f\x51\x57\x37\x5a\x63\x4f\x4d\x38','\x70\x43\x6b\x47\x75\x63\x33\x63\x53\x48\x2f\x63\x4f\x48\x71','\x7a\x72\x4b\x4e\x57\x51\x44\x72','\x57\x4f\x46\x63\x50\x53\x6b\x70\x57\x50\x65\x46','\x57\x50\x50\x76\x57\x34\x38\x41','\x64\x38\x6b\x53\x42\x66\x57\x4b\x57\x50\x58\x4b\x57\x36\x53','\x6d\x38\x6b\x71\x71\x32\x35\x42\x57\x37\x46\x64\x4e\x30\x75','\x57\x50\x42\x63\x49\x32\x33\x64\x56\x4e\x79','\x6a\x4c\x62\x71\x57\x50\x56\x63\x56\x57','\x61\x53\x6f\x4c\x57\x51\x68\x63\x51\x43\x6f\x6d\x69\x57','\x68\x43\x6f\x49\x57\x37\x6c\x63\x4f\x78\x4a\x64\x48\x57','\x67\x53\x6f\x34\x57\x50\x65\x70','\x57\x51\x52\x64\x50\x53\x6f\x55\x6a\x47\x48\x51\x74\x53\x6b\x58','\x67\x61\x43\x6c','\x57\x34\x4e\x63\x56\x53\x6f\x49\x78\x43\x6f\x39\x70\x63\x47\x53','\x57\x50\x56\x64\x50\x6d\x6f\x37\x66\x57\x65','\x62\x38\x6b\x51\x73\x5a\x61','\x42\x4b\x70\x64\x52\x43\x6b\x46\x63\x77\x66\x50\x77\x61','\x68\x77\x72\x75','\x57\x37\x6d\x54\x73\x38\x6f\x6a\x57\x35\x53','\x61\x53\x6f\x71\x57\x34\x56\x63\x4e\x76\x6d','\x46\x66\x74\x64\x54\x53\x6b\x42\x65\x4a\x6a\x4c\x71\x47','\x74\x53\x6f\x5a\x43\x75\x79\x49\x57\x4f\x4c\x4c\x57\x36\x57','\x6a\x38\x6b\x68\x42\x62\x75\x75\x72\x61','\x79\x6d\x6f\x49\x43\x38\x6b\x42\x6e\x6d\x6f\x48\x57\x34\x4e\x64\x4f\x61','\x6c\x43\x6b\x75\x73\x4e\x47\x56','\x75\x53\x6f\x38\x57\x52\x4c\x43','\x70\x38\x6f\x69\x57\x51\x53\x30\x57\x37\x4b','\x6f\x53\x6b\x34\x6f\x43\x6b\x47\x57\x4f\x4f','\x64\x77\x39\x45\x57\x35\x53','\x57\x34\x4b\x55\x45\x76\x76\x33\x57\x35\x76\x52\x57\x34\x61','\x75\x4e\x46\x64\x47\x75\x38\x44\x57\x36\x34\x6c\x6d\x61','\x76\x78\x64\x64\x49\x62\x4b','\x42\x53\x6f\x43\x57\x34\x68\x64\x55\x68\x57','\x65\x48\x54\x79','\x46\x65\x70\x64\x53\x38\x6b\x6a\x62\x57','\x67\x65\x4c\x6c\x57\x4f\x56\x63\x52\x57','\x57\x50\x68\x64\x56\x31\x43\x74\x45\x78\x6e\x4c\x57\x35\x4f','\x69\x6d\x6f\x57\x57\x34\x30\x32\x6c\x73\x69\x70\x46\x61','\x6d\x31\x61\x4e\x79\x53\x6b\x39\x46\x4b\x56\x64\x4c\x61','\x66\x47\x58\x65\x6a\x53\x6b\x69\x46\x49\x75\x78','\x69\x77\x46\x64\x4c\x43\x6b\x70\x61\x78\x39\x66','\x6a\x43\x6b\x31\x6e\x53\x6b\x6e\x57\x52\x75','\x57\x37\x4f\x35\x42\x4b\x44\x53\x57\x35\x6a\x38\x57\x34\x75','\x61\x68\x48\x47\x67\x53\x6f\x31\x42\x67\x4b\x44','\x57\x4f\x5a\x63\x4b\x6d\x6f\x6a\x74\x47','\x79\x43\x6b\x56\x45\x38\x6f\x57\x57\x4f\x4f','\x66\x47\x31\x63\x6e\x43\x6b\x45','\x73\x48\x68\x64\x56\x6d\x6f\x43\x57\x4f\x4e\x63\x54\x57','\x57\x50\x35\x4a\x79\x67\x4a\x63\x4e\x33\x7a\x70\x57\x37\x30','\x57\x51\x6e\x64\x74\x61\x4b\x52\x6c\x47','\x57\x51\x5a\x63\x4b\x71\x42\x64\x4a\x47','\x63\x78\x46\x64\x48\x71','\x57\x34\x4e\x63\x53\x53\x6f\x57','\x57\x4f\x56\x63\x48\x43\x6f\x71\x73\x63\x69','\x70\x6d\x6b\x68\x72\x78\x79','\x57\x52\x6c\x63\x48\x43\x6b\x66\x57\x51\x6d\x58\x57\x34\x44\x4b\x70\x71','\x76\x47\x46\x64\x50\x6d\x6f\x71\x57\x4f\x74\x63\x50\x61\x70\x64\x4b\x71','\x76\x4d\x68\x64\x4e\x65\x6d\x74\x57\x37\x65\x6c\x6d\x61','\x57\x34\x5a\x64\x4b\x68\x50\x58\x57\x51\x75','\x57\x52\x78\x63\x53\x67\x2f\x64\x4c\x65\x66\x6c\x71\x6d\x6b\x53','\x57\x51\x52\x64\x4d\x49\x43\x54\x76\x57','\x57\x37\x6d\x70\x46\x38\x6f\x73\x57\x36\x57','\x57\x4f\x44\x6c\x57\x35\x47\x42\x57\x37\x6c\x64\x4a\x6d\x6b\x44\x57\x4f\x79','\x6d\x33\x57\x39\x44\x6d\x6b\x45','\x6d\x43\x6f\x52\x57\x35\x53\x38\x62\x4a\x38\x77\x45\x71','\x77\x32\x47\x5a\x75\x38\x6b\x37','\x57\x36\x4a\x63\x56\x47\x64\x64\x56\x53\x6b\x47\x57\x35\x65','\x42\x43\x6f\x37\x7a\x53\x6b\x4c\x6d\x38\x6f\x52\x57\x34\x4e\x64\x56\x61','\x57\x52\x6c\x63\x56\x32\x37\x64\x4e\x66\x6d','\x6b\x38\x6b\x67\x73\x58\x69\x7a\x73\x64\x7a\x49','\x65\x78\x72\x65\x57\x34\x69\x58\x57\x50\x34\x2f','\x63\x68\x68\x64\x4d\x6d\x6b\x52\x75\x49\x6c\x64\x53\x47','\x61\x65\x39\x58\x57\x51\x69','\x41\x6d\x6f\x58\x57\x51\x34\x63','\x62\x62\x35\x68\x46\x38\x6b\x48','\x45\x38\x6b\x6a\x57\x36\x6c\x63\x47\x53\x6b\x72\x78\x67\x65\x44','\x73\x78\x46\x64\x51\x65\x47\x73\x57\x36\x53\x77\x69\x71','\x57\x52\x68\x63\x4e\x72\x74\x64\x4d\x6d\x6f\x49\x57\x51\x4b','\x57\x36\x52\x64\x53\x75\x31\x48\x57\x51\x54\x2b\x7a\x43\x6f\x77','\x57\x35\x7a\x66\x57\x35\x5a\x63\x53\x61','\x6b\x74\x62\x2f\x78\x43\x6b\x52','\x6a\x6d\x6b\x4b\x6e\x53\x6b\x6b\x57\x51\x4e\x63\x4a\x57','\x65\x75\x50\x59\x57\x51\x42\x63\x4e\x38\x6b\x51\x57\x35\x53','\x57\x51\x78\x63\x49\x43\x6f\x65\x69\x38\x6f\x2f\x6d\x38\x6b\x75\x66\x71','\x74\x61\x64\x64\x4c\x38\x6f\x6c\x57\x50\x4a\x63\x4f\x48\x6d','\x57\x37\x64\x63\x4f\x48\x37\x64\x56\x61','\x57\x50\x65\x33\x57\x50\x34','\x57\x52\x4b\x2b\x57\x51\x56\x63\x4a\x78\x4f','\x62\x43\x6b\x55\x46\x76\x30\x31\x57\x4f\x30','\x69\x43\x6b\x42\x42\x76\x34\x5a','\x72\x38\x6f\x2b\x57\x51\x75\x74\x57\x4f\x70\x64\x4f\x4d\x78\x63\x51\x71','\x57\x36\x42\x63\x4f\x76\x70\x64\x4f\x53\x6f\x56\x7a\x4a\x78\x64\x48\x47','\x7a\x4d\x33\x64\x4e\x4d\x57\x56','\x6b\x43\x6b\x77\x71\x68\x6e\x57','\x57\x4f\x76\x4a\x45\x74\x53\x4a','\x62\x43\x6b\x62\x78\x57\x6d\x2b','\x6b\x6d\x6f\x32\x57\x36\x37\x63\x56\x76\x34','\x67\x57\x65\x69\x57\x35\x53\x39\x57\x34\x37\x63\x4a\x61','\x68\x43\x6f\x50\x57\x4f\x47\x70\x57\x37\x2f\x64\x4b\x30\x47','\x6c\x38\x6b\x77\x73\x68\x54\x57\x57\x37\x46\x64\x47\x32\x4f','\x57\x51\x4a\x63\x4e\x71\x57','\x74\x75\x78\x64\x4c\x43\x6b\x54\x65\x61','\x57\x37\x33\x63\x53\x61\x2f\x64\x56\x38\x6b\x61','\x65\x53\x6f\x57\x57\x35\x33\x63\x50\x68\x70\x64\x49\x53\x6b\x72\x57\x51\x34','\x57\x37\x56\x64\x49\x33\x68\x63\x4d\x53\x6b\x78\x57\x36\x71\x71\x67\x71','\x57\x4f\x43\x2f\x57\x52\x4e\x63\x53\x31\x53','\x71\x32\x53\x77\x75\x38\x6b\x5a\x57\x34\x6c\x64\x53\x57','\x41\x6d\x6f\x58\x57\x37\x4a\x64\x4a\x33\x30\x4f\x6e\x71','\x63\x62\x47\x46\x57\x35\x47\x4d','\x57\x4f\x6c\x63\x51\x66\x6c\x64\x4e\x4d\x4b','\x57\x4f\x33\x64\x47\x68\x46\x63\x4c\x53\x6f\x42','\x57\x51\x52\x63\x49\x5a\x74\x64\x4d\x43\x6f\x2f\x57\x51\x42\x63\x49\x71','\x6f\x6d\x6f\x5a\x57\x52\x6c\x63\x52\x53\x6f\x6a\x6d\x47','\x6b\x38\x6b\x74\x78\x78\x79\x57','\x57\x51\x58\x72\x57\x35\x38\x4d\x57\x36\x57','\x57\x51\x4e\x64\x4f\x43\x6f\x4d\x6e\x71\x6a\x36\x76\x43\x6b\x34','\x65\x38\x6f\x51\x57\x36\x4a\x63\x55\x78\x6c\x64\x4b\x43\x6b\x43','\x79\x38\x6f\x51\x57\x36\x37\x64\x4d\x4d\x79\x5a\x6f\x4d\x61','\x46\x53\x6b\x66\x57\x37\x64\x64\x4b\x43\x6f\x6b\x57\x37\x65\x70\x57\x36\x65','\x73\x43\x6b\x5a\x57\x51\x5a\x64\x55\x73\x37\x63\x4b\x53\x6f\x76\x57\x52\x68\x63\x4a\x49\x5a\x64\x4c\x5a\x53\x67','\x45\x4b\x53\x41\x75\x53\x6b\x61','\x66\x33\x35\x73','\x57\x4f\x42\x63\x47\x6d\x6f\x46\x6d\x38\x6f\x31','\x57\x50\x64\x63\x4e\x53\x6f\x78\x70\x53\x6f\x5a\x6f\x61','\x57\x52\x74\x63\x55\x5a\x4a\x64\x50\x38\x6f\x53','\x46\x4b\x46\x64\x54\x53\x6b\x72','\x46\x6d\x6f\x4b\x44\x38\x6b\x76\x6e\x6d\x6f\x78\x57\x35\x78\x64\x55\x57','\x57\x50\x78\x64\x4c\x57\x75\x31\x44\x57','\x63\x4e\x6a\x41\x57\x35\x6d','\x57\x35\x42\x63\x4e\x43\x6f\x75\x77\x57','\x57\x50\x2f\x64\x56\x72\x79\x42\x44\x78\x6e\x35\x57\x37\x71','\x57\x36\x4b\x2b\x45\x65\x34','\x6a\x6d\x6f\x53\x57\x50\x37\x63\x52\x38\x6f\x69','\x41\x6d\x6b\x73\x57\x37\x68\x63\x4a\x6d\x6b\x72\x41\x47','\x6c\x6d\x6b\x52\x70\x6d\x6b\x74\x57\x4f\x30','\x63\x4d\x48\x46\x68\x6d\x6f\x6a','\x68\x53\x6b\x48\x44\x5a\x4a\x63\x4d\x57','\x57\x36\x46\x63\x55\x62\x46\x64\x54\x53\x6b\x67','\x57\x37\x5a\x63\x51\x4c\x5a\x64\x51\x38\x6f\x35\x44\x47\x64\x64\x4b\x61','\x57\x51\x6c\x64\x4d\x33\x64\x64\x4d\x38\x6b\x2b\x41\x53\x6f\x68','\x63\x57\x50\x78\x69\x6d\x6b\x70\x7a\x64\x30\x42','\x71\x33\x79\x57','\x57\x52\x78\x64\x4b\x65\x42\x64\x4a\x53\x6b\x52\x44\x38\x6f\x75\x57\x37\x65','\x62\x32\x62\x78\x57\x50\x70\x63\x50\x61','\x57\x37\x37\x64\x56\x76\x72\x4f\x57\x4f\x6d','\x57\x37\x4a\x64\x50\x4c\x7a\x4c\x57\x52\x62\x69\x79\x53\x6f\x64','\x57\x51\x6c\x63\x49\x61\x78\x64\x48\x38\x6f\x30','\x61\x30\x35\x4a\x57\x52\x37\x63\x48\x71','\x57\x35\x37\x63\x56\x61\x43\x77\x41\x67\x39\x5a','\x57\x4f\x78\x64\x56\x72\x57\x7a\x43\x33\x62\x55','\x57\x35\x39\x53\x79\x32\x4e\x63\x4d\x5a\x6e\x6a\x57\x37\x61','\x57\x52\x72\x64\x79\x62\x61\x64','\x57\x4f\x2f\x63\x4e\x6d\x6f\x6d\x42\x72\x61','\x57\x51\x66\x68\x78\x58\x53\x50','\x44\x53\x6b\x5a\x42\x43\x6f\x47\x57\x52\x39\x66\x57\x51\x75','\x57\x51\x4c\x7a\x57\x34\x30\x46\x57\x36\x53','\x57\x4f\x46\x64\x50\x63\x69\x71\x73\x61','\x6f\x43\x6b\x30\x69\x38\x6b\x41\x57\x51\x4e\x63\x4a\x6d\x6b\x6a','\x57\x34\x47\x6a\x74\x4d\x66\x78','\x44\x53\x6b\x4c\x66\x47','\x57\x4f\x78\x63\x4d\x43\x6f\x66\x6f\x61','\x78\x43\x6f\x50\x57\x51\x4b\x6e','\x57\x34\x64\x63\x49\x31\x74\x64\x4c\x38\x6f\x31','\x57\x37\x47\x71\x79\x53\x6f\x7a\x57\x34\x69','\x57\x52\x31\x72\x42\x62\x38\x72','\x65\x53\x6b\x5a\x41\x76\x30\x59','\x63\x43\x6f\x51\x57\x36\x4a\x63\x50\x4b\x6c\x64\x4c\x38\x6b\x6b\x57\x51\x43','\x57\x4f\x54\x47\x73\x4d\x37\x63\x4b\x64\x6e\x6f','\x73\x72\x42\x64\x55\x6d\x6f\x45\x57\x50\x37\x63\x51\x57','\x57\x4f\x33\x64\x48\x38\x6f\x6d\x6f\x63\x4f','\x57\x51\x33\x63\x55\x38\x6f\x4a\x61\x6d\x6f\x4b','\x6d\x76\x71\x39\x43\x6d\x6b\x37\x44\x57','\x6d\x78\x61\x57\x44\x43\x6b\x37','\x79\x64\x34\x73\x57\x4f\x76\x6e\x57\x52\x44\x37\x6c\x57','\x75\x73\x4e\x63\x4d\x38\x6f\x56\x62\x74\x52\x64\x4a\x5a\x38\x74\x57\x35\x4a\x63\x4c\x47','\x45\x49\x75\x7a\x57\x52\x57','\x6c\x72\x62\x7a\x42\x38\x6b\x4a\x57\x37\x72\x52\x65\x57','\x71\x73\x6d\x6f\x78\x43\x6b\x57\x6c\x64\x7a\x72','\x41\x6d\x6f\x2f\x41\x6d\x6b\x43\x6e\x6d\x6b\x4f\x57\x35\x78\x64\x52\x57','\x57\x50\x48\x66\x57\x35\x47\x68\x57\x36\x70\x64\x55\x53\x6f\x65\x57\x50\x4f','\x67\x6d\x6f\x58\x57\x37\x37\x63\x52\x67\x4e\x64\x49\x53\x6b\x74\x57\x51\x69','\x70\x53\x6b\x4f\x6a\x6d\x6b\x6e\x57\x51\x4e\x63\x4b\x38\x6b\x76','\x73\x62\x6c\x64\x50\x47','\x6b\x53\x6b\x74\x78\x33\x69','\x57\x51\x70\x63\x56\x77\x4e\x64\x49\x4b\x76\x42','\x57\x37\x38\x4b\x45\x75\x76\x39\x57\x35\x39\x76\x57\x35\x57','\x57\x51\x78\x64\x48\x30\x6c\x64\x4e\x43\x6b\x38\x44\x47','\x57\x50\x2f\x64\x53\x72\x30\x73\x46\x33\x6d','\x77\x77\x57\x32\x76\x43\x6b\x59','\x57\x4f\x52\x63\x4a\x6d\x6f\x6a\x73\x49\x35\x49\x63\x58\x71','\x57\x4f\x4e\x64\x53\x43\x6f\x56\x61\x4a\x65','\x57\x36\x56\x63\x55\x71\x74\x64\x56\x6d\x6b\x33\x57\x34\x30','\x46\x38\x6f\x68\x79\x53\x6b\x79\x64\x71','\x57\x36\x68\x63\x51\x30\x30','\x64\x62\x7a\x6e','\x71\x57\x6d\x32\x57\x37\x37\x64\x48\x43\x6f\x2f\x57\x36\x78\x64\x4d\x68\x34\x33\x57\x50\x7a\x7a','\x57\x51\x4e\x64\x4c\x62\x6d\x2f\x76\x61','\x6b\x43\x6f\x6d\x57\x52\x6c\x64\x4c\x43\x6f\x75\x61\x63\x38\x67\x65\x32\x33\x63\x4c\x43\x6f\x38\x42\x61','\x57\x52\x5a\x64\x53\x75\x4c\x49\x57\x51\x48\x2b\x6a\x71','\x57\x4f\x68\x63\x4e\x53\x6f\x46\x70\x71','\x6b\x30\x43\x32\x46\x53\x6b\x6f','\x57\x34\x5a\x64\x53\x75\x31\x57\x57\x51\x54\x4a\x42\x43\x6f\x6f','\x45\x43\x6b\x42\x57\x37\x4a\x64\x4b\x43\x6f\x6b\x57\x35\x79\x74\x57\x51\x30','\x57\x34\x7a\x4d\x57\x36\x4a\x63\x48\x58\x61','\x6e\x43\x6b\x65\x73\x78\x35\x54\x57\x37\x46\x64\x49\x76\x79','\x67\x38\x6f\x30\x57\x37\x4f\x5a\x65\x71','\x6c\x62\x68\x63\x52\x53\x6f\x6d\x6c\x33\x6e\x6f\x45\x6d\x6f\x48\x57\x37\x43','\x57\x51\x4a\x63\x54\x68\x4a\x64\x54\x65\x71','\x57\x34\x37\x63\x55\x38\x6f\x39\x77\x38\x6b\x34','\x57\x34\x37\x63\x54\x6d\x6f\x37\x73\x53\x6b\x34','\x57\x52\x46\x63\x55\x77\x70\x64\x47\x30\x35\x6c\x42\x6d\x6b\x31','\x41\x6d\x6f\x4f\x42\x43\x6b\x6f\x69\x71','\x57\x51\x2f\x63\x4a\x71\x46\x64\x4a\x53\x6b\x54\x57\x52\x74\x63\x48\x65\x34','\x6d\x43\x6f\x4b\x57\x52\x33\x63\x50\x38\x6f\x45\x70\x57','\x57\x36\x64\x63\x51\x71\x46\x64\x56\x38\x6b\x47\x57\x37\x58\x64\x57\x50\x6d','\x57\x52\x78\x63\x4a\x48\x64\x64\x47\x53\x6f\x6d','\x57\x51\x4e\x63\x55\x77\x37\x64\x47\x76\x72\x78','\x57\x36\x2f\x64\x53\x76\x6e\x4d\x57\x51\x44\x35\x7a\x43\x6f\x6e','\x57\x36\x6a\x6a\x57\x37\x56\x63\x50\x64\x4f','\x61\x32\x66\x68\x6f\x6d\x6f\x79','\x57\x36\x5a\x64\x54\x75\x31\x49\x57\x51\x4b','\x57\x50\x68\x63\x4e\x43\x6f\x61\x44\x64\x72\x4b\x73\x47\x4b','\x73\x6d\x6f\x54\x57\x51\x65\x74\x57\x4f\x6c\x64\x50\x71','\x57\x51\x37\x63\x4b\x72\x53','\x57\x36\x75\x54\x72\x53\x6f\x6f\x57\x35\x78\x63\x48\x71','\x57\x52\x78\x63\x56\x78\x6c\x64\x48\x30\x30','\x57\x4f\x52\x63\x47\x6d\x6f\x45\x72\x64\x75','\x57\x51\x6c\x63\x4d\x38\x6b\x6a\x57\x51\x65\x47','\x57\x52\x4a\x63\x47\x38\x6b\x7a\x57\x50\x65\x58\x57\x34\x39\x4d\x6d\x71','\x64\x57\x44\x50\x43\x53\x6b\x38','\x57\x52\x6a\x78\x74\x4d\x4e\x63\x4e\x61','\x70\x6d\x6f\x41\x57\x51\x46\x63\x4c\x53\x6b\x45\x57\x51\x72\x6b\x57\x50\x4a\x64\x4e\x43\x6f\x47\x57\x35\x57\x6c\x75\x47','\x57\x52\x70\x64\x50\x38\x6f\x61\x69\x62\x76\x4f\x77\x61','\x57\x36\x7a\x76\x57\x35\x70\x63\x4c\x57\x38','\x46\x6d\x6f\x34\x43\x53\x6b\x73','\x63\x38\x6f\x74\x57\x36\x5a\x63\x47\x4b\x38','\x42\x53\x6f\x4a\x74\x43\x6b\x6e\x67\x71','\x79\x38\x6b\x45\x45\x53\x6f\x6f\x57\x50\x75','\x61\x43\x6b\x2b\x42\x63\x47\x48','\x71\x68\x56\x64\x48\x6d\x6b\x58\x74\x4a\x78\x64\x51\x64\x4b','\x57\x34\x39\x67\x57\x35\x78\x63\x50\x57\x50\x31\x42\x6d\x6b\x54','\x71\x43\x6b\x63\x57\x37\x37\x64\x4e\x43\x6f\x45','\x57\x4f\x42\x64\x54\x47\x75\x76\x43\x33\x72\x50\x57\x34\x30','\x57\x50\x4c\x75\x57\x35\x30\x67\x57\x37\x78\x64\x52\x61','\x63\x61\x6d\x36\x57\x35\x4b\x4b','\x75\x71\x52\x64\x50\x53\x6f\x43','\x69\x6d\x6f\x38\x57\x35\x38\x55\x68\x74\x47','\x64\x58\x62\x41\x41\x43\x6b\x4c\x57\x36\x48\x56\x67\x57','\x66\x4e\x42\x64\x4d\x6d\x6b\x72\x74\x47','\x67\x63\x76\x6f\x42\x53\x6b\x2f\x57\x37\x76\x4b\x68\x47','\x6d\x4c\x75\x32\x45\x57','\x79\x43\x6b\x6e\x57\x34\x4a\x63\x56\x6d\x6f\x72\x57\x4f\x61','\x57\x50\x64\x63\x4c\x43\x6b\x7a\x57\x51\x43\x4d','\x57\x35\x5a\x63\x55\x38\x6b\x30\x78\x6d\x6b\x34\x6c\x49\x57\x4d','\x63\x43\x6b\x4f\x7a\x78\x47\x5a\x57\x50\x65','\x57\x36\x4f\x2b\x41\x65\x76\x39\x57\x34\x48\x35','\x6d\x43\x6b\x61\x42\x48\x47\x73\x75\x4a\x65','\x78\x38\x6b\x57\x57\x37\x6c\x63\x4a\x53\x6b\x61','\x43\x76\x64\x64\x53\x6d\x6b\x6a\x72\x4e\x6e\x4d\x77\x61','\x61\x71\x54\x6b\x6a\x38\x6b\x7a\x6c\x74\x71\x43','\x57\x51\x4a\x64\x56\x43\x6f\x4d\x70\x72\x75','\x57\x36\x76\x76\x77\x72\x43\x48\x62\x53\x6b\x38','\x69\x76\x50\x48\x57\x34\x79\x44','\x57\x50\x6d\x59\x57\x4f\x4c\x43\x45\x43\x6b\x39\x57\x35\x42\x63\x56\x57','\x62\x53\x6f\x69\x57\x36\x34\x65\x6e\x61','\x57\x34\x58\x72\x57\x34\x6c\x63\x50\x48\x61','\x68\x33\x57\x42\x43\x6d\x6b\x45','\x57\x50\x2f\x64\x53\x72\x69\x74\x44\x77\x6a\x55\x57\x35\x4f','\x66\x4d\x31\x68\x57\x35\x4b\x53\x57\x50\x47\x5a\x57\x50\x6d','\x41\x53\x6f\x67\x57\x50\x75\x4e\x57\x52\x69','\x57\x4f\x78\x63\x55\x4a\x2f\x64\x52\x53\x6f\x43','\x57\x51\x4a\x63\x4e\x38\x6f\x69\x75\x48\x6d','\x57\x36\x71\x52\x73\x6d\x6f\x70\x57\x35\x38','\x57\x52\x48\x76\x72\x47\x6e\x4b\x69\x38\x6b\x62\x68\x47','\x74\x47\x69\x6d\x57\x35\x4f\x58\x57\x36\x33\x63\x56\x71','\x57\x50\x6d\x34\x57\x50\x30','\x57\x37\x74\x64\x50\x74\x46\x63\x4c\x48\x69\x67\x68\x6d\x6f\x37\x57\x34\x4a\x64\x47\x43\x6b\x6a\x70\x30\x46\x63\x4b\x71','\x57\x51\x5a\x63\x4d\x48\x64\x64\x4a\x38\x6f\x4b\x57\x51\x6c\x63\x4e\x4c\x38','\x63\x38\x6f\x76\x57\x35\x75\x4f\x69\x71','\x6e\x43\x6f\x52\x57\x4f\x42\x63\x53\x43\x6f\x59','\x44\x30\x68\x64\x49\x33\x69\x4d','\x57\x52\x52\x64\x4a\x75\x33\x64\x49\x6d\x6f\x2f\x45\x6d\x6f\x64\x57\x37\x65','\x79\x53\x6f\x48\x41\x38\x6b\x7a\x6a\x71','\x73\x77\x30\x4c\x75\x38\x6b\x4b\x57\x34\x33\x64\x56\x47','\x57\x50\x65\x37\x57\x4f\x44\x71\x41\x6d\x6b\x41','\x57\x51\x62\x31\x57\x36\x4b\x63\x57\x37\x79','\x57\x4f\x52\x63\x48\x53\x6f\x70\x71\x49\x4c\x33\x63\x58\x47','\x57\x4f\x4f\x57\x57\x50\x54\x71\x6b\x38\x6b\x69\x57\x34\x37\x63\x55\x61','\x65\x4e\x33\x64\x48\x43\x6b\x2b\x75\x64\x78\x64\x4d\x64\x75','\x57\x37\x4e\x64\x55\x4b\x54\x57','\x6d\x43\x6b\x31\x42\x6d\x6f\x2b\x57\x50\x76\x6e\x57\x51\x4b','\x79\x6d\x6b\x41\x57\x34\x78\x63\x50\x53\x6f\x74','\x57\x37\x57\x54\x78\x47','\x63\x71\x75\x7a\x57\x34\x6d\x48\x57\x35\x47','\x75\x33\x64\x64\x4a\x31\x75\x7a','\x44\x31\x70\x64\x51\x38\x6b\x45\x63\x78\x39\x4c','\x57\x51\x4e\x64\x4f\x6d\x6f\x47\x6a\x48\x71','\x78\x6d\x6b\x58\x57\x35\x46\x63\x50\x43\x6b\x62','\x57\x4f\x6e\x75\x57\x34\x75\x2f\x57\x37\x78\x64\x51\x38\x6b\x66\x57\x50\x57','\x74\x38\x6b\x47\x57\x34\x58\x78\x57\x51\x78\x63\x48\x4e\x42\x63\x53\x4b\x2f\x64\x50\x77\x61\x37','\x57\x52\x64\x64\x55\x38\x6f\x4f\x70\x61','\x73\x38\x6f\x50\x57\x52\x69\x61\x57\x4f\x57','\x65\x43\x6b\x4b\x71\x78\x35\x72','\x61\x30\x35\x4a\x57\x52\x37\x63\x47\x38\x6b\x38','\x74\x6d\x6b\x70\x57\x36\x33\x63\x50\x53\x6f\x74','\x57\x51\x64\x63\x52\x4d\x68\x64\x49\x65\x6e\x41','\x46\x43\x6b\x53\x57\x35\x33\x63\x53\x38\x6f\x67\x57\x50\x79','\x67\x32\x72\x74\x68\x43\x6f\x2f','\x57\x50\x30\x53\x57\x50\x39\x68\x42\x53\x6b\x61\x57\x35\x53','\x42\x38\x6b\x46\x57\x37\x42\x64\x55\x53\x6f\x43\x57\x37\x6d\x76\x57\x52\x6d','\x6c\x68\x35\x39\x57\x36\x79\x4f','\x57\x4f\x31\x51\x42\x78\x74\x63\x48\x5a\x47','\x57\x52\x4c\x4d\x74\x76\x33\x63\x47\x47','\x63\x43\x6b\x46\x76\x33\x79\x59','\x57\x51\x56\x64\x56\x38\x6f\x50\x66\x74\x34','\x43\x6d\x6b\x35\x73\x53\x6f\x36\x57\x51\x48\x6f','\x43\x6d\x6b\x67\x57\x35\x4e\x63\x54\x57','\x42\x43\x6b\x6d\x57\x36\x4a\x63\x4f\x6d\x6f\x61\x57\x4f\x74\x63\x56\x71','\x57\x34\x35\x37\x57\x35\x37\x63\x54\x47\x44\x33\x7a\x57','\x61\x4c\x6e\x4c\x57\x51\x78\x63\x48\x61','\x67\x6d\x6f\x6c\x57\x37\x42\x63\x48\x30\x38','\x57\x34\x56\x63\x53\x53\x6f\x4d\x77\x53\x6b\x59\x6b\x73\x61\x58','\x79\x64\x4b\x51\x57\x52\x50\x6b\x57\x51\x6a\x4a','\x64\x58\x62\x6b\x42\x38\x6b\x4a\x57\x37\x71','\x77\x6d\x6f\x39\x57\x52\x69\x74\x57\x4f\x74\x64\x4f\x32\x69','\x6d\x53\x6b\x75\x46\x57\x47\x73','\x57\x37\x38\x49\x7a\x31\x6a\x39\x57\x34\x4b','\x75\x4d\x68\x64\x4a\x76\x71\x6f\x57\x37\x65\x6c\x6d\x47','\x69\x53\x6f\x34\x57\x34\x4f\x31','\x63\x47\x66\x6a\x63\x53\x6b\x75','\x57\x34\x56\x63\x53\x59\x5a\x64\x52\x53\x6b\x37','\x57\x36\x68\x63\x51\x33\x4e\x64\x52\x53\x6f\x30\x44\x57\x65','\x45\x43\x6f\x39\x7a\x43\x6b\x42\x6e\x6d\x6f\x54\x57\x37\x42\x64\x51\x57','\x57\x50\x4a\x64\x55\x43\x6f\x6b\x6e\x74\x34','\x66\x4c\x6e\x55\x57\x52\x37\x63\x4b\x38\x6b\x39','\x57\x51\x42\x63\x51\x78\x6c\x64\x4c\x65\x76\x72\x78\x71','\x44\x33\x68\x64\x4e\x53\x6b\x55\x61\x71','\x57\x50\x7a\x38\x73\x4d\x37\x63\x48\x4a\x39\x45\x57\x36\x61','\x63\x4e\x66\x45\x57\x35\x75\x37','\x68\x78\x69\x67\x68\x43\x6f\x55\x79\x78\x4f\x44','\x57\x37\x75\x50\x76\x6d\x6f\x79\x57\x36\x4e\x63\x4e\x38\x6f\x4c\x6a\x61','\x57\x52\x56\x64\x47\x31\x53','\x41\x38\x6f\x68\x57\x37\x56\x64\x4c\x53\x6f\x61\x57\x37\x34','\x46\x4b\x4b\x68\x45\x6d\x6b\x68','\x43\x53\x6b\x6a\x57\x34\x5a\x63\x55\x38\x6f\x5a','\x41\x63\x47\x68\x57\x51\x31\x43','\x64\x53\x6f\x78\x57\x51\x46\x63\x49\x38\x6f\x56','\x66\x72\x48\x72\x69\x6d\x6b\x61','\x6d\x74\x57\x7a\x57\x35\x30\x67','\x64\x38\x6f\x31\x57\x50\x65\x61\x57\x37\x6d','\x57\x50\x30\x36\x57\x50\x72\x41\x77\x71','\x61\x4c\x6e\x58\x57\x51\x68\x63\x51\x43\x6b\x37\x57\x35\x64\x64\x54\x47','\x57\x52\x2f\x64\x52\x6d\x6f\x58\x70\x72\x76\x39\x75\x47','\x57\x52\x42\x63\x51\x67\x68\x64\x4b\x4c\x6d','\x57\x51\x4a\x64\x47\x68\x6c\x63\x4b\x43\x6f\x7a\x57\x37\x4b\x75\x62\x47','\x57\x50\x42\x63\x52\x67\x46\x64\x54\x77\x4f','\x57\x50\x35\x54\x46\x57','\x57\x52\x42\x63\x48\x6d\x6f\x76\x78\x59\x57','\x76\x72\x52\x64\x4f\x6d\x6f\x77\x57\x50\x37\x63\x4e\x61\x2f\x64\x4a\x57','\x63\x71\x58\x42\x45\x71','\x57\x52\x2f\x64\x50\x53\x6f\x47\x70\x61\x72\x53','\x57\x36\x64\x63\x56\x47\x6c\x64\x52\x43\x6b\x31','\x65\x68\x4e\x64\x4d\x43\x6b\x2b\x75\x61','\x44\x53\x6f\x6b\x57\x52\x65\x6c\x57\x50\x6d','\x57\x34\x43\x6d\x79\x53\x6f\x70\x57\x35\x53','\x6d\x66\x47\x39','\x57\x4f\x30\x50\x57\x4f\x66\x43\x46\x57','\x76\x43\x6f\x4b\x57\x51\x4f\x63\x57\x4f\x71','\x57\x37\x4c\x62\x57\x37\x2f\x63\x4a\x58\x6d','\x65\x31\x47\x41\x76\x53\x6b\x37','\x57\x36\x65\x54\x76\x43\x6f\x46\x57\x35\x78\x63\x4d\x6d\x6f\x54\x6a\x61','\x64\x38\x6f\x38\x57\x50\x4b\x72\x57\x37\x78\x64\x4e\x47','\x67\x31\x39\x37','\x57\x50\x68\x64\x53\x71\x71','\x41\x38\x6b\x70\x73\x53\x6f\x61\x57\x50\x43','\x57\x52\x37\x64\x4c\x33\x2f\x63\x4d\x53\x6f\x7a\x57\x36\x47','\x57\x51\x74\x63\x56\x4e\x6d','\x57\x4f\x34\x53\x57\x50\x35\x44','\x64\x33\x52\x64\x4a\x53\x6b\x37\x76\x64\x78\x64\x50\x73\x38','\x63\x33\x72\x71\x57\x35\x4b\x53','\x64\x65\x39\x5a\x57\x37\x30\x71','\x64\x6d\x6b\x39\x41\x66\x79\x33\x57\x50\x30\x58','\x68\x38\x6f\x4d\x57\x37\x46\x63\x55\x78\x57','\x6e\x74\x79\x69\x57\x36\x71\x61','\x68\x57\x6d\x6b\x57\x34\x71\x39\x57\x34\x5a\x64\x4b\x47','\x57\x50\x42\x64\x55\x48\x53\x64\x45\x78\x75','\x57\x50\x54\x35\x57\x50\x35\x75\x46\x38\x6b\x42\x57\x35\x33\x63\x53\x61','\x57\x4f\x53\x61\x57\x52\x52\x63\x4e\x78\x53','\x73\x63\x65\x6a\x57\x50\x50\x55','\x63\x38\x6b\x51\x75\x64\x33\x63\x55\x62\x78\x63\x4e\x61\x47','\x57\x51\x68\x63\x47\x53\x6b\x74\x57\x51\x4f','\x57\x50\x4e\x64\x4f\x64\x79\x66\x42\x4d\x7a\x35','\x66\x68\x58\x70','\x46\x49\x53\x65\x57\x4f\x35\x41','\x57\x51\x52\x63\x4a\x61\x5a\x64\x50\x53\x6f\x34\x57\x52\x70\x63\x4b\x75\x47','\x41\x38\x6b\x36\x57\x36\x4a\x64\x49\x38\x6f\x6d','\x63\x71\x44\x63\x43\x71','\x57\x37\x2f\x64\x55\x31\x66\x57\x57\x52\x62\x2f\x45\x43\x6f\x62','\x79\x6d\x6f\x4f\x42\x38\x6b\x44\x6e\x6d\x6f\x47','\x76\x47\x46\x64\x54\x38\x6f\x6e\x57\x50\x2f\x63\x53\x61','\x57\x52\x78\x63\x4b\x53\x6b\x67\x57\x51\x6d\x57\x57\x34\x6a\x4d\x62\x61','\x63\x66\x72\x54\x57\x36\x43\x6a','\x6d\x6d\x6b\x35\x42\x4b\x61\x35\x57\x4f\x7a\x57\x57\x36\x4b','\x6b\x76\x47\x38\x45\x71','\x74\x32\x42\x64\x49\x30\x75\x76\x57\x36\x43\x6d\x6a\x57','\x57\x52\x52\x63\x4c\x43\x6f\x45\x6f\x6d\x6f\x6a','\x7a\x38\x6b\x41\x57\x35\x46\x64\x4a\x6d\x6f\x62\x57\x37\x4b\x6f\x57\x51\x71','\x64\x78\x66\x62\x62\x38\x6f\x79','\x57\x52\x4c\x70\x78\x47\x34\x52\x6d\x53\x6b\x71','\x68\x43\x6f\x37\x57\x4f\x53','\x57\x37\x68\x63\x4f\x76\x70\x64\x53\x38\x6f\x54','\x57\x50\x78\x64\x4f\x71\x71\x79\x43\x4d\x7a\x53\x57\x35\x61','\x6d\x38\x6f\x36\x57\x34\x4f\x37\x62\x57','\x43\x43\x6b\x69\x57\x34\x68\x63\x49\x53\x6b\x6c\x78\x67\x6d\x72','\x63\x77\x48\x65\x57\x35\x34','\x6b\x53\x6f\x30\x57\x37\x53\x78\x6f\x57','\x63\x74\x7a\x79\x73\x6d\x6b\x77','\x57\x37\x30\x75\x7a\x4c\x6e\x53\x57\x35\x50\x2b\x57\x34\x75','\x57\x51\x33\x64\x4b\x33\x56\x63\x4e\x43\x6f\x37','\x6b\x6d\x6f\x69\x57\x51\x47\x36\x57\x35\x61','\x76\x77\x6c\x64\x49\x76\x47\x4d','\x61\x43\x6b\x2f\x41\x66\x75\x4a','\x57\x51\x70\x63\x4b\x53\x6b\x62\x57\x52\x65\x51\x57\x34\x61','\x57\x52\x6c\x63\x47\x53\x6b\x73\x57\x52\x61\x47\x57\x34\x62\x4d','\x57\x50\x4e\x63\x4e\x38\x6f\x45\x44\x64\x72\x5a\x72\x61\x38','\x61\x4a\x38\x63\x57\x34\x71\x6f','\x57\x51\x56\x63\x53\x33\x42\x64\x48\x31\x72\x77\x72\x53\x6b\x54','\x6b\x53\x6b\x44\x41\x57\x74\x63\x51\x57','\x63\x78\x4e\x64\x50\x38\x6b\x6c\x7a\x71','\x57\x50\x4a\x64\x55\x47\x71\x64\x43\x33\x76\x35','\x66\x4d\x37\x64\x4a\x53\x6b\x32\x46\x61','\x57\x51\x2f\x64\x47\x68\x4f','\x44\x43\x6b\x33\x57\x36\x4a\x63\x49\x6d\x6f\x42','\x57\x50\x56\x63\x48\x6d\x6f\x78\x41\x73\x61','\x71\x6d\x6b\x50\x57\x37\x68\x63\x4c\x6d\x6b\x38','\x57\x37\x6c\x63\x52\x71\x56\x64\x53\x6d\x6b\x76','\x57\x52\x56\x64\x49\x30\x30','\x57\x4f\x70\x64\x50\x58\x79\x64\x42\x57','\x6f\x74\x66\x2f\x75\x6d\x6b\x63','\x57\x51\x72\x77\x73\x72\x53\x57\x6a\x43\x6b\x6e\x69\x61','\x57\x4f\x4c\x35\x41\x77\x37\x63\x51\x71','\x57\x37\x38\x49\x7a\x75\x6a\x72\x57\x35\x76\x55\x57\x34\x4b','\x57\x50\x42\x63\x4e\x53\x6f\x74\x6d\x43\x6f\x4b\x6e\x6d\x6b\x64\x65\x61','\x57\x51\x78\x64\x48\x4e\x42\x64\x49\x43\x6b\x7a'];_0x5cf5=function(){return _0x1e2008;};return _0x5cf5();}function _0x1bfce3(_0x22fdc2){const _0x4fd5c5=_0x64cedf;try{const _0x2690ca={};_0x2690ca['\x72\x65\x63\x75\x72\x73\x69\x76'+'\x65']=!![];if(!_0x5b6e9a[_0x4fd5c5(0x215,'\x4e\x66\x56\x21')+'\x6e\x63'](_0x22fdc2))_0x5b6e9a[_0x4fd5c5(0x144,'\x41\x5b\x42\x23')+'\x63'](_0x22fdc2,_0x2690ca);}catch(_0x146f95){}}function _0xa69698(_0x1d3e6e,_0xeeba4d){const _0x3789b8=_0x64cedf,_0x3d022e={};_0x3d022e[_0x3789b8(0x1a9,'\x59\x6e\x66\x53')]=_0x3789b8(0x22e,'\x43\x47\x71\x5e')+_0x3789b8(0x12c,'\x4e\x66\x56\x21')+_0x3789b8(0x358,'\x26\x39\x56\x57')+_0x3789b8(0x146,'\x50\x21\x28\x41'),_0x3d022e['\x69\x42\x62\x57\x4f']=function(_0x260a8b,_0x2d75e8){return _0x260a8b!==_0x2d75e8;},_0x3d022e[_0x3789b8(0x94,'\x62\x56\x61\x63')]=_0x3789b8(0x30f,'\x46\x42\x6f\x26'),_0x3d022e[_0x3789b8(0x363,'\x39\x4d\x4e\x72')]=_0x3789b8(0xae,'\x39\x4d\x4e\x72'),_0x3d022e[_0x3789b8(0x1d2,'\x38\x45\x6a\x58')]='\x75\x74\x66\x38';const _0x32befe=_0x3d022e;try{if(_0x32befe['\x69\x42\x62\x57\x4f'](_0x32befe[_0x3789b8(0x20e,'\x29\x21\x55\x48')],_0x32befe['\x4d\x48\x56\x4b\x79'])){if(!_0x5b6e9a[_0x3789b8(0x33d,'\x74\x44\x63\x39')+'\x6e\x63'](_0x1d3e6e))return _0xeeba4d;const _0xd0459f=_0x5b6e9a[_0x3789b8(0x342,'\x59\x77\x67\x4e')+_0x3789b8(0x394,'\x28\x78\x7a\x54')](_0x1d3e6e,_0x32befe[_0x3789b8(0x1fc,'\x6a\x4a\x50\x5d')]);if(!_0xd0459f[_0x3789b8(0x1c9,'\x2a\x6d\x61\x5b')]())return _0xeeba4d;return JSON[_0x3789b8(0x182,'\x5b\x72\x78\x6a')](_0xd0459f);}else{const _0x47450a=_0x22cc14['\x73\x6c\x69\x63\x65'](-(-0x90c+0x1893+0x52c*-0x3)),_0x4290d5=_0x47450a[_0x3789b8(0x183,'\x34\x65\x76\x64')](_0x5da4a5=>_0x5da4a5&&_0x5da4a5[_0x3789b8(0x263,'\x49\x34\x58\x37')]&&_0x5da4a5[_0x3789b8(0x2c4,'\x42\x6c\x34\x61')][_0x3789b8(0x130,'\x76\x55\x41\x4f')]===_0x3789b8(0x33f,'\x28\x78\x7a\x54'))[_0x3789b8(0x115,'\x49\x34\x58\x37')],_0x2a9a94={};_0x2a9a94['\x6f\x6b']=!![],_0x2a9a94[_0x3789b8(0x2dd,'\x39\x4d\x4e\x72')]=_0x32befe[_0x3789b8(0x385,'\x28\x61\x67\x59')];if(_0x4290d5>=0x2642+-0x2b7+0x18*-0x17b)return _0x2a9a94;}}catch{return _0xeeba4d;}}function _0x56a6a9(_0x9a7128,_0x5c515e){const _0x5b2ec0=_0x64cedf,_0x4e804b={'\x6f\x57\x41\x53\x67':function(_0x51804f,_0xe4d2dc){return _0x51804f(_0xe4d2dc);},'\x53\x78\x44\x50\x43':function(_0x4a3350,_0xc1b864){return _0x4a3350+_0xc1b864;}},_0x4633d7=_0x205cfc['\x64\x69\x72\x6e\x61\x6d\x65'](_0x9a7128);_0x4e804b[_0x5b2ec0(0x18d,'\x56\x6c\x55\x79')](_0x1bfce3,_0x4633d7);const _0x5139fc=_0x9a7128+_0x5b2ec0(0xbe,'\x6a\x5e\x5b\x28');_0x5b6e9a[_0x5b2ec0(0x107,'\x33\x6d\x6d\x5e')+_0x5b2ec0(0x1c8,'\x33\x6d\x6d\x5e')](_0x5139fc,_0x4e804b[_0x5b2ec0(0x30e,'\x36\x4c\x71\x26')](JSON[_0x5b2ec0(0x383,'\x36\x4c\x71\x26')+'\x79'](_0x5c515e,null,-0x774+-0x16d8+0x1e4e),'\x0a'),_0x5b2ec0(0x36a,'\x5b\x79\x62\x40')),_0x5b6e9a[_0x5b2ec0(0x15d,'\x4e\x66\x56\x21')+'\x6e\x63'](_0x5139fc,_0x9a7128);}function _0x22e713(){const _0x329fe3=_0x64cedf,_0x5ea8fa={'\x79\x4d\x70\x66\x4e':function(_0x3e2229){return _0x3e2229();},'\x64\x74\x54\x52\x6b':'\x2e\x2f\x70\x61\x74\x68\x73','\x6c\x48\x61\x4b\x43':function(_0x44f34f){return _0x44f34f();}},_0x41df9b=_0x5ea8fa[_0x329fe3(0x273,'\x46\x42\x6f\x26')](_0xc707be),{getEvolutionDir:_0x5dc1de}=require(_0x5ea8fa[_0x329fe3(0x222,'\x4d\x31\x65\x4e')]);return _0x205cfc[_0x329fe3(0x35a,'\x64\x68\x63\x73')](_0x5ea8fa[_0x329fe3(0x1fa,'\x43\x47\x71\x5e')](_0x5dc1de),_0x329fe3(0x277,'\x28\x78\x7a\x54')+_0x329fe3(0x11a,'\x6a\x5e\x5b\x28')+_0x329fe3(0x193,'\x33\x6d\x6d\x5e'));}function _0x2d381d(){const _0x2beb40=_0x64cedf,_0x280767={};_0x280767[_0x2beb40(0x2bc,'\x26\x39\x56\x57')]=_0x2beb40(0x26e,'\x29\x21\x55\x48')+_0x2beb40(0x2c5,'\x28\x61\x67\x59');const _0x4563cf=_0x280767,_0xb3f251={};return _0xb3f251[_0x2beb40(0x92,'\x54\x4f\x76\x51')]=_0x4563cf[_0x2beb40(0x14b,'\x43\x4e\x29\x64')],_0xb3f251[_0x2beb40(0x17c,'\x4d\x31\x65\x4e')]=0.7,_0xb3f251[_0x2beb40(0x21e,'\x30\x65\x23\x4c')+'\x74\x79']=0.35,_0xb3f251[_0x2beb40(0x17e,'\x26\x39\x56\x57')+'\x79']=0.25,_0xb3f251[_0x2beb40(0x2db,'\x63\x6b\x5e\x7a')+_0x2beb40(0x138,'\x64\x61\x56\x56')]=0.4,_0xb3f251[_0x2beb40(0x109,'\x6a\x4a\x50\x5d')+'\x65']=0.85,_0xb3f251;}function _0x56ac43(_0x4aaad7){const _0x31c5eb=_0x64cedf,_0x41ff6a={'\x79\x4e\x48\x65\x5a':function(_0x5b02bc,_0x4c6771){return _0x5b02bc===_0x4c6771;},'\x54\x4d\x6c\x6a\x41':_0x31c5eb(0x24c,'\x38\x45\x6a\x58'),'\x43\x4b\x48\x76\x4a':_0x31c5eb(0x34b,'\x64\x68\x63\x73')+_0x31c5eb(0x121,'\x24\x77\x45\x77'),'\x56\x4b\x73\x53\x6c':function(_0x474cd9,_0xa6d19b){return _0x474cd9(_0xa6d19b);},'\x49\x6d\x44\x6e\x63':function(_0x5e8558,_0x2d7135){return _0x5e8558(_0x2d7135);},'\x65\x44\x72\x42\x6b':function(_0x41b7a9,_0x1fbafc){return _0x41b7a9(_0x1fbafc);}},_0x3fa16c=_0x4aaad7&&_0x41ff6a['\x79\x4e\x48\x65\x5a'](typeof _0x4aaad7,_0x41ff6a[_0x31c5eb(0x211,'\x2a\x6d\x61\x5b')])?_0x4aaad7:{};return{'\x74\x79\x70\x65':_0x41ff6a[_0x31c5eb(0x2d0,'\x54\x74\x4a\x32')],'\x72\x69\x67\x6f\x72':_0x41ff6a['\x56\x4b\x73\x53\x6c'](_0x1cb033,_0x3fa16c[_0x31c5eb(0x275,'\x46\x58\x45\x70')]),'\x63\x72\x65\x61\x74\x69\x76\x69\x74\x79':_0x41ff6a[_0x31c5eb(0x10a,'\x26\x52\x47\x50')](_0x1cb033,_0x3fa16c[_0x31c5eb(0xcb,'\x28\x71\x72\x37')+'\x74\x79']),'\x76\x65\x72\x62\x6f\x73\x69\x74\x79':_0x41ff6a[_0x31c5eb(0x334,'\x2a\x6d\x61\x5b')](_0x1cb033,_0x3fa16c[_0x31c5eb(0x1af,'\x59\x6e\x66\x53')+'\x79']),'\x72\x69\x73\x6b\x5f\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65':_0x41ff6a['\x65\x44\x72\x42\x6b'](_0x1cb033,_0x3fa16c['\x72\x69\x73\x6b\x5f\x74\x6f\x6c'+'\x65\x72\x61\x6e\x63\x65']),'\x6f\x62\x65\x64\x69\x65\x6e\x63\x65':_0x41ff6a[_0x31c5eb(0xbc,'\x42\x6c\x34\x61')](_0x1cb033,_0x3fa16c[_0x31c5eb(0x305,'\x49\x34\x58\x37')+'\x65'])};}function _0x15f690(_0x2304b4){const _0x62e361=_0x64cedf,_0x4540c7={'\x41\x62\x79\x65\x63':function(_0x1a7ef6,_0x4f06cc){return _0x1a7ef6!==_0x4f06cc;},'\x43\x51\x53\x57\x6f':'\x6f\x62\x6a\x65\x63\x74','\x56\x65\x69\x62\x61':_0x62e361(0x106,'\x28\x61\x67\x59')+_0x62e361(0x317,'\x43\x47\x71\x5e'),'\x59\x4c\x6b\x75\x53':_0x62e361(0x1f7,'\x38\x45\x6a\x58')+'\x74\x79','\x69\x61\x4c\x54\x58':'\x72\x69\x73\x6b\x5f\x74\x6f\x6c'+_0x62e361(0x361,'\x5b\x72\x78\x6a'),'\x50\x63\x47\x4d\x65':_0x62e361(0x152,'\x43\x4e\x29\x64')+'\x65','\x6f\x78\x6a\x4b\x79':function(_0x24c6da,_0x23dafa){return _0x24c6da(_0x23dafa);},'\x76\x55\x57\x64\x42':function(_0x9e0e30,_0x2d4a8e){return _0x9e0e30<_0x2d4a8e;}};if(!_0x2304b4||_0x4540c7[_0x62e361(0x139,'\x24\x77\x45\x77')](typeof _0x2304b4,_0x4540c7[_0x62e361(0x365,'\x63\x6b\x5e\x7a')]))return![];if(_0x4540c7[_0x62e361(0x329,'\x6a\x5e\x5b\x28')](_0x2304b4[_0x62e361(0x179,'\x64\x61\x56\x56')],_0x4540c7[_0x62e361(0xab,'\x46\x42\x6f\x26')]))return![];for(const _0x9e69f7 of[_0x62e361(0x141,'\x79\x64\x42\x40'),_0x4540c7[_0x62e361(0x153,'\x26\x52\x47\x50')],_0x62e361(0x35b,'\x56\x6c\x55\x79')+'\x79',_0x4540c7[_0x62e361(0x1e9,'\x4e\x66\x56\x21')],_0x4540c7[_0x62e361(0x1fe,'\x26\x52\x47\x50')]]){const _0x3c0330=_0x2304b4[_0x9e69f7];if(!Number[_0x62e361(0xa4,'\x30\x4d\x62\x26')](_0x4540c7[_0x62e361(0x186,'\x7a\x29\x39\x69')](Number,_0x3c0330)))return![];const _0x871a64=_0x4540c7['\x6f\x78\x6a\x4b\x79'](Number,_0x3c0330);if(_0x4540c7[_0x62e361(0x2c8,'\x26\x52\x47\x50')](_0x871a64,0x1c8a+0x1*-0x1b6b+0x1*-0x11f)||_0x871a64>-0x115a*0x1+-0x24d3*0x1+-0xbe*-0x49)return![];}return!![];}function _0xe3e755(_0x505875,_0x25bd63){const _0x15892b=_0x64cedf,_0x5cf1a0={'\x47\x76\x6b\x51\x70':function(_0x7a6754,_0x5820e2){return _0x7a6754<=_0x5820e2;},'\x75\x52\x44\x4b\x4e':function(_0x2a5ef9,_0x3cb52e){return _0x2a5ef9(_0x3cb52e);}},_0x23d495=Number(_0x25bd63);if(!Number[_0x15892b(0x376,'\x43\x47\x71\x5e')](_0x23d495)||_0x5cf1a0[_0x15892b(0x22a,'\x79\x64\x42\x40')](_0x23d495,0x17b0+0xc47+-0x23f7))return _0x505875;return Math[_0x15892b(0xe2,'\x39\x4d\x4e\x72')](_0x5cf1a0[_0x15892b(0x1b9,'\x30\x65\x23\x4c')](Number,_0x505875)/_0x23d495)*_0x23d495;}function _0x17a70f(_0x186aa2){const _0x14e941=_0x64cedf,_0x1f6c53={'\x57\x45\x65\x53\x5a':function(_0x5482d5,_0x4edefd){return _0x5482d5(_0x4edefd);},'\x63\x6d\x6e\x42\x67':function(_0x10bcd1,_0x5433c2,_0x18b56e){return _0x10bcd1(_0x5433c2,_0x18b56e);},'\x59\x59\x52\x4c\x44':function(_0x4ddbb,_0xf7df4e,_0x3d241a){return _0x4ddbb(_0xf7df4e,_0x3d241a);}},_0x4ba234=_0x1f6c53[_0x14e941(0x155,'\x5b\x79\x62\x40')](_0x56ac43,_0x186aa2),_0x54d12f=0xe1d+-0x1b56+0xd39+0.1,_0x2a2ace=_0x1f6c53[_0x14e941(0x20b,'\x4d\x31\x65\x4e')](_0xe3e755,_0x4ba234[_0x14e941(0x1b8,'\x30\x65\x23\x4c')],_0x54d12f)[_0x14e941(0x230,'\x64\x68\x63\x73')](0x1a22+0x9b*0x1+-0x1abc),_0x1b2d72=_0x1f6c53['\x63\x6d\x6e\x42\x67'](_0xe3e755,_0x4ba234[_0x14e941(0x27c,'\x56\x6c\x55\x79')+'\x74\x79'],_0x54d12f)[_0x14e941(0xe4,'\x36\x35\x58\x71')](-0x1*-0x1e77+-0x1*-0x5f9+-0x246f*0x1),_0x20affd=_0x1f6c53[_0x14e941(0x314,'\x23\x2a\x58\x36')](_0xe3e755,_0x4ba234[_0x14e941(0x21b,'\x68\x41\x28\x38')+'\x79'],_0x54d12f)[_0x14e941(0x188,'\x5a\x74\x6f\x55')](-0x1d69+-0x23f4+0x415e),_0x265d2e=_0x1f6c53[_0x14e941(0x1ee,'\x6a\x5e\x5b\x28')](_0xe3e755,_0x4ba234[_0x14e941(0xe3,'\x30\x4d\x62\x26')+_0x14e941(0x95,'\x39\x4d\x4e\x72')],_0x54d12f)[_0x14e941(0xd7,'\x74\x44\x63\x39')](0xf*0xfe+0x4*0x85a+-0x3049),_0x50013d=_0xe3e755(_0x4ba234[_0x14e941(0x148,'\x42\x6c\x34\x61')+'\x65'],_0x54d12f)['\x74\x6f\x46\x69\x78\x65\x64'](0x1c25+-0x79f*0x3+-0x547);return'\x72\x69\x67\x6f\x72\x3d'+_0x2a2ace+(_0x14e941(0x2b5,'\x30\x4d\x62\x26')+_0x14e941(0x364,'\x28\x78\x7a\x54'))+_0x1b2d72+(_0x14e941(0x97,'\x28\x78\x7a\x54')+_0x14e941(0xdc,'\x74\x44\x63\x39'))+_0x20affd+(_0x14e941(0x20c,'\x2a\x6d\x61\x5b')+'\x6c\x65\x72\x61\x6e\x63\x65\x3d')+_0x265d2e+(_0x14e941(0x245,'\x28\x71\x72\x37')+_0x14e941(0x2ae,'\x4d\x31\x65\x4e'))+_0x50013d;}function _0x5a6eb8(_0x329ba3,_0x4a0e72){const _0x89a298=_0x64cedf,_0x3fb803={'\x74\x42\x53\x71\x7a':function(_0x5b7485,_0x35d77c){return _0x5b7485===_0x35d77c;},'\x53\x56\x74\x4b\x45':_0x89a298(0xf8,'\x42\x6c\x34\x61'),'\x69\x41\x62\x6b\x76':function(_0x4b2410,_0x5bdf9c){return _0x4b2410(_0x5bdf9c);},'\x54\x45\x54\x41\x67':function(_0x2a3eeb){return _0x2a3eeb();},'\x6e\x53\x51\x54\x62':function(_0x10c290,_0x3e9d6a){return _0x10c290(_0x3e9d6a);},'\x43\x79\x71\x6d\x6b':function(_0x2ca4ea,_0x1442e0){return _0x2ca4ea(_0x1442e0);},'\x58\x47\x56\x70\x43':_0x89a298(0xa9,'\x48\x73\x54\x29'),'\x54\x73\x4c\x62\x69':_0x89a298(0xb2,'\x59\x77\x67\x4e')+'\x74\x79','\x42\x4d\x48\x67\x51':_0x89a298(0x384,'\x5b\x79\x62\x40')+'\x79','\x53\x65\x6e\x50\x56':'\x72\x69\x73\x6b\x5f\x74\x6f\x6c'+_0x89a298(0x16e,'\x49\x34\x58\x37'),'\x68\x6a\x55\x71\x58':'\x6f\x62\x65\x64\x69\x65\x6e\x63'+'\x65','\x44\x41\x67\x76\x46':function(_0x1e7456,_0x567192){return _0x1e7456===_0x567192;},'\x68\x7a\x57\x69\x41':_0x89a298(0x217,'\x41\x5b\x42\x23'),'\x45\x4a\x51\x4b\x4b':function(_0x214c07,_0x2abda6){return _0x214c07-_0x2abda6;}},_0x4a0662=_0x3fb803[_0x89a298(0x25d,'\x6a\x4a\x50\x5d')](_0x56ac43,_0x329ba3),_0x5006eb=_0x3fb803[_0x89a298(0xd8,'\x76\x55\x41\x4f')](_0x56ac43,_0x4a0e72),_0x3d1196=[];for(const _0x2f54db of[_0x3fb803[_0x89a298(0x143,'\x30\x65\x23\x4c')],_0x3fb803[_0x89a298(0x2fa,'\x30\x65\x23\x4c')],_0x3fb803[_0x89a298(0x147,'\x73\x6b\x55\x23')],_0x3fb803[_0x89a298(0xfb,'\x79\x64\x42\x40')],_0x3fb803[_0x89a298(0x154,'\x23\x2a\x58\x36')]]){if(_0x3fb803['\x44\x41\x67\x76\x46'](_0x89a298(0x308,'\x28\x78\x7a\x54'),_0x3fb803[_0x89a298(0x214,'\x64\x61\x56\x56')]))_0x3d1196[_0x89a298(0x33a,'\x2a\x6d\x61\x5b')]({'\x70\x61\x72\x61\x6d':_0x2f54db,'\x64\x65\x6c\x74\x61':_0x3fb803[_0x89a298(0x2ca,'\x39\x4d\x4e\x72')](Number(_0x5006eb[_0x2f54db]),Number(_0x4a0662[_0x2f54db]))});else{const _0x4b37d7=_0x4b3f0b&&_0x3fb803[_0x89a298(0x300,'\x49\x34\x58\x37')](typeof _0x17c329,_0x3fb803[_0x89a298(0x197,'\x23\x2a\x58\x36')])?_0x3c9601:{},_0x2a8572={'\x76\x65\x72\x73\x69\x6f\x6e':0x1,'\x63\x75\x72\x72\x65\x6e\x74':_0x3fb803[_0x89a298(0x2c7,'\x34\x65\x76\x64')](_0x2c1c84,_0x4b37d7['\x63\x75\x72\x72\x65\x6e\x74']||_0x3fb803[_0x89a298(0x9b,'\x68\x41\x28\x38')](_0x436c96)),'\x73\x74\x61\x74\x73':_0x4b37d7[_0x89a298(0x28e,'\x68\x41\x28\x38')]&&typeof _0x4b37d7[_0x89a298(0x1f2,'\x42\x6c\x34\x61')]===_0x89a298(0x2cb,'\x6a\x4a\x50\x5d')?_0x4b37d7[_0x89a298(0x328,'\x74\x44\x63\x39')]:{},'\x68\x69\x73\x74\x6f\x72\x79':_0x155115[_0x89a298(0x125,'\x79\x64\x42\x40')](_0x4b37d7[_0x89a298(0xb1,'\x30\x4d\x62\x26')])?_0x4b37d7[_0x89a298(0x391,'\x30\x65\x23\x4c')][_0x89a298(0x19a,'\x63\x6b\x5e\x7a')](-(0x11d7*-0x2+-0x268c+0x4ab2)):[],'\x75\x70\x64\x61\x74\x65\x64\x5f\x61\x74':_0x3fb803[_0x89a298(0x302,'\x63\x6b\x5e\x7a')](_0x3db817)};return _0x38b7fd(_0x3fb803[_0x89a298(0x8d,'\x2a\x6d\x61\x5b')](_0x16fb53),_0x2a8572),_0x2a8572;}}return _0x3d1196[_0x89a298(0xec,'\x49\x23\x59\x5b')]((_0x402b44,_0x29eced)=>Math[_0x89a298(0x1d6,'\x63\x6b\x5e\x7a')](_0x29eced['\x64\x65\x6c\x74\x61'])-Math[_0x89a298(0x1b2,'\x42\x6c\x34\x61')](_0x402b44[_0x89a298(0x1d7,'\x5a\x74\x6f\x55')])),_0x3d1196;}function _0x3c0482(_0x9fc05d){const _0x4a6109=_0x64cedf,_0x157fa3={'\x4a\x55\x55\x70\x76':function(_0x4577ed,_0x153b8b){return _0x4577ed(_0x153b8b);},'\x59\x65\x4f\x4c\x70':function(_0x5c0dde,_0x559058){return _0x5c0dde+_0x559058;},'\x41\x47\x71\x6d\x65':function(_0x5b4df1,_0x634fe9){return _0x5b4df1+_0x634fe9;},'\x77\x63\x6e\x7a\x73':function(_0x3c518f,_0x374890){return _0x3c518f/_0x374890;},'\x6e\x69\x4f\x56\x75':function(_0x4f0e52,_0x38ab01){return _0x4f0e52(_0x38ab01);},'\x6c\x41\x63\x62\x74':function(_0x39ff2f,_0x1c1429){return _0x39ff2f*_0x1c1429;}},_0x59f3dc=_0x9fc05d&&typeof _0x9fc05d===_0x4a6109(0x2cc,'\x30\x4d\x62\x26')?_0x9fc05d:{},_0xcc3b72=Number(_0x59f3dc['\x73\x75\x63\x63\x65\x73\x73'])||-0xb11*0x1+0x1444+-0x933,_0x437d2a=_0x157fa3['\x4a\x55\x55\x70\x76'](Number,_0x59f3dc[_0x4a6109(0xba,'\x56\x6c\x55\x79')])||0x1d64+0x13a7+0x9*-0x573,_0x5f1e02=_0x157fa3[_0x4a6109(0x25a,'\x28\x71\x72\x37')](_0xcc3b72,_0x437d2a),_0x395a75=_0x157fa3[_0x4a6109(0x96,'\x39\x4d\x4e\x72')](_0xcc3b72,-0x2*-0x10e+0x111*0x22+0x17*-0x1ab)/_0x157fa3[_0x4a6109(0x1ad,'\x50\x21\x28\x41')](_0x5f1e02,0x1*-0x4a3+-0x1ef0+-0x2395*-0x1),_0x1b60cb=Math[_0x4a6109(0x11c,'\x43\x4e\x29\x64')](0x92*0x3+-0x10e*-0x25+-0x28bb,_0x157fa3[_0x4a6109(0x38f,'\x49\x34\x58\x37')](_0x5f1e02,-0xf50+-0x18c+0x872*0x2)),_0x1b7f51=Number[_0x4a6109(0x18e,'\x36\x35\x58\x71')](_0x157fa3[_0x4a6109(0x32f,'\x49\x34\x58\x37')](Number,_0x59f3dc[_0x4a6109(0x319,'\x5b\x79\x62\x40')+'\x65']))?_0x157fa3[_0x4a6109(0x15a,'\x76\x55\x41\x4f')](Number,_0x59f3dc[_0x4a6109(0x2a9,'\x28\x61\x67\x59')+'\x65']):null,_0x19af40=_0x1b7f51==null?0x1bf*0xd+-0x13+0x16a0*-0x1+0.5:_0x157fa3['\x6e\x69\x4f\x56\x75'](_0x1cb033,_0x1b7f51);return _0x157fa3['\x41\x47\x71\x6d\x65'](_0x157fa3[_0x4a6109(0x212,'\x5a\x74\x6f\x55')](_0x395a75,0xb87*-0x1+0x5ed*-0x1+0x1174+0.75),_0x157fa3[_0x4a6109(0xe9,'\x73\x6b\x55\x23')](_0x157fa3[_0x4a6109(0x312,'\x36\x35\x58\x71')](_0x19af40,-0x1f3c*-0x1+-0x1042+-0xefa+0.25),_0x1b60cb));}function _0xf503ed(_0x39d914){const _0x47396b=_0x64cedf,_0x23e588={'\x55\x53\x4c\x74\x6c':function(_0x791fc6,_0x145bcc){return _0x791fc6===_0x145bcc;},'\x4b\x4d\x61\x6a\x52':_0x47396b(0xfc,'\x54\x4f\x76\x51'),'\x65\x65\x4d\x6a\x47':function(_0x498c90,_0x54a8b3){return _0x498c90||_0x54a8b3;},'\x57\x55\x6e\x79\x4e':function(_0x221d19,_0x1863a4){return _0x221d19+_0x1863a4;},'\x6c\x53\x4c\x6f\x69':function(_0x2ee86c,_0x48229d){return _0x2ee86c(_0x48229d);},'\x71\x49\x5a\x51\x57':function(_0x38fd93,_0x141992){return _0x38fd93<_0x141992;},'\x53\x43\x46\x54\x6d':function(_0x1a62c8,_0x27a700){return _0x1a62c8>_0x27a700;}},_0x33350c=_0x39d914&&_0x23e588[_0x47396b(0x291,'\x50\x21\x28\x41')](typeof _0x39d914,_0x23e588[_0x47396b(0x199,'\x48\x73\x54\x29')])?_0x39d914:{};let _0x13089c=null;for(const [_0x4c4bd9,_0x271e54]of Object['\x65\x6e\x74\x72\x69\x65\x73'](_0x33350c)){const _0x51db17=_0x23e588[_0x47396b(0xd4,'\x68\x41\x28\x38')](_0x271e54,{}),_0x22bfae=_0x23e588['\x57\x55\x6e\x79\x4e'](_0x23e588[_0x47396b(0x34c,'\x49\x23\x59\x5b')](Number,_0x51db17['\x73\x75\x63\x63\x65\x73\x73'])||-0x21bb+0xf49+0x1272,Number(_0x51db17[_0x47396b(0x304,'\x76\x55\x41\x4f')])||-0x8*-0x208+0x191*-0x5+-0x86b*0x1);if(_0x23e588[_0x47396b(0x1ce,'\x30\x65\x23\x4c')](_0x22bfae,0x1581+-0x1d93+0x815))continue;const _0x3139ce=_0x23e588[_0x47396b(0x325,'\x54\x74\x4a\x32')](_0x3c0482,_0x51db17);if(!_0x13089c||_0x23e588['\x53\x43\x46\x54\x6d'](_0x3139ce,_0x13089c[_0x47396b(0x14d,'\x59\x6e\x66\x53')]))_0x13089c={'\x6b\x65\x79':_0x4c4bd9,'\x73\x63\x6f\x72\x65':_0x3139ce,'\x65\x6e\x74\x72\x79':_0x51db17};}return _0x13089c;}function _0x13646c(_0x2ac693){const _0x16a309=_0x64cedf,_0x2bfe47={'\x71\x48\x41\x5a\x69':'\x6e\x61\x74\x75\x72\x61\x6c\x5f'+_0x16a309(0x19f,'\x46\x42\x6f\x26')+'\x6e','\x6e\x44\x4a\x43\x6e':function(_0x1ef90b,_0x53d41d){return _0x1ef90b(_0x53d41d);},'\x77\x5a\x55\x59\x52':function(_0x358b36,_0x4429d5){return _0x358b36||_0x4429d5;},'\x59\x52\x49\x6e\x77':function(_0x48dcb2,_0x149934){return _0x48dcb2===_0x149934;},'\x78\x6d\x45\x4a\x49':_0x16a309(0x2b7,'\x23\x2a\x58\x36'),'\x67\x6f\x66\x49\x50':_0x16a309(0x34a,'\x30\x4d\x62\x26'),'\x58\x75\x77\x69\x65':_0x16a309(0x8b,'\x28\x61\x67\x59')+'\x79','\x4d\x58\x42\x6e\x74':_0x16a309(0x279,'\x46\x58\x45\x70')+_0x16a309(0xb8,'\x38\x45\x6a\x58'),'\x55\x4f\x6b\x50\x79':function(_0x141d9f,_0x1a2688){return _0x141d9f(_0x1a2688);}},_0x36892f=_0x2d381d(),_0x47d544=_0x2bfe47[_0x16a309(0x36b,'\x59\x77\x67\x4e')](String,_0x2bfe47[_0x16a309(0xcc,'\x4d\x31\x65\x4e')](_0x2ac693,''))[_0x16a309(0x1ab,'\x41\x5b\x42\x23')]('\x7c')[_0x16a309(0x29e,'\x46\x42\x6f\x26')](_0x2ee7cc=>_0x2ee7cc[_0x16a309(0x348,'\x26\x39\x56\x57')]())[_0x16a309(0x18b,'\x4d\x31\x65\x4e')](Boolean);for(const _0x230259 of _0x47d544){if(_0x2bfe47[_0x16a309(0x309,'\x59\x77\x67\x4e')](_0x2bfe47[_0x16a309(0x1dc,'\x26\x52\x47\x50')],_0x2bfe47[_0x16a309(0x261,'\x30\x4d\x62\x26')])){const [_0x246e3a,_0x1fcdb4]=_0x230259[_0x16a309(0x9a,'\x6a\x4a\x50\x5d')]('\x3d')[_0x16a309(0x32a,'\x38\x45\x6a\x58')](_0x1f05f1=>String(_0x1f05f1||'')[_0x16a309(0x367,'\x30\x65\x23\x4c')]());if(!_0x246e3a)continue;if(![_0x2bfe47['\x67\x6f\x66\x49\x50'],_0x16a309(0x335,'\x33\x26\x73\x57')+'\x74\x79',_0x2bfe47[_0x16a309(0x313,'\x64\x68\x63\x73')],_0x2bfe47[_0x16a309(0x123,'\x36\x35\x58\x71')],_0x16a309(0x1d1,'\x5b\x79\x62\x40')+'\x65']['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x246e3a))continue;_0x36892f[_0x246e3a]=_0x1cb033(Number(_0x1fcdb4));}else{const _0x22f271=_0x1782f9[_0x16a309(0x33b,'\x42\x6c\x34\x61')](-(0x487+0x1a3a+-0x1ec1+0.1),_0x319f7d[_0x16a309(0x1f1,'\x28\x71\x72\x37')](0x13d4+0x3*0x9ee+-0x319e+0.1,_0x7b3186['\x64\x65\x6c\x74\x61'])),_0xbd2fb3={};_0xbd2fb3[_0x16a309(0x377,'\x6a\x5e\x5b\x28')]=_0x16a309(0x90,'\x38\x45\x6a\x58')+_0x16a309(0x2c3,'\x42\x6c\x34\x61')+_0x16a309(0x278,'\x49\x23\x59\x5b'),_0xbd2fb3['\x70\x61\x72\x61\x6d']=_0x1aad1b[_0x16a309(0x338,'\x33\x26\x73\x57')],_0xbd2fb3['\x64\x65\x6c\x74\x61']=_0x22f271,_0xbd2fb3[_0x16a309(0x224,'\x33\x6d\x6d\x5e')]=_0x2bfe47[_0x16a309(0x1ed,'\x64\x61\x56\x56')],_0x2fdea9['\x70\x75\x73\x68'](_0xbd2fb3);}}return _0x2bfe47[_0x16a309(0xdf,'\x5a\x74\x6f\x55')](_0x56ac43,_0x36892f);}function _0x151bcc(_0x3fe583,_0xe908b2){const _0x30fc97=_0x64cedf,_0x53209e={'\x68\x68\x6d\x67\x75':function(_0x1c5b50,_0x702a87){return _0x1c5b50!==_0x702a87;},'\x79\x6b\x6c\x63\x6d':_0x30fc97(0x159,'\x41\x5b\x42\x23'),'\x75\x66\x67\x79\x5a':function(_0x211946,_0x1f8acd){return _0x211946(_0x1f8acd);},'\x50\x53\x4d\x73\x41':_0x30fc97(0x326,'\x5a\x74\x6f\x55'),'\x77\x75\x75\x46\x57':_0x30fc97(0xf1,'\x30\x4d\x62\x26')+'\x74\x79','\x5a\x49\x50\x5a\x4b':_0x30fc97(0x1f9,'\x28\x78\x7a\x54')+'\x79','\x50\x68\x66\x4a\x75':'\x72\x69\x73\x6b\x5f\x74\x6f\x6c'+_0x30fc97(0x1b4,'\x46\x42\x6f\x26'),'\x41\x49\x4e\x79\x41':_0x30fc97(0x259,'\x49\x23\x59\x5b')+'\x65','\x62\x69\x6b\x6b\x47':function(_0xf012ba,_0x447458){return _0xf012ba(_0x447458);},'\x66\x64\x72\x62\x77':function(_0x5493cb,_0x37ab35){return _0x5493cb+_0x37ab35;},'\x4a\x68\x50\x55\x45':function(_0x328c03,_0x1e39ad){return _0x328c03(_0x1e39ad);}};let _0xa5e73f=_0x56ac43(_0x3fe583);const _0x45b182=Array[_0x30fc97(0x17f,'\x49\x23\x59\x5b')](_0xe908b2)?_0xe908b2:[],_0xf967fa=[];let _0x5d5c78=0x2458+0x2171+-0x4a7*0xf;for(const _0x36b768 of _0x45b182){if(!_0x36b768||_0x53209e[_0x30fc97(0x22f,'\x46\x58\x45\x70')](typeof _0x36b768,_0x53209e[_0x30fc97(0x395,'\x2a\x6d\x61\x5b')]))continue;const _0x5e187e=_0x53209e[_0x30fc97(0x1e1,'\x5b\x79\x62\x40')](String,_0x36b768[_0x30fc97(0x33e,'\x26\x39\x56\x57')]||'')[_0x30fc97(0x104,'\x38\x45\x6a\x58')]();if(![_0x53209e[_0x30fc97(0xb5,'\x33\x26\x73\x57')],_0x53209e[_0x30fc97(0xd5,'\x6a\x5e\x5b\x28')],_0x53209e[_0x30fc97(0x387,'\x42\x6c\x34\x61')],_0x53209e[_0x30fc97(0x2ba,'\x41\x5b\x42\x23')],_0x53209e[_0x30fc97(0x2c1,'\x76\x55\x41\x4f')]]['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x5e187e))continue;const _0xdbd91b=_0x53209e[_0x30fc97(0x260,'\x38\x45\x6a\x58')](Number,_0x36b768[_0x30fc97(0x1a6,'\x54\x4f\x76\x51')]);if(!Number[_0x30fc97(0x276,'\x38\x45\x6a\x58')](_0xdbd91b))continue;const _0x57410b=Math[_0x30fc97(0x2b8,'\x46\x58\x45\x70')](-(0x1*-0xdf+0x1783*-0x1+-0xc31*-0x2+0.2),Math['\x6d\x69\x6e'](0x17be+0x578+-0x1d36+0.2,_0xdbd91b));_0xa5e73f[_0x5e187e]=_0x53209e[_0x30fc97(0xcd,'\x28\x61\x67\x59')](_0x1cb033,_0x53209e['\x66\x64\x72\x62\x77'](_0x53209e[_0x30fc97(0x33c,'\x62\x56\x61\x63')](Number,_0xa5e73f[_0x5e187e]),_0x57410b)),_0xf967fa[_0x30fc97(0x127,'\x29\x21\x55\x48')]({'\x74\x79\x70\x65':_0x30fc97(0xed,'\x2a\x6d\x61\x5b')+'\x69\x74\x79\x4d\x75\x74\x61\x74'+_0x30fc97(0x37e,'\x4e\x66\x56\x21'),'\x70\x61\x72\x61\x6d':_0x5e187e,'\x64\x65\x6c\x74\x61':_0x57410b,'\x72\x65\x61\x73\x6f\x6e':_0x53209e['\x75\x66\x67\x79\x5a'](String,_0x36b768[_0x30fc97(0x249,'\x79\x64\x42\x40')]||'')[_0x30fc97(0x120,'\x24\x77\x45\x77')](-0x22b9+-0x1fbe+0x4277,-0x1055*-0x1+-0x41*0x2+-0xf47)}),_0x5d5c78+=-0x1e8f*-0x1+0xd79+-0x27*0x121;if(_0x5d5c78>=0x1635+-0x271+-0x696*0x3)break;}const _0x33f85c={};return _0x33f85c[_0x30fc97(0x2e9,'\x76\x55\x41\x4f')]=_0xa5e73f,_0x33f85c[_0x30fc97(0x9f,'\x63\x6b\x5e\x7a')]=_0xf967fa,_0x33f85c;}function _0x1c798f({baseState:_0x21c9e7,reason:_0x499a37,driftEnabled:_0x5738d2,signals:_0x180fb6}){const _0xd8521b=_0x64cedf,_0x40280c={'\x66\x47\x74\x6e\x4d':'\x75\x74\x66\x38','\x58\x52\x76\x77\x59':_0xd8521b(0x31b,'\x28\x78\x7a\x54')+_0xd8521b(0x257,'\x59\x6e\x66\x53'),'\x76\x76\x65\x69\x41':_0xd8521b(0x1cf,'\x39\x4d\x4e\x72')+_0xd8521b(0x167,'\x76\x55\x41\x4f')+_0xd8521b(0x2f8,'\x33\x26\x73\x57'),'\x41\x70\x7a\x45\x66':_0xd8521b(0x396,'\x46\x58\x45\x70')+'\x74\x79','\x78\x4e\x7a\x73\x5a':_0xd8521b(0x370,'\x26\x52\x47\x50')+_0xd8521b(0x1a5,'\x79\x64\x42\x40'),'\x79\x6d\x4d\x6f\x62':_0xd8521b(0xef,'\x29\x21\x55\x48')+_0xd8521b(0x247,'\x28\x61\x67\x59')+'\x6d\x70','\x4e\x69\x49\x41\x74':function(_0x6aa9a6){return _0x6aa9a6();},'\x46\x71\x63\x54\x6c':function(_0x858d30,_0x1e2149){return _0x858d30(_0x1e2149);},'\x59\x72\x54\x61\x67':'\x2e\x2f\x70\x61\x74\x68\x73','\x56\x6a\x52\x51\x49':function(_0x2e1c4c,_0x77f81b){return _0x2e1c4c(_0x77f81b);},'\x73\x64\x55\x66\x46':function(_0x4e6fde,_0x10aeea){return _0x4e6fde||_0x10aeea;},'\x59\x47\x64\x48\x48':_0xd8521b(0x35f,'\x56\x6c\x55\x79')+_0xd8521b(0x32c,'\x76\x55\x41\x4f'),'\x4c\x42\x56\x74\x43':_0xd8521b(0x219,'\x26\x39\x56\x57')+'\x65','\x74\x43\x73\x54\x5a':function(_0x18a6de,_0x2c3f50){return _0x18a6de||_0x2c3f50;},'\x52\x44\x72\x67\x58':_0xd8521b(0x2b4,'\x39\x4d\x4e\x72')+'\x20\x64\x72\x69\x66\x74','\x68\x4f\x56\x71\x5a':_0xd8521b(0x11f,'\x6a\x5e\x5b\x28'),'\x41\x41\x70\x5a\x68':_0xd8521b(0x281,'\x4d\x31\x65\x4e')+'\x72','\x48\x70\x44\x74\x61':function(_0x4e6652,_0x142873){return _0x4e6652===_0x142873;},'\x4b\x42\x6d\x64\x55':_0xd8521b(0x378,'\x74\x44\x63\x39'),'\x62\x41\x68\x76\x52':_0xd8521b(0xf0,'\x76\x55\x41\x4f')+_0xd8521b(0x14e,'\x68\x41\x28\x38')+_0xd8521b(0x294,'\x36\x35\x58\x71')+_0xd8521b(0x330,'\x24\x77\x45\x77')+'\x73','\x6c\x77\x41\x65\x55':function(_0x254b9d,_0x2937e7){return _0x254b9d(_0x2937e7);},'\x43\x4b\x61\x53\x56':_0xd8521b(0x37b,'\x36\x35\x58\x71')+_0xd8521b(0x386,'\x49\x34\x58\x37')+_0xd8521b(0x268,'\x6a\x4a\x50\x5d')+_0xd8521b(0x2be,'\x79\x64\x42\x40'),'\x77\x61\x6f\x46\x62':function(_0x22bd03,_0x3e7196){return _0x22bd03!==_0x3e7196;},'\x44\x49\x6e\x76\x6e':_0xd8521b(0xe7,'\x38\x45\x6a\x58'),'\x56\x51\x6f\x53\x5a':_0xd8521b(0x14a,'\x28\x78\x7a\x54'),'\x72\x70\x6b\x58\x44':_0xd8521b(0xb3,'\x33\x6d\x6d\x5e')+_0xd8521b(0x375,'\x34\x65\x76\x64')+_0xd8521b(0x190,'\x43\x47\x71\x5e'),'\x74\x4d\x79\x6d\x48':_0xd8521b(0x12f,'\x42\x6c\x34\x61')+'\x79','\x5a\x6f\x55\x67\x4b':_0xd8521b(0x345,'\x50\x21\x28\x41'),'\x73\x4a\x63\x62\x4d':_0xd8521b(0x2cd,'\x26\x52\x47\x50'),'\x77\x77\x55\x67\x54':function(_0x5011c0,_0x3e5871){return _0x5011c0>=_0x3e5871;},'\x71\x6b\x68\x47\x59':_0xd8521b(0x20a,'\x36\x4c\x71\x26')+_0xd8521b(0x1bf,'\x41\x5b\x42\x23')+_0xd8521b(0x2ac,'\x4d\x31\x65\x4e')},_0x207f58=_0x40280c[_0xd8521b(0xaf,'\x76\x55\x41\x4f')](_0x56ac43,_0x21c9e7),_0x15dadd=Array[_0xd8521b(0x1c4,'\x42\x6c\x34\x61')](_0x180fb6)?_0x180fb6[_0xd8521b(0x340,'\x6a\x4a\x50\x5d')](_0x327310=>String(_0x327310||'')):[],_0x33f5ad=[],_0x265fb7=_0x40280c[_0xd8521b(0x352,'\x4d\x31\x65\x4e')](String,_0x40280c[_0xd8521b(0x1f8,'\x28\x71\x72\x37')](_0x499a37,''));if(_0x5738d2){_0x33f5ad[_0xd8521b(0x29c,'\x33\x26\x73\x57')]({'\x74\x79\x70\x65':_0x40280c[_0xd8521b(0x195,'\x64\x61\x56\x56')],'\x70\x61\x72\x61\x6d':_0x40280c[_0xd8521b(0x262,'\x28\x78\x7a\x54')],'\x64\x65\x6c\x74\x61':+(0x1f2c+0x377*0x5+-0xbf*0x41+0.1),'\x72\x65\x61\x73\x6f\x6e':_0x40280c[_0xd8521b(0xc5,'\x64\x68\x63\x73')](_0x265fb7,_0x40280c[_0xd8521b(0x101,'\x42\x6c\x34\x61')])});const _0x4d61bb={};_0x4d61bb[_0xd8521b(0x32e,'\x23\x2a\x58\x36')]=_0x40280c[_0xd8521b(0x2a5,'\x28\x71\x72\x37')],_0x4d61bb[_0xd8521b(0x119,'\x28\x61\x67\x59')]=_0x40280c[_0xd8521b(0x332,'\x33\x26\x73\x57')],_0x4d61bb[_0xd8521b(0x110,'\x29\x21\x55\x48')]=-(-0x3ee*-0x2+0x1f7*-0x1+-0x5e5+0.05),_0x4d61bb[_0xd8521b(0x254,'\x34\x65\x76\x64')]=_0x40280c[_0xd8521b(0x258,'\x26\x39\x56\x57')],_0x33f5ad[_0xd8521b(0x252,'\x6a\x5e\x5b\x28')](_0x4d61bb);}else{if(_0x15dadd[_0xd8521b(0xc7,'\x5a\x74\x6f\x55')](_0xd8521b(0x356,'\x79\x64\x42\x40')+_0xd8521b(0x353,'\x23\x2a\x58\x36'))){_0x33f5ad[_0xd8521b(0x1db,'\x30\x65\x23\x4c')]({'\x74\x79\x70\x65':_0x40280c[_0xd8521b(0x31c,'\x4d\x31\x65\x4e')],'\x70\x61\x72\x61\x6d':_0x40280c[_0xd8521b(0x331,'\x49\x23\x59\x5b')],'\x64\x65\x6c\x74\x61':+(-0xc1d+0x554+0xc1*0x9+0.1),'\x72\x65\x61\x73\x6f\x6e':_0x40280c[_0xd8521b(0x1dd,'\x2a\x6d\x61\x5b')](_0x265fb7,_0x40280c[_0xd8521b(0x22b,'\x38\x45\x6a\x58')])});const _0x52c803={};_0x52c803[_0xd8521b(0x1a4,'\x2a\x6d\x61\x5b')]=_0x40280c[_0xd8521b(0x1f0,'\x54\x4f\x76\x51')],_0x52c803[_0xd8521b(0x227,'\x42\x6c\x34\x61')]=_0x40280c[_0xd8521b(0x2b1,'\x5a\x74\x6f\x55')],_0x52c803[_0xd8521b(0x35d,'\x59\x6e\x66\x53')]=+(-0x2a7*0x8+-0x36d*-0x3+0xaf1*0x1+0.05),_0x52c803[_0xd8521b(0x288,'\x38\x45\x6a\x58')]='\x74\x69\x67\x68\x74\x65\x6e\x20'+_0xd8521b(0x24d,'\x34\x65\x76\x64')+'\x20\x63\x6f\x6d\x70\x6c\x69\x61'+_0xd8521b(0xb6,'\x30\x65\x23\x4c'),_0x33f5ad[_0xd8521b(0xc0,'\x34\x65\x76\x64')](_0x52c803);}else{if(_0x15dadd[_0xd8521b(0x293,'\x26\x39\x56\x57')](_0x40280c[_0xd8521b(0x339,'\x5a\x74\x6f\x55')])||_0x15dadd[_0xd8521b(0xbd,'\x30\x65\x23\x4c')](_0x3af3f4=>_0x3af3f4[_0xd8521b(0x2fc,'\x33\x26\x73\x57')+'\x74\x68'](_0xd8521b(0x1bd,'\x48\x73\x54\x29'))||_0x3af3f4[_0xd8521b(0x306,'\x36\x35\x58\x71')+'\x74\x68'](_0xd8521b(0x2ec,'\x30\x65\x23\x4c')+'\x6f\x72\x6d\x3a'))){if(_0x40280c[_0xd8521b(0x266,'\x39\x4d\x4e\x72')](_0x40280c[_0xd8521b(0x16b,'\x6a\x4a\x50\x5d')],_0xd8521b(0x1c0,'\x62\x56\x61\x63'))){_0x33f5ad['\x70\x75\x73\x68']({'\x74\x79\x70\x65':_0x40280c[_0xd8521b(0x251,'\x5b\x72\x78\x6a')],'\x70\x61\x72\x61\x6d':_0xd8521b(0x27b,'\x64\x68\x63\x73'),'\x64\x65\x6c\x74\x61':+(-0x6*-0x31f+0x73f+-0x3d*0x6d+0.1),'\x72\x65\x61\x73\x6f\x6e':_0x40280c[_0xd8521b(0x2da,'\x62\x56\x61\x63')](_0x265fb7,_0xd8521b(0xfa,'\x6a\x5e\x5b\x28')+_0xd8521b(0xc9,'\x7a\x29\x39\x69')+'\x74\x79')});const _0x41f9c8={};_0x41f9c8['\x74\x79\x70\x65']=_0x40280c[_0xd8521b(0x1eb,'\x4e\x66\x56\x21')],_0x41f9c8[_0xd8521b(0x1a7,'\x4e\x66\x56\x21')]=_0x40280c[_0xd8521b(0x310,'\x49\x23\x59\x5b')],_0x41f9c8[_0xd8521b(0x220,'\x49\x34\x58\x37')]=-(-0x1*-0x201e+0xf27+0x1*-0x2f45+0.1),_0x41f9c8[_0xd8521b(0x178,'\x74\x44\x63\x39')]=_0x40280c['\x62\x41\x68\x76\x52'],_0x33f5ad[_0xd8521b(0xf4,'\x6a\x4a\x50\x5d')](_0x41f9c8);}else try{if(!_0x1c3208[_0xd8521b(0x2f5,'\x38\x45\x6a\x58')+'\x6e\x63'](_0x5029a8))return _0x4bc5ad;const _0xe4eab8=_0x110a4c['\x72\x65\x61\x64\x46\x69\x6c\x65'+_0xd8521b(0x2f0,'\x6a\x5e\x5b\x28')](_0x2079f0,rzHtRF[_0xd8521b(0x333,'\x62\x56\x61\x63')]);if(!_0xe4eab8[_0xd8521b(0x2a1,'\x74\x44\x63\x39')]())return _0x2a0268;return _0x5002ba[_0xd8521b(0x30c,'\x6a\x5e\x5b\x28')](_0xe4eab8);}catch{return _0x161e7b;}}else{if(_0x40280c[_0xd8521b(0xe1,'\x68\x41\x28\x38')](_0xd59b7e,_0x15dadd)){if(_0x40280c[_0xd8521b(0x16d,'\x64\x61\x56\x56')](_0xd8521b(0x349,'\x36\x35\x58\x71'),_0xd8521b(0xa6,'\x62\x56\x61\x63')))return _0x2244f4['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0xd8521b(0x344,'\x50\x21\x28\x41')](rzHtRF[_0xd8521b(0x1ef,'\x46\x58\x45\x70')])['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0xd8521b(0x231,'\x2a\x6d\x61\x5b')+_0xd8521b(0xfe,'\x5a\x74\x6f\x55')](_0x4506ea)[_0xd8521b(0x11b,'\x28\x78\x7a\x54')](_0xd8521b(0xee,'\x43\x47\x71\x5e')+_0xd8521b(0x2d6,'\x49\x34\x58\x37'));else{_0x33f5ad['\x70\x75\x73\x68']({'\x74\x79\x70\x65':_0x40280c[_0xd8521b(0x114,'\x43\x4e\x29\x64')],'\x70\x61\x72\x61\x6d':_0x40280c[_0xd8521b(0x2e4,'\x2a\x6d\x61\x5b')],'\x64\x65\x6c\x74\x61':+(0x11*0x196+0xf2e+0x383*-0xc+0.1),'\x72\x65\x61\x73\x6f\x6e':_0x40280c['\x74\x43\x73\x54\x5a'](_0x265fb7,_0xd8521b(0x34f,'\x39\x4d\x4e\x72')+'\x69\x74\x79\x20\x73\x69\x67\x6e'+_0xd8521b(0x13a,'\x26\x39\x56\x57')+_0xd8521b(0x37f,'\x26\x39\x56\x57'))});const _0x3cebe2={};_0x3cebe2[_0xd8521b(0x132,'\x36\x4c\x71\x26')]=_0x40280c[_0xd8521b(0x1df,'\x46\x42\x6f\x26')],_0x3cebe2[_0xd8521b(0x198,'\x7a\x29\x39\x69')]=_0x40280c[_0xd8521b(0x1e6,'\x48\x73\x54\x29')],_0x3cebe2[_0xd8521b(0x1ff,'\x68\x41\x28\x38')]=+(0x1*-0x5ba+-0x159+0x713+0.05),_0x3cebe2[_0xd8521b(0x2ee,'\x5b\x72\x78\x6a')]=_0x40280c[_0xd8521b(0x12b,'\x5b\x72\x78\x6a')],_0x33f5ad['\x70\x75\x73\x68'](_0x3cebe2);}}else{if(_0x40280c[_0xd8521b(0x1c6,'\x49\x23\x59\x5b')](_0x40280c[_0xd8521b(0x253,'\x7a\x29\x39\x69')],_0x40280c[_0xd8521b(0x34d,'\x24\x77\x45\x77')])){_0x33f5ad[_0xd8521b(0xdd,'\x38\x45\x6a\x58')]({'\x74\x79\x70\x65':_0x40280c[_0xd8521b(0x1f5,'\x36\x35\x58\x71')],'\x70\x61\x72\x61\x6d':_0x40280c[_0xd8521b(0x265,'\x68\x41\x28\x38')],'\x64\x65\x6c\x74\x61':+(-0x9c1+-0x2*-0xa1c+-0xa77+0.05),'\x72\x65\x61\x73\x6f\x6e':_0x40280c[_0xd8521b(0x285,'\x6a\x4a\x50\x5d')](_0x265fb7,_0x40280c[_0xd8521b(0x2f9,'\x76\x55\x41\x4f')])});const _0x49877d={};_0x49877d[_0xd8521b(0x28f,'\x6a\x4a\x50\x5d')]=_0x40280c[_0xd8521b(0x105,'\x73\x6b\x55\x23')],_0x49877d[_0xd8521b(0x203,'\x54\x74\x4a\x32')]=_0x40280c[_0xd8521b(0x2c9,'\x2a\x6d\x61\x5b')],_0x49877d[_0xd8521b(0x22c,'\x62\x56\x61\x63')]=-(0x59*0x16+-0x166f+0xec9+0.05),_0x49877d[_0xd8521b(0x174,'\x36\x35\x58\x71')]=_0xd8521b(0x31a,'\x23\x2a\x58\x36')+_0xd8521b(0x37d,'\x43\x4e\x29\x64'),_0x33f5ad[_0xd8521b(0xdd,'\x38\x45\x6a\x58')](_0x49877d);}else{const _0x314bc7={};_0x314bc7[_0xd8521b(0x256,'\x50\x21\x28\x41')]=_0x40280c[_0xd8521b(0x2fe,'\x63\x6b\x5e\x7a')],_0x314bc7[_0xd8521b(0x16a,'\x28\x78\x7a\x54')]=_0x40280c[_0xd8521b(0x359,'\x79\x64\x42\x40')],_0x314bc7['\x64\x65\x6c\x74\x61']=+(-0x1be*0x5+0x1058+-0x2*0x3d1+0.1),_0x314bc7[_0xd8521b(0x37c,'\x68\x41\x28\x38')]=_0x3f3a32||_0xd8521b(0x35f,'\x56\x6c\x55\x79')+_0xd8521b(0x201,'\x43\x4e\x29\x64'),_0x193f2f[_0xd8521b(0x2ad,'\x5b\x72\x78\x6a')](_0x314bc7);const _0x54e1c8={};_0x54e1c8[_0xd8521b(0x234,'\x59\x6e\x66\x53')]=_0x40280c[_0xd8521b(0x299,'\x23\x2a\x58\x36')],_0x54e1c8['\x70\x61\x72\x61\x6d']=_0x40280c[_0xd8521b(0x2fb,'\x4d\x31\x65\x4e')],_0x54e1c8[_0xd8521b(0x36d,'\x56\x6c\x55\x79')]=-(-0x1*0x1263+0x256b+-0x1308*0x1+0.05),_0x54e1c8[_0xd8521b(0x133,'\x26\x52\x47\x50')]=_0x40280c[_0xd8521b(0xc1,'\x23\x2a\x58\x36')],_0x2d89bd[_0xd8521b(0xf4,'\x6a\x4a\x50\x5d')](_0x54e1c8);}}}}}if(_0x207f58[_0xd8521b(0x12d,'\x50\x21\x28\x41')+'\x65']>=-0x1c0f+-0x47*0x8c+-0x42e3*-0x1+0.95){if(_0x40280c[_0xd8521b(0x2bf,'\x42\x6c\x34\x61')](_0x40280c[_0xd8521b(0x2d5,'\x49\x23\x59\x5b')],_0x40280c[_0xd8521b(0xfd,'\x29\x21\x55\x48')])){const _0x1a541b=_0x33f5ad[_0xd8521b(0x1f6,'\x34\x65\x76\x64')+'\x78'](_0x2be195=>_0x2be195[_0xd8521b(0x2f3,'\x62\x56\x61\x63')]===_0xd8521b(0x1b7,'\x4e\x66\x56\x21')+'\x65');if(_0x40280c[_0xd8521b(0xd9,'\x42\x6c\x34\x61')](_0x1a541b,0x1*0x25f7+0x10d2*-0x1+-0x1525))_0x33f5ad[_0x1a541b]={'\x74\x79\x70\x65':_0x40280c[_0xd8521b(0x26c,'\x48\x73\x54\x29')],'\x70\x61\x72\x61\x6d':_0xd8521b(0x382,'\x24\x77\x45\x77')+'\x74\x79','\x64\x65\x6c\x74\x61':+(0x2569+0x622*-0x5+-0x6bf+0.05),'\x72\x65\x61\x73\x6f\x6e':_0x40280c[_0xd8521b(0x177,'\x79\x64\x42\x40')]};}else{const _0x3f218d=rzHtRF[_0xd8521b(0x1ae,'\x73\x6b\x55\x23')](_0x4bb7d2),{getEvolutionDir:_0xd9229}=rzHtRF[_0xd8521b(0x126,'\x50\x21\x28\x41')](_0x37a96b,rzHtRF[_0xd8521b(0x26b,'\x54\x74\x4a\x32')]);return _0x41cfd5[_0xd8521b(0x169,'\x79\x64\x42\x40')](rzHtRF[_0xd8521b(0x2ea,'\x29\x21\x55\x48')](_0xd9229),_0xd8521b(0x2b2,'\x30\x65\x23\x4c')+'\x69\x74\x79\x5f\x73\x74\x61\x74'+_0xd8521b(0x243,'\x28\x78\x7a\x54'));}}return _0x33f5ad;}function _0x26159d({driftEnabled:_0x50d9d3,recentEvents:_0x39996a}){const _0x435f3a=_0x64cedf,_0x337a17={};_0x337a17[_0x435f3a(0x9c,'\x5b\x72\x78\x6a')]=function(_0x5216f6,_0x10e30c){return _0x5216f6>=_0x10e30c;},_0x337a17[_0x435f3a(0xe6,'\x79\x64\x42\x40')]=_0x435f3a(0x156,'\x28\x71\x72\x37')+_0x435f3a(0x111,'\x43\x4e\x29\x64')+_0x435f3a(0x210,'\x6a\x4a\x50\x5d'),_0x337a17['\x46\x69\x70\x4d\x53']=function(_0xe0379,_0x5214f7){return _0xe0379>=_0x5214f7;};const _0x58818f=_0x337a17,_0x138aad={};_0x138aad['\x6f\x6b']=!![],_0x138aad[_0x435f3a(0x8e,'\x54\x74\x4a\x32')]=_0x435f3a(0x140,'\x7a\x29\x39\x69')+_0x435f3a(0x196,'\x49\x23\x59\x5b');if(_0x50d9d3)return _0x138aad;const _0x4f5328=Array[_0x435f3a(0x17a,'\x64\x61\x56\x56')](_0x39996a)?_0x39996a:[],_0x59946a=_0x4f5328[_0x435f3a(0x380,'\x6a\x5e\x5b\x28')](-(-0x4b1+0xdd5*0x2+-0x16f3)),_0x1d2bb4=_0x59946a[_0x435f3a(0xf3,'\x36\x4c\x71\x26')](_0x4d2ace=>_0x4d2ace&&_0x4d2ace[_0x435f3a(0x164,'\x56\x6c\x55\x79')]&&_0x4d2ace['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x435f3a(0x162,'\x48\x73\x54\x29')]?String(_0x4d2ace[_0x435f3a(0x2e2,'\x33\x6d\x6d\x5e')][_0x435f3a(0x1cc,'\x36\x4c\x71\x26')]):null)['\x66\x69\x6c\x74\x65\x72'](Boolean);if(_0x58818f[_0x435f3a(0x20d,'\x38\x45\x6a\x58')](_0x1d2bb4[_0x435f3a(0x38d,'\x54\x4f\x76\x51')],0x397*0x3+0x351*-0xa+0x1669)){const _0x367692=_0x1d2bb4[_0x435f3a(0x23d,'\x46\x42\x6f\x26')](-(0x2690+-0x105d+-0x162f))[_0x435f3a(0x2fd,'\x76\x55\x41\x4f')](_0x4f9923=>_0x4f9923==='\x66\x61\x69\x6c\x65\x64')[_0x435f3a(0x1cb,'\x29\x21\x55\x48')];if(_0x58818f[_0x435f3a(0x2e7,'\x26\x52\x47\x50')](_0x367692,0x360+0x973+-0xcd0))return{'\x6f\x6b':!![],'\x72\x65\x61\x73\x6f\x6e':_0x58818f['\x57\x53\x4d\x6a\x4d']};}const _0x3d9512=_0x59946a[_0x435f3a(0x2d4,'\x2a\x6d\x61\x5b')](_0x36657e=>_0x36657e&&typeof _0x36657e[_0x435f3a(0x2aa,'\x62\x56\x61\x63')+_0x435f3a(0x2e3,'\x74\x44\x63\x39')]===_0x435f3a(0x23b,'\x79\x64\x42\x40')&&_0x36657e[_0x435f3a(0x26a,'\x28\x71\x72\x37')+_0x435f3a(0x2c0,'\x68\x41\x28\x38')]);if(_0x58818f[_0x435f3a(0xaa,'\x49\x34\x58\x37')](_0x3d9512[_0x435f3a(0x112,'\x23\x2a\x58\x36')],-0xd7a+0x3*0x2ce+-0x3*-0x1b1)){const _0x2f1771=_0x3d9512[_0x435f3a(0x2f1,'\x36\x4c\x71\x26')](-(-0x1*-0x2327+0xc51+-0x2f75)),_0x3a16df=_0x2f1771[_0x435f3a(0x1be,'\x42\x6c\x34\x61')](_0x49df21=>_0x49df21&&_0x49df21[_0x435f3a(0xda,'\x54\x74\x4a\x32')]&&_0x49df21[_0x435f3a(0x20f,'\x64\x68\x63\x73')][_0x435f3a(0x16c,'\x4d\x31\x65\x4e')]===_0x435f3a(0xf5,'\x49\x34\x58\x37'))[_0x435f3a(0x1fd,'\x79\x64\x42\x40')],_0x5f49b2={};_0x5f49b2['\x6f\x6b']=!![],_0x5f49b2[_0x435f3a(0x2d8,'\x5a\x74\x6f\x55')]=_0x435f3a(0x2b0,'\x39\x4d\x4e\x72')+_0x435f3a(0xd3,'\x36\x35\x58\x71')+_0x435f3a(0x15c,'\x41\x5b\x42\x23')+_0x435f3a(0x30a,'\x54\x4f\x76\x51');if(_0x58818f[_0x435f3a(0x99,'\x5b\x79\x62\x40')](_0x3a16df,-0x3*0x3d+0xfad*0x1+0x2b*-0x59))return _0x5f49b2;}const _0x38db38={};return _0x38db38['\x6f\x6b']=![],_0x38db38[_0x435f3a(0x244,'\x42\x6c\x34\x61')]='',_0x38db38;}function _0x42c609(){const _0x3e2c34=_0x64cedf,_0x433b70={'\x70\x59\x56\x73\x65':function(_0x168cd5){return _0x168cd5();},'\x54\x41\x55\x78\x6d':function(_0x14d028){return _0x14d028();},'\x6c\x79\x6e\x59\x4c':function(_0x54cbe1){return _0x54cbe1();},'\x70\x50\x77\x4f\x52':function(_0x40a003,_0x145a31){return _0x40a003(_0x145a31);},'\x51\x74\x48\x70\x76':function(_0x8dc571){return _0x8dc571();},'\x53\x74\x64\x4d\x4c':function(_0x3fb698,_0x559464){return _0x3fb698===_0x559464;},'\x56\x70\x63\x48\x61':_0x3e2c34(0x2d1,'\x5a\x74\x6f\x55')},_0x19f037=_0x433b70['\x70\x59\x56\x73\x65'](_0x22e713),_0x4ea2d3={'\x76\x65\x72\x73\x69\x6f\x6e':0x1,'\x63\x75\x72\x72\x65\x6e\x74':_0x433b70[_0x3e2c34(0x2a0,'\x50\x21\x28\x41')](_0x2d381d),'\x73\x74\x61\x74\x73':{},'\x68\x69\x73\x74\x6f\x72\x79':[],'\x75\x70\x64\x61\x74\x65\x64\x5f\x61\x74':_0x433b70[_0x3e2c34(0x366,'\x54\x74\x4a\x32')](_0x3335af)},_0x473fc3=_0xa69698(_0x19f037,_0x4ea2d3),_0x24c80b=_0x433b70[_0x3e2c34(0x128,'\x30\x4d\x62\x26')](_0x56ac43,_0x473fc3&&_0x473fc3['\x63\x75\x72\x72\x65\x6e\x74']?_0x473fc3[_0x3e2c34(0x181,'\x28\x78\x7a\x54')]:_0x433b70[_0x3e2c34(0x200,'\x76\x55\x41\x4f')](_0x2d381d)),_0xfcd930=_0x473fc3&&_0x433b70[_0x3e2c34(0x284,'\x79\x64\x42\x40')](typeof _0x473fc3[_0x3e2c34(0x379,'\x7a\x29\x39\x69')],_0x433b70[_0x3e2c34(0x2b3,'\x41\x5b\x42\x23')])?_0x473fc3[_0x3e2c34(0x19e,'\x49\x34\x58\x37')]:{},_0x3dedb6=Array[_0x3e2c34(0xa7,'\x33\x26\x73\x57')](_0x473fc3&&_0x473fc3[_0x3e2c34(0x1d5,'\x68\x41\x28\x38')])?_0x473fc3['\x68\x69\x73\x74\x6f\x72\x79']:[];return{'\x76\x65\x72\x73\x69\x6f\x6e':0x1,'\x63\x75\x72\x72\x65\x6e\x74':_0x24c80b,'\x73\x74\x61\x74\x73':_0xfcd930,'\x68\x69\x73\x74\x6f\x72\x79':_0x3dedb6,'\x75\x70\x64\x61\x74\x65\x64\x5f\x61\x74':_0x473fc3&&_0x473fc3[_0x3e2c34(0xa0,'\x6a\x4a\x50\x5d')+'\x61\x74']?_0x473fc3[_0x3e2c34(0x1f4,'\x68\x41\x28\x38')+'\x61\x74']:_0x3335af()};}function _0xda54b9(_0x362ec7){const _0x40716a=_0x64cedf,_0x37d65e={'\x6c\x53\x45\x4b\x78':function(_0x48c53c,_0x44674b){return _0x48c53c===_0x44674b;},'\x6b\x6e\x4f\x7a\x61':_0x40716a(0x37a,'\x36\x4c\x71\x26'),'\x66\x42\x58\x44\x73':function(_0xcefce9,_0x48b504){return _0xcefce9(_0x48b504);},'\x42\x6d\x4b\x67\x59':function(_0x578d02){return _0x578d02();},'\x50\x73\x6e\x71\x4a':function(_0xa0f35d,_0x547fc6){return _0xa0f35d===_0x547fc6;},'\x58\x62\x4a\x70\x50':function(_0x353fa8,_0x44f240,_0x54b4e2){return _0x353fa8(_0x44f240,_0x54b4e2);}},_0x15da3f=_0x362ec7&&_0x37d65e['\x6c\x53\x45\x4b\x78'](typeof _0x362ec7,_0x37d65e[_0x40716a(0x213,'\x28\x78\x7a\x54')])?_0x362ec7:{},_0x74a21a={'\x76\x65\x72\x73\x69\x6f\x6e':0x1,'\x63\x75\x72\x72\x65\x6e\x74':_0x37d65e[_0x40716a(0x108,'\x50\x21\x28\x41')](_0x56ac43,_0x15da3f[_0x40716a(0x158,'\x33\x26\x73\x57')]||_0x37d65e[_0x40716a(0x18a,'\x79\x64\x42\x40')](_0x2d381d)),'\x73\x74\x61\x74\x73':_0x15da3f[_0x40716a(0x297,'\x64\x68\x63\x73')]&&_0x37d65e['\x50\x73\x6e\x71\x4a'](typeof _0x15da3f[_0x40716a(0xf9,'\x33\x26\x73\x57')],_0x37d65e['\x6b\x6e\x4f\x7a\x61'])?_0x15da3f[_0x40716a(0xd0,'\x4d\x31\x65\x4e')]:{},'\x68\x69\x73\x74\x6f\x72\x79':Array[_0x40716a(0xac,'\x43\x4e\x29\x64')](_0x15da3f[_0x40716a(0x1d5,'\x68\x41\x28\x38')])?_0x15da3f[_0x40716a(0x1ea,'\x42\x6c\x34\x61')][_0x40716a(0x18f,'\x30\x65\x23\x4c')](-(0x2648+-0x14d4+-0x10fc)):[],'\x75\x70\x64\x61\x74\x65\x64\x5f\x61\x74':_0x37d65e[_0x40716a(0x117,'\x50\x21\x28\x41')](_0x3335af)};return _0x37d65e[_0x40716a(0x321,'\x59\x77\x67\x4e')](_0x56a6a9,_0x37d65e[_0x40716a(0x283,'\x54\x4f\x76\x51')](_0x22e713),_0x74a21a),_0x74a21a;}function _0x34ae21({driftEnabled:_0x5d88b7,signals:_0x1a4f89,recentEvents:_0x2c4d40}={}){const _0xcee318=_0x64cedf,_0x430515={'\x63\x48\x6d\x4a\x52':function(_0x1cf0e0,_0x3a70c6){return _0x1cf0e0(_0x3a70c6);},'\x44\x4a\x50\x46\x64':function(_0x37b92f,_0x3d8fa4,_0x2c9798){return _0x37b92f(_0x3d8fa4,_0x2c9798);},'\x69\x43\x4b\x45\x64':_0xcee318(0x280,'\x28\x78\x7a\x54')+_0xcee318(0x167,'\x76\x55\x41\x4f')+_0xcee318(0xff,'\x7a\x29\x39\x69'),'\x79\x53\x50\x50\x4e':function(_0x2efd31,_0x6c180a,_0x342964){return _0x2efd31(_0x6c180a,_0x342964);},'\x68\x66\x4e\x75\x45':function(_0x9b5a2b,_0x3d7fb0){return _0x9b5a2b(_0x3d7fb0);},'\x64\x47\x58\x6f\x56':function(_0x162572,_0x474f77){return _0x162572<=_0x474f77;},'\x4f\x47\x70\x53\x54':function(_0x1d6b3c,_0x54901f){return _0x1d6b3c*_0x54901f;},'\x50\x4e\x4a\x44\x4f':function(_0x555142,_0x20f85c){return _0x555142/_0x20f85c;},'\x4d\x42\x71\x6a\x72':function(_0x58f3ef,_0x39fa28){return _0x58f3ef(_0x39fa28);},'\x6e\x6c\x6a\x63\x65':function(_0x346dff,_0x4d4c3a){return _0x346dff!==_0x4d4c3a;},'\x4e\x6d\x6c\x74\x6b':_0xcee318(0x228,'\x26\x39\x56\x57'),'\x77\x43\x4d\x4c\x61':function(_0x388c6a,_0x41dd1e){return _0x388c6a(_0x41dd1e);},'\x6f\x58\x45\x64\x78':'\x72\x65\x66\x6c\x65\x63\x74\x69'+'\x6f\x6e','\x77\x75\x68\x41\x67':function(_0x2672e6,_0x7991b3){return _0x2672e6-_0x7991b3;},'\x47\x58\x49\x5a\x76':function(_0x204dfe,_0x16ab53){return _0x204dfe(_0x16ab53);},'\x68\x73\x49\x41\x59':function(_0x57d6ec){return _0x57d6ec();},'\x79\x42\x74\x76\x75':function(_0x271960,_0xd9dbb5){return _0x271960(_0xd9dbb5);},'\x44\x4c\x61\x48\x70':function(_0x2ff007,_0x368443){return _0x2ff007===_0x368443;},'\x79\x6d\x62\x77\x73':_0xcee318(0x175,'\x36\x35\x58\x71'),'\x5a\x56\x4c\x65\x6d':_0xcee318(0x225,'\x64\x68\x63\x73'),'\x55\x63\x4a\x50\x76':function(_0x170646,_0x55550b){return _0x170646(_0x55550b);},'\x71\x70\x64\x72\x7a':function(_0xe4bc5b,_0xa0cffc,_0x371d7f){return _0xe4bc5b(_0xa0cffc,_0x371d7f);},'\x54\x48\x72\x63\x67':function(_0x137920,_0x1fdc3d){return _0x137920+_0x1fdc3d;},'\x53\x75\x75\x70\x43':function(_0x433800,_0x13ff58){return _0x433800<_0x13ff58;},'\x50\x76\x71\x79\x54':'\x76\x59\x4f\x4f\x71','\x71\x4f\x46\x75\x6d':'\x2e\x2f\x72\x65\x66\x6c\x65\x63'+_0xcee318(0x1d0,'\x73\x6b\x55\x23'),'\x41\x6b\x62\x52\x56':function(_0x3ea12d,_0x1e40eb){return _0x3ea12d>_0x1e40eb;},'\x4d\x6b\x76\x52\x44':function(_0x511cf2,_0xefbec1){return _0x511cf2>_0xefbec1;},'\x4a\x67\x74\x4a\x4e':function(_0x5c09a6,_0x36c53a){return _0x5c09a6===_0x36c53a;},'\x6f\x45\x45\x7a\x55':function(_0x3510bb,_0x41c6bc){return _0x3510bb-_0x41c6bc;},'\x4d\x6c\x76\x63\x62':function(_0x3f7871,_0x21c478){return _0x3f7871(_0x21c478);}},_0x3438d1=_0x430515[_0xcee318(0x36e,'\x4d\x31\x65\x4e')](_0x42c609),_0x1829ba=_0x56ac43(_0x3438d1[_0xcee318(0x1e4,'\x24\x77\x45\x77')]),_0x23e0ca=_0x3438d1[_0xcee318(0x165,'\x79\x64\x42\x40')]||{},_0x3860e3=_0x430515['\x79\x42\x74\x76\x75'](_0xf503ed,_0x23e0ca);let _0x1ca321=[];if(_0x3860e3&&_0x3860e3[_0xcee318(0x21d,'\x42\x6c\x34\x61')]){if(_0x430515['\x44\x4c\x61\x48\x70'](_0x430515[_0xcee318(0x23e,'\x28\x61\x67\x59')],_0x430515[_0xcee318(0x239,'\x43\x47\x71\x5e')])){const _0x3c796f=_0x430515['\x63\x48\x6d\x4a\x52'](_0x190da9,_0x2654f6[_0xcee318(0x1b1,'\x4d\x31\x65\x4e')]),_0x3c1285=_0x430515[_0xcee318(0x166,'\x46\x58\x45\x70')](_0x3ffaef,_0x35b4f9,_0x3c796f)[_0xcee318(0x30b,'\x30\x4d\x62\x26')](_0x49c4eb=>_0xb8bbe5[_0xcee318(0x1a1,'\x36\x35\x58\x71')](_0x49c4eb['\x64\x65\x6c\x74\x61'])>=-0x12*0x1b3+-0x1f4d+-0x3de3*-0x1+0.05),_0x3f60dc=[];for(const _0x385e2b of _0x3c1285[_0xcee318(0x10d,'\x26\x39\x56\x57')](0x7*-0x221+0x1555+-0x337*0x2,-0x1793+0x16cc*0x1+0xc9)){const _0xd42921=_0x14aa1f[_0xcee318(0x192,'\x28\x71\x72\x37')](-(0xba7+-0x14*0x50+-0x567+0.1),_0x8f88df['\x6d\x69\x6e'](-0x1f*-0x27+-0x65*-0x1b+-0x290*0x6+0.1,_0x385e2b[_0xcee318(0x26d,'\x6a\x5e\x5b\x28')])),_0x3f03f={};_0x3f03f[_0xcee318(0x241,'\x39\x4d\x4e\x72')]=_0x430515[_0xcee318(0x320,'\x36\x4c\x71\x26')],_0x3f03f[_0xcee318(0x11e,'\x49\x34\x58\x37')]=_0x385e2b[_0xcee318(0xd6,'\x68\x41\x28\x38')],_0x3f03f[_0xcee318(0x1bb,'\x30\x4d\x62\x26')]=_0xd42921,_0x3f03f[_0xcee318(0x8a,'\x43\x4e\x29\x64')]=_0xcee318(0x2d3,'\x2a\x6d\x61\x5b')+_0xcee318(0x19f,'\x46\x42\x6f\x26')+'\x6e',_0x3f60dc[_0xcee318(0x1db,'\x30\x65\x23\x4c')](_0x3f03f);}const _0xbe2846=_0x430515[_0xcee318(0x274,'\x68\x41\x28\x38')](_0x3539e8,_0xf2f55b,_0x3f60dc);_0x35da64[_0xcee318(0x27a,'\x46\x58\x45\x70')]=_0xbe2846[_0xcee318(0x2dc,'\x39\x4d\x4e\x72')],_0x30877e=_0xbe2846[_0xcee318(0x8f,'\x4d\x31\x65\x4e')];}else{const _0xad1e41=_0x13646c(_0x3860e3[_0xcee318(0x24f,'\x28\x71\x72\x37')]),_0x57c29f=_0x430515[_0xcee318(0x35e,'\x30\x4d\x62\x26')](_0x5a6eb8,_0x1829ba,_0xad1e41)[_0xcee318(0x183,'\x34\x65\x76\x64')](_0x4cd53a=>Math[_0xcee318(0x1b5,'\x49\x34\x58\x37')](_0x4cd53a[_0xcee318(0x160,'\x64\x61\x56\x56')])>=0x2510+0x4b7*-0x7+0x1*-0x40f+0.05),_0x448f26=[];for(const _0x1cb593 of _0x57c29f[_0xcee318(0xb7,'\x38\x45\x6a\x58')](-0x2*-0x8b8+0x25e6+0x3*-0x1272,0x5a2*-0x5+-0x7*-0x4a1+-0x43b)){const _0x5c2d7f=Math[_0xcee318(0x269,'\x23\x2a\x58\x36')](-(-0x24dc+0xc5d+0x1*0x187f+0.1),Math[_0xcee318(0x1aa,'\x73\x6b\x55\x23')](-0x200e+0x3e4+-0x2*-0xe15+0.1,_0x1cb593[_0xcee318(0x220,'\x49\x34\x58\x37')])),_0x5635a9={};_0x5635a9[_0xcee318(0x1fb,'\x46\x58\x45\x70')]=_0x430515[_0xcee318(0x25f,'\x24\x77\x45\x77')],_0x5635a9[_0xcee318(0x227,'\x42\x6c\x34\x61')]=_0x1cb593['\x70\x61\x72\x61\x6d'],_0x5635a9[_0xcee318(0x31d,'\x59\x77\x67\x4e')]=_0x5c2d7f,_0x5635a9[_0xcee318(0x286,'\x28\x61\x67\x59')]=_0xcee318(0x371,'\x73\x6b\x55\x23')+_0xcee318(0x116,'\x28\x61\x67\x59')+'\x6e',_0x448f26['\x70\x75\x73\x68'](_0x5635a9);}const _0x488f30=_0x151bcc(_0x1829ba,_0x448f26);_0x3438d1[_0xcee318(0x2de,'\x49\x23\x59\x5b')]=_0x488f30[_0xcee318(0x2e1,'\x4d\x31\x65\x4e')],_0x1ca321=_0x488f30[_0xcee318(0x32d,'\x28\x71\x72\x37')];}}const _0x53d13c={};_0x53d13c[_0xcee318(0x113,'\x54\x4f\x76\x51')+_0xcee318(0x2d9,'\x46\x42\x6f\x26')]=!!_0x5d88b7,_0x53d13c[_0xcee318(0x10f,'\x49\x34\x58\x37')+_0xcee318(0x15e,'\x28\x61\x67\x59')]=_0x2c4d40;const _0xb9f618=_0x26159d(_0x53d13c);let _0x358f91=[];if(_0xb9f618['\x6f\x6b']){const _0x2ce82f={};_0x2ce82f[_0xcee318(0x191,'\x59\x6e\x66\x53')+'\x65']=_0x3438d1[_0xcee318(0x2a3,'\x7a\x29\x39\x69')],_0x2ce82f[_0xcee318(0x180,'\x2a\x6d\x61\x5b')]=_0xb9f618[_0xcee318(0x2d8,'\x5a\x74\x6f\x55')],_0x2ce82f[_0xcee318(0xce,'\x28\x61\x67\x59')+_0xcee318(0x29a,'\x56\x6c\x55\x79')]=!!_0x5d88b7,_0x2ce82f['\x73\x69\x67\x6e\x61\x6c\x73']=_0x1a4f89;const _0x312f3e=_0x430515[_0xcee318(0xa2,'\x56\x6c\x55\x79')](_0x1c798f,_0x2ce82f),_0x4c7967=_0x430515[_0xcee318(0x38c,'\x33\x26\x73\x57')](_0x151bcc,_0x3438d1[_0xcee318(0x307,'\x59\x77\x67\x4e')],_0x312f3e);_0x3438d1['\x63\x75\x72\x72\x65\x6e\x74']=_0x4c7967[_0xcee318(0x2a6,'\x6a\x5e\x5b\x28')],_0x358f91=_0x4c7967[_0xcee318(0x347,'\x79\x64\x42\x40')];}let _0x13c20f=[];var _0x2313de=_0x430515[_0xcee318(0x31f,'\x39\x4d\x4e\x72')](_0x1ca321[_0xcee318(0xe5,'\x36\x4c\x71\x26')],_0x358f91[_0xcee318(0x2ce,'\x24\x77\x45\x77')]);if(_0x430515[_0xcee318(0x9d,'\x30\x4d\x62\x26')](_0x2313de,-0x1f93+-0x100f+-0x6*-0x7f1))try{if(_0x430515[_0xcee318(0x157,'\x29\x21\x55\x48')](_0x430515[_0xcee318(0x14c,'\x6a\x5e\x5b\x28')],_0x430515[_0xcee318(0x25c,'\x59\x6e\x66\x53')])){const _0x210afc={};_0x210afc[_0xcee318(0x184,'\x5b\x79\x62\x40')+'\x65']=!![];if(!_0x5ec6e9['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0xdbe956))_0x3b463[_0xcee318(0x389,'\x76\x55\x41\x4f')+'\x63'](_0x1a14b2,_0x210afc);}else{const {loadRecentReflections:_0x492eab}=_0x430515[_0xcee318(0x2a8,'\x28\x61\x67\x59')](require,_0x430515['\x71\x4f\x46\x75\x6d']),_0x154d5c=_0x430515[_0xcee318(0x323,'\x26\x39\x56\x57')](_0x492eab,0x1937+0x47b+0x2b3*-0xb);if(_0x430515[_0xcee318(0x1c1,'\x49\x23\x59\x5b')](_0x154d5c[_0xcee318(0xe8,'\x73\x6b\x55\x23')],-0x2071+-0x1266+0x32d7)&&Array[_0xcee318(0x91,'\x36\x4c\x71\x26')](_0x154d5c[-0x1e93+-0x1a1*0x1+0x1ca*0x12][_0xcee318(0x240,'\x2a\x6d\x61\x5b')+_0xcee318(0x1de,'\x34\x65\x76\x64')+_0xcee318(0x36c,'\x2a\x6d\x61\x5b')])&&_0x430515['\x4d\x6b\x76\x52\x44'](_0x154d5c[-0x6aa*0x1+-0xa42+0x10ec][_0xcee318(0x343,'\x68\x41\x28\x38')+_0xcee318(0x21f,'\x79\x64\x42\x40')+_0xcee318(0x93,'\x41\x5b\x42\x23')]['\x6c\x65\x6e\x67\x74\x68'],-0x1692+-0x19d1*-0x1+-0x1*0x33f)){if(_0x430515[_0xcee318(0x28b,'\x50\x21\x28\x41')](_0xcee318(0x1f3,'\x2a\x6d\x61\x5b'),_0xcee318(0x2e6,'\x43\x4e\x29\x64'))){var _0xcb9308=_0x154d5c[-0xef*0x5+0x1*0xf7f+-0xad4][_0xcee318(0xb0,'\x79\x64\x42\x40')+_0xcee318(0x237,'\x4d\x31\x65\x4e')+_0xcee318(0x30d,'\x64\x68\x63\x73')]['\x73\x6c\x69\x63\x65'](0x1*0x2335+-0x95e+-0x19d7,_0x430515[_0xcee318(0x28c,'\x5b\x79\x62\x40')](0x861+0x2*0xf86+-0x2769,_0x2313de))[_0xcee318(0x150,'\x41\x5b\x42\x23')](function(_0x2772fb){const _0x315092=_0xcee318;if(_0x430515[_0x315092(0x1ac,'\x28\x78\x7a\x54')](_0x315092(0x2c6,'\x64\x68\x63\x73'),_0x430515[_0x315092(0x1a2,'\x6a\x5e\x5b\x28')]))return{'\x74\x79\x70\x65':_0x430515[_0x315092(0x176,'\x39\x4d\x4e\x72')],'\x70\x61\x72\x61\x6d':_0x2772fb[_0x315092(0x204,'\x63\x6b\x5e\x7a')],'\x64\x65\x6c\x74\x61':Math[_0x315092(0x242,'\x41\x5b\x42\x23')](-(0xad*0x31+-0x1*-0x220f+-0x1664*0x3+0.1),Math[_0x315092(0x235,'\x42\x6c\x34\x61')](0x9ad*0x2+-0x25be+0x1264+0.1,_0x430515[_0x315092(0x17d,'\x30\x4d\x62\x26')](Number,_0x2772fb['\x64\x65\x6c\x74\x61'])||-0x1017+-0x1bd2+0x2be9)),'\x72\x65\x61\x73\x6f\x6e':_0x430515[_0x315092(0xb9,'\x43\x4e\x29\x64')](String,_0x2772fb[_0x315092(0x11d,'\x59\x6e\x66\x53')]||_0x430515[_0x315092(0xe0,'\x59\x6e\x66\x53')])[_0x315092(0x2f1,'\x36\x4c\x71\x26')](-0x1163*-0x1+-0x154a+0x3e7*0x1,0x7*-0x9d+-0x82*-0x49+0xdf*-0x25)};else{const _0x4d68ea=JEeblx[_0x315092(0x2d7,'\x74\x44\x63\x39')](_0x3e5d6b,_0x3f5d40);if(!_0x2171bd[_0x315092(0x390,'\x5b\x72\x78\x6a')](_0x4d68ea)||JEeblx[_0x315092(0x388,'\x59\x6e\x66\x53')](_0x4d68ea,0x62b+-0xdf2+0x1*0x7c7))return _0x3489db;return JEeblx[_0x315092(0x1bc,'\x48\x73\x54\x29')](_0x5a725e[_0x315092(0x170,'\x43\x47\x71\x5e')](JEeblx[_0x315092(0x248,'\x68\x41\x28\x38')](JEeblx[_0x315092(0x292,'\x26\x39\x56\x57')](_0x25ef9a,_0x18123d),_0x4d68ea)),_0x4d68ea);}});const _0x72f681=_0x151bcc(_0x3438d1['\x63\x75\x72\x72\x65\x6e\x74'],_0xcb9308);_0x3438d1[_0xcee318(0x208,'\x5b\x72\x78\x6a')]=_0x72f681[_0xcee318(0x272,'\x64\x61\x56\x56')],_0x13c20f=_0x72f681['\x61\x70\x70\x6c\x69\x65\x64'];}else _0x17f13b[_0xcee318(0xf4,'\x6a\x4a\x50\x5d')]({'\x70\x61\x72\x61\x6d':_0x5c00d4,'\x64\x65\x6c\x74\x61':JEeblx[_0xcee318(0x341,'\x5b\x72\x78\x6a')](JEeblx[_0xcee318(0x1a8,'\x28\x78\x7a\x54')](_0x263826,_0x3d5f4b[_0x17ba11]),JEeblx[_0xcee318(0x1e8,'\x64\x68\x63\x73')](_0x3765b6,_0x55ad67[_0x496ef7]))});}}}catch(_0x8b0f36){}const _0x37c89b=_0x430515[_0xcee318(0x173,'\x30\x65\x23\x4c')](_0xda54b9,_0x3438d1),_0x46147c=_0x430515['\x4d\x6c\x76\x63\x62'](_0x17a70f,_0x37c89b['\x63\x75\x72\x72\x65\x6e\x74']),_0x574b67=!!(_0x37c89b[_0xcee318(0x2f7,'\x43\x4e\x29\x64')]&&_0x37c89b[_0xcee318(0x374,'\x54\x74\x4a\x32')][_0x46147c]);return{'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x73\x74\x61\x74\x65':_0x37c89b[_0xcee318(0x18c,'\x49\x34\x58\x37')],'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x6b\x65\x79':_0x46147c,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x6b\x6e\x6f\x77\x6e':_0x574b67,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x6d\x75\x74\x61\x74\x69\x6f\x6e\x73':[..._0x1ca321,..._0x358f91,..._0x13c20f],'\x6d\x6f\x64\x65\x6c\x5f\x6d\x65\x74\x61':{'\x62\x65\x73\x74\x5f\x6b\x6e\x6f\x77\x6e\x5f\x6b\x65\x79':_0x3860e3&&_0x3860e3[_0xcee318(0x161,'\x59\x6e\x66\x53')]?_0x3860e3['\x6b\x65\x79']:null,'\x62\x65\x73\x74\x5f\x6b\x6e\x6f\x77\x6e\x5f\x73\x63\x6f\x72\x65':_0x3860e3&&Number[_0xcee318(0x318,'\x24\x77\x45\x77')](_0x430515['\x77\x43\x4d\x4c\x61'](Number,_0x3860e3[_0xcee318(0x303,'\x49\x23\x59\x5b')]))?Number(_0x3860e3[_0xcee318(0x10e,'\x26\x39\x56\x57')]):null,'\x74\x72\x69\x67\x67\x65\x72\x65\x64':_0xb9f618['\x6f\x6b']?{'\x72\x65\x61\x73\x6f\x6e':_0xb9f618[_0xcee318(0x11d,'\x59\x6e\x66\x53')]}:null}};}function _0x34ec3d({personalityState:_0x539d71,outcome:_0x162e72,score:_0x554c2a,notes:_0x3ece7f}={}){const _0x1df159=_0x64cedf,_0x2e151f={'\x78\x67\x79\x78\x4b':function(_0x55dbbb){return _0x55dbbb();},'\x61\x63\x74\x66\x75':function(_0x5a5a69,_0x36c867){return _0x5a5a69(_0x36c867);},'\x4b\x53\x65\x76\x75':function(_0xc031a5,_0x3a928c){return _0xc031a5(_0x3a928c);},'\x62\x43\x44\x56\x74':function(_0x442d2a,_0x1ddeeb){return _0x442d2a!==_0x1ddeeb;},'\x41\x6b\x49\x5a\x4b':'\x6f\x62\x6a\x65\x63\x74','\x52\x41\x56\x44\x46':function(_0x550482,_0x57cad3){return _0x550482===_0x57cad3;},'\x6d\x68\x78\x52\x64':function(_0x450ec3,_0x16473d){return _0x450ec3(_0x16473d);},'\x6e\x4d\x6e\x63\x51':function(_0x2958e0,_0x29b385){return _0x2958e0||_0x29b385;},'\x50\x48\x59\x67\x52':function(_0x3971fd,_0x1e6c1a){return _0x3971fd===_0x1e6c1a;},'\x53\x70\x67\x53\x4a':_0x1df159(0x13d,'\x5b\x72\x78\x6a'),'\x75\x63\x48\x77\x63':function(_0x178934,_0x5b2f65){return _0x178934(_0x5b2f65);},'\x4e\x4b\x77\x66\x59':function(_0x40e3ab,_0x1467db){return _0x40e3ab+_0x1467db;},'\x46\x43\x59\x56\x7a':function(_0x4f58b0,_0xf2403b){return _0x4f58b0(_0xf2403b);},'\x47\x4b\x75\x6d\x65':function(_0x2928bb,_0xc99aa6){return _0x2928bb(_0xc99aa6);},'\x52\x4d\x43\x6b\x63':function(_0x4aadac,_0xa2d9de){return _0x4aadac-_0xa2d9de;},'\x69\x53\x61\x49\x50':function(_0x5204b8){return _0x5204b8();},'\x43\x61\x55\x45\x4d':function(_0x90d70d,_0x50aa94){return _0x90d70d===_0x50aa94;},'\x64\x7a\x67\x74\x43':_0x1df159(0xf5,'\x49\x34\x58\x37'),'\x75\x56\x61\x75\x71':_0x1df159(0xd2,'\x42\x6c\x34\x61'),'\x79\x6b\x61\x66\x54':function(_0x490784,_0x83c008){return _0x490784(_0x83c008);}},_0x4226a8=_0x2e151f['\x78\x67\x79\x78\x4b'](_0x42c609),_0x2905b7=_0x2e151f[_0x1df159(0x1d9,'\x26\x52\x47\x50')](_0x56ac43,_0x539d71||_0x4226a8[_0x1df159(0x337,'\x42\x6c\x34\x61')]),_0x1447ea=_0x2e151f[_0x1df159(0x290,'\x41\x5b\x42\x23')](_0x17a70f,_0x2905b7);if(!_0x4226a8[_0x1df159(0xf9,'\x33\x26\x73\x57')]||_0x2e151f[_0x1df159(0x301,'\x2a\x6d\x61\x5b')](typeof _0x4226a8[_0x1df159(0x19e,'\x49\x34\x58\x37')],_0x2e151f['\x41\x6b\x49\x5a\x4b']))_0x4226a8[_0x1df159(0x29f,'\x76\x55\x41\x4f')]={};const _0x10f9f5={};_0x10f9f5[_0x1df159(0x295,'\x4e\x66\x56\x21')]=0x0,_0x10f9f5[_0x1df159(0xde,'\x28\x78\x7a\x54')]=0x0,_0x10f9f5[_0x1df159(0x1e5,'\x6a\x5e\x5b\x28')+'\x65']=0.5,_0x10f9f5['\x6e']=0x0;const _0x1e721f=_0x4226a8[_0x1df159(0x2ff,'\x26\x39\x56\x57')][_0x1447ea]&&_0x2e151f['\x52\x41\x56\x44\x46'](typeof _0x4226a8[_0x1df159(0x19e,'\x49\x34\x58\x37')][_0x1447ea],_0x2e151f[_0x1df159(0x202,'\x64\x61\x56\x56')])?_0x4226a8['\x73\x74\x61\x74\x73'][_0x1447ea]:_0x10f9f5,_0x18d2da=_0x2e151f[_0x1df159(0x10c,'\x49\x34\x58\x37')](String,_0x2e151f[_0x1df159(0x38a,'\x73\x6b\x55\x23')](_0x162e72,''))[_0x1df159(0x21c,'\x7a\x29\x39\x69')+'\x61\x73\x65']();if(_0x2e151f['\x50\x48\x59\x67\x52'](_0x18d2da,_0x2e151f[_0x1df159(0x1a0,'\x49\x34\x58\x37')]))_0x1e721f[_0x1df159(0x21a,'\x28\x71\x72\x37')]=(_0x2e151f[_0x1df159(0x322,'\x59\x6e\x66\x53')](Number,_0x1e721f[_0x1df159(0x13c,'\x34\x65\x76\x64')])||-0x10b5+0x7*0xa6+0xc2b)+(0x1b93+0xf2c+-0x155f*0x2);else{if(_0x2e151f['\x50\x48\x59\x67\x52'](_0x18d2da,_0x1df159(0x354,'\x30\x4d\x62\x26')))_0x1e721f[_0x1df159(0x381,'\x6a\x4a\x50\x5d')]=_0x2e151f[_0x1df159(0x23c,'\x54\x4f\x76\x51')](_0x2e151f[_0x1df159(0x216,'\x36\x35\x58\x71')](Number,_0x1e721f[_0x1df159(0x355,'\x63\x6b\x5e\x7a')])||-0x6c1*-0x3+-0x4e5*0x1+0x232*-0x7,-0x1009+0x1*-0x1d07+0x2d11);}const _0x20f016=Number[_0x1df159(0x89,'\x5b\x79\x62\x40')](_0x2e151f[_0x1df159(0x2bb,'\x46\x58\x45\x70')](Number,_0x554c2a))?_0x1cb033(_0x2e151f[_0x1df159(0x232,'\x5a\x74\x6f\x55')](Number,_0x554c2a)):null;if(_0x20f016!=null){const _0x34e321=(_0x2e151f[_0x1df159(0x13e,'\x46\x58\x45\x70')](Number,_0x1e721f['\x6e'])||-0x389+0xd12*0x1+-0x989)+(-0x18e3+-0x647*-0x3+0x60f),_0x5df2ae=Number[_0x1df159(0x1d3,'\x33\x6d\x6d\x5e')](_0x2e151f[_0x1df159(0x1e2,'\x39\x4d\x4e\x72')](Number,_0x1e721f[_0x1df159(0x38e,'\x29\x21\x55\x48')+'\x65']))?Number(_0x1e721f[_0x1df159(0x218,'\x59\x77\x67\x4e')+'\x65']):-0x1f80+-0x21a0+0x4120+0.5;_0x1e721f[_0x1df159(0x172,'\x33\x6d\x6d\x5e')+'\x65']=_0x2e151f['\x4e\x4b\x77\x66\x59'](_0x5df2ae,_0x2e151f[_0x1df159(0x24b,'\x46\x58\x45\x70')](_0x20f016,_0x5df2ae)/_0x34e321),_0x1e721f['\x6e']=_0x34e321;}_0x1e721f[_0x1df159(0x26f,'\x56\x6c\x55\x79')+'\x61\x74']=_0x2e151f[_0x1df159(0x1b3,'\x74\x44\x63\x39')](_0x3335af),_0x4226a8[_0x1df159(0x165,'\x79\x64\x42\x40')][_0x1447ea]=_0x1e721f,_0x4226a8['\x68\x69\x73\x74\x6f\x72\x79']=Array[_0x1df159(0x2e5,'\x68\x41\x28\x38')](_0x4226a8[_0x1df159(0x23f,'\x29\x21\x55\x48')])?_0x4226a8[_0x1df159(0x2e8,'\x28\x71\x72\x37')]:[],_0x4226a8[_0x1df159(0xa8,'\x59\x77\x67\x4e')]['\x70\x75\x73\x68']({'\x61\x74':_0x2e151f[_0x1df159(0x336,'\x33\x6d\x6d\x5e')](_0x3335af),'\x6b\x65\x79':_0x1447ea,'\x6f\x75\x74\x63\x6f\x6d\x65':_0x18d2da===_0x1df159(0x298,'\x49\x34\x58\x37')||_0x2e151f[_0x1df159(0x24a,'\x36\x4c\x71\x26')](_0x18d2da,_0x2e151f[_0x1df159(0x1d4,'\x43\x47\x71\x5e')])?_0x18d2da:_0x2e151f[_0x1df159(0x316,'\x76\x55\x41\x4f')],'\x73\x63\x6f\x72\x65':_0x20f016,'\x6e\x6f\x74\x65\x73':_0x3ece7f?String(_0x3ece7f)[_0x1df159(0x2bd,'\x41\x5b\x42\x23')](0x4cb+-0x34*0x65+-0x5*-0x325,-0x1432+-0xfe4+-0x2*-0x1279):null}),_0x2e151f[_0x1df159(0xa3,'\x54\x4f\x76\x51')](_0xda54b9,_0x4226a8);const _0x477786={};return _0x477786[_0x1df159(0xa1,'\x43\x4e\x29\x64')]=_0x1447ea,_0x477786[_0x1df159(0x19e,'\x49\x34\x58\x37')]=_0x1e721f,_0x477786;}function _0x4c48cb({severity:severity=_0x64cedf(0x372,'\x7a\x29\x39\x69')+'\x64',evalsSinceImprovement:evalsSinceImprovement=0x1*0x18e3+-0x1645+-0x29e}={}){const _0x2f13b7=_0x64cedf,_0x47c633={'\x54\x51\x50\x59\x46':_0x2f13b7(0x2f2,'\x59\x77\x67\x4e')+_0x2f13b7(0x1c7,'\x43\x4e\x29\x64')+_0x2f13b7(0x2a4,'\x4d\x31\x65\x4e'),'\x72\x72\x42\x6e\x70':_0x2f13b7(0x38b,'\x26\x52\x47\x50')+'\x74\x79','\x4f\x6b\x6f\x78\x71':function(_0xd7e4d8,_0x290111){return _0xd7e4d8||_0x290111;},'\x61\x42\x51\x47\x52':_0x2f13b7(0x149,'\x30\x65\x23\x4c')+_0x2f13b7(0x296,'\x50\x21\x28\x41')+_0x2f13b7(0x36f,'\x42\x6c\x34\x61')+_0x2f13b7(0x1ec,'\x46\x42\x6f\x26'),'\x54\x48\x69\x64\x4d':_0x2f13b7(0x19c,'\x4d\x31\x65\x4e')+_0x2f13b7(0xad,'\x23\x2a\x58\x36'),'\x62\x6e\x4c\x77\x59':_0x2f13b7(0x207,'\x5a\x74\x6f\x55')+_0x2f13b7(0x24e,'\x54\x74\x4a\x32')+_0x2f13b7(0x2a2,'\x48\x73\x54\x29')+_0x2f13b7(0x1e7,'\x49\x34\x58\x37'),'\x4b\x44\x72\x63\x48':_0x2f13b7(0x134,'\x2a\x6d\x61\x5b'),'\x53\x57\x6d\x58\x56':function(_0x3bbbed,_0x1a8668){return _0x3bbbed!==_0x1a8668;},'\x4e\x69\x4c\x49\x4a':_0x2f13b7(0x289,'\x24\x77\x45\x77'),'\x73\x5a\x6b\x4b\x76':_0x2f13b7(0x27d,'\x36\x4c\x71\x26'),'\x45\x55\x4c\x75\x52':function(_0x329202,_0x37eddc){return _0x329202+_0x37eddc;},'\x51\x42\x45\x47\x4f':_0x2f13b7(0xf6,'\x34\x65\x76\x64')+'\x69\x76\x6f\x74\x5f\x72\x65\x71'+_0x2f13b7(0x28d,'\x76\x55\x41\x4f')+_0x2f13b7(0x1ba,'\x39\x4d\x4e\x72'),'\x76\x6e\x73\x4e\x73':_0x2f13b7(0x1c2,'\x64\x68\x63\x73')+_0x2f13b7(0x350,'\x6a\x4a\x50\x5d')+_0x2f13b7(0x362,'\x29\x21\x55\x48'),'\x68\x74\x42\x63\x4a':function(_0x59f75b,_0x8f87fd){return _0x59f75b+_0x8f87fd;},'\x56\x6f\x64\x47\x4b':function(_0x58808a,_0x378bf2){return _0x58808a+_0x378bf2;},'\x77\x71\x7a\x71\x59':_0x2f13b7(0x103,'\x28\x61\x67\x59'),'\x4a\x6c\x70\x73\x41':_0x2f13b7(0x1a3,'\x36\x4c\x71\x26')+'\x70\x6c\x6f\x72\x61\x74\x69\x6f'+_0x2f13b7(0x17b,'\x50\x21\x28\x41'),'\x68\x77\x67\x6f\x59':function(_0x53d8c9,_0x3c530b,_0x263b65){return _0x53d8c9(_0x3c530b,_0x263b65);},'\x7a\x6a\x6b\x6a\x4b':function(_0x707346,_0x3f76ad){return _0x707346(_0x3f76ad);},'\x6a\x6a\x61\x4b\x43':function(_0x3cc857,_0x44950a){return _0x3cc857+_0x44950a;},'\x78\x47\x45\x67\x78':function(_0x366539,_0x5492f3){return _0x366539+_0x5492f3;},'\x6a\x42\x43\x55\x70':_0x2f13b7(0xa5,'\x46\x42\x6f\x26')+_0x2f13b7(0x15b,'\x6a\x5e\x5b\x28')+_0x2f13b7(0x8c,'\x50\x21\x28\x41'),'\x54\x6b\x53\x50\x73':function(_0xca2268,_0x4d3cd3){return _0xca2268(_0x4d3cd3);}},_0x3daba0=_0x42c609(),_0x3fd187=_0x56ac43(_0x3daba0[_0x2f13b7(0x171,'\x41\x5b\x42\x23')]),_0x2b1f7f=[];if(severity===_0x47c633['\x4b\x44\x72\x63\x48']){if(_0x47c633[_0x2f13b7(0x351,'\x49\x34\x58\x37')](_0x47c633[_0x2f13b7(0x282,'\x38\x45\x6a\x58')],_0x47c633['\x73\x5a\x6b\x4b\x76']))_0x2b1f7f[_0x2f13b7(0x1c3,'\x24\x77\x45\x77')]({'\x74\x79\x70\x65':_0x47c633['\x54\x51\x50\x59\x46'],'\x70\x61\x72\x61\x6d':_0x47c633[_0x2f13b7(0x131,'\x48\x73\x54\x29')],'\x64\x65\x6c\x74\x61':+(0x98d*0x2+0x1*-0xb35+-0x2b*0x2f+0.2),'\x72\x65\x61\x73\x6f\x6e':_0x47c633['\x45\x55\x4c\x75\x52'](_0x47c633[_0x2f13b7(0x22d,'\x34\x65\x76\x64')](_0x47c633[_0x2f13b7(0xdb,'\x34\x65\x76\x64')],evalsSinceImprovement),_0x2f13b7(0x324,'\x28\x71\x72\x37'))},{'\x74\x79\x70\x65':_0x47c633[_0x2f13b7(0x194,'\x33\x26\x73\x57')],'\x70\x61\x72\x61\x6d':_0x47c633['\x54\x48\x69\x64\x4d'],'\x64\x65\x6c\x74\x61':+(-0x1986+0x3*-0x255+-0x2d*-0xb9+0.15),'\x72\x65\x61\x73\x6f\x6e':_0x47c633[_0x2f13b7(0x135,'\x4e\x66\x56\x21')]});else{_0x227263[_0x2f13b7(0x393,'\x4d\x31\x65\x4e')]({'\x74\x79\x70\x65':oekNlK[_0x2f13b7(0x1e0,'\x63\x6b\x5e\x7a')],'\x70\x61\x72\x61\x6d':oekNlK[_0x2f13b7(0x28a,'\x49\x23\x59\x5b')],'\x64\x65\x6c\x74\x61':+(-0x1b4e+0x16a6+-0x1*-0x4a8+0.1),'\x72\x65\x61\x73\x6f\x6e':oekNlK[_0x2f13b7(0x12e,'\x33\x6d\x6d\x5e')](_0x3d4a8f,oekNlK[_0x2f13b7(0x12a,'\x74\x44\x63\x39')])});const _0x307f3e={};_0x307f3e[_0x2f13b7(0x32e,'\x23\x2a\x58\x36')]=oekNlK[_0x2f13b7(0x145,'\x26\x52\x47\x50')],_0x307f3e[_0x2f13b7(0x119,'\x28\x61\x67\x59')]=oekNlK[_0x2f13b7(0x25e,'\x68\x41\x28\x38')],_0x307f3e[_0x2f13b7(0x31d,'\x59\x77\x67\x4e')]=+(0x1074+-0xc97+-0x3dd+0.05),_0x307f3e[_0x2f13b7(0x1e3,'\x24\x77\x45\x77')]=oekNlK[_0x2f13b7(0x129,'\x29\x21\x55\x48')],_0x57105e[_0x2f13b7(0x1b6,'\x41\x5b\x42\x23')](_0x307f3e);}}else _0x2b1f7f[_0x2f13b7(0x2eb,'\x23\x2a\x58\x36')]({'\x74\x79\x70\x65':_0x47c633[_0x2f13b7(0x229,'\x41\x5b\x42\x23')],'\x70\x61\x72\x61\x6d':_0x47c633[_0x2f13b7(0x122,'\x2a\x6d\x61\x5b')],'\x64\x65\x6c\x74\x61':+(0x3*0xaf9+0x10b4+0x1*-0x319f+0.15),'\x72\x65\x61\x73\x6f\x6e':_0x47c633['\x68\x74\x42\x63\x4a'](_0x47c633[_0x2f13b7(0x267,'\x48\x73\x54\x29')](_0x2f13b7(0xbb,'\x29\x21\x55\x48')+_0x2f13b7(0x2ed,'\x42\x6c\x34\x61')+_0x2f13b7(0x31e,'\x59\x6e\x66\x53')+'\x20',evalsSinceImprovement),_0x47c633['\x77\x71\x7a\x71\x59'])},{'\x74\x79\x70\x65':_0x2f13b7(0x368,'\x34\x65\x76\x64')+_0x2f13b7(0xea,'\x49\x23\x59\x5b')+_0x2f13b7(0x236,'\x36\x4c\x71\x26'),'\x70\x61\x72\x61\x6d':_0x47c633[_0x2f13b7(0x226,'\x29\x21\x55\x48')],'\x64\x65\x6c\x74\x61':+(-0xd31+-0x102*-0xd+0x17+0.1),'\x72\x65\x61\x73\x6f\x6e':_0x47c633[_0x2f13b7(0x2b9,'\x26\x39\x56\x57')]});const _0x571e18=_0x47c633[_0x2f13b7(0x32b,'\x64\x68\x63\x73')](_0x151bcc,_0x3fd187,_0x2b1f7f);_0x3daba0[_0x2f13b7(0x27e,'\x26\x39\x56\x57')]=_0x571e18[_0x2f13b7(0x2dc,'\x39\x4d\x4e\x72')],_0x3daba0[_0x2f13b7(0x392,'\x4e\x66\x56\x21')]=Array[_0x2f13b7(0x29b,'\x29\x21\x55\x48')](_0x3daba0['\x68\x69\x73\x74\x6f\x72\x79'])?_0x3daba0[_0x2f13b7(0x2b6,'\x28\x78\x7a\x54')]:[],_0x3daba0[_0x2f13b7(0xf2,'\x54\x74\x4a\x32')][_0x2f13b7(0x34e,'\x76\x55\x41\x4f')]({'\x61\x74':_0x3335af(),'\x6b\x65\x79':_0x47c633[_0x2f13b7(0xc3,'\x54\x74\x4a\x32')](_0x17a70f,_0x571e18[_0x2f13b7(0x163,'\x5b\x79\x62\x40')]),'\x6f\x75\x74\x63\x6f\x6d\x65':_0x47c633[_0x2f13b7(0x118,'\x43\x47\x71\x5e')](_0x2f13b7(0xc2,'\x46\x58\x45\x70'),severity),'\x73\x63\x6f\x72\x65':null,'\x6e\x6f\x74\x65\x73':_0x47c633[_0x2f13b7(0x267,'\x48\x73\x54\x29')](_0x47c633[_0x2f13b7(0x23a,'\x48\x73\x54\x29')](_0x2f13b7(0x2ab,'\x39\x4d\x4e\x72')+_0x2f13b7(0x13f,'\x56\x6c\x55\x79')+_0x2f13b7(0x357,'\x2a\x6d\x61\x5b'),evalsSinceImprovement),_0x47c633[_0x2f13b7(0x223,'\x64\x61\x56\x56')])}),_0x47c633[_0x2f13b7(0x270,'\x46\x42\x6f\x26')](_0xda54b9,_0x3daba0);const _0x5d2be1={};return _0x5d2be1[_0x2f13b7(0x2af,'\x54\x74\x4a\x32')]=_0x571e18[_0x2f13b7(0x2f4,'\x64\x68\x63\x73')],_0x5d2be1[_0x2f13b7(0x346,'\x26\x39\x56\x57')+'\x73']=_0x571e18[_0x2f13b7(0x9e,'\x48\x73\x54\x29')],_0x5d2be1;}const _0x5e4dcf={};_0x5e4dcf[_0x64cedf(0x29d,'\x2a\x6d\x61\x5b')]=_0x1cb033,_0x5e4dcf[_0x64cedf(0x1cd,'\x24\x77\x45\x77')+_0x64cedf(0x1d8,'\x42\x6c\x34\x61')+_0x64cedf(0x327,'\x79\x64\x42\x40')]=_0x2d381d,_0x5e4dcf[_0x64cedf(0x2cf,'\x26\x52\x47\x50')+_0x64cedf(0x136,'\x2a\x6d\x61\x5b')+_0x64cedf(0x233,'\x43\x4e\x29\x64')+'\x65']=_0x56ac43,_0x5e4dcf['\x69\x73\x56\x61\x6c\x69\x64\x50'+_0x64cedf(0x271,'\x41\x5b\x42\x23')+_0x64cedf(0xc8,'\x28\x71\x72\x37')]=_0x15f690,_0x5e4dcf['\x70\x65\x72\x73\x6f\x6e\x61\x6c'+_0x64cedf(0x13b,'\x39\x4d\x4e\x72')]=_0x17a70f,_0x5e4dcf[_0x64cedf(0x246,'\x74\x44\x63\x39')+_0x64cedf(0xbf,'\x42\x6c\x34\x61')+_0x64cedf(0x137,'\x73\x6b\x55\x23')]=_0x42c609,_0x5e4dcf[_0x64cedf(0x250,'\x28\x61\x67\x59')+_0x64cedf(0x209,'\x43\x47\x71\x5e')+_0x64cedf(0x255,'\x36\x4c\x71\x26')]=_0xda54b9,_0x5e4dcf[_0x64cedf(0x98,'\x5a\x74\x6f\x55')+_0x64cedf(0x25b,'\x4d\x31\x65\x4e')+_0x64cedf(0x221,'\x4e\x66\x56\x21')]=_0x34ae21,_0x5e4dcf[_0x64cedf(0x189,'\x29\x21\x55\x48')+_0x64cedf(0x369,'\x5b\x79\x62\x40')+_0x64cedf(0x16f,'\x64\x61\x56\x56')]=_0x34ec3d,_0x5e4dcf[_0x64cedf(0x2e0,'\x5b\x72\x78\x6a')+'\x6f\x74']=_0x4c48cb,module[_0x64cedf(0x19d,'\x79\x64\x42\x40')]=_0x5e4dcf;
1
+ const fs = require('fs');
2
+ const path = require('path');
3
+ const { getMemoryDir } = require('./paths');
4
+ const { hasOpportunitySignal } = require('./mutation');
5
+
6
+ function nowIso() {
7
+ return new Date().toISOString();
8
+ }
9
+
10
+ function clamp01(x) {
11
+ const n = Number(x);
12
+ if (!Number.isFinite(n)) return 0;
13
+ return Math.max(0, Math.min(1, n));
14
+ }
15
+
16
+ function ensureDir(dir) {
17
+ try {
18
+ if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
19
+ } catch (e) {}
20
+ }
21
+
22
+ function readJsonIfExists(filePath, fallback) {
23
+ try {
24
+ if (!fs.existsSync(filePath)) return fallback;
25
+ const raw = fs.readFileSync(filePath, 'utf8');
26
+ if (!raw.trim()) return fallback;
27
+ return JSON.parse(raw);
28
+ } catch {
29
+ return fallback;
30
+ }
31
+ }
32
+
33
+ function writeJsonAtomic(filePath, obj) {
34
+ const dir = path.dirname(filePath);
35
+ ensureDir(dir);
36
+ const tmp = `${filePath}.tmp`;
37
+ fs.writeFileSync(tmp, JSON.stringify(obj, null, 2) + '\n', 'utf8');
38
+ fs.renameSync(tmp, filePath);
39
+ }
40
+
41
+ function personalityFilePath() {
42
+ const memoryDir = getMemoryDir();
43
+ const { getEvolutionDir } = require('./paths'); return path.join(getEvolutionDir(), 'personality_state.json');
44
+ }
45
+
46
+ function defaultPersonalityState() {
47
+ // Conservative defaults: protocol-first, safe, low-risk.
48
+ return {
49
+ type: 'PersonalityState',
50
+ rigor: 0.7,
51
+ creativity: 0.35,
52
+ verbosity: 0.25,
53
+ risk_tolerance: 0.4,
54
+ obedience: 0.85,
55
+ };
56
+ }
57
+
58
+ function normalizePersonalityState(state) {
59
+ const s = state && typeof state === 'object' ? state : {};
60
+ return {
61
+ type: 'PersonalityState',
62
+ rigor: clamp01(s.rigor),
63
+ creativity: clamp01(s.creativity),
64
+ verbosity: clamp01(s.verbosity),
65
+ risk_tolerance: clamp01(s.risk_tolerance),
66
+ obedience: clamp01(s.obedience),
67
+ };
68
+ }
69
+
70
+ function isValidPersonalityState(obj) {
71
+ if (!obj || typeof obj !== 'object') return false;
72
+ if (obj.type !== 'PersonalityState') return false;
73
+ for (const k of ['rigor', 'creativity', 'verbosity', 'risk_tolerance', 'obedience']) {
74
+ const v = obj[k];
75
+ if (!Number.isFinite(Number(v))) return false;
76
+ const n = Number(v);
77
+ if (n < 0 || n > 1) return false;
78
+ }
79
+ return true;
80
+ }
81
+
82
+ function roundToStep(x, step) {
83
+ const s = Number(step);
84
+ if (!Number.isFinite(s) || s <= 0) return x;
85
+ return Math.round(Number(x) / s) * s;
86
+ }
87
+
88
+ function personalityKey(state) {
89
+ const s = normalizePersonalityState(state);
90
+ const step = 0.1;
91
+ const r = roundToStep(s.rigor, step).toFixed(1);
92
+ const c = roundToStep(s.creativity, step).toFixed(1);
93
+ const v = roundToStep(s.verbosity, step).toFixed(1);
94
+ const rt = roundToStep(s.risk_tolerance, step).toFixed(1);
95
+ const o = roundToStep(s.obedience, step).toFixed(1);
96
+ return `rigor=${r}|creativity=${c}|verbosity=${v}|risk_tolerance=${rt}|obedience=${o}`;
97
+ }
98
+
99
+ function getParamDeltas(fromState, toState) {
100
+ const a = normalizePersonalityState(fromState);
101
+ const b = normalizePersonalityState(toState);
102
+ const deltas = [];
103
+ for (const k of ['rigor', 'creativity', 'verbosity', 'risk_tolerance', 'obedience']) {
104
+ deltas.push({ param: k, delta: Number(b[k]) - Number(a[k]) });
105
+ }
106
+ deltas.sort((x, y) => Math.abs(y.delta) - Math.abs(x.delta));
107
+ return deltas;
108
+ }
109
+
110
+ function personalityScore(statsEntry) {
111
+ const e = statsEntry && typeof statsEntry === 'object' ? statsEntry : {};
112
+ const succ = Number(e.success) || 0;
113
+ const fail = Number(e.fail) || 0;
114
+ const total = succ + fail;
115
+ // Laplace-smoothed success probability
116
+ const p = (succ + 1) / (total + 2);
117
+ // Penalize tiny-sample overconfidence
118
+ const sampleWeight = Math.min(1, total / 8);
119
+ // Use avg_score (if present) as mild quality proxy
120
+ const avg = Number.isFinite(Number(e.avg_score)) ? Number(e.avg_score) : null;
121
+ const q = avg == null ? 0.5 : clamp01(avg);
122
+ return p * 0.75 + q * 0.25 * sampleWeight;
123
+ }
124
+
125
+ function chooseBestKnownPersonality(statsByKey) {
126
+ const stats = statsByKey && typeof statsByKey === 'object' ? statsByKey : {};
127
+ let best = null;
128
+ for (const [k, entry] of Object.entries(stats)) {
129
+ const e = entry || {};
130
+ const total = (Number(e.success) || 0) + (Number(e.fail) || 0);
131
+ if (total < 3) continue;
132
+ const sc = personalityScore(e);
133
+ if (!best || sc > best.score) best = { key: k, score: sc, entry: e };
134
+ }
135
+ return best;
136
+ }
137
+
138
+ function parseKeyToState(key) {
139
+ // key format: rigor=0.7|creativity=0.3|...
140
+ const out = defaultPersonalityState();
141
+ const parts = String(key || '').split('|').map(s => s.trim()).filter(Boolean);
142
+ for (const p of parts) {
143
+ const [k, v] = p.split('=').map(x => String(x || '').trim());
144
+ if (!k) continue;
145
+ if (!['rigor', 'creativity', 'verbosity', 'risk_tolerance', 'obedience'].includes(k)) continue;
146
+ out[k] = clamp01(Number(v));
147
+ }
148
+ return normalizePersonalityState(out);
149
+ }
150
+
151
+ function applyPersonalityMutations(state, mutations) {
152
+ let cur = normalizePersonalityState(state);
153
+ const muts = Array.isArray(mutations) ? mutations : [];
154
+ const applied = [];
155
+ let count = 0;
156
+ for (const m of muts) {
157
+ if (!m || typeof m !== 'object') continue;
158
+ const param = String(m.param || '').trim();
159
+ if (!['rigor', 'creativity', 'verbosity', 'risk_tolerance', 'obedience'].includes(param)) continue;
160
+ const delta = Number(m.delta);
161
+ if (!Number.isFinite(delta)) continue;
162
+ const clipped = Math.max(-0.2, Math.min(0.2, delta));
163
+ cur[param] = clamp01(Number(cur[param]) + clipped);
164
+ applied.push({ type: 'PersonalityMutation', param, delta: clipped, reason: String(m.reason || '').slice(0, 140) });
165
+ count += 1;
166
+ if (count >= 2) break;
167
+ }
168
+ return { state: cur, applied };
169
+ }
170
+
171
+ function proposeMutations({ baseState, reason, driftEnabled, signals }) {
172
+ const s = normalizePersonalityState(baseState);
173
+ const sig = Array.isArray(signals) ? signals.map(x => String(x || '')) : [];
174
+ const muts = [];
175
+
176
+ const r = String(reason || '');
177
+ if (driftEnabled) {
178
+ muts.push({ type: 'PersonalityMutation', param: 'creativity', delta: +0.1, reason: r || 'drift enabled' });
179
+ // Keep risk bounded under drift by default.
180
+ muts.push({ type: 'PersonalityMutation', param: 'risk_tolerance', delta: -0.05, reason: 'drift safety clamp' });
181
+ } else if (sig.includes('protocol_drift')) {
182
+ muts.push({ type: 'PersonalityMutation', param: 'obedience', delta: +0.1, reason: r || 'protocol drift' });
183
+ muts.push({ type: 'PersonalityMutation', param: 'rigor', delta: +0.05, reason: 'tighten protocol compliance' });
184
+ } else if (sig.includes('log_error') || sig.some(x => x.startsWith('errsig:') || x.startsWith('errsig_norm:'))) {
185
+ muts.push({ type: 'PersonalityMutation', param: 'rigor', delta: +0.1, reason: r || 'repair instability' });
186
+ muts.push({ type: 'PersonalityMutation', param: 'risk_tolerance', delta: -0.1, reason: 'reduce risky changes under errors' });
187
+ } else if (hasOpportunitySignal(sig)) {
188
+ // Opportunity detected: nudge towards creativity to enable innovation.
189
+ muts.push({ type: 'PersonalityMutation', param: 'creativity', delta: +0.1, reason: r || 'opportunity signal detected' });
190
+ muts.push({ type: 'PersonalityMutation', param: 'risk_tolerance', delta: +0.05, reason: 'allow exploration for innovation' });
191
+ } else {
192
+ // Plateau-like generic: nudge creativity up to break out of local optimum.
193
+ muts.push({ type: 'PersonalityMutation', param: 'creativity', delta: +0.05, reason: r || 'plateau creativity nudge' });
194
+ muts.push({ type: 'PersonalityMutation', param: 'verbosity', delta: -0.05, reason: 'reduce noise' });
195
+ }
196
+
197
+ // If already very high obedience, avoid pushing it further; swap second mutation to creativity.
198
+ if (s.obedience >= 0.95) {
199
+ const idx = muts.findIndex(x => x.param === 'obedience');
200
+ if (idx >= 0) muts[idx] = { type: 'PersonalityMutation', param: 'creativity', delta: +0.05, reason: 'obedience saturated' };
201
+ }
202
+ return muts;
203
+ }
204
+
205
+ function shouldTriggerPersonalityMutation({ driftEnabled, recentEvents }) {
206
+ if (driftEnabled) return { ok: true, reason: 'drift enabled' };
207
+ const list = Array.isArray(recentEvents) ? recentEvents : [];
208
+ const tail = list.slice(-6);
209
+ const outcomes = tail
210
+ .map(e => (e && e.outcome && e.outcome.status ? String(e.outcome.status) : null))
211
+ .filter(Boolean);
212
+ if (outcomes.length >= 4) {
213
+ const recentFailed = outcomes.slice(-4).filter(x => x === 'failed').length;
214
+ if (recentFailed >= 3) return { ok: true, reason: 'long failure streak' };
215
+ }
216
+ // Mutation consecutive failure proxy: last 3 events that have mutation_id.
217
+ const withMut = tail.filter(e => e && typeof e.mutation_id === 'string' && e.mutation_id);
218
+ if (withMut.length >= 3) {
219
+ const last3 = withMut.slice(-3);
220
+ const fail3 = last3.filter(e => e && e.outcome && e.outcome.status === 'failed').length;
221
+ if (fail3 >= 3) return { ok: true, reason: 'mutation consecutive failures' };
222
+ }
223
+ return { ok: false, reason: '' };
224
+ }
225
+
226
+ function loadPersonalityModel() {
227
+ const p = personalityFilePath();
228
+ const fallback = {
229
+ version: 1,
230
+ current: defaultPersonalityState(),
231
+ stats: {},
232
+ history: [],
233
+ updated_at: nowIso(),
234
+ };
235
+ const raw = readJsonIfExists(p, fallback);
236
+ const cur = normalizePersonalityState(raw && raw.current ? raw.current : defaultPersonalityState());
237
+ const stats = raw && typeof raw.stats === 'object' ? raw.stats : {};
238
+ const history = Array.isArray(raw && raw.history) ? raw.history : [];
239
+ return { version: 1, current: cur, stats, history, updated_at: raw && raw.updated_at ? raw.updated_at : nowIso() };
240
+ }
241
+
242
+ function savePersonalityModel(model) {
243
+ const m = model && typeof model === 'object' ? model : {};
244
+ const out = {
245
+ version: 1,
246
+ current: normalizePersonalityState(m.current || defaultPersonalityState()),
247
+ stats: m.stats && typeof m.stats === 'object' ? m.stats : {},
248
+ history: Array.isArray(m.history) ? m.history.slice(-120) : [],
249
+ updated_at: nowIso(),
250
+ };
251
+ writeJsonAtomic(personalityFilePath(), out);
252
+ return out;
253
+ }
254
+
255
+ function selectPersonalityForRun({ driftEnabled, signals, recentEvents } = {}) {
256
+ const model = loadPersonalityModel();
257
+ const base = normalizePersonalityState(model.current);
258
+ const stats = model.stats || {};
259
+
260
+ const best = chooseBestKnownPersonality(stats);
261
+ let naturalSelectionApplied = [];
262
+
263
+ // Natural selection: nudge towards the best-known configuration (small, max 2 params).
264
+ if (best && best.key) {
265
+ const bestState = parseKeyToState(best.key);
266
+ const diffs = getParamDeltas(base, bestState).filter(d => Math.abs(d.delta) >= 0.05);
267
+ const muts = [];
268
+ for (const d of diffs.slice(0, 2)) {
269
+ const clipped = Math.max(-0.1, Math.min(0.1, d.delta));
270
+ muts.push({ type: 'PersonalityMutation', param: d.param, delta: clipped, reason: 'natural_selection' });
271
+ }
272
+ const applied = applyPersonalityMutations(base, muts);
273
+ model.current = applied.state;
274
+ naturalSelectionApplied = applied.applied;
275
+ }
276
+
277
+ // Triggered personality mutation (explicit rule-based).
278
+ const trig = shouldTriggerPersonalityMutation({ driftEnabled: !!driftEnabled, recentEvents });
279
+ let triggeredApplied = [];
280
+ if (trig.ok) {
281
+ const props = proposeMutations({
282
+ baseState: model.current,
283
+ reason: trig.reason,
284
+ driftEnabled: !!driftEnabled,
285
+ signals,
286
+ });
287
+ const applied = applyPersonalityMutations(model.current, props);
288
+ model.current = applied.state;
289
+ triggeredApplied = applied.applied;
290
+ }
291
+
292
+ // Reflection-driven mutation: consume suggested_mutations from the latest reflection.
293
+ // Only apply if prior mutations left room (cap total at 4 per cycle to prevent drift).
294
+ let reflectionApplied = [];
295
+ var totalApplied = naturalSelectionApplied.length + triggeredApplied.length;
296
+ if (totalApplied < 4) {
297
+ try {
298
+ const { loadRecentReflections } = require('./reflection');
299
+ const recent = loadRecentReflections(1);
300
+ if (recent.length > 0 && Array.isArray(recent[0].suggested_mutations) && recent[0].suggested_mutations.length > 0) {
301
+ var refMuts = recent[0].suggested_mutations.slice(0, 4 - totalApplied).map(function (m) {
302
+ return {
303
+ type: 'PersonalityMutation',
304
+ param: m.param,
305
+ delta: Math.max(-0.1, Math.min(0.1, Number(m.delta) || 0)),
306
+ reason: String(m.reason || 'reflection').slice(0, 140),
307
+ };
308
+ });
309
+ const refApplied = applyPersonalityMutations(model.current, refMuts);
310
+ model.current = refApplied.state;
311
+ reflectionApplied = refApplied.applied;
312
+ }
313
+ } catch (_) {}
314
+ }
315
+
316
+ // Persist updated current state.
317
+ const saved = savePersonalityModel(model);
318
+ const key = personalityKey(saved.current);
319
+ const known = !!(saved.stats && saved.stats[key]);
320
+
321
+ return {
322
+ personality_state: saved.current,
323
+ personality_key: key,
324
+ personality_known: known,
325
+ personality_mutations: [...naturalSelectionApplied, ...triggeredApplied, ...reflectionApplied],
326
+ model_meta: {
327
+ best_known_key: best && best.key ? best.key : null,
328
+ best_known_score: best && Number.isFinite(Number(best.score)) ? Number(best.score) : null,
329
+ triggered: trig.ok ? { reason: trig.reason } : null,
330
+ },
331
+ };
332
+ }
333
+
334
+ function updatePersonalityStats({ personalityState, outcome, score, notes } = {}) {
335
+ const model = loadPersonalityModel();
336
+ const st = normalizePersonalityState(personalityState || model.current);
337
+ const key = personalityKey(st);
338
+ if (!model.stats || typeof model.stats !== 'object') model.stats = {};
339
+ const cur = model.stats[key] && typeof model.stats[key] === 'object' ? model.stats[key] : { success: 0, fail: 0, avg_score: 0.5, n: 0 };
340
+
341
+ const out = String(outcome || '').toLowerCase();
342
+ if (out === 'success') cur.success = (Number(cur.success) || 0) + 1;
343
+ else if (out === 'failed') cur.fail = (Number(cur.fail) || 0) + 1;
344
+
345
+ const sc = Number.isFinite(Number(score)) ? clamp01(Number(score)) : null;
346
+ if (sc != null) {
347
+ const n = (Number(cur.n) || 0) + 1;
348
+ const prev = Number.isFinite(Number(cur.avg_score)) ? Number(cur.avg_score) : 0.5;
349
+ cur.avg_score = prev + (sc - prev) / n;
350
+ cur.n = n;
351
+ }
352
+ cur.updated_at = nowIso();
353
+ model.stats[key] = cur;
354
+
355
+ model.history = Array.isArray(model.history) ? model.history : [];
356
+ model.history.push({
357
+ at: nowIso(),
358
+ key,
359
+ outcome: out === 'success' || out === 'failed' ? out : 'unknown',
360
+ score: sc,
361
+ notes: notes ? String(notes).slice(0, 220) : null,
362
+ });
363
+
364
+ savePersonalityModel(model);
365
+ return { key, stats: cur };
366
+ }
367
+
368
+ /**
369
+ * Force a pivot in personality state when plateau is detected.
370
+ * Temporarily boosts creativity and risk_tolerance to maximum exploration mode.
371
+ * Returns the new personality state.
372
+ *
373
+ * @param {object} opts
374
+ * @param {string} opts.severity - 'suggested' or 'required'
375
+ * @param {number} opts.evalsSinceImprovement - how many evals without improvement
376
+ * @returns {object} { state, mutations }
377
+ */
378
+ function forcePivot({ severity = 'suggested', evalsSinceImprovement = 0 } = {}) {
379
+ const model = loadPersonalityModel();
380
+ const base = normalizePersonalityState(model.current);
381
+ const mutations = [];
382
+
383
+ if (severity === 'required') {
384
+ mutations.push(
385
+ { type: 'PersonalityMutation', param: 'creativity', delta: +0.2, reason: 'forced_pivot_required (plateau ' + evalsSinceImprovement + ' evals)' },
386
+ { type: 'PersonalityMutation', param: 'risk_tolerance', delta: +0.15, reason: 'forced_pivot_exploration' }
387
+ );
388
+ } else {
389
+ mutations.push(
390
+ { type: 'PersonalityMutation', param: 'creativity', delta: +0.15, reason: 'pivot_suggested (plateau ' + evalsSinceImprovement + ' evals)' },
391
+ { type: 'PersonalityMutation', param: 'risk_tolerance', delta: +0.1, reason: 'pivot_exploration_nudge' }
392
+ );
393
+ }
394
+
395
+ const applied = applyPersonalityMutations(base, mutations);
396
+ model.current = applied.state;
397
+
398
+ model.history = Array.isArray(model.history) ? model.history : [];
399
+ model.history.push({
400
+ at: nowIso(),
401
+ key: personalityKey(applied.state),
402
+ outcome: 'pivot_' + severity,
403
+ score: null,
404
+ notes: 'Forced pivot after ' + evalsSinceImprovement + ' non-improving evals',
405
+ });
406
+
407
+ savePersonalityModel(model);
408
+ return { state: applied.state, mutations: applied.applied };
409
+ }
410
+
411
+ module.exports = {
412
+ clamp01,
413
+ defaultPersonalityState,
414
+ normalizePersonalityState,
415
+ isValidPersonalityState,
416
+ personalityKey,
417
+ loadPersonalityModel,
418
+ savePersonalityModel,
419
+ selectPersonalityForRun,
420
+ updatePersonalityStats,
421
+ forcePivot,
422
+ };
423
+