@profoundlogic/coderflow-server 0.4.1 → 0.4.4
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.
- package/README.md +1 -1
- package/dist/README.md +1 -1
- package/dist/base-image/Dockerfile +2 -1
- package/dist/base-image/entrypoint.sh +11 -1
- package/dist/base-image/rewind-files.sh +197 -0
- package/dist/base-image/sync-repos.sh +53 -3
- package/dist/coder-server.js +1 -1
- package/dist/config.js +1 -1
- package/dist/lib/agent-keepalive.js +1 -1
- package/dist/lib/agent-models.js +1 -1
- package/dist/lib/api-keys.js +1 -1
- package/dist/lib/apiKeys.js +1 -1
- package/dist/lib/app-server-ports.js +1 -1
- package/dist/lib/auto-judge.js +1 -1
- package/dist/lib/basic-auth.js +1 -1
- package/dist/lib/build-history.js +1 -1
- package/dist/lib/build-output-service.js +1 -1
- package/dist/lib/build-scheduler.js +1 -1
- package/dist/lib/build-service.js +1 -1
- package/dist/lib/ca-certificates.js +1 -1
- package/dist/lib/claude-oauth-refresh.js +1 -1
- package/dist/lib/cli/build.js +1 -1
- package/dist/lib/cli/config-command.js +1 -1
- package/dist/lib/cli/config.js +1 -1
- package/dist/lib/cli/create-user.js +1 -1
- package/dist/lib/cli/init.js +1 -1
- package/dist/lib/cli/jira.js +1 -1
- package/dist/lib/cli/license.js +1 -1
- package/dist/lib/cli/server-manager.js +1 -1
- package/dist/lib/config-migration.js +1 -1
- package/dist/lib/container-credential-sync.js +1 -1
- package/dist/lib/container-tokens.js +1 -1
- package/dist/lib/data-dir.js +1 -1
- package/dist/lib/deployment-history.js +1 -1
- package/dist/lib/deployment-service.js +1 -1
- package/dist/lib/docker-utils.js +1 -1
- package/dist/lib/email.js +1 -1
- package/dist/lib/emailTemplates.js +1 -1
- package/dist/lib/entitlement.js +1 -1
- package/dist/lib/fetch-utils.js +1 -1
- package/dist/lib/git-askpass.sh +16 -0
- package/dist/lib/git-commit-details-route.js +1 -1
- package/dist/lib/git-history-diff-guardrails.js +1 -1
- package/dist/lib/git-provider-service.js +1 -1
- package/dist/lib/git-provider-setup/github-setup-handler.js +1 -1
- package/dist/lib/git-provider-setup/index.js +1 -1
- package/dist/lib/git-provider-setup/setup-factory.js +1 -1
- package/dist/lib/git-provider-setup/setup-interface.js +1 -1
- package/dist/lib/git-providers/azure-devops-provider.js +1 -1
- package/dist/lib/git-providers/github-app-provider.js +1 -1
- package/dist/lib/git-providers/index.js +1 -1
- package/dist/lib/git-providers/provider-factory.js +1 -1
- package/dist/lib/git-providers/provider-interface.js +1 -1
- package/dist/lib/github-urls.js +1 -1
- package/dist/lib/group-objective-linking.js +1 -1
- package/dist/lib/jira-client.js +1 -1
- package/dist/lib/judge-blinding.js +1 -1
- package/dist/lib/logger.js +1 -1
- package/dist/lib/model-fetcher.js +1 -1
- package/dist/lib/notifications.js +1 -1
- package/dist/lib/objective-context.js +1 -0
- package/dist/lib/oidc-auth.js +1 -1
- package/dist/lib/oidc-device-flow.js +1 -1
- package/dist/lib/passwordTokens.js +1 -1
- package/dist/lib/pin-cascade.js +1 -1
- package/dist/lib/provider-accounts.js +1 -1
- package/dist/lib/provider-oauth.js +1 -1
- package/dist/lib/provider-profile.js +1 -1
- package/dist/lib/provider-token-refresh.js +1 -1
- package/dist/lib/request-url.js +1 -1
- package/dist/lib/rewind.js +1 -1
- package/dist/lib/roles.js +1 -1
- package/dist/lib/secrets.js +1 -1
- package/dist/lib/setup-repo-git-auth.js +1 -1
- package/dist/lib/state-capture.js +1 -1
- package/dist/lib/static-files.js +1 -1
- package/dist/lib/task-name-format.js +1 -1
- package/dist/lib/task-name-generator.js +1 -1
- package/dist/lib/user-git-oauth.js +1 -1
- package/dist/lib/user-git-tokens.js +1 -1
- package/dist/lib/users.js +1 -1
- package/dist/middleware/requireAuth.js +1 -1
- package/dist/middleware/requireInit.js +1 -1
- package/dist/middleware/requirePermission.js +1 -1
- package/dist/package.json +2 -1
- package/dist/routes/apiKeys.js +1 -1
- package/dist/routes/auth-oidc.js +1 -1
- package/dist/routes/auth.js +1 -1
- package/dist/routes/build.js +1 -1
- package/dist/routes/containers.js +1 -1
- package/dist/routes/deploy-task.js +1 -1
- package/dist/routes/environment-management.js +1 -1
- package/dist/routes/environments.js +1 -1
- package/dist/routes/external-skills.js +1 -1
- package/dist/routes/git-credentials.js +1 -1
- package/dist/routes/git-oauth.js +1 -1
- package/dist/routes/git-provider-setup.js +1 -1
- package/dist/routes/health.js +1 -1
- package/dist/routes/jira.js +1 -1
- package/dist/routes/objective-management.js +1 -1
- package/dist/routes/password.js +1 -1
- package/dist/routes/prompt.js +1 -1
- package/dist/routes/provider-auth.js +1 -1
- package/dist/routes/qa.js +1 -1
- package/dist/routes/settings.js +1 -1
- package/dist/routes/skill-management.js +1 -1
- package/dist/routes/skills.js +1 -1
- package/dist/routes/tasks.js +1 -1
- package/dist/routes/templates.js +1 -1
- package/dist/routes/test-task.js +1 -1
- package/dist/routes/test.js +1 -1
- package/dist/routes/users.js +1 -1
- package/dist/routes/visualizations.js +1 -1
- package/dist/scripts/create-user.js +1 -1
- package/dist/scripts/migrate-config-to-data-dir.js +1 -1
- package/dist/shipped-skills/objective-management/SKILL.md +83 -0
- package/dist/start.js +1 -1
- package/dist/web-ui/public/activity-detail-modal.js +1 -1
- package/dist/web-ui/public/activity-feed.js +1 -1
- package/dist/web-ui/public/activity-formatters.js +1 -1
- package/dist/web-ui/public/agent-event-parser.js +1 -1
- package/dist/web-ui/public/app.js +1 -1
- package/dist/web-ui/public/approve-dialog.js +1 -1
- package/dist/web-ui/public/comments-widget.js +1 -1
- package/dist/web-ui/public/diff-utils.js +1 -1
- package/dist/web-ui/public/docs/admin/git-providers.md +10 -5
- package/dist/web-ui/public/docs/admin/installation.md +1 -1
- package/dist/web-ui/public/environments.css +6 -0
- package/dist/web-ui/public/environments.html +20 -0
- package/dist/web-ui/public/environments.js +1 -1
- package/dist/web-ui/public/feedback-widget.js +1 -1
- package/dist/web-ui/public/git-history-lazy-utils.js +1 -1
- package/dist/web-ui/public/git-history.js +1 -1
- package/dist/web-ui/public/git-status.js +1 -1
- package/dist/web-ui/public/index.html +21 -0
- package/dist/web-ui/public/index.js +1 -1
- package/dist/web-ui/public/login.js +1 -1
- package/dist/web-ui/public/markdown-editor.js +1 -1
- package/dist/web-ui/public/markdown-file-editor.js +1 -1
- package/dist/web-ui/public/modal-maximize.js +1 -1
- package/dist/web-ui/public/notifications.js +1 -1
- package/dist/web-ui/public/pr-dialog.js +1 -1
- package/dist/web-ui/public/server-health.js +1 -1
- package/dist/web-ui/public/settings.html +22 -1
- package/dist/web-ui/public/settings.js +1 -1
- package/dist/web-ui/public/setup-password.js +1 -1
- package/dist/web-ui/public/skills.css +6 -0
- package/dist/web-ui/public/skills.html +20 -0
- package/dist/web-ui/public/skills.js +1 -1
- package/dist/web-ui/public/sse-client.js +1 -1
- package/dist/web-ui/public/sse-shared-worker.js +1 -1
- package/dist/web-ui/public/styles.css +160 -0
- package/dist/web-ui/public/task.html +32 -1
- package/dist/web-ui/public/task.js +1 -1
- package/dist/web-ui/public/terminal.js +1 -1
- package/dist/web-ui/public/theme.js +1 -1
- package/dist/web-ui/public/users.js +1 -1
- package/dist/web-ui/public/variant-grouping.js +1 -1
- package/package.json +2 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(_0x94ee1b,_0xf03ad0){const _0x16425e={_0xd9c608:0x5f,_0x47464a:0x17a,_0x450542:0x165,_0x54e698:0x197,_0x4c7d45:0xfa,_0x3c7a58:0x42,_0x338c25:0x13,_0x4fb6de:0x127,_0x11aabe:0x151,_0x864775:0x16d,_0x1feb42:0x22f,_0x1cecee:0x1a4,_0x114133:0xfc,_0x390975:0xcc,_0x2ae2a7:0xf8,_0x82acbb:0x144,_0x3c82d5:0x167},_0x361b70={_0x49a581:0x1bb},_0x2214a8={_0x5da1b5:0x1a};function _0x5d098d(_0x46e22c,_0x2833d2,_0x5afe56,_0x4a8c02){return _0x24a2(_0x4a8c02-_0x2214a8._0x5da1b5,_0x2833d2);}function _0x9c2e99(_0x1c0801,_0x170c92,_0x54c851,_0x325616){return _0x24a2(_0x325616- -_0x361b70._0x49a581,_0x1c0801);}const _0x4943a8=_0x94ee1b();while(!![]){try{const _0x2623af=parseInt(_0x9c2e99(-0x117,-_0x16425e._0xd9c608,-0xe3,-0xb0))/(-0x1*-0x1307+0xb6e+-0x1e74)+parseInt(_0x5d098d(0x1f7,0x1da,_0x16425e._0x47464a,_0x16425e._0x450542))/(0xc67+-0x2a7+0x9be*-0x1)*(-parseInt(_0x9c2e99(-_0x16425e._0x54e698,-0x18e,-0x11a,-_0x16425e._0x4c7d45))/(-0x1*0x22b1+0x76*-0x8+-0x2664*-0x1))+-parseInt(_0x5d098d(0x19f,0x134,0x1de,0x13a))/(-0x5*0x488+0x54*-0x4f+0x3098)*(-parseInt(_0x9c2e99(_0x16425e._0x3c7a58,-0x73,_0x16425e._0x338c25,-0x43))/(0x2015*-0x1+-0x1c4*-0x1+0x1e56))+-parseInt(_0x5d098d(_0x16425e._0x4fb6de,0xec,0xf5,_0x16425e._0x11aabe))/(-0x1*0x1a69+-0x9f*-0x2b+-0xe*0x5)+-parseInt(_0x5d098d(0x218,_0x16425e._0x864775,_0x16425e._0x1feb42,_0x16425e._0x1cecee))/(0x6b2+-0x2591+-0x23*-0xe2)*(-parseInt(_0x9c2e99(-_0x16425e._0x114133,-_0x16425e._0x390975,-0x37,-0x5e))/(-0x501+0x893+-0x38a))+-parseInt(_0x5d098d(0x1a5,_0x16425e._0x2ae2a7,0xb7,_0x16425e._0x82acbb))/(0x560+0x22f*-0xb+0x12ae)+parseInt(_0x5d098d(_0x16425e._0x3c82d5,0xa7,0x163,0x108))/(-0x1af2+0x409*-0x3+0x2717);if(_0x2623af===_0xf03ad0)break;else _0x4943a8['push'](_0x4943a8['shift']());}catch(_0x41d45b){_0x4943a8['push'](_0x4943a8['shift']());}}}(_0x2193,-0x93da0+-0x3*0x49366+0xb34*0x2fc));import _0x50d223 from'express';import{promises as _0x46fc36}from'fs';import _0x29d3e0 from'path';import{logger}from'../lib/logger.js';const router=_0x50d223[_0x587fca(-0x1d2,-0x154,-0x16e,-0x1c7)]();let tasks=null,taskStoragePath=null,broadcastTaskUpdate=null;function _0x587fca(_0x624da4,_0x11baba,_0x57d910,_0x5a71c2){return _0x24a2(_0x11baba- -0x2bf,_0x57d910);}export function initializeObjectiveManagement(_0x44046e){const _0x45e169={_0x5b012f:0x2d,_0x35f0fe:0x7b,_0x15a9af:0x22,_0x28643a:0x456,_0xc90348:0xe9},_0x57f42f={_0x4340c0:0x7f},_0x137e48={_0x22e7f8:0xe2};function _0x5e87e9(_0x4f6b04,_0x3f8a62,_0x3f4246,_0x29ff3){return _0x587fca(_0x4f6b04-_0x137e48._0x22e7f8,_0x4f6b04-0xef,_0x29ff3,_0x29ff3-0x41);}tasks=_0x44046e[_0x5e87e9(-0x14e,-0xb1,-0xe1,-0x1d3)];function _0x46577e(_0xfa1cbb,_0x5da3e0,_0x1281d1,_0x23e40d){return _0x587fca(_0xfa1cbb-0x144,_0x23e40d-0x604,_0x1281d1,_0x23e40d-_0x57f42f._0x4340c0);}taskStoragePath=_0x44046e['taskStorag'+_0x5e87e9(-0x3b,-_0x45e169._0x5b012f,-_0x45e169._0x35f0fe,-_0x45e169._0x15a9af)],broadcastTaskUpdate=_0x44046e[_0x46577e(_0x45e169._0x28643a,0x444,0x4ee,0x4ba)+_0x5e87e9(-_0x45e169._0xc90348,-0x151,-0x90,-0xc9)];}function _0x2193(){const _0xc01f19=['vhziz2K','Cg9ZDa','qK5Jsfq','u3vIlw9IAMvJDa','wxbsq0W','BsbHBIbVyMPLyW','uwfsAfK','wwvPrxe','rM9YyMLKzgvU','zgvSzxrL','AxzLigLZig5VDa','Bfz0zMC','uuf1Eve','wxvRBKy','ywHQvgy','zwn0AxzLCYiGyq','y3jLyxrLzej5','EM1Vs2C','DhzhrNq','ihjVDxrLig5VDa','t0r6CMC','zw4GzMLYC3qU','zxrLihn1yI1VyG','igrLDgfPBhm','v3vltxi','BMfTzsbVCIbPBG','uxLVyMS','C291CMnLt2jQzq','sejVEuG','BgrYzw4UierLBa','t0vnwfm','q2zwzxy','igzVDw5K','q29UzMXPy3q','Ahvurfm','v05Qsxe','ChjVDMLKzwq','BM90igfUig9IAG','EMvK','rLL4uLm','lw9IAMvJDgL2zq','Dw5K','yLvhsKe','sg1RrLm','AxzLigrLBgv0zq','DgfZA3m','s2rhBNi','qwruvge','rw9Pvem','DgfZA1r5Cgu','zwn0AxzLig5Via','swD4vue','zwrbDa','CgfYyw1LDgvYCW','vxvmt1C','CMjXzK4','DgfZAY1PBNn0CG','zwqGyNKGDgfZAW','Aw5MBW','BgfZDeXHDw5JAa','C3vIt2jQzwn0Aq','BKjlueW','rvzKBhy','zfrxvLu','zxjYB3i','t1fKrMO','Aw5ZDhj1y3rPBW','ihjLCxvLC3qGBq','CeTbuwq','CNrMswO','BwfUywDLBwvUDa','zwn0AxzLihvWza','zw50CMLLCW','qMfKifjLCxvLCW','EuDisKK','ywzjtMS','zcbIEsb0yxnR','tvbpyuW','l3nPyMXPBMDZ','t3nJs0G','uNfKChy','y3rPDMvjza','B05gufy','u0zNzfu','C2v0vvrdrgf0zq','ugfYzw50ig9IAG','ihjLCxvLC3qGDW','BMTUz3G','tfvwEhK','zwn0AxzLswq','s3vstMe','zxj2zxiGrxjYBW','y3rPDMu','zgvY','q0fttLK','Avf4qve','sMP3sNC','C3rZ','ANnVBG','u3D2DvK','sMjLvhC','twLZC2LUzYbylq','C2LIBgLUz0nVDq','EKvrv0W','u3rQvuK','AxnZAw5NifGTva','u0DHCNK','uLvVsKu','mZu2nty4D2r4uxvL','tM90iezVDw5K','z3jHBMrWyxjLBG','B2jQzwn0AxzLsq','y2DZAMG','y2fSBgLUz1rHCW','Dw9gwxq','igeGy2HPBgqGBW','AxzLig5VDcbMBW','CgfYzw50t2jQzq','AM9PBG','zKPYwgm','tfPZsuy','DcbPBML0AwfSAq','Dw5JAgvKigzYBW','yxqGAgfZignOAq','sfbtAvi','zw52AxjVBM1LBG','BgvUz3rO','wunUA3e','A1LpyLO','CgfYyw1Z','DgfZAY11CgrHDa','y2X1zguGiM9IAG','BMfTzq','suHqy1G','sufZBge','vgfZAYbJCMvHDa','BM93','uLrcD1K','DhfnwNq','BMuGAxrLBq','y2DvtKO','D2fZig5VDcbSyq','zM55ENe','ve9cBwe','DgL2zxm','AxbOzLG','yxnRvxbKyxrL','zgvSzxrLihn1yG','vgfZAYbHDhrLBq','swfnruu','Aw5Nihn1yI1VyG','DxrMltG','rvLOv1C','mty5ndi3mdbHBMPWEw4','vgfZAYbMzxrJAa','De9IAMvJDgL2zq','t2jQzwn0AxzLia','A0nyCum','C29U','vgfZAYbKzwXLDa','C29YDe9YzgvY','serzshu','wwvHCG','Bgf1BMnOq291BG','ywDLBNrZ','D3z4zMm','y3jLyxrLzej5va','zw1LBNqGD2L0Aa','ugPUCuu','ywrLCG','BursBhq','AgvHzgvYCW','svHQtxq','BMLsEvi','l3n1yI1VyMPLyW','CNfxBfa','CwzPBwy','B2jQzwn0AxzLCW','C3rHDhvZ','Bwv0ywrHDgeUAG','zYbVyMPLy3rPDG','sw52ywXPzcb0yq','mJCWndK3u3PoDNDS','ugfYzw50igLZia','z0nHrvu','rMfPBgvKihrVia','ChvZAa','z2v0vvrdtw9UDa','D2fYBG','Cgf0y2G','tMjxtfG','y2LQD0m','u2vYDMLJzsbUBW','CgXeBgO','DNnMCgS','ChrLzcbVyMPLyW','yxqGAw5KzxGG','AMvJDgL2zsb0Aa','y3ndrKq','DgfZA0LK','AxnbCNjHEq','qxqGBgvHC3qGBW','D1HtvKy','ndi3ndGWuKH4v3DR','zgvSzxrLzeLK','tgjsB00','z2v0','rgjQz1m','igeGiM5HBwuIia','AMvJDgL2zxm','vfvywMG','C3vIC3rY','BNqGB2jQzwn0Aq','otKYnJq4n1PLD1nUuG','yxqGBgvHC3qGBW','Aw5NihnPyMXPBG','ywzArhC','B3v0ihbHCMvUDa','C3vJy2vZCW','z2TswKG','zIb0AguGCgfYzq','wxzjuei','AxzLCYbJCMvHDa','CgvYC2LZDcbVyG','uKvNwg4','sLzcu3C','mtmWmJq5mKDyrKvXqq','vfjRuu0','BeLwsKm','C0T2s3K','CurcDKK','BNvTyMvY','BMuGzMLLBgqGka','zK1Zz1C','yM9KEq','zxrLignOAwXKCG','y3jLyxrLza','igLUAxrPywXPEG','sgXjsg8','CMvJDxjZAxzL','D3jPDgvgAwXL','verJC2K','Awvkyvu','DMvjza','ELLrDMu','ywnJzxnZ','mtbYwNzMzhC','igzYB20GzgLZAW','BwfW','A1L1wKC','Bg9Uz2vYigv4Aq','q2fNDgq','z3b3BKm','vNv4swi','Ec10yxnRlwLK','BIb0yxnRieLe','sw50zxjUywWGuW','z2v0vvrdrNvSBa','tLfQzhe','DcbJB25MAwD1CG','ufnYEKm','q0ThBxO','DgL2zq','Bw92rNK','mtG0AvzlCuXu','z2uGCgf0AcbUBW','ksbTDxn0igjLia','AxrOihvUA25VDW','vgfYz2v0igLZia','vefts19mt0fexW','B2jQzwn0AxzL','C3rYAw5N','BuTvyLq','ywHwtw4','yxnRluLKigHLyq','ig11C3qGAgf2zq','CvzMv3G','vu5iBxy','uM91DgvY','yI1VyMPLy3rPDG','vgfZAY1jzcbOzq','l2nOAwXKCMvU','vgfZAYb1CgrHDa','tgHZEeG','BwvZC2fNzq','Bwf4','vgHPCYb0yxnRia','yxnRswq','yNjVywrJyxn0va','CgvYC2LZDcbZDq','sMjdC2O','nunQD1HYDa','z2v0vvrdrgf0zq','Dg9ju09tDhjPBG','DgfZAY1KzwXLDa','Dwn0Aw9UCY5Tza','zwrcEvrHC2Tjza','CgfKu3rHCNq','DxbKyxrLzef0','BwTKAxi','wxbZrfy','s2LrA3e','uLzZA00','zM9Yy2u','ALbPwNi','y3jLyxrLzef0','vw5HDxrOB3jPEG','C3rYDwn0Aw9UCW','zwn0AxzL','mtyWodC0u1n0AhDL','BvbYsLi','y291BNq','BMv3lxrHC2S','DMvoyw1L','ig9IAMvJDgL2zq','zsb1CgrHDgu','qwfbDxa','AejAt0m','refzuW','Bxj6wM0','zvbHDgG','AMvJDgL2zsb1Ca','s2Dfugy','u0Pns2i','AxnqAw5Uzwq','l3bHCMvUDa','DgL2zsbTyw5HzW','yxrLzcbIEsb0yq','yNjHBMnOzxm','C3rYAw5NAwz5','twrUBee','B3v0Chv0','EM1YvwS','zhKGBxvZDcbPBG','zMnrzuS','sufKv0S','AMvJDgL2zq','C2v0'];_0x2193=function(){return _0xc01f19;};return _0x2193();}function requireTaskAuth(_0x5d1561,_0x519e7e,_0x1f75e6){const _0x27dca5={_0x39e087:0x134,_0x15b37b:0x1d3,_0x3aaf48:0x162,_0x1270ba:0x1f9,_0x44d409:0x2c,_0x470f48:0x9f,_0x9374db:0xac,_0x99f47f:0x121,_0x76415c:0x18d,_0xfce505:0x1bf,_0x2b2cb3:0x12b,_0xed0aca:0x1b4,_0x50f331:0xd8,_0x10b622:0x47,_0x2fa5cf:0x1b,_0x2c3d3a:0x4a,_0x5f64ed:0x4d,_0x10f651:0x9,_0x48dd01:0x11c,_0x57716d:0x24a,_0xbec5e0:0x1e5,_0x5c5046:0x175,_0x41b128:0x3d,_0x24cdbd:0x75,_0x26500d:0x1fc,_0xa22974:0x1ba,_0x4ab67c:0x7a,_0x5262d0:0x17,_0xc0dedb:0x11b,_0x171ba4:0x60,_0x53d89d:0xb6,_0x3eba02:0x32,_0x2679ae:0x32,_0x263811:0x1e,_0x41b479:0x16,_0x581fa3:0x9e,_0x51ec5b:0xbf,_0x408213:0xf8,_0x4c1827:0x1c5,_0x3259d3:0x1d5,_0x4d0dc3:0x163,_0x443589:0x1e2,_0x2a02c3:0x25,_0x3d624e:0x85,_0x568056:0x12,_0xd3c185:0x86,_0x237a36:0x7a,_0x11db1b:0x118,_0xa305c3:0x18b,_0x5e0fd2:0x120,_0x4d46af:0x135,_0x302e8e:0x234,_0x240cbd:0x194,_0x12ed10:0x89,_0x5d3581:0x10e,_0x41dd63:0x187,_0x44255b:0x9e,_0x5e6308:0x124,_0x16aad4:0x197,_0x537e15:0x110,_0x4df66e:0x144,_0x101250:0x2f,_0x4a478c:0x2a,_0x1a3db6:0x17,_0x4d48bd:0x1cf,_0x2e6f96:0x1dd,_0x14952f:0x212,_0xc4e397:0x10a,_0x25b2b8:0x3f,_0x11a89d:0xb9,_0x475f82:0x4d,_0x37287a:0xbb,_0x3d3a33:0x202,_0x3202b0:0x22b,_0x314445:0x1b6,_0x56a660:0x1c1,_0x5eeda0:0x20d,_0x317a3e:0x18a,_0x50d324:0x1c9,_0x1b9d15:0x1c6,_0xed1773:0x67,_0x1eae04:0xd9,_0x26164d:0x55,_0x2d4525:0x21e,_0x5a69fc:0x1d7,_0x354553:0x174,_0x56d55f:0x199,_0x20fdd4:0x14,_0x510c8d:0x20,_0x1a5d26:0x264,_0x21379d:0x285,_0x5cf732:0xee,_0x3abe28:0x219,_0xf09d38:0x1a0,_0x37bca3:0x17b,_0x3590fc:0x186,_0x3bf6ac:0x1b0,_0x2b60dc:0x1d5,_0x544651:0x14c,_0x520791:0x1be,_0xabefb3:0x179,_0x10d17d:0x21b,_0x36c823:0x1be,_0x5a0546:0x183,_0x212939:0x229,_0xb235de:0xfd,_0x3a6267:0x6e,_0x563692:0x155,_0x3fcbe0:0x188,_0x56956b:0x16b,_0x24f067:0x16b,_0x24cecd:0x1b3,_0x592959:0x8e,_0x3f5822:0x1ec,_0xb8b25d:0x21a,_0x1ea2eb:0x137,_0x1df104:0xfb,_0x146386:0x72,_0x39aa0c:0x1bc,_0x31bcfb:0x1da,_0x3622c7:0xfa,_0x34ac5f:0x190,_0x1d453f:0x174,_0x39d043:0x105,_0x22fef9:0x190,_0x4f3437:0x1e0,_0xbc1ae7:0x15a,_0x42c089:0x3c,_0x2ab56d:0x8e,_0x53357a:0x6e,_0x89f3e1:0xc6,_0x4d81a0:0x35,_0x2c19a7:0xa0,_0x60e70e:0x52,_0xb2fd0c:0x15,_0x6c43eb:0x1d,_0x57aad8:0x2d,_0x2dbaf7:0xad,_0xfada9a:0xc0,_0x312f58:0x3a,_0x73cdba:0x6a,_0x424e5a:0xe,_0x2f1170:0x59,_0x28c2fe:0x7a,_0x5c88e4:0x1ae,_0x1427fb:0xb9,_0x454f33:0xd7,_0x50aa36:0x19b,_0x538310:0x1b1,_0x3c45bb:0x12,_0x5bd154:0xbf,_0x143395:0xd6,_0x3b6e8b:0x91,_0x4120d0:0xf3,_0x118adc:0x96,_0x40c319:0xa8,_0x561b93:0x2b,_0x30d5b6:0x11,_0xe990ed:0x228,_0x3fdcf1:0x217,_0x25cdd4:0x19,_0x4cfcfc:0xa9,_0x40d854:0xe1,_0x2ee7d5:0xfc,_0x2d9ab9:0x177,_0x535ade:0x16c,_0x28e62a:0x103,_0x512873:0x11d,_0x32d9cd:0x1b7,_0x3646a9:0x1bc,_0xe58b89:0x201,_0x19abdc:0x220,_0x2529aa:0x25a,_0xce24bc:0xa9,_0x107cf8:0x49,_0x65c9ba:0x18,_0x7e8877:0x227,_0x1b477:0x1a9,_0x2448df:0xf8,_0x36b935:0xc,_0x5bca6b:0x3c,_0x30e796:0x3e,_0x9b620c:0x41,_0x5ddf26:0x98,_0x4e3661:0x5f,_0x1aaff5:0x42,_0xf21cf4:0x81,_0x406a88:0x287,_0x53a87f:0x3c,_0x4d4151:0xbd,_0x15cbcf:0x3c,_0x4f6d45:0x5b,_0x12422b:0x58,_0x2241eb:0x33,_0x2c47ee:0x6b,_0x435a9c:0x10d,_0x2d5e6c:0x4d,_0x84bce5:0xc5,_0x40599a:0x69,_0x448433:0x1eb,_0x412932:0x23b,_0x2be764:0x210,_0x3c653f:0x25b,_0x4345fb:0x148,_0x2a2691:0x1c3,_0x3821a4:0x1bc,_0x4f6a01:0x1e1,_0x2755e3:0x249,_0x24f088:0x1c0,_0x44dbbb:0x25,_0x467518:0xbe,_0x2abacf:0x170,_0x5f7682:0x176,_0x127f07:0x183,_0x211adb:0x1df,_0x2c9af2:0x22a,_0x7a2a3b:0x42,_0x109fe9:0x48,_0x1305ac:0x3a,_0x590e58:0x46,_0x1ac874:0x1c1,_0x5ae58b:0x227,_0x58b171:0x183,_0x3e00e5:0x40,_0x38b803:0x66,_0x5806bd:0x66,_0x3af568:0xcd,_0x2bc720:0xcf,_0x460f31:0x4c,_0x42e867:0x8,_0x5d3c21:0xca,_0x36e5ad:0xa4,_0x44c472:0x234,_0x5aa1b3:0x208,_0x394702:0x86,_0x23d0d2:0x48,_0x584fe3:0xb3,_0x334da2:0x29,_0x2a3c6d:0x2b,_0x1d6441:0x59,_0x59a308:0x18,_0x16a911:0x81,_0x5d960f:0xbe,_0x483ac1:0x62,_0x285add:0xbc,_0x1fc3c4:0x4,_0x4ce0ca:0x4b},_0x8eeee3={_0x1e3035:0x28},_0x53c2c6={_0x2b10ce:0xb3,_0x2bd456:0x1dd,_0x526d0b:0xf3};function _0x81685c(_0x580ba8,_0x4601bb,_0x25e85f,_0x2d435f){return _0x587fca(_0x580ba8-_0x53c2c6._0x2b10ce,_0x580ba8-_0x53c2c6._0x2bd456,_0x25e85f,_0x2d435f-_0x53c2c6._0x526d0b);}function _0x1a6235(_0x1a0005,_0x35dfe1,_0x10899b,_0xf64497){return _0x587fca(_0x1a0005-0xa0,_0x35dfe1-_0x8eeee3._0x1e3035,_0x1a0005,_0xf64497-0xe2);}const _0x3b825a={'CfVev':function(_0x223a90,_0xa9ba9a){return _0x223a90===_0xa9ba9a;},'TUXZh':_0x1a6235(-0x15f,-_0x27dca5._0x39e087,-_0x27dca5._0x15b37b,-0xf4),'OEMXS':_0x1a6235(-_0x27dca5._0x3aaf48,-_0x27dca5._0x1270ba,-0x295,-0x28d)+'t','ieJaU':_0x81685c(_0x27dca5._0x44d409,0x88,_0x27dca5._0x470f48,-0x63)+_0x1a6235(-_0x27dca5._0x9374db,-_0x27dca5._0x99f47f,-_0x27dca5._0x76415c,-0x10c)+_0x1a6235(-_0x27dca5._0xfce505,-_0x27dca5._0x2b2cb3,-_0x27dca5._0xed0aca,-_0x27dca5._0x50f331)+'e\x20update','yHrFH':'Objective\x20'+_0x81685c(-_0x27dca5._0x10b622,-_0x27dca5._0x2fa5cf,0x47,0x1d)+_0x81685c(-_0x27dca5._0x2c3d3a,_0x27dca5._0x5f64ed,-0xc1,_0x27dca5._0x10f651)+'issing\x20X-T'+_0x81685c(0x85,_0x27dca5._0x48dd01,0xcb,0x59)+_0x1a6235(-_0x27dca5._0x57716d,-_0x27dca5._0xbec5e0,-0x17b,-_0x27dca5._0x5c5046),'tVRlU':_0x81685c(0xf,-_0x27dca5._0x41b128,-0x6d,_0x27dca5._0x24cdbd)+_0x1a6235(-0x1a7,-_0x27dca5._0x26500d,-_0x27dca5._0xa22974,-0x15a)+_0x81685c(-_0x27dca5._0x4ab67c,_0x27dca5._0x5262d0,-0xa,-_0x27dca5._0xc0dedb)+_0x81685c(_0x27dca5._0x171ba4,0x43,0x7f,_0x27dca5._0x53d89d)+'ed','CASNY':'Internal\x20S'+_0x81685c(-_0x27dca5._0x3eba02,_0x27dca5._0x2679ae,-0xcf,-_0x27dca5._0x263811)+'r','cijwC':function(_0x5e6c06,_0x592102){return _0x5e6c06!==_0x592102;},'BNcHT':_0x81685c(-0x43,_0x27dca5._0x41b479,-0x89,-0xc2),'LaIut':'Unauthoriz'+'ed','cgsjh':_0x81685c(0xa0,0x111,_0x27dca5._0x581fa3,0xc5),'hXGsc':_0x81685c(0xcd,_0x27dca5._0x2c3d3a,_0x27dca5._0x51ec5b,_0x27dca5._0x408213),'jPiZr':_0x1a6235(-_0x27dca5._0x4c1827,-_0x27dca5._0x3259d3,-_0x27dca5._0x4d0dc3,-_0x27dca5._0x443589),'weKEc':function(_0x36615f,_0x21b0c1){return _0x36615f!==_0x21b0c1;},'IAsla':_0x81685c(-_0x27dca5._0x2a02c3,-_0x27dca5._0x3d624e,-0x33,_0x27dca5._0x568056),'DbjgS':_0x81685c(0xb,0x64,_0x27dca5._0xd3c185,-_0x27dca5._0x237a36),'niRyR':_0x1a6235(-_0x27dca5._0x11db1b,-_0x27dca5._0xa305c3,-_0x27dca5._0x5e0fd2,-_0x27dca5._0x4d46af)+_0x1a6235(-_0x27dca5._0x302e8e,-0x21d,-_0x27dca5._0x240cbd,-0x1d3)+_0x1a6235(-_0x27dca5._0x12ed10,-_0x27dca5._0x5d3581,-_0x27dca5._0x41dd63,-_0x27dca5._0x44255b),'pKAQd':function(_0x594a1d){return _0x594a1d();}},_0x138f1d=_0x5d1561[_0x1a6235(-_0x27dca5._0x5e6308,-_0x27dca5._0x16aad4,-_0x27dca5._0x537e15,-0x160)][_0x1a6235(-0x140,-_0x27dca5._0x4df66e,-0xf9,-0x198)];if(!_0x138f1d){logger[_0x81685c(_0x27dca5._0x101250,-0x46,-_0x27dca5._0x4a478c,-_0x27dca5._0x1a3db6)](_0x3b825a['yHrFH']);const _0x5eeb10={};return _0x5eeb10[_0x81685c(-_0x27dca5._0x5f64ed,-0x2,-0x38,0xd)]='Unauthoriz'+'ed',_0x5eeb10['message']=_0x1a6235(-_0x27dca5._0x4d48bd,-_0x27dca5._0x2e6f96,-_0x27dca5._0x14952f,-0x1a2)+_0x1a6235(-_0x27dca5._0xc4e397,-0x12a,-0x183,-0x155)+_0x81685c(0x1c,-0x25,0xb7,-0x7),_0x519e7e[_0x81685c(_0x27dca5._0x2a02c3,0x50,0x82,0x59)](-0x1049*-0x1+-0xcb8*0x1+-0x4*0x80)[_0x81685c(-0x2b,-0x12,-_0x27dca5._0x25b2b8,-_0x27dca5._0x11a89d)](_0x5eeb10);}if(!tasks){logger[_0x81685c(-_0x27dca5._0x475f82,-0xd5,-_0x27dca5._0x37287a,-0x79)](_0x3b825a['tVRlU']);const _0x512cb2={};return _0x512cb2[_0x1a6235(-0x24b,-_0x27dca5._0x3d3a33,-_0x27dca5._0x3202b0,-_0x27dca5._0x314445)]=_0x3b825a[_0x1a6235(-_0x27dca5._0x56a660,-0x1e4,-_0x27dca5._0x5eeda0,-0x15d)],_0x512cb2[_0x1a6235(-0x168,-0x126,-0xbc,-_0x27dca5._0x317a3e)]='Service\x20no'+_0x1a6235(-0x1be,-_0x27dca5._0x50d324,-_0x27dca5._0x1b9d15,-0x1f7)+_0x81685c(-_0x27dca5._0xed1773,-0x16,-_0x27dca5._0x1eae04,-0x94),_0x519e7e[_0x81685c(0x25,_0x27dca5._0x53d89d,-0x5b,-_0x27dca5._0x26164d)](-0x3*0x634+-0x21b1+0x3641)[_0x1a6235(-_0x27dca5._0x2d4525,-0x1e0,-_0x27dca5._0x5a69fc,-0x1fa)](_0x512cb2);}const _0x17060e=tasks[_0x1a6235(-0x1a0,-_0x27dca5._0x354553,-0x1ef,-_0x27dca5._0x56d55f)](_0x138f1d);if(!_0x17060e){if(_0x3b825a[_0x81685c(0x32,0xc4,_0x27dca5._0x20fdd4,-_0x27dca5._0x510c8d)](_0x1a6235(-_0x27dca5._0x1a5d26,-0x1f8,-_0x27dca5._0x21379d,-_0x27dca5._0x354553),_0x3b825a[_0x1a6235(-0xd3,-_0x27dca5._0x5cf732,-0xed,-0x161)])){if(_0x3b825a[_0x1a6235(-0x2a9,-0x223,-_0x27dca5._0x3abe28,-0x22e)](_0xa2ca99['parentObje'+'ctiveId'],_0x19d6b5)&&_0xfa87ae['status']===_0x3b825a[_0x81685c(0x45,0x32,-0x4e,0x5d)]&&_0x6827a['taskId']!==_0x1cc8f6[_0x1a6235(-_0x27dca5._0xf09d38,-_0x27dca5._0x37bca3,-0x1da,-0x208)]){const _0x5cb9c6={};_0x5cb9c6[_0x1a6235(-_0x27dca5._0x3590fc,-0x17b,-_0x27dca5._0x3bf6ac,-0x105)]=_0x513a29[_0x1a6235(-0x13b,-0x17b,-0x21f,-_0x27dca5._0x2b60dc)],_0x5cb9c6[_0x1a6235(-_0x27dca5._0x544651,-_0x27dca5._0x520791,-_0x27dca5._0x317a3e,-_0x27dca5._0xabefb3)]=_0xb44a82[_0x1a6235(-_0x27dca5._0x10d17d,-_0x27dca5._0x36c823,-_0x27dca5._0x5a0546,-0x1d9)],_0x5cb9c6['sortOrder']=_0x26e5ef[_0x1a6235(-0x1fd,-0x1a2,-0x153,-_0x27dca5._0x212939)],_0x5cb9c6[_0x1a6235(-0x75,-0x111,-_0x27dca5._0xb235de,-0x13e)]=_0x37e7ac[_0x81685c(0xa4,_0x27dca5._0x3a6267,0x12e,_0x27dca5._0x5e0fd2)],_0x355416[_0x1a6235(-_0x27dca5._0x563692,-_0x27dca5._0x3fcbe0,-0x11c,-_0x27dca5._0x56956b)](_0x5cb9c6);}}else{const _0x24bdcd={};_0x24bdcd['taskId']=_0x138f1d,logger[_0x1a6235(-_0x27dca5._0x24f067,-_0x27dca5._0x3590fc,-_0x27dca5._0x24cecd,-0x194)](_0x81685c(0xf,0x31,-_0x27dca5._0x592959,0x60)+'management'+_0x1a6235(-_0x27dca5._0x4d48bd,-_0x27dca5._0x3f5822,-0x22a,-_0x27dca5._0xb8b25d)+_0x1a6235(-0xfa,-_0x27dca5._0x1ea2eb,-0x177,-_0x27dca5._0x1df104)+_0x81685c(_0x27dca5._0x146386,0xe6,0x7a,0x10a),_0x24bdcd);const _0x372e6b={};return _0x372e6b[_0x1a6235(-_0x27dca5._0x3d3a33,-0x202,-_0x27dca5._0x39aa0c,-_0x27dca5._0x31bcfb)]=_0x3b825a['LaIut'],_0x372e6b[_0x1a6235(-0x1c1,-0x126,-0x19e,-_0x27dca5._0x4c1827)]='Invalid\x20ta'+'sk\x20ID',_0x519e7e[_0x1a6235(-_0x27dca5._0x3622c7,-_0x27dca5._0x34ac5f,-_0x27dca5._0x1d453f,-_0x27dca5._0x39d043)](-0x2*-0x11c8+-0x25cb+0x3cc)[_0x1a6235(-_0x27dca5._0x22fef9,-_0x27dca5._0x4f3437,-_0x27dca5._0xbc1ae7,-_0x27dca5._0x37bca3)](_0x372e6b);}}if(!_0x17060e['sourceObje'+_0x81685c(-_0x27dca5._0x42c089,-0x24,0x2c,-_0x27dca5._0x2ab56d)]){if(_0x3b825a[_0x81685c(-_0x27dca5._0x53357a,-_0x27dca5._0x89f3e1,_0x27dca5._0x4d81a0,-0x67)](_0x81685c(_0x27dca5._0x2c19a7,_0x27dca5._0x60e70e,0xa7,_0x27dca5._0xb2fd0c),_0x3b825a[_0x81685c(-_0x27dca5._0x6c43eb,-_0x27dca5._0x57aad8,-_0x27dca5._0x2dbaf7,-_0x27dca5._0xfada9a)])){const _0x28a0b6={};_0x28a0b6[_0x81685c(_0x27dca5._0x312f58,-_0x27dca5._0x73cdba,0xe3,_0x27dca5._0x424e5a)]=_0x138f1d,logger[_0x81685c(0x2f,0x3b,-_0x27dca5._0x2f1170,_0x27dca5._0x28c2fe)](_0x1a6235(-0x169,-_0x27dca5._0x5c88e4,-0x20a,-0x22f)+'pted\x20objec'+_0x81685c(_0x27dca5._0x1427fb,_0x27dca5._0x454f33,0x140,0xf7)+_0x1a6235(-0x16d,-_0x27dca5._0x50aa36,-_0x27dca5._0x1270ba,-_0x27dca5._0x538310)+_0x81685c(0x4c,0xed,_0x27dca5._0x3c45bb,0xdb)+_0x1a6235(-0x89,-0x108,-0x9d,-_0x27dca5._0x5bd154),_0x28a0b6);const _0x2eacef={};return _0x2eacef['error']=_0x3b825a['hXGsc'],_0x2eacef[_0x81685c(0x8f,-0xf,0xb4,_0x27dca5._0x143395)]=_0x81685c(_0x27dca5._0x3b6e8b,_0x27dca5._0x4120d0,0x43,-0x15)+'was\x20not\x20la'+_0x1a6235(-0x170,-0x1c8,-0x17a,-0x1d9)+'m\x20an\x20objec'+_0x81685c(0x79,-_0x27dca5._0x44d409,_0x27dca5._0x118adc,0xb4),_0x519e7e[_0x81685c(0x25,0x23,-0x3c,_0x27dca5._0x40c319)](0x109+0x1e28+-0x1d9e)[_0x81685c(-_0x27dca5._0x561b93,0x62,0x4e,-_0x27dca5._0x30d5b6)](_0x2eacef);}else{const _0x5eb8bb={};return _0x5eb8bb[_0x1a6235(-0x1f9,-0x202,-_0x27dca5._0xe990ed,-_0x27dca5._0x3fdcf1)]=_0x3b825a[_0x81685c(-0x6f,-0x40,-0x3c,-_0x27dca5._0x25cdd4)],_0x5eb8bb['message']='Request\x20bo'+_0x81685c(_0x27dca5._0xfada9a,_0x27dca5._0x4cfcfc,0x3f,0x99)+'clude\x20\x22obj'+_0x1a6235(-0x15b,-_0x27dca5._0x40d854,-_0x27dca5._0x56956b,-_0x27dca5._0x2ee7d5)+'rray\x20with\x20'+_0x1a6235(-_0x27dca5._0x2d9ab9,-_0x27dca5._0x535ade,-0x1f1,-_0x27dca5._0x28e62a)+_0x1a6235(-_0x27dca5._0x512873,-_0x27dca5._0x32d9cd,-0x246,-_0x27dca5._0x3646a9),_0x419a87[_0x1a6235(-0x1d5,-0x190,-_0x27dca5._0xe58b89,-_0x27dca5._0x19abdc)](-0x1223+0x1*-0x5f4+0x19a7)[_0x1a6235(-0x199,-0x1e0,-_0x27dca5._0x32d9cd,-_0x27dca5._0x2529aa)](_0x5eb8bb);}}_0x5d1561[_0x81685c(-0x1c,-_0x27dca5._0xce24bc,_0x27dca5._0x107cf8,-_0x27dca5._0x65c9ba)+'k']=_0x17060e,_0x5d1561[_0x1a6235(-0x29f,-_0x27dca5._0x7e8877,-0x1fa,-_0x27dca5._0x1b477)+'ctiveId']=_0x17060e[_0x81685c(-0x72,-_0x27dca5._0x2448df,-0xb2,-_0x27dca5._0x36b935)+_0x81685c(-_0x27dca5._0x5bca6b,0xc,_0x27dca5._0x30e796,-0x83)];const _0xdace73=tasks[_0x81685c(_0x27dca5._0x9b620c,0x8,0xe,_0x27dca5._0x5ddf26)](_0x17060e['sourceObje'+_0x81685c(-0x3c,_0x27dca5._0x4e3661,-_0x27dca5._0x1aaff5,-_0x27dca5._0xf21cf4)]);if(!_0xdace73){const _0x24f1d5={};_0x24f1d5['taskId']=_0x138f1d,_0x24f1d5[_0x1a6235(-0x299,-0x227,-0x2c6,-_0x27dca5._0x406a88)+_0x81685c(-_0x27dca5._0x53a87f,-0xbd,-0xcd,-0x26)]=_0x17060e[_0x81685c(-0x72,-_0x27dca5._0x312f58,-0x8a,-_0x27dca5._0x4d4151)+_0x81685c(-_0x27dca5._0x15cbcf,-_0x27dca5._0x4f6d45,_0x27dca5._0x30d5b6,-_0x27dca5._0x12422b)],logger[_0x81685c(0x2f,_0x27dca5._0x454f33,0x3f,-_0x27dca5._0x2241eb)]('Parent\x20obj'+'ective\x20not'+_0x81685c(-0x6d,-0x6d,-_0x27dca5._0x2c47ee,-_0x27dca5._0x435a9c),_0x24f1d5);const _0x4dcb56={};return _0x4dcb56[_0x81685c(-_0x27dca5._0x2d5e6c,-0xc4,-0xe0,-0xa2)]=_0x3b825a[_0x1a6235(-_0x27dca5._0x84bce5,-0x112,-_0x27dca5._0x40599a,-0x199)],_0x4dcb56['message']=_0x1a6235(-0x259,-0x1ed,-_0x27dca5._0x448433,-0x260)+_0x1a6235(-_0x27dca5._0x412932,-_0x27dca5._0x2be764,-_0x27dca5._0x3c653f,-0x1f2)+_0x1a6235(-0x10f,-_0x27dca5._0x4345fb,-0x116,-_0x27dca5._0x2a2691)+_0x1a6235(-_0x27dca5._0x3821a4,-_0x27dca5._0x4f6a01,-_0x27dca5._0x2755e3,-0x1a9),_0x519e7e[_0x1a6235(-_0x27dca5._0x24f088,-0x190,-0x1c5,-0x153)](0x3*-0x1a+0x19f+-0x1*-0x43)[_0x1a6235(-0x261,-0x1e0,-0x224,-0x23c)](_0x4dcb56);}if(_0x3b825a['weKEc'](_0xdace73[_0x81685c(_0x27dca5._0x44dbbb,0xa0,0x9f,_0x27dca5._0x467518)],_0x3b825a[_0x1a6235(-0x169,-_0x27dca5._0x2abacf,-_0x27dca5._0x544651,-_0x27dca5._0x5f7682)])){if(_0x3b825a[_0x1a6235(-0x1c6,-_0x27dca5._0x127f07,-0x10e,-_0x27dca5._0x211adb)](_0x3b825a[_0x1a6235(-0x17b,-0x1bc,-_0x27dca5._0x2c9af2,-0x15a)],_0x3b825a[_0x81685c(_0x27dca5._0x7a2a3b,-_0x27dca5._0x109fe9,_0x27dca5._0xb2fd0c,0xc4)])){const _0x1fc1de={};_0x1fc1de[_0x81685c(_0x27dca5._0x1305ac,0x4c,0x5e,-_0x27dca5._0x590e58)]=_0x138f1d,_0x1fc1de[_0x1a6235(-_0x27dca5._0x1ac874,-_0x27dca5._0x5ae58b,-_0x27dca5._0x58b171,-0x23b)+_0x81685c(-0x3c,-_0x27dca5._0x3e00e5,_0x27dca5._0x4f6d45,_0x27dca5._0x38b803)]=_0x17060e[_0x81685c(-_0x27dca5._0x146386,-_0x27dca5._0x5806bd,-_0x27dca5._0x3af568,-_0x27dca5._0x2d5e6c)+_0x81685c(-0x3c,-_0x27dca5._0x2bc720,_0x27dca5._0x460f31,-_0x27dca5._0x42e867)],_0x1fc1de[_0x81685c(0x25,-0x3c,0x82,-0x61)]=_0xdace73[_0x81685c(_0x27dca5._0x2a02c3,_0x27dca5._0x5d3c21,-0x35,_0x27dca5._0x36e5ad)],logger['warn'](_0x3b825a[_0x1a6235(-_0x27dca5._0x44c472,-0x195,-0x1d4,-0xef)],_0x1fc1de);const _0x55e9de={};return _0x55e9de[_0x1a6235(-0x21b,-0x202,-0x221,-_0x27dca5._0x5aa1b3)]=_0x3b825a[_0x81685c(-0x6f,-0xe3,-0xdd,-0x104)],_0x55e9de[_0x81685c(0x8f,_0x27dca5._0x394702,_0x27dca5._0x23d0d2,_0x27dca5._0x584fe3)]=_0x3b825a['niRyR'],_0x519e7e[_0x81685c(0x25,-0x58,-_0x27dca5._0x334da2,0x3d)](-0x11*0x21d+-0x1*0x11c1+0x373e)[_0x81685c(-_0x27dca5._0x2a3c6d,-_0x27dca5._0x1d6441,-0xa3,0x3b)](_0x55e9de);}else{const _0x39f4a8={};_0x39f4a8['objectiveI'+'d']=_0x2f4da1,_0x39f4a8['error']=_0xfbfa04['message'],_0x3a4ad3['error'](_0x3b825a[_0x81685c(0x65,0xf6,0x22,0x9a)],_0x39f4a8);}}_0x5d1561[_0x81685c(-_0x27dca5._0x59a308,_0x27dca5._0x16a911,-_0x27dca5._0x5d960f,_0x27dca5._0x483ac1)+_0x81685c(-0x31,-_0x27dca5._0x65c9ba,-0xca,-_0x27dca5._0x285add)]=_0xdace73,_0x3b825a[_0x81685c(-0x49,-_0x27dca5._0x4f6d45,_0x27dca5._0x1fc3c4,-_0x27dca5._0x4ce0ca)](_0x1f75e6);}router['get']('/parent',requireTaskAuth,async(_0x3e62c4,_0x184685)=>{const _0x23dd3a={_0xd868da:0xf5,_0x3da4bf:0x43,_0x46e37c:0x37,_0x2bccfe:0x46d,_0x195f4e:0x30e,_0xf458c1:0xc5,_0x2a0dd2:0x5,_0x153383:0x64,_0x5947a6:0x460,_0x35e7ea:0x461,_0x42a3bb:0x3be,_0x1a6acf:0x3f3,_0x4591ac:0x366,_0xd94ad3:0x7c,_0x268e11:0x83,_0x5300fd:0x9b,_0x52121a:0x90,_0x2dec28:0x64,_0x33ce17:0x424,_0x541b4a:0x36d,_0x4bd156:0x45,_0x56d43b:0x387,_0x1725de:0x397,_0x5d6bd4:0x3bb,_0x544600:0x339,_0x4ef9dc:0x35e,_0x5b9299:0x2d7,_0x158064:0x3f7,_0x1080df:0x3e,_0x550d1a:0x32,_0x334be5:0x52,_0x388ab6:0x54,_0x337ba8:0x4,_0x11bb89:0xb3,_0xd5de52:0x9a,_0xcf3265:0x1,_0x3a48dc:0x129,_0x167b91:0xd5,_0xb8b5a7:0xd4,_0x20109a:0x11e,_0x5a4047:0x11c,_0x5df038:0x85,_0x259c77:0x387,_0x4089c2:0x45f,_0x1744c5:0x421,_0x5321df:0x6f,_0x3b922a:0x48,_0x3c0c60:0x39f,_0x22d6ce:0x31,_0x422c4c:0x15,_0x387dc5:0x12,_0x84fd2e:0x3b0,_0x54a562:0x39a,_0x8a6aa9:0x362,_0xc198e6:0x3c8,_0x3edc28:0x344,_0x21372f:0x28e,_0x4add4f:0x32b,_0x2b7488:0x2aa,_0x2940a1:0x2b9,_0x4ebb3c:0x332,_0x48234b:0x1},_0x35b634={_0x385b88:0x9,_0x1c18cd:0x561},_0x2324eb={_0x4c175f:0x4e,_0x53f9b8:0x5},_0x394952={};_0x394952[_0x2da424(_0x23dd3a._0xd868da,0x5d,0x1,0x7e)]=_0x2da424(-0x47,0x1d,-_0x23dd3a._0x3da4bf,_0x23dd3a._0x46e37c)+'ing\x20parent'+_0x105523(_0x23dd3a._0x2bccfe,0x45e,0x393,0x431)+_0x105523(0x33e,0x2a5,0x308,_0x23dd3a._0x195f4e);const _0xd02216=_0x394952,{parentObjective:_0x38ac16,callingTask:_0x3f3f54}=_0x3e62c4,_0x2fc398={};_0x2fc398[_0x2da424(-0x16,_0x23dd3a._0xf458c1,-_0x23dd3a._0x2a0dd2,_0x23dd3a._0x153383)]=_0x3f3f54[_0x105523(_0x23dd3a._0x5947a6,0x3ec,_0x23dd3a._0x35e7ea,_0x23dd3a._0x42a3bb)],_0x2fc398[_0x105523(_0x23dd3a._0x1a6acf,0x2bd,0x30e,_0x23dd3a._0x4591ac)+'d']=_0x38ac16['taskId'],logger[_0x2da424(_0x23dd3a._0xd94ad3,-_0x23dd3a._0x268e11,-_0x23dd3a._0x5300fd,-0x29)](_0xd02216['JVBSw'],_0x2fc398);const _0x33d865={};_0x33d865['taskId']=_0x38ac16[_0x2da424(0x73,_0x23dd3a._0x52121a,0x13,_0x23dd3a._0x2dec28)],_0x33d865[_0x105523(0x3f5,0x337,0x41e,0x37b)]=_0x38ac16[_0x105523(_0x23dd3a._0x33ce17,_0x23dd3a._0x541b4a,0x3f7,0x37b)],_0x33d865[_0x2da424(_0x23dd3a._0x4bd156,0xba,0x41,0x4f)]=_0x38ac16[_0x105523(_0x23dd3a._0x56d43b,0x320,0x41f,0x3a9)],_0x33d865['instructio'+'ns']=_0x38ac16[_0x105523(_0x23dd3a._0x1725de,_0x23dd3a._0x5d6bd4,0x31d,0x32c)]?.[_0x105523(0x361,0x2b9,0x352,_0x23dd3a._0x544600)+'ns']||'',_0x33d865['environmen'+'t']=_0x38ac16[_0x105523(_0x23dd3a._0x4ef9dc,_0x23dd3a._0x5b9299,_0x23dd3a._0x158064,0x374)+'t'],_0x33d865['taskType']=_0x38ac16[_0x2da424(-_0x23dd3a._0x1080df,-0x4c,0x30,-_0x23dd3a._0x550d1a)],_0x33d865[_0x2da424(_0x23dd3a._0x334be5,-_0x23dd3a._0x388ab6,-_0x23dd3a._0x337ba8,-0x2e)]=_0x38ac16[_0x2da424(-_0x23dd3a._0x11bb89,-_0x23dd3a._0xd5de52,_0x23dd3a._0xcf3265,-0x2e)],_0x33d865[_0x2da424(_0x23dd3a._0x3a48dc,_0x23dd3a._0x167b91,_0x23dd3a._0xb8b5a7,0xce)]=_0x38ac16[_0x2da424(_0x23dd3a._0x20109a,_0x23dd3a._0x5a4047,_0x23dd3a._0x5df038,0xce)],_0x33d865[_0x105523(_0x23dd3a._0x259c77,_0x23dd3a._0x4089c2,0x44a,_0x23dd3a._0x1744c5)]=_0x38ac16['updatedAt'];function _0x2da424(_0x2c3388,_0xd9815,_0x29e15a,_0x15659b){return _0x587fca(_0x2c3388-_0x2324eb._0x4c175f,_0x15659b-0x207,_0x2c3388,_0x15659b-_0x2324eb._0x53f9b8);}function _0x105523(_0x4d6f15,_0xe63725,_0x51cc01,_0x168754){return _0x587fca(_0x4d6f15-_0x35b634._0x385b88,_0x168754-_0x35b634._0x1c18cd,_0x4d6f15,_0x168754-0x13d);}_0x33d865['parentObje'+_0x2da424(-_0x23dd3a._0x5321df,-0x12,-_0x23dd3a._0x3b922a,-0x12)]=_0x38ac16[_0x105523(0x361,_0x23dd3a._0x3c0c60,0x2de,0x36c)+_0x2da424(0x67,-_0x23dd3a._0x22d6ce,_0x23dd3a._0x422c4c,-_0x23dd3a._0x387dc5)],_0x33d865['launchCoun'+'t']=_0x38ac16[_0x105523(0x443,_0x23dd3a._0x84fd2e,0x2f6,_0x23dd3a._0x54a562)+'t']||0x29*-0x1d+0x2636*-0x1+0x2adb,_0x33d865[_0x105523(_0x23dd3a._0x8a6aa9,0x363,_0x23dd3a._0xc198e6,0x332)+_0x105523(_0x23dd3a._0x3edc28,_0x23dd3a._0x21372f,0x326,_0x23dd3a._0x4add4f)]=_0x38ac16[_0x105523(_0x23dd3a._0x2b7488,0x370,_0x23dd3a._0x2940a1,_0x23dd3a._0x4ebb3c)+'edAt'],_0x184685[_0x2da424(-0x36,0x4b,0x14,-_0x23dd3a._0x48234b)](_0x33d865);}),router['patch'](_0x587fca(-0x137,-0x125,-0x149,-0x1a1),requireTaskAuth,async(_0x4154ad,_0x125507)=>{const _0x1c5a97={_0x547425:0x47b,_0x2d3e6f:0x4ef,_0x308faf:0x45d,_0x4c78e9:0x559,_0x20504d:0x4ef,_0xf60a31:0x52a,_0x47b68b:0x49f,_0x40b350:0x3f0,_0x31ded6:0x42b,_0x159546:0x4ca,_0x125c61:0x3ac,_0x45bec1:0x3f9,_0x11392f:0x476,_0x5eb909:0x4b7,_0x115221:0x430,_0x4552b4:0x3cf,_0x362108:0x44d,_0x3dccb9:0x3af,_0x42a6de:0x3de,_0x3286f7:0x389,_0x4e5360:0x393,_0x2b60ee:0x47c,_0x327eaa:0x47d,_0x270687:0x4f2,_0x2a9251:0x4ea,_0x4563c3:0x440,_0x36921e:0x4a8,_0x5ed87d:0x427,_0x2713f5:0x3db,_0x370f3c:0x3ed,_0x5040c8:0x322,_0x15979c:0x379,_0x1a005a:0x424,_0x2e76bf:0x3d9,_0x579152:0x45c,_0x2b9beb:0x475,_0x4a310b:0x5ca,_0x143d5d:0x530,_0x14e054:0x4d1,_0x98431b:0x444,_0x1d84f4:0x38a,_0x59fcaa:0x306,_0x152ea2:0x3b4,_0x1164e4:0x4dd,_0x57fbcc:0x43b,_0x12a1d8:0x3be,_0x17ecd0:0x41b,_0x317db0:0x465,_0x3e6285:0x380,_0x34d15f:0x4ce,_0x4457ea:0x480,_0x7f420e:0x51a,_0x2ee02e:0x424,_0x299cc3:0x457,_0x22c56b:0x53d,_0x5032a0:0x50a,_0x4f6c08:0x36f,_0x3c4fc9:0x383,_0x34f635:0x50b,_0xa5f063:0x58d,_0x34297a:0x366,_0x587742:0x3f4,_0x12c22c:0x3f4,_0xe42c89:0x391,_0x199e43:0x422,_0x2bdb0b:0x42f,_0x29222f:0x49c,_0x264e9e:0x4e6,_0x2f4c8a:0x53e,_0x3ce5a2:0x5cc,_0x1643eb:0x4df,_0x3f28de:0x3ee,_0x1e464e:0x39d,_0x42ca73:0x409,_0x489000:0x366,_0x4866d8:0x2fa,_0x47dd49:0x437,_0x1bc21b:0x461,_0x37f9c9:0x4dd,_0x483efd:0x446,_0x35a900:0x4eb,_0x22c2d4:0x4e5,_0x46db81:0x378,_0x1976d3:0x2ee,_0x8305ac:0x390,_0x5ab03f:0x432,_0x123c1b:0x3da,_0x4d9a25:0x467,_0x951292:0x4ad,_0x114e71:0x487,_0x3386c1:0x3fd,_0xbbb32c:0x3f1,_0x46f728:0x4d8,_0x4cce9b:0x538,_0x3cc9fb:0x4fe,_0x351f33:0x4aa,_0x117985:0x4de,_0x1c5241:0x53e,_0x4549c1:0x53c,_0x2a0473:0x325,_0x478f97:0x32b,_0x1cc082:0x57f,_0xfa0f4b:0x53a,_0x2b3428:0x5a6,_0x58f637:0x4fc,_0x84747d:0x46e,_0x5189e6:0x46e,_0x3746c4:0x430,_0x3da260:0x465,_0x1c6e33:0x436,_0x5610c1:0x596,_0x39cfe1:0x580,_0xa31531:0x4d8,_0x2f0807:0x486,_0x54f307:0x4bc,_0x4954ba:0x4b6,_0x1de2ff:0x472,_0x5dd01e:0x462,_0x356e75:0x458,_0xbc8db4:0x4b9,_0x15fec3:0x4c1,_0x6c28af:0x305,_0x57e0d8:0x35b,_0x3f747c:0x304,_0x3b66cf:0x410,_0x52a361:0x497,_0x39a6de:0x452,_0x816da3:0x3c7,_0x55e999:0x402,_0x4a01e9:0x46f,_0x48d9c8:0x4a0,_0x4ab40c:0x398,_0x575548:0x3a6,_0x4ffd99:0x30d,_0x3b6e8e:0x32e,_0x146ae3:0x4d8,_0x2eedb3:0x47b,_0x1020f7:0x4f7,_0x2f6502:0x3e2,_0x535328:0x448,_0x221b08:0x488,_0x1aa08f:0x3b5,_0x26a9cb:0x4b6,_0x33dedc:0x55b,_0x50d3d4:0x450,_0x5cf451:0x4c9,_0x1bc750:0x505,_0x8ae197:0x40a,_0x2424e4:0x434,_0x30edc2:0x3d6,_0x5ea841:0x3c7,_0xd88ca6:0x3bc,_0x56e0fb:0x3dd,_0x49e12a:0x4fa,_0x82697c:0x3dd,_0x577263:0x3e3,_0x28056a:0x49b,_0x2c79f7:0x519,_0xd08d77:0x4a7,_0x1913a4:0x49e,_0x2da8bf:0x3a5,_0x13a2f8:0x366,_0x5a2229:0x35d,_0x9bb21c:0x3a1},_0x227b97={_0x4eaf92:0x57},_0x5d8b00={_0x110efe:0x1bf},_0xfd7fb1={'gCaEU':function(_0x53aa26,_0xdc953d,_0x101944){return _0x53aa26(_0xdc953d,_0x101944);},'tvGFt':_0x806866(_0x1c5a97._0x547425,0x47c,_0x1c5a97._0x2d3e6f,_0x1c5a97._0x308faf),'nkngx':'Task\x20stora'+_0x328b8a(0x4c8,0x4f8,_0x1c5a97._0x4c78e9,_0x1c5a97._0x20504d)+_0x328b8a(_0x1c5a97._0xf60a31,0x4f2,0x513,0x49b)+'ed','lIVJC':function(_0x3ff07e,_0x487a8){return _0x3ff07e===_0x487a8;},'afZDw':function(_0x3d81e5,_0x538783){return _0x3d81e5===_0x538783;},'sKvKy':'uTgZl','huTDS':_0x806866(0x420,_0x1c5a97._0x47b68b,_0x1c5a97._0x40b350,0x413),'SGary':'Bad\x20Reques'+'t','BQSxW':'At\x20least\x20o'+_0x806866(_0x1c5a97._0x31ded6,_0x1c5a97._0x159546,0x3d6,0x470)+_0x328b8a(_0x1c5a97._0x125c61,0x408,_0x1c5a97._0x45bec1,0x3b5)+_0x806866(_0x1c5a97._0x11392f,_0x1c5a97._0x5eb909,_0x1c5a97._0x115221,_0x1c5a97._0x4552b4)+_0x806866(_0x1c5a97._0x362108,0x491,_0x1c5a97._0x3dccb9,_0x1c5a97._0x42a6de)+_0x328b8a(_0x1c5a97._0x3286f7,0x413,_0x1c5a97._0x4e5360,_0x1c5a97._0x2b60ee),'NQjdq':'Task\x20updat'+'ing\x20parent'+_0x806866(_0x1c5a97._0x327eaa,_0x1c5a97._0x270687,0x442,_0x1c5a97._0x2a9251),'YeiEq':function(_0x191eb3,_0x3f9984){return _0x191eb3!==_0x3f9984;},'IAdWK':function(_0x3ca004,_0x48aa0e){return _0x3ca004!==_0x48aa0e;},'PjnqE':function(_0x1e9ba5,_0x35ebd4){return _0x1e9ba5!==_0x35ebd4;},'Qyobk':function(_0x4c1faf,_0x14611c){return _0x4c1faf===_0x14611c;},'oNFPV':_0x806866(_0x1c5a97._0x4563c3,0x3f8,_0x1c5a97._0x36921e,0x44c),'bUGJA':_0x806866(0x480,_0x1c5a97._0x5ed87d,0x40f,_0x1c5a97._0x2713f5),'MPOaL':_0x806866(0x3f6,_0x1c5a97._0x4e5360,0x387,0x438)+'son','Lzksv':_0x806866(0x3da,_0x1c5a97._0x370f3c,0x38b,0x3e7),'JbCsj':_0x806866(0x37b,_0x1c5a97._0x5040c8,_0x1c5a97._0x15979c,_0x1c5a97._0x1a005a)+_0x806866(0x46a,0x4e8,_0x1c5a97._0x2e76bf,_0x1c5a97._0x579152),'WuKMr':'Failed\x20to\x20'+_0x806866(0x422,_0x1c5a97._0x2e76bf,_0x1c5a97._0x2b9beb,0x3b0)+_0x328b8a(_0x1c5a97._0x4a310b,_0x1c5a97._0x143d5d,0x568,_0x1c5a97._0x14e054)+'date','dxHwi':_0x328b8a(0x48a,_0x1c5a97._0x98431b,0x47a,0x4cb)+_0x806866(_0x1c5a97._0x1d84f4,_0x1c5a97._0x59fcaa,_0x1c5a97._0x152ea2,0x30b)+_0x328b8a(0x544,0x536,0x59f,_0x1c5a97._0x1164e4)+'sk'},{parentObjective:_0xe71072,callingTask:_0x21b90d}=_0x4154ad,{name:_0x5c4688,instructions:_0x5a63d3}=_0x4154ad['body'];if(_0xfd7fb1[_0x806866(_0x1c5a97._0x5ed87d,_0x1c5a97._0x57fbcc,_0x1c5a97._0x12a1d8,0x391)](_0x5c4688,undefined)&&_0xfd7fb1[_0x806866(_0x1c5a97._0x17ecd0,0x408,0x449,_0x1c5a97._0x317db0)](_0x5a63d3,undefined)){if(_0xfd7fb1[_0x806866(0x427,_0x1c5a97._0x3e6285,_0x1c5a97._0x34d15f,_0x1c5a97._0x4457ea)](_0xfd7fb1[_0x328b8a(_0x1c5a97._0x7f420e,0x4d4,0x52b,0x4be)],_0xfd7fb1[_0x328b8a(0x4a7,0x411,_0x1c5a97._0x2ee02e,_0x1c5a97._0x299cc3)]))_0xfd7fb1[_0x328b8a(_0x1c5a97._0x22c56b,0x4a7,_0x1c5a97._0x5032a0,0x404)](_0xa4756,_0xfd7fb1[_0x806866(0x355,_0x1c5a97._0x3286f7,0x3e7,_0x1c5a97._0x4f6c08)],_0x33390c);else{const _0x25c687={};return _0x25c687[_0x806866(_0x1c5a97._0x3c4fc9,0x38e,0x35b,0x355)]=_0xfd7fb1[_0x806866(0x3ad,0x369,0x367,0x416)],_0x25c687[_0x328b8a(0x4a7,_0x1c5a97._0x34f635,_0x1c5a97._0xa5f063,0x570)]=_0xfd7fb1['BQSxW'],_0x125507[_0x806866(0x3f5,_0x1c5a97._0x34297a,0x3e4,0x3a9)](-0x19f*-0x17+0xc82+-0x303b)[_0x328b8a(0x4e1,0x451,0x498,_0x1c5a97._0x587742)](_0x25c687);}}logger[_0x328b8a(_0x1c5a97._0x12c22c,0x429,_0x1c5a97._0xe42c89,0x3e5)](_0xfd7fb1[_0x806866(0x445,0x49f,_0x1c5a97._0x199e43,0x455)],{'taskId':_0x21b90d['taskId'],'objectiveId':_0xe71072[_0x328b8a(_0x1c5a97._0x2bdb0b,0x4b6,0x461,_0x1c5a97._0x317db0)],'updatingName':_0xfd7fb1[_0x806866(_0x1c5a97._0x29222f,_0x1c5a97._0x264e9e,0x46a,0x4c3)](_0x5c4688,undefined),'updatingInstructions':_0xfd7fb1[_0x328b8a(0x4d1,_0x1c5a97._0x2f4c8a,0x55a,_0x1c5a97._0x3ce5a2)](_0x5a63d3,undefined)});const _0x5d2df8=new Date()['toISOStrin'+'g']();function _0x806866(_0x15b142,_0x13397f,_0x97bd91,_0x38f7fc){return _0x587fca(_0x15b142-0xf8,_0x15b142-0x5ad,_0x97bd91,_0x38f7fc-_0x5d8b00._0x110efe);}_0xfd7fb1[_0x328b8a(_0x1c5a97._0x1643eb,0x497,_0x1c5a97._0x3f28de,0x45d)](_0x5c4688,undefined)&&(_0xe71072[_0x806866(0x3c7,0x406,0x40a,_0x1c5a97._0x1e464e)]=_0x5c4688);if(_0x5a63d3!==undefined){if(_0xfd7fb1[_0x328b8a(0x404,_0x1c5a97._0x42ca73,0x446,_0x1c5a97._0x489000)](_0xfd7fb1[_0x806866(0x395,_0x1c5a97._0x4866d8,_0x1c5a97._0x47dd49,0x3b9)],_0xfd7fb1[_0x328b8a(_0x1c5a97._0x36921e,0x419,_0x1c5a97._0x1bc21b,0x39a)]))throw new _0x34af62(_0xfd7fb1[_0x328b8a(_0x1c5a97._0x37f9c9,_0x1c5a97._0x483efd,_0x1c5a97._0x35a900,_0x1c5a97._0x22c2d4)]);else _0xe71072[_0x806866(_0x1c5a97._0x46db81,0x385,_0x1c5a97._0x1976d3,0x321)]={..._0xe71072[_0x328b8a(_0x1c5a97._0x8305ac,_0x1c5a97._0x2ee02e,_0x1c5a97._0x5ab03f,0x413)],'instructions':_0x5a63d3};}_0xe71072[_0x806866(0x46d,0x412,_0x1c5a97._0x123c1b,_0x1c5a97._0x3f28de)]=_0x5d2df8,_0xe71072['lastModifi'+'edByTaskId']=_0x21b90d[_0x328b8a(_0x1c5a97._0x4d9a25,0x4b6,0x52f,_0x1c5a97._0x951292)];try{const _0x465196=await findTaskDirectory(_0xe71072[_0x806866(0x40a,0x43a,_0x1c5a97._0x114e71,0x43c)]);if(_0x465196){const _0x56e3eb=_0x29d3e0['join'](_0x465196,_0xfd7fb1[_0x328b8a(_0x1c5a97._0x3386c1,0x43c,_0x1c5a97._0xbbb32c,_0x1c5a97._0x46f728)]);await _0x46fc36['writeFile'](_0x56e3eb,JSON[_0x328b8a(0x4b8,_0x1c5a97._0x4cce9b,_0x1c5a97._0x3cc9fb,_0x1c5a97._0x351f33)](_0xe71072,null,0x1c1*-0x4+-0xd84+0x148a),_0xfd7fb1['Lzksv']);if(_0xfd7fb1[_0x328b8a(_0x1c5a97._0x117985,_0x1c5a97._0x1c5241,0x53d,_0x1c5a97._0x4549c1)](_0x5a63d3,undefined)){const _0x1ab2c1=_0x29d3e0[_0x806866(0x3b9,_0x1c5a97._0x2a0473,0x3c2,_0x1c5a97._0x478f97)](_0x465196,_0x328b8a(_0x1c5a97._0x1cc082,_0x1c5a97._0xfa0f4b,_0x1c5a97._0x2b3428,_0x1c5a97._0x58f637)),_0x756e2f={};_0x756e2f[_0x328b8a(_0x1c5a97._0x84747d,_0x1c5a97._0x117985,0x440,0x494)]=!![],await _0x46fc36[_0x806866(_0x1c5a97._0x5189e6,_0x1c5a97._0x3746c4,0x4ce,0x484)](_0x1ab2c1,_0x756e2f);const _0x4d21a7=_0x29d3e0[_0x328b8a(0x3ef,_0x1c5a97._0x3da260,0x40b,_0x1c5a97._0x1c6e33)](_0x1ab2c1,_0xfd7fb1[_0x328b8a(_0x1c5a97._0x5610c1,0x511,0x471,_0x1c5a97._0x39cfe1)]);await _0x46fc36['writeFile'](_0x4d21a7,_0x5a63d3,_0x328b8a(_0x1c5a97._0xa31531,_0x1c5a97._0x2f0807,0x3e5,0x51e));}}}catch(_0xb4de97){const _0x3b6890={};_0x3b6890['objectiveI'+'d']=_0xe71072[_0x328b8a(_0x1c5a97._0x54f307,_0x1c5a97._0x4954ba,_0x1c5a97._0x1de2ff,_0x1c5a97._0x5dd01e)],_0x3b6890[_0x328b8a(0x42d,_0x1c5a97._0x2bdb0b,0x4a9,_0x1c5a97._0x356e75)]=_0xb4de97[_0x328b8a(_0x1c5a97._0xbc8db4,_0x1c5a97._0x34f635,_0x1c5a97._0x15fec3,0x582)],logger[_0x806866(0x383,_0x1c5a97._0x6c28af,0x3d5,0x404)](_0xfd7fb1[_0x806866(_0x1c5a97._0x57e0d8,_0x1c5a97._0x3f747c,0x33b,0x3a1)],_0x3b6890);}if(broadcastTaskUpdate){const _0x40c86c={};_0x40c86c[_0x328b8a(0x541,0x4b6,_0x1c5a97._0x3b66cf,0x512)]=_0xe71072[_0x328b8a(_0x1c5a97._0x52a361,_0x1c5a97._0x4954ba,_0x1c5a97._0x4954ba,_0x1c5a97._0x39a6de)],_0x40c86c[_0x328b8a(0x443,0x473,0x45f,0x3f4)]=_0xe71072[_0x806866(_0x1c5a97._0x816da3,_0x1c5a97._0x55e999,0x3ad,_0x1c5a97._0x4a01e9)],_0x40c86c[_0x328b8a(_0x1c5a97._0x48d9c8,0x431,_0x1c5a97._0x4ab40c,_0x1c5a97._0x575548)+'ns']=_0xe71072[_0x806866(0x378,_0x1c5a97._0x4ffd99,0x374,_0x1c5a97._0x3b6e8e)]?.[_0x328b8a(0x40d,0x431,_0x1c5a97._0x146ae3,_0x1c5a97._0x15fec3)+'ns'],_0x40c86c['updatedAt']=_0xe71072[_0x328b8a(_0x1c5a97._0x2eedb3,0x519,_0x1c5a97._0x1020f7,0x4d7)],_0xfd7fb1[_0x328b8a(0x4df,0x4a7,0x4c2,0x49a)](broadcastTaskUpdate,_0x328b8a(_0x1c5a97._0x317db0,0x471,0x43b,0x3fa)+'ed',_0x40c86c);}function _0x328b8a(_0x4ae853,_0x24f996,_0x43391d,_0x5560ba){return _0x587fca(_0x4ae853-_0x227b97._0x4eaf92,_0x24f996-0x659,_0x4ae853,_0x5560ba-0xf9);}const _0xa152ba={};_0xa152ba[_0x806866(0x40a,_0x1c5a97._0x2f6502,_0x1c5a97._0x535328,0x40e)]=_0x21b90d[_0x806866(0x40a,_0x1c5a97._0x221b08,_0x1c5a97._0x1aa08f,0x3a3)],_0xa152ba[_0x806866(0x3b2,0x43f,0x3ed,0x3f1)+'d']=_0xe71072[_0x328b8a(0x556,_0x1c5a97._0x26a9cb,_0x1c5a97._0x33dedc,0x499)],logger[_0x328b8a(_0x1c5a97._0x50d3d4,0x429,0x482,0x4b3)](_0xfd7fb1['dxHwi'],_0xa152ba);const _0x106f3e={};_0x106f3e[_0x328b8a(0x53c,_0x1c5a97._0x5cf451,0x469,_0x1c5a97._0x1bc750)]=!![],_0x106f3e[_0x806866(0x40a,_0x1c5a97._0x579152,0x412,0x3cb)]=_0xe71072[_0x806866(_0x1c5a97._0x8ae197,0x417,_0x1c5a97._0x2424e4,_0x1c5a97._0x30edc2)],_0x106f3e[_0x806866(_0x1c5a97._0x5ea841,_0x1c5a97._0xd88ca6,0x3c0,_0x1c5a97._0x56e0fb)]=_0xe71072[_0x328b8a(0x44b,0x473,0x439,_0x1c5a97._0x49e12a)],_0x106f3e[_0x328b8a(_0x1c5a97._0x82697c,0x431,0x398,0x474)+'ns']=_0xe71072[_0x328b8a(_0x1c5a97._0x3e6285,0x424,0x385,_0x1c5a97._0x577263)]?.[_0x328b8a(_0x1c5a97._0x28056a,0x431,0x45f,0x3d9)+'ns'],_0x106f3e[_0x328b8a(0x514,_0x1c5a97._0x2c79f7,_0x1c5a97._0x39cfe1,_0x1c5a97._0xd08d77)]=_0xe71072[_0x328b8a(0x4e8,0x519,_0x1c5a97._0x1913a4,0x493)],_0x125507[_0x806866(_0x1c5a97._0x2da8bf,_0x1c5a97._0x13a2f8,_0x1c5a97._0x5a2229,_0x1c5a97._0x9bb21c)](_0x106f3e);}),router[_0x192b07(-0x126,-0x124,-0xf0,-0xc3)](_0x587fca(-0x12a,-0x1bc,-0x1db,-0x151)+_0x192b07(-0x161,-0x1c2,-0x1de,-0x186),requireTaskAuth,async(_0x323509,_0x2d14d0)=>{const _0x16d2c1={_0x1a0f91:0x388,_0x1cf388:0x460,_0x5eff89:0x409,_0x9e173e:0x3e7,_0x53e81c:0x418,_0x3816c7:0x3da,_0x460298:0x149,_0x242764:0xd9,_0x462c98:0x3e4,_0x4f0e56:0x3e4,_0xacfaf7:0x38d,_0x52b0ce:0x4cc,_0x234682:0x170,_0x1b57f9:0x120,_0x53aa38:0x1b6,_0x49b0ad:0x16a,_0x31a345:0x86,_0x11815f:0x19,_0x1ce311:0x73,_0x500f8a:0x33a,_0x5b7bf0:0x3c3,_0x566f92:0x448,_0xa7c431:0x44c,_0x4ecc5d:0x3fd,_0x1baa2e:0x499,_0x580126:0x3fd,_0x5936db:0x405,_0x914b6b:0x1ac,_0x4e7273:0x147,_0x59ac98:0x10a,_0x1869ed:0x400,_0x67bc8a:0x488,_0x1e3a67:0xf7,_0x6f331c:0xcd,_0x36ddbf:0x419,_0x54206b:0x32c,_0x44b1e7:0x3cd,_0x3cce18:0x1cb,_0x48a053:0x116,_0x409311:0x4d1,_0x2914a1:0x4b3,_0x1c01d3:0x124,_0x2d77ac:0x13e,_0x3b934a:0xc2,_0x3368a4:0x99,_0x1ab49e:0xa1,_0x414784:0x89,_0xdc6d37:0x3df,_0x33ecc6:0x485,_0x365330:0xe1,_0x2e0fbc:0x128,_0x3d47e2:0x1a9,_0x227129:0x131,_0x3d8414:0x162,_0x5d6cbf:0x16c,_0x5222e3:0x3a0,_0x407665:0x42c,_0x22ae68:0x3f8,_0xa5f2fa:0x3e,_0x58b441:0x14e,_0x3a25d0:0xe1,_0x11b839:0x30,_0xac7f6a:0xf8,_0x165e03:0x191,_0x32d820:0xa1,_0x1319cb:0x451,_0x4d1f48:0x446,_0x178f74:0x383,_0x1a97c0:0x3ca,_0x169ee8:0x113,_0x1ef94c:0x196,_0x228a2d:0x3fe,_0x27232c:0x3dc,_0xbfa237:0x6b,_0x5d5491:0x13a,_0x39f268:0x3cb,_0x5a6600:0x3c2,_0x325f54:0xe1,_0x5e8f01:0x33f,_0x7593be:0x43e,_0x21cd75:0xc5,_0x43ddbd:0x88,_0x25d0d4:0xdd,_0x381e60:0x157,_0x115d24:0xc7,_0x27dd6c:0x3b1,_0x8f89f3:0x466,_0x1d9fc1:0x35a,_0x52203b:0x41d,_0x3f813d:0x3fe,_0x282577:0x1ec,_0xb549ee:0x176,_0x565a61:0x146,_0x45f55e:0x1d5,_0x4189dc:0x114,_0x27ba83:0x32c,_0x467b77:0x3c3,_0xa25c32:0x124,_0x1e4689:0x1c9,_0x624506:0x465,_0x2b9fa4:0x1c3,_0x39452b:0xa9,_0x29df3e:0x40f,_0x202337:0xb8,_0x459d7d:0xa5,_0x132d67:0x44,_0xbd11ba:0xaf,_0x5550f5:0x94,_0x2a482c:0xd5,_0x529098:0x42e,_0x4fdbff:0x433,_0x1aae04:0x1c5,_0x47a7d5:0x1dd,_0x519bea:0x16a,_0x3e5f32:0x5f,_0x362915:0x188,_0x6511b9:0x449,_0x28554d:0x4da,_0x4b6b20:0x49d,_0x345572:0x418,_0x22add2:0x49f,_0x19e4a1:0x3d3,_0x3c9bd3:0x33f,_0xc99268:0x4a0,_0x4bfea2:0x444,_0x5b3647:0x4d8,_0x421246:0x3ef,_0x3bd75c:0x430,_0x3e8125:0x385,_0x2e6b0c:0x331,_0x1d0cbf:0x100,_0x45987e:0x1ac,_0x32a1f2:0x24e,_0x5edb70:0x17d,_0x324ae1:0x208,_0x32c42f:0x171,_0x3a0ade:0x479,_0x212fe7:0x4f4,_0x104179:0x552,_0x151486:0x352,_0x465d58:0x475,_0x338014:0x468,_0x33df76:0x46b,_0x4de350:0xc4,_0x5edc89:0x3b0,_0x533dbe:0x40a,_0x5d11db:0x49d,_0x2b03af:0x431,_0x2b3767:0x3a5,_0x4d5f03:0x438,_0x235c27:0x43c,_0x5aa902:0xa,_0x8908ec:0x3,_0x2a7264:0x139,_0x191e08:0x91,_0x394db3:0x3c,_0x5cd88c:0x3af,_0x29187d:0x2,_0x20a456:0x95,_0x58d42c:0xa0,_0x56ca5e:0x1a8,_0x133017:0x1cb,_0x27a2e7:0x1a2,_0x116622:0x39d,_0x1ca199:0x420,_0x4621aa:0x408,_0x5c4005:0x3cf,_0x26b262:0x338,_0x3dc713:0x99,_0x784487:0x1a4,_0x234d49:0xaa,_0x4b4a16:0x106,_0x879a27:0x1f1,_0x42e8eb:0x17f,_0x37d651:0x1f3,_0x57c0d8:0x51f,_0x114585:0x46d,_0x446e33:0x45f,_0x3272a3:0x4be,_0x6a59e9:0x410,_0x1c3c0a:0x423,_0x4de142:0xf7,_0x482000:0xa2,_0x2f7d2d:0x3fc,_0x56e9fb:0x369,_0x161a55:0x3bc,_0x32d8a0:0x160,_0x342e5e:0x1b1,_0x5ef6cc:0x246,_0x4ffc07:0x169,_0x5e4e72:0x245,_0x100fa8:0x182,_0x14f849:0x3d2,_0x4b719b:0xe0,_0x263894:0x85,_0x700bfd:0x72,_0x334e53:0x117,_0x56f22d:0xa0,_0x2f2f42:0x45a,_0x22fa9e:0x4c4,_0x2a62f4:0x460,_0x4a99f5:0x4de,_0x4bd1fd:0x4da,_0x27f956:0x159,_0x3ff1e3:0x464,_0xe56d63:0x3a3,_0x1eccc3:0x33e,_0x460246:0x355,_0x4ebfce:0x3d6,_0x4a0ab8:0x3f0,_0x1f1aec:0x3ba,_0x4dc4f5:0x3b6,_0x257f70:0x4c2,_0x1e6aa4:0x42d,_0x126d94:0x3c5,_0x4c1e7b:0x38a,_0x4ff26e:0x150,_0x572021:0x223,_0xca2053:0x163,_0x254012:0x13b,_0xcf3125:0x10e,_0xde11ea:0xa2,_0x546d9d:0x463,_0x1f23ae:0x459,_0x373465:0x3f0,_0x508454:0x518,_0x72b2ff:0x4cd,_0x3d10d5:0x523,_0x38ba70:0x18b,_0x3f2715:0x10c,_0x2202ac:0x347,_0x3ddec3:0x46d,_0x591220:0x46a,_0xd015c6:0xa2,_0x76968c:0x82,_0x3e4935:0xab,_0x3e3586:0xcf,_0x20f8f2:0x13d,_0x4448b7:0x43,_0x4c5c6f:0x114,_0x35effb:0x4fa,_0x59b8dc:0x496,_0xe0674e:0x9d,_0x44eb09:0xd4,_0x3553aa:0x136,_0x3d64d8:0x39,_0x27860e:0xa0,_0x1ed92d:0x3c0,_0x2ee994:0x38c,_0x5230e6:0xbf,_0x2a4427:0xa0,_0x527512:0x11f,_0x296ad6:0x1ae,_0x4b5599:0x3c1,_0x256a25:0x3cc,_0x51233c:0x430,_0x224d1e:0x531,_0x1a45ac:0x496,_0x1fdf23:0x112,_0x2fd8c6:0x394,_0x43e7bc:0x3dc,_0x47b2fd:0x39c,_0x1f9f01:0x3fb,_0x1428f9:0x42f,_0xac87ed:0x4c3,_0x4913ce:0x4e2,_0x335f84:0x441,_0x4531cf:0x3f1,_0x495170:0x417,_0x5e7d9f:0x3fe,_0x394374:0x91,_0x34d8bf:0x36a,_0x477be0:0x3dd,_0x2485fe:0x3af,_0x432c95:0x41,_0x5ae576:0x405,_0x2fd114:0x39d,_0x1207c8:0x391,_0x1d265a:0x9,_0x1ebe68:0xc6,_0x2534a9:0x4a2,_0x1522d9:0x41a,_0x4d8f08:0x1bd,_0x499863:0x155,_0x5440e4:0x15e,_0x3e0fe8:0x474,_0x33fd8e:0x441,_0x34c4ed:0xde,_0x5c9ed4:0x37,_0x4f50ee:0x4d5,_0x145e5a:0xc3,_0x56c113:0x1d9,_0x16243a:0x3ed,_0x25b74f:0x4c8,_0x1f9fa7:0x175,_0x338aec:0x70,_0x53ff44:0x126,_0xbb1a6f:0x111,_0x5e622c:0x427,_0x4f9cf0:0x42c,_0x271c07:0x44c},_0x1e69aa={_0x352640:0x1c5,_0x41a33c:0xad,_0x5f4c3e:0x276},_0x3ae0a6={_0x207816:0x1d8,_0x5683cc:0x5e4,_0x200b63:0x172};function _0x2d579e(_0x28f5e6,_0x4ca2bb,_0x3590be,_0x5f704){return _0x587fca(_0x28f5e6-_0x3ae0a6._0x207816,_0x5f704-_0x3ae0a6._0x5683cc,_0x4ca2bb,_0x5f704-_0x3ae0a6._0x200b63);}const _0xe568e0={'qDBvI':_0x2d579e(_0x16d2c1._0x1a0f91,_0x16d2c1._0x1cf388,_0x16d2c1._0x5eff89,_0x16d2c1._0x9e173e),'TOBma':_0x2d579e(0x3cf,_0x16d2c1._0x53e81c,_0x16d2c1._0x3816c7,0x416)+_0x5d1cd9(0x116,0xa6,_0x16d2c1._0x460298,_0x16d2c1._0x242764)+_0x2d579e(0x3ed,_0x16d2c1._0x462c98,_0x16d2c1._0x4f0e56,_0x16d2c1._0xacfaf7)+_0x2d579e(0x3f1,0x4c4,_0x16d2c1._0x52b0ce,0x467)+'ed','fMfip':_0x5d1cd9(_0x16d2c1._0x234682,_0x16d2c1._0x1b57f9,0x135,_0x16d2c1._0x53aa38)+_0x5d1cd9(_0x16d2c1._0x49b0ad,0xd9,0x13d,0x6c)+_0x5d1cd9(0xd1,_0x16d2c1._0x31a345,0x2f,-_0x16d2c1._0x11815f),'RUoJE':function(_0x122157,_0x4a3536){return _0x122157===_0x4a3536;},'iphfX':_0x5d1cd9(_0x16d2c1._0x1ce311,0xa1,0x45,0x7f),'xGGMH':_0x2d579e(_0x16d2c1._0x500f8a,0x3df,0x403,_0x16d2c1._0x5b7bf0)+'t','Rqdpv':'Request\x20bo'+'dy\x20must\x20in'+_0x2d579e(_0x16d2c1._0x566f92,0x491,_0x16d2c1._0xa7c431,_0x16d2c1._0x4ecc5d)+'ectives\x22\x20a'+'rray\x20with\x20'+'at\x20least\x20o'+_0x2d579e(0x3d3,_0x16d2c1._0x1baa2e,_0x16d2c1._0x580126,_0x16d2c1._0x5936db),'zYQve':function(_0x24e9ad,_0x278036){return _0x24e9ad!==_0x278036;},'QAuyQ':function(_0x1e72e0,_0x435783){return _0x1e72e0===_0x435783;},'YCnkq':function(_0x5329bd,_0x51239c){return _0x5329bd===_0x51239c;},'zmrUk':_0x5d1cd9(_0x16d2c1._0x914b6b,_0x16d2c1._0x4e7273,0xc7,_0x16d2c1._0x59ac98),'YpRCL':function(_0xcbdb97,_0x1891bb){return _0xcbdb97<_0x1891bb;},'TDcsi':function(_0x1f9e04){return _0x1f9e04();},'xtRPM':function(_0x359613,_0xb51f38){return _0x359613+_0xb51f38;},'JbeTw':function(_0x5a01f5,_0x151fde){return _0x5a01f5*_0x151fde;},'JfvVJ':_0x2d579e(_0x16d2c1._0x1869ed,0x40e,0x4d9,_0x16d2c1._0x67bc8a),'kYObZ':_0x5d1cd9(0x1a4,0x101,0x19d,0x77),'JjwJw':function(_0x43c60a,_0x1c38fd,_0x38fc32){return _0x43c60a(_0x1c38fd,_0x38fc32);},'gkRZH':_0x5d1cd9(0x152,_0x16d2c1._0x1e3a67,0x17b,_0x16d2c1._0x6f331c),'CKGmz':'output','LXZRW':'task-instr'+'uctions.md','UsGzW':_0x2d579e(_0x16d2c1._0x36ddbf,0x41e,_0x16d2c1._0x54206b,_0x16d2c1._0x44b1e7),'wXSVF':_0x5d1cd9(_0x16d2c1._0x3cce18,0x198,0x22b,_0x16d2c1._0x48a053),'lVtfg':_0x2d579e(_0x16d2c1._0x409311,0x500,_0x16d2c1._0x2914a1,0x4cf)+_0x5d1cd9(_0x16d2c1._0x1c01d3,_0x16d2c1._0x2d77ac,0x1be,_0x16d2c1._0x3b934a)+_0x5d1cd9(0xac,_0x16d2c1._0x3368a4,_0x16d2c1._0x1ab49e,_0x16d2c1._0x414784)},{parentObjective:_0x3c7063,callingTask:_0x469555}=_0x323509,{objectives:_0xf9960a}=_0x323509[_0x2d579e(_0x16d2c1._0xdc6d37,_0x16d2c1._0x33ecc6,0x410,0x464)];if(!_0xf9960a||!Array[_0x5d1cd9(_0x16d2c1._0x365330,_0x16d2c1._0x2e0fbc,_0x16d2c1._0x3d47e2,0x1a3)](_0xf9960a)||_0xe568e0[_0x5d1cd9(_0x16d2c1._0x227129,0xcb,_0x16d2c1._0x3d8414,_0x16d2c1._0x5d6cbf)](_0xf9960a[_0x2d579e(_0x16d2c1._0x5222e3,_0x16d2c1._0x407665,0x404,_0x16d2c1._0x22ae68)],0x193*-0x9+0x6d3*0x2+0x85)){if(_0xe568e0[_0x5d1cd9(_0x16d2c1._0xa5f2fa,0xcb,_0x16d2c1._0x58b441,0x10f)](_0x5d1cd9(_0x16d2c1._0x3a25d0,_0x16d2c1._0x1ab49e,_0x16d2c1._0x11b839,_0x16d2c1._0xac7f6a),_0xe568e0[_0x5d1cd9(0x54,0xf1,_0x16d2c1._0x165e03,_0x16d2c1._0x32d820)])){const _0x3a40d3={};return _0x3a40d3['error']=_0xe568e0['xGGMH'],_0x3a40d3['message']=_0xe568e0[_0x2d579e(_0x16d2c1._0x1319cb,_0x16d2c1._0x4d1f48,_0x16d2c1._0x178f74,_0x16d2c1._0x1a97c0)],_0x2d14d0[_0x5d1cd9(_0x16d2c1._0x169ee8,0x112,_0x16d2c1._0x1ef94c,0x89)](-0x1*0x11+0x1974+-0x17d3)[_0x2d579e(_0x16d2c1._0x228a2d,0x3f3,0x369,_0x16d2c1._0x27232c)](_0x3a40d3);}else{const _0x58912f={};_0x58912f[_0x5d1cd9(_0x16d2c1._0xbfa237,0xcf,_0x16d2c1._0x234682,_0x16d2c1._0x5d5491)+'d']=_0x10ab70,_0x58912f[_0x2d579e(_0x16d2c1._0x39f268,0x433,_0x16d2c1._0x5a6600,0x3ba)]=_0x33a863[_0x5d1cd9(0x213,0x17c,0x15d,_0x16d2c1._0x325f54)],_0x1bc638[_0x2d579e(0x342,0x42f,_0x16d2c1._0x5e8f01,0x3ba)](_0x2d579e(_0x16d2c1._0x7593be,0x416,0x3e7,0x433)+'delete\x20sub'+_0x5d1cd9(_0x16d2c1._0x21cd75,_0x16d2c1._0x43ddbd,0xf7,0x2b)+_0x5d1cd9(_0x16d2c1._0x25d0d4,_0x16d2c1._0x381e60,0x1c0,_0x16d2c1._0x115d24),_0x58912f);}}for(let _0x5714c9=-0x1fe5+-0x59d+-0x1*-0x2582;_0x5714c9<_0xf9960a[_0x2d579e(0x393,0x3c1,_0x16d2c1._0x27dd6c,0x3f8)];_0x5714c9++){const _0x16db7e=_0xf9960a[_0x5714c9];if(!_0x16db7e[_0x2d579e(_0x16d2c1._0x8f89f3,_0x16d2c1._0x1d9fc1,_0x16d2c1._0x52203b,_0x16d2c1._0x3f813d)]||_0xe568e0[_0x5d1cd9(_0x16d2c1._0x282577,0x154,_0x16d2c1._0xb549ee,_0x16d2c1._0x565a61)](typeof _0x16db7e[_0x5d1cd9(0xb1,0xe4,0x12d,0x100)],_0x5d1cd9(_0x16d2c1._0x45f55e,0x16f,0x20a,_0x16d2c1._0x4189dc))){const _0x421cd4={};return _0x421cd4['error']=_0x2d579e(0x3b6,0x387,_0x16d2c1._0x27ba83,_0x16d2c1._0x467b77)+'t',_0x421cd4['message']='Objective\x20'+_0x5d1cd9(0xc8,_0x16d2c1._0xa25c32,_0x16d2c1._0x1e4689,0xa8)+_0x5714c9+(_0x2d579e(0x3fa,0x40f,_0x16d2c1._0x624506,0x48d)+_0x5d1cd9(_0x16d2c1._0x2b9fa4,0x130,_0x16d2c1._0x39452b,0x161)+_0x2d579e(_0x16d2c1._0x29df3e,0x4cf,0x45b,0x489)),_0x2d14d0[_0x5d1cd9(_0x16d2c1._0x202337,0x112,0x16f,_0x16d2c1._0x459d7d)](0x16e8+-0x400*-0x6+0x16ac*-0x2)[_0x5d1cd9(_0x16d2c1._0x132d67,0xc2,0x12a,_0x16d2c1._0xbd11ba)](_0x421cd4);}}const _0x46eb92={};_0x46eb92['taskId']=_0x469555['taskId'],_0x46eb92[_0x5d1cd9(_0x16d2c1._0x5550f5,_0x16d2c1._0x2a482c,0x9e,0xbf)+_0x2d579e(_0x16d2c1._0x529098,0x450,_0x16d2c1._0x4fdbff,_0x16d2c1._0x39f268)]=_0x3c7063['taskId'],_0x46eb92[_0x5d1cd9(_0x16d2c1._0x1aae04,0x197,_0x16d2c1._0x47a7d5,_0x16d2c1._0x519bea)]=_0xf9960a['length'],logger['info'](_0x5d1cd9(0x92,0xe7,_0x16d2c1._0x3e5f32,_0x16d2c1._0x362915)+'ing\x20sub-ob'+_0x2d579e(_0x16d2c1._0x6511b9,0x456,_0x16d2c1._0x28554d,0x44b),_0x46eb92);const _0xa22c08=new Date()[_0x2d579e(_0x16d2c1._0x4b6b20,0x40a,_0x16d2c1._0x345572,_0x16d2c1._0x22add2)+'g'](),_0x520dd2=[];let _0x235a01=-0x18cc+0x5c*-0x50+0xd63*0x4;for(const [,_0x2ba484]of tasks[_0x2d579e(_0x16d2c1._0x19e4a1,0x320,_0x16d2c1._0x3c9bd3,0x3c2)]()){_0xe568e0[_0x2d579e(_0x16d2c1._0xc99268,0x502,_0x16d2c1._0x4bfea2,_0x16d2c1._0x5b3647)](_0x2ba484[_0x2d579e(_0x16d2c1._0x1a97c0,0x367,0x3aa,_0x16d2c1._0x421246)+_0x2d579e(_0x16d2c1._0x3bd75c,_0x16d2c1._0x3e8125,_0x16d2c1._0x2e6b0c,0x3cb)],_0x3c7063['taskId'])&&_0xe568e0[_0x5d1cd9(0x140,0xdf,0xb1,0x16f)](typeof _0x2ba484[_0x5d1cd9(0x139,_0x16d2c1._0x1d0cbf,0x13f,_0x16d2c1._0xac7f6a)],_0xe568e0[_0x5d1cd9(0x172,_0x16d2c1._0x45987e,0x201,_0x16d2c1._0x32a1f2)])&&(_0x235a01=Math[_0x5d1cd9(0x1eb,_0x16d2c1._0x5edb70,_0x16d2c1._0x324ae1,_0x16d2c1._0x32c42f)](_0x235a01,_0x2ba484[_0x2d579e(_0x16d2c1._0x3a0ade,0x3ee,0x378,0x41a)]));}for(let _0x217a3c=-0x1870+-0x243a*-0x1+-0xbca;_0xe568e0[_0x2d579e(0x554,_0x16d2c1._0x212fe7,_0x16d2c1._0x104179,0x4d0)](_0x217a3c,_0xf9960a[_0x2d579e(_0x16d2c1._0x151486,0x425,_0x16d2c1._0x465d58,_0x16d2c1._0x22ae68)]);_0x217a3c++){const _0x517cf6=_0xf9960a[_0x217a3c],_0xa186de=_0xe568e0[_0x2d579e(0x428,0x4a6,_0x16d2c1._0x338014,_0x16d2c1._0x33df76)](generateObjectiveId),_0x352a83=_0xe568e0['xtRPM'](_0x235a01,_0xe568e0[_0x5d1cd9(0xc2,_0x16d2c1._0x4de350,0x168,0x156)](_0xe568e0['xtRPM'](_0x217a3c,0x2581+-0x51*0x47+-0xf09*0x1),0x25e0+0x3*0x566+-0x322a*0x1)),_0xeffa10={};_0xeffa10[_0x2d579e(0x4a7,_0x16d2c1._0x5edc89,_0x16d2c1._0x533dbe,0x441)]=_0xa186de,_0xeffa10[_0x2d579e(0x46f,_0x16d2c1._0x5d11db,_0x16d2c1._0x2b03af,0x3fe)]=_0x517cf6[_0x2d579e(0x44a,_0x16d2c1._0x2b3767,_0x16d2c1._0x4d5f03,0x3fe)],_0xeffa10['status']=_0xe568e0['JfvVJ'],_0xeffa10[_0x2d579e(_0x16d2c1._0x27232c,_0x16d2c1._0x235c27,0x45d,0x3f7)+'t']=_0x3c7063['environmen'+'t'],_0xeffa10[_0x5d1cd9(0x138,0x91,_0x16d2c1._0x5aa902,-_0x16d2c1._0x8908ec)]=_0x3c7063[_0x5d1cd9(_0x16d2c1._0x2a7264,_0x16d2c1._0x191e08,0x116,_0x16d2c1._0x394db3)]||'manual',_0xeffa10[_0x2d579e(_0x16d2c1._0x6a59e9,0x3c4,_0x16d2c1._0x1c3c0a,_0x16d2c1._0x5cd88c)]={..._0x3c7063[_0x5d1cd9(_0x16d2c1._0x29187d,_0x16d2c1._0x20a456,_0x16d2c1._0x58d42c,0xbf)]||{}},_0xeffa10[_0x5d1cd9(0xff,_0x16d2c1._0x56ca5e,_0x16d2c1._0x133017,0x14f)]=_0x3c7063['branches']||{},_0xeffa10[_0x5d1cd9(_0x16d2c1._0x27a2e7,0x104,0x133,0x151)]=_0x3c7063[_0x2d579e(0x3dd,_0x16d2c1._0x116622,0x4b5,0x41e)]||[],_0xeffa10[_0x2d579e(0x54a,_0x16d2c1._0x1ca199,_0x16d2c1._0x4621aa,0x4ab)]=_0xa22c08,_0xeffa10['updatedAt']=_0xa22c08,_0xeffa10[_0x2d579e(_0x16d2c1._0x5c4005,0x488,0x456,_0x16d2c1._0x421246)+_0x2d579e(_0x16d2c1._0x26b262,0x469,0x41c,0x3cb)]=_0x3c7063[_0x5d1cd9(_0x16d2c1._0x3dc713,0x127,_0x16d2c1._0x784487,_0x16d2c1._0x234d49)],_0xeffa10['sortOrder']=_0x352a83,_0xeffa10[_0x5d1cd9(0x141,_0x16d2c1._0x4b4a16,0x17b,0xde)+_0x5d1cd9(_0x16d2c1._0x879a27,_0x16d2c1._0x42e8eb,_0x16d2c1._0x37d651,0x1fa)]=_0x469555['taskId'],_0xeffa10[_0x5d1cd9(0x215,0x1c2,0x1f7,0x208)]=_0x3c7063['createdBy']||_0x469555['createdBy'],_0xeffa10[_0x2d579e(0x436,0x478,_0x16d2c1._0x57c0d8,0x4be)]=_0x3c7063[_0x2d579e(_0x16d2c1._0x114585,_0x16d2c1._0x446e33,0x507,_0x16d2c1._0x3272a3)]||![],_0xeffa10[_0x2d579e(_0x16d2c1._0x6a59e9,0x3c4,_0x16d2c1._0x1c3c0a,_0x16d2c1._0x5cd88c)][_0x5d1cd9(_0x16d2c1._0x4de142,_0x16d2c1._0x482000,0x3a,_0x16d2c1._0x8908ec)+'ns']=_0x517cf6[_0x2d579e(_0x16d2c1._0x2f7d2d,0x3bb,_0x16d2c1._0x56e9fb,_0x16d2c1._0x161a55)+'ns']||'';const _0x1df76e=_0xeffa10;tasks[_0x5d1cd9(_0x16d2c1._0x32d8a0,_0x16d2c1._0x342e5e,0x1e1,_0x16d2c1._0x5ef6cc)](_0xa186de,_0x1df76e);try{if(_0xe568e0[_0x5d1cd9(_0x16d2c1._0x4ffc07,0x1be,_0x16d2c1._0x5e4e72,_0x16d2c1._0x100fa8)](_0x2d579e(0x4c2,_0x16d2c1._0x14f849,0x449,0x45a),_0xe568e0[_0x5d1cd9(0xd8,_0x16d2c1._0x4b719b,_0x16d2c1._0x263894,_0x16d2c1._0x700bfd)])){const _0x4ff8ea={};return _0x4ff8ea[_0x5d1cd9(_0x16d2c1._0x334e53,_0x16d2c1._0x56f22d,0x93,_0x16d2c1._0xbd11ba)]=_0xe568e0[_0x2d579e(_0x16d2c1._0x2f2f42,_0x16d2c1._0x22fa9e,_0x16d2c1._0x14f849,_0x16d2c1._0x2a62f4)],_0x4ff8ea[_0x2d579e(0x451,_0x16d2c1._0x4a99f5,_0x16d2c1._0x4bd1fd,0x496)]='Sub-object'+_0x5d1cd9(0x30,0xd4,0x3a,_0x16d2c1._0x27f956)+'und',_0x26a734[_0x2d579e(_0x16d2c1._0x3ff1e3,0x48e,_0x16d2c1._0xe56d63,0x42c)](0x1*0xb19+0x22d1+0x32*-0xe3)[_0x5d1cd9(0x93,0xc2,0x111,0x83)](_0x4ff8ea);}else{const _0x16145d=await _0xe568e0[_0x2d579e(0x423,_0x16d2c1._0x1eccc3,_0x16d2c1._0x460246,0x3da)](createObjectiveDirectory,_0xa186de,_0xa22c08),_0x5ba6d2=_0x29d3e0[_0x2d579e(0x3b3,0x456,_0x16d2c1._0x4ebfce,_0x16d2c1._0x4a0ab8)](_0x16145d,_0x2d579e(_0x16d2c1._0x1f1aec,_0x16d2c1._0x4dc4f5,_0x16d2c1._0x257f70,_0x16d2c1._0x1e6aa4)+_0x2d579e(_0x16d2c1._0x126d94,0x3f0,_0x16d2c1._0x4c1e7b,0x418));await _0x46fc36[_0x5d1cd9(_0x16d2c1._0x42e8eb,_0x16d2c1._0x4ff26e,_0x16d2c1._0x1c01d3,0xaf)](_0x5ba6d2,JSON[_0x5d1cd9(_0x16d2c1._0x572021,_0x16d2c1._0x3d47e2,_0x16d2c1._0x37d651,0x240)](_0x1df76e,null,0xa9a+0xfd8+-0x1a70),_0xe568e0[_0x5d1cd9(_0x16d2c1._0xca2053,_0x16d2c1._0x254012,_0x16d2c1._0xcf3125,0x161)]);if(_0x517cf6[_0x5d1cd9(_0x16d2c1._0x4b4a16,_0x16d2c1._0xde11ea,0xcd,0x5e)+'ns']){const _0x2fd688=_0x29d3e0[_0x2d579e(0x3c8,_0x16d2c1._0x546d9d,_0x16d2c1._0x1f23ae,_0x16d2c1._0x373465)](_0x16145d,_0xe568e0[_0x2d579e(_0x16d2c1._0x508454,_0x16d2c1._0x72b2ff,_0x16d2c1._0x3d10d5,0x47f)]),_0x34c822={};_0x34c822[_0x2d579e(0x43e,0x47b,0x478,0x469)]=!![],await _0x46fc36[_0x5d1cd9(0x13c,_0x16d2c1._0x38ba70,0x105,_0x16d2c1._0x3f2715)](_0x2fd688,_0x34c822);const _0x4a652b=_0x29d3e0[_0x2d579e(_0x16d2c1._0x2202ac,_0x16d2c1._0x3ddec3,_0x16d2c1._0x1a97c0,_0x16d2c1._0x373465)](_0x2fd688,_0xe568e0['LXZRW']);await _0x46fc36[_0x2d579e(0x50b,0x483,0x436,_0x16d2c1._0x591220)](_0x4a652b,_0x517cf6[_0x5d1cd9(0x84,_0x16d2c1._0xd015c6,_0x16d2c1._0x76968c,_0x16d2c1._0x3e4935)+'ns'],_0xe568e0['gkRZH']);}}}catch(_0x348d2b){const _0x16ca5d={};_0x16ca5d[_0x5d1cd9(0xd6,_0x16d2c1._0x3e3586,_0x16d2c1._0x20f8f2,0x48)+'d']=_0xa186de,_0x16ca5d[_0x5d1cd9(_0x16d2c1._0x4448b7,_0x16d2c1._0x56f22d,_0x16d2c1._0x4c5c6f,0xcf)]=_0x348d2b[_0x2d579e(0x408,_0x16d2c1._0x35effb,0x4d9,_0x16d2c1._0x59b8dc)],logger[_0x5d1cd9(0xff,_0x16d2c1._0x58d42c,_0x16d2c1._0xe0674e,0x6a)]('Failed\x20to\x20'+'persist\x20su'+'b-objectiv'+'e',_0x16ca5d);}if(broadcastTaskUpdate){if(_0xe568e0['UsGzW']!==_0x5d1cd9(_0x16d2c1._0x44eb09,0xb3,_0x16d2c1._0x3553aa,0xad)){_0x26f755[_0x5d1cd9(_0x16d2c1._0x3d64d8,_0x16d2c1._0x27860e,0x118,0xe3)](_0xe568e0[_0x2d579e(_0x16d2c1._0x1ed92d,0x398,_0x16d2c1._0x2ee994,_0x16d2c1._0x5eff89)]);const _0x40e174={};return _0x40e174[_0x5d1cd9(_0x16d2c1._0x5230e6,_0x16d2c1._0x2a4427,0x105,_0x16d2c1._0x527512)]=_0x5d1cd9(0xf3,_0x16d2c1._0x32d8a0,_0x16d2c1._0x296ad6,0x12f)+_0x2d579e(_0x16d2c1._0x4b5599,_0x16d2c1._0x256a25,_0x16d2c1._0x51233c,0x3d5)+'r',_0x40e174[_0x2d579e(_0x16d2c1._0x224d1e,0x539,_0x16d2c1._0x2914a1,_0x16d2c1._0x1a45ac)]=_0xe568e0['fMfip'],_0x4d7dfb[_0x5d1cd9(0x147,_0x16d2c1._0x1fdf23,0x16b,0x9c)](-0x2*-0x130d+0x1*-0x9e3+0x51*-0x53)[_0x2d579e(_0x16d2c1._0x2fd8c6,0x37e,_0x16d2c1._0xe56d63,_0x16d2c1._0x43e7bc)](_0x40e174);}else _0xe568e0[_0x2d579e(0x3a9,_0x16d2c1._0x2202ac,0x401,0x3da)](broadcastTaskUpdate,_0xe568e0[_0x2d579e(_0x16d2c1._0x47b2fd,_0x16d2c1._0x1f9f01,_0x16d2c1._0x1428f9,0x444)],_0x1df76e);}const _0x3562d2={};_0x3562d2[_0x2d579e(_0x16d2c1._0xac87ed,_0x16d2c1._0x4913ce,0x402,_0x16d2c1._0x335f84)]=_0xa186de,_0x3562d2['name']=_0x1df76e[_0x2d579e(_0x16d2c1._0x4531cf,0x3f9,_0x16d2c1._0x495170,_0x16d2c1._0x5e7d9f)],_0x3562d2[_0x5d1cd9(0x112,_0x16d2c1._0x482000,_0x16d2c1._0xac7f6a,_0x16d2c1._0x394374)+'ns']=_0x1df76e[_0x2d579e(0x321,_0x16d2c1._0x34d8bf,_0x16d2c1._0x477be0,_0x16d2c1._0x2485fe)]?.[_0x5d1cd9(0x10,0xa2,_0x16d2c1._0x432c95,0xe7)+'ns']||'',_0x3562d2[_0x2d579e(_0x16d2c1._0x5ae576,_0x16d2c1._0x2fd114,_0x16d2c1._0x1207c8,_0x16d2c1._0x421246)+'ctiveId']=_0x1df76e['parentObje'+_0x5d1cd9(_0x16d2c1._0x1d265a,0xb1,0x81,_0x16d2c1._0x1ebe68)],_0x3562d2[_0x2d579e(_0x16d2c1._0x2534a9,0x3c0,0x43b,_0x16d2c1._0x1522d9)]=_0x1df76e['sortOrder'],_0x520dd2['push'](_0x3562d2);}logger['info'](_0xe568e0[_0x5d1cd9(0x252,_0x16d2c1._0x4d8f08,_0x16d2c1._0x499863,_0x16d2c1._0x5440e4)],{'taskId':_0x469555['taskId'],'parentObjectiveId':_0x3c7063[_0x2d579e(_0x16d2c1._0x3e0fe8,0x435,0x450,_0x16d2c1._0x33fd8e)],'createdCount':_0x520dd2[_0x5d1cd9(0x141,_0x16d2c1._0x34c4ed,_0x16d2c1._0x4b719b,_0x16d2c1._0x5c9ed4)],'objectiveIds':_0x520dd2[_0x2d579e(0x4be,_0x16d2c1._0x4f50ee,0x3e5,0x472)](_0x30b170=>_0x30b170['taskId'])});function _0x5d1cd9(_0x48ff50,_0x5d143c,_0x5afc76,_0x6ac0ef){return _0x192b07(_0x48ff50-_0x1e69aa._0x352640,_0x5afc76,_0x5afc76-_0x1e69aa._0x41a33c,_0x5d143c-_0x1e69aa._0x5f4c3e);}const _0x190222={};_0x190222[_0x5d1cd9(_0x16d2c1._0x145e5a,_0x16d2c1._0x5d5491,_0x16d2c1._0x56c113,0xab)]=!![],_0x190222[_0x2d579e(_0x16d2c1._0x44b1e7,_0x16d2c1._0x16243a,_0x16d2c1._0x25b74f,_0x16d2c1._0x8f89f3)]=_0x520dd2[_0x5d1cd9(0x9b,0xde,_0x16d2c1._0x1f9fa7,_0x16d2c1._0x338aec)],_0x190222[_0x5d1cd9(_0x16d2c1._0x53ff44,_0x16d2c1._0xbb1a6f,_0x16d2c1._0x519bea,0x10e)]=_0x520dd2,_0x2d14d0[_0x2d579e(0x3df,0x456,_0x16d2c1._0x5e622c,_0x16d2c1._0x4f9cf0)](0x1942+0xb86+-0x1*0x23ff)[_0x2d579e(0x3ad,_0x16d2c1._0x271c07,0x349,0x3dc)](_0x190222);}),router[_0x587fca(-0x210,-0x19c,-0x1d4,-0x1d9)](_0x587fca(-0x1c4,-0x21c,-0x296,-0x189),requireTaskAuth,async(_0x3a1947,_0x1f3866)=>{const _0x7e8774={_0x2d50b8:0x14d,_0x48b52e:0x156,_0x3d2c28:0x2ce,_0x52ea6b:0x19b,_0x5e7935:0x1de,_0x140579:0x177,_0x1cba1c:0x269,_0x339383:0x1e2,_0x16cca9:0x21f,_0x5ec5ce:0x2ee,_0x1dfac0:0x286,_0x49cab4:0x20b,_0x2e392d:0x207,_0x4ff7fe:0x25f,_0x55aa11:0x26b,_0x27262a:0x274,_0x5544d7:0x184,_0x174f51:0x211,_0x58cd67:0x281,_0x37b099:0x272,_0x1c7825:0x215,_0x4ed6f3:0x174,_0x401963:0x262,_0x38ead0:0x2be,_0x2455c8:0x273,_0x5aa7aa:0x22b,_0x55bb52:0x29f,_0xbfe34d:0x24d,_0x9a3213:0x27f,_0x3a627c:0x31b,_0x2e0b5b:0x279,_0x21ea48:0x2b9,_0x536fe1:0x294,_0x3bac5f:0x2d0,_0x212ab8:0x253,_0x292b32:0x1f8,_0x498b6a:0x18a,_0x526a02:0x275,_0x5840ad:0x232,_0x273123:0x149,_0x4cdbe4:0x1c4,_0x38d790:0x261,_0x50d142:0x2b1,_0x3e2979:0x24c,_0xa69b5c:0x2b2,_0x6975b5:0x258,_0x551972:0x26c,_0x5ef96c:0x27e,_0xad745e:0x1f0,_0x192c92:0x2e4,_0x3f43b3:0x227,_0x39b004:0x236,_0x465e9b:0x24d,_0x341eba:0x28f,_0x2e0477:0x284,_0x5a10d3:0x22c,_0x15d612:0x1f1,_0x2d8fea:0x259,_0x434e29:0x26a,_0x2643a0:0x1e4,_0x40a4f0:0x29b,_0x3b6394:0x209,_0x136711:0x226,_0x54d48a:0x18f,_0x167190:0x23c,_0x1d3bde:0x242,_0x588fda:0x243,_0x171951:0x22d,_0x1c7f40:0x222,_0x5850c6:0x2ae,_0x589c89:0x1f4,_0x585377:0x212,_0x32727b:0x270,_0xd52328:0x2d5,_0x36ff32:0x364,_0x5aba12:0x2da,_0x2773b8:0x1d3,_0x1c203d:0x210,_0x49db4a:0x1bb,_0x52d706:0x1aa,_0x294a95:0x20d,_0x272742:0x1f9,_0x429145:0x2e8,_0x3181c0:0x260,_0x589e92:0x343,_0x34c995:0x280,_0x2d1fbd:0x285,_0x456bfa:0x2ee,_0x54cd87:0x280,_0x5ca6f7:0x1fa,_0xc51bc2:0x1f8,_0x177931:0x315},_0x43e708={_0x5f0020:0x21,_0x16056f:0xfe},_0x1c891f={_0x1859d0:0xc9,_0x2fe0a6:0x34},_0x1dc9f4={};_0x1dc9f4[_0x46776e(-0x156,-_0x7e8774._0x2d50b8,-0x1e7,-_0x7e8774._0x48b52e)]='Objective\x20'+_0x32c0c6(-0x2af,-0x24c,-0x333,-_0x7e8774._0x3d2c28)+'\x20request\x20w'+_0x32c0c6(-_0x7e8774._0x52ea6b,-0x1ff,-0x1d7,-0x209)+_0x32c0c6(-0x2bd,-0x29d,-_0x7e8774._0x5e7935,-0x215),_0x1dc9f4['HlIHo']=_0x32c0c6(-0x1ad,-_0x7e8774._0x140579,-_0x7e8774._0x1cba1c,-_0x7e8774._0x339383)+'ed',_0x1dc9f4[_0x32c0c6(-_0x7e8774._0x16cca9,-0x32b,-_0x7e8774._0x5ec5ce,-_0x7e8774._0x1dfac0)]=_0x32c0c6(-0x2e7,-_0x7e8774._0x49cab4,-_0x7e8774._0x2e392d,-_0x7e8774._0x4ff7fe)+'sk\x20ID',_0x1dc9f4['qfimf']='nSQkr',_0x1dc9f4[_0x32c0c6(-0x20f,-_0x7e8774._0x55aa11,-_0x7e8774._0x27262a,-0x21b)]=_0x46776e(-_0x7e8774._0x5544d7,-_0x7e8774._0x174f51,-0x1f3,-0x198),_0x1dc9f4[_0x46776e(-_0x7e8774._0x58cd67,-0x30f,-_0x7e8774._0x37b099,-_0x7e8774._0x1c7825)]=function(_0x2b1de9,_0x358416){return _0x2b1de9===_0x358416;},_0x1dc9f4['GuqDi']=_0x46776e(-0x149,-_0x7e8774._0x4ed6f3,-0x1e0,-0x139),_0x1dc9f4[_0x46776e(-0x302,-_0x7e8774._0x401963,-_0x7e8774._0x38ead0,-_0x7e8774._0x2455c8)]=function(_0x244ed2,_0x23e480){return _0x244ed2!==_0x23e480;};const _0x39391e=_0x1dc9f4,{parentObjective:_0x142305,callingTask:_0x73d28d}=_0x3a1947,_0x5213c2=_0x142305[_0x32c0c6(-_0x7e8774._0x5aa7aa,-0x2c8,-0x265,-_0x7e8774._0x55bb52)+'ctiveId'];if(!_0x5213c2){if(_0x39391e[_0x46776e(-0x1ce,-_0x7e8774._0xbfe34d,-0x23e,-_0x7e8774._0x9a3213)]!==_0x39391e['kYuZG']){const _0x4e0f7f={};return _0x4e0f7f['siblings']=[],_0x4e0f7f[_0x46776e(-0x227,-_0x7e8774._0x3a627c,-_0x7e8774._0x2e0b5b,-_0x7e8774._0x21ea48)+_0x32c0c6(-_0x7e8774._0x536fe1,-0x21a,-_0x7e8774._0x3bac5f,-0x2c3)]=_0x142305[_0x46776e(-0x28f,-0x182,-0x227,-_0x7e8774._0x212ab8)],_0x1f3866[_0x46776e(-_0x7e8774._0x1cba1c,-0x23f,-0x28c,-_0x7e8774._0x292b32)](_0x4e0f7f);}else{const _0x621dbb={};_0x621dbb[_0x46776e(-_0x7e8774._0x498b6a,-0x25b,-0x227,-_0x7e8774._0x526a02)]=_0x33e854,_0x5e3dc2[_0x46776e(-0x1b8,-0x1a0,-0x232,-_0x7e8774._0x5840ad)](_0x39391e[_0x46776e(-_0x7e8774._0x273123,-_0x7e8774._0x4cdbe4,-0x1e7,-0x156)],_0x621dbb);const _0xf1f26a={};return _0xf1f26a['error']=_0x39391e[_0x32c0c6(-0x200,-_0x7e8774._0x38d790,-0x2a1,-0x226)],_0xf1f26a['message']=_0x39391e[_0x46776e(-0x1b8,-0x216,-0x260,-0x2d4)],_0x46f467[_0x46776e(-0x1f6,-_0x7e8774._0x50d142,-0x23c,-0x2c6)](0xb7*-0x1+-0x22*0xe0+0x2008)[_0x32c0c6(-0x25b,-0x2bf,-_0x7e8774._0x3e2979,-_0x7e8774._0xa69b5c)](_0xf1f26a);}}const _0x310f61=[];for(const [,_0x2b27c4]of tasks[_0x46776e(-_0x7e8774._0x6975b5,-_0x7e8774._0x551972,-0x2a6,-0x2d0)]()){if(_0x2b27c4['parentObje'+'ctiveId']===_0x5213c2&&_0x39391e[_0x46776e(-0x313,-0x2bf,-0x272,-_0x7e8774._0x5ef96c)](_0x2b27c4[_0x32c0c6(-_0x7e8774._0xad745e,-0x2c9,-_0x7e8774._0x49cab4,-0x262)],_0x39391e['GuqDi'])&&_0x39391e[_0x32c0c6(-0x2a4,-0x28b,-0x370,-_0x7e8774._0x192c92)](_0x2b27c4[_0x46776e(-0x2b8,-0x17f,-_0x7e8774._0x3f43b3,-0x1c0)],_0x142305[_0x32c0c6(-_0x7e8774._0x39b004,-0x257,-0x282,-_0x7e8774._0x465e9b)])){const _0x146283={};_0x146283['taskId']=_0x2b27c4[_0x46776e(-_0x7e8774._0x341eba,-_0x7e8774._0x2e0477,-_0x7e8774._0x3f43b3,-_0x7e8774._0x5a10d3)],_0x146283[_0x32c0c6(-_0x7e8774._0x38d790,-_0x7e8774._0x15d612,-0x201,-0x290)]=_0x2b27c4[_0x46776e(-_0x7e8774._0x2d8fea,-0x230,-_0x7e8774._0x434e29,-0x295)],_0x146283['sortOrder']=_0x2b27c4[_0x46776e(-0x2d8,-_0x7e8774._0x2643a0,-0x24e,-_0x7e8774._0x40a4f0)],_0x146283[_0x32c0c6(-0x1e9,-_0x7e8774._0x3b6394,-_0x7e8774._0x136711,-0x1e3)]=_0x2b27c4[_0x46776e(-_0x7e8774._0x54d48a,-_0x7e8774._0x1c7825,-0x1bd,-_0x7e8774._0x167190)],_0x310f61[_0x46776e(-0x259,-0x18d,-0x234,-_0x7e8774._0x1d3bde)](_0x146283);}}_0x310f61['sort']((_0x19d6aa,_0x2d94bc)=>(_0x19d6aa[_0x46776e(-0x215,-0x250,-0x24e,-0x2c7)]||0x13d*-0x2+-0x1de3+0x205d)-(_0x2d94bc[_0x32c0c6(-0x261,-0x289,-0x2b5,-0x274)]||0x17*-0x59+-0xc5f*-0x1+-0x460));function _0x46776e(_0x36a3df,_0x673315,_0x2d6eac,_0x4968a9){return _0x192b07(_0x36a3df-_0x1c891f._0x1859d0,_0x673315,_0x2d6eac-_0x1c891f._0x2fe0a6,_0x2d6eac- -0xd8);}const _0x5bc507={};_0x5bc507['taskId']=_0x73d28d[_0x46776e(-_0x7e8774._0x588fda,-0x1f3,-_0x7e8774._0x3f43b3,-0x1b7)],_0x5bc507['parentObje'+'ctiveId']=_0x142305['taskId'],_0x5bc507[_0x32c0c6(-_0x7e8774._0x171951,-_0x7e8774._0x1c7f40,-_0x7e8774._0x50d142,-_0x7e8774._0x5850c6)+'nt']=_0x310f61[_0x46776e(-_0x7e8774._0x589c89,-_0x7e8774._0x585377,-_0x7e8774._0x32727b,-0x2c5)];function _0x32c0c6(_0x46b6d7,_0x223938,_0x2b086e,_0xb8cc64){return _0x192b07(_0x46b6d7-0xa0,_0x46b6d7,_0x2b086e-_0x43e708._0x5f0020,_0xb8cc64- -_0x43e708._0x16056f);}logger[_0x32c0c6(-0x319,-_0x7e8774._0xd52328,-_0x7e8774._0x36ff32,-_0x7e8774._0x5aba12)](_0x46776e(-_0x7e8774._0x2773b8,-_0x7e8774._0x1c203d,-0x254,-0x2fa)+_0x46776e(-_0x7e8774._0x49db4a,-_0x7e8774._0x52d706,-0x217,-_0x7e8774._0x294a95)+_0x32c0c6(-_0x7e8774._0x272742,-_0x7e8774._0x429145,-0x2f9,-_0x7e8774._0x3181c0)+'es',_0x5bc507);const _0x6bd012={};_0x6bd012['siblings']=_0x310f61,_0x6bd012[_0x32c0c6(-0x2ab,-_0x7e8774._0x589e92,-_0x7e8774._0x34c995,-0x29f)+'ctiveId']=_0x142305['taskId'],_0x6bd012[_0x46776e(-_0x7e8774._0x2d1fbd,-_0x7e8774._0x456bfa,-_0x7e8774._0x54cd87,-0x1e2)+_0x46776e(-_0x7e8774._0x5ca6f7,-_0x7e8774._0xc51bc2,-_0x7e8774._0x212ab8,-0x1c1)+'Id']=_0x5213c2,_0x1f3866[_0x32c0c6(-0x2b9,-_0x7e8774._0x177931,-0x222,-0x2b2)](_0x6bd012);}),router['get'](_0x192b07(-0x17f,-0x5e,-0x11d,-0xfd),requireTaskAuth,async(_0x5f0ade,_0x246edb)=>{const _0x24c7ef={_0x181195:0xde,_0x332fb4:0x57,_0x911ce8:0x97,_0x35ebc6:0xab,_0x1aaf13:0x357,_0x5e634c:0x3d,_0xf45bad:0x5a,_0x242194:0x39e,_0x5cff30:0x324,_0x224a12:0x3c6,_0x5ccbaf:0x130,_0x34ae51:0x1bd,_0x32ac88:0xde,_0x14ea65:0xa7,_0x362d0c:0x9c,_0x501a67:0x1f,_0x771b66:0x4d,_0x1ad34f:0x97,_0x2f0a70:0xad,_0x53a310:0x47,_0x16c69a:0x72,_0xa83fd6:0x2,_0x297fd6:0x30,_0x58cc80:0xd3,_0x2db75f:0x356,_0x397d5d:0x3b1,_0x30caa7:0xe9,_0xfc4f4c:0x88,_0xc1015c:0x14c,_0x4d948f:0xc3,_0xbef55a:0x308,_0x8e2a87:0x345,_0x3f01f7:0x252,_0x47444a:0x248,_0x21f17d:0x2aa,_0x225cdd:0x2e5,_0x4c3ef1:0x2e0,_0x265e97:0x2f1,_0x87466d:0xcc,_0x4e39a8:0x4d,_0x2553c6:0x43,_0x5f3425:0x3,_0x414cb3:0x178,_0x2f58f1:0x2dd,_0x3b4d50:0x2f8,_0x325e84:0xc7,_0x4789e8:0x16,_0x2fbc97:0x41,_0x3ba983:0x2d7,_0x3115e0:0x2a0,_0x2b6dcd:0x107,_0x19b808:0x96,_0x37ff1f:0x5,_0x2f67b7:0x96,_0x19ddd0:0x334,_0x51c2f8:0x2fd,_0x3d9eac:0x310,_0x5385a9:0x323,_0x5b405e:0x454,_0x598880:0x467,_0x45a7c9:0x35c,_0x219431:0x3c5,_0x34979d:0x41e,_0x34a0fc:0x38c,_0x6a0c35:0x2ee,_0x20ed8f:0x2d6,_0x5a1ac2:0xf3,_0x56fb9f:0xc9,_0x22d037:0x35b,_0x13d573:0x3d2,_0x762abf:0x38e,_0x3b31ab:0x35b,_0x15ca70:0x398,_0x1fa51c:0x309,_0x2f638e:0x38c,_0x41549b:0x10c,_0x31f3a5:0x69,_0x177004:0xf7,_0x5e067a:0x9e,_0x2ee0d2:0x173,_0x539d90:0x133,_0xd8483b:0xdf,_0x2dc1e5:0x225,_0x1b8902:0x316,_0x4cd835:0x53,_0x3d6977:0xcf,_0x47be36:0xe8,_0x34e547:0x349,_0x2f7acf:0x23f,_0x421de7:0x288,_0x1673f7:0x361,_0x2d5148:0x2f6,_0x51a061:0x29e},_0x47c857={_0x56a34d:0x29},_0x46122a={_0x475ff6:0x4fe},_0x4b1708={};_0x4b1708[_0x113ecf(-0xeb,-_0x24c7ef._0x181195,-_0x24c7ef._0x332fb4,-_0x24c7ef._0x911ce8)]=_0x113ecf(-0xee,-_0x24c7ef._0x35ebc6,-0xcd,-0x94)+_0x3475c9(_0x24c7ef._0x1aaf13,0x37c,0x39e,0x33e)+'name\x20or\x20in'+_0x113ecf(-0x1b,-_0x24c7ef._0x5e634c,_0x24c7ef._0xf45bad,-0x2a)+_0x3475c9(0x38b,_0x24c7ef._0x242194,_0x24c7ef._0x5cff30,_0x24c7ef._0x224a12)+_0x113ecf(-_0x24c7ef._0x5ccbaf,-_0x24c7ef._0x34ae51,-_0x24c7ef._0x32ac88,-0x139),_0x4b1708[_0x113ecf(-0x1c0,-0xba,-_0x24c7ef._0x14ea65,-0x132)]=function(_0xd68f7a,_0x9beff6){return _0xd68f7a===_0x9beff6;},_0x4b1708[_0x113ecf(-_0x24c7ef._0x362d0c,_0x24c7ef._0x501a67,-_0x24c7ef._0x771b66,-0x4d)]=_0x113ecf(0x21,-_0x24c7ef._0x1ad34f,-_0x24c7ef._0x2f0a70,-0x4f),_0x4b1708[_0x113ecf(-_0x24c7ef._0x53a310,-_0x24c7ef._0x16c69a,-0x9d,_0x24c7ef._0xa83fd6)]=_0x113ecf(-0x7b,-_0x24c7ef._0x297fd6,-0xcc,-_0x24c7ef._0x58cc80),_0x4b1708[_0x3475c9(0x369,_0x24c7ef._0x2db75f,0x386,_0x24c7ef._0x397d5d)]=_0x113ecf(-_0x24c7ef._0x30caa7,-_0x24c7ef._0xfc4f4c,-_0x24c7ef._0xc1015c,-_0x24c7ef._0x4d948f)+'ing\x20child\x20'+_0x3475c9(_0x24c7ef._0xbef55a,_0x24c7ef._0x8e2a87,0x352,0x2af);const _0x32298f=_0x4b1708,{parentObjective:_0x4ea4ca,callingTask:_0x5b29e5}=_0x5f0ade,_0x5135da=[];for(const [,_0x100e47]of tasks[_0x3475c9(0x2d3,0x2dc,0x24f,0x272)]()){if(_0x32298f[_0x3475c9(_0x24c7ef._0x3f01f7,0x2bf,_0x24c7ef._0x47444a,0x234)](_0x100e47['parentObje'+_0x3475c9(_0x24c7ef._0x21f17d,_0x24c7ef._0x225cdd,_0x24c7ef._0x4c3ef1,_0x24c7ef._0x265e97)],_0x4ea4ca['taskId'])&&_0x32298f['HmkFS'](_0x100e47['status'],_0x32298f[_0x113ecf(-0xd7,-_0x24c7ef._0x87466d,-0x99,-_0x24c7ef._0x4e39a8)])){if(_0x32298f['YuknF']!==_0x32298f[_0x113ecf(-_0x24c7ef._0x2553c6,-_0x24c7ef._0x5f3425,0x99,_0x24c7ef._0xa83fd6)]){const _0x51cfe4={};return _0x51cfe4[_0x113ecf(-_0x24c7ef._0x414cb3,-0x146,-0x178,-0x11d)]=_0x3475c9(_0x24c7ef._0x2f58f1,0x2dd,0x372,_0x24c7ef._0x3b4d50)+'t',_0x51cfe4[_0x113ecf(-_0x24c7ef._0x325e84,-0x6a,-_0x24c7ef._0x4789e8,-_0x24c7ef._0x2fbc97)]=_0x32298f[_0x3475c9(_0x24c7ef._0x3ba983,0x35a,0x340,0x3ee)],_0x4c58e3[_0x3475c9(0x2b1,0x346,_0x24c7ef._0x3115e0,0x359)](-0x1f82+-0x195*-0x5+0x1929)['json'](_0x51cfe4);}else{const _0x415f29={};_0x415f29[_0x113ecf(-0x13f,-_0x24c7ef._0x2b6dcd,-0xd3,-_0x24c7ef._0x19b808)]=_0x100e47[_0x113ecf(-_0x24c7ef._0x37ff1f,-0xb6,0x0,-_0x24c7ef._0x2f67b7)],_0x415f29['name']=_0x100e47['name'],_0x415f29[_0x3475c9(0x3cf,_0x24c7ef._0x19ddd0,0x33f,_0x24c7ef._0x51c2f8)]=_0x100e47[_0x3475c9(0x3b2,0x334,_0x24c7ef._0x3d9eac,_0x24c7ef._0x5385a9)],_0x415f29[_0x3475c9(_0x24c7ef._0x5b405e,0x3c5,0x3a6,_0x24c7ef._0x598880)]=_0x100e47[_0x3475c9(_0x24c7ef._0x45a7c9,_0x24c7ef._0x219431,_0x24c7ef._0x34979d,_0x24c7ef._0x34a0fc)],_0x415f29[_0x3475c9(_0x24c7ef._0x6a0c35,_0x24c7ef._0x20ed8f,0x28d,0x2bb)+'ns']=_0x100e47[_0x113ecf(-_0x24c7ef._0x5a1ac2,-_0x24c7ef._0x56fb9f,-0x151,-0x128)]?.[_0x113ecf(-0x8c,-0x162,-0x198,-0x11b)+'ns']||'',_0x5135da['push'](_0x415f29);}}}function _0x3475c9(_0x3b7902,_0x4db5a8,_0x2086e1,_0x9f6960){return _0x587fca(_0x3b7902-0xaf,_0x4db5a8-_0x46122a._0x475ff6,_0x9f6960,_0x9f6960-0xc1);}_0x5135da['sort']((_0x80ad9f,_0x384b43)=>(_0x80ad9f[_0x3475c9(0x2a1,0x334,0x395,0x2cf)]||-0x2250+0x1080+-0x23a*-0x8)-(_0x384b43[_0x113ecf(-0xff,-0x10f,-0x34,-0xbd)]||-0x121*-0x6+0x1c43+-0x2309));const _0x32e2cf={};_0x32e2cf[_0x3475c9(0x384,_0x24c7ef._0x22d037,_0x24c7ef._0x13d573,_0x24c7ef._0x762abf)]=_0x5b29e5[_0x3475c9(0x32f,_0x24c7ef._0x3b31ab,_0x24c7ef._0x15ca70,0x35a)],_0x32e2cf[_0x3475c9(0x33b,_0x24c7ef._0x1fa51c,0x27c,_0x24c7ef._0x2f638e)+_0x113ecf(-0xea,-0xad,-0x199,-_0x24c7ef._0x41549b)]=_0x4ea4ca[_0x113ecf(-_0x24c7ef._0x31f3a5,-0xeb,-_0x24c7ef._0x177004,-0x96)],_0x32e2cf['childCount']=_0x5135da[_0x113ecf(-_0x24c7ef._0x5e067a,-_0x24c7ef._0x2ee0d2,-_0x24c7ef._0x539d90,-_0x24c7ef._0xd8483b)],logger[_0x3475c9(0x329,0x2ce,_0x24c7ef._0x2dc1e5,_0x24c7ef._0x1b8902)](_0x32298f[_0x3475c9(0x3e4,0x356,0x38c,0x33a)],_0x32e2cf);const _0x515984={};_0x515984['children']=_0x5135da,_0x515984[_0x113ecf(-_0x24c7ef._0x4cd835,-_0x24c7ef._0x3d6977,-0x107,-_0x24c7ef._0x47be36)+_0x3475c9(_0x24c7ef._0x34e547,0x2e5,_0x24c7ef._0x2f7acf,_0x24c7ef._0x421de7)]=_0x4ea4ca['taskId'];function _0x113ecf(_0x377651,_0x4bbe0a,_0x15b042,_0x5697bc){return _0x587fca(_0x377651-_0x47c857._0x56a34d,_0x5697bc-0x10d,_0x377651,_0x5697bc-0x39);}_0x246edb[_0x3475c9(_0x24c7ef._0x1673f7,_0x24c7ef._0x2d5148,_0x24c7ef._0x51a061,_0x24c7ef._0x3f01f7)](_0x515984);}),router[_0x587fca(-0x1dd,-0x1ad,-0x212,-0x1c1)]('/sub-objec'+'tives/:obj'+_0x192b07(-0x1f2,-0x130,-0x194,-0x1bd),requireTaskAuth,async(_0x395c3d,_0x422115)=>{const _0x321176={_0x119d2e:0x1de,_0x4c434e:0x170,_0x47b640:0xa1,_0x1195e3:0x17e,_0x4573b0:0xec,_0x1458ab:0x117,_0x46eed4:0x159,_0x1e92db:0xea,_0x25da9f:0x1bb,_0xdf9c94:0xb4,_0x1ef026:0x158,_0x767555:0x18e,_0x285311:0x1db,_0x3ee65b:0x1ee,_0x5e6b1e:0x283,_0xf8d775:0x18f,_0x5c4c50:0x1a9,_0x16472f:0x216,_0x325398:0x1e1,_0x382532:0x100,_0x4e9c6d:0x115,_0x5742a0:0x16e,_0x2c27ce:0x115,_0x3670a2:0x2cd,_0x21b20c:0x27b,_0x49928b:0x24e,_0x1667e6:0x20b,_0x389182:0x1e8,_0x35463e:0x1c2,_0x37f783:0x26b,_0x2c4aa5:0x199,_0x2db0e2:0x1df,_0x1a266a:0x10c,_0x3c1b1e:0x5e,_0x547834:0xc9,_0x307334:0x164,_0x274a20:0x17d,_0x391991:0xae,_0x2c36cb:0x1ff,_0x3c5c3e:0x236,_0x27aca3:0x9e,_0x35a904:0xa4,_0x1aaad2:0x173,_0x4e6d79:0x1f7,_0x488977:0x171,_0x3c93ca:0x120,_0x35104f:0x203,_0x5df715:0x194,_0x3b5b9d:0x106,_0xfc8db6:0x1cd,_0x3a5dc0:0x1ec,_0x3ea7b3:0x232,_0x8a15ad:0x256,_0x123b8a:0x12c,_0x416f00:0x1d1,_0x5978bf:0x2eb,_0x3fc061:0x2f3,_0x5a29de:0x14c,_0x3715bf:0x1a1,_0x399979:0x1c5,_0x5eb5f6:0x1c1,_0x45b0ae:0x1ea,_0x5374e5:0x21f,_0x52b297:0x1b6,_0x37f90b:0x1bc,_0x21c534:0x186,_0x2c9123:0x1ac,_0x5aed52:0x24f,_0xbe8885:0x233,_0x4889e9:0x18d,_0x2341c4:0x223,_0x2d906d:0x144,_0xcbebc5:0x17f,_0x456234:0xdf,_0x2e2fb2:0x133,_0x14f1a8:0x277,_0x2d7f77:0x279,_0x3fff24:0x178,_0x1b41c8:0xd5,_0x16e32d:0x99,_0x21bd2e:0x12e,_0xd7d6ae:0x131,_0xe56539:0x212,_0x38882e:0x2ad,_0x37d167:0x266,_0x204ea5:0x1bd,_0x472c63:0xc1,_0x3e7ac5:0xf4,_0x2ab357:0x8d,_0x4c27b6:0x160,_0x108ff2:0x191,_0xe7d864:0x1e7,_0x1a51af:0x193,_0x123214:0x147,_0x25aa8b:0x1e9,_0x29fe1c:0x1b2,_0x558512:0x1fa,_0x1fc4ef:0x7c,_0x12fb67:0x15e,_0x5cdc37:0x9f,_0x2fccd9:0xb9,_0x10f997:0x18a,_0x2b50cc:0x1b1,_0x3b598b:0x1fd,_0x5b7b42:0x1a9,_0x5aa66c:0x1f9,_0x3de985:0x200,_0x2fb4c6:0x1dd,_0xafa05b:0x6b,_0x6c400b:0xf7,_0x35fbf3:0x16d,_0x5b3eb3:0x2b7,_0xb348ff:0x235,_0x422ecd:0x282,_0x14215c:0x1c3,_0x435c05:0x15c,_0x8dabd:0x123,_0x12c703:0x107,_0x152798:0x31c,_0x116ef8:0x1ee,_0x5b5e28:0x291,_0x1a0e16:0x239,_0x2c3b6c:0x266,_0x551c9e:0x271,_0x41fccd:0x1cd,_0x4b891b:0x204,_0x454fe3:0x20d,_0x144023:0x1af,_0x56da64:0x150,_0x4a1940:0x1c3,_0x3bce68:0x28c,_0x22a229:0x15f,_0x42adc6:0x201,_0x2b2ffc:0x215,_0x274072:0x229,_0x22dcfc:0x1ab,_0x2e337f:0x189,_0x192223:0x103,_0x5ba988:0x68,_0x5e82ea:0xa9,_0x2b393f:0x8,_0x388641:0x15e,_0x4f9e34:0xbc,_0x49cd02:0xde,_0x487875:0x1cf,_0x1f95aa:0x17d,_0x3c656e:0x19c,_0x37ad1b:0x122,_0x253aa0:0x167,_0x3099cf:0xcc,_0x773637:0x119,_0x10d054:0x1c0,_0x1dd445:0xca,_0x18325e:0x101,_0xb77c0d:0x146,_0xcbd54:0xd7,_0x1f14fe:0x22d,_0x3732f7:0x1bf,_0xa6703b:0x1e0,_0x2221e6:0x14f,_0x103ffe:0x17e,_0xce5b0f:0x159,_0x559539:0x135,_0x586e1b:0x20c,_0xa6e339:0xfb,_0x1fdcd2:0x16f,_0xbb8760:0x2c5,_0x119c11:0x233,_0x1d2c6f:0x1d8,_0x407bc7:0x1f2,_0x24dbce:0x141,_0x490ef3:0x1ce,_0x3a2b67:0x297,_0x5f5342:0x184,_0x530602:0x196,_0x43b166:0x151,_0x591d83:0x1cc,_0x210f57:0x176,_0x5bb648:0xeb,_0x2cc39f:0x18f,_0x3da7be:0x1e5,_0x324fe2:0x12c,_0x15a81e:0x210,_0x3281d5:0x207,_0x1a2be8:0x1ad,_0x4a9e5b:0x199,_0x904be4:0x176,_0xad3897:0xc0,_0x322a9f:0x162,_0x3801d8:0xbf,_0x2d610d:0x287,_0x29697e:0x24f,_0x1de2e5:0x21d,_0x2f2219:0x1b1,_0x2c5508:0x219,_0x58e107:0x287,_0x4ffd39:0x288,_0x2a4d57:0x199,_0xa24f1a:0x281,_0x29dadb:0x2a8,_0x6ddf86:0x301,_0x2743ed:0x1d1,_0x50863e:0x204,_0x50c61d:0x130,_0x1eba3b:0x2d6,_0x571636:0x2ac,_0x409391:0x29d,_0x43a80b:0x2ba,_0xcf6414:0x1d6,_0x599315:0x127,_0x3ed427:0x89,_0x213b70:0xc7,_0x1a4f0:0x119,_0x501493:0x39,_0x2dd5e7:0x3e,_0x4bf690:0xa4,_0x2be42d:0x12c,_0x51d23e:0x241,_0x26c39d:0x19e,_0x5e9352:0xe0,_0x10dc2a:0x14e,_0x31e4d4:0xfd,_0x574a4e:0x15c,_0xd10add:0x1d5,_0x3b7986:0x28e,_0x47ac74:0x136,_0x3eb7cc:0xe1,_0x752517:0x83,_0x2cca52:0x13c,_0x5b689b:0x250,_0x3b7422:0xa2,_0x37aa72:0x22,_0x24a0eb:0x20e,_0x2d09b3:0x286,_0x2d2373:0x23a,_0x442257:0xc0,_0x3a4788:0xf7},_0x4f5abe={_0x52b54a:0x122},_0x2d38ad={'zEQWL':'Not\x20Found','qVfWx':_0x17484f(0x252,0x1ea,_0x321176._0x119d2e,0x1ad)+_0x17484f(_0x321176._0x4c434e,0x109,_0x321176._0x47b640,_0x321176._0x1195e3)+_0x17484f(_0x321176._0x4573b0,0xbe,0xd4,0x61),'LCAqK':function(_0x228610,_0x185c56,_0x427c51){return _0x228610(_0x185c56,_0x427c51);},'fMsgW':_0x17484f(0x18f,_0x321176._0x1458ab,_0x321176._0x46eed4,_0x321176._0x1e92db)+'ed','OscKH':_0x17484f(_0x321176._0x25da9f,0x129,0x10e,_0x321176._0xdf9c94)+_0x17484f(0x1fb,_0x321176._0x1ef026,0x1e3,0x111)+_0x17484f(_0x321176._0x767555,_0x321176._0x285311,_0x321176._0x3ee65b,_0x321176._0x5e6b1e)+_0x249f1a(-_0x321176._0xf8d775,-_0x321176._0x5c4c50,-0x221,-0x1b4)+'out\x20parent'+_0x249f1a(-_0x321176._0x16472f,-_0x321176._0x325398,-_0x321176._0x767555,-_0x321176._0x382532),'rbqfN':_0x249f1a(-_0x321176._0x4e9c6d,-0x1f6,-_0x321176._0x5742a0,-_0x321176._0x2c27ce),'HBoyH':'This\x20task\x20'+_0x249f1a(-0x231,-_0x321176._0x3670a2,-0x23b,-0x1ef)+_0x249f1a(-_0x321176._0x21b20c,-0x249,-_0x321176._0x49928b,-_0x321176._0x1667e6)+_0x17484f(_0x321176._0x389182,0x1ec,0x223,0x226)+_0x249f1a(-0x219,-0x15d,-_0x321176._0x35463e,-_0x321176._0x37f783),'zmoKg':function(_0x34be83,_0x4c883c){return _0x34be83===_0x4c883c;},'hkZvq':_0x17484f(_0x321176._0x2c4aa5,_0x321176._0x2db0e2,0x25f,0x1e4),'ahjTf':_0x249f1a(-0x256,-0x163,-0x1b3,-0x170),'iQxAQ':_0x17484f(_0x321176._0x1a266a,0xde,_0x321176._0x3c1b1e,_0x321176._0x547834)+'t','gpwnC':'At\x20least\x20o'+_0x17484f(_0x321176._0x307334,_0x321176._0x274a20,0x219,0xde)+_0x17484f(0x44,_0x321176._0x391991,0x81,0x43)+_0x249f1a(-_0x321176._0x2c36cb,-0x174,-0x195,-_0x321176._0x3ee65b)+_0x249f1a(-0x1f0,-_0x321176._0x3c5c3e,-0x1be,-0x24b)+_0x17484f(0x13e,0xb9,_0x321176._0x27aca3,_0x321176._0x35a904),'WNjIq':_0x249f1a(-0x117,-0x200,-_0x321176._0x1aaad2,-0x1ca)+'ive\x20is\x20not'+_0x249f1a(-0x1bf,-0x235,-0x255,-0x21d)+_0x17484f(_0x321176._0x4e6d79,_0x321176._0x488977,0xea,0x213)+_0x17484f(_0x321176._0x3c93ca,0x169,0xf5,_0x321176._0x389182)+'ve','SJMKb':function(_0x2c57ca,_0x4fa8ad){return _0x2c57ca!==_0x4fa8ad;},'swemd':'Target\x20is\x20'+'not\x20an\x20obj'+_0x249f1a(-_0x321176._0x35104f,-0x126,-_0x321176._0x5df715,-0x239),'RVskM':_0x249f1a(-0x1f6,-_0x321176._0x3b5b9d,-0x1ae,-_0x321176._0xfc8db6)+_0x249f1a(-0x1e4,-_0x321176._0x3a5dc0,-_0x321176._0x3ea7b3,-_0x321176._0x35463e)+'jective','oaTGO':function(_0x399741,_0x4f8392){return _0x399741!==_0x4f8392;},'mrzZm':function(_0x2add2e,_0x401ab4){return _0x2add2e===_0x401ab4;},'ODzrg':_0x249f1a(-_0x321176._0x8a15ad,-0x22c,-0x23c,-0x20a),'FtvlV':function(_0x15337b,_0x14f628){return _0x15337b(_0x14f628);},'IaMEE':'metadata.j'+'son','DlrHE':_0x17484f(0x160,_0x321176._0x123b8a,0x110,_0x321176._0x416f00),'IXjMt':_0x249f1a(-_0x321176._0x5978bf,-0x2ca,-0x290,-_0x321176._0x3fc061)+_0x249f1a(-_0x321176._0x5a29de,-0x1c2,-_0x321176._0x3715bf,-_0x321176._0x399979),'plDlj':function(_0x34c4d0,_0x3137ee){return _0x34c4d0!==_0x3137ee;},'PSrzC':'uZrny','KgEPf':_0x249f1a(-_0x321176._0x5eb5f6,-_0x321176._0x45b0ae,-0x20f,-0x17e)+_0x17484f(_0x321176._0x5374e5,_0x321176._0x52b297,0x19e,_0x321176._0x37f90b)+_0x17484f(_0x321176._0x21c534,_0x321176._0x2c9123,0x1c0,_0x321176._0x5aed52)+_0x249f1a(-0x1eb,-_0x321176._0xbe8885,-_0x321176._0x4889e9,-_0x321176._0x2341c4),'afINk':function(_0x29f21c,_0x1d8faa,_0x11f3ab){return _0x29f21c(_0x1d8faa,_0x11f3ab);}},{parentObjective:_0x19f616,callingTask:_0x43d49d}=_0x395c3d,{objectiveId:_0x42d6bc}=_0x395c3d[_0x249f1a(-0x248,-0x23f,-0x247,-0x273)],{name:_0x1ad675,instructions:_0x8fe6f0}=_0x395c3d[_0x17484f(_0x321176._0x2d906d,_0x321176._0xcbebc5,0x1ce,0x10b)];if(_0x2d38ad[_0x17484f(_0x321176._0x456234,0xa6,_0x321176._0x2e2fb2,0x14)](_0x1ad675,undefined)&&_0x2d38ad['zmoKg'](_0x8fe6f0,undefined)){if(_0x2d38ad['hkZvq']===_0x2d38ad[_0x17484f(_0x321176._0x14f1a8,0x1f5,_0x321176._0x2d7f77,_0x321176._0x3fff24)]){const _0x521e68={};return _0x521e68[_0x17484f(0x6a,_0x321176._0x1b41c8,_0x321176._0x16e32d,0x168)]=_0x2d38ad['zEQWL'],_0x521e68[_0x249f1a(-_0x321176._0x21bd2e,-0x155,-_0x321176._0x2c9123,-_0x321176._0xd7d6ae)]=_0x2d38ad[_0x249f1a(-_0x321176._0xe56539,-0x152,-0x1b4,-0x1c7)],_0x32a5dc[_0x249f1a(-0x218,-0x1ad,-0x216,-0x239)](0x21e5+0x96c+-0x29bd)[_0x249f1a(-0x2ec,-_0x321176._0x38882e,-_0x321176._0x37d167,-_0x321176._0x204ea5)](_0x521e68);}else{const _0x473a79={};return _0x473a79[_0x17484f(0x72,0xd5,0x127,_0x321176._0x472c63)]=_0x2d38ad[_0x17484f(0x188,_0x321176._0x3e7ac5,0x51,_0x321176._0x2ab357)],_0x473a79[_0x17484f(0x1b3,0x1b1,0x16f,0x1a4)]=_0x2d38ad[_0x17484f(_0x321176._0x4c27b6,_0x321176._0x108ff2,0x1f8,_0x321176._0xe7d864)],_0x422115[_0x17484f(_0x321176._0x1a51af,_0x321176._0x123214,_0x321176._0x25aa8b,_0x321176._0x29fe1c)](-0x1187+0x10a4+-0x3*-0xd1)['json'](_0x473a79);}}const _0x51687e=tasks[_0x249f1a(-_0x321176._0x558512,-0x1cf,-0x1fa,-_0x321176._0x2c36cb)](_0x42d6bc);if(!_0x51687e){const _0x4d4191={};return _0x4d4191[_0x17484f(_0x321176._0x1fc4ef,0xd5,_0x321176._0x488977,_0x321176._0x12fb67)]=_0x2d38ad[_0x17484f(_0x321176._0x5cdc37,0xfc,_0x321176._0x2fccd9,_0x321176._0x10f997)],_0x4d4191[_0x17484f(0x182,_0x321176._0x2b50cc,0x1ea,_0x321176._0x3b598b)]=_0x2d38ad[_0x17484f(0x14d,_0x321176._0x5b7b42,_0x321176._0x5aa66c,_0x321176._0x3de985)],_0x422115[_0x249f1a(-_0x321176._0x2fb4c6,-0x21e,-0x216,-0x27f)](-0x9a3*0x1+-0xa96*0x3+0x2af9)[_0x17484f(_0x321176._0xafa05b,_0x321176._0x6c400b,_0x321176._0x35fbf3,0x102)](_0x4d4191);}if(_0x51687e[_0x249f1a(-_0x321176._0x5b3eb3,-_0x321176._0xb348ff,-0x253,-_0x321176._0x422ecd)+'ctiveId']!==_0x19f616[_0x17484f(_0x321176._0x14215c,_0x321176._0x435c05,_0x321176._0x8dabd,_0x321176._0x12c703)]){const _0x2e0484={};return _0x2e0484['error']=_0x2d38ad[_0x249f1a(-_0x321176._0x152798,-_0x321176._0x116ef8,-_0x321176._0x5b5e28,-0x317)],_0x2e0484[_0x17484f(_0x321176._0x1a266a,0x1b1,0x1f6,_0x321176._0x1a0e16)]=_0x2d38ad[_0x249f1a(-0x234,-0x275,-0x2a5,-0x20b)],_0x422115['status'](0x1d29+0xb68+-0x26fe)[_0x249f1a(-0x298,-0x200,-_0x321176._0x2c3b6c,-0x1de)](_0x2e0484);}if(_0x2d38ad['SJMKb'](_0x51687e[_0x249f1a(-_0x321176._0x551c9e,-0x296,-0x216,-_0x321176._0x41fccd)],_0x249f1a(-_0x321176._0x4b891b,-_0x321176._0x454fe3,-0x1ba,-0x1cd))){const _0x4f9477={};return _0x4f9477['error']=_0x2d38ad['iQxAQ'],_0x4f9477['message']=_0x2d38ad['swemd'],_0x422115[_0x17484f(0x1b1,0x147,_0x321176._0x144023,0x1a2)](0xa98+0xa0e+0x7*-0x2ba)['json'](_0x4f9477);}logger[_0x17484f(_0x321176._0x56da64,0xcf,0x158,0x153)](_0x2d38ad[_0x17484f(0x15f,_0x321176._0x4a1940,_0x321176._0x119d2e,0x143)],{'taskId':_0x43d49d[_0x249f1a(-0x291,-_0x321176._0x3bce68,-0x201,-0x268)],'parentObjectiveId':_0x19f616[_0x249f1a(-0x1ef,-_0x321176._0x22a229,-_0x321176._0x42adc6,-0x1ea)],'subObjectiveId':_0x42d6bc,'updatingName':_0x2d38ad[_0x17484f(0x260,0x1d8,0x216,0x1d7)](_0x1ad675,undefined),'updatingInstructions':_0x2d38ad['oaTGO'](_0x8fe6f0,undefined)});const _0x4cae52=new Date()['toISOStrin'+'g']();_0x2d38ad[_0x249f1a(-0x125,-_0x321176._0x2b2ffc,-0x185,-0x125)](_0x1ad675,undefined)&&(_0x51687e[_0x17484f(0x109,0x119,0x85,0x16c)]=_0x1ad675);if(_0x2d38ad['SJMKb'](_0x8fe6f0,undefined)){if(_0x2d38ad[_0x249f1a(-_0x321176._0x274072,-_0x321176._0x22dcfc,-_0x321176._0x2e337f,-_0x321176._0x192223)](_0x2d38ad[_0x17484f(_0x321176._0x5ba988,_0x321176._0x5e82ea,_0x321176._0x2b393f,0xbb)],_0x17484f(_0x321176._0x388641,_0x321176._0x4f9e34,_0x321176._0x49cd02,0xdd))){const _0x845035={};_0x845035[_0x17484f(_0x321176._0x487875,0x15c,_0x321176._0x1f95aa,_0x321176._0x3c656e)]=_0x34e87a[_0x17484f(_0x321176._0x37ad1b,0x15c,0x15b,_0x321176._0x253aa0)],_0x845035[_0x17484f(_0x321176._0x3099cf,_0x321176._0x773637,_0x321176._0x10d054,0x156)]=_0x15c6f5['name'],_0x845035['instructio'+'ns']=_0x296304[_0x17484f(0x60,_0x321176._0x1dd445,_0x321176._0x18325e,_0x321176._0xb77c0d)]?.[_0x17484f(0x35,_0x321176._0xcbd54,0xa9,0x52)+'ns'],_0x845035[_0x17484f(_0x321176._0x1f14fe,_0x321176._0x3732f7,0x133,0x1c1)]=_0x12667c[_0x17484f(_0x321176._0xa6703b,0x1bf,0x1d2,_0x321176._0x2221e6)],_0x2d38ad['LCAqK'](_0x5ec501,_0x2d38ad[_0x17484f(0x173,_0x321176._0x103ffe,_0x321176._0xce5b0f,_0x321176._0x559539)],_0x845035);}else _0x51687e['parameters']={..._0x51687e[_0x17484f(0xef,_0x321176._0x1dd445,0x100,0x15e)],'instructions':_0x8fe6f0};}function _0x17484f(_0x3f5ca0,_0x402541,_0x172a02,_0x296af6){return _0x192b07(_0x3f5ca0-0x135,_0x172a02,_0x172a02-0x9c,_0x402541-0x2ab);}_0x51687e[_0x17484f(0x206,0x1bf,0x16b,_0x321176._0x586e1b)]=_0x4cae52,_0x51687e['lastModifi'+_0x249f1a(-0x146,-_0x321176._0xa6e339,-0x1a0,-_0x321176._0x1fdcd2)]=_0x43d49d[_0x17484f(0xea,_0x321176._0x435c05,0xe0,_0x321176._0x3732f7)];try{const _0x19c96a=await _0x2d38ad['FtvlV'](findTaskDirectory,_0x42d6bc);if(_0x19c96a){const _0x5ae680=_0x29d3e0['join'](_0x19c96a,_0x2d38ad[_0x249f1a(-_0x321176._0xbb8760,-0x1f5,-_0x321176._0x119c11,-0x262)]);await _0x46fc36[_0x249f1a(-0x14d,-_0x321176._0x488977,-_0x321176._0x1d2c6f,-_0x321176._0x407bc7)](_0x5ae680,JSON[_0x17484f(_0x321176._0x24dbce,_0x321176._0x119d2e,0x268,0x1ba)](_0x51687e,null,-0x31*0x7a+0x29*-0xb7+0x34ab),_0x2d38ad['DlrHE']);if(_0x8fe6f0!==undefined){const _0x1ddcb3=_0x29d3e0[_0x249f1a(-_0x321176._0x490ef3,-0x2ad,-0x252,-_0x321176._0x3a2b67)](_0x19c96a,'output'),_0x498128={};_0x498128[_0x17484f(_0x321176._0xf8d775,_0x321176._0x5f5342,_0x321176._0x530602,_0x321176._0x43b166)]=!![],await _0x46fc36[_0x17484f(_0x321176._0x591d83,0x1c0,_0x321176._0x210f57,0x1f7)](_0x1ddcb3,_0x498128);const _0x35afed=_0x29d3e0['join'](_0x1ddcb3,_0x2d38ad[_0x17484f(_0x321176._0x5bb648,_0x321176._0x24dbce,0x1b7,_0x321176._0x3c93ca)]);await _0x46fc36[_0x249f1a(-_0x321176._0x2cc39f,-_0x321176._0x3da7be,-0x1d8,-0x192)](_0x35afed,_0x8fe6f0,_0x17484f(_0x321176._0x35463e,_0x321176._0x324fe2,_0x321176._0x1aaad2,_0x321176._0x25da9f));}}}catch(_0x302f25){if(_0x2d38ad[_0x249f1a(-0x20a,-_0x321176._0x15a81e,-_0x321176._0x3281d5,-_0x321176._0x1a2be8)](_0x2d38ad[_0x17484f(_0x321176._0x144023,_0x321176._0x4a9e5b,_0x321176._0x904be4,0x13f)],_0x17484f(_0x321176._0xad3897,_0x321176._0x322a9f,0xba,_0x321176._0x3801d8))){const _0x324638={};_0x324638[_0x249f1a(-0x2a4,-0x23a,-0x259,-_0x321176._0x2d610d)+'d']=_0x42d6bc,_0x324638[_0x249f1a(-_0x321176._0x29697e,-_0x321176._0x1de2e5,-0x288,-_0x321176._0x4e6d79)]=_0x302f25[_0x17484f(0x1c7,_0x321176._0x2f2219,_0x321176._0x2c5508,_0x321176._0x2fb4c6)],logger[_0x249f1a(-0x25b,-_0x321176._0x58e107,-_0x321176._0x4ffd39,-0x1f5)](_0x2d38ad[_0x249f1a(-0xfa,-_0x321176._0x119d2e,-_0x321176._0x21c534,-_0x321176._0x2a4d57)],_0x324638);}else{const _0x16973d={};_0x16973d['taskId']=_0x271767,_0x570c94[_0x249f1a(-0x242,-0x268,-0x20c,-_0x321176._0xa24f1a)](_0x2d38ad[_0x249f1a(-_0x321176._0x29dadb,-0x1f0,-0x279,-0x258)],_0x16973d);const _0x430d51={};return _0x430d51['error']=_0x2d38ad[_0x249f1a(-_0x321176._0x6ddf86,-0x2a2,-0x291,-0x22c)],_0x430d51[_0x249f1a(-_0x321176._0x2743ed,-_0x321176._0x50863e,-0x1ac,-_0x321176._0x50c61d)]=_0x2d38ad[_0x249f1a(-_0x321176._0x1eba3b,-0x31c,-_0x321176._0x571636,-0x22c)],_0x1077c3[_0x249f1a(-_0x321176._0x409391,-_0x321176._0x43a80b,-_0x321176._0x16472f,-_0x321176._0xcf6414)](0x98d*-0x1+-0x14*0x195+0xee*0x2e)[_0x17484f(_0x321176._0x599315,_0x321176._0x6c400b,_0x321176._0x3ed427,0xb2)](_0x430d51);}}if(broadcastTaskUpdate){const _0x30fc11={};_0x30fc11[_0x17484f(0xc5,0x15c,0x1c9,0x200)]=_0x51687e[_0x17484f(_0x321176._0x1a2be8,0x15c,0x123,0xff)],_0x30fc11[_0x17484f(0x169,0x119,_0x321176._0x213b70,0x8a)]=_0x51687e[_0x17484f(0x13b,_0x321176._0x1a4f0,0x1a4,0x16e)],_0x30fc11[_0x17484f(_0x321176._0x501493,_0x321176._0xcbd54,0xc3,0x10e)+'ns']=_0x51687e[_0x17484f(0xcf,0xca,0x7d,0x29)]?.[_0x17484f(_0x321176._0x3ed427,0xd7,_0x321176._0x2dd5e7,_0x321176._0x4bf690)+'ns'],_0x30fc11[_0x249f1a(-0x100,-0x1a5,-0x19e,-_0x321176._0x2be42d)]=_0x51687e[_0x249f1a(-0x1e2,-_0x321176._0x51d23e,-_0x321176._0x26c39d,-0x1e5)],_0x2d38ad[_0x17484f(0x164,_0x321176._0x5e9352,_0x321176._0x21bd2e,_0x321176._0x10dc2a)](broadcastTaskUpdate,_0x2d38ad[_0x17484f(0x1d3,0x17e,0x194,0x10d)],_0x30fc11);}const _0x176a64={};_0x176a64[_0x17484f(0x1d9,0x15c,0x165,_0x321176._0x31e4d4)]=_0x43d49d[_0x17484f(0x1cd,_0x321176._0x574a4e,0x148,_0x321176._0x12c703)],_0x176a64[_0x17484f(0x7b,0xd1,0x150,0x103)+_0x249f1a(-0x1fd,-_0x321176._0x5aa66c,-_0x321176._0xd10add,-_0x321176._0x3715bf)]=_0x42d6bc,logger[_0x249f1a(-0x2f5,-0x23f,-_0x321176._0x3b7986,-0x1fa)](_0x249f1a(-_0x321176._0x47ac74,-0x10b,-0x173,-_0x321176._0x3099cf)+'ive\x20update'+_0x17484f(0xe3,_0x321176._0x3eb7cc,_0x321176._0x752517,0x69),_0x176a64);const _0x1dcf7f={};_0x1dcf7f['success']=!![],_0x1dcf7f[_0x249f1a(-_0x321176._0x307334,-0x1cb,-0x201,-0x2aa)]=_0x51687e[_0x17484f(_0x321176._0x2cca52,0x15c,0xf5,0x142)],_0x1dcf7f['name']=_0x51687e['name'];function _0x249f1a(_0x102a55,_0x2d4822,_0x4975bb,_0x45bc3d){return _0x587fca(_0x102a55-0x2f,_0x4975bb- -0x5e,_0x2d4822,_0x45bc3d-_0x4f5abe._0x52b54a);}_0x1dcf7f[_0x249f1a(-0x235,-0x28c,-0x286,-_0x321176._0x5b689b)+'ns']=_0x51687e[_0x17484f(_0x321176._0x3b7422,0xca,_0x321176._0x37aa72,0x41)]?.[_0x249f1a(-_0x321176._0x24a0eb,-0x219,-_0x321176._0x2d09b3,-_0x321176._0x2d2373)+'ns'],_0x1dcf7f['updatedAt']=_0x51687e['updatedAt'],_0x422115[_0x17484f(_0x321176._0x442257,_0x321176._0x3a4788,0x189,0x11c)](_0x1dcf7f);}),router[_0x192b07(-0x132,-0x19,-0xd3,-0xbb)](_0x192b07(-0x162,-0x1e1,-0x1e7,-0x168)+'tives/:obj'+_0x192b07(-0x1d9,-0x1d6,-0x11e,-0x1bd),requireTaskAuth,async(_0xd9b65b,_0x2cc263)=>{const _0x5ecd2e={_0x10e000:0x1ec,_0x2fbada:0x247,_0x555c4b:0x1c1,_0x95a204:0x17a,_0xcb862:0x91,_0x49072d:0x52,_0x1326df:0x4b,_0x2ee5d0:0x178,_0x565811:0x29e,_0x594dbf:0x219,_0x12f919:0x2ec,_0x423e13:0x26a,_0xb939d2:0xdc,_0x452c65:0xe7,_0x57e750:0xbb,_0x5602eb:0x12b,_0x3d083d:0x1a0,_0x2dfc24:0x221,_0x3b9c06:0x2b0,_0x5e9061:0x1bd,_0x579fa0:0x233,_0x2bd8bc:0x223,_0xbe9274:0x1d3,_0x3ef062:0x15f,_0x36d441:0x104,_0xdf3054:0x131,_0xd22075:0x23c,_0x177b62:0x1e5,_0x22a486:0x182,_0x5ed202:0x12a,_0x5274ef:0x1ca,_0x2750e7:0x134,_0x4b9aa1:0x1d9,_0x5858c7:0x1ce,_0x18ce20:0x173,_0x2e486b:0x124,_0x351974:0x200,_0x45fe8:0x1f7,_0x560e9d:0xe1,_0x1c605c:0x3a,_0x1c6453:0x136,_0x1d0fb6:0xc8,_0x342fbb:0x117,_0x377023:0xa8,_0x29c561:0x1a0,_0x37df03:0x37,_0x38f581:0x9f,_0x2a8e31:0x64,_0x58876a:0x1c3,_0x3a3950:0x1ac,_0x2420f2:0x231,_0x30a6ca:0x38,_0x228c1a:0xe8,_0x2df1b6:0x92,_0x6a4846:0x23e,_0x2f74dd:0x1ab,_0x397003:0x47,_0x18e920:0x88,_0x3ac3f4:0x2,_0x851880:0x58,_0x4d763a:0xd0,_0x3e0a66:0xae,_0x5b07f2:0x129,_0x2a2f4f:0x8b,_0x3d30c2:0x5f,_0x113b8d:0x55,_0x31b672:0xb7,_0x2990da:0x209,_0x31eff1:0x248,_0xac4f64:0x22b,_0x2df3da:0x19e,_0x22a29b:0xfb,_0x278bb6:0x154,_0x51d648:0xa3,_0x2ad492:0x29,_0x5334a5:0xe2,_0x229844:0x177,_0x3601aa:0xe7,_0x1216c3:0x1b7,_0x4a4a4d:0xe4,_0x4c4f02:0xdd,_0x5ddc03:0x166,_0x1d2c7f:0xd3,_0x372f52:0x155,_0x31524b:0x6d,_0x25807d:0x66,_0x5c0faa:0x24a,_0x1fc3b9:0x7f,_0x3356a7:0x48,_0x19c361:0xb,_0x1a7a07:0x42,_0xefc7d6:0x90,_0x15a377:0x54,_0xdc3f97:0x18e,_0x4d32fd:0x206,_0x2b3fb1:0x187,_0x448855:0x15e,_0x53b02d:0x6f,_0x31e333:0x94,_0xd472c2:0x1a,_0x107f96:0x10f,_0x2d3056:0xf4,_0x2ea3f0:0xb,_0x4dd76b:0x7c,_0x1ca882:0x7c,_0x3d1741:0x14a,_0x116fee:0x229,_0x3d6407:0x1c7,_0xf5d3e8:0x20e,_0x170eb0:0x177,_0x906dd5:0xc7,_0x359127:0x1de,_0x3d9c6d:0x15d,_0x5a3c51:0xaf,_0x16d4ba:0x4f,_0x4e94ee:0x1d8,_0x28bd7e:0x1aa,_0x50b0df:0x119,_0x31d4ab:0xe7,_0x1b4281:0x123,_0x9e2846:0x153,_0x21bcd4:0x1b5,_0x3a1232:0x1ae,_0x235008:0x6c,_0x154d59:0x5b,_0xd14d77:0x36,_0x26e7ac:0x14f,_0x243dc9:0x2a6,_0x5e9806:0x1a8,_0x2f3b26:0x1f3,_0x465060:0x1e8,_0x1d3c70:0x18f,_0xfc35c7:0x1d1,_0x4c7a2f:0x1b8,_0x31aeec:0x93,_0x393af1:0x11d,_0x4b9540:0x70,_0xd12bdb:0x113,_0x15c289:0x21f,_0x8be4bf:0x198,_0x28a762:0x1dc,_0x3eee60:0xdc,_0xf5fe90:0xac,_0x368a80:0x16c,_0x45de7e:0x254,_0x1ef999:0x11a,_0x521175:0x136,_0x5431e1:0xba,_0x364118:0xfb,_0x5f289e:0xc6,_0x4650bb:0x5e,_0x5ca759:0xb2,_0xabfcab:0x73,_0x406d5d:0x0,_0x47f087:0x3b,_0x25d401:0x80,_0x28baf5:0xd6,_0x45084d:0x28,_0x5a3a43:0x24d,_0xe2ffb7:0x193,_0x49e75f:0x19e,_0x2bed70:0x2f,_0x425fed:0x3c,_0x8d4014:0x2d,_0x13abe3:0x162,_0x33abca:0x17f,_0x4c50e9:0x1dc,_0x52b1c6:0x278,_0x58d0a9:0x1dc,_0x580518:0xed,_0x5e1c2f:0x151,_0x1c35cb:0x116,_0x3734d4:0x122,_0x2708d3:0x1f2,_0x177ebf:0xc1,_0xdd753a:0x4d},_0xe07232={_0x344c01:0x83,_0x2fc843:0x65},_0x107157={_0x1041fd:0xc8},_0x19548a={'fcQeK':_0x487573(0x1d4,_0x5ecd2e._0x10e000,0x1b5,_0x5ecd2e._0x2fbada)+'ed','dTWVU':_0x487573(0x16b,_0x5ecd2e._0x555c4b,0x1c2,_0x5ecd2e._0x95a204)+_0x15dec4(-0x7d,0x5d,0x81,0x24)+_0x15dec4(-_0x5ecd2e._0xcb862,-0x6b,-_0x5ecd2e._0x49072d,-_0x5ecd2e._0x1326df),'QaRhY':function(_0x511cc3,_0x567c0e){return _0x511cc3===_0x567c0e;},'vYssv':_0x487573(_0x5ecd2e._0x2ee5d0,0x182,0x21e,0x1b2),'IHPcX':_0x487573(0x18a,0x1e7,0xec,0x182),'bkFJG':_0x487573(_0x5ecd2e._0x565811,0x24c,0x2ed,0x26a)+_0x487573(0x123,_0x5ecd2e._0x594dbf,0x1ca,0x189)+'und','uoFYt':function(_0x518ac7,_0x30f43a){return _0x518ac7!==_0x30f43a;},'AaAup':_0x487573(_0x5ecd2e._0x12f919,0x2eb,0x234,_0x5ecd2e._0x423e13)+_0x15dec4(_0x5ecd2e._0xb939d2,_0x5ecd2e._0x452c65,0xec,0x68)+'\x20a\x20child\x20o'+'f\x20the\x20pare'+_0x15dec4(0x1b,0x13,-0x12,-0x20)+'ve','pzMNS':_0x15dec4(-_0x5ecd2e._0x57e750,-0x10a,-_0x5ecd2e._0x5602eb,-0xab)+'t','LZsIF':_0x487573(0x201,_0x5ecd2e._0x3d083d,0x1a0,_0x5ecd2e._0x2dfc24)+'not\x20an\x20obj'+'ective','KuRNa':function(_0x558ac4,_0x2cfdf1){return _0x558ac4===_0x2cfdf1;},'LUVxy':function(_0x370627,_0x3495b3){return _0x370627===_0x3495b3;},'EVdlv':_0x487573(_0x5ecd2e._0x3b9c06,_0x5ecd2e._0x5e9061,_0x5ecd2e._0x579fa0,_0x5ecd2e._0x2bd8bc),'mPrJR':function(_0x1175c7,_0x7a712c){return _0x1175c7===_0x7a712c;},'ztwEE':_0x487573(0x179,0x15b,0x20b,_0x5ecd2e._0xbe9274),'bQZnG':_0x15dec4(-_0x5ecd2e._0x3ef062,-0xaf,-_0x5ecd2e._0x36d441,-0xd3),'rtfIj':'Cannot\x20del'+_0x15dec4(-0x5d,-0x9f,-_0x5ecd2e._0xdf3054,-0xde)+_0x487573(_0x5ecd2e._0x3d083d,_0x5ecd2e._0xd22075,0x220,0x1da)+_0x487573(_0x5ecd2e._0x177b62,0x15b,0x18b,0x190)+_0x487573(_0x5ecd2e._0x22a486,0x1cd,_0x5ecd2e._0x5ed202,0x132)+'ete\x20childr'+'en\x20first.','TvHgi':_0x15dec4(-0xf3,-0x64,-0x85,-0x55)+'ing\x20sub-ob'+_0x487573(0x216,_0x5ecd2e._0x5274ef,0x1d4,0x265),'wvxfc':_0x487573(_0x5ecd2e._0x2750e7,_0x5ecd2e._0x4b9aa1,_0x5ecd2e._0x2fbada,_0x5ecd2e._0x5858c7)+_0x487573(0x1bf,0x1ce,_0x5ecd2e._0x18ce20,0x1a8)+_0x487573(_0x5ecd2e._0x2e486b,0x149,0x95,0x13d)+'\x20from\x20disk','SwvuY':function(_0x3f98f8,_0x26e12a,_0x5afed7){return _0x3f98f8(_0x26e12a,_0x5afed7);},'YpsDV':_0x487573(0x246,_0x5ecd2e._0x351974,_0x5ecd2e._0x45fe8,0x23b)+'ed','YOTiP':_0x15dec4(_0x5ecd2e._0x560e9d,-0x1e,_0x5ecd2e._0x1c605c,0x61)+_0x15dec4(-0x12b,-_0x5ecd2e._0x1c6453,-0x167,-_0x5ecd2e._0x1d0fb6)+_0x15dec4(-0xbc,-0x106,-_0x5ecd2e._0x342fbb,-_0x5ecd2e._0x377023)},{parentObjective:_0x1d7910,callingTask:_0x241d87}=_0xd9b65b,{objectiveId:_0x2bda89}=_0xd9b65b[_0x487573(_0x5ecd2e._0x95a204,_0x5ecd2e._0x29c561,0x164,0x196)],_0x5c11c3=tasks['get'](_0x2bda89);if(!_0x5c11c3){if(_0x19548a[_0x15dec4(0xc7,-_0x5ecd2e._0x37df03,_0x5ecd2e._0x38f581,_0x5ecd2e._0x2a8e31)](_0x19548a['vYssv'],_0x19548a['vYssv'])){const _0x3f4bf3={};return _0x3f4bf3['error']=_0x19548a[_0x487573(_0x5ecd2e._0x58876a,0x157,0x13d,0x19a)],_0x3f4bf3[_0x487573(0x27b,0x2d2,_0x5ecd2e._0x3a3950,_0x5ecd2e._0x2420f2)]=_0x19548a['bkFJG'],_0x2cc263[_0x15dec4(-0x72,_0x5ecd2e._0x30a6ca,-0x9a,-0x42)](0x1481+0x131*0x15+0x15f9*-0x2)[_0x15dec4(-_0x5ecd2e._0x228c1a,-0xc2,-0x3b,-_0x5ecd2e._0x2df1b6)](_0x3f4bf3);}else{_0x251862[_0x487573(_0x5ecd2e._0x6a4846,0x24d,_0x5ecd2e._0x2f74dd,0x1d1)](_0x15dec4(-_0x5ecd2e._0x397003,-_0x5ecd2e._0x18e920,_0x5ecd2e._0x3ac3f4,-_0x5ecd2e._0x851880)+_0x15dec4(-_0x5ecd2e._0x4d763a,-0x137,-0x115,-_0x5ecd2e._0x3e0a66)+_0x487573(0x192,0x15d,0x17d,0x158)+_0x15dec4(-_0x5ecd2e._0x5b07f2,-0x3a,-0x8e,-_0x5ecd2e._0x2a2f4f)+_0x15dec4(-_0x5ecd2e._0x3d30c2,-_0x5ecd2e._0x113b8d,_0x5ecd2e._0x2a8e31,0x1e)+_0x15dec4(0x12,-0x74,-_0x5ecd2e._0x31b672,-0x97));const _0x25b659={};return _0x25b659['error']=_0x19548a[_0x487573(_0x5ecd2e._0x2990da,_0x5ecd2e._0x31eff1,_0x5ecd2e._0xac4f64,0x263)],_0x25b659['message']=_0x19548a[_0x487573(_0x5ecd2e._0x2df3da,_0x5ecd2e._0x22a29b,0x1d8,_0x5ecd2e._0x278bb6)],_0x5a0a41[_0x15dec4(-_0x5ecd2e._0x51d648,_0x5ecd2e._0x2ad492,0x30,-0x42)](-0x16*0x2+0x1214+-0x59*0x2f)[_0x487573(0x1d8,0x1ce,_0x5ecd2e._0x5334a5,_0x5ecd2e._0x229844)](_0x25b659);}}if(_0x19548a[_0x15dec4(-_0x5ecd2e._0x3601aa,-0xd0,-0xaa,-0x82)](_0x5c11c3['parentObje'+_0x487573(_0x5ecd2e._0x1216c3,_0x5ecd2e._0x4a4a4d,_0x5ecd2e._0x4c4f02,_0x5ecd2e._0x5ddc03)],_0x1d7910['taskId'])){const _0x5401cb={};return _0x5401cb[_0x487573(_0x5ecd2e._0x1d2c7f,0x1ce,0x190,_0x5ecd2e._0x372f52)]=_0x15dec4(0x66,-0xb,_0x5ecd2e._0x31524b,_0x5ecd2e._0x25807d),_0x5401cb[_0x487573(0x1d4,_0x5ecd2e._0x4b9aa1,_0x5ecd2e._0x5c0faa,_0x5ecd2e._0x2420f2)]=_0x19548a[_0x15dec4(_0x5ecd2e._0x1fc3b9,0xd,0x97,_0x5ecd2e._0x3356a7)],_0x2cc263[_0x15dec4(-0x28,-0x3a,-_0x5ecd2e._0x19c361,-_0x5ecd2e._0x1a7a07)](-0x17*0xd3+0x28*-0x60+0x2388)[_0x15dec4(-_0x5ecd2e._0xefc7d6,-0x8b,-_0x5ecd2e._0x15a377,-0x92)](_0x5401cb);}if(_0x19548a[_0x487573(0x1f2,_0x5ecd2e._0xdc3f97,_0x5ecd2e._0x4d32fd,_0x5ecd2e._0x2b3fb1)](_0x5c11c3[_0x487573(0x17d,_0x5ecd2e._0x448855,0x261,0x1c7)],_0x15dec4(_0x5ecd2e._0x53b02d,0xa,_0x5ecd2e._0x31e333,_0x5ecd2e._0xd472c2))){const _0x20333e={};return _0x20333e[_0x487573(_0x5ecd2e._0x107f96,_0x5ecd2e._0x2d3056,0xdf,0x155)]=_0x19548a['pzMNS'],_0x20333e['message']=_0x19548a[_0x15dec4(-_0x5ecd2e._0x2ea3f0,-0xef,-_0x5ecd2e._0x4dd76b,-_0x5ecd2e._0x1ca882)],_0x2cc263[_0x487573(_0x5ecd2e._0x3d1741,0x1ce,_0x5ecd2e._0x116fee,_0x5ecd2e._0x3d6407)](-0x2e2+0x2091+-0x17*0x139)[_0x487573(0x1fb,_0x5ecd2e._0xf5d3e8,0x196,_0x5ecd2e._0x170eb0)](_0x20333e);}for(const [,_0x3ae939]of tasks[_0x487573(_0x5ecd2e._0x906dd5,_0x5ecd2e._0x359127,0xd0,_0x5ecd2e._0x3d9c6d)]()){if(_0x19548a[_0x15dec4(-0xaa,-_0x5ecd2e._0x5a3c51,-_0x5ecd2e._0x16d4ba,-0x9a)](_0x3ae939['parentObje'+_0x487573(0x122,_0x5ecd2e._0x4e94ee,_0x5ecd2e._0x28bd7e,0x166)],_0x2bda89)&&_0x19548a[_0x487573(_0x5ecd2e._0x50b0df,0xc9,0xe9,0x16d)](_0x3ae939[_0x15dec4(0x51,-_0x5ecd2e._0x31d4ab,-0x2b,-0x42)],_0x19548a[_0x487573(0x12c,_0x5ecd2e._0x1b4281,0xb0,_0x5ecd2e._0x9e2846)])){if(_0x19548a[_0x487573(_0x5ecd2e._0x21bcd4,_0x5ecd2e._0x3a1232,0x2a9,0x24b)](_0x15dec4(0x6,-_0x5ecd2e._0x235008,-_0x5ecd2e._0x154d59,-_0x5ecd2e._0xd14d77),_0x19548a['ztwEE'])){const _0x119251={};return _0x119251[_0x487573(_0x5ecd2e._0x26e7ac,0x152,0x15f,0x155)]=_0x19548a['bQZnG'],_0x119251[_0x487573(_0x5ecd2e._0x243dc9,_0x5ecd2e._0x5e9806,_0x5ecd2e._0x2f3b26,_0x5ecd2e._0x2420f2)]=_0x19548a[_0x487573(_0x5ecd2e._0x465060,_0x5ecd2e._0x1d3c70,_0x5ecd2e._0xfc35c7,0x15a)],_0x2cc263[_0x487573(_0x5ecd2e._0x4c7a2f,0x1bc,0x1fd,_0x5ecd2e._0x3d6407)](-0xdaf*-0x1+0x1fb5*-0x1+-0x139f*-0x1)[_0x15dec4(-0xbe,-_0x5ecd2e._0x31aeec,-_0x5ecd2e._0x393af1,-_0x5ecd2e._0x2df1b6)](_0x119251);}else _0x43e679[_0x15dec4(-_0x5ecd2e._0x4b9540,-_0x5ecd2e._0xd12bdb,-0x85,-_0x5ecd2e._0x4b9540)]=_0x3719a2;}}const _0x531f92={};_0x531f92['taskId']=_0x241d87[_0x487573(0x16d,_0x5ecd2e._0x15c289,_0x5ecd2e._0x8be4bf,_0x5ecd2e._0x28a762)],_0x531f92[_0x15dec4(-0xd,-0x4e,-_0x5ecd2e._0x3eee60,-0x7f)+'ctiveId']=_0x1d7910['taskId'],_0x531f92[_0x487573(_0x5ecd2e._0xf5fe90,0x19e,0x147,0x151)+_0x487573(_0x5ecd2e._0x368a80,0x241,_0x5ecd2e._0x45de7e,0x208)]=_0x2bda89,_0x531f92[_0x487573(_0x5ecd2e._0x1ef999,0x124,_0x5ecd2e._0x521175,0x151)+_0x487573(0x1c9,0x292,_0x5ecd2e._0x31eff1,0x24e)]=_0x5c11c3['name'],logger[_0x15dec4(-0x1e,-0x83,-0x11a,-_0x5ecd2e._0x5431e1)](_0x19548a[_0x15dec4(_0x5ecd2e._0x51d648,_0x5ecd2e._0x364118,_0x5ecd2e._0x5f289e,_0x5ecd2e._0x4650bb)],_0x531f92),tasks[_0x15dec4(0x5e,0x32,0x18,0x67)](_0x2bda89);function _0x487573(_0x26575e,_0x58349f,_0xe417f0,_0x4e67d7){return _0x192b07(_0x26575e-0xda,_0x58349f,_0xe417f0-_0x107157._0x1041fd,_0x4e67d7-0x32b);}try{const _0x38d990=await findTaskDirectory(_0x2bda89);if(_0x38d990){const _0x1cf64f={};_0x1cf64f['recursive']=!![],_0x1cf64f[_0x15dec4(_0x5ecd2e._0x5ca759,_0x5ecd2e._0xabfcab,_0x5ecd2e._0x406d5d,_0x5ecd2e._0x47f087)]=!![],await _0x46fc36['rm'](_0x38d990,_0x1cf64f);}}catch(_0x30c7ce){const _0x47974d={};_0x47974d[_0x15dec4(-0x41,-_0x5ecd2e._0x25d401,-_0x5ecd2e._0x28baf5,-0x85)+'d']=_0x2bda89,_0x47974d['error']=_0x30c7ce[_0x15dec4(0xa5,0x85,0x90,_0x5ecd2e._0x45084d)],logger[_0x487573(0xd2,0x172,0xb2,0x155)](_0x19548a[_0x487573(_0x5ecd2e._0x5a3a43,_0x5ecd2e._0xe2ffb7,_0x5ecd2e._0x49e75f,0x1ba)],_0x47974d);}if(broadcastTaskUpdate){const _0x5a8e20={};_0x5a8e20[_0x15dec4(-_0x5ecd2e._0x2bed70,-_0x5ecd2e._0x425fed,-0x3d,-_0x5ecd2e._0x8d4014)]=_0x2bda89,_0x19548a[_0x15dec4(-0xdb,-_0x5ecd2e._0x49072d,-0x92,-0x91)](broadcastTaskUpdate,_0x19548a[_0x15dec4(0x71,-0x35,0x9,0x38)],_0x5a8e20);}const _0x19c3f5={};_0x19c3f5[_0x487573(_0x5ecd2e._0x13abe3,_0x5ecd2e._0x33abca,0x244,_0x5ecd2e._0x4c50e9)]=_0x241d87[_0x487573(_0x5ecd2e._0x52b1c6,0x1e8,0x1f8,_0x5ecd2e._0x58d0a9)];function _0x15dec4(_0x10ffb6,_0x3df5b9,_0x710cec,_0x374294){return _0x587fca(_0x10ffb6-_0xe07232._0x344c01,_0x374294-0x176,_0x710cec,_0x374294-_0xe07232._0x2fc843);}_0x19c3f5[_0x487573(0xed,_0x5ecd2e._0x580518,0xec,_0x5ecd2e._0x5e1c2f)+'veId']=_0x2bda89,logger[_0x487573(_0x5ecd2e._0x1c35cb,_0x5ecd2e._0x3734d4,_0x5ecd2e._0x2708d3,0x14f)](_0x19548a['YOTiP'],_0x19c3f5);const _0x4c8d89={};_0x4c8d89['success']=!![],_0x4c8d89[_0x15dec4(-_0x5ecd2e._0x177ebf,-_0x5ecd2e._0xdd753a,-0x42,-0x28)]=_0x2bda89,_0x2cc263['json'](_0x4c8d89);});function generateObjectiveId(){const _0x3e642f={_0x265122:0x2d7,_0x19bcc0:0x2e8,_0xd39f2d:0x360,_0x4c6f61:0x15f},_0x1f3387={_0x231b82:0x27,_0x710df5:0x77},_0x46f51b={_0x396922:0x465};function _0xada844(_0x14a669,_0xf4493f,_0x5339f9,_0x382fe9){return _0x192b07(_0x14a669-0x1dc,_0x382fe9,_0x5339f9-0x1f4,_0x14a669-_0x46f51b._0x396922);}function _0x82c415(_0x36d672,_0x112f36,_0x457644,_0x1bb6c7){return _0x192b07(_0x36d672-_0x1f3387._0x231b82,_0x36d672,_0x457644-_0x1f3387._0x710df5,_0x457644- -0x1c);}return Date[_0xada844(_0x3e642f._0x265122,0x34c,_0x3e642f._0x19bcc0,_0x3e642f._0xd39f2d)]()+'-'+Math['random']()['toString'](-0x1670+0x26a7+0x5*-0x337)[_0x82c415(-0x1a9,-0xe0,-_0x3e642f._0x4c6f61,-0x197)](0x8*-0x310+0x11d3+0x6af,-0x2421+0x233*-0x9+0x37f5);}function _0x24a2(_0x3ee89c,_0x3fdce1){_0x3ee89c=_0x3ee89c-(-0x1fae+-0x100d+0x3021);const _0x343ff4=_0x2193();let _0x4b33e4=_0x343ff4[_0x3ee89c];if(_0x24a2['SwwpKc']===undefined){var _0x419a87=function(_0x2b238b){const _0x372c70='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x168c85='',_0xb5e19='';for(let _0x3e591d=0xf4*0x1+0xa2a+-0xb1e,_0x2c024b,_0x52ac00,_0x2ad312=-0x25*0xcf+-0x1b2d+0x3918;_0x52ac00=_0x2b238b['charAt'](_0x2ad312++);~_0x52ac00&&(_0x2c024b=_0x3e591d%(0x13e*-0x8+-0xbba+-0x5*-0x456)?_0x2c024b*(0x252c*-0x1+0x22b3+0x2b9*0x1)+_0x52ac00:_0x52ac00,_0x3e591d++%(0x1*0xcab+0x158*0x1a+0x3*-0xfdd))?_0x168c85+=String['fromCharCode'](0x2040+-0x2512+0x1*0x5d1&_0x2c024b>>(-(-0x13b4+0x2688+-0x6*0x323)*_0x3e591d&0x1044+0x7f*-0x14+0x652*-0x1)):-0x1*0x19f+0x102c+0x19*-0x95){_0x52ac00=_0x372c70['indexOf'](_0x52ac00);}for(let _0x533151=-0x1fc*0x10+-0x1b4a+0x3*0x13ae,_0x2d93f0=_0x168c85['length'];_0x533151<_0x2d93f0;_0x533151++){_0xb5e19+='%'+('00'+_0x168c85['charCodeAt'](_0x533151)['toString'](-0x547+-0x2b4+0x1*0x80b))['slice'](-(-0x295*0x4+0x6*0x3b3+-0xbdc));}return decodeURIComponent(_0xb5e19);};_0x24a2['txLNCQ']=_0x419a87,_0x24a2['TdHDbH']={},_0x24a2['SwwpKc']=!![];}const _0x37468c=_0x343ff4[0x2102+0xa4*0xe+-0x29fa],_0x25dac3=_0x3ee89c+_0x37468c,_0x427783=_0x24a2['TdHDbH'][_0x25dac3];return!_0x427783?(_0x4b33e4=_0x24a2['txLNCQ'](_0x4b33e4),_0x24a2['TdHDbH'][_0x25dac3]=_0x4b33e4):_0x4b33e4=_0x427783,_0x4b33e4;}async function findTaskDirectory(_0x148291){const _0xca329b={_0x28b18c:0xae,_0x59dfe6:0x11,_0x25c5a2:0x9,_0x53153e:0x35a,_0x177127:0x2cc,_0x316827:0x4d,_0x3912c2:0x28,_0x4401c1:0x278,_0x3af619:0x26a,_0x258a19:0xe6,_0x12b3ba:0x5f,_0x44dc28:0x3b,_0x16a183:0x2b3,_0x371b33:0x30d,_0x21f07a:0x2d5,_0x4dc1d9:0x2ca,_0x5d49dc:0x301,_0x46f887:0x4a,_0x214bed:0x15,_0x4be7f0:0x7a,_0x54457f:0x4,_0x22e7dc:0xa9,_0xd09a62:0xce,_0x271bdd:0xf0,_0x26d096:0xa0,_0x47a080:0x27,_0xbe59d2:0x112,_0x2e26fa:0x71,_0x1033f0:0x28e,_0x15748a:0x2f2,_0x25c504:0x4a,_0x11fb4f:0x29,_0x20d75c:0x5e,_0x56d1b3:0x78,_0xc61d3c:0x30,_0x8b79ee:0xb6,_0x3d4f07:0x4c,_0x3a2955:0x19,_0x413f65:0x3e,_0x410a72:0x49,_0x26bfaa:0x2a4,_0x301f8c:0x27b,_0xf9e12e:0x32e,_0x2dd685:0x252,_0x7e4ba1:0x21e,_0x2f0dc4:0x24a,_0x360933:0x376,_0xacceb5:0x2e5,_0x3e6b49:0x304,_0x1cd6a2:0x22b,_0x575902:0x11,_0x1f92dd:0x277,_0x3b3dfa:0x2b4,_0x171963:0x216,_0x45f187:0x25f,_0x3913d0:0x1de,_0x243d49:0x1fb,_0x5adb7a:0x221,_0x4304e3:0x2db,_0x211859:0x2be},_0x128c31={_0x220d2a:0x6c,_0x3fcce1:0x16a},_0x20852a={_0xc4451d:0x27},_0xfa6f01={'RTBwY':function(_0x44fae1,_0x4203b2){return _0x44fae1===_0x4203b2;},'mDRlt':function(_0x589d82,_0xe4eafe){return _0x589d82(_0xe4eafe);},'fJrXc':function(_0x2b726a,_0x4470c){return _0x2b726a<=_0x4470c;},'rqWlP':function(_0x5e9d54,_0x255e56){return _0x5e9d54+_0x255e56;},'ahVMn':function(_0x5311e0,_0x24478a){return _0x5311e0!==_0x24478a;},'KdGnr':'TRkQM'};if(!taskStoragePath)return null;function _0x980f5(_0x5d04a0,_0x492786,_0x51e534,_0x3ac283){return _0x192b07(_0x5d04a0-0xfc,_0x3ac283,_0x51e534-_0x20852a._0xc4451d,_0x51e534-0x3df);}const _0x49ee96=_0xfa6f01[_0x409b42(-_0xca329b._0x28b18c,-_0xca329b._0x59dfe6,-_0xca329b._0x25c5a2,-0x37)](parseInt,process['env'][_0x980f5(_0xca329b._0x53153e,_0xca329b._0x177127,0x2d6,0x2b2)+_0x409b42(_0xca329b._0x316827,_0xca329b._0x3912c2,0x8b,0x18)])||0x125*-0x1+0x1c66*-0x1+0x8*0x3df,_0x587369=new Date();for(let _0x560d31=0xb43+0x1769+0x1156*-0x2;_0xfa6f01[_0x980f5(_0xca329b._0x4401c1,0x26e,0x240,_0xca329b._0x3af619)](_0x560d31,_0x49ee96);_0x560d31++){const _0x38a11a=new Date(_0x587369);_0x38a11a[_0x409b42(0x1b,-_0xca329b._0x258a19,-_0xca329b._0x12b3ba,-_0xca329b._0x44dc28)](_0x38a11a[_0x980f5(0x244,0x30d,0x2ed,_0xca329b._0x16a183)]()-_0x560d31);const _0x378f6b=_0x38a11a[_0x980f5(_0xca329b._0x371b33,_0xca329b._0x21f07a,_0xca329b._0x4dc1d9,0x367)+_0x980f5(0x1de,0x21b,0x26b,_0xca329b._0x5d49dc)](),_0x5d5d43=_0xfa6f01[_0x409b42(0x3b,-_0xca329b._0x46f887,-0x9,_0xca329b._0x214bed)](String,_0xfa6f01[_0x409b42(-0x9d,_0xca329b._0x4be7f0,-_0xca329b._0x54457f,-_0xca329b._0x22e7dc)](_0x38a11a['getUTCMont'+'h'](),0x2072*0x1+0x234f+0x10f*-0x40))[_0x409b42(_0xca329b._0xd09a62,_0xca329b._0x271bdd,0x76,_0xca329b._0x26d096)](-0x477+-0x2ef*0xb+0x24be,'0'),_0x1813d7=_0xfa6f01[_0x409b42(_0xca329b._0x47a080,0x85,-0x9,0x2f)](String,_0x38a11a[_0x409b42(_0xca329b._0xbe59d2,0xcc,_0xca329b._0x2e26fa,0xe9)]())[_0x980f5(_0xca329b._0x1033f0,0x2d3,_0xca329b._0x15748a,0x39b)](0xa35*-0x3+0x11e1*-0x1+0x3082,'0'),_0x3fc491=_0x29d3e0['join'](taskStoragePath,_0x378f6b+'-'+_0x5d5d43,_0x378f6b+'-'+_0x5d5d43+'-'+_0x1813d7,_0x148291);try{if(_0xfa6f01[_0x409b42(-_0xca329b._0x25c504,-_0xca329b._0x11fb4f,_0xca329b._0x20d75c,0x8c)](_0x409b42(_0xca329b._0x56d1b3,_0xca329b._0x316827,_0xca329b._0xc61d3c,0xd2),_0xfa6f01[_0x409b42(-0x105,-_0xca329b._0x8b79ee,-0x85,-_0xca329b._0x3d4f07)])){if(_0x3d623c[_0x409b42(0x3d,_0xca329b._0x3a2955,-_0xca329b._0x413f65,_0xca329b._0x410a72)+_0x980f5(0x1af,_0xca329b._0x26bfaa,0x21a,0x23e)]===_0xa88994&&_0xfa6f01[_0x980f5(0x25b,0x251,0x252,0x2c9)](_0x295e04[_0x980f5(0x26b,0x264,_0xca329b._0x301f8c,0x23a)],_0x980f5(0x261,_0xca329b._0xf9e12e,0x2d7,_0xca329b._0x2dd685))){const _0x4c6daf={};return _0x4c6daf[_0x980f5(_0xca329b._0x7e4ba1,_0xca329b._0x2f0dc4,0x209,0x16c)]=_0x980f5(0x1b1,0x1d4,0x1ea,0x27b),_0x4c6daf[_0x980f5(_0xca329b._0x360933,0x26f,_0xca329b._0xacceb5,_0xca329b._0x3e6b49)]='Cannot\x20del'+'ete\x20sub-ob'+_0x980f5(0x2bd,0x231,0x28e,_0xca329b._0x1cd6a2)+'at\x20has\x20chi'+_0x409b42(-0x2a,_0xca329b._0x575902,-0x96,-0xde)+_0x980f5(_0xca329b._0x1f92dd,_0xca329b._0x3b3dfa,0x2b4,_0xca329b._0x171963)+_0x980f5(_0xca329b._0x45f187,0x20f,_0xca329b._0x3913d0,_0xca329b._0x243d49),_0x28665f[_0x980f5(0x211,_0xca329b._0x5adb7a,_0xca329b._0x301f8c,0x2b8)](-0x25*-0x57+0x15b2+-0x20ac)['json'](_0x4c6daf);}}else return await _0x46fc36[_0x980f5(0x252,_0xca329b._0x4304e3,_0xca329b._0x211859,0x2e2)](_0x3fc491),_0x3fc491;}catch{}}function _0x409b42(_0x182f96,_0x25cc33,_0x40fffe,_0x550b4b){return _0x192b07(_0x182f96-_0x128c31._0x220d2a,_0x182f96,_0x40fffe-_0x128c31._0x3fcce1,_0x40fffe-0x163);}return null;}function _0x192b07(_0xef3f5d,_0x1d33be,_0x19bd7b,_0x21f0a1){const _0xfebd28={_0x430d93:0x26b};return _0x24a2(_0x21f0a1- -_0xfebd28._0x430d93,_0x1d33be);}async function createObjectiveDirectory(_0x4335c7,_0x59fa65){const _0x2e5369={_0x4fab6a:0x133,_0x53a536:0x85,_0x3fd77a:0x260,_0x34cfed:0x1c1,_0x149180:0x210,_0xcd81e1:0x142,_0x1e1a88:0x11a,_0x23ee62:0xd7,_0x4819ce:0xd0,_0x555a5d:0x22,_0x122efc:0x56,_0x304e3d:0x83,_0x52d683:0xd2,_0x445c78:0x71,_0xf81dbc:0x168,_0x563dba:0x1f0,_0x519929:0x3c,_0x5572fd:0x25,_0x2a0df8:0x77,_0x43f02e:0xd5,_0x3d8c8b:0xa6,_0x2e37d0:0x13c,_0x1b5432:0x17,_0x136b97:0xaa,_0x1b58c4:0x37,_0x565cae:0xad,_0x10020b:0x4f,_0x1e138b:0xa3},_0x19dd1e={_0x1dcc44:0x18f},_0x9aadc8={_0x148d13:0x58,_0x5183f8:0x1ec,_0x1978c4:0x198},_0x145942={'AdTTa':function(_0xd5b32f,_0x25047d){return _0xd5b32f===_0x25047d;},'IgxUA':'UuLOW','dcKuf':'Task\x20stora'+_0x3dbac2(-0xfa,-_0x2e5369._0x4fab6a,-0x15b,-0xe4)+_0x53e689(_0x2e5369._0x53a536,0x86,0x8b,0x13)+'ed','LhsxH':function(_0x190f86,_0x4b9430){return _0x190f86(_0x4b9430);},'nBKPL':function(_0x144872,_0x517e33){return _0x144872+_0x517e33;}};if(!taskStoragePath){if(_0x145942[_0x3dbac2(-_0x2e5369._0x3fd77a,-0x1f8,-0x149,-0x1be)](_0x145942[_0x3dbac2(-0x215,-_0x2e5369._0x34cfed,-0x1d0,-0x1ba)],_0x3dbac2(-_0x2e5369._0x149180,-_0x2e5369._0xcd81e1,-_0x2e5369._0x1e1a88,-0x1b7)))throw new Error(_0x145942['dcKuf']);else _0x122ee6=_0x5dadfa[_0x3dbac2(-0x15a,-0x4c,-_0x2e5369._0x23ee62,-_0x2e5369._0x4819ce)](_0x30a15f,_0x3d3bf4[_0x53e689(_0x2e5369._0x555a5d,0x82,-_0x2e5369._0x122efc,-0x6b)]);}const _0x2b0d7e=new Date(_0x59fa65);function _0x53e689(_0xaf5021,_0x37078c,_0x184313,_0x297539){return _0x192b07(_0xaf5021-_0x9aadc8._0x148d13,_0x297539,_0x184313-_0x9aadc8._0x5183f8,_0xaf5021-_0x9aadc8._0x1978c4);}const _0x449fac=_0x2b0d7e[_0x53e689(_0x2e5369._0x304e3d,0xe5,0xa1,_0x2e5369._0x52d683)+'Year'](),_0x466f78=_0x145942[_0x53e689(0x9d,0xcd,_0x2e5369._0x445c78,0xb)](String,_0x145942[_0x3dbac2(-_0x2e5369._0xf81dbc,-_0x2e5369._0x563dba,-0x148,-0x1b0)](_0x2b0d7e[_0x53e689(0x3d,-_0x2e5369._0x519929,-0x60,-_0x2e5369._0x5572fd)+'h'](),0x3a*-0x53+-0x316+0x1*0x15e5))['padStart'](-0x3*0xafc+0x7df+-0x1*-0x1917,'0'),_0x2251e9=_0x145942[_0x3dbac2(-0x12f,-_0x2e5369._0x2a0df8,-_0x2e5369._0x43f02e,-_0x2e5369._0x52d683)](String,_0x2b0d7e[_0x53e689(_0x2e5369._0x3d8c8b,_0x2e5369._0x2e37d0,_0x2e5369._0x1b5432,0x10d)]())[_0x3dbac2(-_0x2e5369._0x136b97,-0x15a,-_0x2e5369._0x1b58c4,-0xc4)](-0x1b0d+-0x5*-0x24b+0x3e6*0x4,'0'),_0x1a4fd3=_0x29d3e0['join'](taskStoragePath,_0x449fac+'-'+_0x466f78,_0x449fac+'-'+_0x466f78+'-'+_0x2251e9,_0x4335c7),_0x4f5d54={};function _0x3dbac2(_0x375525,_0x49bff6,_0x30359f,_0xc8b3d1){return _0x587fca(_0x375525-_0x19dd1e._0x1dcc44,_0xc8b3d1-0x7d,_0x30359f,_0xc8b3d1-0x1f);}return _0x4f5d54['recursive']=!![],await _0x46fc36[_0x53e689(_0x2e5369._0x565cae,_0x2e5369._0x10020b,0x70,_0x2e5369._0x1e138b)](_0x1a4fd3,_0x4f5d54),_0x1a4fd3;}export default router;
|
|
1
|
+
(function(_0x2e9601,_0x4c70ff){const _0x50e682={_0x47e88b:0x7f,_0x4b166b:0xb2,_0x37d05e:0x133,_0x24790d:0x10f,_0x37f43b:0x22b,_0x8c7535:0x1bc,_0x4cdbe7:0x190,_0xa7d1f2:0x217,_0x55fb6e:0x216,_0x364b1e:0x251,_0x307891:0x233,_0x4bd920:0x284,_0x13997f:0x70,_0x16f869:0xbf,_0x3b9ecd:0x76,_0x31870e:0x81,_0x3e3e53:0x5e,_0xbd22ee:0xe1,_0x3bcb14:0x148,_0x85f93b:0x100,_0x570e60:0x162,_0x13d7ab:0x130};function _0x1ee812(_0xcb10ec,_0x5b8a57,_0x1ccf3d,_0x4e1cb2){return _0x8067(_0xcb10ec- -0x249,_0x1ccf3d);}function _0x298932(_0x35b593,_0x504b75,_0x45dafc,_0x130faf){return _0x8067(_0x35b593-0x94,_0x45dafc);}const _0xab31aa=_0x2e9601();while(!![]){try{const _0x20545d=-parseInt(_0x1ee812(-0x31,_0x50e682._0x47e88b,-_0x50e682._0x4b166b,0x1e))/(0x926+0x2166+-0x2a8b)*(-parseInt(_0x1ee812(-_0x50e682._0x37d05e,-0x189,-0xb4,-_0x50e682._0x24790d))/(-0x2*0x503+-0x1*-0x175a+-0x5*0x2aa))+parseInt(_0x298932(_0x50e682._0x37f43b,_0x50e682._0x8c7535,0x1bc,0x2c1))/(-0xf*-0x24c+-0x20d3*-0x1+-0x4344)*(-parseInt(_0x298932(_0x50e682._0x4cdbe7,0x10b,0x1ad,0x192))/(-0x3b*0x92+-0xc89+0x2e33))+parseInt(_0x298932(0x201,0x1d1,_0x50e682._0xa7d1f2,_0x50e682._0x55fb6e))/(-0x8e8+0x1647+-0xd5a)*(-parseInt(_0x298932(_0x50e682._0x364b1e,_0x50e682._0x307891,0x206,_0x50e682._0x4bd920))/(0x1092*-0x2+-0x3*-0x43c+-0x1476*-0x1))+-parseInt(_0x1ee812(-0x8b,-0x12f,-0x58,-_0x50e682._0x13997f))/(-0x2168+0x1*0xb9d+-0x7*-0x31e)+parseInt(_0x1ee812(-0x84,-_0x50e682._0x16f869,-_0x50e682._0x3b9ecd,-0x47))/(-0x191*0x1+-0x142d+-0xae3*-0x2)+-parseInt(_0x1ee812(-_0x50e682._0x31870e,-0x89,-_0x50e682._0x3e3e53,-_0x50e682._0xbd22ee))/(0x5*-0x1e9+0x76f+0x227)+parseInt(_0x1ee812(-0xff,-_0x50e682._0x3bcb14,-0xf8,-0xda))/(0x2504+-0x722+-0x1dd8)*(parseInt(_0x1ee812(-_0x50e682._0x85f93b,-0x1b2,-_0x50e682._0x570e60,-_0x50e682._0x13d7ab))/(-0x1bbd+-0x1eab+0x3a73));if(_0x20545d===_0x4c70ff)break;else _0xab31aa['push'](_0xab31aa['shift']());}catch(_0x5ace61){_0xab31aa['push'](_0xab31aa['shift']());}}}(_0x3952,-0x8359f+-0xeda*0xe5+0x206e8a));import _0x1a3bb7 from'express';import{promises as _0x1cf7b5}from'fs';function _0x3952(){const _0x49e22a=['vefts19mt0fexW','CgfYyw1LDgvYCW','zw4GzMLYC3qU','C2v0','zenIr28','rfjqB0O','y2X1zguGiM9IAG','BwfUDwfS','AxzLihvWzgf0zq','whHJtKK','ig9IAMvJDgL2zq','uMvUyKG','AxnbCNjHEq','qNvPsNK','EgTruMS','DLbeDeC','Bwv0ywrHDgeUAG','AMvJDgL2zsb0Aa','igzYB20GzgLZAW','DgL2zxm','A3vHCvi','AxrOihvUA25VDW','DfbZtfK','BNvTyMvY','zxrLignOAwXKCG','thPxsLi','rMvhDe0','CuP5r04','AxzLig5VDcbMBW','BMuGzMLLBgqGka','yMLyBMi','zwn0AxzLihvWza','ihjLCxvLC3qGDW','z2v0','C3vJy2vZCW','q0nNEvm','C3rZ','tLPXENe','BgvUz3rO','B2jQzwn0AxzL','igeGy2HPBgqGBW','wwLMDMO','ww5eEhm','A0XcB3C','ig11C3qGAgf2zq','s0PVrw4','AxzLigrLBgv0zq','EMvK','AvDXB2e','u3jYr1C','tgjVrw0','ufHHy0W','vgfZAY1jzcbOzq','twLZC2LUzYbylq','t3zfqKi','CffbB0m','C3rYAw5N','mtaWt1Hjrgjh','t3r5zu4','AgvHzgvYCW','B2jQzwn0AxzLCW','qxqGBgvHC3qGBW','EvHuEMK','t2frBKi','tNjZvKe','C3rYAw5NAwz5','y2fSBgLUz1rHCW','uw50vhK','twf1ENi','v0vuCwy','tM90iezVDw5K','rejgthC','CgvYC2LZDcbZDq','u3vIlw9IAMvJDa','vfjkBMe','y291BNq','yxqGBgvHC3qGBW','wwvHCG','ugX2CNq','vhrut2u','zePpEgS','z2v0vvrdrgf0zq','ten5q0C','mtaWnJC0oe1AuhzWrq','yM9KEq','y3rPDMvjza','veTQwuG','AxzLigLZig5VDa','yKjts0u','CK55Cwi','yxqGAw5KzxGG','De9IAMvJDgL2zq','qLj0DLu','DxrMltG','DgfZA3m','zwrbDa','s1bXDxm','svr0reG','BwfUywDLBwvUDa','BgrYzw4UierLBa','zwrcEvrHC2Tjza','BxPyCei','zM9Yy2u','yKfirw8','ANnVBG','Aw5NihnPyMXPBG','AMvJDgL2zxm','l2nOAwXKCMvU','BM90igfUig9IAG','C3vIt2jQzwn0Aq','yNvMC0K','EvfeBwO','zcbIEsb0yxnR','C2LIBgLUz0nVDq','DxnPuKG','BLfYuLu','y2HPBgrYzw4','y3jLyxrLza','AxzLigrLDgfPBa','rMXSDgS','s090De0','zwqGyNKGDgfZAW','ywrLCG','D2fZig5VDcbSyq','B3v0Chv0','tuLSEhq','zgvSzxrL','igLUAxrPywXPEG','DgfZA1n0B3jHzW','Dwn0Aw9UCY5Tza','D2fYBG','Ew9IrMW','CLvlv2S','zg5Yuui','mte2mZyWmKjvugLLvG','ntblu1nnwui','Bgf1BMnOq291BG','wgTxyMu','z2X2vu0','Cgf0y2G','DuT4CwS','DxbKyxrLzef0','DMrAs3m','CgfKu3rHCNq','z2v0vvrdrNvSBa','wNv3q0G','sKHKrwq','igeGiM5HBwuIia','BMfTzq','ChjVDMLKzwq','u2vYDMLJzsbUBW','zsb1CgrHDgu','ksbTDxn0igjLia','z3jHBMrWyxjLBG','wwnlCKi','uxrZvue','CM9SEwy','yxnRluLKigHLyq','Aw5ZDhj1y3rPBW','Cg9ZDa','Dg9ju09tDhjPBG','yxjrChi','CgfYyw1Z','ywnJzxnZ','BePqseC','vgfZAYbJCMvHDa','zxrLihn1yI1VyG','sw52ywXPzcb0yq','Ec10yxnRlwLK','CMfUzg9T','mZq4ntyZnurgzMvYyW','zKPvEgK','zIb0AguGCgfYzq','y3jLyxrLzej5','DgL2zxmVoM9IAG','BMfTzsbVCIbPBG','BM90igzVDw5K','zwn0AxzLig5Via','vgfZAYbMzxrJAa','Aw5Nihn1yI1VyG','AunvA0K','C3rHDhvZ','DgL2zq','uhr5yNe','CgfYzw50t2jQzq','yNjVywrJyxn0va','vgHPCYb0yxnRia','Effxs0u','ChrLzcbVyMPLyW','r2jREK0','suPkueO','AvLTEfK','DgfZA0LK','l3n1yI1VyMPLyW','zNvXDLO','zgvSzxrLihn1yG','Aw5NihbHCMvUDa','Dg9tDhjPBMC','zxjYB3i','wNHsBei','tLrfvKK','zvbHDgG','zg1Vyxa','DMvjza','q214s0K','tuXzsxq','EKzpEw8','Dw5K','weLesei','ugrkCvC','refzuW','yxLtCvG','nJKZotnWv01NBfi','s2jZvKy','CMvJDxjZAxzL','yvvrCfC','zw52','DMvoyw1L','vgfZAYbKzwXLDa','igrLDgfPBhm','C29U','Be56A3K','whvWwuq','t2vmswO','DgL2zsbTyw5HzW','v0DKBuu','uMvcBKO','vgfZAYb1CgrHDa','qwHnCKe','ALbMwMG','zuX3CNm','BvL6tgy','v0frDKm','DxDXwfe','BM1uuMC','BMv3lxrHC2S','EevwqwS','uMXuqMK','ChvZAa','CNrYr0y','zw52AxjVBM1LBG','A0Dttei','zw50CMLLCW','z2v0vvrdtw9UDa','Aw5MBW','AgThsfq','q1LkD24','ugfYzw50igLZia','quL6qu0','BuLoA2G','nNv4A0vuzW','mZuZotjZCLb3y0u','ELrMzK0','BsbHBIbVyMPLyW','BIb0yxnRieLe','AxzLCYbJCMvHDa','wKn4uuO','wNLcD0O','odKYmZKYoejACxbqCW','yxnRswq','DfnYuwK','ntG4ntiYnNneENjbDG','r0Hlwfa','zwn0AxzLswq','BNqGB2jQzwn0Aq','lw9IAMvJDgL2zq','uLDPywO','zhKGBxvZDcbPBG','v1j4r2W','Dw5JAgvKigzYBW','BwvZC2fNzq','B2jQzwn0AxzLsq','uM91DgvY','shjszue','yNjHBMnOzxm','AxnZAw5NifGTva','C29YDe9YzgvY','D3jPDgvgAwXL','v0noywG','DgfZA1r5Cgu','ruDkvLq','BwTKAxi','wg9iA00','y3rPDMu','yI1VyMPLy3rPDG','yxqGAgfZignOAq','y3jLyxrLzej5va','zw1LBNqGD2L0Aa','y2HPBgrdB3vUDa','Dvbrvgm','B3v0ihbHCMvUDa','DfbKEKq','sLrbvLK','DgfZAY1PBNn0CG','rMfPBgvKihrVia','C29YDa','ugfYzw50ig9IAG','rM9YyMLKzgvU','Cuzkr2W','Aw5Nig9IAMvJDa','uuHIENm','AMvJDgL2zq','zwn0AxzL','q29UzMXPy3q','tejUBKi','uu94rvm','CwHvAhC','AMvJDgL2zsb1Ca','ywDLBNrZ','CfHOyxu','A0TiCxy','vgfZAYbHDhrLBq','Cxbtwwi','uKvdBgi','zgf0zq','uMDQqKy','zMPQweG','wwPtD0W','DgfZAY11CgrHDa','C2SGsuq','CgvYC2LZDcbVyG','sw50zxjUywWGuW','whvwrLG','svzmueW','qvL5C08','CNjHEsb3AxrOia','EgXNthC','BNrysMK','wxfzuMG','yxnRvxbKyxrL','Aejnrve','uhD5qMK','qMfKifjLCxvLCW','AM9PBG','vgfZAYbZDg9Yyq','l3nPyMXPBMDZ','t2jQzwn0AxzLia','BLDowwm','DcbJB25MAwD1CG','Bg9Uz2vYigv4Aq','t2rUthe','mMTVu3btEq','CYbIEsbjra','BM93','EeLrAKG','rxvTDvi','uhvjywm','zxj2zxiGrxjYBW','uMvXDwvZDcbIBW','wMrPsMO','C291CMnLt2jQzq','q2fUBM90igrLBa','DhrMr0u','y3jLyxrLzef0','zwn0AxzLCYiGyq','Bwf4','shrIAwq','AxnqAw5Uzwq','vgfYz2v0igLZia','CKreA2m','s2rrEhK','C2LIBgLUz3m','z2fiDw4'];_0x3952=function(){return _0x49e22a;};return _0x3952();}function _0x8067(_0x437b41,_0x3d1b20){_0x437b41=_0x437b41-(-0xaee*-0x2+-0x147f+-0x9f);const _0x485c1a=_0x3952();let _0x3bdd04=_0x485c1a[_0x437b41];if(_0x8067['ENCajM']===undefined){var _0x5ce38a=function(_0x57036e){const _0xb1605d='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x3e5cc5='',_0xd014a6='';for(let _0x3e15c9=-0x100*0x3+0x1*0x1901+-0x1601,_0x1b822d,_0x5cff54,_0x5dd568=-0x2b8+-0x4*0x893+0x2504;_0x5cff54=_0x57036e['charAt'](_0x5dd568++);~_0x5cff54&&(_0x1b822d=_0x3e15c9%(-0x1b6e*0x1+0x4e5*-0x3+0x2a21)?_0x1b822d*(0x107*0x20+0x321+0x1*-0x23c1)+_0x5cff54:_0x5cff54,_0x3e15c9++%(0xe*0x73+-0x1b16+0x14d0))?_0x3e5cc5+=String['fromCharCode'](-0x1923*-0x1+-0x56e*-0x3+0x19*-0x19e&_0x1b822d>>(-(0x89a*0x2+0x1033+-0x2165)*_0x3e15c9&0x2*-0xffb+-0x12e2*0x1+0x32de)):-0x22b2*0x1+0x11a*-0x16+0x3aee*0x1){_0x5cff54=_0xb1605d['indexOf'](_0x5cff54);}for(let _0x1890ad=0x4*-0x3ac+0x25ee+-0x173e,_0x4b3bd3=_0x3e5cc5['length'];_0x1890ad<_0x4b3bd3;_0x1890ad++){_0xd014a6+='%'+('00'+_0x3e5cc5['charCodeAt'](_0x1890ad)['toString'](-0x49e+-0xd5a+0x1208))['slice'](-(0x714*-0x5+-0x490+0x27f6));}return decodeURIComponent(_0xd014a6);};_0x8067['BhdNCN']=_0x5ce38a,_0x8067['avJBtA']={},_0x8067['ENCajM']=!![];}const _0x5bcdbe=_0x485c1a[0xb0d+-0x15bb*0x1+0xaae],_0x5e681f=_0x437b41+_0x5bcdbe,_0x4bd448=_0x8067['avJBtA'][_0x5e681f];return!_0x4bd448?(_0x3bdd04=_0x8067['BhdNCN'](_0x3bdd04),_0x8067['avJBtA'][_0x5e681f]=_0x3bdd04):_0x3bdd04=_0x4bd448,_0x3bdd04;}import _0x5a9146 from'path';import{logger}from'../lib/logger.js';const router=_0x1a3bb7[_0x26d9a5(0x566,0x4d0,0x56c,0x5c6)]();let tasks=null,taskStoragePath=null,broadcastTaskUpdate=null;export function initializeObjectiveManagement(_0x162ee2){const _0x5bb393={_0x2939dd:0xa1,_0x2016fa:0x11b,_0x36ba2a:0x92,_0x11e2f2:0x255,_0x32c246:0x341,_0x239f97:0x2e6,_0x4ad3e0:0x3e1},_0x23f18b={_0x197046:0x419},_0x80cb9={_0x32d006:0x18c};tasks=_0x162ee2[_0x32196a(0x86,_0x5bb393._0x2939dd,_0x5bb393._0x2016fa,_0x5bb393._0x36ba2a)];function _0x26b51e(_0x1385a7,_0xdee418,_0x1d4445,_0x1bd9e5){return _0x26d9a5(_0x1385a7-_0x80cb9._0x32d006,_0xdee418-0x3c,_0x1d4445- -0x268,_0x1bd9e5);}function _0x32196a(_0xfdab83,_0x2614f9,_0x1a3c0,_0x329d86){return _0x26d9a5(_0xfdab83-0xd2,_0x2614f9-0x1e3,_0x2614f9- -_0x23f18b._0x197046,_0x329d86);}taskStoragePath=_0x162ee2[_0x32196a(0xc9,0xc3,0xb6,0xcc)+_0x26b51e(0x210,_0x5bb393._0x11e2f2,0x2bd,0x2f0)],broadcastTaskUpdate=_0x162ee2[_0x26b51e(0x22a,0x203,0x2ad,_0x5bb393._0x32c246)+_0x26b51e(0x2e1,_0x5bb393._0x239f97,0x33d,_0x5bb393._0x4ad3e0)];}function requireTaskAuth(_0x13b59c,_0x935299,_0x4a5ab6){const _0x3815e8={_0x2fc5b3:0x3ac,_0xc680ed:0x318,_0x1e2337:0x2d9,_0x34b22e:0x2ae,_0x324e28:0x3f2,_0x2cdb63:0x37a,_0x581879:0x3fc,_0x5d3f1d:0x287,_0x39ef00:0x328,_0x399cad:0x26c,_0x1fcdf1:0x2e2,_0xcfe0f6:0x268,_0xd8fd8e:0x282,_0x457360:0x250,_0x30f237:0x3ee,_0x4e2750:0x315,_0x5a1830:0x4d1,_0x2ac7c9:0x423,_0x2d5853:0x27c,_0x2a9619:0x342,_0x4e3b7d:0x39e,_0x427eb7:0x370,_0xfe1dd4:0x38b,_0x37a2b7:0x3e7,_0x512bdc:0x1dc,_0x2fa5c8:0x1e9,_0xd7b3f1:0x2a0,_0x45be67:0x487,_0x3eb4d9:0x3c6,_0x5545cd:0x414,_0x5722d0:0x4a3,_0x3f1357:0x4a5,_0x323e1e:0x42e,_0x1d57ad:0x281,_0x341e3a:0x250,_0x19a692:0x31b,_0x1e4323:0x364,_0x1d94f7:0x323,_0x8190db:0x38a,_0x5c5bcc:0x30b,_0x4d0b26:0x2f4,_0x18e401:0x311,_0x53e571:0x32e,_0x42184d:0x2e5,_0x4d62f6:0x31d,_0xfba121:0x309,_0x59992b:0x41b,_0x286947:0x3f4,_0x11734f:0x3b3,_0xa1fae6:0x2f9,_0x527655:0x34f,_0x2c4f0a:0x395,_0x5b2135:0x3f5,_0x342522:0x1e4,_0x387ac6:0x199,_0x4fab95:0x3ec,_0x2b06a0:0x331,_0x302899:0x3c0,_0x2cda1a:0x220,_0x5b1b9f:0x221,_0xad62a9:0x275,_0x373029:0x173,_0x43337d:0x421,_0x24fbab:0x454,_0x5b9ccd:0x388,_0x2baaf2:0x326,_0x35d3ff:0x2c0,_0x519bba:0x2b8,_0x4d225a:0x36b,_0x154943:0x252,_0x35904c:0x33f,_0x5f584d:0x245,_0x2e1583:0x2e3,_0x58cf82:0x2cd,_0x50f391:0x4b6,_0x33e57d:0x3a7,_0x1b0858:0x3e5,_0xa7c805:0x364,_0x3488ae:0x3a9,_0x441dd7:0x355,_0x4b6b66:0x2e6,_0x96ca63:0x308,_0x386778:0x3a9,_0x59a86f:0x2fd,_0x19e1c1:0x388,_0x55f2ed:0x3da,_0xa62c13:0x3be,_0x4bc816:0x370,_0x37584f:0x29a,_0x595f0c:0x2f5,_0x596882:0x31b,_0xc59a43:0x30f,_0x231394:0x303,_0x3b9170:0x2ca,_0x18427b:0x317,_0x32a571:0x1eb,_0x313f49:0x208,_0x564c01:0x219,_0x24aee9:0x1fc,_0x57a2d2:0x23c,_0x1573ed:0x1db,_0x8434bc:0x1b9,_0x28d961:0x131,_0x13b041:0x2be,_0x31e86e:0x277,_0x1f982b:0x2c2,_0x4c17a1:0x435,_0x49a428:0x3a3,_0x43f6e0:0x334,_0x57d684:0x46c,_0x30e92d:0x483,_0x1326c0:0x3ff,_0x364737:0x2be,_0x1b1b49:0x35d,_0x1a4720:0x234,_0x14fe2d:0x377,_0x241728:0x2e0,_0x119697:0x25b,_0x55e14f:0x360,_0x3203b0:0x302,_0x4a4b12:0x244,_0x5957c2:0x2da,_0x5013e5:0x311,_0x2ae5b5:0x292,_0xc6c3e7:0x1f2,_0x6434ad:0x18e,_0x4a2130:0x27c,_0x3c43f8:0x1d0,_0x394a00:0x233,_0x4e7e7f:0x401,_0xbd3e10:0x2f7,_0x1d8aa4:0x3f4,_0x328c8d:0x388,_0xdbce75:0x242,_0x1459df:0x2ee,_0x4d9227:0x338,_0x287812:0x2f7,_0x475145:0x2be,_0x4a58d:0x2bc,_0x1ba91d:0x328,_0x1bd10d:0x277,_0x59ecfd:0x3aa,_0x4b7799:0x364,_0x29ace8:0x258,_0x2472b4:0x2fd,_0x43d8b1:0x204,_0x53ab66:0x26a,_0x15c7f2:0x24f,_0x3b0c1b:0x241,_0x4e22a8:0x267,_0x3ea5de:0x351,_0x35150a:0x25c,_0x660e3c:0x28e,_0x37e69a:0x2c4,_0x3ecf7e:0x239,_0x3a8391:0x483,_0xc52b1:0x376,_0x16ec98:0x313,_0x325ade:0x2cf,_0x2093b7:0x220,_0x1475be:0x2a1,_0x520289:0x2d7,_0x2323f1:0x2db,_0x475b15:0x3b7,_0x2efe28:0x298,_0x55c87c:0x315,_0x4bf168:0x338,_0x2821f2:0x3a1,_0x1d8347:0x3a4,_0x106ab6:0x328,_0x474284:0x209,_0x5548c9:0x2a2,_0x129103:0x431,_0x3214e8:0x3d5,_0x104306:0x3cc,_0x4460d5:0x484,_0xd9053:0x2e8,_0x8beb6c:0x3bc,_0x1f9fcb:0x2b2,_0x46a214:0x2ba,_0x1ea548:0x3b8,_0x26d7f0:0x3d5,_0x200946:0x2e7,_0x2dbf54:0x426,_0x2de018:0x1e5,_0x1ad844:0x180,_0x254ca7:0x290,_0x47548d:0x343,_0x10e60c:0x3d0,_0x2fabb4:0x422,_0x38f9ad:0x3fb,_0x2c84b0:0x2eb,_0x1f049c:0x4d7,_0x16a690:0x3fd,_0x8caa95:0x379,_0x2dd959:0x2d2,_0x1dfd21:0x2f7,_0x525ddb:0x28f,_0x5b56fc:0x3ab,_0x477eb0:0x38b,_0x4bd986:0x2d3,_0x1936dd:0x31b,_0x12c9ca:0x330,_0x3a8e3f:0x1f0,_0x2127a3:0x410,_0x3dfd62:0x23d,_0x322dde:0x218,_0x39eca5:0x2b4,_0x4095e3:0x1d6,_0x590144:0x34c,_0x301698:0x393,_0x3145b2:0x3d7,_0x1af56a:0x22f,_0x5a591e:0x2d0,_0xf502ea:0x1b4,_0x5dae20:0x2e1,_0x13cff9:0x3bd,_0x22cbd5:0x388,_0x32bc3a:0x3c1,_0x22b2d0:0x416,_0x4c73b9:0x22c,_0x3e1d7e:0x31a,_0x458dee:0x2ad,_0x25c381:0x265,_0x31d9f3:0x208,_0x3f63b8:0x3a8,_0x3b5d8d:0x3b5,_0x41f5c7:0x3ca,_0x6fc9a8:0x1fa,_0x5aa217:0x246,_0x482188:0x1d8,_0x4fa82d:0x24b,_0x328203:0x3c7,_0x489a40:0x2c2,_0x359112:0x33b,_0x300b67:0x32b,_0x132b9a:0x2f5,_0x1b7789:0x2cf,_0x57393c:0x253,_0x3d85d2:0x1e3,_0x450a55:0x18c,_0x1ae533:0x1d1},_0x46d593={_0xc188bb:0x65},_0x54c43f={_0x3ce3c4:0xbf},_0x2d1baf={'PxaEI':function(_0x1bc75b,_0x43ee01,_0x10adaf){return _0x1bc75b(_0x43ee01,_0x10adaf);},'XIDHB':_0x4836a1(_0x3815e8._0x2fc5b3,_0x3815e8._0xc680ed,_0x3815e8._0x1e2337,_0x3815e8._0x34b22e)+'ed','mYzLf':_0xb7fa9e(_0x3815e8._0x324e28,0x36e,_0x3815e8._0x2cdb63,_0x3815e8._0x581879),'YnDxs':'Sub-object'+_0xb7fa9e(0x35a,0x292,0x2e2,0x32a)+_0xb7fa9e(_0x3815e8._0x5d3f1d,_0x3815e8._0x39ef00,_0x3815e8._0x399cad,0x2fb)+'f\x20the\x20pare'+_0x4836a1(0x2b3,_0x3815e8._0x1fcdf1,0x33d,0x35f)+'ve','vPDtG':_0x4836a1(_0x3815e8._0xcfe0f6,_0x3815e8._0xd8fd8e,_0x3815e8._0x457360,0x2f9),'YjSwL':function(_0x1a72cc,_0x33ac25){return _0x1a72cc===_0x33ac25;},'AYysO':_0xb7fa9e(_0x3815e8._0x30f237,0x387,_0x3815e8._0x4e2750,0x364),'xQWKE':_0xb7fa9e(0x3e0,0x42b,_0x3815e8._0x5a1830,_0x3815e8._0x2ac7c9)+_0x4836a1(0x244,0x23c,0x29a,_0x3815e8._0x2d5853)+'\x20request\x20m'+_0x4836a1(0x261,0x2ed,0x293,0x24b)+_0xb7fa9e(_0x3815e8._0x2a9619,0x3d3,_0x3815e8._0x4e3b7d,_0x3815e8._0x427eb7)+'der','AyHKY':'Unauthoriz'+'ed','QHbzs':_0xb7fa9e(_0x3815e8._0xfe1dd4,0x3b8,_0x3815e8._0x37a2b7,_0x3815e8._0x2ac7c9)+_0x4836a1(_0x3815e8._0x399cad,0x23c,_0x3815e8._0x512bdc,_0x3815e8._0x2fa5c8)+'\x20route\x20not'+_0x4836a1(_0x3815e8._0xd7b3f1,0x259,0x257,0x248)+'ed','AhMrA':_0xb7fa9e(0x36d,_0x3815e8._0x45be67,_0x3815e8._0x3eb4d9,_0x3815e8._0x5545cd)+_0xb7fa9e(0x38d,_0x3815e8._0x5722d0,_0x3815e8._0x3f1357,_0x3815e8._0x323e1e)+'r','DtNXP':_0x4836a1(0x337,_0x3815e8._0x1d57ad,_0x3815e8._0x341e3a,_0x3815e8._0x19a692)+_0x4836a1(_0x3815e8._0x1e4323,0x319,0x35e,_0x3815e8._0x1d94f7),'TKjYH':_0x4836a1(_0x3815e8._0x8190db,_0x3815e8._0x5c5bcc,0x25e,0x308),'bJxlC':'rprhs','ReBnJ':_0x4836a1(_0x3815e8._0x4d0b26,_0x3815e8._0x18e401,_0x3815e8._0x53e571,0x370)+_0x4836a1(_0x3815e8._0x42184d,0x296,_0x3815e8._0x4d62f6,0x2c7)+_0xb7fa9e(_0x3815e8._0xfba121,_0x3815e8._0x59992b,_0x3815e8._0x286947,_0x3815e8._0x11734f)+_0x4836a1(_0x3815e8._0x34b22e,_0x3815e8._0xa1fae6,0x305,_0x3815e8._0x527655)+_0xb7fa9e(_0x3815e8._0x2c4f0a,0x3eb,0x38f,_0x3815e8._0x5b2135)+_0x4836a1(0x277,_0x3815e8._0x342522,_0x3815e8._0x387ac6,0x265),'RsQVR':_0xb7fa9e(0x3bd,_0x3815e8._0x4fab95,_0x3815e8._0x2b06a0,_0x3815e8._0x302899),'RenbH':_0x4836a1(0x25f,_0x3815e8._0x2cda1a,_0x3815e8._0x5b1b9f,_0x3815e8._0xad62a9),'tPsLY':function(_0x47bb9c,_0x387b59){return _0x47bb9c!==_0x387b59;},'yXTzi':_0x4836a1(0x18c,0x201,_0x3815e8._0x373029,0x1fb),'IVLPL':_0xb7fa9e(_0x3815e8._0x43337d,0x400,_0x3815e8._0x24fbab,0x3ca)+_0xb7fa9e(0x30c,0x2dc,_0x3815e8._0x5b9ccd,0x33f)+'ective','aySqX':_0x4836a1(0x369,_0x3815e8._0x2baaf2,_0x3815e8._0x35d3ff,0x274)+'t','XxcNI':function(_0x2b173d){return _0x2b173d();}},_0x1f7eaa=_0x13b59c[_0xb7fa9e(_0x3815e8._0x519bba,0x260,_0x3815e8._0x4d225a,0x30e)][_0x2d1baf[_0xb7fa9e(_0x3815e8._0x154943,_0x3815e8._0x35904c,_0x3815e8._0x5f584d,_0x3815e8._0x1fcdf1)]];if(!_0x1f7eaa){if(_0x2d1baf[_0x4836a1(_0x3815e8._0x2e1583,0x317,_0x3815e8._0x58cf82,0x2ad)](_0x2d1baf[_0xb7fa9e(_0x3815e8._0x50f391,0x43e,0x370,0x417)],_0xb7fa9e(_0x3815e8._0x33e57d,0x3cc,_0x3815e8._0x1b0858,_0x3815e8._0xa7c805))){logger[_0xb7fa9e(0x3e6,0x355,_0x3815e8._0x3488ae,_0x3815e8._0x441dd7)](_0x2d1baf[_0xb7fa9e(_0x3815e8._0x4b6b66,0x31b,0x2f0,0x38e)]);const _0x1ff6b7={};return _0x1ff6b7[_0xb7fa9e(0x43e,0x3b3,0x412,0x399)]=_0x2d1baf['AyHKY'],_0x1ff6b7['message']=_0xb7fa9e(0x373,0x3ae,0x339,_0x3815e8._0x96ca63)+_0xb7fa9e(_0x3815e8._0x386778,0x32c,_0x3815e8._0x59a86f,0x307)+_0x4836a1(0x234,0x254,0x2c0,0x297),_0x935299[_0xb7fa9e(0x41e,0x42f,0x36b,_0x3815e8._0x19e1c1)](-0x24a4+0x277*0x1+-0x393*-0xa)[_0xb7fa9e(_0x3815e8._0x55f2ed,_0x3815e8._0xa62c13,_0x3815e8._0x4bc816,0x33b)](_0x1ff6b7);}else{const _0x1243d4={};_0x1243d4[_0x4836a1(0x268,_0x3815e8._0x37584f,0x2cc,_0x3815e8._0x595f0c)]=_0x38212f[_0xb7fa9e(_0x3815e8._0x596882,_0x3815e8._0xc59a43,0x316,0x393)],_0x1243d4[_0x4836a1(_0x3815e8._0x231394,0x26e,_0x3815e8._0x3b9170,_0x3815e8._0x18427b)]=_0x221033[_0x4836a1(_0x3815e8._0x32a571,0x26e,0x280,_0x3815e8._0x313f49)],_0x1243d4[_0x4836a1(_0x3815e8._0x564c01,0x278,_0x3815e8._0x24aee9,0x256)+'ns']=_0x47ca1b[_0x4836a1(_0x3815e8._0x57a2d2,_0x3815e8._0x1573ed,_0x3815e8._0x8434bc,_0x3815e8._0x28d961)]?.[_0x4836a1(0x23d,0x278,_0x3815e8._0x13b041,_0x3815e8._0x31e86e)+'ns'],_0x1243d4['updatedAt']=_0x6a360b[_0xb7fa9e(_0x3815e8._0x4bc816,0x345,_0x3815e8._0x1f982b,0x360)],_0x2d1baf['PxaEI'](_0x5c0b99,_0x2d1baf[_0xb7fa9e(_0x3815e8._0x595f0c,_0x3815e8._0x4c17a1,0x3dd,_0x3815e8._0x49a428)],_0x1243d4);}}if(!tasks){logger[_0x4836a1(_0x3815e8._0x43f6e0,_0x3815e8._0xd7b3f1,0x251,0x2e4)](_0x2d1baf[_0xb7fa9e(_0x3815e8._0x57d684,0x3f5,_0x3815e8._0x30e92d,_0x3815e8._0x1326c0)]);const _0x5d8d04={};return _0x5d8d04['error']=_0x2d1baf[_0x4836a1(0x35d,_0x3815e8._0x364737,_0x3815e8._0x1b1b49,_0x3815e8._0x1a4720)],_0x5d8d04[_0xb7fa9e(0x3c3,0x453,_0x3815e8._0x14fe2d,0x3e1)]=_0x4836a1(0x318,0x270,_0x3815e8._0x241728,_0x3815e8._0x119697)+'t\x20initiali'+_0xb7fa9e(0x288,_0x3815e8._0x55e14f,0x308,_0x3815e8._0x3203b0),_0x935299[_0x4836a1(_0x3815e8._0x4a4b12,0x28f,_0x3815e8._0x5957c2,_0x3815e8._0x5013e5)](-0x65f+0xcf+-0xd*-0x94)['json'](_0x5d8d04);}const _0x3fc7a2=tasks['get'](_0x1f7eaa);if(!_0x3fc7a2){const _0x464933={};_0x464933[_0x4836a1(_0x3815e8._0x2ae5b5,_0x3815e8._0x37584f,0x1f7,0x278)]=_0x1f7eaa,logger['warn'](_0xb7fa9e(0x41b,0x3eb,0x377,_0x3815e8._0x2ac7c9)+_0x4836a1(0x23e,0x23c,_0x3815e8._0xc6c3e7,_0x3815e8._0x6434ad)+_0x4836a1(0x2a6,0x1fa,_0x3815e8._0x4a2130,0x151)+_0x4836a1(_0x3815e8._0x3c43f8,0x1ef,0x213,_0x3815e8._0x394a00)+_0xb7fa9e(_0x3815e8._0x4e7e7f,0x415,0x410,0x3d1),_0x464933);const _0x1786c={};return _0x1786c[_0x4836a1(0x241,0x2a0,0x2e2,0x22c)]=_0x2d1baf['AyHKY'],_0x1786c[_0xb7fa9e(0x373,0x39e,0x40d,0x3e1)]=_0x2d1baf['DtNXP'],_0x935299[_0xb7fa9e(_0x3815e8._0xbd3e10,_0x3815e8._0x5b2135,_0x3815e8._0x1d8aa4,_0x3815e8._0x328c8d)](-0xc15+-0x301*-0x2+0x4*0x1e9)[_0x4836a1(0x2d9,_0x3815e8._0xdbce75,0x1f4,0x2d3)](_0x1786c);}if(!_0x3fc7a2[_0x4836a1(_0x3815e8._0x1459df,_0x3815e8._0x4d9227,0x342,_0x3815e8._0x287812)+_0xb7fa9e(_0x3815e8._0x475145,_0x3815e8._0x4a58d,0x2d9,_0x3815e8._0x1ba91d)]){if(_0x2d1baf[_0xb7fa9e(0x2ce,_0x3815e8._0x1bd10d,_0x3815e8._0x59ecfd,0x329)]===_0x2d1baf['bJxlC']){const _0x548f1e={};return _0x548f1e['error']=_0x2d1baf[_0xb7fa9e(0x469,_0x3815e8._0x4e3b7d,_0x3815e8._0x4b7799,0x3ba)],_0x548f1e[_0x4836a1(_0x3815e8._0x29ace8,0x2e8,_0x3815e8._0x2472b4,0x26c)]=_0x2d1baf[_0x4836a1(0x166,_0x3815e8._0x43d8b1,_0x3815e8._0x53ab66,0x15f)],_0x2b7e8e[_0x4836a1(_0x3815e8._0x15c7f2,0x28f,0x268,0x2b8)](-0x23e6+0x39*0x2e+0x1b3b)[_0x4836a1(_0x3815e8._0x3b0c1b,0x242,_0x3815e8._0x4e22a8,_0x3815e8._0x2ae5b5)](_0x548f1e);}else{const _0x4cb80a={};_0x4cb80a[_0xb7fa9e(0x43c,_0x3815e8._0x3ea5de,0x3c0,0x393)]=_0x1f7eaa,logger[_0x4836a1(0x1ba,_0x3815e8._0x35150a,_0x3815e8._0x660e3c,0x2da)](_0x2d1baf[_0x4836a1(0x2f5,_0x3815e8._0x4a58d,0x22f,_0x3815e8._0x37e69a)],_0x4cb80a);const _0x440649={};return _0x440649[_0x4836a1(0x346,0x2a0,0x30f,_0x3815e8._0x4d9227)]=_0x2d1baf[_0x4836a1(0x21f,0x2c1,0x293,_0x3815e8._0x3ecf7e)],_0x440649[_0xb7fa9e(_0x3815e8._0x3a8391,0x335,_0x3815e8._0xc52b1,0x3e1)]=_0x4836a1(0x313,0x294,_0x3815e8._0x16ec98,_0x3815e8._0x325ade)+_0x4836a1(_0x3815e8._0x2093b7,0x255,_0x3815e8._0x1475be,0x2c7)+'unched\x20fro'+_0x4836a1(0x2be,_0x3815e8._0x520289,_0x3815e8._0x2323f1,0x24f)+'tive',_0x935299['status'](0x44a+-0x10ee+0xe37*0x1)['json'](_0x440649);}}function _0x4836a1(_0x122a1d,_0x1057a5,_0x4c4583,_0xf4b945){return _0x26d9a5(_0x122a1d-0x1a2,_0x1057a5-_0x54c43f._0x3ce3c4,_0x1057a5- -0x282,_0x4c4583);}_0x13b59c[_0xb7fa9e(_0x3815e8._0x475b15,_0x3815e8._0x2efe28,0x345,_0x3815e8._0x55c87c)+'k']=_0x3fc7a2,_0x13b59c['sourceObje'+_0xb7fa9e(0x391,0x386,_0x3815e8._0x2d5853,0x328)]=_0x3fc7a2[_0x4836a1(0x3ab,_0x3815e8._0x4bf168,0x370,_0x3815e8._0x2821f2)+_0xb7fa9e(0x33a,0x2ab,_0x3815e8._0x1d8347,_0x3815e8._0x106ab6)];const _0x1900e1=tasks[_0x4836a1(_0x3815e8._0x474284,0x1fb,_0x3815e8._0x5548c9,0x1c0)](_0x3fc7a2[_0xb7fa9e(0x4d9,0x3be,0x4b7,_0x3815e8._0x129103)+'ctiveId']);if(!_0x1900e1){if(_0x2d1baf[_0xb7fa9e(_0x3815e8._0x3214e8,_0x3815e8._0x104306,_0x3815e8._0x4460d5,0x410)](_0x2d1baf['RsQVR'],'RlTBi')){const _0x19edfc={};_0x19edfc[_0xb7fa9e(_0x3815e8._0xd9053,0x43a,_0x3815e8._0x8beb6c,0x393)]=_0x1f7eaa,_0x19edfc[_0x4836a1(0x375,0x338,_0x3815e8._0x1f9fcb,_0x3815e8._0xd9053)+'ctiveId']=_0x3fc7a2[_0x4836a1(_0x3815e8._0x46a214,0x338,_0x3815e8._0x1ea548,0x2ef)+'ctiveId'],logger['warn']('Parent\x20obj'+'ective\x20not'+'\x20found',_0x19edfc);const _0x3a143f={};return _0x3a143f[_0xb7fa9e(_0x3815e8._0x26d7f0,_0x3815e8._0x200946,_0x3815e8._0x2dbf54,0x399)]=_0x2d1baf[_0x4836a1(0x1b4,_0x3815e8._0x2de018,_0x3815e8._0x1ad844,_0x3815e8._0x254ca7)],_0x3a143f[_0x4836a1(_0x3815e8._0x1f9fcb,0x2e8,_0x3815e8._0x47548d,0x279)]=_0xb7fa9e(_0x3815e8._0x10e60c,_0x3815e8._0x2fabb4,0x3ae,_0x3815e8._0x38f9ad)+_0xb7fa9e(0x30c,_0x3815e8._0x2c84b0,0x30c,0x384)+_0xb7fa9e(_0x3815e8._0x1f049c,_0x3815e8._0x16a690,0x47a,0x426)+_0xb7fa9e(_0x3815e8._0x8caa95,0x379,_0x3815e8._0x2dd959,_0x3815e8._0x1dfd21),_0x935299[_0x4836a1(0x30a,_0x3815e8._0x525ddb,0x2bb,0x2c1)](-0xd54+-0x1c8+0x10b0)[_0x4836a1(0x1a2,_0x3815e8._0xdbce75,0x2c0,0x23b)](_0x3a143f);}else{const _0xa83781={};return _0xa83781['siblings']=[],_0xa83781[_0xb7fa9e(_0x3815e8._0x5b56fc,0x433,0x3ce,_0x3815e8._0x477eb0)+_0x4836a1(_0x3815e8._0x512bdc,0x22f,_0x3815e8._0x4bd986,0x236)]=_0x363c02[_0x4836a1(_0x3815e8._0x1936dd,0x29a,0x283,0x2a4)],_0x14abea[_0xb7fa9e(_0x3815e8._0x12c9ca,_0x3815e8._0x37a2b7,_0x3815e8._0x5d3f1d,0x33b)](_0xa83781);}}function _0xb7fa9e(_0x11a26a,_0x55a932,_0x194b5d,_0x3a18e3){return _0x26d9a5(_0x11a26a-0x58,_0x55a932-_0x46d593._0xc188bb,_0x3a18e3- -0x189,_0x194b5d);}if(_0x2d1baf[_0x4836a1(0x279,_0x3815e8._0x3a8e3f,0x282,0x245)](_0x1900e1[_0xb7fa9e(0x434,0x3c6,_0x3815e8._0x2127a3,0x388)],_0x2d1baf[_0x4836a1(_0x3815e8._0x3dfd62,_0x3815e8._0x322dde,_0x3815e8._0x39eca5,_0x3815e8._0x4095e3)])){const _0x3d6372={};_0x3d6372[_0xb7fa9e(_0x3815e8._0x590144,0x3cc,0x34f,_0x3815e8._0x301698)]=_0x1f7eaa,_0x3d6372[_0x4836a1(0x2f3,_0x3815e8._0x4d9227,_0x3815e8._0x3145b2,_0x3815e8._0x2b06a0)+_0x4836a1(0x213,_0x3815e8._0x1af56a,0x261,0x256)]=_0x3fc7a2['sourceObje'+_0x4836a1(_0x3815e8._0x5a591e,0x22f,_0x3815e8._0xf502ea,0x228)],_0x3d6372[_0xb7fa9e(0x3ca,_0x3815e8._0x5dae20,_0x3815e8._0x13cff9,_0x3815e8._0x22cbd5)]=_0x1900e1[_0xb7fa9e(0x334,_0x3815e8._0x32bc3a,0x3c4,0x388)],logger['warn'](_0x2d1baf[_0xb7fa9e(0x4ae,0x3e8,0x396,_0x3815e8._0x22b2d0)],_0x3d6372);const _0x2843e3={};return _0x2843e3[_0x4836a1(0x252,0x2a0,_0x3815e8._0x4c73b9,0x256)]=_0x2d1baf[_0x4836a1(_0x3815e8._0x3e1d7e,_0x3815e8._0x458dee,_0x3815e8._0x25c381,_0x3815e8._0x31d9f3)],_0x2843e3['message']=_0xb7fa9e(0x36b,_0x3815e8._0x3f63b8,_0x3815e8._0x3b5d8d,_0x3815e8._0x41f5c7)+_0x4836a1(_0x3815e8._0x6fc9a8,_0x3815e8._0x5aa217,_0x3815e8._0x482188,_0x3815e8._0x4fa82d)+_0xb7fa9e(_0x3815e8._0x328203,0x460,0x47b,_0x3815e8._0x4e7e7f),_0x935299[_0xb7fa9e(0x41a,_0x3815e8._0x328203,0x3e9,_0x3815e8._0x5b9ccd)](0x1*0xb2b+-0xdd3+0xf*0x48)[_0xb7fa9e(_0x3815e8._0x13b041,0x313,_0x3815e8._0x489a40,_0x3815e8._0x359112)](_0x2843e3);}_0x13b59c[_0xb7fa9e(0x338,_0x3815e8._0x300b67,0x417,0x38b)+_0x4836a1(0x35c,_0x3815e8._0x132b9a,_0x3815e8._0x1b7789,0x335)]=_0x1900e1,_0x2d1baf[_0x4836a1(_0x3815e8._0x57393c,_0x3815e8._0x3d85d2,_0x3815e8._0x450a55,_0x3815e8._0x1ae533)](_0x4a5ab6);}router['get']('/parent',requireTaskAuth,async(_0x4ba58e,_0x4b15ed)=>{const _0x3cfac4={_0x5e9a36:0x1e,_0x27f3c6:0x45,_0x23ab85:0xe4,_0x5dd82c:0x199,_0x5404d0:0x10a,_0x505ac0:0xf6,_0x180562:0x4cc,_0x232101:0x4d0,_0x360ab1:0x57e,_0x10cff2:0x560,_0x4965f6:0xd4,_0x4a3e99:0x105,_0x5c1381:0x5dc,_0x16a945:0x5e8,_0xbdd526:0x558,_0x30fecb:0x600,_0x42ea51:0x33,_0x40c167:0x8b,_0x1bf6f0:0xf7,_0x4751cf:0xce,_0x2a51ac:0x134,_0x240f6d:0x1f7,_0x39b800:0x113,_0x2b9246:0x144,_0x289cd6:0x15b,_0x5a75d8:0x119,_0x48119f:0xb4,_0x459245:0x1a5,_0x3d5b14:0x13a,_0x1798c6:0x530,_0xfdb039:0x565,_0x3e1856:0x5bb,_0x305333:0x59c,_0x350f21:0xdc,_0x18e689:0x30,_0x36c46c:0x99,_0x2335cd:0xec,_0xad88e7:0x23,_0x5078eb:0x81,_0x1ab538:0x142,_0x3272ac:0x99,_0x351c5c:0x140,_0xf57c92:0x6f,_0x200f6f:0xcc,_0x51d7d3:0x571,_0x20d93f:0x4dc,_0x1b07c4:0x52b,_0x155865:0x5cf,_0x4a0dd4:0x57f,_0x9c23b2:0x4dd,_0x47b714:0x502},_0x1af203={_0x4e273c:0x1ca},_0x5ab5f8={_0x35a828:0xd0,_0x54b4ad:0x418};function _0x11ca82(_0x25d8aa,_0x5195e6,_0x2d3741,_0x568f7b){return _0x26d9a5(_0x25d8aa-0x1a2,_0x5195e6-_0x5ab5f8._0x35a828,_0x568f7b- -_0x5ab5f8._0x54b4ad,_0x2d3741);}const _0x185d34={};_0x185d34[_0x11ca82(-_0x3cfac4._0x5e9a36,_0x3cfac4._0x27f3c6,_0x3cfac4._0x23ab85,0x92)]=_0x11ca82(_0x3cfac4._0x5dd82c,0x117,_0x3cfac4._0x5404d0,_0x3cfac4._0x505ac0)+'ing\x20parent'+_0x427e70(0x4a2,0x4fd,0x4ad,_0x3cfac4._0x180562)+_0x427e70(_0x3cfac4._0x232101,0x5d0,_0x3cfac4._0x360ab1,_0x3cfac4._0x10cff2);const _0x5194f2=_0x185d34,{parentObjective:_0x1d5b80,callingTask:_0x33897d}=_0x4ba58e,_0x40c7ea={};_0x40c7ea['taskId']=_0x33897d['taskId'],_0x40c7ea['objectiveI'+'d']=_0x1d5b80['taskId'],logger['info'](_0x5194f2['Plvrt'],_0x40c7ea);const _0xf84b83={};_0xf84b83['taskId']=_0x1d5b80['taskId'],_0xf84b83[_0x11ca82(_0x3cfac4._0x4965f6,0xc7,_0x3cfac4._0x4a3e99,0xd8)]=_0x1d5b80[_0x427e70(0x4e1,_0x3cfac4._0x5c1381,0x537,0x4f4)],_0xf84b83[_0x427e70(0x4be,0x502,0x558,_0x3cfac4._0x16a945)]=_0x1d5b80[_0x427e70(0x543,0x58a,_0x3cfac4._0xbdd526,_0x3cfac4._0x30fecb)],_0xf84b83['instructio'+'ns']=_0x1d5b80['parameters']?.[_0x11ca82(_0x3cfac4._0x42ea51,0x38,_0x3cfac4._0x40c167,0xe2)+'ns']||'';function _0x427e70(_0xf114fa,_0x259dda,_0x5a0a17,_0x356925){return _0x26d9a5(_0xf114fa-_0x1af203._0x4e273c,_0x259dda-0x14e,_0x5a0a17-0x47,_0x259dda);}_0xf84b83[_0x11ca82(0xe4,0x101,_0x3cfac4._0x1bf6f0,0x134)+'t']=_0x1d5b80[_0x11ca82(_0x3cfac4._0x4751cf,0xb6,0x189,_0x3cfac4._0x2a51ac)+'t'],_0xf84b83[_0x11ca82(_0x3cfac4._0x240f6d,_0x3cfac4._0x39b800,_0x3cfac4._0x2b9246,_0x3cfac4._0x289cd6)]=_0x1d5b80[_0x11ca82(_0x3cfac4._0x5a75d8,_0x3cfac4._0x48119f,0x200,0x15b)],_0xf84b83['parameters']=_0x1d5b80['parameters'],_0xf84b83[_0x11ca82(0x169,0x1b6,0x11f,_0x3cfac4._0x459245)]=_0x1d5b80[_0x11ca82(_0x3cfac4._0x3d5b14,0x215,0x107,0x1a5)],_0xf84b83[_0x427e70(0x501,0x578,_0x3cfac4._0x1798c6,_0x3cfac4._0xfdb039)]=_0x1d5b80[_0x427e70(_0x3cfac4._0x3e1856,0x543,0x530,_0x3cfac4._0x305333)],_0xf84b83['parentObje'+_0x11ca82(_0x3cfac4._0x350f21,0x56,_0x3cfac4._0x18e689,_0x3cfac4._0x36c46c)]=_0x1d5b80[_0x11ca82(_0x3cfac4._0x2335cd,0x72,0x74,0xfc)+_0x11ca82(_0x3cfac4._0xad88e7,_0x3cfac4._0x5078eb,_0x3cfac4._0x1ab538,_0x3cfac4._0x3272ac)],_0xf84b83[_0x11ca82(_0x3cfac4._0x351c5c,0x36,_0x3cfac4._0xf57c92,_0x3cfac4._0x200f6f)+'t']=_0x1d5b80[_0x427e70(_0x3cfac4._0x51d7d3,_0x3cfac4._0x20d93f,_0x3cfac4._0x1b07c4,_0x3cfac4._0x155865)+'t']||0x8*-0x267+-0x3*-0xb3e+-0x4d6*0x3,_0xf84b83['lastLaunch'+'edAt']=_0x1d5b80['lastLaunch'+_0x427e70(_0x3cfac4._0x4a0dd4,_0x3cfac4._0x9c23b2,_0x3cfac4._0x47b714,0x464)],_0x4b15ed['json'](_0xf84b83);}),router['get']('/objective'+'/:id',requireTaskAuth,async(_0x3ccf3d,_0x546a7a)=>{const _0x16c557={_0x5e57e2:0x1fc,_0x11e851:0x14a,_0xef2c80:0x58,_0x588e84:0x8,_0x72ebe1:0xb6,_0x5fa210:0xbc,_0x50d0ed:0x8c,_0x139c3a:0x23,_0x14acf8:0x6b,_0x2559ff:0x5c,_0x35d0dd:0x0,_0x2b83db:0x191,_0xfe7949:0x66,_0x29559d:0xfc,_0x151872:0x19,_0x352e33:0x49,_0x2aa6db:0x1a,_0xd27e27:0x105,_0xf54753:0x1ab,_0x56a6ff:0x86,_0x5b09a6:0x157,_0x261551:0x118,_0xaccaf1:0x61,_0x1ba78f:0x2a,_0x554714:0x20,_0x54072d:0xbe,_0x3f1059:0x214,_0x3fee64:0x17b,_0x557500:0xcc,_0x3e29f0:0x222,_0x4053aa:0x1a4,_0x389e92:0x100,_0x572d12:0x1b2,_0x489c63:0x218,_0x68fac5:0x6c,_0xd4e771:0x10e,_0x514c3c:0x7a,_0x31b7ac:0x75,_0x4d7f06:0x141,_0x168057:0xf5,_0x2f61bd:0x9c,_0x539900:0x121,_0x9a46e:0x9b,_0xc0f565:0x13d,_0x274f42:0x1ae,_0x921247:0x146,_0x1c96f4:0xf,_0xc46da1:0xa1,_0x5130d1:0x74,_0x3142c8:0xd5,_0x3413ac:0xc7,_0x4de157:0x53,_0x177cd7:0xef,_0x4e9c6f:0x13f,_0x6fe0c:0x15f,_0x1ff52e:0x1e,_0x41129e:0x4e,_0x573997:0x57,_0x2eea81:0xc3,_0x4c4e0a:0x36,_0x4d8143:0x17f,_0x19ea14:0x11b,_0x410987:0x162,_0x1f393c:0xc6,_0x36e109:0x100,_0x1fb825:0x185,_0x5cc2a5:0x82,_0x3b67c7:0x49,_0x1c99af:0x88,_0x5945d6:0xa0,_0x2a4cd7:0x67,_0x589e32:0xb4,_0x357895:0xe0,_0x55a536:0x134,_0x47da88:0x160,_0x4b04ca:0xb7,_0x82bbbf:0x33,_0x2ed3ce:0x5f,_0x4f440e:0xd5,_0x579730:0x19a,_0x28184d:0x144,_0x160d18:0x142,_0x5ea4c0:0x16e,_0x3e05e4:0x1af,_0x108faa:0x117,_0x1ec6a1:0x1b6,_0x53b049:0x1a7,_0x4955bc:0x1d6,_0x238990:0x170,_0x6d0841:0xfd,_0x576b62:0x18f,_0x370f63:0x75,_0x399896:0x1cb,_0x45f659:0x116,_0x2bce7e:0x12f,_0x38f642:0x42,_0x38699b:0x73,_0x2f7d00:0x6,_0x3252f1:0x49,_0x4e9d7e:0x1c,_0x25b67f:0x17b,_0x17ac3c:0x14d,_0x26143c:0x198},_0x51a84e={_0x14629b:0x611},_0x2bd829={_0x188b62:0x46,_0x4b3194:0x4a7},_0x594cf9={};_0x594cf9[_0x2c1a72(-0x17c,-0x17b,-_0x16c557._0x5e57e2,-_0x16c557._0x11e851)]=function(_0x381f7a,_0x44b6ad){return _0x381f7a!==_0x44b6ad;},_0x594cf9[_0x1fc287(-_0x16c557._0xef2c80,-_0x16c557._0x588e84,0x81,-_0x16c557._0x72ebe1)]='objective';function _0x1fc287(_0x55f4d2,_0x27489b,_0x2e91e3,_0xc4d9a5){return _0x26d9a5(_0x55f4d2-_0x2bd829._0x188b62,_0x27489b-0xd0,_0x27489b- -_0x2bd829._0x4b3194,_0xc4d9a5);}_0x594cf9[_0x1fc287(_0x16c557._0x5fa210,_0x16c557._0x50d0ed,_0x16c557._0x139c3a,_0x16c557._0x14acf8)]=function(_0x987ffe,_0x54d2f6){return _0x987ffe===_0x54d2f6;},_0x594cf9[_0x2c1a72(-0x3c,-_0x16c557._0x2559ff,-0x4a,_0x16c557._0x35d0dd)]='oEEAN',_0x594cf9[_0x2c1a72(-0x136,-0x119,-0x174,-_0x16c557._0x2b83db)]=_0x1fc287(_0x16c557._0xfe7949,0x69,_0x16c557._0x29559d,-_0x16c557._0x151872),_0x594cf9[_0x1fc287(_0x16c557._0x352e33,-_0x16c557._0x2aa6db,-_0x16c557._0x588e84,-0xa8)]='Not\x20Found',_0x594cf9['OvEBB']=_0x1fc287(0xa8,_0x16c557._0xd27e27,0x103,_0x16c557._0xf54753)+_0x2c1a72(-_0x16c557._0x56a6ff,-0x105,-0x129,-0x11f);const _0x2f5417=_0x594cf9,{callingTask:_0x4ebee2}=_0x3ccf3d,_0x1e81a3=_0x3ccf3d[_0x2c1a72(-_0x16c557._0x5b09a6,-0x113,-_0x16c557._0x261551,-0x158)]['id'],_0x52f437=tasks[_0x1fc287(-_0x16c557._0xaccaf1,-_0x16c557._0x1ba78f,_0x16c557._0x554714,-_0x16c557._0x54072d)](_0x1e81a3);if(!_0x52f437||_0x2f5417[_0x2c1a72(-_0x16c557._0x3f1059,-_0x16c557._0x3fee64,-_0x16c557._0x557500,-_0x16c557._0x3e29f0)](_0x52f437[_0x2c1a72(-_0x16c557._0x4053aa,-_0x16c557._0x389e92,-0xf1,-_0x16c557._0x572d12)],_0x2f5417[_0x2c1a72(-_0x16c557._0x489c63,-0x172,-0x1f5,-0x21b)])){if(_0x2f5417[_0x1fc287(_0x16c557._0x68fac5,0x8c,0xea,0x11b)](_0x2f5417[_0x1fc287(0x196,_0x16c557._0xd4e771,_0x16c557._0x514c3c,0x164)],_0x2f5417['rolyf'])){const _0x1c9e50={};_0x1c9e50[_0x1fc287(0xec,_0x16c557._0x31b7ac,-0x5,0xc5)]=_0x1ebc7d[_0x2c1a72(-_0x16c557._0x4d7f06,-_0x16c557._0x168057,-0x19e,-0x12f)],_0x1c9e50[_0x2c1a72(-_0x16c557._0x2f61bd,-_0x16c557._0x539900,-_0x16c557._0x9a46e,-_0x16c557._0xc0f565)]=_0x4a6b41[_0x2c1a72(-_0x16c557._0x274f42,-0x121,-_0x16c557._0x72ebe1,-_0x16c557._0x921247)],_0x1c9e50[_0x1fc287(0x143,0xc9,0xd9,0x6f)]=_0x11d793[_0x2c1a72(_0x16c557._0x1c96f4,-_0x16c557._0xc46da1,-0x67,-_0x16c557._0x5130d1)],_0x1c9e50[_0x2c1a72(-0x2e,-0x54,-0x80,-0x73)]=_0x35c0e5['createdAt'],_0x1d05e2[_0x2c1a72(-_0x16c557._0x3142c8,-_0x16c557._0x3413ac,-0x14e,-_0x16c557._0x4de157)](_0x1c9e50);}else{const _0x1f019c={};return _0x1f019c[_0x2c1a72(-0x43,-_0x16c557._0x177cd7,-_0x16c557._0x4e9c6f,-_0x16c557._0x6fe0c)]=_0x2f5417[_0x1fc287(-_0x16c557._0x1ff52e,-0x1a,-_0x16c557._0x41129e,-_0x16c557._0x573997)],_0x1f019c[_0x1fc287(0x172,_0x16c557._0x2eea81,0xe,_0x16c557._0x4c4e0a)]=_0x2f5417[_0x2c1a72(-0xfd,-_0x16c557._0x4d8143,-_0x16c557._0x19ea14,-_0x16c557._0x410987)],_0x546a7a[_0x2c1a72(-_0x16c557._0x1f393c,-_0x16c557._0x36e109,-0xd0,-0x74)](-0xb45+-0x5*0x52d+0x1*0x26ba)[_0x2c1a72(-0x17b,-0x14d,-0x110,-_0x16c557._0x1fb825)](_0x1f019c);}}const _0x264d2d={};_0x264d2d['taskId']=_0x4ebee2[_0x1fc287(0x54,0x75,-0x1c,0x69)],_0x264d2d[_0x1fc287(_0x16c557._0x5cc2a5,0xc4,_0x16c557._0x3b67c7,_0x16c557._0x1c99af)+'d']=_0x1e81a3,logger[_0x2c1a72(-0xa1,-0xc1,-0x60,-_0x16c557._0x5945d6)](_0x1fc287(-0x2f,_0x16c557._0x2a4cd7,_0x16c557._0x589e32,0xef)+_0x1fc287(_0x16c557._0x2559ff,_0x16c557._0x357895,0xc2,0x98)+_0x2c1a72(-_0x16c557._0x55a536,-0x13f,-_0x16c557._0x47da88,-_0x16c557._0x4b04ca)+_0x2c1a72(-_0x16c557._0x82bbbf,-_0x16c557._0x2ed3ce,-_0x16c557._0x2aa6db,-_0x16c557._0x4f440e),_0x264d2d);function _0x2c1a72(_0x20e9bd,_0x1dcf1f,_0x2eedde,_0x4c6ccc){return _0x26d9a5(_0x20e9bd-0xc0,_0x1dcf1f-0x59,_0x1dcf1f- -_0x51a84e._0x14629b,_0x2eedde);}const _0x32110d={};_0x32110d['taskId']=_0x52f437[_0x2c1a72(-0x80,-0xf5,-_0x16c557._0x579730,-_0x16c557._0x28184d)],_0x32110d['name']=_0x52f437[_0x2c1a72(-0x142,-0x121,-_0x16c557._0x160d18,-0x16f)],_0x32110d[_0x2c1a72(-0xee,-0x117,-_0x16c557._0x5ea4c0,-_0x16c557._0x3e05e4)+'ns']=_0x52f437['parameters']?.[_0x2c1a72(-0x138,-_0x16c557._0x108faa,-_0x16c557._0x1ec6a1,-0x11b)+'ns']||'',_0x32110d['parentObje'+_0x2c1a72(-0x124,-0x160,-_0x16c557._0x53b049,-_0x16c557._0x4955bc)]=_0x52f437[_0x2c1a72(-_0x16c557._0x238990,-_0x16c557._0x6d0841,-0xff,-_0x16c557._0x576b62)+_0x1fc287(-_0x16c557._0x370f63,0xa,0xa,-0x39)],_0x32110d['createdAt']=_0x52f437[_0x1fc287(_0x16c557._0x399896,_0x16c557._0x45f659,0x16b,_0x16c557._0x2bce7e)],_0x32110d[_0x1fc287(-0x53,_0x16c557._0x38f642,0x2a,_0x16c557._0x38699b)]=_0x52f437[_0x1fc287(-_0x16c557._0x2f7d00,0x42,_0x16c557._0x3252f1,_0x16c557._0x4e9d7e)],_0x546a7a[_0x2c1a72(-_0x16c557._0x25b67f,-_0x16c557._0x17ac3c,-0x105,-_0x16c557._0x26143c)](_0x32110d);}),router[_0x26d9a5(0x51b,0x4b4,0x4e7,0x461)]('/parent',requireTaskAuth,async(_0x7a636f,_0x485cf2)=>{const _0x3523ab={_0x1b4f3e:0x5f,_0x11615b:0xf8,_0x209202:0x1a6,_0x5b4563:0xee,_0x24d328:0x488,_0x7e8e4e:0x3dc,_0x437ba1:0x44b,_0x35a343:0x40,_0x57888b:0x2c,_0x24401:0x11,_0x10a27b:0xb,_0x226bfd:0x4a2,_0x4ff480:0x4a4,_0x3e36dd:0x42f,_0x3269e4:0x6c,_0x3ac602:0x6a,_0x1982d7:0x69,_0x3e7f0a:0x4a,_0x57b748:0x3f3,_0x413594:0x49b,_0x37e21f:0x6a,_0x410821:0x61,_0x5ade0e:0x9b,_0x4ba313:0xa,_0x46b01d:0x33,_0x10dff7:0x22,_0x49377e:0x75,_0x498e61:0xc9,_0x57acef:0x118,_0x76cf99:0xcb,_0x3cc4b6:0x72,_0x541b55:0x8,_0x51f71a:0x27,_0x706f9d:0xac,_0x289d18:0x39,_0x38760f:0x4b,_0x300d10:0x3,_0xab0f90:0x11,_0x27de2e:0x8c,_0x174b01:0x6,_0x126bd4:0x92,_0x201e36:0x416,_0x34006b:0x42,_0x551ea9:0xc7,_0x9161f9:0xdd,_0x402cf9:0xe8,_0x9808c5:0x109,_0x1d14d9:0xe4,_0x49cebe:0x51f,_0x1dca77:0x3f2,_0x5eb2f4:0x3fd,_0x515b8b:0x1,_0x5d6347:0x93,_0x4dbeda:0x1,_0x1bab1d:0x66,_0x39ad48:0xce,_0x96aaa4:0x6c,_0x25dfbf:0x2c,_0x4ef9b0:0x53b,_0x30809e:0x4bf,_0xd127ef:0x1,_0x360605:0x59,_0x51fb25:0x4db,_0x36cc5a:0x423,_0x171b9f:0x4d7,_0x4b0234:0x402,_0xabb9d2:0x530,_0x23ac45:0x50c,_0xf25410:0x457,_0x56f768:0x345,_0x5dfdcf:0x19,_0x526f94:0x9,_0x10a315:0x147,_0x6f2ab3:0xad,_0x586e18:0x87,_0x82316b:0x8e,_0x1ca0c6:0x102,_0x267580:0x407,_0x47fc47:0x4b4,_0x2cd72d:0x4ad,_0x56ccb5:0x511,_0xb39e7e:0x58,_0x51f386:0x49,_0x43f33b:0x49e,_0x54d123:0x527,_0x5d0370:0x53f,_0x4c7b9f:0x2d,_0x1bc459:0x18,_0x2fa2b1:0x88,_0x40fa1b:0x7c,_0x332b7d:0x6e,_0xc81d67:0xd1,_0x4b3363:0x3d1,_0x274be4:0x16b,_0x141f77:0xb5,_0x281c2e:0xb9,_0x28df5e:0x50c,_0x1c3aa7:0x52a,_0x1d48a5:0x4bc,_0x2eb778:0x4cd,_0x45c89a:0x4f4,_0x4fbcfc:0x53e,_0x43d6cb:0xfe,_0x16ea96:0x85,_0x3dd8f0:0x199,_0x3b2384:0xe6,_0x11a634:0xb4,_0x540f66:0xdd,_0x3c3a1a:0xd9,_0x559561:0x42,_0x4ac0de:0x537,_0x4950ce:0x4f9,_0x199419:0x58e,_0x537c02:0x49c,_0x14ade1:0x47f,_0x37947e:0x7,_0x2f9349:0x3d9,_0x2d13b2:0x453,_0x2eee24:0x4fb,_0x5785b7:0x3a,_0x5d3089:0xbc,_0x32d9d4:0x30e,_0xa170dd:0x44c,_0x41e569:0x3f9,_0x28c16e:0x4fb,_0x1183d6:0x448,_0x15e382:0x3af,_0x4a35eb:0x4dc,_0x3db610:0x3ed,_0x4442ed:0xe4,_0x1ced98:0x515,_0x16b876:0x525,_0x2a5074:0x4c7,_0x1baa46:0x21,_0x126e11:0xba,_0x25face:0x440,_0x394345:0x4f5,_0xaeec36:0x431,_0x17829a:0x3c0,_0x2777a1:0x32c,_0x25bfb5:0x446,_0x68f595:0x44,_0x33a25d:0xa3,_0x493b6c:0x17},_0x33fa23={_0x5b09a1:0x13,_0x121bb8:0x31,_0x19034f:0x57b},_0xc3494d={_0x15917d:0x10d},_0x5bf471={'OeLIj':_0x570fb4(_0x3523ab._0x1b4f3e,0xf4,0x90,0x10f)+'ge\x20path\x20no'+_0x570fb4(0x100,_0x3523ab._0x11615b,0xe6,_0x3523ab._0x209202)+'ed','AcyFs':function(_0x5d9ff8,_0x45fee1){return _0x5d9ff8===_0x45fee1;},'eLwrs':function(_0x278197,_0x1a8d46){return _0x278197===_0x1a8d46;},'XuVFX':_0x570fb4(0x17b,0xf2,0x16a,_0x3523ab._0x5b4563)+'t','CYJwn':_0x570fb4(0x3f,-0x1d,0x31,0x0)+_0x15f027(_0x3523ab._0x24d328,_0x3523ab._0x7e8e4e,_0x3523ab._0x437ba1,0x3ce)+_0x570fb4(0x99,0x55,_0x3523ab._0x35a343,-_0x3523ab._0x57888b)+'structions'+')\x20must\x20be\x20'+_0x570fb4(-_0x3523ab._0x24401,0x3b,-_0x3523ab._0x10a27b,0xc9),'PXacL':_0x15f027(0x43a,_0x3523ab._0x226bfd,_0x3523ab._0x4ff480,_0x3523ab._0x3e36dd)+_0x570fb4(_0x3523ab._0x3269e4,_0x3523ab._0x3ac602,0x24,0xea)+_0x15f027(0x370,0x3c9,0x476,0x410),'ZCxQJ':function(_0x53f697,_0x562a86){return _0x53f697!==_0x562a86;},'HkYUo':function(_0x5d6ae8,_0x57ee5c){return _0x5d6ae8(_0x57ee5c);},'kLBow':_0x570fb4(-_0x3523ab._0x1982d7,-_0x3523ab._0x3e7f0a,0x2f,-0xa7)+_0x15f027(_0x3523ab._0x57b748,_0x3523ab._0x413594,0x544,0x412),'LBnnB':_0x570fb4(0x2b,0x3,_0x3523ab._0x37e21f,-0x62),'Ptybq':function(_0x2ac332,_0x3b37b5){return _0x2ac332!==_0x3b37b5;},'CCgyS':_0x570fb4(_0x3523ab._0x410821,0x9b,_0x3523ab._0x5ade0e,-_0x3523ab._0x4ba313),'usiRH':_0x570fb4(-_0x3523ab._0x46b01d,_0x3523ab._0x10dff7,_0x3523ab._0x49377e,_0x3523ab._0x498e61),'LCyCG':_0x570fb4(_0x3523ab._0x57acef,_0x3523ab._0x76cf99,_0x3523ab._0x3cc4b6,0xd7)+_0x570fb4(_0x3523ab._0x541b55,_0x3523ab._0x51f71a,_0x3523ab._0x706f9d,0x49),'JHdEd':function(_0x8a622b,_0x2b1c3e,_0x29b1ec){return _0x8a622b(_0x2b1c3e,_0x29b1ec);},'XVkDC':_0x570fb4(_0x3523ab._0x289d18,0xce,0x173,_0x3523ab._0x38760f)+_0x570fb4(_0x3523ab._0x300d10,-0x3b,_0x3523ab._0xab0f90,-0xd2)+'ated\x20by\x20ta'+'sk'},{parentObjective:_0x5444d3,callingTask:_0xad0611}=_0x7a636f,{name:_0x165edb,instructions:_0x4c2d84}=_0x7a636f[_0x570fb4(-_0x3523ab._0x27de2e,-_0x3523ab._0x174b01,-0xad,-_0x3523ab._0x126bd4)];if(_0x5bf471['AcyFs'](_0x165edb,undefined)&&_0x5bf471[_0x15f027(0x4a1,0x4a5,0x515,_0x3523ab._0x201e36)](_0x4c2d84,undefined)){const _0x53a2b0={};return _0x53a2b0[_0x570fb4(_0x3523ab._0x34006b,0x6c,_0x3523ab._0x551ea9,0xf)]=_0x5bf471[_0x570fb4(_0x3523ab._0x9161f9,_0x3523ab._0x402cf9,0xae,0xa0)],_0x53a2b0[_0x570fb4(0x112,0xb4,0x103,0x59)]=_0x5bf471[_0x570fb4(_0x3523ab._0x9808c5,0x9c,_0x3523ab._0x1d14d9,0x113)],_0x485cf2['status'](0x147+-0x474+0x4bd)['json'](_0x53a2b0);}logger[_0x15f027(_0x3523ab._0x49cebe,0x4b3,0x4bf,0x430)](_0x5bf471[_0x15f027(0x418,_0x3523ab._0x1dca77,0x439,_0x3523ab._0x5eb2f4)],{'taskId':_0xad0611[_0x570fb4(0xee,0x66,_0x3523ab._0x515b8b,_0x3523ab._0x5d6347)],'objectiveId':_0x5444d3[_0x570fb4(_0x3523ab._0x4dbeda,_0x3523ab._0x1bab1d,_0x3523ab._0x39ad48,0x72)],'updatingName':_0x5bf471['ZCxQJ'](_0x165edb,undefined),'updatingInstructions':_0x4c2d84!==undefined});const _0x5c6b55=new Date()[_0x570fb4(-_0x3523ab._0x96aaa4,0x46,_0x3523ab._0x25dfbf,0x53)+'g']();_0x165edb!==undefined&&(_0x5444d3['name']=_0x165edb);_0x5bf471[_0x15f027(_0x3523ab._0x4ef9b0,_0x3523ab._0x30809e,0x442,0x510)](_0x4c2d84,undefined)&&(_0x5444d3[_0x570fb4(_0x3523ab._0xd127ef,-_0x3523ab._0x360605,-0x9d,0x18)]={..._0x5444d3['parameters'],'instructions':_0x4c2d84});_0x5444d3[_0x15f027(_0x3523ab._0x51fb25,0x44c,0x3bf,0x442)]=_0x5c6b55,_0x5444d3['lastModifi'+_0x15f027(0x430,_0x3523ab._0x36cc5a,_0x3523ab._0x171b9f,_0x3523ab._0x4b0234)]=_0xad0611['taskId'];try{const _0x2ee3b4=await _0x5bf471['HkYUo'](findTaskDirectory,_0x5444d3[_0x15f027(0x4c9,0x47f,_0x3523ab._0xabb9d2,0x485)]);if(_0x2ee3b4){const _0x352f37=_0x5a9146[_0x15f027(0x535,_0x3523ab._0x23ac45,0x52b,0x598)](_0x2ee3b4,_0x5bf471[_0x15f027(_0x3523ab._0xf25410,0x3ea,_0x3523ab._0x56f768,0x395)]);await _0x1cf7b5['writeFile'](_0x352f37,JSON[_0x570fb4(-0x70,-_0x3523ab._0x5dfdcf,-0x91,-_0x3523ab._0x526f94)](_0x5444d3,null,-0xd*0x2c2+-0x1f6*0xe+0x3f50),_0x5bf471[_0x570fb4(_0x3523ab._0x10a315,0xd6,_0x3523ab._0x6f2ab3,0x89)]);if(_0x5bf471[_0x570fb4(_0x3523ab._0x586e18,0x5d,_0x3523ab._0x82316b,_0x3523ab._0x1ca0c6)](_0x4c2d84,undefined)){if(_0x15f027(_0x3523ab._0x267580,_0x3523ab._0x47fc47,_0x3523ab._0x2cd72d,_0x3523ab._0x56ccb5)!==_0x5bf471[_0x570fb4(-0x37,-0x37,-_0x3523ab._0xb39e7e,_0x3523ab._0x51f386)])throw new _0x2423c0(_0x5bf471[_0x15f027(0x44e,_0x3523ab._0x43f33b,0x4da,0x496)]);else{const _0x409c10=_0x5a9146[_0x15f027(0x4bf,0x50c,_0x3523ab._0x54d123,_0x3523ab._0x5d0370)](_0x2ee3b4,_0x5bf471[_0x570fb4(_0x3523ab._0x4c7b9f,_0x3523ab._0x1bc459,0x75,_0x3523ab._0x2fa2b1)]),_0x437bd6={};_0x437bd6[_0x570fb4(0x25,_0x3523ab._0x40fa1b,0x7b,_0x3523ab._0x332b7d)]=!![],await _0x1cf7b5['mkdir'](_0x409c10,_0x437bd6);const _0x2611c4=_0x5a9146[_0x570fb4(_0x3523ab._0xc81d67,0xf3,0xec,0x5f)](_0x409c10,_0x5bf471[_0x15f027(0x3ae,0x411,0x4b2,_0x3523ab._0x4b3363)]);await _0x1cf7b5[_0x570fb4(0x107,0xbb,0xac,_0x3523ab._0x274be4)](_0x2611c4,_0x4c2d84,'utf-8');}}}}catch(_0xc82a12){const _0x9ae712={};_0x9ae712[_0x570fb4(0x90,_0x3523ab._0x141f77,_0x3523ab._0x281c2e,0xa8)+'d']=_0x5444d3[_0x15f027(_0x3523ab._0x28df5e,0x47f,_0x3523ab._0x1c3aa7,_0x3523ab._0x1d48a5)],_0x9ae712['error']=_0xc82a12[_0x15f027(0x45e,_0x3523ab._0x2eb778,_0x3523ab._0x45c89a,_0x3523ab._0x4fbcfc)],logger['error'](_0x570fb4(0x1a,0xcc,_0x3523ab._0x43d6cb,_0x3523ab._0x16ea96)+_0x570fb4(_0x3523ab._0x3dd8f0,_0x3523ab._0x3b2384,_0x3523ab._0x11a634,0xe2)+_0x570fb4(_0x3523ab._0x540f66,_0x3523ab._0x3c3a1a,0x135,_0x3523ab._0x559561)+_0x15f027(_0x3523ab._0x4ac0de,_0x3523ab._0x4950ce,_0x3523ab._0x199419,_0x3523ab._0x171b9f),_0x9ae712);}function _0x570fb4(_0x21c755,_0x1c5042,_0xeb6942,_0x303619){return _0x17db7b(_0x21c755-0xec,_0x1c5042-_0xc3494d._0x15917d,_0xeb6942,_0x1c5042-0x162);}if(broadcastTaskUpdate){const _0x13a9f4={};_0x13a9f4[_0x15f027(_0x3523ab._0x537c02,_0x3523ab._0x14ade1,0x4f0,0x42c)]=_0x5444d3[_0x570fb4(0x59,0x66,-_0x3523ab._0x37947e,0x41)],_0x13a9f4[_0x15f027(_0x3523ab._0x2f9349,_0x3523ab._0x2d13b2,0x3a1,_0x3523ab._0x2eee24)]=_0x5444d3[_0x570fb4(0x0,_0x3523ab._0x5785b7,_0x3523ab._0x5d3089,-0x74)],_0x13a9f4['instructio'+'ns']=_0x5444d3[_0x15f027(_0x3523ab._0x32d9d4,0x3c0,0x45b,0x419)]?.['instructio'+'ns'],_0x13a9f4[_0x15f027(0x427,_0x3523ab._0xa170dd,0x487,_0x3523ab._0x41e569)]=_0x5444d3[_0x15f027(_0x3523ab._0x28c16e,0x44c,0x3ff,_0x3523ab._0x1183d6)],_0x5bf471[_0x15f027(_0x3523ab._0x15e382,0x451,_0x3523ab._0x4a35eb,_0x3523ab._0x3db610)](broadcastTaskUpdate,_0x570fb4(0x191,_0x3523ab._0x4442ed,0x14d,0x115)+'ed',_0x13a9f4);}function _0x15f027(_0x87189f,_0x375f4a,_0x12b201,_0x4c100c){return _0x17db7b(_0x87189f-_0x33fa23._0x5b09a1,_0x375f4a-_0x33fa23._0x121bb8,_0x4c100c,_0x375f4a-_0x33fa23._0x19034f);}const _0x1de758={};_0x1de758[_0x15f027(0x3e0,0x47f,_0x3523ab._0x1ced98,_0x3523ab._0x16b876)]=_0xad0611[_0x15f027(0x3de,0x47f,_0x3523ab._0x2a5074,0x4e8)],_0x1de758['objectiveI'+'d']=_0x5444d3['taskId'],logger['info'](_0x5bf471['XVkDC'],_0x1de758);const _0x412614={};_0x412614['success']=!![],_0x412614[_0x570fb4(-0x9,0x66,0x8,-_0x3523ab._0x1baa46)]=_0x5444d3[_0x570fb4(_0x3523ab._0x126e11,_0x3523ab._0x1bab1d,0xbd,0xda)],_0x412614['name']=_0x5444d3['name'],_0x412614[_0x15f027(_0x3523ab._0x25face,0x45d,0x430,_0x3523ab._0x394345)+'ns']=_0x5444d3[_0x15f027(_0x3523ab._0xaeec36,_0x3523ab._0x17829a,_0x3523ab._0x2777a1,_0x3523ab._0x25bfb5)]?.[_0x570fb4(0x81,_0x3523ab._0x68f595,0xaf,_0x3523ab._0x11615b)+'ns'],_0x412614[_0x570fb4(0x6,0x33,-0x2a,0x98)]=_0x5444d3['updatedAt'],_0x485cf2[_0x570fb4(-_0x3523ab._0x33a25d,0xe,_0x3523ab._0x40fa1b,_0x3523ab._0x493b6c)](_0x412614);});function _0x26d9a5(_0x3e2660,_0xed7912,_0x9b2b0e,_0x2b23c9){const _0x3119b1={_0x2f12d9:0x399};return _0x8067(_0x9b2b0e-_0x3119b1._0x2f12d9,_0x2b23c9);}router[_0x17db7b(-0xe9,-0x195,-0x13f,-0x11d)](_0x26d9a5(0x4a2,0x490,0x51d,0x5d3)+_0x26d9a5(0x51d,0x426,0x46f,0x524),requireTaskAuth,async(_0x4a68a8,_0x4c4a8e)=>{const _0xed0e58={_0x369e8c:0x3,_0x2eae6f:0xb0,_0x46f9ac:0x93,_0x4dab5c:0x4c,_0x3020ad:0x1c7,_0x2f86eb:0x129,_0x374a81:0x8e,_0x13244b:0x73,_0x22dc71:0x74,_0x59a58f:0x71,_0x4f38cf:0xe,_0x92d4c4:0x1aa,_0x1d1fc8:0x24a,_0x3106ae:0x251,_0x1418fc:0x2d0,_0x1ad580:0x1da,_0x1f5a6e:0x198,_0x5c7a76:0x167,_0x3bcfce:0xc9,_0x53acb7:0x103,_0x251ea2:0xf2,_0x222909:0x172,_0xfd1adb:0x166,_0x49ffe4:0x20f,_0x1bde30:0x16e,_0x14e324:0x206,_0x3599ab:0xe2,_0x326859:0xef,_0x599e60:0x10a,_0x30e88f:0x1bb,_0x55399b:0x1c3,_0x10aa68:0x1a3,_0x1a166f:0xdd,_0x578040:0x94,_0x4b37ac:0x1bf,_0x4e4b8f:0x1cd,_0x10e3a6:0x15e,_0xc9d4b8:0x146,_0x1647d1:0x18b,_0x3c14a3:0x119,_0x31f2bd:0x168,_0x5b64e2:0x1ad,_0x2b3191:0x7f,_0x35435d:0x5c,_0x579e25:0x174,_0x2251ca:0x1db,_0x545ec4:0xb0,_0x40f3cf:0x7f,_0x4699a4:0xf0,_0x58019a:0x1f0,_0x22981e:0x14f,_0x34c130:0xe8,_0x271fd9:0x14c,_0x303455:0xc0,_0x4496ff:0x13a,_0xc3d61e:0x1f5,_0x5ebd69:0xe4,_0x34517f:0x13b,_0x58217a:0x1c9,_0x5bec97:0x9e,_0x45bb6f:0x77,_0x461fed:0x2,_0xed10b6:0xc4,_0x9a354:0x13b,_0x50cf88:0xab,_0x3e8498:0x41,_0x481988:0xa,_0x51883c:0xe,_0x2441ab:0x1bd,_0x122dee:0x10d,_0x186bf0:0xb2,_0x251d85:0x111,_0x4f25e8:0x10f,_0x58ced6:0x195,_0x253efe:0x1c3,_0x3f2998:0x13e,_0x5d0dee:0x1c8,_0x2dd55b:0x2b9,_0xef6825:0x252,_0x1dda02:0x24e,_0x3f92ab:0x15e,_0x421974:0x146,_0x6e0c43:0x181,_0x1cc63b:0x201,_0x1f78c9:0x1a9,_0x146ff5:0x1a4,_0x217013:0xc4,_0x235de2:0xbc,_0x1ef393:0x20,_0xb9e805:0x9c,_0x531f6f:0xd1,_0x5708df:0x20e,_0x1eb622:0x1d3,_0x17060a:0x1b8,_0x2d64b8:0x19f,_0x955332:0x161,_0x3299fa:0x10c,_0x761445:0x207,_0x528dfe:0x27a,_0x267efa:0x109,_0x162640:0x85,_0x858980:0x4,_0x46ca74:0x12,_0x3c2963:0x160,_0x17a61c:0x1a8,_0x34d2f9:0x237,_0x5073fa:0x1d0,_0xf7aac1:0x4a,_0x5c142a:0xaf,_0x2b051c:0x9,_0x1110dc:0x24,_0x19cbd9:0x50,_0x5c6671:0xa1,_0x72946c:0x186,_0x4674eb:0x1cf,_0x903e00:0x262,_0x591086:0x24f,_0x10030a:0xeb,_0x2288a9:0x63,_0x3665fa:0x232,_0x8beea1:0x266,_0x49461d:0x14e,_0x50f43b:0x58,_0x45d5e7:0x49,_0x498fcc:0x22,_0x2ca48e:0xdc,_0x31e358:0x7,_0x2ec26f:0x18e,_0x1801e6:0x22b,_0xb7cba2:0xff,_0x189627:0x36,_0x38297a:0x1a7,_0x355416:0x1a9,_0x1e0ef7:0x66,_0x257611:0x144,_0x571f16:0x68,_0x247637:0xbe,_0x244a26:0x5a,_0x339d3:0x1d8,_0x4fdc8c:0xf8,_0x46051a:0x13e,_0x288bd9:0x1b2,_0x463f84:0x13d,_0x22a6b4:0x1ea,_0xdef85c:0x26b,_0x4c7cd7:0x1e6,_0x52fce8:0x110,_0x47a3d9:0x9e,_0x4edbf5:0x141,_0x2bd081:0x285,_0x2746ea:0x180,_0x135518:0x114,_0x4f25f5:0x185,_0x50e536:0x28,_0x2f6b4b:0x15,_0x2bc510:0xb0,_0xd625b3:0x139,_0x35ea4d:0x147,_0xa3ebbb:0xfe,_0x141695:0x39,_0x11abc5:0x161,_0x1c925a:0x11d,_0x2b6246:0x102,_0x2ef6ec:0x112,_0xe17446:0xbf,_0x28a9e0:0x149,_0xc16650:0x1b4,_0x168c40:0xb6,_0x4828f4:0x61,_0x4210cf:0x1e3,_0x266ba6:0x1ed,_0x86481c:0xd4,_0x218e2e:0xbe,_0x4ae9be:0x54,_0xd6d8bb:0x71,_0x36a9de:0x60,_0x40ef16:0xbe,_0x2fd2de:0x74,_0x50890d:0x92,_0x443af4:0x206,_0x481599:0x1d2,_0x4342b2:0x217,_0x49c19d:0x2b6,_0x509045:0x253,_0x1a5ad7:0x260,_0xb256db:0x1f6,_0xccf1da:0x72,_0x5aa115:0x9c,_0x5d1492:0x190,_0x643f77:0x1b4,_0x10baa2:0x129,_0xf7d61c:0x113,_0x3c2a8c:0x25,_0x253bf6:0x242,_0x5c4f49:0x2c4,_0x2eed09:0xae,_0x3ddfe6:0x125,_0x183ff8:0x34,_0x4fbee9:0x231,_0x584e0e:0xb1,_0x19f166:0xa0,_0x32ffd4:0xe9,_0x9628f2:0x2c,_0x4f1230:0x4f,_0x595b32:0x10d,_0xe4a9e7:0x182,_0x3c9aea:0x6a,_0x2f41b9:0x49,_0x121fc6:0x267,_0x25389d:0x1b2,_0x166927:0x1ff,_0x444255:0x186,_0x1adc0e:0xf3,_0x141a83:0x190,_0x46450d:0x170,_0x5e7181:0x17b,_0x316c82:0xb1,_0x295a24:0x229,_0x1de4df:0x15f,_0x2705a9:0x217,_0x5c180b:0xe3,_0x302091:0x27,_0x503d2e:0x79,_0x5abada:0x59,_0x2821ff:0x18,_0x186c5a:0x90,_0x3ce558:0x134,_0x29ccff:0xd1,_0x50eaf6:0xb3,_0x32082c:0xf6,_0x11b87d:0x1fa,_0x5f2436:0x276,_0x629a4c:0x190,_0x370b00:0x5c,_0x1a0a3d:0x71,_0x2f7af8:0x1,_0x53f6c6:0xa2,_0x98a35b:0x24,_0xb3e242:0xb5,_0x24043c:0x2b5,_0x4bc924:0x209,_0x548e30:0x25e,_0x6ccb9f:0x2d3,_0x2f48c7:0x173,_0x37680e:0x226,_0x57f2b0:0x21f,_0x24d75f:0x253,_0x5aa458:0x303,_0x284836:0x250,_0x46c247:0x8b,_0x5f5a70:0x14,_0x3f8aa2:0xda,_0x58b5ac:0x1c6,_0x2fb98a:0x1ad,_0x4ab28c:0x210,_0x289563:0x2b8,_0x94f6e8:0x27f,_0x24ea75:0x101,_0x5dc0af:0x1b5,_0x338776:0x1bb,_0x399347:0x1ba,_0x2308c5:0x1d2,_0x19e4ab:0x1c8,_0x3540d3:0x1e8,_0x4e7f47:0x257,_0x35609e:0x1,_0x25f8c7:0x224,_0x4c9cef:0x25e,_0x3a9b5a:0x296,_0x51e6b2:0x23f,_0xe37570:0x1fc,_0x41e69e:0x133,_0x3d8d32:0x162,_0x3b17a6:0x1af,_0x39b2d6:0x235,_0x1ecc15:0x187,_0x4fa97c:0x16a,_0x598b3c:0x150,_0x3127f1:0xa9,_0x560bfe:0x32,_0x24bf8d:0x1f,_0x8c13a2:0x152,_0x50747d:0x176,_0x33856c:0x14b,_0x42c1e6:0x1f1,_0x29ae86:0x46,_0x3fd37e:0x15c,_0x3bd791:0x9b,_0x302ee5:0x176,_0x3e3de6:0x130,_0x82eb27:0x136,_0x2e68dc:0x122,_0x2b0128:0x9d,_0x17ae8d:0x54,_0xade338:0x4e,_0x3d40a5:0x3f,_0x684ee8:0x165,_0x294163:0x249,_0x347477:0x236,_0x524473:0x40,_0x30d891:0x78,_0x131a82:0xce,_0x53cdb7:0xa7,_0xec6545:0x15d,_0x40f6a3:0xe1,_0x33d508:0x16c,_0x3230d4:0x142,_0x4bccb0:0x13e,_0x3366be:0x131,_0x47d690:0x1e6,_0x19c71a:0x246,_0x221ae4:0x2c3,_0x1b4ea2:0x1f7,_0x53c103:0x270,_0x26a8e4:0x101,_0x22be0f:0x158,_0x4c12c4:0x205,_0x7e9e52:0x12b,_0x4cd827:0x15c,_0x406ac4:0x114,_0x447933:0x1de,_0x2a555d:0x12d,_0x4e088a:0x60,_0xc280b2:0x5f,_0x226cb6:0xc,_0x1ed6e7:0x60,_0x5ec480:0x110,_0x3984e1:0x49,_0x470fd3:0x1b2,_0x52b4e6:0x132,_0x4c0331:0x11e,_0x41db8c:0x9c,_0x15be5a:0xfe,_0x214795:0xde,_0x4bf535:0x219,_0x350d56:0x147,_0x483c70:0x112,_0x2af981:0xec,_0x275c86:0x139,_0x4072c9:0x95,_0x1e6810:0xc3,_0x1eea6f:0xe6,_0x25cf6:0x108,_0x2aa888:0x23,_0xcaf662:0x60,_0xe3862a:0x114,_0x3d4a5b:0x135,_0x224b8f:0x73,_0x1e7c0b:0xf7,_0x22cc51:0x113,_0x3edac4:0xea,_0x347883:0xdb,_0x338525:0x37,_0x5df30c:0x200,_0x1356e3:0xc7},_0x419332={_0x27fa7c:0x1ab,_0x5a19d4:0x16b},_0x2e4641={_0x15ea3e:0x153},_0x844851={'qJyGN':function(_0x44857e,_0xc69cda){return _0x44857e===_0xc69cda;},'rxhaC':'Not\x20Found','IJJPJ':_0x57e032(_0xed0e58._0x369e8c,_0xed0e58._0x2eae6f,_0xed0e58._0x46f9ac,_0xed0e58._0x4dab5c)+_0x57e032(_0xed0e58._0x3020ad,_0xed0e58._0x2f86eb,_0xed0e58._0x374a81,0x151)+_0x57e032(_0xed0e58._0x13244b,_0xed0e58._0x22dc71,_0xed0e58._0x59a58f,_0xed0e58._0x4f38cf)+_0x47005d(_0xed0e58._0x92d4c4,0x248,0x276,0x2a2),'TtTOe':function(_0x3572c1,_0x42945e){return _0x3572c1===_0x42945e;},'dJOxk':function(_0xe198e4,_0x4158b9){return _0xe198e4===_0x4158b9;},'xkQRk':_0x47005d(_0xed0e58._0x1d1fc8,_0xed0e58._0x3106ae,_0xed0e58._0x1418fc,_0xed0e58._0x1ad580)+_0x47005d(0x187,_0xed0e58._0x1f5a6e,_0xed0e58._0x5c7a76,0x23f)+_0x47005d(_0xed0e58._0x3bcfce,_0xed0e58._0x53acb7,_0xed0e58._0x251ea2,_0xed0e58._0x222909)+_0x47005d(_0xed0e58._0xfd1adb,_0xed0e58._0x49ffe4,_0xed0e58._0x1bde30,0x218)+_0x47005d(_0xed0e58._0x14e324,0x155,_0xed0e58._0x3599ab,0x13d)+_0x47005d(_0xed0e58._0x326859,_0xed0e58._0x599e60,0xa6,_0xed0e58._0x30e88f)+'en\x20first.','PdJqW':function(_0x2fd8b9,_0x861992){return _0x2fd8b9!==_0x861992;},'ttfGE':'PgjSW','yQDmj':_0x47005d(0x2a0,0x23e,_0xed0e58._0x55399b,_0xed0e58._0x10aa68)+'t','ErePr':function(_0x417567,_0x31843a){return _0x417567<_0x31843a;},'pQAoC':function(_0x11337a,_0x4c218e){return _0x11337a!==_0x4c218e;},'rtrGF':'string','biXnb':_0x57e032(_0xed0e58._0x1a166f,0xa3,0x47,0x1e)+'ing\x20sub-ob'+_0x57e032(0x2d,0x68,0xfd,_0xed0e58._0x578040),'YuhVm':function(_0x2bf35e,_0x47db7b){return _0x2bf35e===_0x47db7b;},'IlXco':'WCNah','OaQnB':function(_0x55bd5b,_0x45c779){return _0x55bd5b===_0x45c779;},'RgjBF':'number','GbkzM':_0x47005d(_0xed0e58._0x4b37ac,0x1f8,_0xed0e58._0x4e4b8f,_0xed0e58._0x10e3a6),'Flltk':_0x47005d(_0xed0e58._0xc9d4b8,0x10c,0x14e,_0xed0e58._0x1647d1),'bAHEo':function(_0x13219f,_0x24cdd7){return _0x13219f+_0x24cdd7;},'dCbGo':_0x47005d(0x168,_0xed0e58._0x3c14a3,_0xed0e58._0x31f2bd,_0xed0e58._0x5b64e2),'qhUhw':function(_0x32515f,_0x2116f7,_0x5627a7){return _0x32515f(_0x2116f7,_0x5627a7);},'WEhcV':_0x57e032(-_0xed0e58._0x2b3191,_0xed0e58._0x4f38cf,0x2c,0x45)+_0x57e032(0x67,0xda,_0xed0e58._0x35435d,_0xed0e58._0x579e25),'PuIac':function(_0x5bea27,_0x187d08){return _0x5bea27!==_0x187d08;},'fJUxi':'iHYcl','rUKWk':'HJbGu','ccpqz':_0x47005d(0x163,0x217,0x232,_0xed0e58._0x2251ca)+_0x57e032(_0xed0e58._0x545ec4,_0xed0e58._0x40f3cf,-0x6,_0xed0e58._0x4699a4),'iWqoa':_0x47005d(_0xed0e58._0x58019a,_0xed0e58._0x22981e,_0xed0e58._0x34c130,0x148),'OdnLq':_0x57e032(_0xed0e58._0x271fd9,_0xed0e58._0x303455,0x89,0x172),'mzXpB':'Failed\x20to\x20'+_0x47005d(_0xed0e58._0x4496ff,_0xed0e58._0x4496ff,0x1b3,0x1c7)+_0x47005d(_0xed0e58._0xc3d61e,0x20e,0x2c3,0x23f)+'e','WAQvC':_0x47005d(_0xed0e58._0x5ebd69,_0xed0e58._0x34517f,0x1de,_0xed0e58._0x58217a)+_0x57e032(0x5b,0xfd,_0xed0e58._0x5bec97,0x91)+_0x57e032(-0xe,_0xed0e58._0x45bb6f,-_0xed0e58._0x461fed,_0xed0e58._0xed10b6)},{parentObjective:_0x2ade32,callingTask:_0x355b13}=_0x4a68a8,{objectives:_0x5a48be}=_0x4a68a8[_0x47005d(0x1a6,_0xed0e58._0xc9d4b8,_0xed0e58._0x9a354,_0xed0e58._0x50cf88)];if(!_0x5a48be||!Array[_0x57e032(-_0xed0e58._0x3e8498,_0xed0e58._0x481988,0x34,_0xed0e58._0x51883c)](_0x5a48be)||_0x844851[_0x47005d(_0xed0e58._0x2441ab,_0xed0e58._0x122dee,_0xed0e58._0x186bf0,_0xed0e58._0x251d85)](_0x5a48be[_0x47005d(_0xed0e58._0x4f25e8,0x118,0xf1,0x15b)],0x310+0x69b+-0x9ab)){if(_0x844851[_0x47005d(_0xed0e58._0x58ced6,_0xed0e58._0x253efe,_0xed0e58._0x3f2998,_0xed0e58._0x5d0dee)](_0x844851[_0x47005d(_0xed0e58._0x2dd55b,_0xed0e58._0xef6825,_0xed0e58._0x1dda02,0x2bb)],_0x844851[_0x57e032(0xef,_0xed0e58._0x3f92ab,_0xed0e58._0x421974,_0xed0e58._0x6e0c43)])){const _0x60957d={};_0x60957d[_0x47005d(_0xed0e58._0x10aa68,_0xed0e58._0x1cc63b,_0xed0e58._0x1f78c9,_0xed0e58._0x146ff5)+'d']=_0x47adca,_0x60957d[_0x57e032(0xfb,_0xed0e58._0x217013,0x65,0x16d)]=_0x4bd7f2['message'],_0x3c13a8[_0x57e032(_0xed0e58._0x235de2,0xc4,_0xed0e58._0x1ef393,_0xed0e58._0xb9e805)]('Failed\x20to\x20'+_0x57e032(0x39,0x46,_0xed0e58._0x531f6f,-0x3b)+_0x47005d(0x18f,_0xed0e58._0x5708df,_0xed0e58._0x1eb622,0x1ae)+'e',_0x60957d);}else{const _0x223954={};return _0x223954[_0x47005d(0x20c,_0xed0e58._0x17060a,_0xed0e58._0x2d64b8,0x172)]=_0x844851[_0x47005d(0x190,_0xed0e58._0x955332,0x111,0xaf)],_0x223954[_0x57e032(0x193,_0xed0e58._0x3299fa,0x154,_0xed0e58._0x34c130)]=_0x47005d(0x21e,_0xed0e58._0x1dda02,_0xed0e58._0x761445,_0xed0e58._0x528dfe)+_0x57e032(0x13f,_0xed0e58._0x267efa,0xed,0xf9)+_0x57e032(_0xed0e58._0x162640,_0xed0e58._0x858980,0xb0,-_0xed0e58._0x46ca74)+_0x57e032(0x114,_0xed0e58._0x3c2963,_0xed0e58._0xfd1adb,_0xed0e58._0x17a61c)+_0x47005d(0x2b0,_0xed0e58._0x34d2f9,_0xed0e58._0x5073fa,0x1ee)+_0x57e032(0x83,_0xed0e58._0xf7aac1,0x64,_0xed0e58._0x46ca74)+'ne\x20item',_0x4c4a8e[_0x57e032(0x5b,0xb3,_0xed0e58._0x5c142a,0xe8)](-0x1308+-0x1c79+0x3*0x105b)['json'](_0x223954);}}for(let _0x318555=0x49*-0x7f+-0x1*0x698+-0x119*-0x27;_0x844851['ErePr'](_0x318555,_0x5a48be[_0x57e032(_0xed0e58._0x2b051c,_0xed0e58._0x1110dc,0xca,0x9c)]);_0x318555++){const _0x36e36d=_0x5a48be[_0x318555];if(!_0x36e36d['name']||_0x844851[_0x57e032(-0x2,0x35,_0xed0e58._0x19cbd9,_0xed0e58._0x5c6671)](typeof _0x36e36d[_0x47005d(0x1af,_0xed0e58._0x72946c,_0xed0e58._0x4674eb,0x220)],_0x844851[_0x47005d(0x1a6,0x1e1,_0xed0e58._0x903e00,_0xed0e58._0x591086)])){const _0x207d1d={};return _0x207d1d[_0x57e032(0xf7,0xc4,0x25,_0xed0e58._0x10030a)]=_0x844851[_0x57e032(0xdd,0x6d,_0xed0e58._0x2288a9,0xa4)],_0x207d1d[_0x47005d(0x26c,0x200,_0xed0e58._0x3665fa,_0xed0e58._0x8beea1)]=_0x57e032(0x14e,_0xed0e58._0x49461d,0x116,0xc7)+_0x57e032(0x1f,_0xed0e58._0x50f43b,-_0xed0e58._0x45d5e7,-_0xed0e58._0x498fcc)+_0x318555+(_0x57e032(_0xed0e58._0x2ca48e,0x2a,0x85,-_0xed0e58._0x31e358)+_0x47005d(_0xed0e58._0x2ec26f,0x185,_0xed0e58._0x1801e6,_0xed0e58._0xb7cba2)+_0x57e032(0x43,_0xed0e58._0x189627,0xc0,0x63)),_0x4c4a8e[_0x47005d(0x118,_0xed0e58._0x38297a,0x14f,_0xed0e58._0x355416)](-0x5d1*-0x5+0x1*0x229f+0x184*-0x29)[_0x57e032(0x116,_0xed0e58._0x1e0ef7,_0xed0e58._0x481988,0x76)](_0x207d1d);}}const _0x400eed={};function _0x57e032(_0x547258,_0x5bdc35,_0x156c8f,_0x35ed6d){return _0x26d9a5(_0x547258-0x96,_0x5bdc35-_0x2e4641._0x15ea3e,_0x5bdc35- -0x45e,_0x547258);}_0x400eed[_0x57e032(0xd6,0xbe,_0xed0e58._0x257611,0x12)]=_0x355b13[_0x57e032(_0xed0e58._0x571f16,_0xed0e58._0x247637,_0xed0e58._0x244a26,0xe5)],_0x400eed['parentObje'+_0x47005d(_0xed0e58._0x339d3,0x147,0xda,_0xed0e58._0x4fdc8c)]=_0x2ade32[_0x47005d(_0xed0e58._0x46051a,_0xed0e58._0x288bd9,0x24c,_0xed0e58._0x14e324)],_0x400eed[_0x47005d(0x17f,_0xed0e58._0x463f84,_0xed0e58._0x22a6b4,0x1a3)]=_0x5a48be['length'],logger[_0x47005d(_0xed0e58._0xdef85c,_0xed0e58._0x4c7cd7,0x27b,0x251)](_0x844851[_0x47005d(0x95,_0xed0e58._0x52fce8,0x75,0x18c)],_0x400eed);const _0xa15a3c=new Date()[_0x57e032(-0xc,_0xed0e58._0x47a3d9,0xaf,_0xed0e58._0x4edbf5)+'g'](),_0x11c59d=[];let _0x350d19=0x90b*-0x4+0x15*0x8d+0x1*0x189b;for(const [,_0x72a665]of tasks[_0x47005d(_0xed0e58._0x2bd081,0x1e4,_0xed0e58._0x2746ea,0x1e6)]()){if(_0x844851['YuhVm'](_0x844851['IlXco'],_0x57e032(0xc3,_0xed0e58._0x135518,0x74,_0xed0e58._0x4f25f5))){if(_0x72a665['parentObje'+_0x57e032(0x25,0x53,0xd1,0x50)]===_0x2ade32[_0x47005d(0x12e,_0xed0e58._0x288bd9,0x22d,0x24c)]&&_0x844851[_0x57e032(-_0xed0e58._0x50e536,0x3d,_0xed0e58._0x2f6b4b,_0xed0e58._0x2bc510)](typeof _0x72a665['sortOrder'],_0x844851[_0x57e032(0xb1,_0xed0e58._0xd625b3,0xa2,_0xed0e58._0x35ea4d)])){if(_0x844851[_0x47005d(_0xed0e58._0xa3ebbb,0x1af,0x113,0x1f9)]!==_0x844851[_0x57e032(0x9,0x75,_0xed0e58._0x141695,0x114)])_0x350d19=Math[_0x57e032(0xfb,_0xed0e58._0x11abc5,0x17d,_0xed0e58._0x1c925a)](_0x350d19,_0x72a665[_0x57e032(_0xed0e58._0x2b6246,_0xed0e58._0x2ef6ec,0x90,_0xed0e58._0xe17446)]);else{if(_0x844851[_0x47005d(_0xed0e58._0x28a9e0,0x10d,_0xed0e58._0xc16650,0x187)](_0x2e17d8[_0x57e032(0xda,_0xed0e58._0x168c40,_0xed0e58._0x4828f4,0xff)+_0x47005d(_0xed0e58._0x4210cf,0x147,_0xed0e58._0x266ba6,_0xed0e58._0x86481c)],_0x1bd1b1[_0x57e032(_0xed0e58._0xed10b6,_0xed0e58._0x218e2e,0x38,_0xed0e58._0x4ae9be)])&&_0x844851['qJyGN'](_0x402e7b[_0x47005d(0x160,0x1a7,0x1bf,0x20f)],_0x47005d(0x14e,0x119,_0xed0e58._0xd6d8bb,0x9c))){const _0x4ff556={};_0x4ff556[_0x57e032(_0xed0e58._0x36a9de,_0xed0e58._0x40ef16,_0xed0e58._0x40f3cf,_0xed0e58._0x2fd2de)]=_0xf3fa61['taskId'],_0x4ff556[_0x57e032(0xaf,_0xed0e58._0x50890d,0xd7,0x24)]=_0x4bf235['name'],_0x4ff556[_0x47005d(0x1c0,_0xed0e58._0x443af4,0x264,_0xed0e58._0x253efe)]=_0x2a53a7[_0x47005d(_0xed0e58._0x481599,_0xed0e58._0x443af4,_0xed0e58._0x4342b2,0x161)],_0x4ff556['createdAt']=_0x121e15[_0x47005d(_0xed0e58._0x49c19d,_0xed0e58._0x509045,_0xed0e58._0x1a5ad7,_0xed0e58._0xb256db)],_0x4ff556[_0x57e032(_0xed0e58._0xccf1da,_0xed0e58._0x5aa115,0x78,-0x8)+'ns']=_0x1d789f['parameters']?.[_0x47005d(0x1e5,_0xed0e58._0x5d1492,_0xed0e58._0x643f77,0x17a)+'ns']||'',_0x4c0932['push'](_0x4ff556);}}}}else{const {callingTask:_0x461e0d}=_0x59de51,_0x29fa03=_0x8248ca['params']['id'],_0x20c82c=_0x2a0d56[_0x47005d(_0xed0e58._0x10baa2,_0xed0e58._0xf7d61c,_0xed0e58._0x17060a,0x156)](_0x29fa03);if(!_0x20c82c||_0x20c82c['status']!==_0x57e032(0x93,_0xed0e58._0x3c2a8c,-0x6e,-0xc)){const _0x31219e={};return _0x31219e['error']=_0x844851['rxhaC'],_0x31219e['message']=_0x47005d(0x28d,_0xed0e58._0x253bf6,0x2ea,_0xed0e58._0x5c4f49)+_0x57e032(0xe4,_0xed0e58._0x2eed09,_0xed0e58._0x3ddfe6,_0xed0e58._0x183ff8),_0x295978[_0x47005d(0x121,_0xed0e58._0x38297a,0x10f,_0xed0e58._0x4fbee9)](0x32d+-0x2494+-0xba9*-0x3)[_0x57e032(0xb7,0x66,_0xed0e58._0x584e0e,0x60)](_0x31219e);}const _0x100331={};_0x100331[_0x57e032(_0xed0e58._0x19f166,0xbe,0x10e,_0xed0e58._0x32ffd4)]=_0x461e0d[_0x57e032(_0xed0e58._0x9628f2,_0xed0e58._0x40ef16,_0xed0e58._0x4f1230,0x166)],_0x100331[_0x57e032(0x192,_0xed0e58._0x595b32,_0xed0e58._0xe4a9e7,0x16d)+'d']=_0x29fa03,_0x2759ef['info'](_0x844851[_0x57e032(0x54,0xbc,_0xed0e58._0x3c9aea,_0xed0e58._0x2f41b9)],_0x100331);const _0x10510c={};_0x10510c[_0x47005d(0x14c,0x1b2,_0xed0e58._0x121fc6,_0xed0e58._0x25389d)]=_0x20c82c['taskId'],_0x10510c[_0x47005d(_0xed0e58._0x1801e6,_0xed0e58._0x72946c,0x22c,_0xed0e58._0x4fbee9)]=_0x20c82c[_0x47005d(_0xed0e58._0x166927,_0xed0e58._0x444255,0x1b2,0x21b)],_0x10510c['instructio'+'ns']=_0x20c82c[_0x47005d(0x4d,_0xed0e58._0x1adc0e,_0xed0e58._0xfd1adb,0xd8)]?.[_0x47005d(0x141,_0xed0e58._0x141a83,_0xed0e58._0x46450d,_0xed0e58._0x5e7181)+'ns']||'',_0x10510c['parentObje'+_0x47005d(0x1e4,0x147,0xde,0xba)]=_0x20c82c['parentObje'+_0x47005d(_0xed0e58._0x316c82,0x147,0x1e0,0x105)],_0x10510c[_0x47005d(0x1dc,0x253,0x1cd,_0xed0e58._0x295a24)]=_0x20c82c[_0x57e032(0x172,_0xed0e58._0x1de4df,0xd6,_0xed0e58._0x1c925a)],_0x10510c[_0x47005d(_0xed0e58._0x2705a9,0x17f,_0xed0e58._0x5c180b,0x176)]=_0x20c82c[_0x57e032(_0xed0e58._0x302091,0x8b,_0xed0e58._0x503d2e,_0xed0e58._0x5abada)],_0x1bacda[_0x47005d(0x127,0x15a,0xd1,0xc2)](_0x10510c);}}function _0x47005d(_0x5ce3a6,_0x19c9c8,_0x3af37c,_0x55438d){return _0x26d9a5(_0x5ce3a6-_0x419332._0x27fa7c,_0x19c9c8-_0x419332._0x5a19d4,_0x19c9c8- -0x36a,_0x55438d);}for(let _0x17742f=0xc1f*-0x3+-0x1ee4+0x166b*0x3;_0x17742f<_0x5a48be[_0x57e032(0xb0,_0xed0e58._0x1110dc,_0xed0e58._0x2821ff,-_0xed0e58._0x186c5a)];_0x17742f++){const _0x18830=_0x5a48be[_0x17742f],_0xfcafe=generateObjectiveId(),_0x56ed35=_0x350d19+_0x844851[_0x47005d(0x1fb,0x159,_0xed0e58._0x3ce558,_0xed0e58._0x50cf88)](_0x17742f,-0x9fd*-0x2+-0x1804+0x40b)*(0x2110+-0x7*-0x1cd+-0x29c3*0x1),_0x2f008a={};_0x2f008a[_0x57e032(0xf1,_0xed0e58._0x247637,0x144,0x6b)]=_0xfcafe,_0x2f008a[_0x57e032(0x49,0x92,0xbf,0x120)]=_0x18830[_0x57e032(0x6d,0x92,_0xed0e58._0x29ccff,_0xed0e58._0x46051a)],_0x2f008a[_0x57e032(_0xed0e58._0x251ea2,_0xed0e58._0x50eaf6,0x90,0xf3)]=_0x844851[_0x47005d(0x149,_0xed0e58._0x32082c,0xd0,0x97)],_0x2f008a[_0x47005d(_0xed0e58._0x11b87d,0x1e2,_0xed0e58._0x5f2436,_0xed0e58._0x629a4c)+'t']=_0x2ade32['environmen'+'t'],_0x2f008a['taskType']=_0x2ade32['taskType']||_0x57e032(0xad,0x5,-_0xed0e58._0x370b00,-0x55),_0x2f008a[_0x57e032(-_0xed0e58._0x1a0a3d,-_0xed0e58._0x2f7af8,-_0xed0e58._0x461fed,_0xed0e58._0x53f6c6)]={..._0x2ade32[_0x57e032(_0xed0e58._0xb9e805,-0x1,_0xed0e58._0x98a35b,-_0xed0e58._0xb3e242)]||{}},_0x2f008a['branches']=_0x2ade32[_0x47005d(_0xed0e58._0x24043c,0x204,_0xed0e58._0x4bc924,_0xed0e58._0x548e30)]||{},_0x2f008a[_0x47005d(0x265,0x226,0x29a,_0xed0e58._0x6ccb9f)]=_0x2ade32[_0x47005d(_0xed0e58._0x2f48c7,_0xed0e58._0x37680e,_0xed0e58._0x57f2b0,0x1f4)]||[],_0x2f008a[_0x47005d(0x1e3,_0xed0e58._0x24d75f,_0xed0e58._0x5aa458,_0xed0e58._0x284836)]=_0xa15a3c,_0x2f008a[_0x57e032(0x8c,_0xed0e58._0x46c247,_0xed0e58._0x5f5a70,_0xed0e58._0xed10b6)]=_0xa15a3c,_0x2f008a['parentObje'+_0x57e032(0x29,0x53,0xe4,_0xed0e58._0x3f8aa2)]=_0x2ade32[_0x57e032(0xb0,_0xed0e58._0x218e2e,_0xed0e58._0x36a9de,0x7a)],_0x2f008a[_0x57e032(_0xed0e58._0x4edbf5,_0xed0e58._0x2ef6ec,_0xed0e58._0x58b5ac,0x135)]=_0x56ed35,_0x2f008a[_0x47005d(_0xed0e58._0x2fb98a,_0xed0e58._0x4ab28c,_0xed0e58._0x289563,_0xed0e58._0x94f6e8)+_0x57e032(0xb7,_0xed0e58._0x24ea75,0x145,_0xed0e58._0x5dc0af)]=_0x355b13['taskId'],_0x2f008a[_0x47005d(_0xed0e58._0x338776,0x19f,_0xed0e58._0x399347,0x210)]=_0x2ade32[_0x47005d(0x17e,0x19f,_0xed0e58._0x2308c5,0x241)]||_0x355b13[_0x47005d(_0xed0e58._0x19e4ab,_0xed0e58._0x2d64b8,0x1f8,0x195)],_0x2f008a[_0x47005d(_0xed0e58._0x3540d3,_0xed0e58._0x4e7f47,0x1d3,0x1cb)]=_0x2ade32['isPinned']||![],_0x2f008a[_0x57e032(-_0xed0e58._0x1a0a3d,-_0xed0e58._0x2f7af8,-_0xed0e58._0x461fed,_0xed0e58._0x53f6c6)]['instructio'+'ns']=_0x18830['instructio'+'ns']||'';const _0x9eafeb=_0x2f008a;tasks[_0x57e032(-_0xed0e58._0x46f9ac,_0xed0e58._0x35609e,-0x4a,-_0xed0e58._0x571f16)](_0xfcafe,_0x9eafeb);try{const _0x914845=await _0x844851[_0x47005d(0x23b,_0xed0e58._0x25f8c7,_0xed0e58._0x4c9cef,0x290)](createObjectiveDirectory,_0xfcafe,_0xa15a3c),_0x477001=_0x5a9146[_0x47005d(_0xed0e58._0x3a9b5a,_0xed0e58._0x51e6b2,0x2d4,_0xed0e58._0xe37570)](_0x914845,_0x844851['WEhcV']);await _0x1cf7b5['writeFile'](_0x477001,JSON[_0x47005d(0x120,_0xed0e58._0x41e69e,0x115,_0xed0e58._0x3d8d32)](_0x9eafeb,null,0x55d*-0x1+0x1*-0xed7+0x1436),_0x47005d(0x141,0x14f,0x1d8,_0xed0e58._0x3b17a6));if(_0x18830[_0x47005d(_0xed0e58._0x39b2d6,_0xed0e58._0x5d1492,_0xed0e58._0x28a9e0,_0xed0e58._0x1ecc15)+'ns']){if(_0x844851[_0x57e032(0xda,0x158,_0xed0e58._0x4fa97c,0xdb)](_0x844851[_0x57e032(_0xed0e58._0x598b3c,_0xed0e58._0x3127f1,_0xed0e58._0x560bfe,_0xed0e58._0x24bf8d)],_0x844851[_0x47005d(_0xed0e58._0x8c13a2,_0xed0e58._0x50747d,0x131,0x110)])){const _0xc1966f=_0x5a9146[_0x57e032(0x1d3,_0xed0e58._0x33856c,_0xed0e58._0x42c1e6,0x98)](_0x914845,_0x47005d(0x13d,_0xed0e58._0x1bde30,_0xed0e58._0x122dee,0x1ed)),_0x457347={};_0x457347[_0x57e032(0xe0,0xd4,_0xed0e58._0x29ae86,0xff)]=!![],await _0x1cf7b5[_0x57e032(_0xed0e58._0x3fd37e,0x117,_0xed0e58._0x3bd791,_0xed0e58._0x302ee5)](_0xc1966f,_0x457347);const _0xf7eb57=_0x5a9146[_0x47005d(0x210,0x23f,0x197,_0xed0e58._0x629a4c)](_0xc1966f,_0x844851['ccpqz']);await _0x1cf7b5[_0x57e032(_0xed0e58._0x5c142a,0x113,0xd4,_0xed0e58._0x3e3de6)](_0xf7eb57,_0x18830['instructio'+'ns'],_0x844851[_0x47005d(_0xed0e58._0x82eb27,_0xed0e58._0x2e68dc,_0xed0e58._0x2b0128,0x10b)]);}else _0x844851[_0x57e032(-_0xed0e58._0x17ae8d,0x4d,_0xed0e58._0xade338,_0xed0e58._0x3d40a5)](_0x24ce61[_0x47005d(_0xed0e58._0x684ee8,0x1aa,_0xed0e58._0x294163,_0xed0e58._0x347477)+_0x57e032(0x81,0x53,-0x1,_0xed0e58._0x524473)],_0x494043[_0x57e032(0x107,0xbe,_0xed0e58._0x30d891,0x53)])&&_0x844851[_0x57e032(0x3,_0xed0e58._0xade338,0x85,_0xed0e58._0x131a82)](typeof _0xca24b5[_0x57e032(0xce,_0xed0e58._0x2ef6ec,_0xed0e58._0x53cdb7,0x1bd)],_0x47005d(_0xed0e58._0xec6545,0x109,0xfc,0x9e))&&(_0x3eaedd=_0x207696['max'](_0x1268e7,_0x5eddfc[_0x57e032(_0xed0e58._0x40f6a3,0x112,_0xed0e58._0x33d508,_0xed0e58._0x421974)]));}}catch(_0x36ae1b){if(_0x844851[_0x47005d(0xbe,_0xed0e58._0x3230d4,_0xed0e58._0x4bccb0,_0xed0e58._0x3366be)](_0x844851[_0x47005d(_0xed0e58._0x47d690,_0xed0e58._0x19c71a,0x1e4,_0xed0e58._0x221ae4)],_0x844851[_0x47005d(0x196,0x246,_0xed0e58._0x1b4ea2,_0xed0e58._0x53c103)])){const _0x3eaa61={};_0x3eaa61['objectiveI'+'d']=_0xfcafe,_0x3eaa61[_0x57e032(0xf5,_0xed0e58._0xed10b6,_0xed0e58._0x26a8e4,_0xed0e58._0x22be0f)]=_0x36ae1b[_0x47005d(0x245,0x200,_0xed0e58._0x4c12c4,0x1c2)],logger[_0x57e032(_0xed0e58._0x50cf88,_0xed0e58._0x217013,0x14c,0x35)](_0x844851[_0x47005d(_0xed0e58._0x7e9e52,0x157,0x124,0xff)],_0x3eaa61);}else{const _0x396688={};return _0x396688[_0x47005d(0x194,0x1b8,_0xed0e58._0x4cd827,_0xed0e58._0x406ac4)]=_0x57e032(_0xed0e58._0x447933,_0xed0e58._0x2a555d,0x19c,_0xed0e58._0x222909),_0x396688[_0x57e032(_0xed0e58._0x4e088a,0x10c,_0xed0e58._0xf7d61c,_0xed0e58._0xc280b2)]=_0x844851[_0x57e032(-0x1e,_0xed0e58._0x226cb6,0xaf,_0xed0e58._0x1ed6e7)],_0x2b9813[_0x57e032(0xb4,0xb3,0x90,_0xed0e58._0x5ec480)](-0x2599+-0x1516+0x3*0x1418)[_0x57e032(0x83,_0xed0e58._0x1e0ef7,-0x3,0x97)](_0x396688);}}broadcastTaskUpdate&&_0x844851[_0x47005d(0x20a,0x224,0x211,0x2a4)](broadcastTaskUpdate,_0x57e032(0x144,_0xed0e58._0x32ffd4,_0xed0e58._0x3984e1,0x43),_0x9eafeb);const _0x61e842={};_0x61e842[_0x47005d(0x15c,_0xed0e58._0x470fd3,0x195,0x21c)]=_0xfcafe,_0x61e842[_0x57e032(-0x21,0x92,_0xed0e58._0x52b4e6,0x143)]=_0x9eafeb['name'],_0x61e842[_0x57e032(_0xed0e58._0x4c0331,_0xed0e58._0x41db8c,0x127,0x70)+'ns']=_0x9eafeb[_0x47005d(_0xed0e58._0x15be5a,0xf3,0x129,_0xed0e58._0x214795)]?.['instructio'+'ns']||'',_0x61e842[_0x47005d(_0xed0e58._0x4bf535,0x1aa,0x247,0x145)+'ctiveId']=_0x9eafeb[_0x57e032(0xe,0xb6,0xcf,_0xed0e58._0x5c6671)+_0x47005d(0x189,_0xed0e58._0x350d56,0x198,0x15a)],_0x61e842['sortOrder']=_0x9eafeb[_0x57e032(0x7c,_0xed0e58._0x483c70,0x92,0xad)],_0x11c59d[_0x57e032(0x13d,_0xed0e58._0x2af981,_0xed0e58._0x275c86,_0xed0e58._0x4072c9)](_0x61e842);}logger[_0x57e032(0x171,0xf2,0xfd,0x1a5)](_0x844851[_0x57e032(_0xed0e58._0x1e6810,_0xed0e58._0x1eea6f,_0xed0e58._0x25cf6,_0xed0e58._0x222909)],{'taskId':_0x355b13[_0x47005d(0x1a7,0x1b2,_0xed0e58._0x463f84,0x1d9)],'parentObjectiveId':_0x2ade32['taskId'],'createdCount':_0x11c59d[_0x57e032(-_0xed0e58._0x2aa888,0x24,-_0xed0e58._0xcaf662,0x1e)],'objectiveIds':_0x11c59d['map'](_0x33d356=>_0x33d356['taskId'])});const _0x4c5f4a={};_0x4c5f4a[_0x47005d(0x153,_0xed0e58._0xe3862a,_0xed0e58._0x3d4a5b,0x182)]=!![],_0x4c5f4a[_0x57e032(-0x13,_0xed0e58._0x224b8f,_0xed0e58._0x1e7c0b,_0xed0e58._0x22cc51)]=_0x11c59d[_0x47005d(0x75,0x118,0xbb,_0xed0e58._0x3edac4)],_0x4c5f4a[_0x57e032(_0xed0e58._0x347883,0x3a,-0x58,_0xed0e58._0x338525)]=_0x11c59d,_0x4c4a8e[_0x47005d(0x1a6,0x1a7,0x1ee,_0xed0e58._0x5df30c)](-0x1*-0x16b7+0x1249*-0x2+-0xea4*-0x1)[_0x57e032(0x77,0x66,_0xed0e58._0x1356e3,_0xed0e58._0x3c2a8c)](_0x4c5f4a);}),router[_0x26d9a5(0x3fa,0x461,0x47d,0x4f8)](_0x26d9a5(0x509,0x5b9,0x5ab,0x5f9),requireTaskAuth,async(_0x364801,_0x1e9b85)=>{const _0x57bd73={_0x558ec0:0x539,_0x5d7785:0x4dd,_0xe143c2:0x162,_0xb2e09c:0x6f,_0x2ae855:0xb8,_0x20dbba:0x40,_0x45d794:0x4ca,_0x118080:0x4b3,_0xa52f63:0x51d,_0x424ecf:0x5aa,_0x4559b7:0x6a,_0xfca7a4:0x53e,_0x271bc3:0x530,_0x419667:0x444,_0x5803a4:0x3b,_0x3f8a7a:0x19,_0x23e7a9:0x87,_0x5eb72d:0x456,_0x38dda9:0x4a,_0x32743d:0x6a,_0x5428db:0x10,_0x7381b4:0x5b,_0x22a327:0x52a,_0x504910:0x575,_0x485ae7:0x5b6,_0x5d6b4c:0x43,_0x223e76:0xaa,_0x28bd57:0x11a,_0x363131:0xf7,_0x3a639b:0x527,_0x61dbbe:0x56d,_0x1ee129:0x5e2,_0x3d6aff:0x61,_0x359e6e:0x4c,_0x431157:0x58,_0x2cd110:0x437,_0x5e12b0:0x4e4,_0x5747ea:0x14,_0x24bc4c:0x18a,_0x12f906:0xf3,_0x2ca7e8:0x194,_0x171f52:0x143,_0x15fb2a:0x17c,_0x25bd7c:0x562,_0x5d54a3:0x4c2,_0x4acaaa:0x466,_0x572fcb:0x3d9,_0x5126f4:0xa3,_0x24d832:0x419,_0x56d21d:0x465,_0x138ee3:0x4bc,_0x542903:0x433,_0x3469ec:0x3d5,_0x2d4fa7:0x444,_0x1d0e29:0x4bd,_0x291fe7:0x4c8,_0x408058:0x543,_0x5a6d20:0x453,_0x21bd92:0x29,_0x479dda:0x62,_0x10535d:0x40,_0x44e3e0:0x515,_0x2b4724:0x411,_0x5abaac:0xbe,_0x201a69:0x36,_0x2c0466:0xc9,_0x5421fc:0x11d,_0x29fd76:0x122,_0x148d53:0x199,_0xbcad8f:0x4a7,_0x3e87e8:0x466,_0x26c679:0x5b0,_0x15f128:0x1a6,_0x423d65:0x440,_0x45ba78:0x73,_0x367631:0x4b,_0x4b01c5:0x14,_0x132137:0x4fb,_0x2badc0:0x19,_0x284fd0:0x1,_0x10345d:0x55,_0x3e253c:0xdc,_0x5b9ad9:0x2b,_0x34d8c1:0x16d,_0x5eb18b:0x4c8,_0xa507a6:0x3c,_0xdfeb3c:0x148,_0x274a8b:0x146,_0x2af7ac:0x7c,_0x429b7c:0x9a,_0x3bba78:0xa0,_0x2c40d9:0x10b,_0x3b211a:0x3cb,_0x1a7cf8:0x519,_0x3d9d42:0x47e,_0x563f62:0x429,_0x2a9bfd:0x44,_0x185a86:0x509,_0x1e5543:0x455,_0x49d911:0xb1,_0x414e10:0x50,_0x280471:0x5a2,_0x3f07d7:0x556,_0x5e49eb:0x4c5,_0x2eb426:0x536,_0x110312:0x21,_0x2e430a:0x19,_0xcd181c:0x149,_0x333b74:0x545,_0x5eba15:0x468,_0x46219d:0x546,_0x33213e:0x4a4,_0x56c513:0x3f2,_0x219616:0x43c,_0x4c91a1:0x6,_0x1d9287:0x133,_0x528d31:0xff,_0x525776:0x5b5,_0x373bf1:0x524,_0x4380b2:0x572,_0x4c70f9:0x5c5,_0x197058:0x571,_0x3eccc7:0x506,_0x4dd64c:0x5c3,_0x5cdb78:0x52e,_0x217c4a:0x571,_0x4693eb:0x4e9,_0x9615ae:0x50c,_0xb82ec1:0x8b,_0x8a6e2b:0x4d,_0x324dfd:0xd9,_0x408990:0x4a6,_0x59858f:0xcd,_0x432051:0xab,_0x313237:0x44d,_0x3bf47d:0x4c8,_0x1151e2:0x44b,_0x4a4b03:0x5c,_0x54f273:0x436,_0x412bc1:0x3da,_0xd13b85:0x3a4,_0x23ae6d:0xdf,_0x7ef69e:0x32,_0x27205f:0x4e7,_0x147766:0x465,_0x305631:0x454,_0x2ffa0e:0x486,_0x5e6c47:0xf6,_0x571f17:0x152,_0x515386:0x4a9,_0x6c0373:0x400,_0x4e2246:0x497,_0x125df0:0x3ca,_0x31f345:0x478,_0x216018:0x4ab,_0x1b0fd8:0x42e},_0x5a8cc7={_0x1c93e8:0x19b},_0x48e913={_0x18c65d:0x1b3},_0x45eb14={};_0x45eb14['KPqus']=_0x4593ec(0x5cd,_0x57bd73._0x558ec0,_0x57bd73._0x5d7785,0x4df),_0x45eb14[_0x4c1455(_0x57bd73._0xe143c2,_0x57bd73._0xb2e09c,_0x57bd73._0x2ae855,_0x57bd73._0x20dbba)]=_0x4593ec(0x43e,_0x57bd73._0x45d794,_0x57bd73._0x118080,0x478)+'was\x20not\x20la'+_0x4593ec(0x4dc,_0x57bd73._0xa52f63,0x589,_0x57bd73._0x424ecf)+_0x4c1455(0x192,0x178,0xe8,_0x57bd73._0x4559b7)+_0x4593ec(_0x57bd73._0xfca7a4,0x4c6,_0x57bd73._0x271bc3,_0x57bd73._0x419667);function _0x4c1455(_0x3909f7,_0x470b88,_0x26a2d2,_0x5ba9c8){return _0x17db7b(_0x3909f7-0x19d,_0x470b88-_0x48e913._0x18c65d,_0x5ba9c8,_0x26a2d2-0x1a7);}_0x45eb14[_0x4c1455(-0xc2,-_0x57bd73._0x5803a4,-_0x57bd73._0x3f8a7a,_0x57bd73._0x23e7a9)]=_0x4593ec(0x3ce,_0x57bd73._0x5eb72d,0x3c7,0x3ed),_0x45eb14[_0x4c1455(_0x57bd73._0x38dda9,_0x57bd73._0x32743d,_0x57bd73._0x5428db,_0x57bd73._0x7381b4)]='Objective\x20'+_0x4593ec(0x413,0x4c0,0x439,0x52f),_0x45eb14['KdQxy']=_0x4593ec(_0x57bd73._0x22a327,0x54c,_0x57bd73._0x504910,_0x57bd73._0x485ae7),_0x45eb14[_0x4c1455(0x2,-0x35,_0x57bd73._0x5d6b4c,_0x57bd73._0x223e76)]=_0x4c1455(_0x57bd73._0x28bd57,_0x57bd73._0x363131,0xdc,0x44),_0x45eb14[_0x4593ec(_0x57bd73._0x3a639b,_0x57bd73._0x61dbbe,0x4c5,_0x57bd73._0x1ee129)]=function(_0x250ad7,_0x448a38){return _0x250ad7===_0x448a38;},_0x45eb14[_0x4c1455(_0x57bd73._0x3d6aff,0xc,_0x57bd73._0x359e6e,_0x57bd73._0x431157)]=_0x4593ec(0x3a2,_0x57bd73._0x2cd110,0x4ca,_0x57bd73._0x5e12b0),_0x45eb14[_0x4c1455(-_0x57bd73._0x5747ea,0x37,0x59,-_0x57bd73._0x7381b4)]=function(_0x100c25,_0x88382e){return _0x100c25!==_0x88382e;},_0x45eb14[_0x4593ec(0x3d4,0x455,0x3c1,0x3be)]=_0x4c1455(0xbe,_0x57bd73._0x24bc4c,0x103,_0x57bd73._0x12f906),_0x45eb14[_0x4c1455(0x10a,_0x57bd73._0x2ca7e8,_0x57bd73._0x171f52,_0x57bd73._0x15fb2a)]=_0x4593ec(_0x57bd73._0x25bd7c,_0x57bd73._0x5d54a3,0x527,0x4d7)+_0x4593ec(_0x57bd73._0x4acaaa,0x479,0x51d,_0x57bd73._0x572fcb)+'g\x20objectiv'+'es';const _0x4c03f5=_0x45eb14,{parentObjective:_0x29c7d6,callingTask:_0xfe6d6a}=_0x364801,_0x2a06c3=_0x29c7d6[_0x4c1455(0x21,0x110,_0x57bd73._0x5126f4,0x8d)+_0x4593ec(_0x57bd73._0x24d832,_0x57bd73._0x56d21d,_0x57bd73._0x138ee3,0x423)];if(!_0x2a06c3){if(_0x4c03f5[_0x4593ec(_0x57bd73._0x542903,0x40d,_0x57bd73._0x3469ec,_0x57bd73._0x2d4fa7)]!==_0x4c03f5[_0x4c1455(0xb7,-0x3f,0x43,-0x34)]){const _0x5545b3={};return _0x5545b3['siblings']=[],_0x5545b3[_0x4593ec(_0x57bd73._0x1d0e29,_0x57bd73._0x291fe7,_0x57bd73._0x408058,_0x57bd73._0x5a6d20)+_0x4c1455(-_0x57bd73._0x21bd92,-_0x57bd73._0x479dda,_0x57bd73._0x10535d,0xc9)]=_0x29c7d6['taskId'],_0x1e9b85[_0x4593ec(0x468,0x478,_0x57bd73._0x44e3e0,_0x57bd73._0x2b4724)](_0x5545b3);}else{const _0x4592b3={};_0x4592b3['taskId']=_0x43919c,_0x4e5e3b[_0x4c1455(-0x1e,_0x57bd73._0x5abaac,0x6d,-_0x57bd73._0x201a69)](_0x4c1455(_0x57bd73._0x2c0466,_0x57bd73._0x5421fc,_0x57bd73._0x29fd76,_0x57bd73._0x148d53)+_0x4593ec(0x45e,0x4cc,0x45b,0x45d)+_0x4593ec(_0x57bd73._0xbcad8f,0x4f0,0x597,_0x57bd73._0x3e87e8)+_0x4593ec(0x508,0x52f,0x5e1,_0x57bd73._0x26c679)+_0x4c1455(0x154,0x179,0x10d,_0x57bd73._0x15f128)+_0x4593ec(0x36e,0x41a,0x3ee,_0x57bd73._0x423d65),_0x4592b3);const _0x337a46={};return _0x337a46['error']=_0x4c03f5[_0x4c1455(_0x57bd73._0x45ba78,-0x31,_0x57bd73._0x367631,-_0x57bd73._0x4b01c5)],_0x337a46[_0x4593ec(_0x57bd73._0x132137,0x51e,0x577,0x591)]=_0x4c03f5['MLYIt'],_0x5e4247[_0x4c1455(0xb1,_0x57bd73._0x2badc0,0xa0,-_0x57bd73._0x284fd0)](-0x214c+-0xd05*-0x1+0x2*0xaed)[_0x4c1455(0x86,-_0x57bd73._0x10345d,0x53,0xf3)](_0x337a46);}}const _0x133e89=[];for(const [,_0x14c1fd]of tasks[_0x4c1455(_0x57bd73._0x3e253c,_0x57bd73._0x5b9ad9,0xdd,_0x57bd73._0x34d8c1)]()){if(_0x4c03f5['ZdiJj'](_0x14c1fd[_0x4593ec(0x50a,_0x57bd73._0x5eb18b,0x436,0x466)+_0x4c1455(-_0x57bd73._0xa507a6,0xb6,_0x57bd73._0x10535d,0x66)],_0x2a06c3)&&_0x4c03f5[_0x4c1455(0x143,0x18c,_0x57bd73._0xdfeb3c,_0x57bd73._0x274a8b)](_0x14c1fd[_0x4c1455(_0x57bd73._0x2af7ac,_0x57bd73._0x429b7c,_0x57bd73._0x3bba78,_0x57bd73._0x2c40d9)],_0x4c03f5[_0x4593ec(_0x57bd73._0x3b211a,0x471,0x4eb,0x4db)])&&_0x4c03f5[_0x4593ec(_0x57bd73._0x1a7cf8,_0x57bd73._0x3d9d42,_0x57bd73._0x563f62,0x492)](_0x14c1fd[_0x4c1455(_0x57bd73._0x2a9bfd,0x9a,0xab,0x11a)],_0x29c7d6['taskId'])){if(_0x4c03f5[_0x4593ec(_0x57bd73._0x185a86,_0x57bd73._0x1e5543,0x3ad,0x485)]!==_0x4c03f5['WETqf']){const _0x3fcfdc={};return _0x3fcfdc[_0x4c1455(0xa3,0x44,_0x57bd73._0x49d911,_0x57bd73._0x414e10)]=_0x4c03f5['rDDkc'],_0x3fcfdc[_0x4593ec(0x552,0x51e,_0x57bd73._0x280471,0x59a)]=_0x4c03f5[_0x4c1455(-0x12,_0x57bd73._0x359e6e,_0x57bd73._0x5428db,0xc3)],_0x56d9ac[_0x4593ec(_0x57bd73._0x3f07d7,_0x57bd73._0x5e49eb,_0x57bd73._0x2eb426,0x426)](0x1c3d+0x1bc*0x2+-0x1e21)[_0x4593ec(0x4c5,0x478,0x4ea,0x4ec)](_0x3fcfdc);}else{const _0x328136={};_0x328136[_0x4c1455(_0x57bd73._0x110312,_0x57bd73._0x2e430a,0xab,_0x57bd73._0xcd181c)]=_0x14c1fd[_0x4593ec(_0x57bd73._0x333b74,0x4d0,_0x57bd73._0x5eba15,0x4b2)],_0x328136[_0x4593ec(_0x57bd73._0x46219d,_0x57bd73._0x33213e,_0x57bd73._0x56c513,_0x57bd73._0x219616)]=_0x14c1fd[_0x4c1455(_0x57bd73._0x4c91a1,0x73,0x7f,-0x36)],_0x328136[_0x4c1455(_0x57bd73._0x1d9287,0x5e,_0x57bd73._0x528d31,0x16d)]=_0x14c1fd[_0x4593ec(_0x57bd73._0x525776,_0x57bd73._0x373bf1,0x4ba,_0x57bd73._0x4380b2)],_0x328136[_0x4593ec(_0x57bd73._0x4c70f9,_0x57bd73._0x197058,_0x57bd73._0x3eccc7,_0x57bd73._0x4dd64c)]=_0x14c1fd[_0x4593ec(_0x57bd73._0x5cdb78,_0x57bd73._0x217c4a,_0x57bd73._0x4693eb,_0x57bd73._0x9615ae)],_0x133e89[_0x4c1455(_0x57bd73._0xb82ec1,_0x57bd73._0x8a6e2b,_0x57bd73._0x324dfd,0x9f)](_0x328136);}}}_0x133e89[_0x4593ec(0x484,0x537,0x585,_0x57bd73._0x408990)]((_0x3c67d9,_0x4d3c6d)=>(_0x3c67d9[_0x4593ec(0x472,0x524,0x5d9,0x4d4)]||0x41*-0x28+-0x1496+0x1ebe)-(_0x4d3c6d[_0x4593ec(0x57b,0x524,0x483,0x4f6)]||0x33a+0x2*-0x362+0x38a));const _0x1eac2e={};function _0x4593ec(_0x1b675d,_0x279d2b,_0x2d69f3,_0x226ca6){return _0x26d9a5(_0x1b675d-0xda,_0x279d2b-_0x5a8cc7._0x1c93e8,_0x279d2b- -0x4c,_0x2d69f3);}_0x1eac2e[_0x4c1455(_0x57bd73._0x59858f,0x10a,_0x57bd73._0x432051,_0x57bd73._0x32743d)]=_0xfe6d6a['taskId'],_0x1eac2e[_0x4593ec(_0x57bd73._0x313237,_0x57bd73._0x3bf47d,0x4a8,0x523)+'ctiveId']=_0x29c7d6[_0x4593ec(0x4e9,0x4d0,0x532,_0x57bd73._0x1151e2)],_0x1eac2e[_0x4c1455(0xcc,-0x2,_0x57bd73._0x4a4b03,-0x13)+'nt']=_0x133e89[_0x4593ec(0x47d,_0x57bd73._0x54f273,_0x57bd73._0x412bc1,_0x57bd73._0xd13b85)],logger[_0x4c1455(0xd8,0x68,_0x57bd73._0x23ae6d,0xb2)](_0x4c03f5['xIQjH'],_0x1eac2e);const _0x4ab178={};_0x4ab178[_0x4c1455(0x6f,_0x57bd73._0x7ef69e,-0x17,-0x6)]=_0x133e89,_0x4ab178[_0x4593ec(0x450,0x4c8,0x561,_0x57bd73._0x27205f)+_0x4593ec(0x4c9,_0x57bd73._0x147766,_0x57bd73._0x305631,_0x57bd73._0x2ffa0e)]=_0x29c7d6[_0x4c1455(_0x57bd73._0x5e6c47,_0x57bd73._0x571f17,_0x57bd73._0x432051,0x131)],_0x4ab178[_0x4593ec(0x3f7,_0x57bd73._0x515386,_0x57bd73._0x6c0373,0x4c1)+_0x4593ec(_0x57bd73._0x4e2246,0x46b,0x4db,_0x57bd73._0x125df0)+'Id']=_0x2a06c3,_0x1e9b85[_0x4593ec(0x4b0,_0x57bd73._0x31f345,_0x57bd73._0x216018,_0x57bd73._0x1b0fd8)](_0x4ab178);}),router[_0x17db7b(-0x130,-0x1bc,-0x111,-0x19b)](_0x26d9a5(0x534,0x490,0x4c7,0x411),requireTaskAuth,async(_0x439377,_0x457ef8)=>{const _0x417cdf={_0x9320b5:0x7a,_0x5567d9:0xad,_0x13d3d1:0xfe,_0x6cfb38:0x1ca,_0xc75e67:0x140,_0x4b0eda:0x90,_0x2c7176:0x15e,_0xec77d2:0xcd,_0x14b607:0x1b8,_0x34f6eb:0x145,_0x51499b:0xc1,_0x228f93:0x91,_0x3fffb1:0x13d,_0x2b5a04:0x128,_0x1deb66:0xdb,_0x3940e5:0xaf,_0x57c6af:0x38,_0x217654:0xc6,_0x44ae28:0x17a,_0x3a5ce7:0x62,_0x3ddb3d:0xc1,_0x129466:0x13,_0x3affc7:0x6e,_0x82efa2:0xc6,_0x4e2385:0xe2,_0x183ecf:0x16a,_0x771333:0x143,_0x292754:0x156,_0x42a886:0x12c,_0x96730e:0x84,_0x3549bb:0x83,_0x2d0707:0x1,_0x3bfebc:0x111,_0x553675:0xa0,_0x1da583:0xf8,_0x570b1f:0x144,_0x130fed:0x34,_0x189113:0x60,_0x52bd02:0xa5,_0xe729d3:0x66,_0x55bcfe:0xc7,_0x267d8d:0x2a,_0x2a0f12:0x149,_0x7b708e:0x4f,_0x219f46:0x56,_0x3e2057:0x4a,_0x46276b:0x20,_0x1e1ce7:0x20,_0x4a0d26:0x11,_0x42112a:0x14,_0x1502c2:0x3e,_0x483886:0x96,_0x74d7ae:0x64,_0x1c8637:0x68,_0x3b34da:0x19,_0x2e66ad:0x43,_0x1df344:0xc3,_0x3980b3:0x33,_0x30417a:0x65,_0x4ea090:0x176,_0x193097:0x123,_0x4c0b69:0x133,_0x4d757e:0x169,_0x229503:0x92,_0x340ee2:0xff,_0x3b5663:0x146,_0x35468e:0x24,_0x402505:0x4e,_0x2af34d:0x42,_0x22d76d:0x35,_0x67e681:0x155,_0x1be21a:0xf5,_0xd5c3f1:0x15c,_0x2f2bc1:0x1c2,_0x3667ce:0x167,_0x4c6053:0xb2,_0x4943f9:0x47,_0x7fcd3f:0x3e,_0x4b6f87:0x1fd,_0x301096:0xcc,_0x19af9d:0x16e,_0xf0fa86:0x107,_0x12aa80:0x27,_0x38f774:0x33,_0x4ee961:0x30,_0x4e2ed4:0xdb,_0x6d71e4:0x3c,_0x3d36df:0xfa,_0x53e154:0x9e,_0xf0a639:0x77,_0x3d1a6f:0x63,_0x7b61a5:0x49,_0x410428:0x2d,_0x432a5a:0x122,_0x5725c7:0xce,_0x36d4db:0xb6,_0x390a64:0x5f,_0x51b42c:0xbb,_0xda4e87:0x170,_0x4e8ace:0xff,_0x5d2bca:0x5f,_0x5a6798:0xda,_0xcc9905:0x33,_0x1fc955:0x119,_0x4b9312:0x5d},_0x4f0d32={_0x2910f8:0xa1},_0x41d80a={_0x5f0045:0x34},_0x2332af={};_0x2332af['vdZKs']=_0x4daa10(-0x10e,-_0x417cdf._0x9320b5,-0x48,-_0x417cdf._0x5567d9),_0x2332af[_0x2f67a8(_0x417cdf._0x13d3d1,_0x417cdf._0x6cfb38,0x1d9,_0x417cdf._0xc75e67)]=_0x2f67a8(0xb2,0xec,0xb0,_0x417cdf._0x4b0eda)+_0x4daa10(-0xa1,-_0x417cdf._0x2c7176,-_0x417cdf._0xec77d2,-0xd7)+_0x2f67a8(0x138,_0x417cdf._0x14b607,0xcc,0x116),_0x2332af[_0x4daa10(-0x7e,0x4e,-0xbb,-0x34)]=function(_0x29d559,_0x12e264){return _0x29d559===_0x12e264;},_0x2332af[_0x4daa10(-0x53,-0x164,-_0x417cdf._0x34f6eb,-_0x417cdf._0x51499b)]=_0x4daa10(-_0x417cdf._0x228f93,-_0x417cdf._0x3fffb1,-_0x417cdf._0x2b5a04,-0xda),_0x2332af[_0x4daa10(-0xab,-_0x417cdf._0x1deb66,-0x11b,-_0x417cdf._0x3940e5)]=_0x4daa10(-_0x417cdf._0x57c6af,0x13,_0x417cdf._0x217654,0x1e),_0x2332af[_0x2f67a8(_0x417cdf._0x44ae28,_0x417cdf._0x3a5ce7,_0x417cdf._0x3ddb3d,0xd3)]=function(_0x4c720f,_0x5668fe){return _0x4c720f===_0x5668fe;},_0x2332af['KyNux']=_0x2f67a8(-0x48,-_0x417cdf._0x129466,0x67,_0x417cdf._0x3affc7),_0x2332af[_0x2f67a8(0x95,_0x417cdf._0x82efa2,0x3e,_0x417cdf._0x4e2385)]=function(_0x26e305,_0xab73d7){return _0x26e305===_0xab73d7;},_0x2332af[_0x2f67a8(_0x417cdf._0x183ecf,_0x417cdf._0x771333,_0x417cdf._0x292754,_0x417cdf._0x42a886)]=_0x4daa10(-0x88,0x62,-0x93,-0x41)+'ing\x20child\x20'+_0x2f67a8(_0x417cdf._0x96730e,0x87,_0x417cdf._0x42a886,_0x417cdf._0x3549bb);const _0x4b88da=_0x2332af,{parentObjective:_0x2572a8,callingTask:_0x4aad89}=_0x439377;function _0x4daa10(_0x5c8867,_0x4ab20f,_0x35642a,_0x4655ac){return _0x17db7b(_0x5c8867-_0x41d80a._0x5f0045,_0x4ab20f-0xec,_0x35642a,_0x4655ac-0xc9);}const _0xee3c9b=[];for(const [,_0x47b752]of tasks[_0x4daa10(-0x80,-0x60,-0x27,-_0x417cdf._0x2d0707)]()){if(_0x4b88da['iYmxY'](_0x4b88da[_0x4daa10(-_0x417cdf._0x3bfebc,-_0x417cdf._0x553675,-_0x417cdf._0x1da583,-_0x417cdf._0x3ddb3d)],_0x4b88da[_0x4daa10(-_0x417cdf._0x570b1f,-_0x417cdf._0x130fed,-0xc7,-_0x417cdf._0x3940e5)]))_0x504d76=_0x275bbf[_0x2f67a8(0x10,_0x417cdf._0x189113,0x142,_0x417cdf._0x52bd02)],_0x1e5936=_0xe35f10[_0x2f67a8(0x101,0x4a,_0x417cdf._0xe729d3,_0x417cdf._0x55bcfe)+_0x4daa10(0x67,-0xb8,-0xa3,-_0x417cdf._0x267d8d)],_0x1dc45e=_0x47ea5c[_0x2f67a8(_0x417cdf._0x292754,_0x417cdf._0x2a0f12,0x131,0x100)+_0x4daa10(-0x3b,0xf8,_0x417cdf._0x7b708e,_0x417cdf._0x219f46)];else{if(_0x4b88da[_0x4daa10(_0x417cdf._0x3e2057,0x15,_0x417cdf._0x46276b,-0x67)](_0x47b752['parentObje'+_0x2f67a8(0xb1,_0x417cdf._0x1e1ce7,-_0x417cdf._0x4a0d26,0x9c)],_0x2572a8['taskId'])&&_0x47b752[_0x4daa10(_0x417cdf._0x42112a,-0x7a,-0x3a,-_0x417cdf._0x1502c2)]===_0x4b88da['KyNux']){if(_0x4b88da['QtsUA'](_0x4daa10(0x13,-0x53,-_0x417cdf._0x483886,0x19),_0x4daa10(-0x1d,_0x417cdf._0x74d7ae,_0x417cdf._0x1c8637,_0x417cdf._0x3b34da))){const _0x303179={};_0x303179[_0x4daa10(-_0x417cdf._0x2e66ad,-_0x417cdf._0x1df344,-0x1f,-_0x417cdf._0x3980b3)]=_0x47b752['taskId'],_0x303179[_0x2f67a8(_0x417cdf._0x30417a,0x5b,_0x417cdf._0x4ea090,0xdb)]=_0x47b752[_0x2f67a8(0x11b,_0x417cdf._0x193097,0x88,_0x417cdf._0x1deb66)],_0x303179['sortOrder']=_0x47b752[_0x2f67a8(0x111,_0x417cdf._0x4c0b69,0x203,0x15b)],_0x303179['createdAt']=_0x47b752[_0x2f67a8(0x164,_0x417cdf._0x4d757e,0x192,0x1a8)],_0x303179[_0x4daa10(-0xcd,-_0x417cdf._0x229503,-_0x417cdf._0x340ee2,-0x55)+'ns']=_0x47b752['parameters']?.['instructio'+'ns']||'',_0xee3c9b[_0x2f67a8(0xf0,0xe8,_0x417cdf._0x3b5663,0x135)](_0x303179);}else{const _0x1539fe={};return _0x1539fe[_0x4daa10(-_0x417cdf._0x35468e,-_0x417cdf._0x402505,_0x417cdf._0x2af34d,-0x2d)]=_0x4b88da[_0x2f67a8(_0x417cdf._0x22d76d,_0x417cdf._0x67e681,_0x417cdf._0x1be21a,0xd5)],_0x1539fe['message']=_0x4b88da[_0x2f67a8(_0x417cdf._0xd5c3f1,0x1f4,_0x417cdf._0x2f2bc1,0x140)],_0x87fa02[_0x2f67a8(_0x417cdf._0x3667ce,0x1ae,_0x417cdf._0x4c6053,0xfc)](-0x394*0x4+0x20e8+-0x21*0x84)[_0x2f67a8(_0x417cdf._0x4943f9,_0x417cdf._0x7fcd3f,0xc8,_0x417cdf._0x3940e5)](_0x1539fe);}}}}function _0x2f67a8(_0x52b8dc,_0x550767,_0x1e4854,_0x274227){return _0x26d9a5(_0x52b8dc-0x1aa,_0x550767-_0x4f0d32._0x2910f8,_0x274227- -0x415,_0x52b8dc);}_0xee3c9b[_0x2f67a8(0x105,_0x417cdf._0x4b6f87,_0x417cdf._0x301096,_0x417cdf._0x19af9d)]((_0x116f69,_0x2b1dd2)=>(_0x116f69['sortOrder']||0x2*0x7ab+-0x4bd*0x5+0x85b)-(_0x2b1dd2['sortOrder']||0x1*-0x137d+0x3*0x622+0x117*0x1));const _0x4ade2b={};_0x4ade2b[_0x2f67a8(0x125,0x1b3,0x105,_0x417cdf._0xf0fa86)]=_0x4aad89[_0x4daa10(-_0x417cdf._0x12aa80,-0x71,-0xc3,-_0x417cdf._0x38f774)],_0x4ade2b[_0x4daa10(_0x417cdf._0x4ee961,-0xe1,-_0x417cdf._0x4e2ed4,-0x3b)+_0x4daa10(-0x72,-_0x417cdf._0x6d71e4,-_0x417cdf._0x3d36df,-_0x417cdf._0x53e154)]=_0x2572a8['taskId'],_0x4ade2b[_0x4daa10(_0x417cdf._0xf0a639,-_0x417cdf._0x3d1a6f,-_0x417cdf._0x7b61a5,_0x417cdf._0x410428)]=_0xee3c9b[_0x2f67a8(_0x417cdf._0x432a5a,0x49,0x10e,0x6d)],logger['info'](_0x4b88da[_0x2f67a8(_0x417cdf._0x5725c7,0xe8,0x1c0,_0x417cdf._0x42a886)],_0x4ade2b);const _0x264b3d={};_0x264b3d[_0x2f67a8(0xa0,_0x417cdf._0x36d4db,_0x417cdf._0x390a64,_0x417cdf._0x51b42c)]=_0xee3c9b,_0x264b3d[_0x2f67a8(_0x417cdf._0xda4e87,0x152,0x54,_0x417cdf._0x4e8ace)+_0x4daa10(-0x12,-0x59,_0x417cdf._0x129466,-0x9e)]=_0x2572a8[_0x4daa10(_0x417cdf._0x5d2bca,-_0x417cdf._0x5a6798,-0x12,-_0x417cdf._0xcc9905)],_0x457ef8[_0x2f67a8(0xf8,_0x417cdf._0x1fc955,_0x417cdf._0x4b9312,_0x417cdf._0x3940e5)](_0x264b3d);}),router[_0x17db7b(-0xd7,-0x132,-0x1a1,-0x131)](_0x17db7b(-0x4c,-0x127,-0x197,-0xfb)+_0x17db7b(-0xbb,-0x136,-0x13e,-0x10e)+_0x26d9a5(0x5a5,0x59e,0x563,0x5cc),requireTaskAuth,async(_0x359584,_0x4adc1a)=>{const _0x48787d={_0x2a2fd3:0x1a4,_0x45afdf:0x254,_0x5b38a4:0x209,_0x349fde:0x21a,_0x1699a7:0xa7,_0x170f4d:0x8d,_0x299911:0x10,_0x53829d:0x9d,_0xcd8927:0xb7,_0x59231d:0x130,_0x197e49:0x1bd,_0x58a7ea:0x12e,_0x319e7f:0x175,_0xafe161:0xd0,_0x1b3095:0x75,_0x3725cf:0x27,_0x23e13a:0x61,_0x1530f9:0xb8,_0x562ca7:0xe3,_0x7a0533:0x10f,_0xeae2:0x119,_0x5a6047:0x124,_0x91e5f6:0x19f,_0x48b294:0x2a3,_0x407e5c:0x1cf,_0x278565:0x1f3,_0x269317:0x1d1,_0x20688a:0xf4,_0x31576f:0x17b,_0x38c8ae:0xd2,_0x5e82d2:0x51,_0x2c0a16:0x53,_0x3c02c7:0xd9,_0x4461d4:0xdf,_0x3f6490:0x4b,_0x5a4116:0x74,_0xe05a04:0xcb,_0x5a4147:0x3c,_0x1aefd2:0x2e3,_0x44ac0a:0x20f,_0x4f939f:0x1d4,_0xc982e8:0x1d4,_0x1fd8ca:0x167,_0x29507c:0x126,_0x4b2579:0xcb,_0x2128c8:0x272,_0x4ae74e:0x1db,_0xf34e0a:0x264,_0x26db77:0x22b,_0x31d027:0x24b,_0x27288e:0x1d8,_0x13eb77:0x1e4,_0x8ee842:0x181,_0x447aa8:0x61,_0x58203b:0xce,_0x3aa13b:0xc3,_0x3087f0:0xb6,_0x363452:0x11b,_0x4fdf8b:0x5a,_0x1aa457:0x42,_0x121483:0x4b,_0x26894f:0x1b3,_0x3f43ce:0x22b,_0x5dfd4b:0x233,_0x226f69:0x2bc,_0x3fd3f8:0x269,_0x463a95:0x1d7,_0x4a214a:0x204,_0x330faf:0xb9,_0x335ed4:0x108,_0x1c6e63:0x1c2,_0x150264:0x12a,_0x25cddd:0x13a,_0x2b325c:0x4,_0x54b3b2:0xaf,_0x12ba31:0x9,_0x23df55:0x2d,_0xeca70e:0x13,_0x32c575:0x4e,_0x5d4a20:0x45,_0x4bef94:0x3c,_0x3b6fd8:0x6b,_0x55d489:0x1,_0x5c38f6:0xc,_0x5c4c47:0x49,_0x3568c2:0x1e,_0x59756d:0x11,_0x48fc86:0x168,_0x41da3c:0x13e,_0x6d9d6:0x28c,_0x1333eb:0x1fe,_0x14a62d:0x21f,_0x4d3d85:0x82,_0x5a5279:0x3b,_0x56889d:0x213,_0x2339b0:0x28f,_0x20c94f:0x1d3,_0x21e76e:0xac,_0x4aaf20:0x29,_0x3b599e:0x4e,_0x4c1858:0x7b,_0x5731c1:0x48,_0x29cd18:0x13,_0x22438b:0x1b,_0x5b48f1:0x32,_0x298d60:0x13,_0x3bf729:0x53,_0x1d84db:0x13a,_0x1c04ac:0x245,_0x238743:0x1d,_0x3b6c3f:0x50,_0x4db9b5:0x3f,_0x3e583:0x40,_0x36e775:0x215,_0x48febc:0x19f,_0x47ad92:0x122,_0x57816e:0xd2,_0x3c2c61:0xb0,_0x58d3aa:0x195,_0x2ec678:0x106,_0x3edd8a:0x11f,_0x50ee19:0x189,_0x2644f3:0x114,_0x24d90a:0x220,_0x3d2cbc:0x11c,_0x17b8c8:0x6f,_0x8f9cf:0x159,_0x3f1d71:0x29d,_0x1fda2b:0x1e2,_0x159c25:0x23f,_0x23f932:0x2b5,_0x151ea2:0x1a0,_0x180930:0x1a1,_0x2ed75b:0x24f,_0x58b06e:0x283,_0xdca2b9:0x137,_0x5288ac:0xa9,_0x1e19b7:0x1fd,_0xeb4378:0xb7,_0x815733:0x9e,_0x50bd43:0x92,_0x11273e:0xa3,_0x16fbb0:0x35,_0x524289:0x8c,_0x2ef187:0x14,_0x14a39d:0x257,_0x3fd95b:0x49,_0x36124f:0x102,_0x6a6a0:0x237,_0x871bf5:0x7d,_0x25846b:0x243,_0x5c42f1:0x25d,_0x2c0778:0x1bf,_0x3d6b32:0x120,_0x828065:0x7c,_0xbc4b6b:0x2ae,_0x18c030:0x170,_0x5e5d48:0x2fd,_0x41b220:0x2ef,_0x4c0421:0x274,_0xe0a867:0x251,_0x1c45a9:0x27f,_0x2236d3:0xa0,_0x5c6640:0x302,_0xbb73c7:0x281,_0x1b626f:0x244,_0x2e881c:0x22d,_0x5b206e:0x20d,_0x3a6118:0x246,_0x33a0f1:0x1e4,_0x459ac9:0x248,_0x54ca07:0x22c,_0x5169b0:0x199,_0x42af7e:0x18f,_0x349342:0x20e,_0x4b4055:0x28b,_0x2a8f3a:0x104,_0x4236b5:0x177,_0x2c7a43:0x197,_0x15c95c:0x64,_0x47ec85:0xa4,_0x4c6d5a:0x20,_0x596a81:0xad,_0x93cc41:0x5d,_0xa70c9d:0x3e,_0x5cbfa3:0x6a,_0x517aca:0x93,_0x1a07d:0x1ea,_0x16eb5d:0x1de,_0x2c4eca:0x7c,_0x2cd06f:0xda,_0x22efcf:0x66,_0x4967a5:0x8,_0x139a58:0x4e,_0x4ede70:0x2b,_0x3fa890:0x110,_0x57dc9e:0x65,_0x27f662:0x6f,_0x473cdf:0x26,_0xe6ee63:0x140,_0x1626d1:0x140,_0x313646:0x100,_0x10f3bb:0x1de,_0x18f873:0x250,_0x3e1920:0x188,_0x31433d:0x1de,_0x35fa9f:0x207,_0x4b02bf:0x112,_0x170742:0x1a0,_0x351870:0x1e4,_0x583060:0x1bc,_0x3bff90:0x1ab},_0x33c177={_0x17e76c:0x170},_0x149ba3={'AIzAM':function(_0x5aa470,_0x577f55,_0x4a3ffb){return _0x5aa470(_0x577f55,_0x4a3ffb);},'rNyqb':_0x371f62(_0x48787d._0x2a2fd3,_0x48787d._0x45afdf,_0x48787d._0x5b38a4,_0x48787d._0x349fde),'xlgLw':function(_0x25a225,_0x416925){return _0x25a225===_0x416925;},'uPQTc':function(_0x468857,_0x461d5b){return _0x468857===_0x461d5b;},'ZyBwJ':'Bad\x20Reques'+'t','PwyBi':_0x191468(-_0x48787d._0x1699a7,-_0x48787d._0x170f4d,_0x48787d._0x299911,-0xbb),'glvUM':function(_0xc1a2d8,_0x468e92){return _0xc1a2d8!==_0x468e92;},'euTsn':'Forbidden','XoHkM':_0x191468(-_0x48787d._0x53829d,-0x8a,-_0x48787d._0xcd8927,-_0x48787d._0x59231d)+_0x371f62(_0x48787d._0x197e49,_0x48787d._0x58a7ea,_0x48787d._0x319e7f,0x178)+_0x371f62(_0x48787d._0xafe161,0x148,0x146,0xb6)+_0x191468(-_0x48787d._0x1b3095,-_0x48787d._0x3725cf,-_0x48787d._0x23e13a,0x2b)+_0x191468(0x5a,0x35,-0x45,_0x48787d._0x1530f9)+'ve','TRJna':'objective','xEVAk':_0x371f62(_0x48787d._0x562ca7,_0x48787d._0x7a0533,_0x48787d._0xeae2,_0x48787d._0x5a6047)+_0x371f62(0x232,0x18b,0x18a,0x13d)+_0x371f62(_0x48787d._0x91e5f6,_0x48787d._0x48b294,0x24c,0x246),'dnrQB':'Task\x20updat'+_0x371f62(_0x48787d._0x407e5c,0x125,0x1d1,0x22f)+'jective','qFJGl':function(_0x338001,_0x32574d){return _0x338001!==_0x32574d;},'TBCCg':function(_0x5b8a9c,_0x3ed71b){return _0x5b8a9c(_0x3ed71b);},'yobFl':_0x371f62(0x236,0x1bd,_0x48787d._0x278565,_0x48787d._0x269317),'DBFLw':_0x371f62(_0x48787d._0x20688a,0x200,_0x48787d._0x31576f,_0x48787d._0x38c8ae),'nWNYc':function(_0x400e14,_0x23358e){return _0x400e14!==_0x23358e;},'nbKKs':'output','dSltj':function(_0x3b3b99,_0x3176d){return _0x3b3b99!==_0x3176d;},'UdvZI':_0x191468(0xaa,_0x48787d._0x5e82d2,0xd8,0xff),'YqYRh':_0x371f62(0x243,_0x48787d._0x20688a,0x191,0x1ea),'CmxKI':_0x191468(0xde,_0x48787d._0x2c0a16,_0x48787d._0x3c02c7,0x69)+_0x191468(0x25,-0x8b,-0x89,-_0x48787d._0x4461d4)+_0x191468(-_0x48787d._0x3f6490,0x49,0x6f,_0x48787d._0x5a4116)+_0x191468(-_0x48787d._0xe05a04,-_0x48787d._0x5a4147,-0xef,-0x37),'zTffM':_0x371f62(0x2ac,_0x48787d._0x1aefd2,0x25c,_0x48787d._0x44ac0a)+'ed','qpSYb':_0x371f62(_0x48787d._0x4f939f,_0x48787d._0xc982e8,_0x48787d._0x1fd8ca,0xd6)+_0x371f62(0x1a7,0x80,_0x48787d._0x29507c,0x19e)+_0x191468(_0x48787d._0x3725cf,-0x63,-0x27,-_0x48787d._0x4b2579)},{parentObjective:_0x26182a,callingTask:_0x2cd428}=_0x359584,{objectiveId:_0x298cc3}=_0x359584['params'],{name:_0x2ef3f3,instructions:_0x528884}=_0x359584['body'];if(_0x149ba3[_0x371f62(_0x48787d._0x2128c8,_0x48787d._0x4ae74e,_0x48787d._0xf34e0a,_0x48787d._0x26db77)](_0x2ef3f3,undefined)&&_0x149ba3[_0x191468(-0x1e,0x4e,-0x30,-0x49)](_0x528884,undefined)){const _0x3a3bda={};return _0x3a3bda[_0x371f62(_0x48787d._0x31d027,_0x48787d._0x27288e,_0x48787d._0x13eb77,_0x48787d._0x8ee842)]=_0x149ba3['ZyBwJ'],_0x3a3bda[_0x191468(_0x48787d._0x447aa8,0x3b,0x2e,_0x48787d._0x58203b)]='At\x20least\x20o'+_0x191468(-_0x48787d._0x3aa13b,-_0x48787d._0x3087f0,-_0x48787d._0x363452,-_0x48787d._0x4fdf8b)+'name\x20or\x20in'+'structions'+_0x191468(_0x48787d._0x1aa457,-0x3b,-_0x48787d._0x121483,-0x58)+_0x371f62(0x198,0x148,_0x48787d._0x26894f,_0x48787d._0x3f43ce),_0x4adc1a['status'](-0x938+-0x1*0x112c+-0x4*-0x6fd)['json'](_0x3a3bda);}const _0x4a0714=tasks['get'](_0x298cc3);if(!_0x4a0714){const _0x34edc5={};return _0x34edc5[_0x371f62(0x17a,_0x48787d._0x5dfd4b,0x1e4,0x24e)]=_0x149ba3[_0x371f62(_0x48787d._0x226f69,0x1c6,_0x48787d._0x3fd3f8,_0x48787d._0x463a95)],_0x34edc5[_0x371f62(0x272,_0x48787d._0x4a214a,0x22c,0x2da)]=_0x191468(-_0x48787d._0x330faf,-0x8a,-_0x48787d._0x335ed4,0x17)+_0x371f62(_0x48787d._0x1c6e63,_0x48787d._0x150264,_0x48787d._0x25cddd,0x17c)+_0x191468(0x6c,-_0x48787d._0x2b325c,_0x48787d._0x54b3b2,-_0x48787d._0x12ba31),_0x4adc1a['status'](0x1*0x1d3c+-0x11b*-0x1+-0x1cc3)['json'](_0x34edc5);}if(_0x149ba3['glvUM'](_0x4a0714[_0x191468(_0x48787d._0x23df55,-0x1b,0x40,0x45)+'ctiveId'],_0x26182a[_0x191468(-0x8,-_0x48787d._0xeca70e,-_0x48787d._0x32c575,-_0x48787d._0x5a4116)])){const _0x2bfc45={};return _0x2bfc45[_0x191468(0x3e,-0xd,_0x48787d._0x5d4a20,0xa7)]=_0x149ba3['euTsn'],_0x2bfc45['message']=_0x149ba3[_0x191468(0xed,0x47,-_0x48787d._0x4bef94,0xf6)],_0x4adc1a[_0x191468(-0x77,-0x1e,-0x15,0x10)](0xfda+-0x1e38+0x1*0xff1)[_0x191468(0x36,-_0x48787d._0x3b6fd8,_0x48787d._0x55d489,-0x84)](_0x2bfc45);}if(_0x149ba3[_0x191468(-_0x48787d._0x5c38f6,-_0x48787d._0x5c4c47,-0x20,-0xc7)](_0x4a0714[_0x191468(-0x9a,-_0x48787d._0x3568c2,-0x1b,-_0x48787d._0x59756d)],_0x149ba3[_0x371f62(0x1a0,0x1f9,_0x48787d._0x48fc86,_0x48787d._0x41da3c)])){const _0x400d17={};return _0x400d17[_0x191468(0x92,-0xd,-0x60,-0xbe)]=_0x149ba3[_0x371f62(_0x48787d._0x6d9d6,_0x48787d._0x1333eb,_0x48787d._0x14a62d,0x28a)],_0x400d17[_0x191468(_0x48787d._0x4d3d85,_0x48787d._0x5a5279,-0x67,0x79)]=_0x149ba3[_0x371f62(0x1ba,_0x48787d._0x56889d,0x20a,_0x48787d._0x2339b0)],_0x4adc1a[_0x371f62(0x164,0x1f7,_0x48787d._0x20c94f,0x1b6)](-0xbff+0x253f+-0x17b0)[_0x191468(-0xdc,-_0x48787d._0x3b6fd8,-_0x48787d._0x21e76e,_0x48787d._0x4aaf20)](_0x400d17);}logger['info'](_0x149ba3[_0x191468(-0xa4,-_0x48787d._0x3b599e,-_0x48787d._0x4c1858,-_0x48787d._0x5731c1)],{'taskId':_0x2cd428[_0x191468(-_0x48787d._0x5e82d2,-_0x48787d._0x29cd18,_0x48787d._0x3725cf,_0x48787d._0x22438b)],'parentObjectiveId':_0x26182a[_0x191468(_0x48787d._0x5b48f1,-_0x48787d._0x298d60,_0x48787d._0x3bf729,-0x50)],'subObjectiveId':_0x298cc3,'updatingName':_0x2ef3f3!==undefined,'updatingInstructions':_0x149ba3[_0x371f62(_0x48787d._0x1d84db,0x165,0x1a8,_0x48787d._0x1c04ac)](_0x528884,undefined)});const _0x4d2822=new Date()['toISOStrin'+'g']();function _0x191468(_0x5b713d,_0x1d0747,_0x384097,_0x5d7e62){return _0x26d9a5(_0x5b713d-0x1d5,_0x1d0747-0x5c,_0x1d0747- -0x52f,_0x384097);}_0x149ba3[_0x191468(_0x48787d._0x238743,0x57,-_0x48787d._0x5b48f1,_0x48787d._0x3b6c3f)](_0x2ef3f3,undefined)&&(_0x4a0714[_0x191468(-0x1e,-_0x48787d._0x4db9b5,_0x48787d._0x3e583,-_0x48787d._0x121483)]=_0x2ef3f3);_0x149ba3[_0x371f62(_0x48787d._0x36e775,0x265,0x248,_0x48787d._0x48febc)](_0x528884,undefined)&&(_0x4a0714[_0x191468(-_0x48787d._0x47ad92,-_0x48787d._0x57816e,-_0x48787d._0x3c2c61,-0xfa)]={..._0x4a0714[_0x371f62(_0x48787d._0x58d3aa,_0x48787d._0x2ec678,_0x48787d._0x3edd8a,_0x48787d._0x50ee19)],'instructions':_0x528884});_0x4a0714[_0x371f62(_0x48787d._0x2644f3,0x235,0x1ab,_0x48787d._0x24d90a)]=_0x4d2822,_0x4a0714['lastModifi'+_0x191468(-_0x48787d._0x3d2cbc,-_0x48787d._0x17b8c8,-0x90,_0x48787d._0x1aa457)]=_0x2cd428[_0x371f62(_0x48787d._0x8f9cf,0x15a,0x1de,0x22b)];try{const _0x5982c3=await _0x149ba3['TBCCg'](findTaskDirectory,_0x298cc3);if(_0x5982c3){if(_0x149ba3[_0x371f62(_0x48787d._0x3f1d71,_0x48787d._0x1fda2b,_0x48787d._0x159c25,_0x48787d._0x23f932)](_0x149ba3['yobFl'],_0x149ba3[_0x371f62(0x211,_0x48787d._0x151ea2,_0x48787d._0x180930,0x1e8)])){const _0x4e3fdf=_0x5a9146[_0x371f62(_0x48787d._0x2ed75b,_0x48787d._0x58b06e,0x26b,0x29f)](_0x5982c3,_0x371f62(_0x48787d._0xdca2b9,_0x48787d._0x5288ac,0x12e,0x1d3)+_0x371f62(_0x48787d._0x1e19b7,_0x48787d._0x319e7f,0x1fa,0x27c));await _0x1cf7b5[_0x191468(0xa6,0x42,0x73,_0x48787d._0xeb4378)](_0x4e3fdf,JSON[_0x191468(-_0x48787d._0x815733,-_0x48787d._0x50bd43,-_0x48787d._0x11273e,-0xff)](_0x4a0714,null,0x190d+-0x1*0x82e+-0x1*0x10dd),_0x149ba3[_0x191468(-_0x48787d._0x16fbb0,-_0x48787d._0x524289,-0xd4,_0x48787d._0x2ef187)]);if(_0x149ba3[_0x371f62(0x24d,0x279,0x26f,_0x48787d._0x14a39d)](_0x528884,undefined)){const _0x414fba=_0x5a9146[_0x191468(_0x48787d._0x3fd95b,0x7a,0x7e,_0x48787d._0x36124f)](_0x5982c3,_0x149ba3['nbKKs']),_0x1bdd51={};_0x1bdd51['recursive']=!![],await _0x1cf7b5[_0x371f62(0x1d8,0x201,_0x48787d._0x6a6a0,0x299)](_0x414fba,_0x1bdd51);const _0x5efe4c=_0x5a9146[_0x191468(0x20,0x7a,_0x48787d._0x871bf5,0x51)](_0x414fba,_0x371f62(0x211,0x24d,_0x48787d._0x25846b,_0x48787d._0x5c42f1)+'uctions.md');await _0x1cf7b5[_0x371f62(_0x48787d._0x2c0778,0x1a0,_0x48787d._0x5dfd4b,0x272)](_0x5efe4c,_0x528884,_0x149ba3[_0x191468(-0xf9,-0x8c,-_0x48787d._0x3d6b32,-0x73)]);}}else{const _0xda5e03={};return _0xda5e03[_0x191468(-0x9a,-0xd,_0x48787d._0x11273e,-_0x48787d._0x828065)]='Bad\x20Reques'+'t',_0xda5e03[_0x371f62(0x203,_0x48787d._0xbc4b6b,0x22c,0x20b)]=_0x191468(-0xe5,-0xd8,-0xbd,-_0x48787d._0x18c030)+'not\x20an\x20obj'+_0x371f62(_0x48787d._0x5e5d48,_0x48787d._0x41b220,0x24c,_0x48787d._0x4c0421),_0x5f2fab[_0x371f62(_0x48787d._0xe0a867,0x26f,0x1d3,_0x48787d._0x1c45a9)](0x262e+0x1bf2*-0x1+-0x22b*0x4)[_0x191468(0x10,-_0x48787d._0x3b6fd8,-0x40,-_0x48787d._0x2236d3)](_0xda5e03);}}}catch(_0x5b4ce3){if(_0x149ba3['dSltj'](_0x149ba3['UdvZI'],_0x149ba3[_0x371f62(0x1b9,0x25e,0x266,_0x48787d._0x5c6640)])){const _0x29ebda={};_0x29ebda[_0x371f62(_0x48787d._0xbb73c7,_0x48787d._0x1b626f,_0x48787d._0x2e881c,0x2d9)+'d']=_0x298cc3,_0x29ebda[_0x371f62(_0x48787d._0x5b206e,_0x48787d._0x3a6118,_0x48787d._0x33a0f1,0x22e)]=_0x5b4ce3[_0x371f62(0x226,_0x48787d._0x459ac9,_0x48787d._0x54ca07,_0x48787d._0x5169b0)],logger[_0x371f62(0x170,_0x48787d._0x42af7e,0x1e4,0x187)](_0x149ba3[_0x371f62(_0x48787d._0x349342,_0x48787d._0x4b4055,0x1ea,0x288)],_0x29ebda);}else _0x149ba3['AIzAM'](_0x3d3574,_0x149ba3[_0x371f62(_0x48787d._0x2a8f3a,0x1af,_0x48787d._0x4236b5,_0x48787d._0x2c7a43)],_0x196894);}if(broadcastTaskUpdate){const _0x57e34c={};_0x57e34c['taskId']=_0x4a0714[_0x191468(-_0x48787d._0x15c95c,-0x13,-_0x48787d._0x47ec85,-0x3b)],_0x57e34c[_0x191468(-_0x48787d._0x4c6d5a,-0x3f,_0x48787d._0x4fdf8b,-0x86)]=_0x4a0714[_0x191468(-0x2d,-_0x48787d._0x4db9b5,-0xf2,-_0x48787d._0x596a81)],_0x57e34c[_0x191468(-_0x48787d._0x93cc41,-0x35,_0x48787d._0xa70c9d,-_0x48787d._0x5cbfa3)+'ns']=_0x4a0714['parameters']?.[_0x191468(0x8,-_0x48787d._0x16fbb0,-_0x48787d._0x517aca,0x3d)+'ns'],_0x57e34c['updatedAt']=_0x4a0714[_0x371f62(_0x48787d._0x1a07d,0x13f,0x1ab,0x1ee)],_0x149ba3[_0x191468(-0x39,0x25,0x18,-0x48)](broadcastTaskUpdate,_0x149ba3[_0x371f62(0x21c,0x29c,0x21a,0x275)],_0x57e34c);}const _0x525e35={};_0x525e35[_0x371f62(0x1a7,0x28a,_0x48787d._0x16eb5d,0x19a)]=_0x2cd428[_0x191468(-0x92,-0x13,-0xb3,-_0x48787d._0x2c4eca)],_0x525e35[_0x191468(-_0x48787d._0x2cd06f,-_0x48787d._0x22efcf,-0x2f,-0x1d)+_0x191468(-0x16,-_0x48787d._0x4967a5,-_0x48787d._0x139a58,_0x48787d._0x4ede70)]=_0x298cc3,logger['info'](_0x149ba3[_0x191468(_0x48787d._0x3fa890,_0x48787d._0x57dc9e,_0x48787d._0x27f662,_0x48787d._0x473cdf)],_0x525e35);const _0x3ae9e0={};_0x3ae9e0[_0x371f62(_0x48787d._0x8ee842,_0x48787d._0xe6ee63,_0x48787d._0x1626d1,_0x48787d._0x313646)]=!![],_0x3ae9e0[_0x371f62(0x130,0x17a,_0x48787d._0x10f3bb,0x1ef)]=_0x4a0714[_0x371f62(_0x48787d._0x18f873,_0x48787d._0x3e1920,_0x48787d._0x31433d,0x20c)],_0x3ae9e0['name']=_0x4a0714[_0x371f62(0x115,_0x48787d._0x35fa9f,0x1b2,_0x48787d._0x349fde)],_0x3ae9e0['instructio'+'ns']=_0x4a0714[_0x371f62(_0x48787d._0x4b02bf,0x98,0x11f,0xb2)]?.[_0x371f62(_0x48787d._0x170742,_0x48787d._0x351870,_0x48787d._0x583060,0x214)+'ns'];function _0x371f62(_0x2b4479,_0x318717,_0x5843e9,_0x3b1d92){return _0x17db7b(_0x2b4479-_0x33c177._0x17e76c,_0x318717-0x17b,_0x2b4479,_0x5843e9-0x2da);}_0x3ae9e0['updatedAt']=_0x4a0714[_0x371f62(0x129,0x12b,_0x48787d._0x3bff90,0xf5)],_0x4adc1a['json'](_0x3ae9e0);}),router[_0x26d9a5(0x4cc,0x558,0x4da,0x44a)](_0x17db7b(-0xf3,-0x129,-0x162,-0xfb)+_0x26d9a5(0x4c4,0x5b6,0x50a,0x5b9)+'ectiveId',requireTaskAuth,async(_0xdeab27,_0xd7bdb9)=>{const _0x5f07eb={_0x33f655:0x37c,_0x1c406d:0xb6,_0x3b9626:0x196,_0x4d99a2:0x13d,_0x55df59:0x7a,_0x28420f:0x27,_0x4d819c:0x52,_0x343c00:0xd0,_0x4666e1:0xff,_0x3d57c4:0xa6,_0x32a2a5:0x208,_0x34c50f:0x2af,_0x1e33cf:0x39f,_0x137201:0x161,_0x405012:0x168,_0x1242fa:0x146,_0x4f618d:0x359,_0x3c93b6:0x343,_0x5bf47e:0x321,_0x2f6189:0x4a,_0xba92e7:0xc8,_0x23ad50:0x44,_0x34f3fd:0x28e,_0x4e736e:0x182,_0x36d250:0xa5,_0x1b2ed8:0xb8,_0x2d63ce:0xd4,_0x382fd8:0x77,_0x46a1c6:0x342,_0x2c08a8:0x370,_0xb76134:0x37,_0x411fc8:0xf,_0x84ec5e:0x68,_0x1f1c42:0x175,_0x56be0d:0x188,_0x10b916:0x11,_0x15eb1a:0x1b9,_0x30796c:0xcc,_0x31baaa:0x295,_0x2225e0:0x3dc,_0x2f2d6b:0x405,_0x274dd5:0x36d,_0x512555:0xe3,_0x175859:0x185,_0x12f2fa:0xfc,_0x94d7ef:0x36c,_0x244d27:0x360,_0x521a02:0x3ed,_0x10486e:0x317,_0x43b48d:0x3c8,_0x5877d2:0x222,_0x80d6e0:0x2bc,_0x42d641:0x374,_0x347b07:0xdd,_0x182403:0x98,_0x28b622:0x38c,_0x260e58:0x39c,_0x18026e:0x234,_0x202069:0x1ea,_0x449230:0x102,_0x5be78e:0x2f,_0x24980e:0xf6,_0x2f413e:0x1c6,_0x436b30:0xbf,_0x158a88:0x35c,_0x4ac13c:0x2b1,_0x42bd9d:0x2b5,_0x5ebe34:0x34b,_0x51c9bc:0x2e8,_0x2b3ab1:0x3ff,_0x34d950:0x3bc,_0x176afd:0x189,_0x4aff11:0x17b,_0x296412:0x15a,_0x36d13a:0x2da,_0x156874:0x2bd,_0x2b92b0:0x348,_0xe2f6cf:0x2d3,_0x3e0118:0x287,_0x2e9d1d:0x347,_0x3c3686:0xe1,_0x3a9943:0x126,_0xf1568a:0xa5,_0x4a1600:0x60,_0x5ea96b:0x12,_0x5da6d5:0x96,_0xa569f2:0x32e,_0x612882:0x31a,_0x18f14d:0x2d4,_0x2e06f4:0x375,_0x2e7e9d:0x3e5,_0x2c7ef8:0x34b,_0x537b18:0x433,_0x4598b6:0x323,_0x399b40:0x304,_0x16a5a6:0x2d5,_0x197e45:0x12e,_0x507feb:0xa4,_0x3d49d2:0x6,_0x2aed93:0x14f,_0x55f37c:0x169,_0x951109:0x1c8,_0x315c90:0x15d,_0x50ccea:0x1a7,_0x5667d5:0xe2,_0x1df16c:0xe6,_0x12f726:0x2e1,_0xf14d7b:0x310,_0x2dac30:0x38f,_0x1b5274:0x363,_0x26bd34:0x318,_0x17b054:0x396,_0x50bf95:0xed,_0x375ab9:0x4e,_0x1f7da4:0x93,_0x47b0bd:0x60,_0x84b3cf:0x6d,_0x48d549:0x2c8,_0x16b1da:0x35b,_0x56779e:0x3c9,_0x23cb48:0x371,_0x343417:0x36e,_0x2e520d:0x53,_0x446baa:0x2f,_0x28a850:0x12a,_0x349597:0x2ac,_0x55e4f1:0x27b,_0x55ba9b:0x3ab,_0x5b968a:0x32d,_0x41ae3e:0x29d,_0x3ff2d9:0x218,_0x489f16:0x298,_0x116c73:0x383,_0x24beb7:0x3e1,_0x419a4a:0x3d8,_0x33c73b:0xa8,_0x5799b6:0x1d2,_0x768c11:0xcd,_0x4ad105:0x105,_0x509cf1:0x88,_0x5c74af:0xa1,_0x469d47:0xb0,_0x301287:0xd0,_0x5b5860:0xde,_0x181f32:0x384,_0x4947b4:0x353,_0x532e64:0x32c,_0x37b444:0x2ec,_0x42c84b:0x34b,_0xcaa0b4:0x3ad,_0x3a5d66:0x3be,_0x11373c:0x24d,_0x1e3197:0x2e5,_0x1ceada:0x391,_0x493220:0x35e,_0x50f55d:0x318,_0x25023d:0x344,_0xd52bd4:0x2ae,_0xe2aa79:0x309,_0x1f9e9a:0x2be,_0x54789c:0x327,_0x44ad0f:0x34d,_0x2a6018:0x3dc,_0x5e9c38:0x387,_0x4ac228:0x9e,_0x3ac182:0x3aa,_0x5d317a:0x33c,_0x354a98:0x301,_0xd3a874:0x37c,_0x367331:0x2c4,_0x49a617:0x2ef,_0x3f6271:0x334,_0x396879:0x3d7,_0xace03b:0x337,_0x41d400:0xd6,_0xbee92e:0xc1,_0x32138d:0x373,_0x338c78:0x2aa,_0x3ff1b5:0x102,_0x1ffb96:0x11e,_0x12daf6:0x2a1,_0x30c40d:0x30d,_0x32e87f:0x331,_0x5b3e91:0x320,_0x30bc1a:0x159,_0x397257:0x58,_0x6d3bac:0x40,_0x1bb929:0xcf,_0x224abc:0xd2,_0x2cdf36:0x286,_0x28aa0a:0x3ae,_0x38ea2b:0x2f9,_0x4d0a18:0x496,_0x42c060:0x3a7,_0x4b002f:0x24,_0x58c1c7:0x37c,_0x52cd72:0x37d,_0x5430c6:0x13a,_0x1b914c:0x71,_0x264df8:0xd3,_0x395358:0x7,_0x5d7d59:0xf9,_0x1899bc:0x4f,_0x3e6524:0x2ed,_0x47cf8f:0x3a1,_0x374891:0x39d,_0x10a7d4:0x326,_0x283cf8:0xea,_0x1151ad:0x158,_0x55c9b9:0x290,_0x2b8573:0x261,_0x608af3:0x2f3,_0xb234dc:0x3a2,_0x157989:0xd0,_0x4fd41c:0x163,_0x39a003:0xf2,_0x2cce73:0x30e,_0x1a5fa9:0x424,_0x4a0dd2:0x3a1,_0x25c5ea:0x153,_0x1c09d4:0x72,_0x33a53c:0x5d,_0x21b2df:0x10a,_0x23431e:0x95,_0x8d83b:0xb9,_0x5a34f5:0x13,_0x33f4a4:0xe,_0x559297:0x3b2,_0x5a2634:0x3b5,_0x3694e5:0x253,_0xb0c9ca:0x276,_0x239cf5:0x300,_0x3a235b:0x7e,_0x32d2b8:0x355,_0x9e6b0c:0x342,_0x398f03:0x14d,_0x46ae69:0x188,_0x17eeab:0x16e,_0x1ca3ba:0x11e,_0x50f702:0x168,_0x4b47df:0x1c3,_0x3306ad:0x2fb},_0x4e0b3f={_0x1a710f:0x1e6},_0x17a14a={'FBXwj':_0x45c608(0x401,0x345,_0x5f07eb._0x33f655,0x3b9)+_0x5f1c32(-0x14e,-_0x5f07eb._0x1c406d,-_0x5f07eb._0x3b9626,-_0x5f07eb._0x4d99a2)+_0x5f1c32(-_0x5f07eb._0x55df59,_0x5f07eb._0x28420f,-_0x5f07eb._0x4d819c,-_0x5f07eb._0x343c00)+_0x5f1c32(-_0x5f07eb._0x4666e1,-0x8d,-0xdc,-_0x5f07eb._0x3d57c4),'RWiaj':'Sub-object'+_0x45c608(0x219,0x303,_0x5f07eb._0x32a2a5,_0x5f07eb._0x34c50f)+_0x45c608(0x417,0x33b,_0x5f07eb._0x1e33cf,0x362),'Htbid':function(_0x5cda8f,_0x590cff){return _0x5cda8f!==_0x590cff;},'BuiJy':'Sub-object'+_0x5f1c32(-0x13f,-_0x5f07eb._0x137201,-0xc8,-_0x5f07eb._0x405012)+_0x5f1c32(-0x16e,-_0x5f07eb._0x1242fa,-0x146,-0x1d0)+_0x45c608(0x3a2,0x2e4,_0x5f07eb._0x4f618d,0x33f)+_0x45c608(0x373,_0x5f07eb._0x3c93b6,_0x5f07eb._0x5bf47e,0x39b)+'ve','kKHqv':'objective','dmoap':_0x5f1c32(-_0x5f07eb._0x2f6189,-_0x5f07eb._0xba92e7,-0xfc,_0x5f07eb._0x23ad50)+'t','ntXJi':_0x45c608(0x20e,0x22f,0x244,_0x5f07eb._0x34f3fd)+_0x5f1c32(-0x12a,-_0x5f07eb._0x4e736e,-0x162,-_0x5f07eb._0x36d250)+_0x5f1c32(-0x68,-0xcf,-_0x5f07eb._0x1b2ed8,_0x5f07eb._0x2f6189),'KJoEn':function(_0xa19e6d,_0x37e863){return _0xa19e6d===_0x37e863;},'BRtvU':_0x5f1c32(-0x4c,-_0x5f07eb._0x2d63ce,-0x78,-_0x5f07eb._0x382fd8),'MIlxt':function(_0x3a19ca,_0x28bb81){return _0x3a19ca===_0x28bb81;},'gaHun':function(_0x251539,_0x50b451){return _0x251539===_0x50b451;},'NTEVI':function(_0x241fe6,_0x37a007){return _0x241fe6!==_0x37a007;},'YwYIE':_0x45c608(0x3ff,0x2dc,0x2e8,0x35a),'YcKrB':_0x45c608(0x3ff,_0x5f07eb._0x46a1c6,_0x5f07eb._0x2c08a8,0x3c2),'DRPoJ':_0x5f1c32(-_0x5f07eb._0xb76134,_0x5f07eb._0x411fc8,0x15,0x19)+_0x5f1c32(-0xf0,-_0x5f07eb._0x84ec5e,-0x12b,-_0x5f07eb._0x1f1c42)+_0x5f1c32(-0x185,-0x1af,-0x141,-_0x5f07eb._0x56be0d)+_0x5f1c32(-0x79,_0x5f07eb._0x10b916,-0x4a,-0xb)+'ldren.\x20Del'+_0x5f1c32(-0x17e,-_0x5f07eb._0x15eb1a,-0xed,-_0x5f07eb._0x30796c)+_0x45c608(0x2a3,0x24d,0x2d1,_0x5f07eb._0x31baaa),'tSrQi':_0x45c608(_0x5f07eb._0x2225e0,_0x5f07eb._0x2f2d6b,0x39d,_0x5f07eb._0x274dd5)+_0x5f1c32(-_0x5f07eb._0x512555,-0x30,-_0x5f07eb._0x175859,-_0x5f07eb._0x12f2fa)+_0x45c608(_0x5f07eb._0x94d7ef,_0x5f07eb._0x244d27,_0x5f07eb._0x521a02,0x3c0),'uwqXQ':function(_0x3cbb4c,_0x23dc84){return _0x3cbb4c(_0x23dc84);},'arQpr':_0x45c608(_0x5f07eb._0x10486e,0x446,0x3e0,_0x5f07eb._0x43b48d),'lJPHG':_0x45c608(0x29c,_0x5f07eb._0x5877d2,0x255,_0x5f07eb._0x80d6e0),'zFOyo':_0x45c608(0x3e1,0x406,0x3cd,_0x5f07eb._0x42d641),'REClb':_0x5f1c32(-0x70,-0x101,0x45,-0x1a)+_0x5f1c32(-0xd3,-_0x5f07eb._0x347b07,-_0x5f07eb._0x182403,-0x8d)+_0x45c608(0x361,0x443,_0x5f07eb._0x28b622,_0x5f07eb._0x260e58)+_0x45c608(0x356,_0x5f07eb._0x18026e,0x29f,0x2a5),'lNzky':function(_0x6117e6,_0x3a5b34,_0xfbe5c6){return _0x6117e6(_0x3a5b34,_0xfbe5c6);}},{parentObjective:_0x279e6a,callingTask:_0x20a85b}=_0xdeab27,{objectiveId:_0x385011}=_0xdeab27[_0x5f1c32(-0xf4,-0x173,-0x196,-0xa3)],_0x383e8e=tasks[_0x5f1c32(-0x175,-0x159,-_0x5f07eb._0x202069,-_0x5f07eb._0x449230)](_0x385011);if(!_0x383e8e){const _0x167aa9={};return _0x167aa9[_0x5f1c32(-_0x5f07eb._0x343c00,-0x57,-_0x5f07eb._0x5be78e,-0x2a)]=_0x5f1c32(-0x150,-0x117,-_0x5f07eb._0x24980e,-_0x5f07eb._0x2f413e),_0x167aa9[_0x45c608(0x316,0x311,0x315,0x3a1)]=_0x17a14a[_0x5f1c32(-0x8c,-0x94,-0xb7,-_0x5f07eb._0x436b30)],_0xd7bdb9['status'](-0x1a4f+0x12a3+0x20*0x4a)['json'](_0x167aa9);}if(_0x17a14a['Htbid'](_0x383e8e[_0x45c608(_0x5f07eb._0x158a88,_0x5f07eb._0x4ac13c,_0x5f07eb._0x42bd9d,_0x5f07eb._0x5ebe34)+_0x45c608(0x378,0x2e5,_0x5f07eb._0x10486e,_0x5f07eb._0x51c9bc)],_0x279e6a['taskId'])){const _0x5d8794={};return _0x5d8794['error']=_0x45c608(0x3f0,_0x5f07eb._0x2b3ab1,0x368,_0x5f07eb._0x34d950),_0x5d8794['message']=_0x17a14a[_0x5f1c32(-_0x5f07eb._0x176afd,-_0x5f07eb._0x4aff11,-0x22a,-_0x5f07eb._0x296412)],_0xd7bdb9[_0x45c608(0x37a,_0x5f07eb._0x36d13a,_0x5f07eb._0x156874,_0x5f07eb._0x2b92b0)](-0x19*-0x3b+0x1923+0x1*-0x1d53)[_0x45c608(_0x5f07eb._0xe2f6cf,_0x5f07eb._0x3e0118,_0x5f07eb._0x2e9d1d,0x2fb)](_0x5d8794);}if(_0x383e8e[_0x5f1c32(-_0x5f07eb._0x3c3686,-0xa4,-_0x5f07eb._0x3a9943,-_0x5f07eb._0xf1568a)]!==_0x17a14a[_0x5f1c32(-_0x5f07eb._0x4a1600,-0x84,_0x5f07eb._0x5ea96b,-_0x5f07eb._0x5da6d5)]){const _0x304532={};return _0x304532[_0x45c608(0x2f5,_0x5f07eb._0xa569f2,_0x5f07eb._0x612882,0x359)]=_0x17a14a[_0x45c608(_0x5f07eb._0x18f14d,_0x5f07eb._0x2e06f4,_0x5f07eb._0x2e7e9d,0x35d)],_0x304532['message']=_0x17a14a[_0x45c608(_0x5f07eb._0x2c7ef8,_0x5f07eb._0x537b18,0x3ed,0x3da)],_0xd7bdb9[_0x45c608(_0x5f07eb._0x4598b6,_0x5f07eb._0x399b40,_0x5f07eb._0x16a5a6,_0x5f07eb._0x2b92b0)](-0x8d6+-0x1*0x10ba+0x1f0*0xe)[_0x5f1c32(-_0x5f07eb._0x197e45,-0x130,-0x1ab,-0x115)](_0x304532);}function _0x5f1c32(_0x5cb643,_0x563912,_0x53800f,_0x120440){return _0x17db7b(_0x5cb643-0x85,_0x563912-0xe,_0x563912,_0x5cb643-0x26);}for(const [,_0x5be0e3]of tasks[_0x5f1c32(-_0x5f07eb._0x507feb,_0x5f07eb._0x3d49d2,-0xcd,-_0x5f07eb._0x2aed93)]()){if(_0x17a14a[_0x5f1c32(-_0x5f07eb._0x55f37c,-_0x5f07eb._0x951109,-_0x5f07eb._0x315c90,-_0x5f07eb._0x50ccea)](_0x17a14a[_0x5f1c32(-0x13a,-0xc5,-0x1d1,-0x1a2)],_0x17a14a[_0x5f1c32(-0x13a,-_0x5f07eb._0x5667d5,-_0x5f07eb._0x1df16c,-0xc3)])){if(_0x17a14a[_0x45c608(0x298,_0x5f07eb._0x16a5a6,_0x5f07eb._0x12f726,_0x5f07eb._0xf14d7b)](_0x5be0e3[_0x45c608(_0x5f07eb._0x2dac30,_0x5f07eb._0x1b5274,0x3ef,_0x5f07eb._0x2c7ef8)+_0x45c608(_0x5f07eb._0x26bd34,0x2f3,_0x5f07eb._0x17b054,0x2e8)],_0x385011)&&_0x17a14a[_0x5f1c32(-0x197,-0x104,-_0x5f07eb._0x50bf95,-0x228)](_0x5be0e3[_0x5f1c32(-0xe1,-_0x5f07eb._0x375ab9,-_0x5f07eb._0x1f7da4,-0xf4)],_0x17a14a[_0x5f1c32(-_0x5f07eb._0x47b0bd,-0x16,-0x42,-_0x5f07eb._0x84b3cf)])){if(_0x17a14a[_0x45c608(0x379,_0x5f07eb._0x48d549,0x3c0,_0x5f07eb._0x16b1da)]('ZxRlB',_0x17a14a['YwYIE']))_0x347714=_0x1f665d[_0x45c608(_0x5f07eb._0x56779e,_0x5f07eb._0x23cb48,_0x5f07eb._0x343417,0x3f6)](_0x3109ed,_0x15191a[_0x5f1c32(-0x82,-_0x5f07eb._0x3d49d2,-0x108,-0x10e)]);else{const _0x534dcd={};return _0x534dcd[_0x5f1c32(-0xd0,-_0x5f07eb._0x2e520d,-_0x5f07eb._0x446baa,-_0x5f07eb._0x28a850)]=_0x17a14a[_0x45c608(_0x5f07eb._0x349597,_0x5f07eb._0x55e4f1,_0x5f07eb._0x55ba9b,_0x5f07eb._0x5b968a)],_0x534dcd['message']=_0x17a14a[_0x45c608(_0x5f07eb._0x41ae3e,_0x5f07eb._0x3ff2d9,0x267,_0x5f07eb._0x489f16)],_0xd7bdb9[_0x45c608(_0x5f07eb._0x116c73,_0x5f07eb._0x24beb7,_0x5f07eb._0x419a4a,_0x5f07eb._0x2b92b0)](0x1*0x17a6+0x186d+-0x2e7a)[_0x5f1c32(-_0x5f07eb._0x197e45,-_0x5f07eb._0x33c73b,-_0x5f07eb._0x5799b6,-0x140)](_0x534dcd);}}}else{const _0x136dff={};_0x136dff[_0x5f1c32(-0x87,-_0x5f07eb._0x768c11,-0x90,-_0x5f07eb._0x4ad105)+'d']=_0x476a80,_0x136dff['error']=_0x49198c[_0x5f1c32(-_0x5f07eb._0x509cf1,0x1b,-_0x5f07eb._0x5c74af,-_0x5f07eb._0x469d47)],_0x4c4066[_0x5f1c32(-_0x5f07eb._0x301287,-0x10a,-0x67,-_0x5f07eb._0x5b5860)](_0x17a14a['FBXwj'],_0x136dff);}}const _0x8a4b5e={};_0x8a4b5e['taskId']=_0x20a85b[_0x45c608(0x31a,0x39a,_0x5f07eb._0x181f32,_0x5f07eb._0x4947b4)],_0x8a4b5e[_0x45c608(_0x5f07eb._0x532e64,0x30d,_0x5f07eb._0x37b444,_0x5f07eb._0x42c84b)+'ctiveId']=_0x279e6a[_0x45c608(_0x5f07eb._0xcaa0b4,_0x5f07eb._0x3a5d66,0x369,0x353)],_0x8a4b5e[_0x45c608(_0x5f07eb._0x11373c,0x35c,0x30c,0x300)+_0x45c608(0x307,_0x5f07eb._0x1e3197,_0x5f07eb._0x1ceada,_0x5f07eb._0x493220)]=_0x385011,_0x8a4b5e[_0x45c608(_0x5f07eb._0x50f55d,_0x5f07eb._0x25023d,_0x5f07eb._0xd52bd4,0x300)+_0x45c608(0x3b1,_0x5f07eb._0xe2aa79,0x311,0x36c)]=_0x383e8e[_0x45c608(_0x5f07eb._0x1f9e9a,0x2b5,_0x5f07eb._0x41ae3e,_0x5f07eb._0x54789c)],logger[_0x45c608(0x41b,_0x5f07eb._0x44ad0f,_0x5f07eb._0x2a6018,_0x5f07eb._0x5e9c38)](_0x17a14a[_0x5f1c32(-0x92,-0x8a,0x15,-_0x5f07eb._0x4ac228)],_0x8a4b5e),tasks[_0x45c608(_0x5f07eb._0x5e9c38,_0x5f07eb._0x3ac182,0x2c2,0x311)](_0x385011);try{const _0x2a379b=await _0x17a14a[_0x45c608(0x2de,_0x5f07eb._0x5d317a,_0x5f07eb._0x354a98,_0x5f07eb._0xd3a874)](findTaskDirectory,_0x385011);if(_0x2a379b){if(_0x17a14a[_0x45c608(0x2ea,_0x5f07eb._0x367331,_0x5f07eb._0x49a617,_0x5f07eb._0x3f6271)]===_0x17a14a[_0x45c608(0x3c1,_0x5f07eb._0x1ceada,_0x5f07eb._0x396879,_0x5f07eb._0xace03b)]){const _0x17ee40={};_0x17ee40[_0x5f1c32(-_0x5f07eb._0x41d400,-0x118,-_0x5f07eb._0x512555,-_0x5f07eb._0xbee92e)]=_0x1890ad['taskId'],_0x17ee40[_0x45c608(_0x5f07eb._0x32138d,0x351,_0x5f07eb._0x338c78,_0x5f07eb._0x54789c)]=_0x4b3bd3[_0x5f1c32(-_0x5f07eb._0x3ff1b5,-0x188,-0x190,-_0x5f07eb._0x1ffb96)],_0x17ee40[_0x45c608(_0x5f07eb._0x12daf6,_0x5f07eb._0x30c40d,0x2d9,_0x5f07eb._0x32e87f)+'ns']=_0x430314['parameters']?.['instructio'+'ns'],_0x17ee40[_0x45c608(_0x5f07eb._0x49a617,0x2b1,0x321,_0x5f07eb._0x5b3e91)]=_0x26149c[_0x5f1c32(-0x109,-0x14c,-0x95,-_0x5f07eb._0x30bc1a)],_0x5dd568(_0x5f1c32(-_0x5f07eb._0x397257,_0x5f07eb._0x6d3bac,-_0x5f07eb._0x1bb929,-0xc6)+'ed',_0x17ee40);}else{const _0x3472fa={};_0x3472fa[_0x5f1c32(-0xc0,-_0x5f07eb._0x224abc,-0xc2,-0x44)]=!![],_0x3472fa[_0x45c608(0x3ae,_0x5f07eb._0x2cdf36,_0x5f07eb._0x28aa0a,_0x5f07eb._0x38ea2b)]=!![],await _0x1cf7b5['rm'](_0x2a379b,_0x3472fa);}}}catch(_0x2231d3){if(_0x17a14a[_0x45c608(0x393,_0x5f07eb._0x4d0a18,_0x5f07eb._0x42c060,0x3f7)](_0x17a14a[_0x5f1c32(-0xc8,-0x9c,-0xce,-_0x5f07eb._0x4b002f)],_0x17a14a[_0x45c608(_0x5f07eb._0x58c1c7,_0x5f07eb._0x52cd72,_0x5f07eb._0x244d27,0x361)])){const _0x275033={};return _0x275033[_0x5f1c32(-0xd0,-_0x5f07eb._0x5430c6,-_0x5f07eb._0x1b914c,-0x124)]=_0x5f1c32(-_0x5f07eb._0x2f6189,0x1f,-_0x5f07eb._0x264df8,_0x5f07eb._0x395358)+'t',_0x275033[_0x5f1c32(-0x88,-0xd2,-0x42,-_0x5f07eb._0x5d7d59)]=_0x5f1c32(-0x46,-_0x5f07eb._0x1899bc,-0xc6,-0xb4)+_0x45c608(0x346,0x28c,_0x5f07eb._0x49a617,_0x5f07eb._0x3e6524)+_0xeed4bc+('\x20must\x20have'+_0x45c608(_0x5f07eb._0x47cf8f,_0x5f07eb._0x5d317a,_0x5f07eb._0x374891,_0x5f07eb._0x10a7d4)+_0x5f1c32(-0x15e,-0x20f,-0x12d,-0x18c)),_0x232089[_0x5f1c32(-0xe1,-_0x5f07eb._0x283cf8,-0xad,-_0x5f07eb._0x1151ad)](-0x2688+0x1*0x1906+0xf12)[_0x45c608(_0x5f07eb._0x55c9b9,_0x5f07eb._0x2b8573,_0x5f07eb._0x608af3,0x2fb)](_0x275033);}else{const _0x516d27={};_0x516d27[_0x45c608(0x3f3,0x359,0x3c9,_0x5f07eb._0xb234dc)+'d']=_0x385011,_0x516d27[_0x5f1c32(-_0x5f07eb._0x157989,-0x104,-_0x5f07eb._0x4fd41c,-_0x5f07eb._0x39a003)]=_0x2231d3[_0x45c608(_0x5f07eb._0x2cce73,0x344,_0x5f07eb._0x1a5fa9,_0x5f07eb._0x4a0dd2)],logger[_0x5f1c32(-0xd0,-_0x5f07eb._0x25c5ea,-0x147,-_0x5f07eb._0x1c09d4)](_0x17a14a[_0x5f1c32(-_0x5f07eb._0x33a53c,-0x9,-0x8c,-0xa2)],_0x516d27);}}if(broadcastTaskUpdate){const _0x26deb9={};_0x26deb9[_0x5f1c32(-_0x5f07eb._0x41d400,-_0x5f07eb._0x21b2df,-_0x5f07eb._0x23431e,-0x18c)]=_0x385011,_0x17a14a[_0x5f1c32(-_0x5f07eb._0x8d83b,-0xad,-_0x5f07eb._0x5a34f5,-_0x5f07eb._0x33f4a4)](broadcastTaskUpdate,'task-delet'+'ed',_0x26deb9);}const _0x40cd58={};_0x40cd58['taskId']=_0x20a85b[_0x45c608(_0x5f07eb._0x559297,0x3d9,_0x5f07eb._0x5a2634,0x353)],_0x40cd58[_0x45c608(_0x5f07eb._0x3694e5,_0x5f07eb._0xb0c9ca,0x257,_0x5f07eb._0x239cf5)+_0x5f1c32(-0xcb,-_0x5f07eb._0x3a235b,-0x135,-_0x5f07eb._0x4a1600)]=_0x385011;function _0x45c608(_0x2abe3f,_0x3003e8,_0x4333d5,_0x46a333){return _0x17db7b(_0x2abe3f-0x169,_0x3003e8-_0x4e0b3f._0x1a710f,_0x4333d5,_0x46a333-0x44f);}logger[_0x45c608(_0x5f07eb._0x32d2b8,_0x5f07eb._0x9e6b0c,0x3be,0x387)](_0x5f1c32(-_0x5f07eb._0x398f03,-_0x5f07eb._0x46ae69,-_0x5f07eb._0x17eeab,-_0x5f07eb._0x1ca3ba)+_0x5f1c32(-_0x5f07eb._0x50f702,-0x215,-0x177,-0x16e)+_0x5f1c32(-0x126,-0x10b,-0x135,-0x14a),_0x40cd58);const _0x1de11d={};_0x1de11d[_0x5f1c32(-0x174,-_0x5f07eb._0x264df8,-_0x5f07eb._0x4b47df,-_0x5f07eb._0x28a850)]=!![],_0x1de11d['deletedId']=_0x385011,_0xd7bdb9[_0x45c608(0x3a6,0x2c2,0x30a,_0x5f07eb._0x3306ad)](_0x1de11d);});function generateObjectiveId(){const _0x423480={_0x360627:0x44,_0x5138a:0x27,_0x5ca5c8:0x2a,_0x120337:0x128,_0x121b7a:0x157,_0x3604ab:0x1ba},_0x28a873={_0x2891b3:0xf},_0x230178={_0x1e997a:0x57};function _0x22c630(_0x31c096,_0x3f0a74,_0x4a0ab4,_0x1f2e95){return _0x17db7b(_0x31c096-0x146,_0x3f0a74-_0x230178._0x1e997a,_0x3f0a74,_0x4a0ab4-0x2cb);}function _0x3e1261(_0x57b1f2,_0x465de5,_0x420a49,_0x5d1d8d){return _0x17db7b(_0x57b1f2-0xf7,_0x465de5-_0x28a873._0x2891b3,_0x57b1f2,_0x420a49-0x3e);}return Date[_0x3e1261(0x34,-_0x423480._0x360627,-_0x423480._0x5138a,-_0x423480._0x5ca5c8)]()+'-'+Math[_0x22c630(_0x423480._0x120337,_0x423480._0x121b7a,0x1b8,0x184)]()[_0x22c630(0x24c,_0x423480._0x3604ab,0x1d4,0x22b)](0x17bc+0x13*0xa+0xb2*-0x23)['substr'](-0x145d+-0x2f+0x3*0x6da,-0x313+-0x15*-0x7a+0x6e6*-0x1);}async function findTaskDirectory(_0x3865fa){const _0x1bc2f2={_0x19cc2d:0x2e7,_0x130f47:0x3b0,_0x1c4b41:0x78,_0xe507d:0x331,_0x410c93:0x280,_0x2574c9:0x28b,_0x15f2b0:0x3f4,_0x32ef28:0x26c,_0x4a6802:0x355,_0x1a48fa:0xee,_0x4f8c19:0x13b,_0x5d49a8:0xa1,_0xcbddb9:0x6f,_0x180477:0x5b,_0x2f7a73:0x112,_0x423525:0x31b,_0x3c8be5:0x3ba,_0x2edff6:0xa2,_0x5b097b:0x130,_0x13a3ba:0xe0,_0x267feb:0x145,_0xf43ff4:0xd4,_0x85e69f:0x319,_0x57a587:0x35a,_0x5a9ab7:0x3c3,_0x3b8728:0x323,_0x53acde:0x29f},_0x4d9f86={_0x3b9ace:0x104,_0x3c2183:0x43c},_0x1202c7={'XupYD':function(_0x3c8d36,_0x1fa93a){return _0x3c8d36(_0x1fa93a);},'KOttM':function(_0x2127dc,_0x349394){return _0x2127dc<=_0x349394;},'VLfyK':function(_0x3d49ad,_0x3f5905){return _0x3d49ad+_0x3f5905;},'kuaqR':function(_0x4ab00b,_0x14d903){return _0x4ab00b(_0x14d903);}};if(!taskStoragePath)return null;function _0x352ad8(_0x4d6522,_0x58d468,_0xc47de,_0x4c3f05){return _0x17db7b(_0x4d6522-0xcd,_0x58d468-0x2d,_0x58d468,_0x4d6522-0x8b);}function _0x4310d9(_0x470317,_0x256c31,_0x2f292d,_0x4f81d0){return _0x17db7b(_0x470317-_0x4d9f86._0x3b9ace,_0x256c31-0x173,_0x4f81d0,_0x2f292d-_0x4d9f86._0x3c2183);}const _0x2b1455=_0x1202c7[_0x4310d9(_0x1bc2f2._0x19cc2d,_0x1bc2f2._0x130f47,0x35e,0x374)](parseInt,process[_0x352ad8(-0x59,-0xfd,-_0x1bc2f2._0x1c4b41,-0x102)][_0x4310d9(_0x1bc2f2._0xe507d,0x29b,_0x1bc2f2._0x410c93,_0x1bc2f2._0x2574c9)+_0x4310d9(0x2e3,_0x1bc2f2._0x15f2b0,0x352,0x2c2)])||0x239*0x2+0x2391+-0x382*0xb,_0x466502=new Date();for(let _0x5bbff2=0x20e2+-0xbed+-0x14f5;_0x1202c7[_0x4310d9(0x346,_0x1bc2f2._0x32ef28,0x2f8,_0x1bc2f2._0x4a6802)](_0x5bbff2,_0x2b1455);_0x5bbff2++){const _0x55e757=new Date(_0x466502);_0x55e757['setUTCDate'](_0x55e757[_0x352ad8(-0xe0,-_0x1bc2f2._0x1a48fa,-0x155,-_0x1bc2f2._0x4f8c19)]()-_0x5bbff2);const _0x6a3102=_0x55e757[_0x352ad8(-_0x1bc2f2._0x5d49a8,-_0x1bc2f2._0xcbddb9,-0x10,-_0x1bc2f2._0x180477)+_0x352ad8(-0xe4,-_0x1bc2f2._0x2f7a73,-0x16a,-0x6f)](),_0x13d778=String(_0x1202c7['VLfyK'](_0x55e757[_0x4310d9(_0x1bc2f2._0x423525,0x314,0x373,_0x1bc2f2._0x3c8be5)+'h'](),0x1*0x21c9+-0x1e7*-0x7+0x3*-0xfb3))[_0x352ad8(-_0x1bc2f2._0x2edff6,-0x151,-0x10f,-_0x1bc2f2._0x5b097b)](0x1654+0x1bef*-0x1+0x59d,'0'),_0x55ea6d=_0x1202c7[_0x352ad8(-0x11d,-0x18c,-0x129,-0x165)](String,_0x55e757[_0x352ad8(-_0x1bc2f2._0x13a3ba,-0xea,-0x38,-0x113)]())[_0x352ad8(-0xa2,-_0x1bc2f2._0x267feb,-_0x1bc2f2._0xf43ff4,-0xeb)](0x1a84+-0x22ca+0x848,'0'),_0x307bba=_0x5a9146[_0x4310d9(_0x1bc2f2._0x85e69f,_0x1bc2f2._0x57a587,0x3cd,_0x1bc2f2._0x5a9ab7)](taskStoragePath,_0x6a3102+'-'+_0x13d778,_0x6a3102+'-'+_0x13d778+'-'+_0x55ea6d,_0x3865fa);try{return await _0x1cf7b5[_0x4310d9(0x2db,0x372,_0x1bc2f2._0x3b8728,_0x1bc2f2._0x53acde)](_0x307bba),_0x307bba;}catch{}}return null;}async function createObjectiveDirectory(_0x2fba9b,_0x915a4c){const _0x508c63={_0x53b942:0x156,_0x19c71f:0x12d,_0x59b7a7:0xb4,_0x8a4e0a:0x138,_0x1945b7:0x371,_0x12dc6b:0x211,_0x3f0e53:0x249,_0x1bd22f:0x347,_0x3914d4:0x38f,_0xf003c1:0x3cc,_0x103037:0x2bf,_0x1463a5:0x393,_0x2a8bfc:0x30f,_0x10d5f4:0x3f0,_0xf438b3:0x220,_0x615e73:0x1f2,_0x22fae3:0x20e,_0x1811fd:0x324,_0x4e077b:0x3f6,_0x66a6be:0x48d},_0x5e02d6={_0x4e6a5a:0x67,_0xac5477:0xce},_0x1aadb7={_0x3eb17f:0x55},_0x3f3698={'ecCbO':function(_0x4e8c48,_0x57f53f){return _0x4e8c48!==_0x57f53f;},'NrsVA':_0xc79333(-_0x508c63._0x53b942,-0x22c,-0x201,-0x214),'tPdzD':_0xc79333(-_0x508c63._0x19c71f,-0x1ae,-0x13c,-_0x508c63._0x59b7a7)+'ge\x20path\x20no'+_0xc79333(-0x19c,-0x14c,-_0x508c63._0x8a4e0a,-0xe3)+'ed','nmTRg':function(_0x1011eb,_0x2822e4){return _0x1011eb+_0x2822e4;},'DbAQg':function(_0x2630c1,_0xa68458){return _0x2630c1(_0xa68458);}};if(!taskStoragePath){if(_0x3f3698['ecCbO'](_0x3f3698[_0x2425f0(0x2e9,_0x508c63._0x1945b7,0x2e1,0x383)],_0x3f3698[_0xc79333(-_0x508c63._0x12dc6b,-0x26a,-0x24a,-0x2b6)])){const _0x564d28={..._0x446e22[_0x2425f0(0x2aa,_0x508c63._0x3f0e53,0x228,0x1fe)]};_0x564d28[_0x2425f0(_0x508c63._0x1bd22f,_0x508c63._0x3914d4,0x370,0x3fb)+'ns']=_0x367a95,_0x5324f8['parameters']=_0x564d28;}else throw new Error(_0x3f3698[_0x2425f0(_0x508c63._0xf003c1,0x3ad,0x341,0x452)]);}const _0x115e9e=new Date(_0x915a4c),_0x4b19c4=_0x115e9e[_0x2425f0(0x339,0x2bd,_0x508c63._0x103037,0x3e5)+_0x2425f0(0x2f6,0x29a,0x2cb,0x267)]();function _0x2425f0(_0x40e932,_0x15cdfe,_0x22abb1,_0x532c10){return _0x17db7b(_0x40e932-0x127,_0x15cdfe-_0x1aadb7._0x3eb17f,_0x22abb1,_0x40e932-0x465);}const _0x210010=String(_0x3f3698[_0x2425f0(_0x508c63._0x1463a5,0x411,_0x508c63._0x2a8bfc,_0x508c63._0x10d5f4)](_0x115e9e['getUTCMont'+'h'](),-0x1139+0x229*-0x8+-0x7*-0x4ee))[_0xc79333(-0x1d0,-_0x508c63._0xf438b3,-0x1fb,-0x2ae)](-0x2273+-0xcb8+0x2f2d,'0'),_0x417fa9=_0x3f3698['DbAQg'](String,_0x115e9e[_0xc79333(-_0x508c63._0x615e73,-_0x508c63._0x22fae3,-0x239,-0x274)]())[_0x2425f0(0x338,_0x508c63._0x1811fd,0x315,0x3c0)](0x13*0x6e+-0x1ee2+-0x1*-0x16ba,'0'),_0x1dd4a3=_0x5a9146[_0x2425f0(_0x508c63._0x4e077b,0x407,0x3e5,_0x508c63._0x66a6be)](taskStoragePath,_0x4b19c4+'-'+_0x210010,_0x4b19c4+'-'+_0x210010+'-'+_0x417fa9,_0x2fba9b),_0x1ba448={};_0x1ba448['recursive']=!![];function _0xc79333(_0x516a0e,_0xca5246,_0x537a2e,_0x1d7335){return _0x17db7b(_0x516a0e-_0x5e02d6._0x4e6a5a,_0xca5246-0x49,_0x516a0e,_0x537a2e- -_0x5e02d6._0xac5477);}return await _0x1cf7b5['mkdir'](_0x1dd4a3,_0x1ba448),_0x1dd4a3;}function _0x17db7b(_0x59ca45,_0x68bce0,_0x966091,_0x523048){return _0x8067(_0x523048- -0x27f,_0x966091);}export default router;
|