@profoundlogic/coderflow-server 0.2.4 → 0.2.6
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 +24 -0
- package/dist/README.md +24 -0
- package/dist/base-image/Dockerfile +5 -0
- package/dist/base-image/agent-wrapper.sh +12 -2
- package/dist/coder-server.js +1 -1
- package/dist/config/skill-catalog.json +27 -0
- package/dist/config.js +1 -1
- package/dist/lib/agent-keepalive.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/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-commit-details-route.js +1 -0
- package/dist/lib/git-history-diff-guardrails.js +1 -0
- 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 -0
- package/dist/lib/jira-client.js +1 -1
- package/dist/lib/judge-blinding.js +1 -0
- 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/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-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 +1 -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/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/tasks/providing-feedback.md +1 -1
- package/dist/web-ui/public/environments.html +4 -1
- 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 -0
- package/dist/web-ui/public/git-history.css +56 -0
- package/dist/web-ui/public/git-history.html +2 -2
- 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 +2 -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/server-health.js +1 -1
- package/dist/web-ui/public/settings.css +48 -0
- package/dist/web-ui/public/settings.html +85 -2
- 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.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 +136 -2
- package/dist/web-ui/public/task.html +102 -0
- 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 +1 -1
package/dist/routes/jira.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(_0x28a857,_0x144a17){const _0x2860d9={_0x382ffd:0x417,_0x1e4a54:0x469,_0x1947ee:0x4ec,_0x2fbd64:0x479,_0xd92adb:0xd0,_0xff704d:0x48c,_0x2e2d12:0x123,_0x179b5c:0x10c,_0x39a10a:0xdb,_0x28189f:0x10a,_0x59e860:0x6e,_0x7903a9:0x140,_0x412302:0x11b,_0x11ae1c:0x165,_0x57acda:0x409,_0x63f3:0x3eb,_0x2ffefe:0x156,_0x1e7ddf:0x123,_0x5f956f:0x181,_0x2bd1a1:0x66,_0x1cdbc7:0xf9},_0x34d63c={_0x5a4ddd:0x12d},_0x109384=_0x28a857();function _0x3a2b45(_0x51956c,_0x3c9d3e,_0x25d8f5,_0xd00ca6){return _0x4021(_0x51956c- -_0x34d63c._0x5a4ddd,_0xd00ca6);}function _0xa29292(_0x3fd53f,_0x2eff5d,_0x37591d,_0x1098eb){return _0x4021(_0x3fd53f-0x220,_0x1098eb);}while(!![]){try{const _0x9d94d8=-parseInt(_0xa29292(_0x2860d9._0x382ffd,_0x2860d9._0x1e4a54,0x3cf,0x48c))/(-0x24d*0xf+0x1*0x62d+0x1c57*0x1)*(parseInt(_0xa29292(0x47b,_0x2860d9._0x1947ee,_0x2860d9._0x2fbd64,0x426))/(-0x2*-0x2f3+0x13f7*0x1+-0x19db))+parseInt(_0x3a2b45(_0x2860d9._0xd92adb,0xd0,0x65,0xea))/(0x14c+0x1b0a+-0x1c53)*(parseInt(_0xa29292(0x4c0,0x529,0x4b6,_0x2860d9._0xff704d))/(0x212*-0x2+-0xc5a*-0x1+-0x832))+parseInt(_0x3a2b45(0x135,0xf6,0x110,_0x2860d9._0x2e2d12))/(-0x2*-0x63a+0x1d*-0x3+-0xc18)+-parseInt(_0x3a2b45(0xac,_0x2860d9._0x179b5c,0x11f,0x57))/(-0x2b*-0xb5+-0x23f4+0x593)*(-parseInt(_0x3a2b45(_0x2860d9._0x39a10a,_0x2860d9._0x28189f,_0x2860d9._0x59e860,_0x2860d9._0x7903a9))/(-0x136d+-0x374+0x16e8))+-parseInt(_0x3a2b45(_0x2860d9._0x412302,0xa6,0x153,_0x2860d9._0x11ae1c))/(0x1*-0x7a2+-0x1627*0x1+0x1dd1)*(parseInt(_0xa29292(_0x2860d9._0x57acda,0x459,0x3f6,_0x2860d9._0x63f3))/(-0xda6+0xaf3+0x2bc))+parseInt(_0x3a2b45(_0x2860d9._0x2ffefe,_0x2860d9._0x1e7ddf,_0x2860d9._0x5f956f,0x1a0))/(-0x14e9+0x2187+0xa1*-0x14)+-parseInt(_0x3a2b45(0x9f,0x75,_0x2860d9._0x2bd1a1,_0x2860d9._0x1cdbc7))/(-0xa55+-0xfd*0x13+0x1d27);if(_0x9d94d8===_0x144a17)break;else _0x109384['push'](_0x109384['shift']());}catch(_0x43a9c1){_0x109384['push'](_0x109384['shift']());}}}(_0x5554,0x7c8dd+-0x23*0x4e41+0xa5c5*0x14));function _0x4021(_0x178fc3,_0x258315){_0x178fc3=_0x178fc3-(-0x8cb*0x1+-0xb49+0x748*0x3);const _0xeca538=_0x5554();let _0x2e173b=_0xeca538[_0x178fc3];if(_0x4021['zuuNow']===undefined){var _0x7bc421=function(_0x58b558){const _0x2ac36d='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x2fef59='',_0x2b8279='';for(let _0x50c00c=0xdbf+0xb*0x31+0x2*-0x7ed,_0x2bd946,_0x1edadd,_0x18b2f5=0x763+0x5*0x129+-0xd30;_0x1edadd=_0x58b558['charAt'](_0x18b2f5++);~_0x1edadd&&(_0x2bd946=_0x50c00c%(0x975+-0x1*-0x2703+-0x1c*0x1bb)?_0x2bd946*(0x9ad*0x1+-0x13*0x3a+-0x51f)+_0x1edadd:_0x1edadd,_0x50c00c++%(-0x1*-0xfa1+0xe72*0x1+-0x5*0x603))?_0x2fef59+=String['fromCharCode'](-0x2402+-0x2006+-0x29*-0x1af&_0x2bd946>>(-(0x1*-0x24a1+-0x109d+0x3540)*_0x50c00c&0x3*0x2f0+-0x83e+-0x8c)):-0x1b37*0x1+-0xc53*0x1+0x3*0xd2e){_0x1edadd=_0x2ac36d['indexOf'](_0x1edadd);}for(let _0x22ac56=-0x6aa+0x9ee*-0x2+-0x1*-0x1a86,_0x10d9ff=_0x2fef59['length'];_0x22ac56<_0x10d9ff;_0x22ac56++){_0x2b8279+='%'+('00'+_0x2fef59['charCodeAt'](_0x22ac56)['toString'](0x1829+-0x41*-0x5c+-0x2f75))['slice'](-(0x1c9*0x7+-0x113*-0x15+-0x230c*0x1));}return decodeURIComponent(_0x2b8279);};_0x4021['dccQkO']=_0x7bc421,_0x4021['vSYtpS']={},_0x4021['zuuNow']=!![];}const _0x778f39=_0xeca538[0x1df3+-0x19f*0xa+-0xdbd],_0x2359ba=_0x178fc3+_0x778f39,_0x3f5c9a=_0x4021['vSYtpS'][_0x2359ba];return!_0x3f5c9a?(_0x2e173b=_0x4021['dccQkO'](_0x2e173b),_0x4021['vSYtpS'][_0x2359ba]=_0x2e173b):_0x2e173b=_0x3f5c9a,_0x2e173b;}import _0x4b1bb3 from'express';import{JiraClient}from'../lib/jira-client.js';import{loadJiraConfig}from'../config.js';import{logger}from'../lib/logger.js';import{coderConfig}from'../start.js';const router=_0x4b1bb3['Router']();let jiraClient=null;async function initializeJiraClient(){const _0x2c0961={_0x3d767d:0x5d5,_0x3991fd:0x56f,_0xb60fb6:0x467,_0x3e4b0b:0x425,_0x5ade13:0x319,_0x291200:0x311,_0x46f4d7:0x332,_0x3d4f64:0x59e,_0x202480:0x5c6,_0x5623f4:0x570,_0x4f07ee:0x603,_0xf87d5e:0x5dd,_0x335a99:0x598,_0x428020:0x59f,_0x11e27e:0x56e,_0x34f7cb:0x52a,_0x491a40:0x594,_0x34e137:0x578,_0x472065:0x5b2,_0x4ab8b5:0x5e7,_0x573d5d:0x56a,_0x19d5ef:0x32c,_0x3b7d23:0x329,_0x72ae1:0x33f,_0xdd2fc7:0x5cc,_0x41db05:0x6a5,_0x439944:0x62b,_0x7d99b5:0x5bd,_0x26c9b5:0x572,_0x7916a:0x5e9,_0x234542:0x634,_0x4020ce:0x633,_0x561d9f:0x62d,_0x213c97:0x646,_0x4e8157:0x5bd,_0x35153e:0x567,_0x3fcf2a:0x594,_0x505d8b:0x60f,_0x26e784:0x56c,_0x635cd9:0x619,_0x47be2d:0x605,_0x34eb1f:0x2cb,_0x109a4e:0x352,_0x5568ca:0x355,_0x1c9306:0x59b,_0x540b50:0x5cb,_0x48049b:0x66d,_0x24bf30:0x630,_0x4f2cc5:0x337,_0x2d4941:0x349,_0x3cf0f1:0x3d0,_0x1fb3cb:0x39b,_0x300034:0x36d,_0x50e09f:0x546,_0x4d0608:0x595,_0x111388:0x57f,_0x1680f8:0x37b,_0x5fda8b:0x3d7,_0xcf8906:0x36b,_0x103317:0x58e,_0x4d80fd:0x5ea,_0x110ac5:0x3cb,_0xffbd01:0x654,_0x1313f2:0x5ce,_0x49f4ab:0x2d8,_0x48c56c:0x338,_0x12a420:0x420,_0x245617:0x460,_0x7c27c1:0x3f6,_0x10fbad:0x58c,_0x55f514:0x5b4,_0x53590d:0x3ae,_0xd7660:0x36b,_0x159ce6:0x403,_0x245d1e:0x57c,_0x3f7e36:0x34e,_0x1ba85f:0x3e8,_0x5923d6:0x3f2,_0x3dbce8:0x3db,_0xbecb52:0x5a1,_0x5b45b8:0x34f,_0x25e4aa:0x368,_0xfa5b93:0x3c6,_0x44be34:0x450,_0x4c6b3e:0x469,_0x526142:0x417,_0x174c26:0x3f1,_0x4bbf5a:0x3ea,_0x288f89:0x46b,_0x24ce9a:0x412,_0x274d65:0x40c,_0x3f73cf:0x381,_0x17c891:0x3a5,_0x32fe7e:0x407,_0x46e2a2:0x3ab,_0xcae79d:0x41d,_0x5dfc8c:0x373,_0x1e11cf:0x3a9,_0x2ef630:0x40b,_0x5f4768:0x3e1,_0x4026cf:0x2e2,_0x176c4f:0x2e8,_0x9b8713:0x46a,_0x455eec:0x3a6,_0xd0f9f9:0x2f6,_0x405ff6:0x32e,_0x128332:0x6b1,_0x347129:0x5d7,_0xe0df49:0x40c,_0x33d615:0x3c4,_0x468011:0x3a4,_0x2ba9cc:0x626,_0x188a98:0x64d,_0x362da6:0x6ba,_0x58d746:0x5d9,_0x146900:0x568,_0x402712:0x57f,_0x36fc73:0x340,_0x2d3076:0x3b2,_0x12becf:0x5d2,_0xf4b5fc:0x585,_0x32d177:0x561},_0x57647f={_0x4e701a:0x169},_0x55c895={'pHKIH':_0x7a73a4(_0x2c0961._0x3d767d,0x5b3,_0x2c0961._0x3991fd,0x513)+_0xd1982b(_0x2c0961._0xb60fb6,_0x2c0961._0x3e4b0b,0x416,0x406)+'\x20enabled','dRsOQ':_0xd1982b(0x362,0x2e5,0x30c,0x33f)+_0xd1982b(0x307,_0x2c0961._0x5ade13,_0x2c0961._0x291200,_0x2c0961._0x46f4d7)+_0x7a73a4(_0x2c0961._0x3d4f64,0x5be,_0x2c0961._0x202480,0x578)+_0x7a73a4(_0x2c0961._0x5623f4,_0x2c0961._0x4f07ee,0x5ba,_0x2c0961._0xf87d5e)+'is\x20server.'+'\x20Please\x20co'+'ntact\x20your'+_0x7a73a4(0x5fc,0x5be,_0x2c0961._0x335a99,_0x2c0961._0x428020)+'ator.','nQqtY':_0x7a73a4(_0x2c0961._0x11e27e,_0x2c0961._0x34f7cb,_0x2c0961._0x491a40,_0x2c0961._0x34e137)+'search\x20JIR'+_0x7a73a4(0x5a0,0x572,_0x2c0961._0x472065,_0x2c0961._0x4ab8b5),'rTjxQ':function(_0x436668,_0x592d27){return _0x436668(_0x592d27);},'JVVko':function(_0x763e96,_0x56f909){return _0x763e96!==_0x56f909;},'mHHcP':_0x7a73a4(_0x2c0961._0x573d5d,0x5fe,0x59f,0x529),'miAls':_0xd1982b(_0x2c0961._0x19d5ef,_0x2c0961._0x3b7d23,0x2fc,_0x2c0961._0x72ae1)+_0x7a73a4(_0x2c0961._0xdd2fc7,_0x2c0961._0x41db05,_0x2c0961._0x439944,0x5be)+_0x7a73a4(_0x2c0961._0x7d99b5,0x5f8,0x5cb,_0x2c0961._0x26c9b5)+_0x7a73a4(0x65c,_0x2c0961._0x7916a,_0x2c0961._0x234542,_0x2c0961._0x4020ce)+'p','LNVvx':function(_0x2fe5c2,_0x447a82){return _0x2fe5c2===_0x447a82;},'FPxOR':_0x7a73a4(_0x2c0961._0x561d9f,0x6ab,_0x2c0961._0x213c97,0x642),'evdIc':_0x7a73a4(0x590,_0x2c0961._0x4e8157,0x5c9,_0x2c0961._0x35153e),'UTSiC':_0x7a73a4(0x5d5,_0x2c0961._0x4ab8b5,_0x2c0961._0x3fcf2a,0x585)+_0x7a73a4(0x65e,0x64e,_0x2c0961._0x505d8b,0x62b)+_0x7a73a4(_0x2c0961._0x26e784,_0x2c0961._0x635cd9,0x5e2,_0x2c0961._0x47be2d)+'nt\x20from\x20se'+'tup:','nZuRg':function(_0x3c3251,_0x3e48d2){return _0x3c3251===_0x3e48d2;},'aliQS':_0xd1982b(_0x2c0961._0x34eb1f,_0x2c0961._0x109a4e,_0x2c0961._0x5568ca,0x33f)+'ration\x20ena'+_0x7a73a4(_0x2c0961._0x1c9306,0x55f,_0x2c0961._0x540b50,0x5be)+_0x7a73a4(0x538,0x4f4,0x563,0x50e)+_0x7a73a4(_0x2c0961._0x48049b,0x676,0x63e,_0x2c0961._0x24bf30)+'s'};function _0x7a73a4(_0x366cea,_0x3c32fc,_0x43106d,_0x559882){return _0x4021(_0x43106d-0x399,_0x559882);}if(coderConfig?.[_0xd1982b(0x2f8,0x324,_0x2c0961._0x4f2cc5,_0x2c0961._0x2d4941)]){const _0x4de46f=await _0x55c895['rTjxQ'](loadJiraConfig,coderConfig['setupPath']);if(_0x4de46f){if(_0x55c895[_0xd1982b(_0x2c0961._0x3cf0f1,_0x2c0961._0x1fb3cb,0x3c0,_0x2c0961._0x300034)](_0x55c895[_0x7a73a4(_0x2c0961._0x50e09f,0x5c1,_0x2c0961._0x4d0608,0x607)],_0x55c895['mHHcP'])){const _0x14e27c={};return _0x14e27c[_0x7a73a4(0x5e7,0x5d1,_0x2c0961._0x111388,0x594)]=_0x55c895[_0xd1982b(0x308,_0x2c0961._0x1680f8,_0x2c0961._0x5fda8b,_0x2c0961._0xcf8906)],_0x14e27c[_0x7a73a4(_0x2c0961._0x103317,0x5f2,_0x2c0961._0x4d80fd,_0x2c0961._0x428020)]=_0x55c895['dRsOQ'],_0x43cf04[_0xd1982b(_0x2c0961._0x110ac5,0x370,0x40a,0x3db)](-0x18*-0x14a+-0x1*0x35e+-0x3*0x889)[_0x7a73a4(_0x2c0961._0xffbd01,_0x2c0961._0x1313f2,0x612,0x62b)](_0x14e27c);}else try{jiraClient=new JiraClient(_0x4de46f),logger[_0xd1982b(0x2f2,_0x2c0961._0x49f4ab,0x32c,_0x2c0961._0x48c56c)](_0x55c895[_0xd1982b(0x3f2,_0x2c0961._0x12a420,_0x2c0961._0x245617,_0x2c0961._0x7c27c1)]);return;}catch(_0x4467d7){if(_0x55c895['LNVvx'](_0x55c895[_0x7a73a4(0x543,_0x2c0961._0x10fbad,_0x2c0961._0x55f514,0x624)],_0x55c895['evdIc'])){const _0x2b23c2={};return _0x2b23c2['error']=_0x55c895[_0xd1982b(_0x2c0961._0x53590d,_0x2c0961._0xd7660,_0x2c0961._0x159ce6,0x3d6)],_0x2b23c2[_0x7a73a4(_0x2c0961._0x245d1e,0x5ea,_0x2c0961._0x4d80fd,0x62e)]=_0x440c23[_0xd1982b(0x3e3,_0x2c0961._0x3f7e36,_0x2c0961._0x1ba85f,0x3ba)],_0x40bcae[_0xd1982b(0x37c,_0x2c0961._0x5923d6,0x3df,_0x2c0961._0x3dbce8)](-0x14da+0x289*-0x9+0x33*0xe5)[_0x7a73a4(0x67b,0x5dd,0x612,_0x2c0961._0xbecb52)](_0x2b23c2);}else logger[_0xd1982b(0x320,0x3b3,0x3c8,_0x2c0961._0x5b45b8)](_0x55c895['UTSiC'],_0x4467d7);}}}function _0xd1982b(_0x46646e,_0x4b3fbe,_0xf4b626,_0x5094cf){return _0x4021(_0x5094cf-_0x57647f._0x4e701a,_0xf4b626);}if(_0x55c895[_0xd1982b(_0x2c0961._0x25e4aa,0x39a,_0x2c0961._0xfa5b93,0x3d0)](process['env'][_0xd1982b(_0x2c0961._0x44be34,_0x2c0961._0x4c6b3e,_0x2c0961._0x526142,_0x2c0961._0x174c26)+'ED'],_0xd1982b(0x3ee,_0x2c0961._0x4bbf5a,_0x2c0961._0x288f89,_0x2c0961._0x24ce9a)))try{const _0x52e651={};_0x52e651[_0xd1982b(0x331,_0x2c0961._0x274d65,_0x2c0961._0x3f73cf,_0x2c0961._0x17c891)]=process[_0xd1982b(_0x2c0961._0x32fe7e,_0x2c0961._0x5923d6,_0x2c0961._0x46e2a2,_0x2c0961._0xcae79d)][_0xd1982b(_0x2c0961._0x5dfc8c,_0x2c0961._0x1e11cf,_0x2c0961._0x2ef630,_0x2c0961._0x5f4768)+_0xd1982b(0x3b1,_0x2c0961._0x4026cf,_0x2c0961._0x176c4f,0x353)],_0x52e651[_0xd1982b(_0x2c0961._0x468011,_0x2c0961._0x9b8713,_0x2c0961._0x32fe7e,0x40b)]={},_0x52e651[_0xd1982b(_0x2c0961._0x468011,_0x2c0961._0x9b8713,_0x2c0961._0x32fe7e,0x40b)][_0xd1982b(0x396,_0x2c0961._0x455eec,_0x2c0961._0xd0f9f9,_0x2c0961._0x405ff6)]=process[_0x7a73a4(_0x2c0961._0x128332,0x678,0x64d,_0x2c0961._0x347129)][_0xd1982b(0x3f9,_0x2c0961._0xe0df49,_0x2c0961._0x33d615,0x3eb)],_0x52e651[_0xd1982b(_0x2c0961._0x468011,_0x2c0961._0x9b8713,_0x2c0961._0x32fe7e,0x40b)]['apiToken']=process[_0x7a73a4(_0x2c0961._0x2ba9cc,0x5e5,_0x2c0961._0x188a98,_0x2c0961._0x362da6)]['JIRA_API_T'+'OKEN'],jiraClient=new JiraClient(_0x52e651),logger[_0x7a73a4(0x4f4,_0x2c0961._0x58d746,_0x2c0961._0x146900,0x555)](_0x55c895['aliQS']);}catch(_0x1a97e6){logger[_0x7a73a4(0x53c,0x585,_0x2c0961._0x402712,0x590)]('Failed\x20to\x20'+'initialize'+_0xd1982b(_0x2c0961._0x36fc73,0x396,0x3ae,_0x2c0961._0x2d3076)+_0x7a73a4(0x52f,_0x2c0961._0x12becf,_0x2c0961._0xf4b5fc,0x5ed)+_0x7a73a4(0x570,0x4fd,_0x2c0961._0x32d177,0x4fa),_0x1a97e6);}}export async function initializeJira(){const _0x366ab1={_0x1527d9:0x160},_0x30cf55={_0x27e6a7:0xd8};function _0x5373bd(_0x3aa45c,_0x5e3f7b,_0x5aeecf,_0x48ca7f){return _0x4021(_0x5e3f7b- -_0x30cf55._0x27e6a7,_0x3aa45c);}const _0x2e5ddc={'HAtPH':function(_0x1137b1){return _0x1137b1();}};await _0x2e5ddc[_0x5373bd(0x15f,_0x366ab1._0x1527d9,0x129,0x1d6)](initializeJiraClient);}function _0x2ab4d6(_0x42f8d8,_0x457474,_0x5d81c7,_0x10052b){const _0x2d9e1f={_0x1af92a:0x2d6};return _0x4021(_0x457474-_0x2d9e1f._0x1af92a,_0x42f8d8);}function _0x182cdf(_0x56e4dd,_0x36df62,_0x5d5a51,_0x53a18c){const _0x3d6e10={_0x5f0ef6:0x275};return _0x4021(_0x56e4dd- -_0x3d6e10._0x5f0ef6,_0x53a18c);}export function getJiraClient(){return jiraClient;}export async function reloadJiraClient(_0x35bfae){const _0x465420={_0xeeadd:0x508,_0x565b86:0x4c4,_0x39670b:0x47e,_0x4d363e:0x400,_0x2f3828:0x489,_0x54d65a:0x488,_0x4c19a6:0x459,_0xd6807:0x53d,_0x53e3ed:0x477,_0x234689:0x54b,_0xb380a9:0x4dc,_0x5249c2:0x40a,_0x4cfad4:0x3fc,_0x25a25a:0x43f,_0x5be4d3:0x47b,_0x1b39ab:0x493,_0x402f58:0x414,_0x1d5b95:0x467,_0x2e6da3:0x48a,_0x4c1248:0x49c,_0x513c5a:0x455,_0x56ace5:0x474,_0x2ef39b:0x49c,_0x594faf:0x429,_0x48f416:0x48f,_0x577c78:0x44c,_0x412ec5:0x47f,_0xe339c0:0x497,_0x134e60:0x3f9,_0x44f0a3:0x3ef,_0x43eba7:0x4ae,_0x4e030c:0x40e,_0x448974:0x42a,_0x508c56:0x3ff,_0x43ff7c:0x3d6,_0x52b7e1:0x508,_0x171d56:0x499,_0x27cc96:0x4a5,_0x164009:0x3c5,_0x1cdb86:0x418,_0xc2b633:0x434,_0x3fbd3d:0x3f8,_0x3b3389:0x43f,_0x2a51b9:0x4b2,_0x364989:0x3da,_0x2132d5:0x516,_0xd45bec:0x442,_0x1ac6dc:0x51b,_0x14dc23:0x4e5,_0x5cc619:0x588,_0x15cdbf:0x492,_0x38ee91:0x43e,_0x418603:0x42a,_0x18e540:0x3eb,_0x2aee47:0x3e0,_0x45fe96:0x41e,_0x43d1f8:0x4f7,_0x50e95b:0x4b5,_0x215644:0x472,_0x32a738:0x4c3,_0x53f1ad:0x450,_0x4e35dc:0x499,_0x270f78:0x473,_0x5019fb:0x503,_0x10da2a:0x4e9,_0x32b561:0x4d2,_0x242a50:0x4e6,_0x2d474d:0x3e3,_0x275d67:0x3db,_0x3c0dbb:0x448,_0x4b5f54:0x3fa,_0x447f8f:0x4f1,_0x9a6350:0x495,_0x1392c7:0x494,_0x22975c:0x4b2,_0x4fe570:0x470,_0x228559:0x498,_0x127abc:0x4f6,_0x536974:0x3ce,_0x3aa0d1:0x3c7,_0x4e3dc5:0x3ca,_0x42c170:0x3e2,_0x962cb8:0x452,_0x5d24e1:0x483,_0xd00602:0x41f,_0x21981e:0x489,_0x3cf25c:0x3a2,_0x3e80c3:0x4d6,_0x2798aa:0x482,_0x1f7c6d:0x3e5,_0x1a9211:0x372,_0x5ce178:0x45d,_0x22cec5:0x473,_0x15b641:0x533,_0x1ef951:0x4af,_0x31b058:0x4b7,_0x462247:0x4e8,_0x15e3a8:0x530,_0x1fa804:0x4cc,_0x265bec:0x44b,_0x37a4f7:0x524,_0x5830fe:0x4ed,_0x5e23e0:0x478,_0x50e2db:0x426,_0x2866e6:0x4c7,_0x5c3c16:0x4ac,_0x3e6558:0x433,_0xdac535:0x526,_0x5b3eff:0x4da,_0x4b9700:0x59d,_0x5dfc0c:0x483,_0x43692b:0x442,_0x44fcad:0x510,_0x3d5017:0x4e0,_0x510f61:0x4bd,_0x25c004:0x4db,_0x4d528a:0x482,_0xcbbe29:0x501,_0x469b55:0x575,_0x21f716:0x4ed,_0x549762:0x49b,_0x3029ea:0x411,_0x5ab697:0x4ba,_0x1591ea:0x4ca,_0x1012ac:0x514,_0x394ddb:0x578,_0x748926:0x55e,_0x2a8ae5:0x45b,_0x4754fd:0x437,_0x3f5714:0x3fe,_0x38ceb7:0x526,_0x3af730:0x4d6,_0x6262f5:0x4f8,_0xeea26f:0x482,_0x5b7907:0x512,_0xc8c8c:0x576,_0x287c09:0x52d,_0x6940db:0x3c0,_0x9e7680:0x3cb,_0x22e16b:0x3a7,_0x4b3dc6:0x3d1,_0x3f4310:0x3cf,_0x45c864:0x3dc,_0x2d8bda:0x506,_0x107a34:0x4ec,_0x5e57d7:0x487,_0x5d42db:0x54d,_0x2fca4d:0x471,_0x216e8b:0x40f,_0x3e2cc0:0x417,_0x3d3137:0x4b6,_0x534bfb:0x402},_0x42b131={_0x468166:0x272},_0x209252={};_0x209252[_0x52b66b(_0x465420._0xeeadd,_0x465420._0x565b86,0x4bb,_0x465420._0x39670b)]='Issue\x20not\x20'+_0x566ef3(_0x465420._0x4d363e,0x427,0x477,_0x465420._0x2f3828),_0x209252[_0x566ef3(_0x465420._0x54d65a,_0x465420._0x4c19a6,0x4b2,0x4bc)]=_0x52b66b(0x4b3,0x4ce,0x536,0x468)+_0x566ef3(0x4d2,0x4a3,0x513,0x4f4),_0x209252[_0x52b66b(_0x465420._0xd6807,0x4ec,_0x465420._0x53e3ed,0x554)]=_0x52b66b(_0x465420._0x234689,_0x465420._0xb380a9,0x4e3,0x478)+_0x566ef3(0x410,_0x465420._0x5249c2,_0x465420._0x4cfad4,0x469)+'rmat',_0x209252[_0x52b66b(_0x465420._0x25a25a,_0x465420._0x5be4d3,0x46f,0x4c6)]=_0x566ef3(0x39f,0x3cd,0x41b,0x39f)+'must\x20be\x20in'+_0x52b66b(_0x465420._0x1b39ab,0x465,_0x465420._0x402f58,_0x465420._0x1d5b95)+_0x52b66b(_0x465420._0x2e6da3,0x4ac,0x476,_0x465420._0x4c1248);function _0x52b66b(_0x3ad26e,_0x59847d,_0x2a93a5,_0x514054){return _0x4021(_0x59847d-_0x42b131._0x468166,_0x514054);}_0x209252[_0x566ef3(0x466,0x47a,_0x465420._0x513c5a,_0x465420._0x56ace5)]=_0x566ef3(_0x465420._0x2ef39b,0x485,_0x465420._0x594faf,_0x465420._0x48f416)+_0x52b66b(0x516,0x525,0x50d,0x4b6)+_0x52b66b(_0x465420._0x577c78,_0x465420._0x412ec5,0x405,_0x465420._0xe339c0)+'ation',_0x209252[_0x52b66b(0x511,0x4e6,0x46f,0x476)]=function(_0x1cd61d,_0x104c42){return _0x1cd61d!==_0x104c42;},_0x209252[_0x566ef3(0x3a6,0x406,_0x465420._0x134e60,_0x465420._0x44f0a3)]='mAQSP';function _0x566ef3(_0x4b72a7,_0x26cbdf,_0x204e2f,_0x4d6f87){return _0x4021(_0x26cbdf-0x1ff,_0x4d6f87);}_0x209252[_0x566ef3(_0x465420._0x43eba7,0x45d,_0x465420._0x4e030c,_0x465420._0x448974)]='mFsiy',_0x209252[_0x566ef3(_0x465420._0x508c56,_0x465420._0x43ff7c,0x3e9,0x428)]=_0x52b66b(_0x465420._0x52b7e1,0x525,0x4f7,0x535)+_0x52b66b(0x4cd,_0x465420._0x171d56,_0x465420._0x27cc96,0x43c)+_0x566ef3(_0x465420._0x164009,0x43c,_0x465420._0x1cdb86,_0x465420._0xc2b633)+'r-setup',_0x209252[_0x566ef3(0x3ee,0x458,_0x465420._0x3fbd3d,_0x465420._0x3b3389)]=_0x52b66b(_0x465420._0x171d56,0x46d,0x407,_0x465420._0x2a51b9)+_0x52b66b(0x4e0,0x488,0x4c6,0x477)+_0x566ef3(0x3d9,_0x465420._0x364989,0x441,0x447)+'rom\x20setup:',_0x209252[_0x52b66b(0x4f6,0x4a6,_0x465420._0x2132d5,_0x465420._0xd45bec)]=function(_0x363be3,_0x4a3d68){return _0x363be3===_0x4a3d68;},_0x209252[_0x566ef3(0x43b,0x409,0x3a7,0x3aa)]=_0x52b66b(0x587,_0x465420._0x1ac6dc,_0x465420._0x14dc23,_0x465420._0x5cc619),_0x209252['byHnv']=function(_0x36e3b3,_0x28c390){return _0x36e3b3!==_0x28c390;},_0x209252[_0x52b66b(_0x465420._0x15cdbf,_0x465420._0x27cc96,0x4a0,_0x465420._0x38ee91)]=_0x566ef3(0x3b2,_0x465420._0x164009,_0x465420._0x418603,_0x465420._0x18e540),_0x209252['GqSqJ']=_0x52b66b(_0x465420._0x2aee47,0x443,0x3ee,_0x465420._0x45fe96),_0x209252[_0x566ef3(_0x465420._0x43d1f8,_0x465420._0x50e95b,_0x465420._0x215644,_0x465420._0x32a738)]=_0x566ef3(0x4f2,0x4b2,0x478,_0x465420._0x53f1ad)+_0x52b66b(0x4b9,_0x465420._0x4e35dc,0x4d6,_0x465420._0x270f78)+'\x20from\x20envi'+_0x52b66b(_0x465420._0x5019fb,0x48a,_0x465420._0x10da2a,0x4a4)+_0x52b66b(0x4cf,_0x465420._0x32b561,_0x465420._0x242a50,0x4c9),_0x209252[_0x566ef3(_0x465420._0x2d474d,_0x465420._0x275d67,0x3ca,0x3f8)]=_0x566ef3(_0x465420._0x3c0dbb,_0x465420._0x4b5f54,0x3e5,0x436)+'reload\x20JIR'+'A\x20client\x20f'+_0x52b66b(_0x465420._0x447f8f,_0x465420._0x9a6350,0x4c2,_0x465420._0x1392c7)+_0x52b66b(0x522,_0x465420._0x22975c,_0x465420._0x4fe570,0x4c0),_0x209252['bQlwZ']=_0x566ef3(0x3f5,0x3f9,0x44a,0x464)+'led\x20after\x20'+_0x52b66b(_0x465420._0x228559,_0x465420._0x127abc,0x506,0x4d6)+_0x52b66b(0x437,0x4b0,0x4cb,0x456);const _0x21cd3b=_0x209252;logger[_0x566ef3(0x389,_0x465420._0x536974,_0x465420._0x3aa0d1,_0x465420._0x4e3dc5)](_0x21cd3b['AgoKi']),jiraClient=null;if(_0x35bfae?.[_0x52b66b(_0x465420._0x42c170,_0x465420._0x962cb8,0x42c,_0x465420._0x5d24e1)]){if(_0x21cd3b['tNCTf'](_0x52b66b(0x49c,0x446,_0x465420._0xd00602,_0x465420._0x21981e),_0x21cd3b['gUAAo'])){const _0x2a8e4b=await loadJiraConfig(_0x35bfae[_0x566ef3(0x369,0x3df,0x435,_0x465420._0x3cf25c)]);if(_0x2a8e4b){if(_0x52b66b(_0x465420._0x3e80c3,_0x465420._0x2798aa,0x4ed,_0x465420._0x215644)===_0x21cd3b[_0x566ef3(_0x465420._0x32a738,0x45d,0x4b8,0x416)]){const _0x2b70f5={};return _0x2b70f5[_0x566ef3(0x3e9,_0x465420._0x1f7c6d,_0x465420._0x1a9211,0x3d5)]=_0x21cd3b[_0x52b66b(_0x465420._0x5ce178,0x4c4,_0x465420._0x22cec5,_0x465420._0x15b641)],_0x2b70f5[_0x566ef3(0x433,0x450,0x493,0x44a)]=_0x4c49e2['message'],_0x3f7c23['status'](0xb7f+0x65e+-0x1049)['json'](_0x2b70f5);}else try{jiraClient=new JiraClient(_0x2a8e4b),logger[_0x52b66b(0x427,0x441,_0x465420._0x1ef951,_0x465420._0x31b058)](_0x21cd3b['NFaex']);return;}catch(_0x588066){logger['error'](_0x21cd3b[_0x52b66b(_0x465420._0x462247,0x4cb,0x48d,0x4ea)],_0x588066);}}}else{const _0x3a7c02={};return _0x3a7c02[_0x566ef3(_0x465420._0xd00602,_0x465420._0x1f7c6d,0x3b0,0x40e)]=_0x21cd3b[_0x52b66b(_0x465420._0x15e3a8,_0x465420._0x1fa804,0x4d5,0x512)],_0x3a7c02[_0x52b66b(0x52d,0x4c3,0x454,_0x465420._0x265bec)]=_0x48143a[_0x566ef3(0x404,_0x465420._0x53f1ad,0x466,0x462)],_0x12b3ba[_0x52b66b(0x53a,0x4e4,_0x465420._0x37a4f7,0x551)](-0x59*0x53+-0x16c4+0x7*0x799)[_0x566ef3(_0x465420._0x5830fe,_0x465420._0x5e23e0,_0x465420._0x50e2db,_0x465420._0x2866e6)](_0x3a7c02);}}if(_0x21cd3b[_0x566ef3(_0x465420._0x5c3c16,_0x465420._0x3e6558,0x400,0x3ba)](process[_0x52b66b(0x4fd,_0x465420._0xdac535,_0x465420._0x5b3eff,_0x465420._0x4b9700)][_0x566ef3(0x465,0x487,_0x465420._0x5d24e1,_0x465420._0x5dfc0c)+'ED'],_0x21cd3b[_0x52b66b(_0x465420._0x43692b,0x47c,0x496,_0x465420._0x265bec)])){if(_0x21cd3b[_0x52b66b(0x4e7,_0x465420._0x44fcad,_0x465420._0x3d5017,_0x465420._0x510f61)](_0x21cd3b[_0x52b66b(0x504,0x4a5,_0x465420._0x25c004,_0x465420._0x4d528a)],_0x21cd3b['GqSqJ']))try{const _0x3d315e={};_0x3d315e[_0x52b66b(0x44c,_0x465420._0x43eba7,_0x465420._0xcbbe29,0x4a2)]=process[_0x52b66b(0x560,0x526,_0x465420._0x469b55,0x50c)][_0x566ef3(_0x465420._0x21f716,0x477,_0x465420._0x549762,_0x465420._0x2e6da3)+_0x52b66b(_0x465420._0x3029ea,0x45c,_0x465420._0x5ab697,_0x465420._0x1591ea)],_0x3d315e[_0x52b66b(_0x465420._0x5b7907,_0x465420._0x1012ac,_0x465420._0x394ddb,_0x465420._0x748926)]={},_0x3d315e[_0x52b66b(_0x465420._0x5b7907,_0x465420._0x1012ac,_0x465420._0x394ddb,_0x465420._0x748926)][_0x52b66b(_0x465420._0x2a8ae5,_0x465420._0x4754fd,0x3d4,_0x465420._0x3f5714)]=process[_0x52b66b(0x4fc,_0x465420._0x38ceb7,_0x465420._0x3af730,0x4f4)][_0x566ef3(_0x465420._0x6262f5,0x481,0x42c,_0x465420._0xeea26f)],_0x3d315e[_0x52b66b(_0x465420._0x5b7907,_0x465420._0x1012ac,_0x465420._0x394ddb,_0x465420._0x748926)][_0x52b66b(0x532,0x4fc,_0x465420._0xc8c8c,0x514)]=process[_0x566ef3(0x481,0x4b3,_0x465420._0x44fcad,_0x465420._0x287c09)][_0x566ef3(_0x465420._0x18e540,_0x465420._0x42c170,_0x465420._0x6940db,_0x465420._0x9e7680)+_0x566ef3(_0x465420._0x22e16b,_0x465420._0x4b3dc6,_0x465420._0x3f4310,0x359)],jiraClient=new JiraClient(_0x3d315e),logger[_0x52b66b(_0x465420._0x5ce178,0x441,0x428,_0x465420._0x45c864)](_0x21cd3b['WeHwG']);}catch(_0xde4ca3){logger['error'](_0x21cd3b[_0x52b66b(0x442,0x44e,0x4b9,0x44a)],_0xde4ca3);}else{const _0x5a195c={};return _0x5a195c['error']=_0x21cd3b[_0x52b66b(_0x465420._0x2d8bda,_0x465420._0x107a34,_0x465420._0x5e57d7,_0x465420._0x5d42db)],_0x5a195c['message']=_0x21cd3b['XtRYH'],_0x35c942[_0x566ef3(0x43d,_0x465420._0x2fca4d,0x4bb,0x436)](0x1*-0xd3+-0xf1d*-0x1+-0xcba)['json'](_0x5a195c);}}else logger[_0x52b66b(_0x465420._0x216e8b,0x441,_0x465420._0x3e2cc0,_0x465420._0x3d3137)](_0x21cd3b[_0x566ef3(_0x465420._0x534bfb,0x424,0x434,0x3f1)]);}function requireJira(_0x11c082,_0x23bc3f,_0x3e2acf){const _0xda15d6={_0x319c5c:0x41b,_0x294e66:0x405,_0x683d83:0x3ef,_0x45d8ee:0x448,_0x79a6ef:0x5b7,_0x37220f:0x5ab,_0x3da0db:0x5b4,_0x108fa6:0x552,_0x3a0a97:0x564,_0x37c33d:0x4f9,_0x21f8b9:0x55b,_0x20b042:0x547,_0x1f2661:0x4e9,_0x92d977:0x503,_0x56957b:0x405,_0x124779:0x497,_0x3f3157:0x486,_0x51d0ef:0x570,_0x1835e5:0x560,_0x569f80:0x594,_0x53bf43:0x583,_0x2c64b5:0x4c3,_0x17ff87:0x44d,_0x5a53bc:0x569,_0x4ec45f:0x5bb,_0x4276a7:0x56a,_0x1d618a:0x5bc,_0x41a065:0x5a0,_0x3c1ea5:0x5f8,_0x489d8b:0x63e,_0x330f70:0x635,_0x4be5a6:0x5bd,_0xf9b3a7:0x4e6,_0x35ddd1:0x49a,_0x123506:0x63c,_0x27034c:0x63e,_0x5a28f6:0x692};function _0xa5f8a8(_0x590e80,_0x2b1bd2,_0x500f98,_0x4cf1b7){return _0x4021(_0x2b1bd2-0x226,_0x4cf1b7);}function _0x2099f4(_0x3a49b7,_0x49dcc1,_0x494954,_0x282f91){return _0x4021(_0x3a49b7-0x38a,_0x49dcc1);}const _0x288d63={'GnvVz':_0xa5f8a8(0x3c6,0x3fc,_0xda15d6._0x319c5c,0x440)+_0xa5f8a8(_0xda15d6._0x294e66,_0xda15d6._0x683d83,0x45e,_0xda15d6._0x45d8ee)+_0x2099f4(_0xda15d6._0x79a6ef,0x567,0x5c9,0x58d)+_0x2099f4(_0xda15d6._0x37220f,_0xda15d6._0x3da0db,_0xda15d6._0x108fa6,0x5af)+_0x2099f4(_0xda15d6._0x3a0a97,_0xda15d6._0x37c33d,_0xda15d6._0x21f8b9,_0xda15d6._0x20b042)+_0xa5f8a8(_0xda15d6._0x1f2661,0x4d2,0x522,_0xda15d6._0x92d977)+_0xa5f8a8(0x45a,0x424,_0xda15d6._0x56957b,0x487)+_0xa5f8a8(_0xda15d6._0x124779,0x425,0x492,_0xda15d6._0x3f3157)+'ator.','XJIPj':function(_0x5b87ee){return _0x5b87ee();}};if(!jiraClient){const _0x1f24d5={};return _0x1f24d5[_0x2099f4(_0xda15d6._0x51d0ef,0x528,0x50b,0x59d)]=_0x2099f4(_0xda15d6._0x1835e5,_0xda15d6._0x569f80,0x528,_0xda15d6._0x53bf43)+_0xa5f8a8(0x46d,_0xda15d6._0x2c64b5,0x528,_0xda15d6._0x17ff87)+_0x2099f4(_0xda15d6._0x5a53bc,_0xda15d6._0x4ec45f,_0xda15d6._0x4276a7,_0xda15d6._0x1d618a),_0x1f24d5[_0x2099f4(0x5db,_0xda15d6._0x41a065,_0xda15d6._0x3c1ea5,0x5ca)]=_0x288d63['GnvVz'],_0x23bc3f[_0x2099f4(0x5fc,_0xda15d6._0x489d8b,_0xda15d6._0x330f70,_0xda15d6._0x4be5a6)](-0x25a1+0x1e23+-0x975*-0x1)[_0xa5f8a8(0x4cc,0x49f,_0xda15d6._0xf9b3a7,_0xda15d6._0x35ddd1)](_0x1f24d5);}_0x288d63[_0x2099f4(_0xda15d6._0x123506,_0xda15d6._0x27034c,_0xda15d6._0x5a28f6,0x699)](_0x3e2acf);}router[_0x2ab4d6(0x4fc,0x4f8,0x48b,0x506)]('/config',(_0x59531f,_0x393ff0)=>{const _0x22a188={_0x3fd4c2:0x2f3,_0x4ace18:0x314,_0x4a32d2:0x2ea,_0x4107a5:0x5c1,_0x337b11:0x5db,_0x58d098:0x5a0,_0x1a8d32:0x5f9,_0x43c880:0x33d,_0x384d05:0x317,_0x14ecc6:0x4df,_0x9f7cbf:0x509,_0x600a5:0x5a6},_0x440893={_0x699fa4:0x1f0},_0x53ae10={_0xb06f69:0x6f,_0x73882b:0x144,_0x3e147e:0x188},_0x34a544={};function _0x170069(_0x508f2f,_0x5ba845,_0x38cef5,_0x4ddef3){return _0x2ab4d6(_0x4ddef3,_0x5ba845-_0x53ae10._0xb06f69,_0x38cef5-_0x53ae10._0x73882b,_0x4ddef3-_0x53ae10._0x3e147e);}_0x34a544[_0x41a150(_0x22a188._0x3fd4c2,_0x22a188._0x4ace18,0x2b1,_0x22a188._0x4a32d2)]=!!jiraClient,_0x34a544[_0x170069(0x59e,0x581,_0x22a188._0x4107a5,_0x22a188._0x337b11)]=jiraClient?process[_0x170069(_0x22a188._0x58d098,_0x22a188._0x1a8d32,0x5ab,0x5b1)][_0x41a150(0x324,_0x22a188._0x43c880,_0x22a188._0x384d05,0x36b)+_0x170069(_0x22a188._0x14ecc6,0x52f,_0x22a188._0x9f7cbf,_0x22a188._0x600a5)]:null;function _0x41a150(_0x3e0b0b,_0x36e6d4,_0x215e5d,_0x52c9be){return _0x2ab4d6(_0x3e0b0b,_0x36e6d4- -0x211,_0x215e5d-_0x440893._0x699fa4,_0x52c9be-0x1ea);}_0x393ff0['json'](_0x34a544);}),router[_0x2ab4d6(0x4d5,0x4f8,0x567,0x49b)]('/issues/:k'+'ey',requireJira,async(_0x319872,_0x3e94cb)=>{const _0x3d4dba={_0x208222:0x486,_0x1bae5f:0x4ac,_0x5761bf:0x393,_0x1f4751:0x3d1,_0x4d8d60:0x36b,_0x4dfa20:0x537,_0x22df46:0x46b,_0x5d35c8:0x4cd,_0x3190d5:0x447,_0x322434:0x452,_0x22f1d5:0x3dc,_0xf69b24:0x48c,_0x34fa99:0x461,_0xd738f3:0x4bd,_0x5ab665:0x516,_0x5b3af2:0x56c,_0x2f5383:0x3e3,_0xda24ec:0x40a,_0x2fe9a3:0x3e1,_0x23ca9c:0x583,_0x347dc4:0x5c7,_0x283afe:0x54a,_0x5528a1:0x5a8,_0x1cd783:0x578,_0x2a486d:0x4cb,_0x5a5059:0x51b,_0xb735e3:0x3e3,_0x389fca:0x45d,_0x5535fd:0x53e,_0x265b38:0x56e,_0x450174:0x35f,_0x1f8b8d:0x3c6,_0x1133f4:0x34c,_0x4c7ca2:0x442,_0x2a8349:0x598,_0x104f28:0x4db,_0x1e0d83:0x54e,_0x48be2c:0x37f,_0x1680d4:0x36b,_0x25fca1:0x338,_0x32c766:0x4b8,_0x5a3593:0x474,_0x2c063c:0x4cf,_0x5cce91:0x3bb,_0x55102f:0x34a,_0x4d675e:0x47b,_0x2416e2:0x334,_0x108e5a:0x33d,_0x469ad6:0x371,_0x2cb38c:0x3d8,_0x31a07c:0x3f5,_0x303a0e:0x511,_0xa6e0fd:0x54c,_0x2b6c3b:0x58c,_0x2467e8:0x57b,_0x18fe6a:0x440,_0x43cbbe:0x43f,_0x530283:0x4ab,_0x2a474b:0x599,_0x39f905:0x3b9,_0x6ac092:0x44f,_0x100595:0x570,_0x150f91:0x578,_0xb2ec25:0x528,_0x1c49b5:0x546,_0x1b8ad7:0x3df,_0x4a7c9f:0x3c1,_0x123097:0x42a,_0x178778:0x562,_0x3454cc:0x541,_0x1c7a6c:0x57d,_0x257b59:0x540,_0x3c4fcb:0x3a4,_0x121a27:0x487,_0x42ce3d:0x423,_0x3610ac:0x426,_0x3dca46:0x3ac,_0x14c1c8:0x414,_0x1771f8:0x400,_0x34e61a:0x44a,_0x500a42:0x417,_0x38a788:0x413,_0x56deb8:0x457,_0x2b3600:0x438,_0x46e5b6:0x45f,_0x3fc480:0x44c,_0x37cad2:0x475,_0x1bd803:0x384,_0x97bbf0:0x3c7,_0x51490a:0x378,_0x185875:0x549,_0x41228f:0x57d,_0x22fe25:0x51b,_0x71e3bd:0x3bb,_0x49de4c:0x3ba,_0x2f4cbe:0x587,_0x19212c:0x561,_0x369506:0x4e4,_0x39092d:0x407,_0x3a8367:0x445,_0x45ed39:0x4a8,_0x3495e8:0x337,_0x59997a:0x39b,_0x2bf3d4:0x4e0,_0x214556:0x4c0,_0x4a37d:0x52d,_0x37575a:0x532,_0x4ab214:0x417,_0x62ef14:0x494,_0x175834:0x438,_0x23140e:0x5a6,_0x41e045:0x568,_0x58d908:0x3e1,_0x49f378:0x433,_0xc970e2:0x524,_0x15a7f6:0x545,_0x9c9dd5:0x4fa,_0x48949f:0x571,_0x3d0753:0x560,_0x24abe9:0x56b,_0x4d5e2b:0x568},_0x3977f0={_0x381d39:0x110,_0x3110e3:0x170},_0x2813f2={};_0x2813f2[_0x3a4372(_0x3d4dba._0x208222,_0x3d4dba._0x1bae5f,0x54f,0x4e8)]=_0x3a4372(0x5bd,0x56e,0x51f,0x559)+_0x4506c4(_0x3d4dba._0x5761bf,0x41b,_0x3d4dba._0x1f4751,_0x3d4dba._0x4d8d60)+_0x3a4372(_0x3d4dba._0x4dfa20,0x4cb,_0x3d4dba._0x22df46,_0x3d4dba._0x5d35c8),_0x2813f2[_0x4506c4(_0x3d4dba._0x3190d5,_0x3d4dba._0x1bae5f,_0x3d4dba._0x322434,_0x3d4dba._0x22f1d5)]=_0x3a4372(_0x3d4dba._0xf69b24,_0x3d4dba._0x34fa99,0x4a2,_0x3d4dba._0xd738f3)+_0x3a4372(0x50a,0x5dc,0x5aa,0x584)+_0x3a4372(0x52a,0x4fd,0x4c5,0x4e2)+_0x3a4372(_0x3d4dba._0x5ab665,0x505,0x59d,0x529);function _0x4506c4(_0x450838,_0x5538cb,_0x26c4bb,_0x1e1f79){return _0x2ab4d6(_0x1e1f79,_0x26c4bb- -_0x3977f0._0x381d39,_0x26c4bb-0x1bf,_0x1e1f79-_0x3977f0._0x3110e3);}_0x2813f2['OZzsF']=_0x3a4372(0x4d5,0x4ec,_0x3d4dba._0x5b3af2,0x51e),_0x2813f2[_0x4506c4(_0x3d4dba._0x2f5383,_0x3d4dba._0xda24ec,0x45a,_0x3d4dba._0x2fe9a3)]=_0x3a4372(0x529,_0x3d4dba._0x23ca9c,0x5a8,0x566)+'found',_0x2813f2['AiLsq']='authentica'+_0x3a4372(_0x3d4dba._0x347dc4,_0x3d4dba._0x283afe,_0x3d4dba._0x5528a1,_0x3d4dba._0x1cd783)+'d';function _0x3a4372(_0x1841a0,_0x2043d0,_0x5c8415,_0x4d0f41){return _0x2ab4d6(_0x5c8415,_0x4d0f41-0x19,_0x5c8415-0x90,_0x4d0f41-0x165);}_0x2813f2[_0x3a4372(_0x3d4dba._0x2a486d,0x52c,0x547,_0x3d4dba._0x5a5059)]=_0x4506c4(_0x3d4dba._0xb735e3,0x424,_0x3d4dba._0x389fca,0x47c)+_0x3a4372(0x5de,0x5d9,0x50c,_0x3d4dba._0x1cd783)+'d',_0x2813f2[_0x3a4372(0x57b,0x525,_0x3d4dba._0x5535fd,_0x3d4dba._0x265b38)]='No\x20permiss'+_0x4506c4(_0x3d4dba._0x450174,0x3af,_0x3d4dba._0x1f8b8d,_0x3d4dba._0x1133f4),_0x2813f2[_0x4506c4(0x43a,0x48c,_0x3d4dba._0x4c7ca2,0x4a3)]='Failed\x20to\x20'+_0x3a4372(_0x3d4dba._0x2a8349,0x54f,0x51d,0x58e)+_0x3a4372(0x55e,_0x3d4dba._0x104f28,_0x3d4dba._0x1e0d83,0x552);const _0x4090ce=_0x2813f2;try{const _0x37a444=_0x319872['params'][_0x4506c4(_0x3d4dba._0x48be2c,_0x3d4dba._0x1680d4,0x38a,_0x3d4dba._0x25fca1)][_0x4506c4(_0x3d4dba._0x32c766,0x4a1,_0x3d4dba._0x5a3593,_0x3d4dba._0x2c063c)]()[_0x4506c4(_0x3d4dba._0x5cce91,_0x3d4dba._0x55102f,0x396,0x386)+'e']();if(!/^[A-Z]+-\d+$/i[_0x4506c4(0x427,0x407,_0x3d4dba._0x4d675e,0x40c)](_0x37a444)){const _0x1903dc={};return _0x1903dc[_0x4506c4(_0x3d4dba._0x22f1d5,_0x3d4dba._0x2416e2,0x3ac,_0x3d4dba._0x108e5a)]=_0x4090ce[_0x4506c4(_0x3d4dba._0x469ad6,_0x3d4dba._0x2cb38c,0x3bf,0x37f)],_0x1903dc[_0x4506c4(0x406,_0x3d4dba._0x31a07c,0x417,0x3c8)]=_0x4090ce[_0x3a4372(_0x3d4dba._0x303a0e,_0x3d4dba._0xa6e0fd,_0x3d4dba._0x2b6c3b,_0x3d4dba._0x2467e8)],_0x3e94cb[_0x3a4372(0x4f4,_0x3d4dba._0x303a0e,0x565,0x561)](0x1242+-0x2b3*0x4+-0x5e6)[_0x4506c4(_0x3d4dba._0x18fe6a,0x444,_0x3d4dba._0x43cbbe,_0x3d4dba._0x530283)](_0x1903dc);}logger[_0x3a4372(0x56f,0x54e,_0x3d4dba._0x2a474b,0x5a6)](_0x4506c4(_0x3d4dba._0x39f905,_0x3d4dba._0x6ac092,0x419,0x46b)+_0x3a4372(0x5ca,_0x3d4dba._0x100595,_0x3d4dba._0x150f91,0x576)+'\x20'+_0x37a444);const _0x342967=await jiraClient[_0x3a4372(_0x3d4dba._0xb2ec25,0x4e7,0x533,_0x3d4dba._0x1c49b5)](_0x37a444);_0x3e94cb['json'](_0x342967);}catch(_0x3a0e0b){logger['error'](_0x4506c4(_0x3d4dba._0x1b8ad7,0x3c7,_0x3d4dba._0x4a7c9f,_0x3d4dba._0x123097)+_0x3a4372(0x561,0x57e,_0x3d4dba._0x178778,0x58e)+'\x20issue:',_0x3a0e0b);if(_0x3a0e0b[_0x3a4372(_0x3d4dba._0x3454cc,_0x3d4dba._0x1c7a6c,0x565,_0x3d4dba._0x257b59)][_0x4506c4(0x39c,_0x3d4dba._0x3c4fcb,0x3f4,0x383)](_0x4090ce[_0x4506c4(_0x3d4dba._0x121a27,_0x3d4dba._0x42ce3d,0x47e,0x489)])){const _0x16f52b={};return _0x16f52b[_0x4506c4(_0x3d4dba._0x3610ac,0x36a,_0x3d4dba._0x3dca46,_0x3d4dba._0x14c1c8)]=_0x4090ce['AwwnT'],_0x16f52b[_0x4506c4(_0x3d4dba._0x1771f8,_0x3d4dba._0x34e61a,_0x3d4dba._0x500a42,_0x3d4dba._0x38a788)]=_0x3a0e0b['message'],_0x3e94cb[_0x4506c4(_0x3d4dba._0x56deb8,_0x3d4dba._0x2b3600,0x438,_0x3d4dba._0x46e5b6)](-0x5e5+-0x105c+0x17d5*0x1)[_0x4506c4(_0x3d4dba._0x3fc480,0x492,0x43f,_0x3d4dba._0x37cad2)](_0x16f52b);}else{if(_0x3a0e0b[_0x3a4372(0x56c,0x5b6,0x5af,0x540)][_0x4506c4(0x3b5,0x37b,0x3f4,0x3cb)](_0x4090ce[_0x4506c4(0x3c8,_0x3d4dba._0x1bd803,_0x3d4dba._0x97bbf0,_0x3d4dba._0x51490a)])){const _0x4ad8c0={};return _0x4ad8c0['error']=_0x4090ce[_0x3a4372(0x55b,_0x3d4dba._0x185875,_0x3d4dba._0x41228f,_0x3d4dba._0x22fe25)],_0x4ad8c0[_0x4506c4(_0x3d4dba._0x71e3bd,_0x3d4dba._0x49de4c,0x417,0x3c5)]=_0x3a0e0b['message'],_0x3e94cb[_0x3a4372(0x553,_0x3d4dba._0x2f4cbe,0x556,_0x3d4dba._0x19212c)](0x2*0x11a2+-0xf4*0x17+-0xbc7)['json'](_0x4ad8c0);}else{if(_0x3a0e0b[_0x3a4372(0x5a6,_0x3d4dba._0x369506,0x501,0x540)]['includes'](_0x4090ce[_0x4506c4(0x3f5,_0x3d4dba._0x39092d,_0x3d4dba._0x3a8367,_0x3d4dba._0x45ed39)])){const _0x58932d={};return _0x58932d[_0x4506c4(_0x3d4dba._0x3495e8,0x348,0x3ac,_0x3d4dba._0x59997a)]=_0x3a4372(_0x3d4dba._0x2bf3d4,_0x3d4dba._0x214556,_0x3d4dba._0x4a37d,_0x3d4dba._0x37575a)+_0x4506c4(_0x3d4dba._0x22df46,0x3ac,0x3fb,0x3c6),_0x58932d['message']=_0x3a0e0b[_0x4506c4(0x3ae,0x3bc,_0x3d4dba._0x4ab214,0x402)],_0x3e94cb[_0x4506c4(_0x3d4dba._0x62ef14,0x408,_0x3d4dba._0x175834,0x3d4)](0x565+-0x6c3+0x2f1)[_0x3a4372(_0x3d4dba._0x1cd783,0x4f7,_0x3d4dba._0x23140e,_0x3d4dba._0x41e045)](_0x58932d);}else{const _0x28c2ef={};return _0x28c2ef[_0x4506c4(0x3c9,0x3ad,0x3ac,0x3c0)]=_0x4090ce[_0x4506c4(_0x3d4dba._0x58d908,0x3e2,0x442,_0x3d4dba._0x49f378)],_0x28c2ef[_0x3a4372(0x4cd,0x54d,_0x3d4dba._0xc970e2,0x540)]=_0x3a0e0b[_0x3a4372(_0x3d4dba._0x15a7f6,_0x3d4dba._0x4a37d,0x4f3,0x540)],_0x3e94cb[_0x3a4372(_0x3d4dba._0x9c9dd5,0x574,0x548,_0x3d4dba._0x19212c)](-0x5*0x6df+-0x1f09+0x4358)[_0x3a4372(_0x3d4dba._0x48949f,_0x3d4dba._0x3d0753,_0x3d4dba._0x24abe9,_0x3d4dba._0x4d5e2b)](_0x28c2ef);}}}}}),router[_0x182cdf(-0x98,-0xe1,-0xf6,-0xcb)](_0x182cdf(-0x30,0x15,-0x53,-0xa6),requireJira,async(_0x364e3a,_0x2ddf56)=>{const _0x3db384={_0x345cb0:0x545,_0x349096:0x5a1,_0xb23ab9:0x643,_0x2ebd79:0x5f0,_0xe5624a:0x577,_0x20732b:0x5ce,_0x23f262:0x5da,_0x428cab:0x603,_0x3acf06:0x328,_0x1a8c5d:0x27a,_0x3f7b56:0x319,_0x33ebc7:0x2a0,_0x1b2d6c:0x64c,_0x2d909c:0x5aa,_0x429b53:0x536,_0x2b461f:0x5a7,_0x22031c:0x56c,_0x25d404:0x5cc,_0x19de34:0x5c8,_0x2c4d77:0x57c,_0xc4c3d4:0x24e,_0x1ac51d:0x283,_0x47fa2f:0x25e,_0x3fb735:0x28f,_0x3b7a7f:0x2b9,_0x3f73ea:0x593,_0x1d2dc3:0x549,_0x2f8a09:0x52c,_0x5e27f1:0x2de,_0x3b1246:0x3a1,_0x1252d5:0x2c4,_0x9099f5:0x2b4,_0xafe92c:0x273,_0x12353a:0x31a,_0x5a0edb:0x2e2,_0x3fa5d9:0x2df,_0x542046:0x342,_0x4d1ea6:0x29f,_0x361fb1:0x606,_0x25563d:0x586,_0x1bbc89:0x519,_0x99813c:0x57b,_0x3ed6d5:0x534,_0x4061ce:0x2a0,_0x245929:0x2b7,_0x353e5f:0x2c7,_0x2c2223:0x2e7,_0x4eb061:0x2c3,_0x4a5f6d:0x240,_0x48cf85:0x237,_0x16e295:0x2dc,_0x51483c:0x311,_0xba945:0x2f5,_0x19ce19:0x25a,_0x55c696:0x22b,_0x1e686f:0x28d,_0x13b152:0x2e3,_0x271c59:0x350,_0xffceaf:0x618,_0xe9db1b:0x601,_0x5d2ac0:0x604,_0x24fedd:0x59c,_0x55b9b9:0x5a8,_0x32acb7:0x5c6,_0xdbf889:0x364,_0x136c9d:0x310,_0x1faff7:0x2d1,_0xf9a8f2:0x2fa,_0x321440:0x294,_0x49d100:0x308,_0x3940cd:0x2d5,_0x529571:0x37b,_0x404e08:0x349,_0x9f5801:0x28d,_0x3c4e76:0x312,_0x100e43:0x249,_0x28eba2:0x2d8,_0x3fa31:0x301,_0x5a20da:0x2d3,_0x1854c7:0x395,_0x2ab725:0x2e4,_0x2813b0:0x2fe,_0x2a88f8:0x5a6,_0x5a50cb:0x58f,_0x43ec8f:0x5e7,_0x260983:0x2a7,_0xb64044:0x339,_0x4024b0:0x31b,_0x3b9a7e:0x2cf,_0x210bae:0x37c,_0x1c47e6:0x54c,_0x117a81:0x4e3,_0x38ddea:0x5db,_0x481b26:0x655,_0x512743:0x612,_0x14850e:0x307,_0x2c6e14:0x35a,_0x3a6012:0x5ed,_0x49dde1:0x2f9,_0x16bcde:0x2ee,_0x1acb88:0x288,_0x50675d:0x5d6,_0x335a63:0x578,_0x6cd575:0x2da,_0x1e3c00:0x4f4,_0x1cf2d4:0x25b,_0x3f98cd:0x305,_0x128568:0x538,_0x509f2f:0x50e,_0x40f7f5:0x2e0,_0x1dc653:0x4d8,_0x432d40:0x570,_0x2f78e9:0x2e6,_0x541dec:0x27f,_0x1eaa61:0x300,_0xef30d5:0x2ec,_0x118ea5:0x269,_0x387d4c:0x2eb,_0x400b74:0x295,_0x32249a:0x5a8,_0x2e0542:0x61c,_0x3a98ee:0x2db,_0x4c0d8a:0x394,_0x4eb98e:0x2f8,_0x324882:0x2ab,_0x460897:0x289,_0x5454a7:0x2ed,_0x258f51:0x2d1,_0x1b17f7:0x5ff,_0x124d96:0x631,_0x11dad8:0x5d0,_0x33ae41:0x5d4,_0x26c546:0x567,_0x33fabe:0x5f0,_0x156781:0x615,_0x3d4ed9:0x5ee,_0x840ff0:0x283,_0x1affe3:0x2cb,_0x4eb64f:0x2a6,_0x467dc7:0x337,_0xe4fe05:0x5ea,_0x16e89a:0x5d3,_0x1dd191:0x5a5,_0x326412:0x316,_0x332fce:0x304,_0xb6c276:0x2b6,_0x19a851:0x58e,_0x40a228:0x5c3,_0x26c350:0x5ec,_0x54b02e:0x5c9,_0x1e4cdf:0x5da,_0x1cf46e:0x588,_0x47e225:0x2c5,_0x5f1632:0x2cd,_0xf42b9c:0x329,_0x561adb:0x2f6,_0x31eabe:0x32d,_0x477437:0x2a4,_0x2c8666:0x2b9,_0x1218d6:0x5da,_0x280815:0x588,_0x1edee7:0x649,_0x53db7c:0x5d7,_0x647e16:0x55c,_0x579e65:0x23e,_0x592a4e:0x259,_0x4737d6:0x5a8,_0x3755d8:0x555,_0x2767df:0x5af,_0x5bc902:0x5e0,_0x8f6a9c:0x294,_0x35561c:0x670,_0x3a2a16:0x5ec,_0x299a70:0x33a,_0x4aca08:0x2ca,_0x19f690:0x2b3,_0x5ce219:0x60c,_0x207295:0x5be,_0x2c62df:0x59f,_0x476db3:0x55f,_0x332b33:0x58d,_0x33180f:0x354,_0x1a3f95:0x2c1,_0x29ba38:0x28b,_0x17bd1e:0x5e1,_0x3013db:0x599,_0x5e3a6d:0x36a,_0x4dadd1:0x369,_0xe0f7f6:0x2f6,_0x56fecf:0x5a3,_0x3eb829:0x58c,_0x2b8779:0x4d4,_0x40a644:0x540,_0x56f4e1:0x575,_0x542f86:0x5a7,_0x2d1571:0x606,_0x547f27:0x5e7,_0x7044f8:0x27c,_0x344fe7:0x5ab,_0x18c14b:0x613,_0x5d1bc0:0x609,_0x452546:0x5af,_0x16f1d6:0x309,_0x21544e:0x2e1,_0x56091a:0x31e,_0x5767ee:0x256,_0x35d920:0x2b0,_0xd345dc:0x2f6,_0x33435f:0x628,_0x202d54:0x576,_0x13f3ac:0x5af},_0x59bb9a={_0x2969d3:0x231,_0x4454f8:0x1f1},_0x5c527c={_0x485ce4:0x1e6,_0x1308ee:0x46},_0x6b03bc={};_0x6b03bc[_0x41bed9(_0x3db384._0x345cb0,0x509,0x57d,_0x3db384._0x349096)]='JIRA\x20integ'+_0x41bed9(_0x3db384._0xb23ab9,0x645,_0x3db384._0x2ebd79,0x59c)+_0x41bed9(0x60b,0x559,0x590,_0x3db384._0xe5624a)+'environmen'+_0x41bed9(_0x3db384._0x20732b,_0x3db384._0x23f262,_0x3db384._0x428cab,0x66f)+'s',_0x6b03bc[_0x40141e(0x35a,0x2bc,_0x3db384._0x3acf06,0x2e0)]=_0x40141e(_0x3db384._0x1a8c5d,_0x3db384._0x3f7b56,0x2e2,_0x3db384._0x33ebc7)+_0x41bed9(0x5ff,_0x3db384._0x1b2d6c,0x5d4,_0x3db384._0x2d909c)+_0x41bed9(_0x3db384._0x429b53,0x572,_0x3db384._0x2b461f,0x55a)+_0x41bed9(0x518,0x562,0x54a,_0x3db384._0x22031c)+'v\x20vars:';function _0x41bed9(_0x44012d,_0x3c1069,_0x54e2ac,_0x4d717e){return _0x182cdf(_0x54e2ac-0x5d3,_0x3c1069-_0x5c527c._0x485ce4,_0x54e2ac-_0x5c527c._0x1308ee,_0x44012d);}function _0x40141e(_0x343e52,_0xae0802,_0x38b0d6,_0x2ce311){return _0x2ab4d6(_0x343e52,_0x2ce311- -_0x59bb9a._0x2969d3,_0x38b0d6-_0x59bb9a._0x4454f8,_0x2ce311-0x98);}_0x6b03bc['oAvdR']=_0x41bed9(_0x3db384._0x25d404,0x57c,_0x3db384._0x19de34,_0x3db384._0x2c4d77)+'sue\x20key\x20fo'+_0x40141e(0x28b,0x231,_0x3db384._0xc4c3d4,_0x3db384._0x1ac51d),_0x6b03bc[_0x40141e(_0x3db384._0x47fa2f,_0x3db384._0x3fb735,0x260,_0x3db384._0x3b7a7f)]=_0x41bed9(_0x3db384._0x3f73ea,_0x3db384._0x1d2dc3,_0x3db384._0x2f8a09,0x507)+_0x40141e(_0x3db384._0x5e27f1,_0x3db384._0x3b1246,_0x3db384._0x1252d5,0x33a)+_0x40141e(_0x3db384._0x9099f5,_0x3db384._0xafe92c,0x2ab,0x298)+_0x40141e(_0x3db384._0x12353a,_0x3db384._0x5a0edb,0x265,_0x3db384._0x3fa5d9),_0x6b03bc[_0x40141e(_0x3db384._0x542046,_0x3db384._0x4d1ea6,0x2ad,0x315)]=function(_0xa1c1a3,_0x54cd43){return _0xa1c1a3===_0x54cd43;},_0x6b03bc[_0x41bed9(_0x3db384._0x361fb1,0x5d7,0x5ed,0x5ee)]=_0x41bed9(_0x3db384._0x25563d,_0x3db384._0x1bbc89,_0x3db384._0x99813c,_0x3db384._0x3ed6d5),_0x6b03bc[_0x40141e(_0x3db384._0x4061ce,0x2f4,0x28d,_0x3db384._0x245929)]=function(_0x19a58b,_0x577981){return _0x19a58b!==_0x577981;},_0x6b03bc[_0x40141e(_0x3db384._0x353e5f,0x380,_0x3db384._0x2c2223,0x322)]=function(_0x3e1b4b,_0x44d9ad){return _0x3e1b4b<_0x44d9ad;},_0x6b03bc['QjKGe']=_0x40141e(0x23f,_0x3db384._0x4eb061,_0x3db384._0x4a5f6d,0x29d)+'short',_0x6b03bc[_0x40141e(0x2ba,_0x3db384._0x48cf85,_0x3db384._0x16e295,0x296)]=_0x40141e(0x35a,_0x3db384._0x51483c,0x289,_0x3db384._0xba945)+_0x40141e(0x299,_0x3db384._0x19ce19,_0x3db384._0x55c696,_0x3db384._0x1e686f)+_0x40141e(_0x3db384._0x13b152,_0x3db384._0x271c59,0x342,0x316)+_0x41bed9(_0x3db384._0xffceaf,_0x3db384._0xe9db1b,_0x3db384._0x5d2ac0,_0x3db384._0x24fedd)+'rs',_0x6b03bc[_0x41bed9(0x5ea,0x53c,_0x3db384._0x55b9b9,_0x3db384._0x32acb7)]=_0x40141e(0x2e2,0x30d,_0x3db384._0xdbf889,_0x3db384._0x136c9d),_0x6b03bc[_0x40141e(_0x3db384._0x1faff7,_0x3db384._0xf9a8f2,0x298,_0x3db384._0x321440)]=_0x40141e(0x288,_0x3db384._0x49d100,0x333,0x301)+_0x40141e(_0x3db384._0x3940cd,0x305,0x2f5,0x2b4),_0x6b03bc[_0x40141e(_0x3db384._0x529571,_0x3db384._0x404e08,0x361,0x33f)]='BPIYQ',_0x6b03bc[_0x40141e(_0x3db384._0x9f5801,_0x3db384._0x3c4e76,_0x3db384._0x100e43,0x2b3)]=_0x40141e(0x295,_0x3db384._0x28eba2,0x2ba,_0x3db384._0x3fa31)+_0x40141e(_0x3db384._0x5a20da,0x2d9,0x2fa,0x349),_0x6b03bc['njRBV']=_0x40141e(_0x3db384._0x1854c7,_0x3db384._0x2ab725,_0x3db384._0x2813b0,0x33c)+_0x41bed9(_0x3db384._0x2a88f8,_0x3db384._0x5a50cb,_0x3db384._0x43ec8f,0x570)+'d';const _0x475750=_0x6b03bc;try{if(_0x475750[_0x40141e(_0x3db384._0x260983,0x313,_0x3db384._0xb64044,0x315)](_0x40141e(0x33e,0x31b,_0x3db384._0x4024b0,0x330),_0x475750[_0x40141e(0x360,_0x3db384._0x3b9a7e,_0x3db384._0x210bae,0x334)]))try{const _0xa009d9={};_0xa009d9[_0x41bed9(0x4c1,_0x3db384._0x1c47e6,0x523,_0x3db384._0x117a81)]=_0x329f78[_0x41bed9(_0x3db384._0x38ddea,_0x3db384._0x481b26,_0x3db384._0x512743,0x67c)]['JIRA_EMAIL'],_0xa009d9[_0x40141e(_0x3db384._0x14850e,_0x3db384._0x2c6e14,0x38f,0x32f)]=_0x348faa[_0x41bed9(_0x3db384._0x3a6012,0x5b3,_0x3db384._0x512743,0x5fd)][_0x40141e(_0x3db384._0x49dde1,_0x3db384._0x16bcde,0x250,_0x3db384._0x1acb88)+'OKEN'];const _0x1b8e3d={};_0x1b8e3d[_0x40141e(0x2f8,0x33a,0x331,0x2e1)]=_0x25a07b['env'][_0x41bed9(0x63e,0x592,_0x3db384._0x50675d,_0x3db384._0x335a63)+'URL'],_0x1b8e3d[_0x40141e(0x351,_0x3db384._0x6cd575,0x2eb,0x347)]=_0xa009d9,_0x2b84b5=new _0x3a723d(_0x1b8e3d),_0x17b152[_0x41bed9(0x500,0x54c,0x52d,_0x3db384._0x1e3c00)](_0x475750[_0x40141e(_0x3db384._0x1cf2d4,0x2f6,_0x3db384._0x3f98cd,0x2c4)]);}catch(_0x20e85b){_0xe78bba[_0x41bed9(_0x3db384._0x128568,_0x3db384._0x509f2f,0x544,0x504)](_0x475750[_0x40141e(0x299,0x31b,0x26d,_0x3db384._0x40f7f5)],_0x20e85b);}else{const {query:_0xc97659,maxResults:maxResults=0x16ab+-0xfeb+-0x6ac*0x1}=_0x364e3a[_0x41bed9(_0x3db384._0x1dc653,0x552,0x552,0x56f)];if(!_0xc97659||_0x475750[_0x41bed9(0x5d7,0x5b3,_0x3db384._0x432d40,0x50a)](typeof _0xc97659,_0x40141e(0x2b5,0x32a,0x26c,_0x3db384._0x2f78e9))){const _0xfd012a={};return _0xfd012a['error']=_0x40141e(_0x3db384._0x541dec,0x2ff,_0x3db384._0x1eaa61,_0x3db384._0xef30d5)+'arch\x20query',_0xfd012a[_0x40141e(0x36a,0x35f,0x346,0x2f6)]=_0x40141e(0x2bb,0x30a,_0x3db384._0xba945,0x2f0)+_0x40141e(_0x3db384._0x118ea5,0x2fd,_0x3db384._0x387d4c,_0x3db384._0x400b74)+_0x41bed9(0x5f0,_0x3db384._0x32249a,0x5f7,_0x3db384._0x2e0542)+_0x40141e(_0x3db384._0x3a98ee,_0x3db384._0x4c0d8a,_0x3db384._0x4eb98e,0x33d)+'uest\x20body',_0x2ddf56['status'](-0x1923+0x1b0b+-0xb*0x8)[_0x41bed9(0x5ef,0x57f,0x5d7,0x5f5)](_0xfd012a);}if(_0x475750[_0x40141e(0x357,0x380,0x31e,0x322)](_0xc97659['trim']()[_0x40141e(0x22f,_0x3db384._0x324882,0x217,_0x3db384._0x460897)],-0x49*-0x5+0x1*-0x1b5b+0xa6*0x28)){const _0x7b8a83={};return _0x7b8a83[_0x40141e(_0x3db384._0x5454a7,_0x3db384._0x258f51,0x24c,0x28b)]=_0x475750[_0x41bed9(0x5b5,0x666,_0x3db384._0x1b17f7,0x5c4)],_0x7b8a83['message']=_0x475750[_0x41bed9(0x584,0x527,0x54f,0x557)],_0x2ddf56[_0x41bed9(0x59e,_0x3db384._0x124d96,_0x3db384._0x11dad8,0x589)](0x15f3+0x1226*-0x2+0x1*0xfe9)[_0x41bed9(_0x3db384._0x33ae41,_0x3db384._0x26c546,0x5d7,0x624)](_0x7b8a83);}logger[_0x41bed9(_0x3db384._0x33fabe,0x5db,_0x3db384._0x156781,_0x3db384._0x3d4ed9)](_0x40141e(_0x3db384._0x840ff0,_0x3db384._0x1affe3,0x335,_0x3db384._0xf9a8f2)+_0x40141e(_0x3db384._0x4eb64f,0x282,_0x3db384._0x467dc7,0x2e7)+_0xc97659+_0x41bed9(0x602,_0x3db384._0xe4fe05,_0x3db384._0x16e89a,_0x3db384._0x1dd191)+maxResults+')');const _0x1c06e8=await jiraClient[_0x40141e(0x268,_0x3db384._0x326412,_0x3db384._0x332fce,_0x3db384._0xb6c276)+'es'](_0xc97659,maxResults);_0x2ddf56[_0x41bed9(_0x3db384._0x19a851,0x649,0x5d7,0x5b5)](_0x1c06e8);}}catch(_0xe80734){if(_0x475750['sbkSI'](_0x475750[_0x41bed9(_0x3db384._0x40a228,0x56b,0x5a8,_0x3db384._0x5d2ac0)],_0x41bed9(0x566,_0x3db384._0x26c350,_0x3db384._0x54b02e,0x57a))){const _0x3d5b49={};return _0x3d5b49[_0x41bed9(0x51b,0x4fb,0x544,0x4ca)]=_0x475750[_0x41bed9(_0x3db384._0x1e4cdf,0x555,_0x3db384._0x1cf46e,_0x3db384._0x43ec8f)],_0x3d5b49[_0x40141e(_0x3db384._0x47e225,_0x3db384._0x5f1632,_0x3db384._0xf42b9c,_0x3db384._0x561adb)]=_0x475750[_0x40141e(_0x3db384._0x31eabe,0x32b,_0x3db384._0x477437,_0x3db384._0x2c8666)],_0x4b044f[_0x41bed9(0x5c3,_0x3db384._0x1218d6,0x5d0,0x5ca)](0xd60+-0x1*0x79f+-0x431)[_0x41bed9(_0x3db384._0x280815,_0x3db384._0x1edee7,_0x3db384._0x53db7c,0x56f)](_0x3d5b49);}else{logger[_0x41bed9(0x4cd,0x51e,0x544,_0x3db384._0x647e16)](_0x40141e(_0x3db384._0x579e65,0x2b5,_0x3db384._0x592a4e,_0x3db384._0x4061ce)+'search\x20JIR'+_0x41bed9(_0x3db384._0x4737d6,0x517,0x563,0x530),_0xe80734);if(_0xe80734[_0x41bed9(_0x3db384._0x3755d8,0x565,_0x3db384._0x2767df,_0x3db384._0x5bc902)][_0x40141e(0x29c,0x32d,0x2ad,0x2d3)](_0x475750[_0x40141e(0x236,_0x3db384._0x1e686f,0x27d,_0x3db384._0x8f6a9c)])){if(_0x475750[_0x41bed9(_0x3db384._0x35561c,_0x3db384._0x3a2a16,0x5f8,0x5ef)]===_0x475750[_0x40141e(0x323,_0x3db384._0x3fa5d9,_0x3db384._0x299a70,0x33f)]){const _0x3f98bc={};return _0x3f98bc['error']=_0x475750[_0x40141e(_0x3db384._0x4aca08,0x2d8,0x2c9,_0x3db384._0x19f690)],_0x3f98bc[_0x41bed9(_0x3db384._0x5ce219,_0x3db384._0x207295,0x5af,_0x3db384._0x2c62df)]=_0xe80734[_0x41bed9(_0x3db384._0x476db3,0x5b3,0x5af,_0x3db384._0x332b33)],_0x2ddf56[_0x40141e(_0x3db384._0x33180f,0x326,_0x3db384._0x529571,0x317)](0x8*0x1e+-0x23a2+-0x1221*-0x2)[_0x41bed9(0x576,0x580,0x5d7,0x566)](_0x3f98bc);}else _0x4c3326[_0x40141e(_0x3db384._0x1a3f95,0x289,0x2c3,_0x3db384._0x29ba38)](_0x475750[_0x41bed9(0x5d4,_0x3db384._0x17bd1e,_0x3db384._0x3013db,0x551)],_0x250a08);}else{if(_0xe80734[_0x40141e(_0x3db384._0x5e3a6d,0x363,_0x3db384._0x4dadd1,_0x3db384._0xe0f7f6)][_0x41bed9(_0x3db384._0x56fecf,0x5cd,_0x3db384._0x3eb829,0x5c0)](_0x41bed9(_0x3db384._0x2b8779,0x4ce,_0x3db384._0x40a644,_0x3db384._0x56f4e1)+_0x41bed9(_0x3db384._0x542f86,_0x3db384._0x2d1571,_0x3db384._0x547f27,0x589)+'d')){const _0x1588ba={};return _0x1588ba[_0x40141e(0x286,_0x3db384._0x7044f8,0x268,0x28b)]=_0x475750[_0x41bed9(_0x3db384._0x20732b,0x5ca,_0x3db384._0x344fe7,_0x3db384._0x2767df)],_0x1588ba[_0x41bed9(_0x3db384._0x18c14b,_0x3db384._0x5d1bc0,_0x3db384._0x452546,_0x3db384._0x56f4e1)]=_0xe80734[_0x40141e(_0x3db384._0x47e225,_0x3db384._0x16f1d6,0x338,0x2f6)],_0x2ddf56[_0x40141e(_0x3db384._0x21544e,0x349,_0x3db384._0x258f51,0x317)](0x16dc+-0x172b+0x1e0)[_0x40141e(0x2f7,_0x3db384._0x4eb061,_0x3db384._0x4024b0,_0x3db384._0x56091a)](_0x1588ba);}else{const _0x227a66={};return _0x227a66[_0x40141e(0x242,0x21e,0x22d,_0x3db384._0x29ba38)]=_0x40141e(0x276,_0x3db384._0x5767ee,0x31b,0x2a0)+'search\x20JIR'+'A\x20issues',_0x227a66[_0x40141e(0x2f2,_0x3db384._0x35d920,0x2d9,_0x3db384._0xd345dc)]=_0xe80734[_0x41bed9(_0x3db384._0x33435f,_0x3db384._0x202d54,_0x3db384._0x13f3ac,_0x3db384._0x128568)],_0x2ddf56['status'](-0x53*-0x3e+-0x85*0x3e+0xf0*0xf)['json'](_0x227a66);}}}}}),router[_0x2ab4d6(0x497,0x4f8,0x4d3,0x4fc)]('/issues/:k'+_0x182cdf(0x9,0x5e,-0x26,-0x30)+'s',requireJira,async(_0x546d13,_0x461f9d)=>{const _0x503b94={_0x10d48e:0x488,_0x1df091:0x4bc,_0x186da4:0x4bd,_0x43d196:0x611,_0x4136da:0x609,_0x2de0b9:0x5c2,_0x470df2:0x573,_0x28748c:0x5d8,_0xea4148:0x5c3,_0x39966f:0x5ba,_0x3416ad:0x399,_0x256bdc:0x420,_0x4f73fe:0x3d0,_0x56c12b:0x5fc,_0x4e66ae:0x5c7,_0x2428b9:0x491,_0x1539a1:0x60d,_0x476958:0x5dc,_0x5d02a6:0x624,_0x6c583c:0x5b4,_0x2c0114:0x631,_0x3ebce5:0x5cb,_0x12e9e1:0x43e,_0x3a89e5:0x5a6,_0x3c7013:0x52d,_0x15ba5e:0x579,_0x39770f:0x4ff,_0x4543eb:0x3c1,_0x64899d:0x439,_0x42549d:0x3ee,_0x1dcb67:0x3b7,_0x28c6b9:0x429,_0x16b2ac:0x5fc,_0x58062a:0x412,_0x189cbd:0x484,_0x271558:0x422,_0x23a5e7:0x646,_0x564785:0x65e,_0x39be78:0x5ed,_0xd008b4:0x57d,_0x39b838:0x504,_0x3a5ef1:0x66a,_0x979316:0x5f6,_0x3cf856:0x3d5,_0x57c0d:0x356,_0x1ce890:0x473,_0x20dabf:0x62f,_0x5106da:0x564,_0x24bac9:0x59b,_0x19b14d:0x60b,_0x528b72:0x61d,_0x36340d:0x58d,_0x148bf6:0x5be,_0x43afd3:0x599,_0x21eee4:0x5e1,_0x15b1b7:0x5f3,_0x13add:0x5f8,_0x62c5c6:0x5db,_0xacfb70:0x5d1,_0x1d98d1:0x5de,_0x4be4b2:0x582,_0x69d9d1:0x5c1,_0x50cf9d:0x604,_0x27fcd2:0x485,_0x3279e6:0x4a9,_0x2aecad:0x4f2,_0x5bd089:0x55b,_0x49197a:0x5c6,_0x3423fc:0x553,_0x5b7e38:0x545,_0x6b3a3a:0x5b7,_0x441f99:0x454,_0x220e12:0x40f,_0x39dc74:0x39c,_0x4c121d:0x4d6,_0x46b514:0x4a8,_0x657761:0x393,_0x4a7628:0x41f,_0x17257a:0x45f,_0xf5bb7e:0x444,_0x7f1fd9:0x581,_0x3d8011:0x58c,_0x33031d:0x4a2,_0x162c7e:0x490,_0x39ca8c:0x44b,_0x2a6d3b:0x479,_0x4ea7c7:0x64a,_0x52165d:0x613,_0xe4d393:0x5f7,_0x193a4f:0x612,_0x4a1ca6:0x652,_0x1db75d:0x600,_0x1c5fea:0x413,_0x3bfd92:0x43c,_0x23bcb4:0x4fa,_0x4160bc:0x472,_0x1aa686:0x4aa,_0x32ddd2:0x48d,_0x20d85c:0x4e1,_0x18b956:0x469,_0x1d3d64:0x5d0,_0x1eb921:0x5bf,_0x4ee613:0x45b,_0x545aaf:0x3e1,_0x3e3c77:0x49f,_0x2e12db:0x38e,_0x387b7e:0x3cd,_0x39b96c:0x3e5,_0x24201d:0x65f,_0x26ea7f:0x57c,_0x3dc968:0x59e,_0x207bab:0x3e9,_0x506188:0x4b2,_0x59f882:0x578,_0x206148:0x536,_0x5cc3a1:0x430,_0x12fcd0:0x43f,_0x46827f:0x651,_0x369c50:0x5c0,_0x15f545:0x5ec,_0xf2c0b7:0x4b1,_0x191956:0x4c6,_0x1a1bd9:0x3e3,_0xb54e17:0x434,_0x16ea2c:0x410,_0x16d6e0:0x45c,_0x1924f7:0x65d,_0xea495a:0x577,_0x3932fe:0x585,_0xa0fcf6:0x446,_0x2ff792:0x609,_0x3c443d:0x418,_0xc44ac9:0x59a,_0x514376:0x5ec,_0x1fd38d:0x5a4,_0x190aad:0x60d,_0x159026:0x595,_0x4ce683:0x3c9,_0x491375:0x425,_0x2433d7:0x47e,_0x29ffd0:0x428,_0x256e65:0x574,_0x2c0b55:0x519,_0x93ed74:0x5d0,_0x2e0750:0x53f,_0x29e45c:0x4af,_0x5a90fe:0x4a0,_0x125ae7:0x410,_0x987b1d:0x4be,_0x510a74:0x43b,_0x5ee28e:0x3d1,_0x4bc399:0x5af,_0x4a61ff:0x56a,_0x480f1c:0x656,_0x4b8351:0x54a,_0x19e579:0x581,_0x6a9d7b:0x634,_0x1990b8:0x620,_0x5d746c:0x5ec,_0x56b664:0x5bb,_0x41fc67:0x61b,_0x147ae0:0x648,_0x40e329:0x614,_0x1d720d:0x438,_0x4c696a:0x46c,_0x103647:0x5bd,_0x3404b6:0x54c,_0x294083:0x48d,_0x58eaee:0x493,_0x4eda42:0x465,_0x1e1008:0x45e,_0x38f1e6:0x44b,_0x278c45:0x438,_0x3eaacc:0x44b,_0x226a94:0x414,_0x47d9a3:0x41c,_0x1b2ddc:0x418,_0x54beea:0x3d6,_0x38f781:0x440,_0x280676:0x61c,_0x59a7bb:0x5ec,_0x30891d:0x664,_0x2962d8:0x5d9},_0x13386e={_0x39cc3f:0x13e,_0x4edf3f:0x1f},_0x6a02cd={_0x131c07:0xe0},_0x29d94a={};_0x29d94a[_0x5e2846(0x49a,_0x503b94._0x10d48e,0x48d,_0x503b94._0x1df091)]=_0x5e2846(0x479,_0x503b94._0x186da4,0x4ad,0x44e)+_0x34d2b6(_0x503b94._0x43d196,_0x503b94._0x4136da,_0x503b94._0x2de0b9,_0x503b94._0x470df2)+_0x34d2b6(0x59a,0x5b4,_0x503b94._0x28748c,0x5bb)+_0x34d2b6(_0x503b94._0xea4148,_0x503b94._0x39966f,0x590,_0x503b94._0x28748c),_0x29d94a['pyxxz']=_0x5e2846(_0x503b94._0x3416ad,_0x503b94._0x256bdc,_0x503b94._0x4f73fe,0x3db)+'ration\x20ena'+_0x34d2b6(_0x503b94._0x56c12b,_0x503b94._0x4e66ae,0x5cd,0x63a)+'coder-setu'+'p',_0x29d94a[_0x5e2846(0x448,0x3e9,_0x503b94._0x256bdc,0x444)]=_0x5e2846(0x43f,0x4d3,_0x503b94._0x2428b9,0x418)+_0x34d2b6(_0x503b94._0x1539a1,_0x503b94._0x476958,_0x503b94._0x5d02a6,_0x503b94._0x6c583c)+'d',_0x29d94a[_0x34d2b6(0x636,0x5f2,_0x503b94._0x2c0114,_0x503b94._0x3ebce5)]=_0x5e2846(_0x503b94._0x12e9e1,0x424,0x464,0x438)+_0x34d2b6(0x5e0,0x56c,_0x503b94._0x3a89e5,0x5ec)+_0x34d2b6(_0x503b94._0x3c7013,0x4fe,_0x503b94._0x15ba5e,_0x503b94._0x39770f),_0x29d94a[_0x5e2846(0x3f2,_0x503b94._0x4543eb,_0x503b94._0x64899d,0x416)]=_0x5e2846(_0x503b94._0x42549d,_0x503b94._0x1dcb67,_0x503b94._0x28c6b9,0x406),_0x29d94a['saDzp']=_0x34d2b6(0x61c,_0x503b94._0x16b2ac,0x612,0x65e)+_0x5e2846(_0x503b94._0x58062a,_0x503b94._0x189cbd,_0x503b94._0x271558,0x45f),_0x29d94a[_0x34d2b6(_0x503b94._0x23a5e7,_0x503b94._0x564785,0x5e7,0x577)]=_0x34d2b6(0x577,_0x503b94._0x39be78,_0x503b94._0xd008b4,_0x503b94._0x39b838)+_0x34d2b6(_0x503b94._0x3a5ef1,0x5d5,0x624,_0x503b94._0x979316)+'d',_0x29d94a['NpMHI']=_0x5e2846(0x368,_0x503b94._0x3cf856,0x3c7,_0x503b94._0x57c0d),_0x29d94a[_0x5e2846(0x4af,0x438,0x47a,_0x503b94._0x1ce890)]=_0x34d2b6(0x61b,_0x503b94._0x20dabf,0x61c,0x681)+_0x34d2b6(0x580,_0x503b94._0x5106da,_0x503b94._0x24bac9,0x5ad),_0x29d94a['mnRlr']=_0x34d2b6(_0x503b94._0x19b14d,_0x503b94._0x528b72,0x645,0x633);function _0x5e2846(_0x40453f,_0xc70757,_0x1aa950,_0x1ae0f2){return _0x2ab4d6(_0x1ae0f2,_0x1aa950- -0xdc,_0x1aa950-_0x6a02cd._0x131c07,_0x1ae0f2-0xfa);}_0x29d94a[_0x34d2b6(0x58d,0x589,_0x503b94._0x36340d,_0x503b94._0x148bf6)]=_0x34d2b6(_0x503b94._0x43afd3,_0x503b94._0x21eee4,_0x503b94._0x15b1b7,_0x503b94._0x13add),_0x29d94a[_0x34d2b6(_0x503b94._0x62c5c6,_0x503b94._0xacfb70,0x620,0x657)]=_0x34d2b6(_0x503b94._0x1d98d1,_0x503b94._0x4be4b2,_0x503b94._0x1d98d1,0x5ae)+'\x20denied',_0x29d94a[_0x34d2b6(_0x503b94._0x69d9d1,0x580,0x5c4,0x583)]=function(_0x3d32fe,_0x30a720){return _0x3d32fe===_0x30a720;},_0x29d94a[_0x34d2b6(_0x503b94._0x39be78,0x664,_0x503b94._0x50cf9d,0x60d)]=_0x5e2846(_0x503b94._0x27fcd2,0x4fc,_0x503b94._0x3279e6,_0x503b94._0x2aecad),_0x29d94a[_0x34d2b6(0x5ba,0x59d,0x5bf,_0x503b94._0x5bd089)]='fWPpN',_0x29d94a[_0x34d2b6(0x5e8,_0x503b94._0x49197a,0x5fa,0x586)]=_0x34d2b6(_0x503b94._0x3423fc,0x599,0x596,_0x503b94._0x5b7e38)+_0x34d2b6(0x58a,0x5d0,_0x503b94._0x6b3a3a,0x546)+_0x5e2846(0x4f5,_0x503b94._0x441f99,0x4ab,0x4c7);function _0x34d2b6(_0x1d9ba8,_0x2cfdb1,_0x3ecc2e,_0xf19db7){return _0x182cdf(_0x3ecc2e-0x610,_0x2cfdb1-_0x13386e._0x39cc3f,_0x3ecc2e-_0x13386e._0x4edf3f,_0xf19db7);}const _0x42c778=_0x29d94a;try{const _0x3833aa=_0x546d13[_0x5e2846(0x3b6,0x452,_0x503b94._0x220e12,_0x503b94._0x39dc74)]['key'][_0x5e2846(0x46d,_0x503b94._0x4c121d,_0x503b94._0x46b514,0x4d7)]()[_0x5e2846(_0x503b94._0x657761,0x3ba,0x3ca,_0x503b94._0x4a7628)+'e']();if(!/^[A-Z]+-\d+$/i[_0x5e2846(0x471,_0x503b94._0x17257a,0x4af,_0x503b94._0xf5bb7e)](_0x3833aa)){const _0x330762={};return _0x330762[_0x34d2b6(0x56f,0x5ea,_0x503b94._0x7f1fd9,_0x503b94._0x3d8011)]=_0x42c778[_0x5e2846(_0x503b94._0x33031d,0x43d,_0x503b94._0x162c7e,0x4ba)],_0x330762[_0x5e2846(0x4a0,0x47b,_0x503b94._0x39ca8c,_0x503b94._0x2a6d3b)]='Issue\x20key\x20'+_0x34d2b6(0x654,0x671,0x630,_0x503b94._0x4ea7c7)+'\x20format\x20PR'+'OJECT-123',_0x461f9d['status'](0x1*0x11dd+0x1*-0x2403+0x1*0x13b6)[_0x34d2b6(_0x503b94._0x52165d,_0x503b94._0xe4d393,0x614,0x617)](_0x330762);}logger[_0x34d2b6(0x652,_0x503b94._0x193a4f,_0x503b94._0x4a1ca6,_0x503b94._0x1db75d)](_0x5e2846(_0x503b94._0x1c5fea,0x3d2,0x433,_0x503b94._0x3bfd92)+'omments\x20fo'+_0x5e2846(_0x503b94._0x23bcb4,_0x503b94._0x4160bc,_0x503b94._0x1aa686,_0x503b94._0x32ddd2)+'ue:\x20'+_0x3833aa);const _0x1599cd=await jiraClient[_0x5e2846(_0x503b94._0x20d85c,0x492,_0x503b94._0x18b956,0x43e)+'s'](_0x3833aa),_0x9db1ce={};_0x9db1ce['total']=_0x1599cd[_0x34d2b6(_0x503b94._0x1d3d64,_0x503b94._0x1eb921,0x57f,0x558)],_0x9db1ce[_0x5e2846(0x4ca,0x41f,_0x503b94._0x4ee613,_0x503b94._0x545aaf)]=_0x1599cd,_0x461f9d[_0x5e2846(_0x503b94._0x3e3c77,0x4b8,0x473,0x44c)](_0x9db1ce);}catch(_0x223a0a){logger[_0x5e2846(_0x503b94._0x2e12db,_0x503b94._0x387b7e,0x3e0,_0x503b94._0x39b96c)]('Failed\x20to\x20'+'fetch\x20Jira'+'\x20comments:',_0x223a0a);if(_0x223a0a[_0x34d2b6(_0x503b94._0x24201d,_0x503b94._0x26ea7f,0x5ec,_0x503b94._0x3dc968)]['includes'](_0x42c778[_0x5e2846(_0x503b94._0x207bab,_0x503b94._0x506188,0x439,_0x503b94._0x4160bc)])){const _0x5578cb={};return _0x5578cb[_0x34d2b6(0x570,_0x503b94._0x59f882,_0x503b94._0x7f1fd9,_0x503b94._0x206148)]=_0x42c778[_0x5e2846(0x3e1,0x483,_0x503b94._0x5cc3a1,_0x503b94._0x12fcd0)],_0x5578cb[_0x34d2b6(_0x503b94._0x46827f,_0x503b94._0x369c50,_0x503b94._0x15f545,0x5e0)]=_0x223a0a[_0x5e2846(_0x503b94._0xf2c0b7,_0x503b94._0x191956,0x44b,_0x503b94._0x1a1bd9)],_0x461f9d[_0x5e2846(_0x503b94._0xb54e17,_0x503b94._0x16ea2c,0x46c,_0x503b94._0x16d6e0)](-0x3*0x185+-0x382+-0x3*-0x337)[_0x34d2b6(_0x503b94._0x1924f7,0x63d,0x614,0x5af)](_0x5578cb);}else{if(_0x223a0a[_0x34d2b6(0x5b8,0x592,0x5ec,0x57c)][_0x34d2b6(0x623,_0x503b94._0xea495a,0x5c9,_0x503b94._0x3932fe)](_0x42c778[_0x5e2846(_0x503b94._0x545aaf,0x428,_0x503b94._0xa0fcf6,0x42b)])){if(_0x34d2b6(0x63a,_0x503b94._0x2ff792,0x609,0x64f)!==_0x42c778[_0x5e2846(_0x503b94._0x3c443d,0x3da,0x450,0x479)]){const _0x6c3d9b={};return _0x6c3d9b['error']=_0x42c778['oyplJ'],_0x6c3d9b[_0x34d2b6(_0x503b94._0xc44ac9,0x617,_0x503b94._0x514376,0x623)]=_0x223a0a['message'],_0x461f9d[_0x34d2b6(0x613,_0x503b94._0x1fd38d,_0x503b94._0x190aad,_0x503b94._0x159026)](0x61*0x13+-0x2145+-0x1*-0x1ba3)['json'](_0x6c3d9b);}else try{_0x1be786=new _0x260124(_0x3c21a7),_0xf8fabc[_0x5e2846(0x423,0x43d,_0x503b94._0x4ce683,_0x503b94._0x491375)](_0x42c778[_0x5e2846(0x4a6,_0x503b94._0x2433d7,0x48d,_0x503b94._0x29ffd0)]);return;}catch(_0x5061fe){_0x178fc3[_0x34d2b6(0x5d7,_0x503b94._0x256e65,0x581,_0x503b94._0x2c0b55)]('Failed\x20to\x20'+'reload\x20JIR'+_0x34d2b6(_0x503b94._0x93ed74,_0x503b94._0x2e0750,0x576,0x52c)+_0x5e2846(_0x503b94._0x29e45c,_0x503b94._0x5a90fe,_0x503b94._0x12e9e1,_0x503b94._0x189cbd),_0x5061fe);}}else{if(_0x223a0a[_0x5e2846(_0x503b94._0x125ae7,_0x503b94._0x987b1d,_0x503b94._0x39ca8c,0x4a0)]['includes'](_0x42c778['ANMgh'])){if(_0x42c778['mnRlr']===_0x42c778[_0x5e2846(0x3a7,_0x503b94._0x510a74,0x3ec,_0x503b94._0x5ee28e)]){_0x4196f6=new _0x1feb00(_0x2a63be),_0x42c32e[_0x34d2b6(_0x503b94._0x4bc399,0x531,_0x503b94._0x4a61ff,0x554)](_0x42c778[_0x34d2b6(0x625,0x607,0x600,_0x503b94._0x480f1c)]);return;}else{const _0x3261c6={};return _0x3261c6[_0x34d2b6(_0x503b94._0x4b8351,0x5b8,_0x503b94._0x19e579,0x552)]=_0x42c778[_0x34d2b6(_0x503b94._0x6a9d7b,0x656,_0x503b94._0x1990b8,0x5b6)],_0x3261c6[_0x34d2b6(0x583,0x5c9,_0x503b94._0x5d746c,0x589)]=_0x223a0a[_0x34d2b6(0x646,_0x503b94._0x56b664,_0x503b94._0x15f545,_0x503b94._0x2c0114)],_0x461f9d[_0x34d2b6(_0x503b94._0x41fc67,0x61b,0x60d,_0x503b94._0x147ae0)](-0x1a2b+-0x2285+-0x1e3*-0x21)[_0x34d2b6(0x5bc,0x686,_0x503b94._0x40e329,_0x503b94._0x4e66ae)](_0x3261c6);}}else{if(_0x42c778['upVcc'](_0x42c778[_0x5e2846(_0x503b94._0x1d720d,0x4bf,0x463,0x4c7)],_0x42c778[_0x5e2846(0x459,_0x503b94._0x27fcd2,0x41e,_0x503b94._0x4c696a)])){const _0x262726={};return _0x262726[_0x34d2b6(_0x503b94._0x103647,0x515,0x581,_0x503b94._0x3404b6)]=_0x42c778[_0x5e2846(0x45c,_0x503b94._0x294083,0x420,_0x503b94._0x58eaee)],_0x262726[_0x5e2846(_0x503b94._0x4eda42,_0x503b94._0x1e1008,_0x503b94._0x38f1e6,0x431)]=_0x5923e8[_0x5e2846(_0x503b94._0x278c45,0x495,_0x503b94._0x3eaacc,_0x503b94._0x226a94)],_0x1ca0a9[_0x5e2846(0x435,_0x503b94._0x47d9a3,0x46c,_0x503b94._0x1b2ddc)](-0x1*0x26fd+0x14b5+0x13d9)['json'](_0x262726);}else{const _0x110570={};return _0x110570[_0x5e2846(0x422,_0x503b94._0x54beea,0x3e0,_0x503b94._0x38f781)]=_0x42c778['tnxDa'],_0x110570[_0x5e2846(0x48f,0x427,0x44b,0x4b7)]=_0x223a0a[_0x34d2b6(0x5ee,_0x503b94._0x280676,_0x503b94._0x59a7bb,_0x503b94._0x30891d)],_0x461f9d[_0x34d2b6(_0x503b94._0x5d02a6,0x656,0x60d,_0x503b94._0x2962d8)](-0x1*0x2009+-0x2702*-0x1+-0x1*0x505)['json'](_0x110570);}}}}}}),router[_0x2ab4d6(0x4cb,0x4b3,0x4d8,0x4bd)](_0x2ab4d6(0x590,0x564,0x5c8,0x57c)+_0x2ab4d6(0x4d9,0x554,0x5c6,0x5ab),requireJira,async(_0x4ea620,_0x16c953)=>{const _0x1f2884={_0x2a3c80:0x331,_0x18d65c:0x325,_0x123e7e:0x361,_0x3fc852:0x98,_0x31bbbd:0xeb,_0x178c61:0x70,_0x8ea5ee:0x1a5,_0x14f9ae:0xf4,_0x3a1d48:0xaf,_0x1af8c8:0x163,_0x335df9:0x7a,_0x4555ce:0x47b,_0x1e7fd6:0x444,_0x81cf29:0x44c,_0x3f8e52:0xf3,_0x25b391:0xf6,_0x5e4950:0x38a,_0x3733f3:0x3d4,_0x4b960e:0x40b,_0x35c11c:0x3fd,_0x25d732:0x3e3,_0x2808ff:0x3d4,_0xfddee4:0x187,_0x4c373b:0x180,_0x7a537b:0x39e,_0x5ec89e:0x384,_0x2232a9:0x175,_0x588ef3:0x3e6,_0x291874:0x188,_0xefb0c4:0x16c,_0xd1970a:0x14a,_0x3419d0:0x3b6,_0x25fcf6:0xf9,_0x2bbea6:0x149,_0x4551ae:0x8f,_0x46ea9b:0x421,_0x2fd2b1:0x3f7,_0x446f05:0x63,_0x3d0681:0xfc,_0x113d13:0x47a,_0x547779:0xec,_0x489231:0x3f5,_0x214640:0x450,_0x519d6c:0x153,_0x303650:0x181,_0x41d78e:0x41d,_0x3c033c:0x1d7,_0x45b6b0:0xfe,_0x2ba668:0x36c,_0x324f54:0x3a6,_0x86e70:0x37c,_0x2f86f6:0xdc,_0x5f5221:0x77,_0x3c2579:0xc3,_0xc77e00:0x77,_0x3302ca:0x28,_0xd6575c:0x3fc,_0x13cd9d:0x42a,_0x27ebe8:0x37e,_0x1ed732:0x412,_0x28156a:0x3b8,_0x37a459:0x39f,_0x36d75f:0x469,_0xfc0427:0x44c,_0x121bd9:0x31,_0x2e403c:0x40f,_0x1f63f3:0x41c,_0x427b33:0x43a,_0x9fa178:0xba,_0x48b0d0:0xb0,_0x5c8076:0xaf,_0x203503:0x129,_0x5447ef:0xbe,_0x1f02c9:0xd9,_0x286e15:0x48f,_0x52f17d:0x3ef,_0x549c2f:0xea,_0x1b5b46:0x111,_0x5f14ef:0x71,_0x1cc83d:0x159,_0x558b20:0x116,_0x5c5bba:0x162,_0x53e632:0x404,_0x952506:0x449,_0x51e0f8:0x3fe,_0x1f1976:0x143,_0x48e5b0:0x128,_0x522643:0x171,_0x3bbb99:0x197,_0x56436c:0x4a,_0x3dd880:0x112,_0x1c6e30:0x84,_0x596276:0x119,_0x55e704:0x11a,_0x24f441:0x117,_0xb99b86:0xb6,_0x42240d:0x3bc,_0x38f97b:0x451,_0x81e253:0x39a,_0x336b78:0x451,_0x269439:0x3bf,_0x530818:0x415,_0x2931bd:0x3bc,_0x24fa49:0x3be,_0x2d7a9e:0x3cf,_0x4c2763:0x99,_0x4af57d:0xb3,_0x237538:0x186,_0x282b5d:0x142,_0x15c368:0x382,_0x85f956:0x3c1,_0x37f2e1:0x379,_0x254663:0x49e,_0x663f97:0xb8,_0x5c460c:0xc5,_0x197ffa:0x12c,_0x590029:0x17a,_0x4bcd72:0xa0,_0x543dd7:0x100,_0x5546d9:0x2b,_0x42c62f:0x1e0,_0x1eee41:0x15e,_0x58e64b:0x15f,_0x18bc2f:0x108,_0x2fbb38:0x177,_0x27aab3:0x148,_0x24f88c:0x13b,_0x93c72f:0x126,_0x59461f:0xa8,_0x376618:0x9b,_0x59a688:0x6c,_0x35374e:0xf0,_0x30d919:0x16f,_0x10341f:0xfa,_0x20202e:0x407,_0x4fbf8b:0x113,_0x2b97b7:0xee,_0x123c44:0x131,_0x2b8eb1:0x192,_0x368cbb:0x18a,_0x41337f:0x3ed,_0x5c89d5:0x3ea,_0x3831f1:0x434,_0x2dae38:0x1ad,_0x3edae6:0xa6,_0x3457e3:0xc2,_0x400167:0x11c,_0x1f0c90:0x489,_0x53467b:0x3ea,_0x442d39:0x41e,_0x5e45fb:0xfc,_0x522054:0x167,_0x41d0f5:0x17b,_0x22ee13:0x378,_0x4afd28:0x348,_0x561ab5:0x3b5,_0x3934e4:0x394,_0x2ad777:0x340,_0x301024:0x33e,_0x10ff45:0x38f,_0x26efc7:0x95,_0x195d45:0x3da,_0x2568e8:0x3fa,_0x2939ab:0x42e,_0x421862:0x89,_0x3200f2:0x44,_0x262849:0x3e5,_0x564da6:0x43b,_0x57b183:0x466,_0x3775d8:0x480,_0x53d3f1:0x85,_0x31a9dc:0x371,_0x6f1a14:0x37e,_0x1be84f:0x13b,_0x56550e:0x8d,_0x492d49:0xad,_0x596a5b:0x13b,_0x1380a0:0xf5,_0x2b32ba:0xf2,_0x244a42:0x34,_0x43e8ca:0x4b,_0x4ff932:0x389,_0xb1c81b:0x31b,_0xcca36c:0x3a4,_0x1b8655:0x3af,_0x2b04d9:0x3a6,_0x57fc5e:0x387,_0x3ee329:0x3fe,_0x4579c9:0xd1,_0x2e63da:0x16b,_0x7e7168:0x176,_0x58eee8:0x146,_0x5cc720:0x4a5,_0xd74984:0x4a3,_0x3b74e0:0x42b,_0x3c30f2:0x360,_0x47c6ef:0x379,_0x3d7a8c:0x94,_0x44cdfd:0xc5,_0x455f9f:0xde,_0x207f44:0x3e3,_0x10e821:0x400,_0x32c86d:0x1bf,_0x361eed:0x196,_0x14bfc1:0x109,_0x31bf58:0x44b,_0x3a541a:0x119,_0x1242b5:0x373,_0x2fbb79:0x30e,_0x149658:0x44e,_0x174329:0x40d,_0x270968:0x381,_0x46378e:0x422,_0x4f3e2f:0x46c,_0x1029a5:0x4a7,_0x16f162:0x461,_0x5a189f:0xa8,_0x5b4fa6:0xac,_0x1f2e19:0xfc,_0xa8e120:0xce,_0x3e1540:0x127,_0x3abb7e:0x8f,_0x592683:0x11d,_0x3d5bd8:0x165,_0x46eefb:0x120,_0x104628:0x1a3,_0x15bd62:0x13b,_0x229b88:0x150,_0x982340:0x3c0,_0x147eac:0x3ad,_0x3aaafd:0x13e,_0xfb9738:0x90,_0x3c33d4:0xcd,_0x37e0de:0x360,_0x421d41:0x3e7,_0x232ae8:0x37c,_0x29f44f:0x3ac,_0x1fea73:0xe9,_0x97c0f7:0x3c4,_0x287b47:0x46d,_0x26e4ec:0x18f,_0x36fade:0x106,_0x3d7f98:0x17b,_0x170d33:0xa3,_0x3b7582:0x459},_0x49ffde={_0x2a1397:0x54},_0x371045={_0x5b942d:0x15d},_0x2aa048={};_0x2aa048[_0x483d0a(_0x1f2884._0x2a3c80,_0x1f2884._0x18d65c,0x394,_0x1f2884._0x123e7e)]=_0x594c38(_0x1f2884._0x3fc852,0x54,_0x1f2884._0x31bbbd,_0x1f2884._0x178c61)+_0x594c38(0x154,0x148,0x130,_0x1f2884._0x8ea5ee)+_0x594c38(_0x1f2884._0x14f9ae,_0x1f2884._0x3a1d48,_0x1f2884._0x1af8c8,_0x1f2884._0x335df9)+_0x483d0a(_0x1f2884._0x4555ce,0x3fc,_0x1f2884._0x1e7fd6,_0x1f2884._0x81cf29)+'p',_0x2aa048[_0x594c38(_0x1f2884._0x3f8e52,0xa3,0xdc,_0x1f2884._0x25b391)]=_0x483d0a(_0x1f2884._0x5e4950,0x361,0x3a4,0x3f8)+_0x483d0a(0x3b4,_0x1f2884._0x3733f3,0x41f,_0x1f2884._0x4b960e)+_0x483d0a(0x3a3,_0x1f2884._0x3733f3,0x3f2,_0x1f2884._0x35c11c)+_0x483d0a(_0x1f2884._0x3733f3,_0x1f2884._0x25d732,_0x1f2884._0x2808ff,0x37a)+_0x594c38(0x116,_0x1f2884._0xfddee4,0xd8,_0x1f2884._0x4c373b),_0x2aa048[_0x483d0a(0x3a7,_0x1f2884._0x7a537b,0x3c9,_0x1f2884._0x5ec89e)]=_0x594c38(_0x1f2884._0x2232a9,0x127,0x171,0x183)+'t\x20reloaded'+_0x483d0a(0x418,0x44f,_0x1f2884._0x588ef3,0x427)+'r-setup',_0x2aa048[_0x594c38(0x12e,_0x1f2884._0x291874,_0x1f2884._0xefb0c4,_0x1f2884._0xd1970a)]=function(_0x2c1c42,_0x7a623f){return _0x2c1c42!==_0x7a623f;};function _0x483d0a(_0x1b0d9,_0x595132,_0x3d902c,_0x13f477){return _0x182cdf(_0x3d902c-0x41e,_0x595132-_0x371045._0x5b942d,_0x3d902c-0x2b,_0x13f477);}_0x2aa048[_0x483d0a(0x3b7,0x380,0x3ef,0x3b1)]=_0x483d0a(0x34c,0x3c7,0x38e,_0x1f2884._0x3419d0),_0x2aa048[_0x594c38(_0x1f2884._0x25fcf6,0xe5,_0x1f2884._0x2bbea6,_0x1f2884._0x4551ae)]=_0x483d0a(_0x1f2884._0x46ea9b,0x45b,_0x1f2884._0x2fd2b1,0x3f6),_0x2aa048['EccPR']=_0x594c38(0x90,_0x1f2884._0x446f05,_0x1f2884._0x3d0681,_0x1f2884._0x25fcf6)+_0x483d0a(0x3d8,_0x1f2884._0x113d13,0x43e,0x40a)+_0x594c38(0xb5,0x10e,_0x1f2884._0x547779,0x76)+_0x483d0a(0x43e,_0x1f2884._0x489231,0x3e3,_0x1f2884._0x214640),_0x2aa048[_0x594c38(_0x1f2884._0x519d6c,0x117,_0x1f2884._0x303650,0x109)]=function(_0x37dbf2,_0x1862d7){return _0x37dbf2===_0x1862d7;},_0x2aa048[_0x483d0a(_0x1f2884._0x41d78e,0x3ca,0x439,0x48d)]=_0x594c38(0x15e,_0x1f2884._0x3c033c,0x130,_0x1f2884._0x45b6b0);function _0x594c38(_0x5bd249,_0x12e390,_0x5c5e6e,_0x5e0758){return _0x2ab4d6(_0x12e390,_0x5bd249- -0x414,_0x5c5e6e-0x64,_0x5e0758-_0x49ffde._0x2a1397);}_0x2aa048[_0x483d0a(_0x1f2884._0x2ba668,_0x1f2884._0x324f54,_0x1f2884._0x86e70,0x373)]=_0x594c38(_0x1f2884._0x2f86f6,_0x1f2884._0x5f5221,_0x1f2884._0x3c2579,0x117)+'mment',_0x2aa048[_0x594c38(0x89,0x72,_0x1f2884._0xc77e00,_0x1f2884._0x3302ca)]=_0x483d0a(_0x1f2884._0xd6575c,_0x1f2884._0x13cd9d,0x3f4,_0x1f2884._0x27ebe8)+'vide\x20a\x20com'+_0x483d0a(_0x1f2884._0x1ed732,_0x1f2884._0x28156a,_0x1f2884._0x37a459,0x3fd)+_0x483d0a(_0x1f2884._0x36d75f,0x461,_0x1f2884._0xfc0427,0x49c)+_0x594c38(0xb6,_0x1f2884._0x3d0681,0xd7,0xf3),_0x2aa048[_0x594c38(0x9a,_0x1f2884._0x14f9ae,0xb6,_0x1f2884._0x121bd9)]='FyXZV',_0x2aa048[_0x483d0a(0x41f,_0x1f2884._0x2e403c,_0x1f2884._0x1f63f3,0x407)]=_0x483d0a(_0x1f2884._0x427b33,0x391,0x406,0x3ce),_0x2aa048[_0x594c38(0xb0,0x93,_0x1f2884._0x14f9ae,0x128)]=_0x594c38(0xf1,0xae,_0x1f2884._0x9fa178,_0x1f2884._0x48b0d0),_0x2aa048[_0x594c38(_0x1f2884._0x5c8076,_0x1f2884._0x203503,0x110,0x62)]='WMjmO',_0x2aa048[_0x594c38(0x126,0x189,_0x1f2884._0x5447ef,_0x1f2884._0x1f02c9)]=_0x483d0a(_0x1f2884._0x286e15,0x490,0x420,_0x1f2884._0x52f17d)+_0x594c38(_0x1f2884._0x549c2f,_0x1f2884._0x1b5b46,0xb4,_0x1f2884._0x5f14ef),_0x2aa048['LMqPE']=_0x594c38(_0x1f2884._0x1cc83d,0x185,0x1ad,_0x1f2884._0x558b20)+_0x594c38(0x14b,_0x1f2884._0x5c5bba,0x198,0xf8)+'d',_0x2aa048[_0x483d0a(_0x1f2884._0x53e632,_0x1f2884._0x952506,0x411,_0x1f2884._0x51e0f8)]=_0x594c38(_0x1f2884._0x1f1976,_0x1f2884._0x48e5b0,_0x1f2884._0x522643,_0x1f2884._0x3bbb99)+_0x594c38(0xc2,_0x1f2884._0x56436c,0xc2,_0x1f2884._0x3dd880),_0x2aa048[_0x594c38(0xa9,0x59,_0x1f2884._0x1c6e30,_0x1f2884._0x596276)]='UXoMQ',_0x2aa048[_0x594c38(0xc5,_0x1f2884._0x55e704,0x113,_0x1f2884._0x24f441)]=_0x594c38(0x105,0x14e,_0x1f2884._0xb99b86,0x10a)+_0x483d0a(_0x1f2884._0x42240d,_0x1f2884._0x38f97b,0x3de,_0x1f2884._0x81e253),_0x2aa048[_0x483d0a(0x4cc,0x470,_0x1f2884._0x336b78,0x465)]=_0x483d0a(0x379,0x3c6,0x3a4,_0x1f2884._0x269439)+_0x483d0a(_0x1f2884._0x530818,0x3fa,_0x1f2884._0x2931bd,0x3b5)+'nt';const _0x55032b=_0x2aa048;try{const _0x19a44b=_0x4ea620[_0x483d0a(0x404,0x350,_0x1f2884._0x24fa49,_0x1f2884._0x2d7a9e)][_0x594c38(0x86,_0x1f2884._0x4c2763,_0x1f2884._0x4af57d,0x52)][_0x594c38(0x170,_0x1f2884._0x237538,_0x1f2884._0x282b5d,0x17c)]()[_0x483d0a(_0x1f2884._0x15c368,_0x1f2884._0x85f956,_0x1f2884._0x37f2e1,0x384)+'e'](),{comment:_0x3c65ca}=_0x4ea620['body'];if(!/^[A-Z]+-\d+$/i[_0x483d0a(0x43a,_0x1f2884._0x254663,0x45e,0x46b)](_0x19a44b)){if(_0x55032b['BneQg'](_0x55032b[_0x594c38(0x108,_0x1f2884._0x663f97,0xf1,_0x1f2884._0x5c460c)],_0x55032b['kbVFC'])){const _0x224b3c={};return _0x224b3c[_0x483d0a(0x31d,0x34f,0x38f,0x3c2)]=_0x594c38(_0x1f2884._0x197ffa,_0x1f2884._0x590029,0x10b,0xd5)+'sue\x20key\x20fo'+_0x594c38(_0x1f2884._0x4bcd72,_0x1f2884._0x543dd7,0x71,_0x1f2884._0x5546d9),_0x224b3c['message']=_0x55032b[_0x594c38(0x169,_0x1f2884._0x42c62f,_0x1f2884._0x1eee41,_0x1f2884._0x58e64b)],_0x16c953[_0x594c38(0x134,_0x1f2884._0x18bc2f,_0x1f2884._0x2fbb38,_0x1f2884._0x27aab3)](0x131*-0x1d+0x2487+-0x6a)[_0x594c38(_0x1f2884._0x24f88c,_0x1f2884._0x93c72f,0x1a0,0x13c)](_0x224b3c);}else{const _0xedf540={};return _0xedf540[_0x594c38(_0x1f2884._0x59461f,_0x1f2884._0x376618,_0x1f2884._0x59a688,_0x1f2884._0x35374e)]='Failed\x20to\x20'+_0x594c38(0x161,0x120,_0x1f2884._0x30d919,_0x1f2884._0x10341f)+'\x20issue',_0xedf540[_0x483d0a(0x407,0x453,0x3fa,_0x1f2884._0x20202e)]=_0x1bd644[_0x594c38(_0x1f2884._0x4fbf8b,_0x1f2884._0x2b97b7,0xeb,_0x1f2884._0x123c44)],_0x550369[_0x594c38(0x134,0x176,_0x1f2884._0x2b8eb1,0xd5)](0x261b+0x3*-0xc9d+-0x90*-0x3)[_0x594c38(0x13b,_0x1f2884._0x590029,_0x1f2884._0x368cbb,0x198)](_0xedf540);}}if(!_0x3c65ca||_0x55032b['BneQg'](typeof _0x3c65ca,_0x483d0a(_0x1f2884._0x41337f,0x455,_0x1f2884._0x5c89d5,_0x1f2884._0x3831f1))||_0x55032b['ctPjt'](_0x3c65ca[_0x594c38(0x170,_0x1f2884._0x2dae38,0x123,0xfc)]()[_0x594c38(_0x1f2884._0x3edae6,_0x1f2884._0x3457e3,_0x1f2884._0x400167,0xb3)],-0xb5f+0x5d*-0x33+-0xb2*-0x2b)){if(_0x55032b[_0x483d0a(_0x1f2884._0x1f0c90,_0x1f2884._0x53467b,0x439,_0x1f2884._0x442d39)]!==_0x55032b[_0x594c38(0x152,_0x1f2884._0x5e45fb,_0x1f2884._0x522054,_0x1f2884._0x41d0f5)])try{_0x3b3a98=new _0x5f4d1d(_0x445229),_0x32cc26[_0x483d0a(0x320,0x335,_0x1f2884._0x22ee13,_0x1f2884._0x4afd28)](_0x55032b[_0x483d0a(0x3d0,_0x1f2884._0x561ab5,_0x1f2884._0x3934e4,0x3f4)]);return;}catch(_0x55c45a){_0x326731[_0x483d0a(_0x1f2884._0x2ad777,_0x1f2884._0x301024,_0x1f2884._0x10ff45,0x3ab)](_0x55032b['iaBRH'],_0x55c45a);}else{const _0x58c121={};return _0x58c121['error']=_0x55032b[_0x594c38(_0x1f2884._0x26efc7,0xf8,0x9b,0x31)],_0x58c121[_0x483d0a(0x41d,_0x1f2884._0x195d45,_0x1f2884._0x2568e8,_0x1f2884._0x2939ab)]=_0x55032b[_0x594c38(_0x1f2884._0x421862,0x37,_0x1f2884._0x3200f2,0xba)],_0x16c953['status'](0x1*0x142d+0x685*-0x3+0xf2)[_0x483d0a(_0x1f2884._0x262849,0x3b5,0x422,_0x1f2884._0x564da6)](_0x58c121);}}logger['debug'](_0x483d0a(0x4b7,_0x1f2884._0x57b183,0x454,_0x1f2884._0x3775d8)+_0x594c38(0xd9,_0x1f2884._0x53d3f1,0xa2,_0x1f2884._0x24f441)+_0x483d0a(0x33f,_0x1f2884._0x31a9dc,_0x1f2884._0x6f1a14,0x397)+'\x20'+_0x19a44b);const _0x32f623=await jiraClient[_0x594c38(0x128,0x17e,0xb7,_0x1f2884._0x1be84f)+'t'](_0x19a44b,_0x3c65ca['trim']()),_0x394fa4={};_0x394fa4[_0x594c38(_0x1f2884._0x56550e,_0x1f2884._0x492d49,0x4f,0x5e)]=!![],_0x394fa4['comment']=_0x32f623,_0x16c953[_0x594c38(_0x1f2884._0x596a5b,_0x1f2884._0x1380a0,_0x1f2884._0x2b32ba,0x187)](_0x394fa4);}catch(_0x3b76f4){if(_0x55032b[_0x594c38(0x9a,0x63,_0x1f2884._0x244a42,_0x1f2884._0x43e8ca)]!==_0x55032b['bLpCp']){logger[_0x483d0a(_0x1f2884._0x4ff932,0x3dd,0x38f,_0x1f2884._0xb1c81b)](_0x483d0a(0x41b,0x375,_0x1f2884._0xcca36c,0x3ad)+_0x483d0a(_0x1f2884._0x1b8655,_0x1f2884._0x2b04d9,0x38a,_0x1f2884._0x57fc5e)+_0x483d0a(0x3a3,0x3ca,0x3c7,_0x1f2884._0x3ee329),_0x3b76f4);if(_0x3b76f4[_0x594c38(0x113,0xed,_0x1f2884._0x4af57d,_0x1f2884._0x4579c9)][_0x594c38(_0x1f2884._0x35374e,0x82,_0x1f2884._0x335df9,_0x1f2884._0x2e63da)](_0x55032b['ZRFej'])){if(_0x55032b['BneQg'](_0x55032b['nOilp'],_0x55032b['nOilp'])){const _0x297d18={};_0x297d18['email']=_0x482820[_0x594c38(_0x1f2884._0x7e7168,_0x1f2884._0x58eee8,0x1ef,0x1d7)][_0x483d0a(_0x1f2884._0x5cc720,_0x1f2884._0xd74984,_0x1f2884._0x3b74e0,0x488)],_0x297d18['apiToken']=_0x5a3b23['env'][_0x483d0a(0x365,_0x1f2884._0x3c30f2,0x38c,_0x1f2884._0x47c6ef)+_0x594c38(_0x1f2884._0x3d7a8c,0x24,_0x1f2884._0x44cdfd,_0x1f2884._0x455f9f)];const _0x2977ab={};_0x2977ab[_0x483d0a(_0x1f2884._0x207f44,_0x1f2884._0x10e821,_0x1f2884._0x262849,0x38e)]=_0x2407c6[_0x594c38(0x176,0x107,_0x1f2884._0x282b5d,_0x1f2884._0x32c86d)][_0x594c38(0x13a,_0x1f2884._0x361eed,_0x1f2884._0x14bfc1,0xdc)+_0x483d0a(0x3da,_0x1f2884._0x31a9dc,0x393,0x3bf)],_0x2977ab[_0x483d0a(_0x1f2884._0xfc0427,0x46b,_0x1f2884._0x31bf58,_0x1f2884._0x36d75f)]=_0x297d18,_0x278e62=new _0x1772f1(_0x2977ab),_0x3e579c['info']('JIRA\x20integ'+'ration\x20ena'+_0x594c38(0xf4,_0x1f2884._0x3a541a,_0x1f2884._0x1380a0,0x123)+_0x483d0a(0x347,0x332,_0x1f2884._0x1242b5,_0x1f2884._0x2fbb79)+_0x483d0a(0x4a9,0x433,_0x1f2884._0x149658,0x471)+'s');}else{const _0x13db9c={};return _0x13db9c['error']=_0x55032b[_0x483d0a(0x3a5,0x3d5,_0x1f2884._0x174329,0x3db)],_0x13db9c[_0x483d0a(_0x1f2884._0x270968,0x44a,0x3fa,0x408)]=_0x3b76f4['message'],_0x16c953['status'](-0x15*-0x59+-0x18e7+0x1eb*0xa)[_0x483d0a(0x3cb,_0x1f2884._0x3b74e0,_0x1f2884._0x46378e,_0x1f2884._0x4f3e2f)](_0x13db9c);}}else{if(_0x3b76f4['message']['includes']('authentica'+_0x483d0a(_0x1f2884._0x1029a5,_0x1f2884._0x16f162,0x432,0x41c)+'d')){const _0x6857fe={};return _0x6857fe[_0x594c38(_0x1f2884._0x5a189f,_0x1f2884._0x5b4fa6,_0x1f2884._0x1f2e19,0xb2)]=_0x55032b[_0x594c38(_0x1f2884._0xa8e120,_0x1f2884._0x663f97,_0x1f2884._0x3e1540,_0x1f2884._0x3abb7e)],_0x6857fe[_0x594c38(_0x1f2884._0x4fbf8b,_0x1f2884._0x592683,_0x1f2884._0x3d5bd8,_0x1f2884._0x46eefb)]=_0x3b76f4['message'],_0x16c953[_0x594c38(0x134,0xbd,0xd1,_0x1f2884._0x104628)](-0x1252+-0x38+-0x1*-0x141b)[_0x594c38(_0x1f2884._0x15bd62,0x143,0x1a0,_0x1f2884._0x229b88)](_0x6857fe);}else{if(_0x3b76f4['message'][_0x483d0a(_0x1f2884._0x982340,0x3c2,0x3d7,_0x1f2884._0x147eac)](_0x55032b[_0x594c38(0x12a,_0x1f2884._0x3aaafd,0xf0,0xc7)])){if(_0x55032b['BneQg'](_0x55032b[_0x483d0a(0x3ed,0x3b4,0x390,0x3d7)],_0x55032b[_0x594c38(0xa9,0x9e,_0x1f2884._0xfb9738,_0x1f2884._0x3c33d4)]))_0x194a09[_0x483d0a(0x3a5,_0x1f2884._0x37e0de,0x38f,0x3fa)](_0x55032b[_0x483d0a(_0x1f2884._0x421d41,0x3ea,0x3da,_0x1f2884._0x232ae8)],_0x3d7d5d);else{const _0x20abc0={};return _0x20abc0['error']=_0x55032b[_0x483d0a(0x3bb,0x3ad,_0x1f2884._0x29f44f,0x377)],_0x20abc0[_0x594c38(0x113,0x12b,_0x1f2884._0x1b5b46,_0x1f2884._0x1fea73)]=_0x3b76f4[_0x483d0a(0x426,_0x1f2884._0x97c0f7,0x3fa,0x3cc)],_0x16c953[_0x483d0a(_0x1f2884._0x287b47,0x466,0x41b,0x438)](0x1b3d+0x1b47+-0x34f1)[_0x594c38(0x13b,_0x1f2884._0x590029,0x11b,_0x1f2884._0x26e4ec)](_0x20abc0);}}else{const _0x223083={};return _0x223083[_0x594c38(0xa8,0xbb,_0x1f2884._0x36fade,0xe8)]=_0x55032b['Pxlew'],_0x223083[_0x594c38(0x113,0x179,0x145,0x13e)]=_0x3b76f4[_0x594c38(_0x1f2884._0x4fbf8b,_0x1f2884._0x3d7f98,0x12c,_0x1f2884._0x170d33)],_0x16c953['status'](0x2340+0x1404+0x3550*-0x1)[_0x483d0a(0x44a,_0x1f2884._0x3b7582,0x422,0x467)](_0x223083);}}}}else{_0x2359ba=new _0x3f5c9a(_0x58b558),_0x2ac36d['info'](_0x55032b['PKcUX']);return;}}});function _0x5554(){const _0x1af9d3=['iePjuKeGy2XPzq','wvLbr1K','ugXLyxnLihbYBW','zMfpu0K','BMPsqLy','qxbvyuq','zw5HyMXLza','u2vHCMnOihf1zq','BwvZC2fNzq','y2n4Efm','rMv0y2HPBMCGsG','DhvWoG','u2vHCMnOAw5Nia','tNbnseK','z2v0sxnZDwu','vfrWtxq','Ewz1ANq','rvb0uKK','odqYu0v5Cxvw','sw52ywXPzcbZzq','sNjKDwm','EwX6B2u','Dg54rge','CMLHyMXLCW','y29TBwvUDhm','ndC4nJuYnvLNvwnMDG','igLZC3vL','CLrnA3i','ChL4EhO','Cg9ZDenVBw1LBG','BLP1uMC','rMX1uw8','ugfjD0y','sw52ywXPzcbPCW','zwPOs3G','qM5LuwC','BLfXDfK','zgPJCNu','z2v0q29TBwvUDa','zfzruvq','igf0igXLyxn0ia','C3rHDhvZ','yKXWq3a','De5dvgy','iIaOBwf4oIa','Aw5PDgLHBgL6zq','sxnZDwuGBM90ia','sKLsqv9cqvnfxW','ANnVBG','y2nJCfC','qwDVs2K','z05MAKW','A3j1tvq','zxKVy29TBwvUDa','A2DHv0q','qu5nz2G','tM8GCgvYBwLZCW','sKLsqv9ftufjta','mtaXotaXndbJCvvPC2W','y29UzMLNDxjHDa','A2LtC3i','uMvSB2fKAw5Nia','svjbigLZC3vLoG','sKLsqv9ftKfcta','DgLVBIbMywLSzq','yxbPvg9Rzw4','wvjNC0K','qwDODxa','BwLbBhm','l2LZC3vLCY86AW','BK9gA2u','vKnjvhy','y3rqANq','CMf0Aw9UigvUyq','vMvgDwW','qxD3BLq','BxvZDcbIzsbPBG','wM5sD0W','qxv0AgvUDgLJyq','Aw4GDgHLihjLCq','CMnOihf1zxj5ia','zhH4t3C','y29KzxiTC2v0Dq','uKjjv04','CMf0Aw9Uig5VDa','yNLiBNy','zMv0y2GGsKLsqq','mJG5mdy4q2XYExPl','uwPlr2u','yxv0Aa','zsbYzxf1zxn0ia','yxjJAcbXDwvYEq','Dcb2yxjPywjSzq','mIbJAgfYywn0zq','rwnJufi','uhHSzxC','Dhj1zq','ueT5wKK','ug9ZDgLUzYbJBW','ifbSzwfZzsbJBW','t3zZvKu','DhjPBq','zKfYvuu','CIbkAxjHigLZCW','zw50CW','wePjugO','sKLsqsbJBgLLBG','zw52','DgvZDa','v2viD0C','zgvIDwC','t1P6C0y','A2v5','zw1HAwW','wxzqy1G','txDSvKW','DIb2yxjZoG','CMf0Aw9UigLZia','zw52AxjVBM1LBG','C3vJy2vZCW','mtK5ndK1nZHvChbOAvC','rvj4rxu','sxnZDwuGA2v5ia','Aw5MBW','Dg9vChbLCKnHCW','C29vuwe','t0TftG','Eg5ptgO','wwXouKy','AxjHigLZC3vLoG','sKLsqsbPBNrLzW','tKzHzxG','wgLeAMq','mJrRAxfHtNC','AxmGC2vYDMvYlG','qsbJBgLLBNqGzG','yNHLzvu','Cg9ZDa','CM1HDa','igvUywjSzwq','C2v0DxbqyxrO','Cg9ZDcbkAxjHia','yxv0AgvUDgLJyq','sKLsqv9bueLFva','BgvUz3rO','D2LhDem','zxjYB3i','z09Lyuu','CNKGBxvZDcbIzq','mtqXm2rPBgv6CW','vvjm','rerYCg4','BNqGzNjVBsbLBG','BK9PBha','wLjgzwO','BfrdugK','DMLKzsbHihnLyq','DxfJs2y','BNjcyKe','igzVCM1HDcbquG','yM9KEq','CI1Zzxr1Ca','BwvUDcbPBIb0Aa','mte5mhvNBhHvuG','uxvLCNKGDg9Via','y2LkD2O','sKLsqsbKAxnHyG','rMfPBgvKihrVia','BuHiy1a','nKvfv0jQwq','BNrHy3qGEw91CG','igfKBwLUAxn0CG','Aw9U','qwLmC3e','CeHlsuG','DMfOEvG','sLzwA28','qsbPC3n1zxm6','B293yLy','z1vbqw8','mtC5mZe2mKv1BK9vyW','whrswuG','sxfkDhm','C3vLigTLEsbMBW','te1Xueu','DcbJB25MAwD1CG','DwjwBKC','yxjJAa','vufIvhC','C2vHCMnOsxnZDq','C2jRu0K','Cg9ZDcbJB21Tzq','revAvgO','CgfYyw1Z','CMvSB2fKiePjuG','Bw1LBNqGDg8GsG','CM9UBwvUDcb2yq','qsbPC3n1zxm','twLZC2LUzYbJBW','rLb4t1i','zMv0y2GGy29TBq','qwXiAvm','y29TBwvUDdO','y09qzwu','ueTJvvG','DxjLzcbVBIb0Aa','z2v0','CM9TigvUDIb2yq','qK9pwwO','yLfSD1O','B3LWBeO','DcbYzwXVywrLza','zM91BMq','Dxbwy2m','B0f2zfi','BNqGzNjVBsbZzq','t3vTDKq','BM90ignVBMzPzW','Aw5JBhvKzxm','BM90igzVDw5K','seHAthC','AwfcuKG','yMXLzcbMCM9Tia','Dwznvxa','vevvEKO','igrLBMLLza','C2feENa','A2jwrKm','sef0ueG','rMv0y2HPBMCGyW','t0Pfq1qTmtiZ','z2jhtMC','yMfZzvvYBa','igzYB20Gy29Kzq','Aw9UihjLBg9Hza','u2H5ywO','CNm6','C3rYAw5N','sKLsqtOGiG','ugvYBwLZC2LVBG','CM9TihnLDhvWoG','l3nLyxjJAa','AKHuB2i','twLZC2LUzYbZzq','odGYng9jue5wAG'];_0x5554=function(){return _0x1af9d3;};return _0x5554();}export default router;
|
|
1
|
+
(function(_0x874b19,_0x3034f8){const _0x2764d6={_0x46f602:0x1a3,_0x1c38d0:0x115,_0x4b5492:0xc8,_0x378a08:0x7c,_0xaef6c0:0xf2,_0x1df807:0x1ec,_0x3b6c5d:0x186,_0x8b6e0f:0x16e,_0x17afae:0x1ef,_0x236f63:0x225,_0x4a35c3:0x11c,_0x50d44c:0xd0,_0x397287:0xef,_0x12ab35:0xab,_0x898833:0x75,_0x343f9e:0x92,_0x4a3725:0xe8,_0x493d8a:0x19c,_0x47a407:0x18e,_0xb3016c:0x183};function _0x262da6(_0x282091,_0x58dd62,_0x5bc661,_0xa44c0b){return _0x4c21(_0xa44c0b- -0x3f,_0x282091);}const _0xf880cd=_0x874b19();function _0x34b83c(_0xd42887,_0x33a6e2,_0x40882e,_0x5e8eee){return _0x4c21(_0xd42887- -0x331,_0x33a6e2);}while(!![]){try{const _0x5cad24=parseInt(_0x34b83c(-_0x2764d6._0x46f602,-0x1d5,-0x1a4,-0x1de))/(0x206b+-0x3*0x35a+-0x13e*0x12)*(parseInt(_0x262da6(0x10b,_0x2764d6._0x1c38d0,_0x2764d6._0x4b5492,0xec))/(0x1b64+-0x1*0xfee+-0xb74*0x1))+-parseInt(_0x262da6(0x163,0xe2,_0x2764d6._0x378a08,_0x2764d6._0xaef6c0))/(0xd56+0x17b+-0xece)*(-parseInt(_0x34b83c(-0x19a,-_0x2764d6._0x1df807,-_0x2764d6._0x3b6c5d,-_0x2764d6._0x8b6e0f))/(-0x1*-0x2d1+0xcc7*-0x1+-0x2*-0x4fd))+-parseInt(_0x34b83c(-0x24b,-_0x2764d6._0x17afae,-_0x2764d6._0x236f63,-0x1f7))/(-0x254c+0x643*-0x5+-0x48*-0xf4)+-parseInt(_0x262da6(_0x2764d6._0x4a35c3,0x6f,0x5d,_0x2764d6._0x50d44c))/(-0xa*0x32a+0x19d1+0x5d9)+parseInt(_0x262da6(_0x2764d6._0x397287,0x117,0x83,0xb0))/(-0x30e+0x263*-0x2+0x1*0x7db)*(parseInt(_0x262da6(0x3c,0xc3,0x10f,_0x2764d6._0x12ab35))/(-0xa*0x28d+-0x49b+0x1e25))+parseInt(_0x262da6(0x158,_0x2764d6._0x898833,_0x2764d6._0x343f9e,_0x2764d6._0x4a3725))/(-0x21ad+0x2*0x68d+-0x1*-0x149c)*(-parseInt(_0x262da6(0xda,0x8d,0x5f,0xa0))/(-0xb5e*-0x1+-0x1*-0xf7+-0x419*0x3))+parseInt(_0x34b83c(-0x185,-_0x2764d6._0x493d8a,-_0x2764d6._0x47a407,-0x1d2))/(0x37c+-0x139f+0x102e)*(parseInt(_0x262da6(0x102,_0x2764d6._0xb3016c,0x157,0x122))/(0x1*0x2bd+0x1867+-0x1b18));if(_0x5cad24===_0x3034f8)break;else _0xf880cd['push'](_0xf880cd['shift']());}catch(_0x3c2850){_0xf880cd['push'](_0xf880cd['shift']());}}}(_0x1077,0x59e4+0x7372c+0x3*-0x123bf));import _0x100b8f from'express';function _0x4c21(_0x21965d,_0x133130){_0x21965d=_0x21965d-(-0x24df+-0x25f9*0x1+-0x371*-0x16);const _0x35800b=_0x1077();let _0x6eee75=_0x35800b[_0x21965d];if(_0x4c21['NNwhhn']===undefined){var _0x547596=function(_0x425b77){const _0x205b3b='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x3d2aa8='',_0x3e70d0='';for(let _0x3a2e4f=-0xde1+-0x14c0+-0xf*-0x24f,_0x36a110,_0xe86421,_0x55b065=-0x2*0x1131+-0x1bd*0x2+0x25dc;_0xe86421=_0x425b77['charAt'](_0x55b065++);~_0xe86421&&(_0x36a110=_0x3a2e4f%(-0x5a9+0x44*0x4c+0x5*-0x2e7)?_0x36a110*(-0x2*0xec8+0x1e43*-0x1+0x3c13)+_0xe86421:_0xe86421,_0x3a2e4f++%(0x1e41+0x30*-0x2b+0x1*-0x162d))?_0x3d2aa8+=String['fromCharCode'](0xbb2+-0x4*-0x98+-0xd13*0x1&_0x36a110>>(-(0x198d+-0xaa9+-0xee2)*_0x3a2e4f&-0x1789+-0x9a7+-0x1*-0x2136)):-0x3*0xbcf+0x2*0xabd+-0x1*-0xdf3){_0xe86421=_0x205b3b['indexOf'](_0xe86421);}for(let _0x2d5a5b=-0x112+0x21a0*-0x1+0x22b2,_0x376f27=_0x3d2aa8['length'];_0x2d5a5b<_0x376f27;_0x2d5a5b++){_0x3e70d0+='%'+('00'+_0x3d2aa8['charCodeAt'](_0x2d5a5b)['toString'](0x1537+-0x2ee*-0xa+-0x3273))['slice'](-(-0x941*-0x1+-0xa*0x1a2+0x715));}return decodeURIComponent(_0x3e70d0);};_0x4c21['skZJqO']=_0x547596,_0x4c21['UECrBY']={},_0x4c21['NNwhhn']=!![];}const _0x346c98=_0x35800b[-0xcd0+-0x2e8+0xfb8],_0x1753d0=_0x21965d+_0x346c98,_0x108fdd=_0x4c21['UECrBY'][_0x1753d0];return!_0x108fdd?(_0x6eee75=_0x4c21['skZJqO'](_0x6eee75),_0x4c21['UECrBY'][_0x1753d0]=_0x6eee75):_0x6eee75=_0x108fdd,_0x6eee75;}function _0x4e9537(_0x3e329d,_0x1ab208,_0x28e64f,_0x596f2c){const _0x2c2db1={_0x31a72a:0x86};return _0x4c21(_0x28e64f- -_0x2c2db1._0x31a72a,_0x596f2c);}import{JiraClient}from'../lib/jira-client.js';function _0x384950(_0x20899e,_0x43b720,_0x18f56a,_0x24fd6c){return _0x4c21(_0x43b720-0x202,_0x20899e);}import{loadJiraConfig}from'../config.js';import{logger}from'../lib/logger.js';import{coderConfig}from'../start.js';const router=_0x100b8f[_0x384950(0x2c5,0x30e,0x2bc,0x2d1)]();let jiraClient=null;async function initializeJiraClient(){const _0x8fce3={_0x5760d2:0x302,_0x535f7c:0x30b,_0x2507a1:0x312,_0x582463:0x38b,_0x1aba3c:0x318,_0x1bbdfd:0x300,_0x36eb07:0x325,_0x500128:0x304,_0x77f9ef:0x2c8,_0x3639fe:0x35e,_0x21a9c9:0x330,_0x1e0296:0x34a,_0x4c2813:0x31b,_0x150c25:0x32a,_0x3f361c:0x383,_0x289330:0x36f,_0x4b5ca2:0x37a,_0x16a79f:0x396,_0xad3583:0x2ee,_0x486d04:0x365,_0x725298:0x30d,_0x3c603b:0x371,_0x4a3c01:0x327,_0x289b58:0x310,_0x59be4f:0x304,_0x2249b9:0x316,_0x153c48:0x2f9,_0x1c4860:0x39d,_0x5c5dd7:0x37b,_0xa527f0:0x3bc,_0x32f8bd:0x322,_0xb17a71:0x364,_0x4f35b6:0x346,_0x42d0c6:0x363,_0x103fca:0x3cd,_0x108441:0x362,_0x2d760a:0x35d,_0x11dfdb:0x33f,_0x1901ab:0x397,_0x53f89a:0x35b,_0x1292e3:0x335,_0x564bc5:0x377,_0xf18de2:0x30d,_0x41eb9d:0x3c1,_0x35c5dc:0x3b4,_0x4191dd:0x36d,_0x684224:0x30f,_0x39695f:0x35f,_0x44f96c:0x2b0,_0x59a71e:0x2f4,_0x5dbfe7:0x38b,_0x153c0b:0x273,_0x3a9e36:0x273,_0x3063b7:0x354,_0x476c8c:0x37d,_0x10bb8d:0x32a,_0x4d74ab:0x387,_0x41275e:0x3d9,_0x17c3ab:0x340,_0x223d5e:0x3d5,_0x261099:0x399,_0x489045:0x27f,_0x2a25d2:0x2d1,_0x5cd1ef:0x3d7,_0x2a9cfa:0x35c,_0x1e9253:0x2d9,_0x465ed5:0x399,_0x278dd1:0x30a,_0x3ab7d6:0x2fe,_0x24c10c:0x30d,_0xa542be:0x335,_0x17527b:0x34c,_0x50d5cc:0x303,_0x1a489e:0x3ca,_0x57e05f:0x36d,_0x3fc994:0x357,_0x5e7935:0x2cb,_0x1dbcf9:0x2d0,_0xd23250:0x381,_0x28c7fa:0x344,_0x38596e:0x2cc,_0x4da46e:0x31a,_0x426bc4:0x2e7,_0x50d226:0x334,_0x277202:0x378,_0x16c40e:0x2b5,_0x5bc711:0x30d,_0x27e8aa:0x3ab,_0x5d8ff0:0x34b,_0x581e10:0x2e8},_0xa4f5ed={_0x5c08a7:0x24,_0x4c28de:0x6a},_0x146fc6={_0x30c530:0x19};function _0x3b8464(_0x5bd54c,_0x2213ab,_0x5044e7,_0x43c526){return _0x384950(_0x5bd54c,_0x43c526- -_0x146fc6._0x30c530,_0x5044e7-0x16c,_0x43c526-0xb7);}const _0x435c95={};function _0x45afc1(_0x43e4c4,_0x1c3865,_0xd9a358,_0x347dbd){return _0x384950(_0xd9a358,_0x1c3865- -_0xa4f5ed._0x5c08a7,_0xd9a358-0x131,_0x347dbd-_0xa4f5ed._0x4c28de);}_0x435c95['XtEZa']=_0x3b8464(_0x8fce3._0x5760d2,0x2b8,_0x8fce3._0x535f7c,0x30b)+_0x45afc1(_0x8fce3._0x2507a1,0x2fd,0x2c2,0x2c2)+_0x45afc1(0x335,0x37a,_0x8fce3._0x582463,0x3d5)+_0x3b8464(_0x8fce3._0x1aba3c,0x2e8,0x354,_0x8fce3._0x1bbdfd)+'tup:',_0x435c95['nTABo']=function(_0x19bbc1,_0x1892fe){return _0x19bbc1===_0x1892fe;},_0x435c95['wJTyL']=_0x45afc1(_0x8fce3._0x36eb07,0x2f2,_0x8fce3._0x500128,_0x8fce3._0x77f9ef),_0x435c95[_0x3b8464(0x39c,_0x8fce3._0x3639fe,_0x8fce3._0x500128,0x338)]=_0x45afc1(_0x8fce3._0x21a9c9,0x3a1,0x386,0x3a8),_0x435c95[_0x3b8464(_0x8fce3._0x1e0296,_0x8fce3._0x4c2813,_0x8fce3._0x150c25,0x382)]='JIRA\x20integ'+'ration\x20ena'+_0x3b8464(0x3e2,_0x8fce3._0x3f361c,0x32c,_0x8fce3._0x289330)+_0x45afc1(0x36b,0x38e,_0x8fce3._0x4b5ca2,0x3f0)+'p',_0x435c95[_0x3b8464(0x3fe,0x346,0x321,_0x8fce3._0x16a79f)]='true',_0x435c95[_0x3b8464(0x33b,0x3de,_0x8fce3._0xad3583,0x367)]=_0x3b8464(_0x8fce3._0x486d04,_0x8fce3._0x725298,_0x8fce3._0x3c603b,0x355)+_0x3b8464(0x312,0x352,_0x8fce3._0x4a3c01,0x373)+_0x3b8464(0x38b,_0x8fce3._0x289b58,_0x8fce3._0x59be4f,0x36f)+_0x45afc1(0x33a,_0x8fce3._0x2249b9,0x318,_0x8fce3._0x153c48)+_0x45afc1(_0x8fce3._0x1c4860,_0x8fce3._0x5c5dd7,_0x8fce3._0xa527f0,0x348)+'s',_0x435c95[_0x45afc1(0x2fe,0x358,_0x8fce3._0x32f8bd,0x3a8)]=_0x3b8464(_0x8fce3._0x1c4860,0x33e,0x32f,_0x8fce3._0xb17a71),_0x435c95[_0x45afc1(0x393,_0x8fce3._0x4f35b6,0x360,_0x8fce3._0x42d0c6)]=_0x45afc1(_0x8fce3._0x103fca,_0x8fce3._0x108441,0x343,0x39c);const _0x4d7bea=_0x435c95;if(coderConfig?.['setupPath']){if(_0x4d7bea[_0x3b8464(0x291,0x273,_0x8fce3._0x2d760a,0x2eb)](_0x4d7bea[_0x3b8464(_0x8fce3._0x11dfdb,0x3d1,_0x8fce3._0x1901ab,0x3a6)],_0x4d7bea[_0x45afc1(0x2c6,0x32d,0x37c,0x372)]))_0x443bbf['error'](_0x4d7bea['XtEZa'],_0x47ba3b);else{const _0x26c6d7=await loadJiraConfig(coderConfig[_0x3b8464(0x349,0x2a0,_0x8fce3._0x53f89a,0x318)]);if(_0x26c6d7)try{jiraClient=new JiraClient(_0x26c6d7),logger[_0x3b8464(0x33e,0x323,0x3a2,_0x8fce3._0x1292e3)](_0x4d7bea[_0x45afc1(0x333,_0x8fce3._0x564bc5,_0x8fce3._0xf18de2,_0x8fce3._0x41eb9d)]);return;}catch(_0xfbb237){logger[_0x45afc1(_0x8fce3._0x35c5dc,_0x8fce3._0x4191dd,0x31e,0x34c)](_0x45afc1(0x2c6,_0x8fce3._0x1bbdfd,_0x8fce3._0x684224,0x305)+_0x45afc1(_0x8fce3._0x39695f,0x2fd,_0x8fce3._0x44f96c,_0x8fce3._0x59a71e)+'\x20JIRA\x20clie'+'nt\x20from\x20se'+_0x3b8464(0x3a7,0x3fa,0x34a,_0x8fce3._0x5dbfe7),_0xfbb237);}}}if(_0x4d7bea[_0x3b8464(0x2ab,_0x8fce3._0x153c0b,_0x8fce3._0x3a9e36,0x2eb)](process[_0x3b8464(_0x8fce3._0x3063b7,_0x8fce3._0x476c8c,0x32b,0x371)][_0x3b8464(0x3f7,0x31d,_0x8fce3._0x10bb8d,_0x8fce3._0x4d74ab)+'ED'],_0x4d7bea[_0x3b8464(0x3df,0x410,_0x8fce3._0x41275e,_0x8fce3._0x16a79f)]))try{const _0x47d973={};_0x47d973[_0x3b8464(0x322,0x39e,0x365,_0x8fce3._0x17c3ab)]=process[_0x45afc1(0x387,0x366,0x374,0x35c)]['JIRA_BASE_'+_0x45afc1(_0x8fce3._0x223d5e,_0x8fce3._0x261099,0x40c,0x371)],_0x47d973[_0x3b8464(_0x8fce3._0x1e9253,0x2eb,_0x8fce3._0x489045,_0x8fce3._0x2a25d2)]={},_0x47d973[_0x3b8464(_0x8fce3._0x1e9253,0x2eb,_0x8fce3._0x489045,_0x8fce3._0x2a25d2)]['email']=process[_0x45afc1(0x3ac,0x366,0x3b0,_0x8fce3._0x5cd1ef)][_0x45afc1(0x309,0x306,_0x8fce3._0x2a9cfa,0x2c5)],_0x47d973[_0x3b8464(_0x8fce3._0x1e9253,0x2eb,_0x8fce3._0x489045,_0x8fce3._0x2a25d2)][_0x45afc1(_0x8fce3._0x465ed5,0x3ab,0x341,0x3e2)]=process['env'][_0x3b8464(0x28d,0x36d,_0x8fce3._0x278dd1,_0x8fce3._0x3ab7d6)+'OKEN'],jiraClient=new JiraClient(_0x47d973),logger[_0x3b8464(0x340,_0x8fce3._0x24c10c,0x2e4,_0x8fce3._0xa542be)](_0x4d7bea[_0x45afc1(_0x8fce3._0x17527b,0x35c,_0x8fce3._0x50d5cc,0x3c0)]);}catch(_0x2fc581){if(_0x4d7bea['nTABo'](_0x4d7bea['aQWTn'],_0x4d7bea[_0x3b8464(0x3a1,0x320,0x3b8,0x351)])){const _0x2e2e88={};return _0x2e2e88[_0x45afc1(_0x8fce3._0x1a489e,_0x8fce3._0x57e05f,_0x8fce3._0x3fc994,0x393)]=_0x3b8464(_0x8fce3._0x5e7935,0x363,0x2c4,0x2ea)+'\x20denied',_0x2e2e88[_0x45afc1(_0x8fce3._0x1dbcf9,0x344,0x2ee,0x2d1)]=_0x4bb1ca[_0x45afc1(_0x8fce3._0xd23250,_0x8fce3._0x28c7fa,0x2f4,_0x8fce3._0x38596e)],_0x2479bf[_0x3b8464(_0x8fce3._0x4da46e,0x374,_0x8fce3._0x426bc4,_0x8fce3._0x50d226)](-0x213c+0x1c71+0x65e)['json'](_0x2e2e88);}else logger[_0x3b8464(0x3e3,_0x8fce3._0x2a9cfa,0x341,_0x8fce3._0x277202)](_0x3b8464(0x36d,_0x8fce3._0x16c40e,0x32a,_0x8fce3._0x535f7c)+_0x45afc1(0x2d7,0x2fd,_0x8fce3._0x5bc711,0x2d0)+'\x20JIRA\x20clie'+'nt\x20from\x20en'+_0x45afc1(_0x8fce3._0x27e8aa,_0x8fce3._0x5d8ff0,_0x8fce3._0x581e10,_0x8fce3._0x278dd1),_0x2fc581);}}export async function initializeJira(){const _0x350fde={_0x510188:0x5e,_0x4e9e88:0x1e,_0x37f277:0x4f,_0x38b884:0x4a};function _0x126033(_0x1b465a,_0x28aca5,_0x11c7de,_0x532280){return _0x384950(_0x532280,_0x28aca5- -0x2ff,_0x11c7de-0xda,_0x532280-0x152);}const _0x32261e={'ejIUw':function(_0x3230a3){return _0x3230a3();}};await _0x32261e[_0x126033(_0x350fde._0x510188,_0x350fde._0x4e9e88,_0x350fde._0x37f277,-_0x350fde._0x38b884)](initializeJiraClient);}export function getJiraClient(){return jiraClient;}function _0x1077(){const _0x4f672f=['iePjuKeGy2XPzq','Dcb2yxjPywjSzq','sKLsqv9ftKfcta','CuTxC3q','wLbVv2K','svjbigLZC3vLoG','DhvWoG','tgjPDha','qsbJBgLLBNqGzG','yvDTAgm','uw9HDhq','z2v0q29TBwvUDa','CM1HDa','rKTdseC','zMv0y2GGy29TBq','Au9Ht3C','nJzSBeDet0i','rw5WCgK','qKrowxy','C2vHCMnOiePjuG','y29KzxiTC2v0Dq','BKnry0G','zxKVy29TBwvUDa','l3nLyxjJAa','vMnkEfO','vvzfvu0','rujjuvq','BM90ignVBMzPzW','l2LZC3vLCY86AW','twLZC2LUzYbJBW','zsbYzxf1zxn0ia','vvjm','Aw9U','D0PuEuW','ww54s2G','qsbPC3n1zxm','CM9UBwvUDcb2yq','uMvSB2fKAw5Nia','v1HKAMm','qM5vBLy','uxvLCNKGDg9Via','AK9Ot2C','DwvZDcbIB2r5','tM8GCgvYBwLZCW','vxbds0q','t0Pfq1qTmtiZ','u2vHCMnOihf1zq','qxHSzuC','sw52ywXPzcbZzq','yxbPvg9Rzw4','qvnzB0m','revgBhG','ug9ZDgLUzYbJBW','BgvKigfMDgvYia','yxjJAa','mJa2ndqWzgH6quzL','Cg9ZDcbJB21Tzq','zg9Lz2O','ChfvDgm','zvPiuwC','BNrHy3qGEw91CG','BfzssM0','mtCWodG4nvrOswTJrG','vKPfq3C','yxv0Aa','wM9HtuO','otaWmtm2sKrSsMDk','zKztBKC','CNKGBxvZDcbIzq','BgnhCMu','sxnZDwuGA2v5ia','mJfItvbgtvC','DgLVBIbMywLSzq','rMv0y2HPBMCGsG','BwvUDcbPBIb0Aa','zgvIDwC','zKvszxm','zw1mAKS','Dg9vChbLCKnHCW','CKL4vem','BKTztvm','zMv0y2GGsMLYyq','Cg9ZDa','zLzezLm','BgvUz3rO','AxmGC2vYDMvYlG','igvUywjSzwq','DMLKzsbHihnLyq','DwvOu0q','ugvYBwLZC2LVBG','BLrbqM8','BeLWBeC','v0LjB3q','uw1Hrwi','qxDlyMW','y29UzMLNDxjHDa','s1rbv3u','Bw1LBNq','t2vPEM8','qLLfAKO','uM91DgvY','AhfsweC','yM9KEq','mZe4nZGXofDMB3fgqW','CMf0Aw9UigLZia','qxv0AgvUDgLJyq','ugXLyxnLihbYBW','DxPzue8','BNHgBum','sKLsqv9bueLFva','AM1nteW','BNqGzNjVBsbZzq','sLP1q3a','CM9pBva','sKLsqsbJBgLLBG','zwPjvxC','Aw4GDgHLihjLCq','z0TMsuO','yNntDhG','Aw5PDgLHBgL6zq','C3vLigTLEsbMBW','BxLzCxe','rMfPBgvKihrVia','DhjPBq','swPKB3O','uLvuBvi','se1rDM0','mtK4D1LvBLfZ','sKLsqv9ftufjta','l2nVBMzPzW','AxjHigLZC3vLoG','nJq2ELDVC0f2','CKTuywS','mIbJAgfYywn0zq','Aw5Tr1q','C2v0DxbqyxrO','tKnTCw8','mZL6y0vfzM4','y29TBwvUDdO','t0TftG','Bw1LBNqGDg8GsG','y29TBwvUDa','yxjJAcbXDwvYEq','Eu5uDgm','zw52AxjVBM1LBG','yKjwt2q','C3rYAw5N','q2njquG','zw5HyMXLza','DcbYzwXVywrLza','s0PNtMW','CMLHyMXLCW','ignVBw1LBNrZoG','CvvVzue','sxnZDwuGBM90ia','Aw5JBhvKzxm','CNm6','DxjLzcbVBIb0Aa','Aerhz1a','DgvZDa','CIbkAxjHigLZCW','sMTOCu4','ANnVBG','C3rHDhvZ','Aw5MBW','yxv0AgvUDgLJyq','igLZC3vLoG','yxjqA3O','ug9WzhC','yxrPB24','sgPnCfu','qsbPC3n1zxm6','C2vHCMnOsxnZDq','A2v5','AwfyBuK','yMfZzvvYBa','ze13rha','iIaOBwf4oIa','Dwu6ia','D3HqtgS','u2vHCMnOAw5Nia','zuPZB0q','zMv0y2GGsKLsqq','sw52ywXPzcbPCW','CMf0Aw9Uig5VDa','mtq3nZmWoffPtuXfDq','z2v0sxnZDwu','rgXQzvu','igrLBMLLza','yxrVCI4','BwvZC2fNzq','zw50CW','zLHxCeG','zgrhwfK','y1ndsLu','igzYB20Gy29Kzq','sKLsqsbPBNrLzW','DIb2yxjZoG','twLZC2LUzYbZzq','BxvZDcbIzsbPBG','Au1vzhC','CM9TihnLDhvWoG','AM5VCxG','sKLsqtOGiG','ifbSzwfZzsbJBW','Aw9UihjLBg9Hza','sMvjB3G','igzVCM1HDcbquG','uwnJy1y','vfz1v0i','yvfxvg4','vK9xAxi','CgfYyw1Z','CMnOihf1zxj5ia','wvDgDNy','zw1HAwW','y29TBwvUDhm','Cg9ZDcbkAxjHia','zM91BMq','qNDNBu8','B3DXBfy','CMvSB2fKiePjuG','yMXLzcbMCM9Tia','uhbxsha','zw52','BLbStwO','CMf0Aw9UigvUyq','igLZC3vL','wgrvDKC','z2v0','mti4mKPWs1DfCq','zxjYB3i','sxfQEw4','BvjoAwy','tfz3v1K','igzYB20Gzw52Aq','Dg90ywW','BM90igzVDw5K','Be10wha','mZm0nZj5CwPtqKi','BgvJB1K','CLbotei','Bu13uKu','sKLsqv9cqvnfxW'];_0x1077=function(){return _0x4f672f;};return _0x1077();}export async function reloadJiraClient(_0x361fc2){const _0x67ea6c={_0x1ff25e:0x73,_0xea04c3:0xca,_0x5a56e1:0x65,_0xc1d098:0xa9,_0x339c48:0x5f,_0x2bbbb9:0x2a,_0x6eee05:0x76,_0x5c56e3:0x57,_0x2ac9ce:0x1,_0x5604af:0x2,_0x396166:0x6c,_0x129651:0x22,_0x245c2a:0x22,_0x27353d:0xdf,_0x2431b6:0x0,_0x30de3d:0x8c,_0x3527b4:0x6f,_0x6e2754:0x83,_0x286a8e:0xc3,_0x539edc:0x1d,_0x2ce15e:0x2e,_0x2b4e34:0x39,_0x4959da:0x9b,_0xb0f048:0x39,_0x31e888:0x36,_0x380711:0xd,_0x3d3f99:0x16,_0x1ef7b8:0x5,_0x3901ac:0x77,_0x180c42:0xf4,_0x3e2d63:0xc5,_0x3bea56:0xae,_0x3da026:0x103,_0x4fa1fd:0xae,_0x913390:0x90,_0x31c82a:0xf0,_0x5d4135:0x17,_0x14eb46:0x6d,_0x5ca1f3:0x4c,_0x34bd35:0xce,_0x11ecd8:0x30,_0x53d93f:0x1c,_0x2623f4:0x28,_0x219ea4:0xb0,_0x962b70:0x18,_0x560e66:0x1f,_0x59d956:0x20,_0x164dd8:0x95,_0x176d51:0xd5,_0x3d9fee:0x6a,_0x4543d5:0xb1,_0x5ab4a5:0x94,_0x1f8467:0x68,_0x2d4242:0x2d,_0x28ecc4:0xb,_0x4dd259:0x42,_0x582935:0x13,_0x4d18ba:0x68,_0x12fddb:0x2f,_0x159580:0x76,_0x38b306:0x47,_0x1cd277:0x5b,_0x312f10:0x61,_0x4efa43:0xb9,_0x5a6104:0x2e,_0x226657:0x10,_0x3b82d2:0x32,_0x5862f6:0x74,_0x196e0a:0xe8,_0x1b51e2:0x22,_0xc4f463:0xc1,_0x2fcb95:0x2f,_0x471a2f:0x40,_0x3ab4c3:0x78,_0x42739a:0x60,_0x2909ad:0x6b,_0x4c87f8:0x125,_0x362f99:0x35,_0xfb20e3:0x77,_0x411069:0xab,_0x186935:0x66,_0x4ffef8:0x99,_0x40cb88:0x61,_0x417b42:0xc2,_0x3bb16e:0x82,_0x1d55f9:0xad,_0x56afdd:0xba,_0x3b2146:0x3d,_0x405208:0x6a,_0x3d3b63:0xb5,_0x4f4f68:0x7,_0x2e5f49:0xa7,_0x473d61:0x34,_0x18121e:0x65,_0xe6f6de:0x4,_0x5b7c41:0x52,_0x1637e1:0x2,_0x298482:0x84,_0x46a360:0x5a,_0x5f50fb:0x9e,_0x4fe1c4:0x27,_0x505da0:0x3b,_0x3955dc:0xfc,_0x111dc6:0xbe,_0x8e112b:0xd3,_0x4b36f8:0x6f,_0x1a2a7a:0xfa,_0x5d6d12:0x4b,_0x153746:0x35,_0x2aad11:0x75,_0x4c7704:0xe0,_0x4a246d:0x156,_0x46bfbd:0xec,_0x19c9be:0x12,_0x2c6322:0xc,_0xbd0660:0x2c,_0x9706cd:0x19,_0x5d5661:0x3,_0x93b35e:0x63,_0x40873c:0xc3,_0x2f6b58:0x8d,_0x57a939:0xbf,_0x8a9ac2:0x93,_0x3f72fc:0xcf},_0x11ee9f={_0x4f161c:0x1b8},_0x4c8423={'AxleG':'JIRA\x20integ'+_0xda4630(_0x67ea6c._0x1ff25e,_0x67ea6c._0xea04c3,_0x67ea6c._0x5a56e1,_0x67ea6c._0xc1d098)+_0x3d5bbf(_0x67ea6c._0x339c48,0xb5,0x76,0x9a)+_0x3d5bbf(0x11,0x7b,_0x67ea6c._0x2bbbb9,-0x35)+_0x3d5bbf(_0x67ea6c._0x6eee05,0x28,0xa2,_0x67ea6c._0x5c56e3)+'s','Ijdoz':'JIRA\x20clien'+_0xda4630(_0x67ea6c._0x2ac9ce,-_0x67ea6c._0x5604af,0x6d,0x5c)+_0x3d5bbf(_0x67ea6c._0x396166,_0x67ea6c._0x129651,0x90,_0x67ea6c._0x245c2a)+_0xda4630(0xeb,0xc2,0x13c,_0x67ea6c._0x27353d)+'riables','VcJxZ':_0x3d5bbf(-0x5,_0x67ea6c._0x2431b6,-0x18,-0x18)+_0x3d5bbf(0x5e,_0x67ea6c._0x30de3d,_0x67ea6c._0x3527b4,_0x67ea6c._0x6e2754)+_0xda4630(0x6c,0xd5,0x11b,_0x67ea6c._0x286a8e)+'rom\x20env\x20va'+_0x3d5bbf(_0x67ea6c._0x539edc,_0x67ea6c._0x2ce15e,-0x2f,_0x67ea6c._0x2b4e34),'KTAWu':function(_0x162e4b,_0x35bbff){return _0x162e4b(_0x35bbff);},'BYEjJ':_0xda4630(0x59,_0x67ea6c._0x4959da,0x5f,_0x67ea6c._0xb0f048)+_0xda4630(0x5,_0x67ea6c._0x31e888,-_0x67ea6c._0x380711,0x5c)+_0x3d5bbf(0x44,_0x67ea6c._0x3d3f99,0x77,0x13)+'r-setup','gZnLj':function(_0x450a9f,_0x75989b){return _0x450a9f===_0x75989b;},'XdUvG':'oCbZf','ddGXY':_0x3d5bbf(-_0x67ea6c._0x1ef7b8,-0xb,-0x1d,0x62)+_0xda4630(_0x67ea6c._0x3901ac,_0x67ea6c._0x180c42,0xba,0xa4)+_0x3d5bbf(0x7d,_0x67ea6c._0x3e2d63,0xc9,_0x67ea6c._0x3bea56)+_0xda4630(_0x67ea6c._0x3da026,0x50,_0x67ea6c._0x4fa1fd,_0x67ea6c._0x913390),'lubMZ':function(_0x47be47,_0x36876f){return _0x47be47===_0x36876f;},'EZhCe':'GsYrt','DljeU':'JIRA\x20disab'+_0xda4630(0x125,0x106,0xd2,_0x67ea6c._0x31c82a)+_0xda4630(0x21,0x4b,-_0x67ea6c._0x5d4135,0x26)+_0x3d5bbf(0x4e,_0x67ea6c._0x14eb46,_0x67ea6c._0x5ca1f3,0xa1)};logger['info'](_0x3d5bbf(0x9a,_0x67ea6c._0x34bd35,0x10c,_0x67ea6c._0x11ecd8)+_0x3d5bbf(-0xd,-_0x67ea6c._0x53d93f,0x31,-_0x67ea6c._0x2623f4)+'t\x20configur'+_0xda4630(0x6a,0x7e,_0x67ea6c._0x219ea4,0x70)),jiraClient=null;if(_0x361fc2?.[_0xda4630(0xbe,0x9d,-_0x67ea6c._0x962b70,0x4e)]){const _0x40b6c8=await _0x4c8423[_0x3d5bbf(-_0x67ea6c._0x560e66,-_0x67ea6c._0x14eb46,-0x77,_0x67ea6c._0x59d956)](loadJiraConfig,_0x361fc2['setupPath']);if(_0x40b6c8)try{jiraClient=new JiraClient(_0x40b6c8),logger['info'](_0x4c8423[_0x3d5bbf(-_0x67ea6c._0x53d93f,-0x18,-0x66,-_0x67ea6c._0x164dd8)]);return;}catch(_0x3809bf){if(_0x4c8423['gZnLj'](_0x4c8423[_0x3d5bbf(_0x67ea6c._0x5a56e1,_0x67ea6c._0x176d51,0xd,_0x67ea6c._0x3d9fee)],_0x4c8423[_0x3d5bbf(0x65,_0x67ea6c._0x4543d5,0x2d,_0x67ea6c._0x5ab4a5)]))logger[_0x3d5bbf(_0x67ea6c._0x1f8467,_0x67ea6c._0x2d4242,0xc9,_0x67ea6c._0x28ecc4)](_0x4c8423[_0x3d5bbf(_0x67ea6c._0x4dd259,-_0x67ea6c._0x582935,_0x67ea6c._0x4d18ba,_0x67ea6c._0x12fddb)],_0x3809bf);else{const _0x4deef4={};_0x4deef4['email']=_0x5cc036[_0xda4630(0x43,_0x67ea6c._0x159580,0x65,0xa7)][_0x3d5bbf(0x1,-_0x67ea6c._0x38b306,_0x67ea6c._0x1cd277,-0x70)],_0x4deef4['apiToken']=_0x1928fc[_0x3d5bbf(_0x67ea6c._0x312f10,0x58,_0x67ea6c._0x4efa43,0x3a)][_0x3d5bbf(-0x12,-0x42,_0x67ea6c._0x38b306,-_0x67ea6c._0x5a6104)+_0xda4630(_0x67ea6c._0x226657,0x74,0xa1,0x52)];const _0x46e7f3={};_0x46e7f3[_0x3d5bbf(0x30,0x2e,-0x29,-_0x67ea6c._0x3b82d2)]=_0x42aa57[_0xda4630(0x106,0xe0,_0x67ea6c._0x176d51,0xa7)][_0x3d5bbf(_0x67ea6c._0x5862f6,_0x67ea6c._0x196e0a,_0x67ea6c._0x1b51e2,-0x6)+_0xda4630(0x85,0xd3,_0x67ea6c._0xc4f463,0xda)],_0x46e7f3[_0xda4630(-_0x67ea6c._0x2fcb95,-0x71,_0x67ea6c._0x471a2f,0x7)]=_0x4deef4,_0x6a5ef4=new _0x14e0c5(_0x46e7f3),_0x499487[_0xda4630(_0x67ea6c._0x3ab4c3,_0x67ea6c._0x42739a,0xa6,_0x67ea6c._0x2909ad)](_0x4c8423[_0xda4630(0xe6,_0x67ea6c._0x4c87f8,0x15b,0xea)]);}}}function _0xda4630(_0x4f0e0f,_0x5df78e,_0x5ad0b2,_0x3bd8d6){return _0x384950(_0x5df78e,_0x3bd8d6- -0x2e3,_0x5ad0b2-0x150,_0x3bd8d6-0x46);}function _0x3d5bbf(_0x291666,_0x426a6a,_0x54ac32,_0x489069){return _0x384950(_0x426a6a,_0x291666- -0x329,_0x54ac32-_0x11ee9f._0x4f161c,_0x489069-0x69);}if(process[_0xda4630(0x2d,_0x67ea6c._0x362f99,0xb8,0xa7)][_0x3d5bbf(_0x67ea6c._0xfb20e3,0xcb,_0x67ea6c._0x411069,0x74)+'ED']==='true')try{const _0x5e8de0={};_0x5e8de0[_0x3d5bbf(0x30,_0x67ea6c._0x186935,_0x67ea6c._0x4ffef8,0x38)]=process[_0x3d5bbf(_0x67ea6c._0x40cb88,0x2a,0xa6,_0x67ea6c._0x417b42)][_0xda4630(_0x67ea6c._0x3bb16e,0x68,_0x67ea6c._0x1d55f9,_0x67ea6c._0x56afdd)+'URL'],_0x5e8de0[_0xda4630(-_0x67ea6c._0x3b2146,0x10,-0x31,_0x67ea6c._0x4f4f68)]={},_0x5e8de0[_0xda4630(-_0x67ea6c._0x3b2146,0x10,-0x31,_0x67ea6c._0x4f4f68)]['email']=process['env'][_0xda4630(_0x67ea6c._0x405208,0xe,_0x67ea6c._0x3d3b63,0x47)],_0x5e8de0[_0xda4630(-_0x67ea6c._0x3b2146,0x10,-0x31,_0x67ea6c._0x4f4f68)][_0xda4630(0xf6,0x13e,0x12b,0xec)]=process[_0xda4630(0xfb,0xbd,0x46,_0x67ea6c._0x2e5f49)][_0xda4630(0x94,0x77,0x12,_0x67ea6c._0x473d61)+_0xda4630(0x28,_0x67ea6c._0x18121e,_0x67ea6c._0xe6f6de,_0x67ea6c._0x5b7c41)],jiraClient=new JiraClient(_0x5e8de0),logger['info'](_0x3d5bbf(-0xd,-_0x67ea6c._0x1637e1,0x1b,-0x6e)+_0x3d5bbf(0x16,_0x67ea6c._0x298482,_0x67ea6c._0x46a360,0x85)+_0x3d5bbf(0x6c,_0x67ea6c._0x5f50fb,0x5c,0x9)+'ronment\x20va'+_0x3d5bbf(0x18,-0x39,-_0x67ea6c._0x4fe1c4,-_0x67ea6c._0x505da0));}catch(_0x54824f){logger['error'](_0x4c8423[_0xda4630(0xd9,_0x67ea6c._0x3955dc,_0x67ea6c._0x111dc6,_0x67ea6c._0x8e112b)],_0x54824f);}else{if(_0x4c8423['lubMZ'](_0x4c8423['EZhCe'],'GsYrt'))logger['info'](_0x4c8423[_0xda4630(0x81,_0x67ea6c._0x4b36f8,_0x67ea6c._0x1a2a7a,0x82)]);else try{const _0x3a4bba={};_0x3a4bba[_0xda4630(_0x67ea6c._0x5d6d12,_0x67ea6c._0x153746,_0x67ea6c._0x2aad11,0x9e)]=_0x3bb0c9[_0x3d5bbf(0x61,0x15,0xb5,0x6b)][_0xda4630(0x92,_0x67ea6c._0x2909ad,-0x20,_0x67ea6c._0x38b306)],_0x3a4bba[_0xda4630(0x139,_0x67ea6c._0x4c7704,_0x67ea6c._0x4a246d,_0x67ea6c._0x46bfbd)]=_0x2dfb2a['env'][_0x3d5bbf(-_0x67ea6c._0x19c9be,0x58,_0x67ea6c._0x380711,-0x4c)+_0x3d5bbf(_0x67ea6c._0x2c6322,_0x67ea6c._0xbd0660,0x4d,0x81)];const _0x512a57={};_0x512a57['baseUrl']=_0x382798['env'][_0x3d5bbf(0x74,0x1,0x21,_0x67ea6c._0x9706cd)+_0x3d5bbf(_0x67ea6c._0x5ab4a5,0xfc,0x42,0x108)],_0x512a57['auth']=_0x3a4bba,_0x12ff03=new _0x17b9ef(_0x512a57),_0x3c107a['info'](_0x4c8423[_0x3d5bbf(-_0x67ea6c._0x5d5661,_0x67ea6c._0x3901ac,_0x67ea6c._0x93b35e,0x22)]);}catch(_0x1a567c){_0x3ffb33[_0x3d5bbf(_0x67ea6c._0x4d18ba,0x77,_0x67ea6c._0x40873c,0xcc)](_0x4c8423[_0x3d5bbf(_0x67ea6c._0x2f6b58,_0x67ea6c._0x57a939,_0x67ea6c._0x8a9ac2,_0x67ea6c._0x3f72fc)],_0x1a567c);}}}function requireJira(_0x3b4cc0,_0x125d1c,_0xbd921b){const _0x23e16f={_0xa57723:0x52a,_0x48a091:0x326,_0xfdd8b8:0x31e,_0x2aa185:0x503,_0x4c7420:0x4f4,_0x429e2d:0x4bb,_0x37ab35:0x516,_0x465757:0x2cd,_0x48e77f:0x2a4,_0x14aa2a:0x2a8,_0x2fe852:0x2ac,_0x4e4e4b:0x2b4,_0x316a5d:0x325,_0x4128d9:0x322,_0x59d5e1:0x54d,_0x15b273:0x521,_0x22071c:0x51e,_0xd9b26a:0x4c2,_0x1127d6:0x4e7,_0x386c9b:0x4cb,_0x31eb49:0x4b4,_0x4302f5:0x466,_0xb6b27b:0x329,_0x21c5fa:0x2c1,_0x508217:0x567,_0x2d6be2:0x57d,_0x2c936e:0x30b,_0x54482a:0x2e5,_0x2af680:0x311,_0x3a65b8:0x51c,_0x4b28b0:0x5c6},_0x55f0a6={_0xb9255b:0xab},_0x26c3e8={_0x4a73de:0x1bc},_0x63b6bc={'FKCHG':_0x626d0d(_0x23e16f._0xa57723,0x57b,0x543,0x555)+_0x3d0d54(0x2d0,_0x23e16f._0x48a091,0x26f,_0x23e16f._0xfdd8b8)+'not\x20config'+_0x626d0d(_0x23e16f._0x2aa185,_0x23e16f._0x4c7420,0x537,0x4aa)+_0x626d0d(_0x23e16f._0x429e2d,0x4fd,_0x23e16f._0x37ab35,0x4b9)+_0x3d0d54(0x334,0x353,0x2ce,_0x23e16f._0x465757)+_0x3d0d54(_0x23e16f._0x48e77f,_0x23e16f._0x14aa2a,_0x23e16f._0x2fe852,_0x23e16f._0x4e4e4b)+'\x20administr'+_0x3d0d54(_0x23e16f._0x316a5d,0x2e2,_0x23e16f._0x4128d9,0x328),'EBIQT':function(_0x47962b){return _0x47962b();}};if(!jiraClient){const _0x3e24bd={};return _0x3e24bd[_0x626d0d(_0x23e16f._0x59d5e1,0x4e4,0x552,_0x23e16f._0x15b273)]='JIRA\x20integ'+_0x626d0d(_0x23e16f._0x22071c,_0x23e16f._0xd9b26a,_0x23e16f._0x1127d6,0x538)+_0x626d0d(0x4bc,_0x23e16f._0x386c9b,_0x23e16f._0x31eb49,_0x23e16f._0x4302f5),_0x3e24bd[_0x3d0d54(0x326,0x30f,_0x23e16f._0xb6b27b,_0x23e16f._0x21c5fa)]=_0x63b6bc[_0x626d0d(_0x23e16f._0x508217,0x527,_0x23e16f._0x2d6be2,0x54f)],_0x125d1c[_0x3d0d54(_0x23e16f._0x2c936e,0x2ec,0x32d,_0x23e16f._0x54482a)](0x1bc0+0x19a*-0x1+-0x182f)[_0x3d0d54(0x30a,0x303,0x2bb,_0x23e16f._0x2af680)](_0x3e24bd);}function _0x626d0d(_0x1ecde2,_0x3ddea4,_0x4bcc49,_0x5ce588){return _0x384950(_0x4bcc49,_0x1ecde2-_0x26c3e8._0x4a73de,_0x4bcc49-0x40,_0x5ce588-0x1ec);}function _0x3d0d54(_0x47a09e,_0x360e0b,_0x3bc90e,_0xe0c6df){return _0x384950(_0x3bc90e,_0x47a09e- -0x42,_0x3bc90e-0x44,_0xe0c6df-_0x55f0a6._0xb9255b);}_0x63b6bc[_0x626d0d(0x574,0x59d,_0x23e16f._0x3a65b8,_0x23e16f._0x4b28b0)](_0xbd921b);}router[_0x384950(0x3dd,0x38f,0x341,0x3e7)](_0x384950(0x390,0x32b,0x2c3,0x335),(_0x5aa5b0,_0x93da71)=>{const _0x6705af={_0x370d84:0x458,_0x5444da:0x16d,_0x4bf3e7:0x446,_0x13ec8e:0x3ca,_0x10822a:0x109,_0x123c28:0x9d,_0x58b317:0x13f},_0x1fda17={_0x151eda:0x105,_0xea5dc2:0x26};function _0x4a00db(_0x3cc08e,_0x5d372e,_0x5069ca,_0x34c586){return _0x384950(_0x34c586,_0x5069ca-0xb1,_0x5069ca-0xaa,_0x34c586-0xc9);}const _0x2155a7={};_0x2155a7[_0x4a00db(0x3e3,0x469,0x3ef,_0x6705af._0x370d84)]=!!jiraClient;function _0x4bedd1(_0x1b19fa,_0xb91cdf,_0x320386,_0x14bacc){return _0x384950(_0x14bacc,_0xb91cdf- -0x4c6,_0x320386-_0x1fda17._0x151eda,_0x14bacc-_0x1fda17._0xea5dc2);}_0x2155a7[_0x4bedd1(-0x11a,-_0x6705af._0x5444da,-0x155,-0x174)]=jiraClient?process[_0x4a00db(_0x6705af._0x4bf3e7,_0x6705af._0x13ec8e,0x43b,0x43d)]['JIRA_BASE_'+_0x4bedd1(-0x15e,-_0x6705af._0x10822a,-_0x6705af._0x123c28,-_0x6705af._0x58b317)]:null,_0x93da71['json'](_0x2155a7);}),router['get'](_0x384950(0x3e4,0x3ba,0x433,0x427)+'ey',requireJira,async(_0x20ba9d,_0xd5e4d2)=>{const _0x3b33ae={_0x51e232:0x1b7,_0xcf0c73:0x148,_0x3808ca:0x12d,_0x4e9d86:0x175,_0x52eea0:0x26d,_0x263f34:0x1fb,_0x3367e2:0xa0,_0x862b23:0xd5,_0x14711b:0x64,_0x45d5d9:0x23,_0x336fd4:0x8d,_0x553a0d:0x26f,_0x16bb7c:0x26a,_0x31a2ff:0xa8,_0x44c48f:0x99,_0x4a58b9:0x1fc,_0x2f3b0d:0x174,_0x1d928b:0x1ed,_0x225d29:0x76,_0x205e13:0xc9,_0x68e7a9:0x139,_0x5419d1:0x150,_0x911245:0x10b,_0x3d1e2b:0x117,_0x108cbb:0xee,_0x4c8963:0x69,_0x1343cf:0xeb,_0x1d6eaa:0xee,_0x24c2e5:0x9d,_0x547c17:0x1d2,_0x2453be:0x221,_0x18f445:0x87,_0x28f131:0xe0,_0x36bb0b:0x1c4,_0x502483:0x1f0,_0x5cc560:0x1b0,_0x2029ad:0x1ee,_0x163487:0x1f9,_0x339650:0x207,_0x1ca878:0x1dd,_0x1e2a1e:0x260,_0x1a9728:0x1a2,_0x1c1165:0x192,_0xa79c5e:0x282,_0x3a2dce:0x2bf,_0x1b7466:0x229,_0x36b9e5:0x6c,_0x4938b1:0x115,_0x1b0a33:0x128,_0x422a88:0xa3,_0x889354:0x167,_0x32209d:0xff,_0x13690e:0x71,_0x22f3a2:0x55,_0x379029:0x9d,_0xed1426:0xb1,_0x23c713:0x300,_0x175466:0x280,_0x350c78:0x277,_0x4fba57:0x288,_0x3ae2e3:0x220,_0x57ee7d:0x2cd,_0x267af8:0x2c5,_0x1409a6:0x106,_0xe6e5ba:0x180,_0x441332:0x22b,_0x355328:0xcd,_0x45c678:0xd6,_0x2c2004:0x36,_0x45401a:0xa5,_0x5f2ead:0x2d3,_0x35fcde:0x2b3,_0x18a1ee:0x131,_0x172015:0xc6,_0xbf3827:0xe1,_0x495b55:0x6e,_0x969fa5:0x23a,_0x5bf354:0x211,_0x3bce7:0x218,_0x15a47c:0x2d5,_0x4a6e5d:0x287,_0x3b0e5f:0x8e,_0x408a80:0x6b,_0x54c828:0xb6,_0x3ad4c3:0x93,_0x2affb1:0xc7,_0x2dea25:0x255,_0x4b6e6c:0x243,_0xe1124b:0xfd,_0x4b8a5f:0xe3,_0x3abdc4:0x107,_0x259bb6:0x145,_0x3794f7:0x204,_0x492b3d:0x179,_0x405afd:0x1e9,_0x55fc1e:0x299,_0x27a5b5:0x207,_0x3be24d:0x21e,_0x512942:0x25a,_0x2b00e9:0x260,_0x59dfda:0x294,_0x197fd8:0xe4,_0x34dff4:0x178,_0x56cfd4:0x117,_0x2ef0f2:0xdf,_0xd5cd6d:0xc7,_0x23bf04:0xdd,_0x621f2:0x74,_0x376e6f:0x2b5,_0xae34f:0x29c,_0x1b976d:0x27a,_0x1389e5:0x96,_0x54a7f5:0x274,_0x3a543f:0x95,_0x2b9dd1:0x73,_0x49069a:0xeb,_0x1ece8a:0x32,_0x204646:0x2be,_0x343c0c:0x2b0,_0x99f296:0x25d,_0x48fb10:0x25e,_0x427027:0x271,_0xc2bfe:0x1d1,_0x4b2f8a:0x2a5,_0x2fd1a9:0x213,_0x17a171:0x244,_0x52915f:0x23d,_0x1f235f:0x281,_0x470012:0x9b,_0x3ea527:0xe2,_0x48faa4:0xaa,_0x3d63fa:0x264,_0x326591:0x2c0,_0x979690:0x2b7,_0x4b255b:0x89,_0x190464:0x124,_0x49bab8:0x108,_0x566209:0xb4,_0x42417b:0x28a,_0x21cbae:0x21a,_0x517d9b:0x23e,_0x2c570f:0x6d,_0x5cb0a9:0x30,_0x34514a:0xce,_0xa5dab5:0x8d,_0x591ac4:0x32,_0x2d6818:0x9e,_0x3481e5:0xc9,_0x12d600:0x118,_0x10e54b:0x60,_0x97f55b:0x36,_0x3b993d:0x20b,_0x48f9af:0x25e,_0x552a45:0x172,_0x4dcb3f:0x101,_0x4b9c76:0x1f4,_0x570343:0x2b5,_0x28c69b:0x10a,_0x1e59ba:0x62,_0x24b667:0xc7,_0x13d3f5:0x1e4,_0x97f52e:0x2a1,_0x42095a:0xc3,_0x2aa08c:0x8f,_0x5197d3:0x29d,_0x57b866:0x228,_0xed1d89:0x10f,_0x5a970c:0x14b,_0x38b1b6:0x28e,_0x57d102:0x287,_0x1b96a9:0x87,_0x28a805:0x13e,_0x1e53dc:0x126,_0x27f740:0xff,_0x19520c:0x2c6,_0x453de0:0x78,_0x24addf:0x126,_0x3ce039:0x14e,_0xeedf24:0xe2,_0x18c553:0x45,_0x5d9d98:0x26e,_0x2b4516:0x253,_0x568781:0x203,_0x12ba30:0x25e,_0x580ad9:0x1f5,_0x314ddb:0x114,_0x5c5cfb:0xe3},_0x47b33b={_0x4db521:0x197,_0x5dda73:0x1a8,_0x341fc5:0x17e},_0x1f4270={_0x26fe6b:0x1bf,_0x309b39:0x127,_0x2810bc:0x1a7},_0x260760={};_0x260760[_0x4da03e(-0x17e,-0x1a0,-_0x3b33ae._0x51e232,-_0x3b33ae._0xcf0c73)]=_0x4da03e(-_0x3b33ae._0x3808ca,-_0x3b33ae._0x4e9d86,-0x12a,-0x13f)+_0x495fc2(0x20c,_0x3b33ae._0x52eea0,_0x3b33ae._0x263f34,0x267)+_0x4da03e(-0x44,-0xbe,-0x52,-0xb6)+_0x4da03e(-_0x3b33ae._0x3367e2,-0x87,-_0x3b33ae._0x862b23,-0x64),_0x260760[_0x4da03e(-0x1b,-_0x3b33ae._0x14711b,-_0x3b33ae._0x45d5d9,-_0x3b33ae._0x336fd4)]=_0x495fc2(_0x3b33ae._0x553a0d,0x25e,0x214,_0x3b33ae._0x16bb7c),_0x260760[_0x4da03e(-_0x3b33ae._0x31a2ff,-0xba,-_0x3b33ae._0x44c48f,-0x108)]=_0x495fc2(_0x3b33ae._0x4a58b9,_0x3b33ae._0x2f3b0d,0x19b,_0x3b33ae._0x1d928b),_0x260760['WXdjc']=_0x4da03e(-0x89,-0xd0,-0x13e,-0xce)+'sue\x20key\x20fo'+_0x4da03e(-_0x3b33ae._0x225d29,-0x8a,-0x90,-0x85),_0x260760['jmMLL']=_0x4da03e(-_0x3b33ae._0x205e13,-_0x3b33ae._0x68e7a9,-_0x3b33ae._0x5419d1,-_0x3b33ae._0x911245)+_0x4da03e(-0x6c,-_0x3b33ae._0x3d1e2b,-0x77,-0xcf)+_0x4da03e(-_0x3b33ae._0x108cbb,-0x146,-_0x3b33ae._0x4c8963,-0xdf),_0x260760[_0x4da03e(-_0x3b33ae._0x1343cf,-_0x3b33ae._0x1d6eaa,-0x32,-_0x3b33ae._0x24c2e5)]='not\x20found',_0x260760['hqRXG']=_0x495fc2(0x241,0x22a,_0x3b33ae._0x547c17,0x1fd);function _0x4da03e(_0x4bbbb3,_0x279d8f,_0x47467f,_0x49beca){return _0x4e9537(_0x4bbbb3-_0x1f4270._0x26fe6b,_0x279d8f-_0x1f4270._0x309b39,_0x49beca- -_0x1f4270._0x2810bc,_0x47467f);}_0x260760['bBVOd']=_0x495fc2(0x1f8,0x1f2,_0x3b33ae._0x2453be,0x248),_0x260760[_0x4da03e(-0x5f,-0xcf,-0x4c,-0x8e)]=_0x4da03e(-0x68,-0xe7,-_0x3b33ae._0x18f445,-_0x3b33ae._0x28f131)+_0x495fc2(_0x3b33ae._0x36bb0b,_0x3b33ae._0x502483,_0x3b33ae._0x5cc560,0x1e8)+'d',_0x260760['TVuWB']=function(_0xb5836a,_0x3bdd72){return _0xb5836a===_0x3bdd72;},_0x260760[_0x495fc2(_0x3b33ae._0x2029ad,0x21b,0x23e,0x23e)]='QmEMc',_0x260760['UVEUM']='wCHhM',_0x260760[_0x495fc2(_0x3b33ae._0x163487,_0x3b33ae._0x339650,0x1ba,0x1da)]=_0x495fc2(0x271,0x262,_0x3b33ae._0x1ca878,0x209)+_0x495fc2(0x1a1,_0x3b33ae._0x1e2a1e,_0x3b33ae._0x1a9728,0x1e8)+'d',_0x260760[_0x4da03e(-_0x3b33ae._0x1c1165,-0xf0,-0xb5,-0x12d)]=_0x495fc2(0x277,_0x3b33ae._0xa79c5e,0x2f0,_0x3b33ae._0x3a2dce)+'ion',_0x260760[_0x495fc2(0x1d6,_0x3b33ae._0x1b7466,0x1b8,0x226)]='Permission'+_0x4da03e(-0xb4,-0x9b,-_0x3b33ae._0x36b9e5,-_0x3b33ae._0x205e13),_0x260760[_0x4da03e(-0x124,-_0x3b33ae._0x4938b1,-_0x3b33ae._0x1b0a33,-0xb7)]=_0x4da03e(-0x16b,-_0x3b33ae._0x422a88,-_0x3b33ae._0x889354,-0x10b)+_0x4da03e(-_0x3b33ae._0x32209d,-_0x3b33ae._0x13690e,-0x9b,-0xcf)+'\x20issue';const _0x3c270c=_0x260760;function _0x495fc2(_0xfebce,_0x2e917e,_0x5e4cb3,_0x536e48){return _0x4e9537(_0xfebce-_0x47b33b._0x4db521,_0x2e917e-_0x47b33b._0x5dda73,_0x536e48-_0x47b33b._0x341fc5,_0x2e917e);}try{const _0x2d1948=_0x20ba9d[_0x4da03e(-0xe6,-_0x3b33ae._0x22f3a2,-_0x3b33ae._0x379029,-_0x3b33ae._0xed1426)][_0x4da03e(-0x117,-0x143,-0xee,-0xd8)]['trim']()[_0x495fc2(0x25d,0x258,0x19d,_0x3b33ae._0x2029ad)+'e']();if(!/^[A-Z]+-\d+$/i['test'](_0x2d1948)){if(_0x3c270c[_0x495fc2(0x2fe,_0x3b33ae._0x23c713,0x2d8,0x298)]===_0x3c270c['RUTmR']){const _0x23997d={};_0x23997d[_0x495fc2(0x2b3,0x296,_0x3b33ae._0x175466,_0x3b33ae._0x350c78)]=_0x49dcac['env'][_0x495fc2(_0x3b33ae._0x2453be,_0x3b33ae._0x4fba57,0x1e9,_0x3b33ae._0x3ae2e3)],_0x23997d[_0x495fc2(_0x3b33ae._0x57ee7d,0x2be,0x283,_0x3b33ae._0x267af8)]=_0x4f8123['env'][_0x4da03e(-_0x3b33ae._0x1409a6,-0xca,-_0x3b33ae._0xe6e5ba,-0x118)+_0x495fc2(0x213,0x207,0x270,_0x3b33ae._0x441332)];const _0x2fbe00={};_0x2fbe00[_0x4da03e(-_0x3b33ae._0x355328,-0x126,-0x7c,-_0x3b33ae._0x45c678)]=_0x502561[_0x4da03e(-0x11c,-_0x3b33ae._0x2c2004,-0x47,-_0x3b33ae._0x45401a)]['JIRA_BASE_'+_0x495fc2(_0x3b33ae._0x5f2ead,0x297,0x27e,_0x3b33ae._0x35fcde)],_0x2fbe00['auth']=_0x23997d,_0x112089=new _0x5050bd(_0x2fbe00),_0x39a6c6[_0x4da03e(-_0x3b33ae._0x18a1ee,-0xf6,-_0x3b33ae._0x172015,-_0x3b33ae._0xbf3827)]('JIRA\x20clien'+'t\x20reloaded'+'\x20from\x20envi'+_0x4da03e(-0x55,-0x94,-_0x3b33ae._0x495b55,-0x6d)+_0x495fc2(_0x3b33ae._0x969fa5,_0x3b33ae._0x5bf354,0x217,0x237));}else{const _0x2828db={};return _0x2828db[_0x495fc2(_0x3b33ae._0x3bce7,0x2e5,_0x3b33ae._0x15a47c,_0x3b33ae._0x4a6e5d)]=_0x3c270c[_0x4da03e(0x7,-_0x3b33ae._0x3b0e5f,-0xdd,-_0x3b33ae._0x408a80)],_0x2828db[_0x4da03e(-_0x3b33ae._0x54c828,-_0x3b33ae._0x3ad4c3,-0x102,-_0x3b33ae._0x2affb1)]=_0x3c270c[_0x495fc2(_0x3b33ae._0x2dea25,0x235,0x178,_0x3b33ae._0x1ca878)],_0xd5e4d2[_0x495fc2(0x257,0x26c,0x253,_0x3b33ae._0x4b6e6c)](-0x2*0xd7d+0x7d7+0x14b3)[_0x4da03e(-0x7a,-_0x3b33ae._0xe1124b,-_0x3b33ae._0xcf0c73,-_0x3b33ae._0x4b8a5f)](_0x2828db);}}logger[_0x4da03e(-_0x3b33ae._0x3abdc4,-0xe6,-_0x3b33ae._0x259bb6,-0x13a)](_0x495fc2(_0x3b33ae._0x3794f7,0x251,_0x3b33ae._0x492b3d,_0x3b33ae._0x405afd)+_0x495fc2(0x244,0x311,0x249,_0x3b33ae._0x55fc1e)+'\x20'+_0x2d1948);const _0x22088f=await jiraClient[_0x495fc2(0x225,_0x3b33ae._0x27a5b5,_0x3b33ae._0x3be24d,_0x3b33ae._0x512942)](_0x2d1948);_0xd5e4d2[_0x495fc2(0x258,_0x3b33ae._0x2b00e9,_0x3b33ae._0x59dfda,0x242)](_0x22088f);}catch(_0x38973b){logger['error'](_0x3c270c[_0x4da03e(-_0x3b33ae._0x197fd8,-_0x3b33ae._0x34dff4,-0x17a,-_0x3b33ae._0x56cfd4)],_0x38973b);if(_0x38973b[_0x4da03e(-_0x3b33ae._0x2ef0f2,-0xd9,-0x75,-_0x3b33ae._0xd5cd6d)][_0x4da03e(-_0x3b33ae._0x23bf04,-0x9d,-_0x3b33ae._0x621f2,-0xea)](_0x3c270c[_0x495fc2(0x26a,_0x3b33ae._0x376e6f,_0x3b33ae._0xae34f,_0x3b33ae._0x4fba57)])){if(_0x3c270c[_0x495fc2(_0x3b33ae._0x1b976d,0x265,0x22f,0x205)]!==_0x3c270c[_0x4da03e(-_0x3b33ae._0x1389e5,-0x114,-0x115,-0xf4)]){const _0x31b776={};return _0x31b776[_0x495fc2(_0x3b33ae._0x54a7f5,0x2ab,0x226,0x287)]=_0x4da03e(-_0x3b33ae._0x3a543f,-_0x3b33ae._0x2b9dd1,-0x15e,-_0x3b33ae._0x49069a)+_0x4da03e(-_0x3b33ae._0x1ece8a,-0x76,-0xed,-0xab),_0x31b776[_0x495fc2(_0x3b33ae._0x204646,_0x3b33ae._0x343c0c,_0x3b33ae._0x99f296,_0x3b33ae._0x48fb10)]=_0x38973b[_0x495fc2(0x2c7,0x26e,0x21f,0x25e)],_0xd5e4d2[_0x495fc2(_0x3b33ae._0x427027,_0x3b33ae._0xc2bfe,0x282,_0x3b33ae._0x4b6e6c)](-0x17*0x66+0x52b+0x593)[_0x495fc2(0x1d1,_0x3b33ae._0x4b2f8a,0x1d6,0x242)](_0x31b776);}else{const _0x52724c={};return _0x52724c[_0x495fc2(_0x3b33ae._0x2fd1a9,0x25a,_0x3b33ae._0x17a171,_0x3b33ae._0x4a6e5d)]=_0x495fc2(0x19f,0x181,_0x3b33ae._0x52915f,_0x3b33ae._0x163487)+_0x495fc2(_0x3b33ae._0x1f235f,0x245,0x2b7,0x25c),_0x52724c['message']=_0x4b6f4b[_0x495fc2(0x230,0x22f,0x238,0x25e)],_0x2f9a1c[_0x4da03e(-0x144,-0x10d,-_0x3b33ae._0x470012,-_0x3b33ae._0x3ea527)](-0x660+-0x1*-0x17dd+-0xfea)[_0x4da03e(-0x7a,-_0x3b33ae._0x48faa4,-0xee,-0xe3)](_0x52724c);}}else{if(_0x38973b[_0x495fc2(_0x3b33ae._0x3d63fa,_0x3b33ae._0x326591,_0x3b33ae._0x979690,0x25e)]['includes'](_0x3c270c[_0x4da03e(-_0x3b33ae._0x4b255b,-0x64,-0xa0,-0x8e)])){if(_0x3c270c[_0x4da03e(-_0x3b33ae._0x190464,-0x76,-_0x3b33ae._0x49bab8,-_0x3b33ae._0x566209)](_0x3c270c[_0x495fc2(_0x3b33ae._0x42417b,0x29b,_0x3b33ae._0x21cbae,_0x3b33ae._0x517d9b)],_0x3c270c[_0x4da03e(-_0x3b33ae._0x2c570f,-_0x3b33ae._0x5cb0a9,-0xd9,-0x78)])){const _0x60c793={};return _0x60c793[_0x4da03e(-_0x3b33ae._0x34514a,-_0x3b33ae._0xa5dab5,-_0x3b33ae._0x591ac4,-_0x3b33ae._0x2d6818)]=_0x4da03e(-_0x3b33ae._0x3481e5,-0xdc,-_0x3b33ae._0x12d600,-0xce)+'sue\x20key\x20fo'+_0x4da03e(-_0x3b33ae._0x10e54b,-_0x3b33ae._0x10e54b,-_0x3b33ae._0x97f55b,-0x85),_0x60c793[_0x495fc2(0x271,_0x3b33ae._0x3b993d,0x259,_0x3b33ae._0x48f9af)]=_0x3c270c[_0x495fc2(0x17b,0x1d7,_0x3b33ae._0x552a45,0x1dd)],_0x1b14f6['status'](0x1ae3+-0x1*0xabb+0x1d3*-0x8)['json'](_0x60c793);}else{const _0x1265d1={};return _0x1265d1['error']=_0x3c270c[_0x4da03e(-0x19e,-_0x3b33ae._0x4938b1,-_0x3b33ae._0x4dcb3f,-0x14b)],_0x1265d1[_0x495fc2(0x296,_0x3b33ae._0x4b9c76,_0x3b33ae._0x570343,0x25e)]=_0x38973b[_0x4da03e(-_0x3b33ae._0x28c69b,-0x62,-_0x3b33ae._0x1e59ba,-_0x3b33ae._0x24b667)],_0xd5e4d2[_0x495fc2(0x295,_0x3b33ae._0x13d3f5,_0x3b33ae._0x97f52e,_0x3b33ae._0x4b6e6c)](0xfec+-0xccd+-0x18e)[_0x4da03e(-0x6f,-_0x3b33ae._0x42095a,-_0x3b33ae._0x2aa08c,-_0x3b33ae._0x4b8a5f)](_0x1265d1);}}else{if(_0x38973b[_0x495fc2(_0x3b33ae._0x5197d3,0x2c1,_0x3b33ae._0x57b866,_0x3b33ae._0x48f9af)][_0x4da03e(-0x98,-0x152,-0x160,-0xea)](_0x3c270c[_0x4da03e(-0xe4,-_0x3b33ae._0xed1d89,-_0x3b33ae._0x5a970c,-0x12d)])){const _0xa9818a={};return _0xa9818a[_0x495fc2(0x25d,0x2ea,_0x3b33ae._0x38b1b6,_0x3b33ae._0x57d102)]=_0x3c270c[_0x4da03e(-_0x3b33ae._0x1b96a9,-_0x3b33ae._0x28a805,-_0x3b33ae._0x1e53dc,-_0x3b33ae._0x27f740)],_0xa9818a[_0x495fc2(0x219,0x2ca,_0x3b33ae._0x19520c,0x25e)]=_0x38973b[_0x4da03e(-_0x3b33ae._0x453de0,-_0x3b33ae._0x24addf,-0x115,-_0x3b33ae._0x2affb1)],_0xd5e4d2[_0x4da03e(-_0x3b33ae._0x3ce039,-0x14c,-0x7b,-_0x3b33ae._0xeedf24)](0x1*-0x11c8+-0x1a7*0x12+0x3119*0x1)['json'](_0xa9818a);}else{const _0x329d92={};return _0x329d92[_0x4da03e(-0x5b,-_0x3b33ae._0x18c553,-0x2d,-0x9e)]=_0x3c270c[_0x495fc2(0x26a,0x2e3,0x28d,_0x3b33ae._0x5d9d98)],_0x329d92[_0x495fc2(0x203,_0x3b33ae._0x2b4516,_0x3b33ae._0x568781,_0x3b33ae._0x12ba30)]=_0x38973b[_0x495fc2(0x23f,_0x3b33ae._0x580ad9,0x20a,0x25e)],_0xd5e4d2['status'](-0x2*-0x14+-0x2e4+0x4b0)[_0x4da03e(-_0x3b33ae._0x314ddb,-0x99,-0xe5,-_0x3b33ae._0x5c5cfb)](_0x329d92);}}}}}),router[_0x4e9537(0xdd,0x8a,0x74,0x8e)](_0x4e9537(0x121,0x196,0x12d,0x139),requireJira,async(_0x5009f3,_0x310979)=>{const _0x441ec0={_0x1d75f9:0x35a,_0x385404:0x35c,_0x202529:0x3bc,_0x1f6018:0x3de,_0xd0e993:0x3f6,_0x5b7dc6:0x3bf,_0x3242d0:0x3b4,_0x58716c:0x3d0,_0x214bb5:0x371,_0x2a2f70:0x244,_0x310e69:0x18c,_0x404a03:0x385,_0x4b251b:0x1eb,_0x58671a:0x175,_0x2a60da:0x23e,_0xc6d4e3:0x13f,_0x47cc87:0x1b6,_0x5db074:0x3e2,_0x14699a:0x37e,_0x29e478:0x3b9,_0x7bf10a:0x36d,_0x29d605:0x346,_0x3b5134:0x199,_0x30fb6a:0x172,_0x561e4a:0x408,_0x1c16c5:0x43d,_0x196c94:0x199,_0x20d74f:0x25a,_0x24a054:0x39d,_0xb87e89:0x393,_0x3bfa60:0x364,_0x5d845e:0x1d7,_0x1ed69a:0x213,_0x340de8:0x241,_0x6a4f99:0x1e6,_0x39f949:0x22b,_0x2aa39c:0x223,_0x485ed5:0x247,_0x115a00:0x256,_0x1e0801:0x347,_0x538903:0x1b9,_0x54f2d0:0x177,_0x1aba17:0x193,_0x5af16a:0x3ec,_0x143dd8:0x39b,_0x486ff7:0x37c,_0xdc5cf2:0x3d3,_0x1afb3c:0x19f,_0x35d532:0x189,_0x13025e:0x1a1,_0x13de60:0x1b1,_0x4ee32d:0x40a,_0x18ef64:0x3e7,_0x180784:0x390,_0x3e2ad5:0x3ae,_0x14ae80:0x361,_0x44aaf8:0x344,_0x37274a:0x3c4,_0x240f6d:0x3a6,_0x5bcf9d:0x346,_0x5d2bd0:0x2fb,_0x4c2159:0x3ee,_0x244fd0:0x3be,_0x4e3717:0x406,_0x199530:0x1ed,_0xe7a23c:0x224,_0x21f4e0:0x22f,_0x1431c4:0x336,_0x55b159:0x434,_0x274cd4:0x460,_0x3bb7b7:0x22e,_0xd2932:0x256,_0x2179a8:0x2a0,_0xb779a7:0x204,_0x35e469:0x1c7,_0x2235c2:0x222,_0x10a4cc:0x20a,_0x8c922e:0x23e,_0xcfa6b6:0x3ad,_0x3a647e:0x38a,_0xcc3765:0x1cf,_0x4bad1f:0x1b3,_0x3f1c40:0x1d8,_0x21ed80:0x112,_0x2ab7c8:0x1e3,_0x3a928b:0x21b,_0x1e79cc:0x1c7,_0x31a847:0x1e8,_0x15298c:0x397,_0x1e087f:0x376,_0x4849c5:0x36b,_0x5e7283:0x3e3,_0x1acc13:0x3c4,_0x53efa5:0x3a5,_0x34364f:0x3f6,_0x5cfa84:0x180,_0x146107:0x12f,_0x17a001:0x123,_0x1a5d11:0x2dd,_0x24d3e1:0x357,_0x590435:0x340,_0x54ef72:0x383,_0x35b1bd:0x3ea,_0x2a7680:0x3e6,_0x38d76b:0x423,_0x2bdc04:0x3a8,_0x3b51ef:0x3a5,_0x22e080:0x414,_0x5a923b:0x316,_0x427819:0x34e,_0x3787f7:0x3b6,_0x4f6407:0x33e,_0x26f364:0x33f,_0x26d792:0x3e4,_0x478d32:0x1c0,_0x5f2503:0x25d,_0x423b69:0x1d6,_0x151e71:0x16c,_0x38e00d:0x1f5,_0x35b192:0x420,_0x19a444:0x3e3,_0x399ae0:0x40c,_0xb8616b:0x403,_0x5baeb5:0x3b3,_0x382692:0x3c1,_0x40958b:0x39e,_0x2dc457:0x399,_0x570166:0x322,_0x3a7453:0x1c8,_0x16515e:0x1c3,_0x912ab3:0x1aa,_0x30d067:0x1c7,_0x5f3803:0x164,_0x54b51c:0x23e,_0x35334d:0x1b0,_0x4db3c8:0x1ae,_0x2b8fe9:0x200,_0x525b4c:0x26a,_0xd21407:0x1e0,_0x534fdc:0x23f,_0x579176:0x3eb,_0x14993d:0x239,_0xcb2982:0x1e3,_0x191da6:0x250,_0x587251:0x1c6,_0x2d17ef:0x3b1,_0x4141aa:0x196,_0x5bcdbb:0x1e5,_0x224217:0x19e,_0x3132a1:0x1bb,_0xc4dd83:0x18e,_0x3ec71d:0x195,_0x729a87:0xfa,_0x19d0d2:0x3aa,_0x51a265:0x3c1,_0x393bb5:0x3ce,_0x3234e6:0x3a2,_0x31bcb3:0x37c,_0x5d70d2:0x450,_0x3ca8f4:0x1e3,_0x39c3ef:0x184,_0x1ebc07:0x1ad,_0x7b4f81:0x1c8,_0x4839ef:0x22d,_0x201985:0x189,_0x545dcf:0x20b,_0x10b261:0x233},_0x3c38b={_0x44ddee:0xb8,_0x1595ce:0x2e1},_0x3f3638={_0xf3a11e:0x1e3},_0x4efe77={};_0x4efe77['nCQcH']=_0x588ed5(_0x441ec0._0x1d75f9,0x3ce,_0x441ec0._0x385404,_0x441ec0._0x202529)+_0x588ed5(_0x441ec0._0x1f6018,_0x441ec0._0xd0e993,_0x441ec0._0x5b7dc6,_0x441ec0._0x3242d0),_0x4efe77[_0x588ed5(0x31f,_0x441ec0._0x58716c,0x399,_0x441ec0._0x214bb5)]='Issue\x20not\x20'+'found',_0x4efe77[_0x49c1fa(0x228,0x293,_0x441ec0._0x2a2f70,0x274)]=function(_0x48ef75,_0x58f4e7){return _0x48ef75===_0x58f4e7;},_0x4efe77[_0x588ed5(0x39f,0x38c,0x35f,0x369)]='ZlMix',_0x4efe77['oNqAR']=function(_0x539031,_0x3f98b3){return _0x539031!==_0x3f98b3;},_0x4efe77[_0x49c1fa(0x1cf,0x23a,_0x441ec0._0x310e69,0x197)]='pMtoK',_0x4efe77[_0x588ed5(0x315,_0x441ec0._0x404a03,0x361,0x333)]=_0x49c1fa(_0x441ec0._0x4b251b,0x1c6,_0x441ec0._0x58671a,_0x441ec0._0x2a60da)+_0x49c1fa(0x1b3,_0x441ec0._0xc6d4e3,_0x441ec0._0x47cc87,0x1fe),_0x4efe77[_0x588ed5(0x417,0x3fc,_0x441ec0._0x5db074,_0x441ec0._0x14699a)]=_0x588ed5(_0x441ec0._0x29e478,0x326,_0x441ec0._0x7bf10a,_0x441ec0._0x29d605)+_0x49c1fa(0x17c,_0x441ec0._0x3b5134,0x160,_0x441ec0._0x30fb6a)+_0x588ed5(0x365,_0x441ec0._0x561e4a,0x3d8,_0x441ec0._0x1c16c5)+_0x49c1fa(_0x441ec0._0x196c94,0x192,0x1d0,0x1c6)+_0x49c1fa(0x243,_0x441ec0._0x20d74f,0x26f,0x22b),_0x4efe77[_0x588ed5(_0x441ec0._0x24a054,_0x441ec0._0xb87e89,0x35e,_0x441ec0._0x3bfa60)]=function(_0x53173c,_0x144eb8){return _0x53173c<_0x144eb8;},_0x4efe77[_0x49c1fa(0x222,_0x441ec0._0x5d845e,0x24a,_0x441ec0._0x1ed69a)]=_0x49c1fa(_0x441ec0._0x340de8,0x288,_0x441ec0._0x6a4f99,0x210)+'short',_0x4efe77[_0x49c1fa(_0x441ec0._0x39f949,_0x441ec0._0x2aa39c,0x2a3,0x2a5)]=_0x49c1fa(_0x441ec0._0x485ed5,0x1f6,_0x441ec0._0x115a00,0x234)+_0x588ed5(0x380,0x334,_0x441ec0._0x1e0801,0x392)+'\x20at\x20least\x20'+_0x49c1fa(0x1aa,_0x441ec0._0x538903,_0x441ec0._0x54f2d0,_0x441ec0._0x1aba17)+'rs',_0x4efe77['dMwDp']=_0x588ed5(0x3f1,0x459,_0x441ec0._0x5af16a,0x378),_0x4efe77[_0x588ed5(_0x441ec0._0x143dd8,_0x441ec0._0x486ff7,_0x441ec0._0xdc5cf2,0x421)]=_0x49c1fa(_0x441ec0._0x1afb3c,_0x441ec0._0x35d532,_0x441ec0._0x13025e,_0x441ec0._0x13de60)+_0x588ed5(_0x441ec0._0x29e478,0x417,_0x441ec0._0x4ee32d,_0x441ec0._0x18ef64)+_0x588ed5(_0x441ec0._0x180784,0x420,_0x441ec0._0x3e2ad5,_0x441ec0._0x14ae80),_0x4efe77[_0x588ed5(0x304,0x3c9,0x374,0x358)]=_0x588ed5(_0x441ec0._0x44aaf8,0x34c,0x3a8,_0x441ec0._0x37274a)+'tion\x20faile'+'d',_0x4efe77[_0x588ed5(_0x441ec0._0x240f6d,0x380,_0x441ec0._0x5bcf9d,_0x441ec0._0x5d2bd0)]=_0x49c1fa(_0x441ec0._0x1afb3c,0x20e,0x1e2,0x1f3)+_0x588ed5(0x437,_0x441ec0._0x4c2159,0x40a,_0x441ec0._0x244fd0)+'A\x20issues';function _0x49c1fa(_0x485083,_0x278fcf,_0x285de9,_0x4fda03){return _0x384950(_0x278fcf,_0x485083- -0x185,_0x285de9-_0x3f3638._0xf3a11e,_0x4fda03-0xc7);}const _0x4aed8c=_0x4efe77;function _0x588ed5(_0x26932c,_0x3b78bb,_0x29ebd6,_0x55e819){return _0x4e9537(_0x26932c-0x111,_0x3b78bb-_0x3c38b._0x44ddee,_0x29ebd6-_0x3c38b._0x1595ce,_0x26932c);}try{if(_0x4aed8c[_0x588ed5(0x450,0x474,_0x441ec0._0x4e3717,0x3ea)](_0x49c1fa(_0x441ec0._0x199530,0x1ba,_0x441ec0._0xe7a23c,_0x441ec0._0x21f4e0),_0x4aed8c[_0x588ed5(0x335,_0x441ec0._0x1431c4,0x35f,0x3c8)])){const _0xf65356={};return _0xf65356[_0x588ed5(0x441,_0x441ec0._0x55b159,0x3ea,_0x441ec0._0x274cd4)]=_0x4aed8c[_0x49c1fa(_0x441ec0._0x3bb7b7,_0x441ec0._0xd2932,_0x441ec0._0x2179a8,0x209)],_0xf65356[_0x49c1fa(0x1e3,0x244,0x1a8,0x1ab)]=_0x5dd76b[_0x49c1fa(0x1e3,_0x441ec0._0xb779a7,0x191,0x175)],_0xb77ef9['status'](0x12e*-0xa+-0x11d1*0x1+0x4*0x7cc)[_0x49c1fa(_0x441ec0._0x35e469,_0x441ec0._0x2235c2,_0x441ec0._0x10a4cc,_0x441ec0._0x8c922e)](_0xf65356);}else{const {query:_0x4237c3,maxResults:maxResults=-0x87d+0x13ff*-0x1+0x1c90}=_0x5009f3['body'];if(!_0x4237c3||_0x4aed8c['oNqAR'](typeof _0x4237c3,_0x49c1fa(0x1b7,0x1aa,0x1f4,0x20a))){if(_0x4aed8c[_0x588ed5(0x410,0x39e,0x406,0x473)](_0x4aed8c[_0x588ed5(_0x441ec0._0x44aaf8,0x33d,_0x441ec0._0xcfa6b6,_0x441ec0._0x3a647e)],_0x4aed8c[_0x49c1fa(_0x441ec0._0xcc3765,0x185,_0x441ec0._0x4bad1f,0x1ba)])){const _0xbfae3c={};return _0xbfae3c['error']=_0x4aed8c[_0x49c1fa(0x183,_0x441ec0._0x3f1c40,0x144,_0x441ec0._0x21ed80)],_0xbfae3c[_0x49c1fa(_0x441ec0._0x2ab7c8,0x1ec,_0x441ec0._0x3a928b,0x25d)]=_0x4aed8c['PpWHp'],_0x310979[_0x588ed5(0x364,0x353,0x3a6,0x332)](-0x87f+0x927+0xe8)[_0x49c1fa(_0x441ec0._0x1e79cc,0x208,0x1c1,_0x441ec0._0x31a847)](_0xbfae3c);}else{const _0x3c9441={};_0x3c9441[_0x588ed5(0x323,0x367,_0x441ec0._0x15298c,_0x441ec0._0x1e087f)]=!!_0x3f18f3,_0x3c9441['baseUrl']=_0x318977?_0x5bcb48[_0x588ed5(_0x441ec0._0x4849c5,0x457,_0x441ec0._0x5e7283,_0x441ec0._0x1acc13)][_0x588ed5(_0x441ec0._0x53efa5,0x3ba,_0x441ec0._0x34364f,_0x441ec0._0x4ee32d)+'URL']:null,_0xaa5963['json'](_0x3c9441);}}if(_0x4aed8c[_0x49c1fa(_0x441ec0._0x5cfa84,_0x441ec0._0x146107,_0x441ec0._0x17a001,0x123)](_0x4237c3['trim']()[_0x588ed5(_0x441ec0._0x1a5d11,0x36a,_0x441ec0._0x24d3e1,_0x441ec0._0x590435)],0x8bd+-0x1ad9*-0x1+-0x18c*0x17)){const _0x40b63e={};return _0x40b63e[_0x588ed5(0x3b0,_0x441ec0._0x54ef72,_0x441ec0._0x35b1bd,_0x441ec0._0x54ef72)]=_0x4aed8c['aWmhc'],_0x40b63e['message']=_0x4aed8c[_0x588ed5(_0x441ec0._0x2a7680,0x3e7,0x409,_0x441ec0._0x38d76b)],_0x310979['status'](0x1da*-0x5+-0x3*-0x3b3+-0x47)[_0x588ed5(_0x441ec0._0x2bdc04,0x354,_0x441ec0._0x3b51ef,_0x441ec0._0x22e080)](_0x40b63e);}logger[_0x588ed5(0x377,_0x441ec0._0x5a923b,_0x441ec0._0x427819,_0x441ec0._0x3787f7)](_0x588ed5(_0x441ec0._0x4f6407,_0x441ec0._0x26f364,0x3b7,_0x441ec0._0x26d792)+_0x49c1fa(0x1f0,_0x441ec0._0x478d32,_0x441ec0._0x5f2503,0x1bd)+_0x4237c3+_0x49c1fa(_0x441ec0._0x423b69,_0x441ec0._0x151e71,_0x441ec0._0x38e00d,0x1c6)+maxResults+')');const _0x3272ef=await jiraClient[_0x588ed5(0x364,0x3f9,0x3af,_0x441ec0._0x35b192)+'es'](_0x4237c3,maxResults);_0x310979[_0x588ed5(_0x441ec0._0x19a444,0x373,0x3a5,_0x441ec0._0x399ae0)](_0x3272ef);}}catch(_0x133630){if(_0x4aed8c['oNqAR'](_0x4aed8c['dMwDp'],_0x4aed8c[_0x588ed5(_0x441ec0._0xb8616b,0x3f9,_0x441ec0._0x5baeb5,0x371)])){const _0x4fc1c6={};return _0x4fc1c6['error']=_0x4aed8c[_0x588ed5(_0x441ec0._0x382692,_0x441ec0._0x40958b,_0x441ec0._0x2dc457,_0x441ec0._0x570166)],_0x4fc1c6['message']=_0x5911c2['message'],_0x50a07f[_0x49c1fa(_0x441ec0._0x3a7453,_0x441ec0._0x16515e,0x1b1,_0x441ec0._0x912ab3)](0xc8b*-0x2+-0x2*-0x116e+-0x419*0x2)[_0x49c1fa(_0x441ec0._0x30d067,0x1b4,0x197,_0x441ec0._0x5f3803)](_0x4fc1c6);}else{logger[_0x49c1fa(0x20c,0x1e2,0x1ab,_0x441ec0._0x54b51c)](_0x4aed8c['QcccV'],_0x133630);if(_0x133630['message'][_0x49c1fa(_0x441ec0._0x478d32,_0x441ec0._0x35334d,0x22e,_0x441ec0._0x4db3c8)](_0x49c1fa(0x249,_0x441ec0._0x2b8fe9,_0x441ec0._0x525b4c,0x1da)+'arch')){const _0x555be6={};return _0x555be6['error']='Invalid\x20se'+'arch\x20query',_0x555be6[_0x49c1fa(0x1e3,0x23b,_0x441ec0._0xd21407,_0x441ec0._0x534fdc)]=_0x133630[_0x588ed5(0x361,0x41b,0x3c1,_0x441ec0._0x579176)],_0x310979['status'](-0x7a5*0x1+0x10*0xb1+-0x1db)[_0x49c1fa(_0x441ec0._0x30d067,0x191,0x239,_0x441ec0._0x14993d)](_0x555be6);}else{if(_0x133630[_0x49c1fa(_0x441ec0._0xcb2982,_0x441ec0._0x5d845e,_0x441ec0._0x191da6,_0x441ec0._0x587251)][_0x588ed5(_0x441ec0._0x2d17ef,0x3d4,_0x441ec0._0x40958b,0x3aa)](_0x4aed8c[_0x49c1fa(_0x441ec0._0x4141aa,0x1d9,_0x441ec0._0x5bcdbb,0x13a)])){const _0x505dd0={};return _0x505dd0[_0x49c1fa(0x20c,0x1ed,_0x441ec0._0x224217,_0x441ec0._0x3132a1)]=_0x49c1fa(_0x441ec0._0xc4dd83,_0x441ec0._0x3ec71d,0x135,0x11b)+_0x49c1fa(0x16d,0x136,0x1ba,_0x441ec0._0x729a87)+'d',_0x505dd0['message']=_0x133630[_0x588ed5(0x348,_0x441ec0._0x19d0d2,_0x441ec0._0x51a265,_0x441ec0._0x393bb5)],_0x310979[_0x588ed5(0x419,0x3ea,0x3a6,_0x441ec0._0x3234e6)](0x1*-0xd3d+0x2*0xa61+-0x5f4)['json'](_0x505dd0);}else{const _0x472089={};return _0x472089[_0x588ed5(_0x441ec0._0x31bcb3,0x454,0x3ea,_0x441ec0._0x5d70d2)]=_0x4aed8c['fFSnG'],_0x472089[_0x49c1fa(_0x441ec0._0x3ca8f4,0x22a,0x1ed,_0x441ec0._0x1ed69a)]=_0x133630[_0x49c1fa(0x1e3,0x19a,_0x441ec0._0x39c3ef,_0x441ec0._0x1ebc07)],_0x310979[_0x49c1fa(_0x441ec0._0x7b4f81,_0x441ec0._0x4839ef,_0x441ec0._0x201985,0x1bc)](0x361+0xc0b*-0x1+0xa9e)[_0x49c1fa(_0x441ec0._0x35e469,_0x441ec0._0x545dcf,0x17b,_0x441ec0._0x10b261)](_0x472089);}}}}}),router[_0x384950(0x31e,0x38f,0x3bd,0x31f)](_0x384950(0x3be,0x3ba,0x3be,0x40d)+_0x384950(0x422,0x3b4,0x414,0x41c)+'s',requireJira,async(_0x406381,_0x4f9519)=>{const _0x48b94e={_0x46a3df:0x3bf,_0x56fd60:0x3be,_0x2baa4b:0x351,_0x68da2a:0x20c,_0x43d2b6:0x49d,_0x699996:0x477,_0xf7679d:0x296,_0x484d2d:0x1fa,_0x1e276c:0x434,_0x2ec0f5:0x485,_0x5a1243:0x283,_0x117828:0x298,_0x39db23:0x2b0,_0x270944:0x27c,_0x195d25:0x2b3,_0x1da1cd:0x408,_0x3500a5:0x492,_0x52c578:0x1a5,_0x163457:0x204,_0x2acdab:0x28d,_0x19e48c:0x239,_0x344a38:0x2ec,_0xec1e95:0x3d3,_0x20e9bb:0x437,_0x5d92e5:0x49d,_0x344810:0x2e7,_0x545424:0x28a,_0x7b859c:0x421,_0x2f68ff:0x2a1,_0x276794:0x2fb,_0x488bfd:0x260,_0x45d4f2:0x2c4,_0x34fff4:0x1f3,_0x3f290e:0x432,_0x4e1507:0x432,_0x5ed8a4:0x3f0,_0x5e9ca7:0x402,_0x36bfa6:0x285,_0x5241c5:0x2b5,_0x301c0c:0x408,_0xf47c2:0x3b6,_0x1db8ae:0x3ac,_0xba3704:0x47d,_0x304b2b:0x407,_0x1ab46f:0x2ad,_0x333d92:0x259,_0x323e86:0x25e,_0x28ad0a:0x2d3,_0x330a0f:0x3d1,_0x3a7828:0x40a,_0x43122e:0x1aa,_0x107b39:0x1ad,_0x2a8d9c:0x281,_0x2669bc:0x419,_0x17af41:0x416,_0x5c8fc5:0x278,_0x223f33:0x25a,_0x816602:0x264,_0x385f2c:0x303,_0x29601e:0x472,_0x3fd3a3:0x3fa,_0x5b8a54:0x48b,_0xb837ca:0x3bc,_0x415f94:0x383,_0x57bb18:0x425,_0x153555:0x437,_0x45a7ab:0x4b9,_0x184fa8:0x22e,_0x485718:0x41d,_0x275391:0x3b7,_0x11a0a0:0x394,_0x32b745:0x3ec,_0x5c8339:0x3d5,_0x4ad5e8:0x396,_0x90c02c:0x2f1,_0x17143f:0x26e,_0x48b586:0x27b,_0x21553d:0x268,_0x551c60:0x233,_0x3f9f3c:0x38d,_0x43a74f:0x3f9,_0x4ceb49:0x40e,_0xc11205:0x428,_0x4a1be1:0x3e2,_0x2867ab:0x400,_0x109ce6:0x3c6,_0x5406a8:0x3e1,_0x2d94bd:0x3af,_0x173993:0x261,_0x31be61:0x21a,_0x3dbb56:0x357,_0x1fa4b3:0x3bb,_0xeab076:0x3e2,_0x4a8ddc:0x3e6,_0x107ca2:0x216,_0x340cef:0x260,_0x2653f8:0x245,_0x53ae44:0x3de,_0x1f38bc:0x471,_0x38ea9f:0x4a4,_0x3bdc60:0x416,_0x55247c:0x452,_0x453b3b:0x3eb,_0x92bcf2:0x426,_0x1733ff:0x443,_0x213ec7:0x26f,_0x2d4840:0x28b,_0x386183:0x45f,_0x1a7aa7:0x43c,_0x10b64b:0x284,_0x559a09:0x28a,_0x3a7323:0x393,_0x5e1dc2:0x403,_0x747c47:0x423,_0xebf9bd:0x40d,_0x2d1f4c:0x487,_0x588c51:0x406,_0x3ef16d:0x36f,_0x302a06:0x3b0,_0x2b7889:0x37c,_0x1399db:0x3a1,_0xafb822:0x280,_0x3352df:0x44a,_0x56fd9b:0x46e,_0x1fff44:0x409,_0x1bab07:0x44b,_0x3d318b:0x430,_0x4548d6:0x403,_0x35ae52:0x407,_0xfd9685:0x40b,_0x26f144:0x391,_0x176eb7:0x2c7,_0x208018:0x48e,_0x1ea333:0x44f,_0x452ad9:0x1da,_0x2e6969:0x226,_0x4e32db:0x2a5,_0x2c0f83:0x3d4,_0x46f24d:0x46b,_0x3f7661:0x3ad,_0x52b832:0x418,_0x3fec9a:0x411,_0x3b002e:0x433,_0x5a3645:0x261,_0x367046:0x1f7,_0x1d03b8:0x25d,_0x2cd753:0x29f,_0x103fb8:0x4e6,_0x36403c:0x2da,_0x30f4c6:0x328,_0x237ba1:0x372,_0x26bdfe:0x378,_0x45a4a5:0x3ad,_0x1b48cf:0x3f6,_0x1af9f2:0x3e5,_0x22a81e:0x21e,_0x2f063c:0x4a8,_0x34e313:0x3f9,_0x323818:0x3b2,_0x1e1d94:0x43b,_0x4a4685:0x46f,_0x3f7333:0x467,_0x27fed7:0x3fa,_0x371d19:0x460,_0x37e954:0x423,_0x2e677a:0x3bd,_0x2a7a23:0x3dd,_0x12e7d2:0x3cb,_0xd11fdd:0x488,_0xf2e825:0x463},_0x810b5c={_0x1a750c:0x73,_0x3b887c:0x1a4},_0x30a44b={_0x1f285f:0xbe,_0x19054f:0x12},_0x5945fa={'HVXwG':'JIRA\x20integ'+'ration\x20not'+_0x5c9939(0x3de,_0x48b94e._0x46a3df,_0x48b94e._0x56fd60,_0x48b94e._0x2baa4b),'eJsoD':'JIRA\x20integ'+_0x2e6fbc(0x22e,0x239,_0x48b94e._0x68da2a,0x27d)+_0x5c9939(_0x48b94e._0x43d2b6,0x45a,_0x48b94e._0x699996,0x41a)+_0x2e6fbc(0x263,_0x48b94e._0xf7679d,0x2b0,_0x48b94e._0x484d2d)+'is\x20server.'+_0x5c9939(0x476,0x461,_0x48b94e._0x1e276c,_0x48b94e._0x2ec0f5)+_0x2e6fbc(0x202,0x271,0x206,0x1f5)+'\x20administr'+_0x2e6fbc(_0x48b94e._0x5a1243,_0x48b94e._0x117828,0x251,_0x48b94e._0x39db23),'myYqq':function(_0x439566){return _0x439566();},'JkhqN':_0x2e6fbc(0x240,0x290,0x1ea,0x22a)+_0x2e6fbc(_0x48b94e._0x270944,0x296,0x2a3,_0x48b94e._0x195d25)+_0x5c9939(_0x48b94e._0x1da1cd,0x495,0x44b,0x441),'uzYPO':'Authentica'+'tion\x20faile'+'d','CcIAH':_0x5c9939(_0x48b94e._0x3500a5,0x431,0x41f,0x441)+'sue\x20key\x20fo'+'rmat','Qoatt':_0x2e6fbc(0x20c,0x202,_0x48b94e._0x52c578,_0x48b94e._0x163457)+_0x2e6fbc(_0x48b94e._0x2acdab,0x279,_0x48b94e._0x19e48c,_0x48b94e._0x344a38)+_0x5c9939(_0x48b94e._0xec1e95,0x492,_0x48b94e._0x20e9bb,_0x48b94e._0x5d92e5)+_0x2e6fbc(_0x48b94e._0x344810,0x2bc,_0x48b94e._0x545424,0x2c8),'rIxTC':function(_0xb2be1c,_0x42a1f0){return _0xb2be1c!==_0x42a1f0;},'rKTak':_0x5c9939(0x39a,0x469,0x3f0,0x3f8),'fVDfS':_0x5c9939(0x4ae,_0x48b94e._0x7b859c,0x455,0x49f),'HMQvm':function(_0x4dd4fa,_0x1b4034){return _0x4dd4fa===_0x1b4034;},'nKYMS':_0x2e6fbc(_0x48b94e._0x2f68ff,0x2c0,0x2bb,_0x48b94e._0x276794),'LVwWY':_0x2e6fbc(_0x48b94e._0x488bfd,0x274,_0x48b94e._0x45d4f2,_0x48b94e._0x34fff4)+_0x5c9939(0x447,_0x48b94e._0x3f290e,0x442,_0x48b94e._0x4e1507),'doegj':function(_0x46f121,_0x54375e){return _0x46f121!==_0x54375e;},'QpFQn':_0x2e6fbc(0x207,0x23a,0x27f,0x21e),'PpsJZ':'Permission'+_0x2e6fbc(0x282,0x2fa,0x234,0x2ba),'gKfIJ':_0x5c9939(0x3e4,0x3ba,0x3e2,0x396)+_0x5c9939(0x475,_0x48b94e._0x5ed8a4,0x46a,_0x48b94e._0x5e9ca7)+_0x2e6fbc(_0x48b94e._0x36bfa6,0x2e2,0x28a,0x2fa)};function _0x5c9939(_0x57607d,_0x32a705,_0x3efe32,_0x11dbed){return _0x384950(_0x32a705,_0x3efe32-_0x30a44b._0x1f285f,_0x3efe32-_0x30a44b._0x19054f,_0x11dbed-0x2d);}function _0x2e6fbc(_0x5b2a59,_0xed4d61,_0x120b14,_0x206b07){return _0x4e9537(_0x5b2a59-_0x810b5c._0x1a750c,_0xed4d61-0x1e6,_0x5b2a59-_0x810b5c._0x3b887c,_0x120b14);}try{const _0x33fb98=_0x406381['params']['key'][_0x2e6fbc(0x241,0x1e1,0x223,_0x48b94e._0x5241c5)]()[_0x5c9939(0x399,_0x48b94e._0x301c0c,_0x48b94e._0xf47c2,_0x48b94e._0x1db8ae)+'e']();if(!/^[A-Z]+-\d+$/i[_0x5c9939(_0x48b94e._0xba3704,0x44e,_0x48b94e._0x304b2b,0x417)](_0x33fb98)){const _0x4bc8f6={};return _0x4bc8f6[_0x2e6fbc(_0x48b94e._0x1ab46f,0x25d,0x316,0x2d4)]=_0x5945fa[_0x2e6fbc(_0x48b94e._0x333d92,0x1f6,0x2c9,0x215)],_0x4bc8f6['message']=_0x5945fa[_0x2e6fbc(_0x48b94e._0x45d4f2,_0x48b94e._0x323e86,0x287,_0x48b94e._0x28ad0a)],_0x4f9519['status'](-0xa00+0x40b*-0x3+0x1*0x17b1)[_0x5c9939(_0x48b94e._0x330a0f,0x472,_0x48b94e._0x3a7828,0x3a1)](_0x4bc8f6);}logger[_0x2e6fbc(0x211,_0x48b94e._0x43122e,_0x48b94e._0x107b39,_0x48b94e._0x2a8d9c)]('Fetching\x20c'+'omments\x20fo'+_0x5c9939(0x422,_0x48b94e._0x2669bc,0x408,_0x48b94e._0x17af41)+_0x2e6fbc(_0x48b94e._0x5c8fc5,_0x48b94e._0x223f33,_0x48b94e._0x816602,0x2cc)+_0x33fb98);const _0x525867=await jiraClient[_0x2e6fbc(0x2c5,0x2eb,_0x48b94e._0x385f2c,0x28a)+'s'](_0x33fb98),_0x182094={};_0x182094[_0x5c9939(_0x48b94e._0x29601e,_0x48b94e._0x3fd3a3,0x454,_0x48b94e._0x5b8a54)]=_0x525867[_0x5c9939(0x365,_0x48b94e._0x2baa4b,_0x48b94e._0xb837ca,_0x48b94e._0x415f94)],_0x182094[_0x5c9939(_0x48b94e._0x57bb18,_0x48b94e._0x153555,0x440,_0x48b94e._0x45a7ab)]=_0x525867,_0x4f9519[_0x2e6fbc(0x268,0x231,_0x48b94e._0x184fa8,0x246)](_0x182094);}catch(_0x238527){if(_0x5945fa[_0x5c9939(0x3b7,_0x48b94e._0x485718,0x3b7,_0x48b94e._0x275391)](_0x5945fa[_0x5c9939(_0x48b94e._0x11a0a0,0x425,_0x48b94e._0x32b745,0x408)],_0x5c9939(0x456,_0x48b94e._0x5c8339,0x3f0,_0x48b94e._0x4ad5e8))){if(!_0x551c28){const _0x2b6068={};return _0x2b6068[_0x2e6fbc(_0x48b94e._0x1ab46f,_0x48b94e._0x90c02c,0x249,_0x48b94e._0x17143f)]=_0x5945fa['HVXwG'],_0x2b6068['message']=_0x5945fa[_0x2e6fbc(_0x48b94e._0x48b586,_0x48b94e._0x28ad0a,0x29c,0x2e4)],_0x34abbb[_0x5c9939(0x42c,0x41c,0x40b,0x462)](0x257a+-0x49c+-0x1ee7)[_0x2e6fbc(_0x48b94e._0x21553d,0x203,0x210,_0x48b94e._0x551c60)](_0x2b6068);}_0x5945fa[_0x5c9939(_0x48b94e._0x3f9f3c,_0x48b94e._0x43a74f,0x3e1,0x3f8)](_0x5cee55);}else{logger[_0x2e6fbc(0x2ad,0x30d,0x233,_0x48b94e._0x816602)](_0x5c9939(_0x48b94e._0x4ceb49,_0x48b94e._0xc11205,_0x48b94e._0x4a1be1,0x446)+_0x2e6fbc(0x217,_0x48b94e._0x2a8d9c,0x1ce,0x201)+_0x5c9939(0x431,0x41d,_0x48b94e._0x2867ab,_0x48b94e._0x109ce6),_0x238527);if(_0x238527[_0x5c9939(_0x48b94e._0x5406a8,_0x48b94e._0x2d94bd,0x426,0x3c0)][_0x2e6fbc(_0x48b94e._0x173993,_0x48b94e._0x545424,_0x48b94e._0x31be61,0x282)](_0x5945fa[_0x5c9939(_0x48b94e._0x3dbb56,0x3fc,_0x48b94e._0x1fa4b3,_0x48b94e._0xeab076)])){if(_0x5945fa[_0x5c9939(0x446,0x414,_0x48b94e._0x4a8ddc,0x3c6)](_0x5945fa['nKYMS'],_0x5945fa[_0x2e6fbc(_0x48b94e._0x107ca2,_0x48b94e._0x340cef,0x234,_0x48b94e._0x2653f8)])){const _0x47e31e={};return _0x47e31e[_0x5c9939(_0x48b94e._0x53ae44,_0x48b94e._0x1f38bc,0x44f,0x424)]=_0x5945fa[_0x5c9939(_0x48b94e._0x38ea9f,_0x48b94e._0x3bdc60,_0x48b94e._0x55247c,0x42e)],_0x47e31e[_0x5c9939(_0x48b94e._0x453b3b,0x45b,_0x48b94e._0x92bcf2,_0x48b94e._0x1733ff)]=_0x238527[_0x2e6fbc(0x284,0x28e,0x238,_0x48b94e._0x213ec7)],_0x4f9519[_0x2e6fbc(0x269,_0x48b94e._0x2d4840,0x202,0x220)](-0x1*0x665+0x212e+-0x1935)[_0x5c9939(_0x48b94e._0x386183,_0x48b94e._0x46a3df,_0x48b94e._0x3a7828,_0x48b94e._0x1a7aa7)](_0x47e31e);}else return _0x3afbad;}else{if(_0x238527[_0x2e6fbc(_0x48b94e._0x10b64b,_0x48b94e._0x559a09,0x253,0x2d2)][_0x5c9939(0x450,_0x48b94e._0x3a7323,_0x48b94e._0x5e1dc2,_0x48b94e._0x7b859c)](_0x5c9939(_0x48b94e._0x747c47,0x3e3,_0x48b94e._0xebf9bd,_0x48b94e._0x2d1f4c)+_0x5c9939(_0x48b94e._0x588c51,_0x48b94e._0x3ef16d,_0x48b94e._0x302a06,0x3d1)+'d')){if(_0x5945fa[_0x5c9939(_0x48b94e._0x2b7889,0x403,_0x48b94e._0x1399db,_0x48b94e._0x588c51)](_0x5945fa['QpFQn'],_0x2e6fbc(0x207,0x20c,0x19d,_0x48b94e._0xafb822))){const _0x3d5d8e={};return _0x3d5d8e[_0x5c9939(0x3db,0x415,0x44f,_0x48b94e._0x3352df)]=_0x5945fa[_0x5c9939(_0x48b94e._0x56fd9b,0x473,_0x48b94e._0x1fff44,_0x48b94e._0x1bab07)],_0x3d5d8e['message']=_0x4debe9[_0x5c9939(_0x48b94e._0x3d318b,0x3d9,_0x48b94e._0x92bcf2,_0x48b94e._0x4548d6)],_0x4d7d8e[_0x5c9939(0x3ff,_0x48b94e._0x35ae52,_0x48b94e._0xfd9685,_0x48b94e._0x26f144)](0xbe6*0x1+-0x1*-0x2f9+-0xceb)[_0x2e6fbc(_0x48b94e._0x21553d,0x2b6,_0x48b94e._0x176eb7,0x266)](_0x3d5d8e);}else{const _0x1df787={};return _0x1df787[_0x5c9939(_0x48b94e._0x208018,0x47a,_0x48b94e._0x1ea333,0x4a9)]=_0x5945fa[_0x2e6fbc(0x231,0x24c,_0x48b94e._0x452ad9,0x1f0)],_0x1df787[_0x2e6fbc(_0x48b94e._0x10b64b,0x2fc,_0x48b94e._0x2e6969,_0x48b94e._0x4e32db)]=_0x238527[_0x5c9939(_0x48b94e._0x2c0f83,0x42e,0x426,_0x48b94e._0x46f24d)],_0x4f9519[_0x5c9939(_0x48b94e._0x3f7661,0x396,0x40b,0x430)](0x1681+0x89c+0x7c*-0x3d)[_0x5c9939(_0x48b94e._0x52b832,0x3ac,0x40a,_0x48b94e._0x3fec9a)](_0x1df787);}}else{if(_0x238527[_0x5c9939(_0x48b94e._0x3b002e,0x3ce,_0x48b94e._0x92bcf2,0x40f)][_0x2e6fbc(_0x48b94e._0x5a3645,_0x48b94e._0x367046,_0x48b94e._0x1d03b8,_0x48b94e._0x2cd753)](_0x5c9939(0x4a1,0x44f,0x487,_0x48b94e._0x103fb8)+_0x2e6fbc(_0x48b94e._0x36403c,_0x48b94e._0x30f4c6,0x29a,0x26d))){if(_0x5945fa[_0x5c9939(_0x48b94e._0x237ba1,_0x48b94e._0x26bdfe,_0x48b94e._0x4a8ddc,0x3c2)](_0x5c9939(_0x48b94e._0x237ba1,0x381,_0x48b94e._0x45a4a5,0x41a),'lcGre')){const _0xb4c239={};return _0xb4c239[_0x5c9939(_0x48b94e._0x1b48cf,0x443,_0x48b94e._0x1ea333,_0x48b94e._0x1af9f2)]=_0x5945fa['PpsJZ'],_0xb4c239[_0x2e6fbc(_0x48b94e._0x10b64b,_0x48b94e._0x22a81e,0x2d9,0x2d1)]=_0x238527[_0x2e6fbc(0x284,0x2cc,0x211,0x20e)],_0x4f9519['status'](-0xbf9*-0x2+-0x923*-0x4+0x3aeb*-0x1)[_0x2e6fbc(_0x48b94e._0x21553d,0x280,0x295,0x266)](_0xb4c239);}else{const _0x4edd86={};return _0x4edd86[_0x5c9939(_0x48b94e._0x2f063c,_0x48b94e._0x34e313,0x44f,0x3e5)]=_0x5945fa[_0x5c9939(_0x48b94e._0x323818,0x35a,0x3d3,0x3b6)],_0x4edd86['message']=_0x5e1dcc[_0x5c9939(_0x48b94e._0x1e1d94,_0x48b94e._0x4a4685,0x426,0x48b)],_0x534c22[_0x5c9939(_0x48b94e._0x3f7333,_0x48b94e._0x27fed7,_0x48b94e._0xfd9685,_0x48b94e._0x371d19)](0x76*0x53+0x19d6+-0x3e87)[_0x5c9939(_0x48b94e._0x37e954,0x43e,0x40a,0x44d)](_0x4edd86);}}else{const _0x3152cf={};return _0x3152cf[_0x5c9939(_0x48b94e._0xba3704,0x447,0x44f,0x43c)]=_0x5945fa[_0x5c9939(_0x48b94e._0x2e677a,0x40a,_0x48b94e._0x2a7a23,0x3c5)],_0x3152cf[_0x5c9939(_0x48b94e._0x12e7d2,_0x48b94e._0xd11fdd,0x426,0x460)]=_0x238527['message'],_0x4f9519[_0x5c9939(_0x48b94e._0xf2e825,0x435,0x40b,0x420)](0x179c+-0xe5a+-0x37*0x22)['json'](_0x3152cf);}}}}}}),router[_0x384950(0x305,0x2fc,0x361,0x34d)]('/issues/:k'+'ey/comment',requireJira,async(_0xec35e1,_0xc3e598)=>{const _0x3c969f={_0x2f1563:0x19d,_0x1efb5a:0xf3,_0x2022fd:0x138,_0x2ccff1:0x18b,_0x1248c4:0x1c6,_0x125207:0x1b2,_0x124e93:0x1cd,_0x486a8c:0x172,_0x11ec1e:0x1d0,_0x696ac7:0x19a,_0x427648:0x1b7,_0x468ac6:0x171,_0x3257c1:0x151,_0x10ea9d:0x23e,_0x40fbe8:0x25c,_0x3d2d27:0x17b,_0x14a2c4:0x17d,_0x4480e1:0x15d,_0x1a3844:0x1b4,_0x1cab51:0x224,_0x5c585e:0x1ab,_0x16b7a3:0x1b5,_0x8f225b:0x241,_0x3a68f8:0x20c,_0x1a6df9:0x170,_0x6091e8:0x22e,_0x47c967:0x24f,_0x3ab653:0x236,_0x4b071c:0x1c5,_0x18c3fa:0x1f6,_0x4989ae:0xf5,_0x3f5e6a:0x121,_0x2e6685:0x111,_0x5003ca:0x17a,_0x439ced:0x135,_0x2ee60b:0x215,_0x2cd97d:0x164,_0xf91e91:0x1de,_0x9b9b38:0x1d2,_0x5c3086:0x1dc,_0x929a53:0x1af,_0x1db7c0:0x12b,_0x5f40a6:0x159,_0xfb5625:0x18f,_0x11383b:0x26a,_0x541ac3:0x1b8,_0x220e72:0x1cf,_0x2174e3:0x1a7,_0x51d9a9:0x205,_0x3d1b5d:0x168,_0x4e7e33:0x206,_0xe4eeff:0x1a5,_0x30201c:0x12a,_0x4772bf:0x18b,_0x215ed2:0x204,_0x2c80d8:0x198,_0x4a0d63:0x136,_0x1394f8:0x164,_0x2b5c6f:0x14d,_0x535957:0x1a6,_0x50cc61:0x14f,_0x4ba55a:0x227,_0x52f438:0x240,_0x214ee6:0x1e6,_0x1ca228:0x172,_0x5eec3c:0x274,_0x5c11ba:0x215,_0x58a0c9:0x217,_0x3b0d80:0x1f5,_0x28bad4:0x1ac,_0x3acaaf:0x1d9,_0x306a57:0x207,_0x319961:0x245,_0x190520:0x261,_0x286e3a:0x19b,_0x36a267:0x261,_0x1f761a:0x1f2,_0x54e011:0x1b4,_0x289f55:0x196,_0x23390c:0x17a,_0x394fa9:0x225,_0x45da78:0x1b0,_0x1d4ba6:0x1f8,_0x436022:0x1a4,_0x8c322d:0x1d4,_0x36f282:0x11c,_0x8d7d70:0x10b,_0x2af9d0:0x1bc,_0x640f5b:0x158,_0x8f9fc3:0x195,_0x38b3c3:0x1da,_0x2b3477:0x203,_0xc4a421:0x19c,_0x123d46:0x1ce,_0x30ae5a:0x1d8,_0x5521ea:0x1f9,_0x635e50:0x19f,_0x32028e:0x1f6,_0x43df52:0x132,_0x3282e0:0x16f,_0x2e7db7:0x18b,_0x2c2ea2:0x266,_0x1b2485:0x11e,_0x2ce4d6:0x13c,_0x3ed411:0x1ca,_0x384fff:0x261,_0x187281:0x255,_0x517aa3:0x118,_0xb1d845:0x158,_0x32b6af:0x194,_0x333171:0x1c0,_0x4da0e3:0x181,_0x5e3f7e:0x215,_0x9d5357:0x18d,_0x4216b7:0x16c,_0x12f2c0:0x102,_0x4a770b:0x108,_0x51d4ab:0x15e,_0x32d05a:0x1dc,_0x3065bf:0x21d,_0x3525ae:0x25a,_0x51c96e:0x1eb,_0x5f2676:0x144,_0x267736:0x1b5,_0x8b7e96:0x19f,_0x13bbfe:0x19c,_0x245288:0x1a9,_0x53543a:0x286,_0x55498e:0x1f3,_0x268a0b:0x26c,_0x1a76b4:0x1a8,_0x4caa12:0x15c,_0x85fa54:0x1cd,_0x63665c:0x22c,_0xe0beee:0x1d2,_0x2c069c:0xb8,_0x4f6087:0x162,_0x5ae437:0x119,_0x49c148:0x23d,_0x3857af:0x1e8,_0x53b732:0x139,_0x44c7ab:0x167,_0x4532a6:0x117,_0x2a0960:0x1b9,_0x57d7bb:0x1b3,_0xf99c09:0x1f3,_0x551ae1:0x1d2,_0x30b574:0x226,_0x33c706:0x192,_0x1e1c36:0x217,_0x3f9146:0xed,_0x1928dc:0x109,_0x4d3c60:0x158,_0x2f0c38:0x262,_0x45867a:0x1c7,_0x31ba5a:0x203,_0x1a66e0:0x21a,_0x517595:0x16e,_0x2f5a77:0x152,_0x2a1450:0x170,_0x4faacb:0x1d7,_0x462a5a:0x12b,_0x21e63d:0x1ef,_0x355def:0x256,_0x14c52f:0x1e0,_0x242421:0x1d8,_0x3d06d0:0x1d1,_0x1bc3be:0x186,_0x2b57a8:0x1c5,_0x187fef:0xbf,_0x1fbf13:0x128,_0x15d5cb:0x1aa,_0x1d4429:0x21f,_0xd236f:0x144,_0x4a8e19:0x208,_0x35d8a0:0x1da,_0xa26c29:0x130,_0x58d892:0x19d,_0x2070c8:0x1e7,_0x25cd7f:0x202,_0x1fd499:0x1f4,_0xf917ad:0x1e0,_0x297de2:0x20b,_0x1ddcaf:0x26b,_0x30e6c5:0x223,_0x4d8b57:0x235,_0x141d03:0x171,_0x4af8d6:0x15d,_0x5dfa2d:0x188,_0x19bab7:0x182,_0x4c6e00:0x158,_0x5760a2:0x1e5,_0x366ff0:0x1a2,_0x354154:0x1c5,_0x48edf0:0x21a,_0x5080d4:0x15c,_0x520501:0x239,_0x43252c:0x139,_0x5778cc:0x179,_0x51b120:0x231,_0x591573:0x26e,_0x2f5317:0x1fe,_0x3075b0:0x14e,_0x513b1c:0x247,_0x26a194:0x203,_0x58a9db:0x1c2,_0x340681:0x19c,_0x20b570:0x20f,_0x2ad048:0x161,_0x4383d9:0x280,_0x5117ed:0x268,_0x15c877:0x243,_0x54d6ec:0x1ac,_0x79e243:0x1fa,_0x483aa3:0x145,_0x1c237c:0x202},_0x877234={_0x1ff921:0x1ca,_0x544e50:0xdf},_0x55c4a7={_0x55c032:0x19f,_0x1ee870:0x45},_0x853985={};_0x853985['bsStx']=_0x2e8ab3(0x1c8,0x17b,0x1c2,0x1bf)+_0x5d0984(-_0x3c969f._0x2f1563,-0x11f,-_0x3c969f._0x1efb5a,-_0x3c969f._0x2022fd)+_0x5d0984(-_0x3c969f._0x2ccff1,-_0x3c969f._0x1248c4,-0x1ba,-0x194),_0x853985['LcqJz']='Invalid\x20se'+_0x2e8ab3(_0x3c969f._0x125207,0x17d,_0x3c969f._0x124e93,0x1d3),_0x853985[_0x2e8ab3(0x1ec,_0x3c969f._0x125207,0x1da,0x1f3)]=_0x5d0984(-0x141,-_0x3c969f._0x486a8c,-_0x3c969f._0x11ec1e,-_0x3c969f._0x696ac7)+_0x2e8ab3(0x1d7,_0x3c969f._0x427648,_0x3c969f._0x468ac6,0x18d)+'d',_0x853985[_0x5d0984(-0x185,-0x1ba,-0xea,-_0x3c969f._0x3257c1)]=_0x2e8ab3(0x219,0x17c,0x192,0x1bf)+_0x5d0984(-0x196,-0xfc,-0x17e,-_0x3c969f._0x2022fd)+_0x2e8ab3(_0x3c969f._0x10ea9d,0x26a,0x21c,_0x3c969f._0x40fbe8);function _0x2e8ab3(_0x22169e,_0x1abb0b,_0xf43fdf,_0x4a7d00){return _0x4e9537(_0x22169e-_0x55c4a7._0x55c032,_0x1abb0b-_0x55c4a7._0x1ee870,_0x4a7d00-0x123,_0x22169e);}_0x853985[_0x2e8ab3(0x241,0x252,0x1fd,0x25b)]=_0x5d0984(-0x15a,-_0x3c969f._0x125207,-0x15b,-_0x3c969f._0x3d2d27)+_0x5d0984(-0x116,-0x109,-_0x3c969f._0x14a2c4,-_0x3c969f._0x4480e1)+'bled\x20from\x20'+'coder-setu'+'p',_0x853985[_0x2e8ab3(_0x3c969f._0x1a3844,_0x3c969f._0x1cab51,_0x3c969f._0x5c585e,_0x3c969f._0x16b7a3)]=_0x2e8ab3(0x119,0x1e7,0x192,_0x3c969f._0x2ccff1)+_0x2e8ab3(0x198,0x19f,_0x3c969f._0x8f225b,_0x3c969f._0x3a68f8)+_0x5d0984(-0x123,-0x125,-0x1ad,-_0x3c969f._0x1a6df9)+'OJECT-123',_0x853985[_0x2e8ab3(_0x3c969f._0x6091e8,_0x3c969f._0x47c967,_0x3c969f._0x3ab653,0x26c)]=function(_0xb71e28,_0x4831c3){return _0xb71e28!==_0x4831c3;},_0x853985[_0x5d0984(-0x238,-_0x3c969f._0x4b071c,-_0x3c969f._0x18c3fa,-0x1f3)]='string',_0x853985['qUoeA']=function(_0xc61b60,_0x4b403a){return _0xc61b60===_0x4b403a;},_0x853985[_0x5d0984(-_0x3c969f._0x4989ae,-_0x3c969f._0x3f5e6a,-_0x3c969f._0x2e6685,-0x15e)]=_0x5d0984(-0x16a,-_0x3c969f._0x5003ca,-_0x3c969f._0x439ced,-0x12e)+_0x5d0984(-_0x3c969f._0x2ee60b,-_0x3c969f._0x2cd97d,-0x21a,-_0x3c969f._0xf91e91),_0x853985['ASYoC']=_0x2e8ab3(_0x3c969f._0x9b9b38,_0x3c969f._0x5c3086,_0x3c969f._0x468ac6,_0x3c969f._0x929a53)+'vide\x20a\x20com'+_0x2e8ab3(0x1cd,_0x3c969f._0x1db7c0,_0x3c969f._0x5f40a6,_0x3c969f._0xfb5625)+_0x5d0984(-0xf5,-0x18f,-0xbf,-0x12d)+_0x5d0984(-0x172,-0x22f,-0x1db,-0x1d9),_0x853985[_0x5d0984(-0xf1,-0x196,-0xab,-0x122)]='Failed\x20to\x20'+_0x2e8ab3(_0x3c969f._0x11383b,0x1b3,0x25d,0x21e)+_0x2e8ab3(0x1f2,0x233,_0x3c969f._0x541ac3,_0x3c969f._0x220e72);function _0x5d0984(_0x356716,_0x24d5bb,_0x25782f,_0x126b5e){return _0x4e9537(_0x356716-_0x877234._0x1ff921,_0x24d5bb-_0x877234._0x544e50,_0x126b5e- -0x261,_0x356716);}_0x853985[_0x2e8ab3(0x18b,0x206,0x190,_0x3c969f._0x2174e3)]=_0x5d0984(-_0x3c969f._0x51d9a9,-_0x3c969f._0x3d1b5d,-_0x3c969f._0x4e7e33,-_0x3c969f._0xe4eeff)+_0x5d0984(-_0x3c969f._0x30201c,-_0x3c969f._0x4772bf,-0x12b,-0x165),_0x853985[_0x5d0984(-0x1e0,-0x1a6,-0x12a,-0x17d)]=function(_0x546f73,_0x3f9475){return _0x546f73===_0x3f9475;},_0x853985[_0x5d0984(-0x20a,-0x27b,-0x26a,-_0x3c969f._0x215ed2)]=_0x2e8ab3(0x1d1,_0x3c969f._0x2c80d8,0x1d1,0x184),_0x853985[_0x5d0984(-_0x3c969f._0x4a0d63,-0xee,-_0x3c969f._0x1394f8,-_0x3c969f._0x2b5c6f)]='No\x20permiss'+'ion',_0x853985[_0x5d0984(-0x131,-0x171,-_0x3c969f._0x535957,-_0x3c969f._0x50cc61)]=function(_0x50cd32,_0x40628e){return _0x50cd32!==_0x40628e;},_0x853985[_0x2e8ab3(0x24a,0x2a2,_0x3c969f._0x4ba55a,_0x3c969f._0x52f438)]='zbuGL',_0x853985['wxPLk']=_0x5d0984(-0x232,-0x1a0,-_0x3c969f._0x214ee6,-_0x3c969f._0x214ee6)+_0x5d0984(-_0x3c969f._0x1ca228,-0x133,-0x159,-0x183),_0x853985[_0x2e8ab3(_0x3c969f._0x5eec3c,_0x3c969f._0x5c11ba,_0x3c969f._0x58a0c9,0x265)]=_0x2e8ab3(_0x3c969f._0x3b0d80,0x1bf,_0x3c969f._0x28bad4,0x1bf)+_0x5d0984(-0x26a,-0x23d,-_0x3c969f._0x3acaaf,-_0x3c969f._0x306a57)+'nt';const _0x34b9e3=_0x853985;try{const _0x32e34c=_0xec35e1[_0x2e8ab3(_0x3c969f._0x319961,0x26a,_0x3c969f._0x190520,0x219)][_0x2e8ab3(_0x3c969f._0x286e3a,_0x3c969f._0x36a267,0x1a5,_0x3c969f._0x1f761a)]['trim']()['toUpperCas'+'e'](),{comment:_0x37f38c}=_0xec35e1[_0x2e8ab3(_0x3c969f._0x54e011,0x1ed,0x20f,0x1ab)];if(!/^[A-Z]+-\d+$/i[_0x2e8ab3(_0x3c969f._0x289f55,0x245,0x18e,0x1e4)](_0x32e34c)){if(_0x2e8ab3(0x1b4,_0x3c969f._0x23390c,0x16f,0x1d4)!==_0x5d0984(-0x186,-0x1a7,-_0x3c969f._0x394fa9,-0x1b0)){_0x340344['error'](_0x34b9e3[_0x5d0984(-_0x3c969f._0x45da78,-_0x3c969f._0x1d4ba6,-0x154,-0x1c9)],_0x1077e0);if(_0x56acfb['message'][_0x5d0984(-0x131,-0x202,-0x15c,-_0x3c969f._0x436022)](_0x5d0984(-0x14e,-0x161,-0xf1,-0x11b)+_0x2e8ab3(_0x3c969f._0x8c322d,_0x3c969f._0x36f282,0x16c,0x17b))){const _0xb707ac={};return _0xb707ac[_0x5d0984(-0x10a,-_0x3c969f._0x8d7d70,-_0x3c969f._0x2af9d0,-_0x3c969f._0x640f5b)]=_0x34b9e3['LcqJz'],_0xb707ac[_0x2e8ab3(0x22e,_0x3c969f._0x8f9fc3,_0x3c969f._0x38b3c3,_0x3c969f._0x2b3477)]=_0x1bcadd['message'],_0x4847ab[_0x5d0984(-_0x3c969f._0x535957,-_0x3c969f._0x214ee6,-0x125,-_0x3c969f._0xc4a421)](0x3*-0x269+0x1af9+-0xd*0x166)['json'](_0xb707ac);}else{if(_0x92f739[_0x2e8ab3(_0x3c969f._0x123d46,0x209,_0x3c969f._0x30ae5a,0x203)][_0x2e8ab3(_0x3c969f._0x5521ea,_0x3c969f._0x635e50,_0x3c969f._0x32028e,0x1e0)](_0x34b9e3[_0x5d0984(-0x1b0,-0x195,-0x11a,-0x191)])){const _0x2e2061={};return _0x2e2061[_0x5d0984(-_0x3c969f._0x43df52,-_0x3c969f._0x3282e0,-0x133,-0x158)]='Authentica'+_0x5d0984(-_0x3c969f._0x2e7db7,-_0x3c969f._0x2c2ea2,-0x270,-0x1f7)+'d',_0x2e2061['message']=_0x3a6eae[_0x5d0984(-_0x3c969f._0x1b2485,-_0x3c969f._0x2ce4d6,-0x157,-0x181)],_0x541fc3[_0x5d0984(-0x155,-0x1b1,-0x1c0,-0x19c)](-0xac9+-0x19ab+0x2605)[_0x2e8ab3(_0x3c969f._0x3ed411,_0x3c969f._0x384fff,_0x3c969f._0x187281,0x1e7)](_0x2e2061);}else{const _0x5e6ada={};return _0x5e6ada[_0x5d0984(-_0x3c969f._0x517aa3,-0x10b,-0x1a8,-_0x3c969f._0xb1d845)]=_0x34b9e3[_0x5d0984(-0x127,-0xd8,-_0x3c969f._0x32b6af,-0x151)],_0x5e6ada[_0x5d0984(-_0x3c969f._0x28bad4,-_0x3c969f._0x333171,-0x182,-_0x3c969f._0x4da0e3)]=_0x383fa5['message'],_0xb5b69e[_0x2e8ab3(0x21a,0x182,0x180,0x1e8)](-0x1fd2+-0x118e*0x1+0x3354)[_0x5d0984(-_0x3c969f._0x5e3f7e,-_0x3c969f._0x9d5357,-_0x3c969f._0x4216b7,-0x19d)](_0x5e6ada);}}}else{const _0x1bb8ae={};return _0x1bb8ae[_0x5d0984(-_0x3c969f._0x12f2c0,-_0x3c969f._0x4a770b,-_0x3c969f._0x51d4ab,-_0x3c969f._0xb1d845)]='Invalid\x20is'+_0x2e8ab3(0x1fe,0x235,_0x3c969f._0x32d05a,0x1bd)+_0x2e8ab3(_0x3c969f._0x3065bf,_0x3c969f._0x3525ae,0x2be,0x245),_0x1bb8ae['message']=_0x34b9e3[_0x2e8ab3(_0x3c969f._0x51c96e,_0x3c969f._0x32028e,_0x3c969f._0x5f2676,_0x3c969f._0x267736)],_0xc3e598[_0x5d0984(-_0x3c969f._0x8b7e96,-0x132,-0x1c0,-_0x3c969f._0x13bbfe)](-0x3*-0x98e+-0x7ef+-0x132b)[_0x2e8ab3(0x1a2,0x18e,_0x3c969f._0x245288,0x1e7)](_0x1bb8ae);}}if(!_0x37f38c||_0x34b9e3[_0x2e8ab3(_0x3c969f._0x53543a,0x1fa,_0x3c969f._0x55498e,_0x3c969f._0x268a0b)](typeof _0x37f38c,_0x34b9e3['fERes'])||_0x34b9e3[_0x5d0984(-0x1fe,-_0x3c969f._0x1a76b4,-_0x3c969f._0x4caa12,-0x1a6)](_0x37f38c[_0x2e8ab3(0x1e6,0x1f7,0x233,_0x3c969f._0x333171)]()['length'],-0x12c1*0x1+-0xaab*-0x1+0x816)){const _0xdda0a7={};return _0xdda0a7[_0x2e8ab3(0x274,_0x3c969f._0x85fa54,0x262,_0x3c969f._0x63665c)]=_0x34b9e3['nPlMj'],_0xdda0a7[_0x2e8ab3(_0x3c969f._0x929a53,_0x3c969f._0xe0beee,0x189,_0x3c969f._0x2b3477)]=_0x34b9e3[_0x5d0984(-0x150,-_0x3c969f._0x2c069c,-_0x3c969f._0x4f6087,-_0x3c969f._0x5ae437)],_0xc3e598[_0x2e8ab3(0x1d4,_0x3c969f._0x49c148,_0x3c969f._0x18c3fa,_0x3c969f._0x3857af)](-0x120a+0x1ab1*-0x1+0x2e4b)[_0x5d0984(-0x149,-0x1a4,-0x144,-0x19d)](_0xdda0a7);}logger['debug'](_0x5d0984(-_0x3c969f._0x53b732,-_0x3c969f._0x44c7ab,-0x10f,-_0x3c969f._0x4532a6)+_0x5d0984(-_0x3c969f._0x2a0960,-0x1e9,-0x21b,-_0x3c969f._0x57d7bb)+_0x5d0984(-_0x3c969f._0xf91e91,-_0x3c969f._0x640f5b,-_0x3c969f._0xf99c09,-0x1bd)+'\x20'+_0x32e34c);const _0x456d7f=await jiraClient['postCommen'+'t'](_0x32e34c,_0x37f38c['trim']()),_0x3817d7={};_0x3817d7['success']=!![],_0x3817d7[_0x2e8ab3(_0x3c969f._0x4da0e3,0x1af,0x1ad,_0x3c969f._0x551ae1)]=_0x456d7f,_0xc3e598[_0x2e8ab3(_0x3c969f._0x30b574,_0x3c969f._0x33c706,_0x3c969f._0x1e1c36,0x1e7)](_0x3817d7);}catch(_0x33428c){logger[_0x5d0984(-_0x3c969f._0x3f9146,-0x16f,-_0x3c969f._0x1928dc,-_0x3c969f._0x4d3c60)](_0x34b9e3[_0x2e8ab3(0x29a,0x213,0x26d,_0x3c969f._0x2f0c38)],_0x33428c);if(_0x33428c[_0x2e8ab3(0x206,0x1b5,_0x3c969f._0x45867a,_0x3c969f._0x31ba5a)][_0x5d0984(-0x171,-0x143,-_0x3c969f._0x1a66e0,-_0x3c969f._0x436022)](_0x5d0984(-0x111,-_0x3c969f._0x517595,-0x1ca,-_0x3c969f._0x2f5a77))){const _0x1dd496={};return _0x1dd496['error']=_0x34b9e3[_0x2e8ab3(_0x3c969f._0x2a1450,0x20a,0x151,_0x3c969f._0x2174e3)],_0x1dd496[_0x5d0984(-_0x3c969f._0x4faacb,-0x145,-_0x3c969f._0x462a5a,-0x181)]=_0x33428c['message'],_0xc3e598['status'](0x3be+-0x1e67+0x1c3d*0x1)['json'](_0x1dd496);}else{if(_0x33428c[_0x5d0984(-0x1e7,-0x15f,-_0x3c969f._0x2e6685,-0x181)][_0x2e8ab3(_0x3c969f._0x21e63d,0x251,_0x3c969f._0x355def,_0x3c969f._0x14c52f)](_0x34b9e3['iaXmI'])){if(_0x34b9e3[_0x5d0984(-0x146,-_0x3c969f._0x242421,-0x17e,-_0x3c969f._0x14a2c4)]('mfShC',_0x34b9e3[_0x5d0984(-0x1ae,-_0x3c969f._0x3d06d0,-_0x3c969f._0x8b7e96,-0x204)])){const _0x1f07e2={};return _0x1f07e2['error']=_0x5d0984(-0x192,-0x230,-_0x3c969f._0x1bc3be,-_0x3c969f._0x2b57a8)+_0x5d0984(-0x10f,-_0x3c969f._0x187fef,-_0x3c969f._0x3257c1,-_0x3c969f._0x2022fd)+_0x5d0984(-0x127,-_0x3c969f._0x286e3a,-0xd7,-_0x3c969f._0x1fbf13),_0x1f07e2[_0x5d0984(-_0x3c969f._0x15d5cb,-_0x3c969f._0x1248c4,-0x1b1,-0x181)]=_0x50bc12[_0x2e8ab3(0x237,_0x3c969f._0x1d4429,0x1e5,0x203)],_0x2b9277[_0x2e8ab3(0x1ba,_0x3c969f._0x6091e8,0x24c,0x1e8)](0x101*0x13+-0x2*-0x12c8+0x36af*-0x1)[_0x5d0984(-_0x3c969f._0x3857af,-0x1d7,-_0x3c969f._0xd236f,-0x19d)](_0x1f07e2);}else{const _0x2efd54={};return _0x2efd54[_0x2e8ab3(_0x3c969f._0x2f0c38,_0x3c969f._0x333171,0x29e,_0x3c969f._0x63665c)]=_0x5d0984(-0x23e,-_0x3c969f._0x4a8e19,-_0x3c969f._0x35d8a0,-0x1d6)+_0x2e8ab3(0x149,0x16d,_0x3c969f._0x3d2d27,0x18d)+'d',_0x2efd54[_0x5d0984(-_0x3c969f._0x468ac6,-_0x3c969f._0x1928dc,-0x1cc,-0x181)]=_0x33428c['message'],_0xc3e598[_0x5d0984(-0x1da,-_0x3c969f._0xa26c29,-0x179,-_0x3c969f._0xc4a421)](-0xd60+-0x77*-0x3f+0x33*-0x48)[_0x2e8ab3(0x1e0,_0x3c969f._0x58d892,0x1a4,_0x3c969f._0x2070c8)](_0x2efd54);}}else{if(_0x33428c[_0x5d0984(-0x11f,-0x1df,-0x116,-0x181)][_0x2e8ab3(_0x3c969f._0x25cd7f,_0x3c969f._0x1fd499,_0x3c969f._0xf917ad,0x1e0)](_0x34b9e3[_0x2e8ab3(_0x3c969f._0x297de2,0x280,_0x3c969f._0x1ddcaf,0x237)])){if(_0x34b9e3[_0x2e8ab3(0x257,_0x3c969f._0x30e6c5,0x238,_0x3c969f._0x4d8b57)](_0x34b9e3[_0x5d0984(-_0x3c969f._0x141d03,-0x184,-0x1a9,-_0x3c969f._0x5f2676)],'zbuGL'))try{_0x28c7a5=new _0x48542e(_0x29f89b),_0x4f42b5[_0x2e8ab3(0x209,0x222,0x198,0x1e9)](_0x34b9e3[_0x5d0984(-_0x3c969f._0x4af8d6,-_0x3c969f._0x5dfa2d,-_0x3c969f._0x19bab7,-0x129)]);return;}catch(_0x9825a0){_0x5e2362[_0x5d0984(-0x1c6,-0x11e,-0x151,-_0x3c969f._0x4c6e00)](_0x5d0984(-_0x3c969f._0x5760a2,-0x201,-_0x3c969f._0x366ff0,-_0x3c969f._0x354154)+_0x5d0984(-0x1a9,-_0x3c969f._0x48edf0,-_0x3c969f._0x5080d4,-0x1c8)+_0x2e8ab3(0x1e7,0x29e,_0x3c969f._0x52f438,_0x3c969f._0x520501)+_0x5d0984(-0x173,-0x23a,-0x1c1,-0x1d0)+_0x5d0984(-_0x3c969f._0x43252c,-_0x3c969f._0x5778cc,-0x1af,-0x145),_0x9825a0);}else{const _0x5d33ff={};return _0x5d33ff[_0x2e8ab3(0x255,_0x3c969f._0x51b120,_0x3c969f._0x591573,0x22c)]=_0x34b9e3[_0x2e8ab3(0x1ad,0x1d5,_0x3c969f._0x2f5317,_0x3c969f._0x1d4ba6)],_0x5d33ff[_0x5d0984(-_0x3c969f._0x3075b0,-_0x3c969f._0x44c7ab,-0x162,-0x181)]=_0x33428c[_0x2e8ab3(_0x3c969f._0x513b1c,0x189,0x1ef,_0x3c969f._0x26a194)],_0xc3e598[_0x5d0984(-_0x3c969f._0x58a9db,-_0x3c969f._0x333171,-0x15e,-_0x3c969f._0x340681)](0x1281+-0x2560+0x1472)[_0x5d0984(-0x1b4,-_0x3c969f._0x20b570,-_0x3c969f._0x2ad048,-_0x3c969f._0x2f1563)](_0x5d33ff);}}else{const _0x2b5141={};return _0x2b5141['error']=_0x34b9e3[_0x2e8ab3(0x236,0x26e,_0x3c969f._0x4383d9,0x265)],_0x2b5141[_0x2e8ab3(0x21a,_0x3c969f._0x5117ed,0x1bc,0x203)]=_0x33428c[_0x2e8ab3(_0x3c969f._0x15c877,_0x3c969f._0x54d6ec,_0x3c969f._0x79e243,_0x3c969f._0x31ba5a)],_0xc3e598[_0x5d0984(-0x191,-0x1a4,-0x17a,-0x19c)](0x2*0x331+0x169a+0x8*-0x361)[_0x5d0984(-_0x3c969f._0x483aa3,-_0x3c969f._0x1c237c,-0x1ac,-_0x3c969f._0x2f1563)](_0x2b5141);}}}}});export default router;
|