opclawtm 1.4.8 → 1.4.9
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.
Potentially problematic release.
This version of opclawtm might be problematic. Click here for more details.
- package/dist/bin/team-manager.d.ts +1 -1
- package/dist/bin/team-manager.js +35 -1
- package/dist/bin/team-setup.js +65 -1
- package/dist/bin/team-setup.js.map +1 -1
- package/dist/bin/team-uninstall.js +103 -1
- package/dist/bin/team-uninstall.js.map +1 -1
- package/dist/cli/commands/agent.command.js +223 -1
- package/dist/cli/commands/checklist.command.js +77 -1
- package/dist/cli/commands/dept.command.js +119 -1
- package/dist/cli/commands/document.command.js +146 -1
- package/dist/cli/commands/domain.command.js +97 -1
- package/dist/cli/commands/feishu.command.d.ts +1 -1
- package/dist/cli/commands/feishu.command.js +433 -1
- package/dist/cli/commands/feishu.command.js.map +1 -1
- package/dist/cli/commands/job.command.js +168 -1
- package/dist/cli/commands/license.command.js +68 -1
- package/dist/cli/commands/message-failure.command.js +137 -1
- package/dist/cli/commands/message.command.js +129 -1
- package/dist/cli/commands/node.command.js +251 -1
- package/dist/cli/commands/role-flow.command.js +54 -1
- package/dist/cli/commands/skill-pack.command.js +137 -1
- package/dist/cli/commands/status.command.js +61 -1
- package/dist/cli/commands/task.command.js +402 -1
- package/dist/cli/commands/user.command.d.ts +4 -4
- package/dist/cli/commands/user.command.js +134 -1
- package/dist/cli/index.js +871 -1
- package/dist/cli/tui/index.d.ts.map +1 -1
- package/dist/cli/tui/index.js +492 -1
- package/dist/cli/tui/index.js.map +1 -1
- package/dist/cli/tui/menus/agent-manage.menu.js +614 -1
- package/dist/cli/tui/menus/dept-manage.menu.js +299 -1
- package/dist/cli/tui/menus/domain-manage.menu.js +208 -1
- package/dist/cli/tui/menus/feishu.menu.js +1738 -1
- package/dist/cli/tui/menus/feishu.menu.js.map +1 -1
- package/dist/cli/tui/menus/job-manage.menu.js +734 -1
- package/dist/cli/tui/menus/license.menu.js +164 -1
- package/dist/cli/tui/menus/main.menu.js +94 -1
- package/dist/cli/tui/menus/reset.menu.js +767 -1
- package/dist/cli/tui/menus/reset.menu.js.map +1 -1
- package/dist/cli/tui/menus/status.menu.js +123 -1
- package/dist/cli/tui/menus/task-manage.menu.js +129 -1
- package/dist/cli/tui/menus/team-create.menu.js +353 -1
- package/dist/config.js +74 -1
- package/dist/core/auth/index.js +22 -1
- package/dist/core/auth/middleware.js +456 -1
- package/dist/core/auth/storage.js +280 -1
- package/dist/core/models/types.js +9 -1
- package/dist/core/services/agent-template.service.js +88 -1
- package/dist/core/services/agent.service.js +381 -1
- package/dist/core/services/auth-profiles.service.js +220 -1
- package/dist/core/services/checklist.service.js +240 -1
- package/dist/core/services/config-tracker.service.js +1093 -1
- package/dist/core/services/config-tracker.service.js.map +1 -1
- package/dist/core/services/crypto.service.d.ts.map +1 -1
- package/dist/core/services/crypto.service.js +400 -1
- package/dist/core/services/crypto.service.js.map +1 -1
- package/dist/core/services/dept.service.js +260 -1
- package/dist/core/services/document.service.js +368 -1
- package/dist/core/services/domain.service.js +98 -1
- package/dist/core/services/feishu.service.js +165 -1
- package/dist/core/services/index.js +89 -1
- package/dist/core/services/job.service.js +190 -1
- package/dist/core/services/log.service.js +237 -1
- package/dist/core/services/message-failure.service.js +112 -1
- package/dist/core/services/message.service.js +374 -1
- package/dist/core/services/message.service.js.map +1 -1
- package/dist/core/services/node.service.js +257 -1
- package/dist/core/services/openclaw-config.service.js +268 -1
- package/dist/core/services/preset-loader.service.js +379 -1
- package/dist/core/services/preset-loader.service.js.map +1 -1
- package/dist/core/services/role-flow.service.js +47 -1
- package/dist/core/services/setup.service.d.ts.map +1 -1
- package/dist/core/services/setup.service.js +337 -1
- package/dist/core/services/setup.service.js.map +1 -1
- package/dist/core/services/skill-pack.service.js +113 -1
- package/dist/core/services/task.service.js +397 -1
- package/dist/core/services/template.service.js +88 -1
- package/dist/core/services/user.service.js +111 -1
- package/dist/core/utils/agent-guide-generator.js +187 -1
- package/dist/core/utils/credentials-cleanup.js +256 -1
- package/dist/core/utils/index.js +462 -1
- package/dist/core/utils/openclaw-helper.d.ts +1 -1
- package/dist/core/utils/openclaw-helper.js +1632 -1
- package/dist/core/utils/template-generator.js +170 -1
- package/dist/db/index.d.ts.map +1 -1
- package/dist/db/index.js +405 -1
- package/dist/db/index.js.map +1 -1
- package/dist/db/repositories/agent-template.repo.js +108 -1
- package/dist/db/repositories/agent.repo.js +103 -1
- package/dist/db/repositories/base.repository.js +107 -1
- package/dist/db/repositories/company.repo.js +33 -1
- package/dist/db/repositories/config-change.repo.js +119 -1
- package/dist/db/repositories/dept.repo.js +66 -1
- package/dist/db/repositories/document.repo.js +51 -1
- package/dist/db/repositories/domain.repo.js +79 -1
- package/dist/db/repositories/index.js +81 -1
- package/dist/db/repositories/init-session.repo.js +112 -1
- package/dist/db/repositories/job.repo.js +119 -1
- package/dist/db/repositories/message-failure.repo.js +141 -1
- package/dist/db/repositories/message-log.repo.js +64 -1
- package/dist/db/repositories/node.repo.js +276 -1
- package/dist/db/repositories/role-flow.repo.js +83 -1
- package/dist/db/repositories/skill-pack.repo.js +149 -1
- package/dist/db/repositories/task.repo.js +381 -1
- package/dist/db/repositories/template.repo.js +66 -1
- package/dist/db/repositories/user.repo.js +75 -1
- package/package.json +1 -1
- package/resources/preset-data-hash.enc +1 -1
- package/resources/preset-data.enc +1 -1
package/dist/cli/tui/index.js
CHANGED
|
@@ -1 +1,492 @@
|
|
|
1
|
-
'use strict';(function(_0x2c3cc4,_0x31f96b){const _0x370675={_0x5b0156:0x201,_0x350b45:0x9d,_0x260f71:0x25d,_0x24d7c4:0x2e0,_0x2f5928:0x321,_0x1c2f3b:')HZK',_0xb9cf41:0x35f,_0x1d01c5:0x313,_0x57f9c8:0x155,_0x27305a:0x8e,_0x4fb1b2:'HPPX',_0x39a57d:0x25a,_0x5a8abb:0x37e,_0x33dfa1:'Lj*V',_0x28c070:0x1f4,_0x352257:0xc7,_0x1f3261:0x1cc},_0x853b76={_0x2733e4:0x84},_0x6feb86={_0x1face3:0xc};function _0x3b6341(_0x2faf5b,_0x32cd42,_0xec4260,_0x1ddca0){return _0x48b2(_0x2faf5b-_0x6feb86._0x1face3,_0x1ddca0);}const _0x33a501=_0x2c3cc4();function _0x714eb4(_0x27ab7b,_0x310c95,_0xa4ab1a,_0x45ef8a){return _0x48b2(_0xa4ab1a- -_0x853b76._0x2733e4,_0x27ab7b);}while(!![]){try{const _0x40c1a2=-parseInt(_0x3b6341(_0x370675._0x5b0156,_0x370675._0x350b45,_0x370675._0x260f71,'iJ%q'))/(0xd*0x2ad+-0x1796+-0xb32)+parseInt(_0x714eb4('HMyN',0x3b0,_0x370675._0x24d7c4,0x235))/(0x1b4+0x1d2f+0xf*-0x20f)*(parseInt(_0x3b6341(0x2c3,0x3bc,_0x370675._0x2f5928,_0x370675._0x1c2f3b))/(0x2078+-0x2619+-0x1*-0x5a4))+-parseInt(_0x714eb4('n5Gs',0x1ec,0x122,-0x25))/(-0xbae+0x97d*-0x1+0x152f)*(-parseInt(_0x3b6341(0x207,_0x370675._0xb9cf41,0x2c2,'8kpd'))/(-0x1f9f+0x1dea+-0x2*-0xdd))+-parseInt(_0x714eb4('S3%]',0xf8,0x236,0xf1))/(0x1b97+0x1a86+-0x3617)+-parseInt(_0x3b6341(0x280,0x300,_0x370675._0x1d01c5,'dlAy'))/(-0x26d2*-0x1+-0x53*-0x1+0x1*-0x271e)*(-parseInt(_0x714eb4('$LPD',_0x370675._0x57f9c8,_0x370675._0x27305a,0x1dd))/(-0x1*0x17ea+0xe21+0x1*0x9d1))+-parseInt(_0x714eb4(_0x370675._0x4fb1b2,0x1cc,_0x370675._0x39a57d,_0x370675._0x5a8abb))/(0x153a+-0x2626+0x3*0x5a7)+parseInt(_0x714eb4(_0x370675._0x33dfa1,_0x370675._0x28c070,_0x370675._0x352257,_0x370675._0x1f3261))/(0x1117+-0x1*-0x13b1+-0x24be);if(_0x40c1a2===_0x31f96b)break;else _0x33a501['push'](_0x33a501['shift']());}catch(_0x58d4a8){_0x33a501['push'](_0x33a501['shift']());}}}(_0x34db,0x3ea36+-0x247a*-0x1+-0x20702));var __createBinding=this&&this['__createBi'+_0x292e55(0x635,'7DT3',0x73c,0x67c)]||(Object[_0x4107f9('Np8L',0x27e,0x2c1,0x12b)]?function(_0x543fd8,_0x538139,_0x4ef376,_0x57da03){const _0x1690bf={_0x6eb43a:0x418,_0x37a27e:0x54b,_0x1f405b:')HZK',_0x19ad45:0x3be,_0x48e9da:0x4e7,_0x519e8a:0x4d6,_0x470c85:0x483,_0x251339:'*aV^',_0x2d31da:0x385,_0x1f79cc:'dlAy',_0x37bf2a:0x495,_0x1c83b0:'Lj*V',_0x592930:0x32a,_0x5ab4bc:'Absd',_0x4c76e9:0x458,_0x4464c8:'p24@',_0x3ae6fd:0x346,_0x506f0b:0x367,_0x4dcfd3:0x487,_0x57f900:0x3c5,_0x11486a:0x4f2,_0x371762:'iuYM',_0x3b0f2f:0x342,_0x4426b1:0x3eb,_0x4ec70b:0x3df,_0x5d1f28:'S3%]',_0x1367e6:0x460,_0x7b44b:'ejH4',_0x4fe475:0x3cf,_0x5dabdc:0x130,_0x4b0d79:0x3c7,_0x330260:0x45b},_0x42319b={_0x140fbc:0x2b},_0x4df4df={_0x59ff52:0x1aa,_0x501c55:0x1ce},_0x4de844={};_0x4de844[_0x2aee49(0x4a7,_0x1690bf._0x6eb43a,0x44c,'8kpd')]=function(_0x1143c9,_0x43ee18){return _0x1143c9===_0x43ee18;},_0x4de844[_0x16f107(_0x1690bf._0x37a27e,0x3dd,0x3b7,_0x1690bf._0x1f405b)]=function(_0x253765,_0x4102f8){return _0x253765 in _0x4102f8;},_0x4de844[_0x16f107(_0x1690bf._0x19ad45,_0x1690bf._0x48e9da,_0x1690bf._0x519e8a,'#y9o')]=_0x16f107(0x2ff,0x429,_0x1690bf._0x470c85,_0x1690bf._0x251339);const _0x49df90=_0x4de844;function _0x2aee49(_0x211736,_0x382731,_0x425992,_0x4fd3ec){return _0x292e55(_0x211736-_0x4df4df._0x59ff52,_0x4fd3ec,_0x425992-0x24,_0x382731- -_0x4df4df._0x501c55);}if(_0x49df90[_0x2aee49(0x37f,_0x1690bf._0x2d31da,0x3d9,_0x1690bf._0x1f79cc)](_0x57da03,undefined))_0x57da03=_0x4ef376;var _0x373da9=Object['getOwnProp'+_0x16f107(_0x1690bf._0x37bf2a,0x518,0x48e,_0x1690bf._0x1c83b0)+_0x2aee49(0x2a9,0x2b3,_0x1690bf._0x592930,_0x1690bf._0x5ab4bc)](_0x538139,_0x4ef376);if(!_0x373da9||(_0x49df90[_0x16f107(0x321,_0x1690bf._0x4c76e9,0x431,'$LPD')](_0x49df90[_0x2aee49(0x34a,0x3bc,0x42c,_0x1690bf._0x4464c8)],_0x373da9)?!_0x538139[_0x2aee49(_0x1690bf._0x3ae6fd,_0x1690bf._0x506f0b,_0x1690bf._0x4dcfd3,'hggu')]:_0x373da9[_0x16f107(_0x1690bf._0x57f900,0x3d5,_0x1690bf._0x11486a,_0x1690bf._0x371762)]||_0x373da9[_0x16f107(_0x1690bf._0x3b0f2f,_0x1690bf._0x4426b1,_0x1690bf._0x4ec70b,_0x1690bf._0x5d1f28)+'le'])){const _0x37a7e={};_0x37a7e[_0x2aee49(0x532,_0x1690bf._0x1367e6,0x46c,_0x1690bf._0x7b44b)]=!![],_0x37a7e[_0x2aee49(_0x1690bf._0x4fe475,0x26a,0x1b8,'0AND')]=function(){return _0x538139[_0x4ef376];},_0x373da9=_0x37a7e;}function _0x16f107(_0xee83e,_0xf9a7d9,_0x35c716,_0x466ef3){return _0x4107f9(_0x466ef3,_0xf9a7d9-0x1de,_0x35c716-_0x42319b._0x140fbc,_0x466ef3-0xa2);}Object[_0x2aee49(_0x1690bf._0x5dabdc,0x21d,0xce,'*aV^')+_0x2aee49(_0x1690bf._0x4b0d79,0x4d8,_0x1690bf._0x330260,'Np8L')](_0x543fd8,_0x57da03,_0x373da9);}:function(_0x58e5cf,_0x3be2b8,_0x3d59f6,_0x2297d3){const _0x34d709={_0x585fd7:0x269,_0x588d2e:'9T^N',_0x22130d:0x159,_0x3f8873:0x3f0},_0x41f880={_0x1138b9:0xac},_0x122d13={_0x53f62f:0x190};function _0x3063cc(_0x15439e,_0x4127d1,_0x487806,_0x469936){return _0x292e55(_0x15439e-_0x122d13._0x53f62f,_0x15439e,_0x487806-0xe6,_0x4127d1- -0x331);}const _0x3b494d={};_0x3b494d[_0x3063cc('9T^N',0x2b8,_0x34d709._0x585fd7,0x27c)]=function(_0x14befe,_0x2bb439){return _0x14befe===_0x2bb439;};const _0x400eb6=_0x3b494d;if(_0x400eb6[_0x114db9(_0x34d709._0x588d2e,0x2a6,_0x34d709._0x22130d,_0x34d709._0x3f8873)](_0x2297d3,undefined))_0x2297d3=_0x3d59f6;function _0x114db9(_0x3bce1c,_0x47ab8d,_0x3c3299,_0x506669){return _0x292e55(_0x3bce1c-_0x41f880._0x1138b9,_0x3bce1c,_0x3c3299-0x1d8,_0x47ab8d- -0x343);}_0x58e5cf[_0x2297d3]=_0x3be2b8[_0x3d59f6];}),__setModuleDefault=this&&this[_0x4107f9('c1H$',0x34c,0x499,0x381)+_0x4107f9('eV8k',0x3d0,0x4e7,0x4cb)]||(Object[_0x292e55(0x638,'5#n^',0x6db,0x657)]?function(_0x4724bf,_0x4c8522){const _0x3a7502={_0x523553:0x28d,_0x289ddf:0x14c,_0xadbbf2:0x19b,_0x511bef:'Jc6R',_0x57a00f:0x42,_0x34fb08:0x7,_0x484536:'vi1o',_0xa7628f:0x14a,_0xd2b527:0x98,_0x509947:0x86,_0x41e83f:'#y9o'},_0x50d59c={_0x493c71:0x3d8,_0x44fef6:0xa3};function _0x4473c9(_0x400ed7,_0x71a26c,_0x41b93d,_0xd5bdaa){return _0x4107f9(_0xd5bdaa,_0x400ed7- -_0x50d59c._0x493c71,_0x41b93d-_0x50d59c._0x44fef6,_0xd5bdaa-0x19b);}const _0x2bf063={};_0x2bf063[_0x4473c9(-0x13c,-0x1f,-_0x3a7502._0x523553,'Fp%T')]=_0x4473c9(-0x18b,-_0x3a7502._0x289ddf,-0xd5,'KKLF');const _0x13fc7b=_0x2bf063,_0x3abc88={};function _0x3a7b7b(_0x5a1a95,_0x48f623,_0x5b54eb,_0x1fab71){return _0x292e55(_0x5a1a95-0xb7,_0x5b54eb,_0x5b54eb-0x1e3,_0x5a1a95- -0x3ec);}_0x3abc88[_0x4473c9(-_0x3a7502._0xadbbf2,-0xf6,-0xaa,_0x3a7502._0x511bef)]=!![],_0x3abc88[_0x4473c9(-_0x3a7502._0x57a00f,0x20,_0x3a7502._0x34fb08,')HZK')]=_0x4c8522,Object[_0x4473c9(-0x81,0x85,-0xb0,_0x3a7502._0x484536)+_0x3a7b7b(0x1b6,0x100,'Jc6R',_0x3a7502._0xa7628f)](_0x4724bf,_0x13fc7b[_0x4473c9(_0x3a7502._0xd2b527,_0x3a7502._0x509947,0x89,_0x3a7502._0x41e83f)],_0x3abc88);}:function(_0xdf87f4,_0x4d90bb){const _0x1ee2f2={_0x306d51:0x3cc,_0x549fd9:'KKLF',_0xe163db:'rzql'},_0x3bf21d={_0x457e85:0x156,_0x36f20e:0x1b6},_0x54669a={_0x404bf1:0x138,_0x166fe5:0x182};function _0x489be7(_0x1c83d2,_0x2d0f78,_0x3c35b2,_0x54fa81){return _0x4107f9(_0x2d0f78,_0x3c35b2- -0x124,_0x3c35b2-_0x54669a._0x404bf1,_0x54fa81-_0x54669a._0x166fe5);}const _0x290839={};function _0x1bd2d3(_0x141273,_0x1dc259,_0x4e497e,_0x1aa4ab){return _0x292e55(_0x141273-_0x3bf21d._0x457e85,_0x4e497e,_0x4e497e-_0x3bf21d._0x36f20e,_0x1dc259- -0x1ed);}_0x290839[_0x1bd2d3(0x4c0,_0x1ee2f2._0x306d51,'Lj*V',0x302)]=_0x489be7(0x69,_0x1ee2f2._0x549fd9,0x129,0x1a8);const _0x557fcc=_0x290839;_0xdf87f4[_0x557fcc[_0x489be7(0x117,_0x1ee2f2._0xe163db,0xbc,0x4f)]]=_0x4d90bb;}),__importStar=this&&this[_0x292e55(0x631,'%PeD',0x5b3,0x65f)+'ar']||(function(){const _0x4f95d0={_0x4d90c6:0x343,_0x8b3e8:'*66P',_0x4ffa83:0x461},_0x1fded2={_0x23016b:'oC4&',_0xdbaddc:0x55,_0x39f81a:'#5zM',_0x406961:'KKLF',_0x588161:0x281,_0x13f7fd:')HZK',_0x416019:0x4dd,_0x277f91:'i4iK',_0x46b955:'HPPX',_0x33ada4:0x163,_0x4da354:0x15b,_0x509d3c:0x1dc,_0x535629:0x49,_0x1be1d8:0x275,_0x36ca6f:0x15c,_0x391935:0x414,_0x4c1a1b:0x4da,_0x366d75:0x606,_0x5a7275:0x6f5},_0x1ac0d2={_0x20fca1:0x13,_0x2fd44d:0xc7},_0x4ffea0={_0x3ae9b2:0x15b,_0x2bb8a:0x57,_0x48a4b7:0xe4},_0x3b5e21={_0x572c71:'#y9o',_0x415825:0x3c4,_0x252782:0x2c5,_0x4f7c30:0x3d3,_0x1d39b0:0x52f,_0x39fcc2:0xbf,_0x833687:'bg9a',_0x4b3bef:0xe2,_0x307c93:0xdd,_0x3f25b6:0x74,_0x39e61d:'dLFR',_0x71dd11:0x147,_0x2e9149:0x477,_0x16ff85:0x597,_0x194b2f:0x60f,_0x581116:'!4cD',_0x5a0016:0xa8,_0x3aa3f8:'hggu',_0x11eaae:0xed},_0x2d0d10={_0x1c5c10:0xcd},_0x5e7c70={_0x413a89:0x2b,_0x4e2167:0x6f};function _0x355950(_0xe5fe25,_0xd0909d,_0x533c04,_0x164004){return _0x292e55(_0xe5fe25-_0x5e7c70._0x413a89,_0x533c04,_0x533c04-0xd4,_0x164004- -_0x5e7c70._0x4e2167);}const _0x1b31d1={'UetgR':function(_0x5ee0b7,_0x58ab52){return _0x5ee0b7!==_0x58ab52;},'VPSRw':_0x355950(0x386,_0x4f95d0._0x4d90c6,_0x4f95d0._0x8b3e8,_0x4f95d0._0x4ffa83),'SdhTO':function(_0x30fd49,_0x838044){return _0x30fd49(_0x838044);},'EELJu':function(_0x3ee1cb,_0x567db5,_0x26d102){return _0x3ee1cb(_0x567db5,_0x26d102);},'WlDYV':function(_0x51ffd8,_0x470791){return _0x51ffd8<_0x470791;},'gxyAt':'default','qoIgN':function(_0x1c92e8,_0x3139c6,_0x2c27e7,_0x573646){return _0x1c92e8(_0x3139c6,_0x2c27e7,_0x573646);}};var _0x63b18c=function(_0x4dd638){const _0x4a2044={_0x1a112a:0x1ce,_0x2cc9ef:0x1f9,_0x23a23d:')HZK',_0x3a922e:0x203,_0x50a983:0x13f,_0xc8b107:0x1c,_0x264d94:'7DT3',_0x50f68b:0x1e5,_0x1ff123:'#5zM',_0x2d05ca:0x105,_0x6b7497:'Np8L',_0x206082:0xcd},_0x4fe583={_0x56f801:0x9e};function _0x524554(_0x56a31c,_0x34057f,_0x4b34af,_0x522f2e){return _0x355950(_0x56a31c-0xa0,_0x34057f-_0x2d0d10._0x1c5c10,_0x34057f,_0x522f2e- -0x392);}function _0x320336(_0x187d30,_0x5c4d0d,_0x537911,_0x32f657){return _0x355950(_0x187d30-_0x4fe583._0x56f801,_0x5c4d0d-0xb6,_0x537911,_0x32f657-0x70);}if(_0x1b31d1[_0x524554(0x21c,_0x3b5e21._0x572c71,0x386,0x242)](_0x1b31d1[_0x524554(_0x3b5e21._0x415825,'hggu',0x1b7,_0x3b5e21._0x252782)],_0x320336(_0x3b5e21._0x4f7c30,_0x3b5e21._0x1d39b0,'5#n^',0x3ed)))return _0x63b18c=Object[_0x524554(_0x3b5e21._0x39fcc2,_0x3b5e21._0x833687,0x88,_0x3b5e21._0x4b3bef)+_0x524554(0x131,'n5Gs',-_0x3b5e21._0x307c93,0x92)]||function(_0x3a007e){const _0x1ff05d={_0x45f978:0x1b5,_0x26be60:0x18};var _0x36732d=[];function _0x163754(_0x5182fd,_0xb4d906,_0x584500,_0x549684){return _0x524554(_0x5182fd-0x15f,_0x584500,_0x584500-0x115,_0x549684- -0x1ea);}for(var _0x4df194 in _0x3a007e)if(Object[_0x1684d6(_0x4a2044._0x1a112a,_0x4a2044._0x2cc9ef,_0x4a2044._0x23a23d,_0x4a2044._0x3a922e)][_0x1684d6(_0x4a2044._0x50a983,-_0x4a2044._0xc8b107,_0x4a2044._0x264d94,_0x4a2044._0x50f68b)+'erty'][_0x1684d6(0x2aa,0x2cc,_0x4a2044._0x1ff123,0x3a1)](_0x3a007e,_0x4df194))_0x36732d[_0x36732d[_0x1684d6(0x5e,-_0x4a2044._0x2d05ca,_0x4a2044._0x6b7497,-_0x4a2044._0x206082)]]=_0x4df194;function _0x1684d6(_0x4e964d,_0x92bd5b,_0x2192d3,_0xe95c3e){return _0x524554(_0x4e964d-_0x1ff05d._0x45f978,_0x2192d3,_0x2192d3-0x115,_0x4e964d- -_0x1ff05d._0x26be60);}return _0x36732d;},_0x1b31d1[_0x524554(_0x3b5e21._0x3f25b6,_0x3b5e21._0x39e61d,0x16e,_0x3b5e21._0x71dd11)](_0x63b18c,_0x4dd638);else _0x3052bd[_0x320336(_0x3b5e21._0x2e9149,0x445,'hggu',_0x3b5e21._0x16ff85)](_0x58ffe2[_0x320336(0x471,0x41a,'tNhW',0x419)][_0x320336(_0x3b5e21._0x194b2f,0x522,_0x3b5e21._0x581116,0x653)](_0x524554(_0x3b5e21._0x5a0016,_0x3b5e21._0x3aa3f8,_0x3b5e21._0x11eaae,0x206)));};return function(_0x4e4b90){function _0xd061f3(_0x798d8,_0xba9082,_0x1a700c,_0x1a56e9){return _0x355950(_0x798d8-_0x4ffea0._0x3ae9b2,_0xba9082-_0x4ffea0._0x2bb8a,_0x798d8,_0x1a700c-_0x4ffea0._0x48a4b7);}function _0x31a82f(_0x57605b,_0x16158a,_0x59ad5b,_0x319c15){return _0x355950(_0x57605b-_0x1ac0d2._0x20fca1,_0x16158a-_0x1ac0d2._0x2fd44d,_0x57605b,_0x319c15- -0x453);}const _0x4035bc=_0x31a82f(_0x1fded2._0x23016b,-0x39,-0x93,_0x1fded2._0xdbaddc)[_0x31a82f(_0x1fded2._0x39f81a,-0x7,-0x8d,-0x58)]('|');let _0x3a3f51=-0x1c06+0x265*-0x1+0xd*0x257;while(!![]){switch(_0x4035bc[_0x3a3f51++]){case'0':if(_0x4e4b90&&_0x4e4b90[_0x31a82f(_0x1fded2._0x406961,0x4e,_0x1fded2._0x588161,0x199)])return _0x4e4b90;continue;case'1':return _0x13a75a;case'2':_0x1b31d1[_0xd061f3(_0x1fded2._0x13f7fd,0x454,_0x1fded2._0x416019,0x44c)](__setModuleDefault,_0x13a75a,_0x4e4b90);continue;case'3':var _0x13a75a={};continue;case'4':if(_0x4e4b90!=null){for(var _0x33dbf1=_0x63b18c(_0x4e4b90),_0x2b8896=-0x1961+-0x180c+-0x1*-0x316d;_0x1b31d1[_0xd061f3(_0x1fded2._0x277f91,0x51d,0x5b8,0x5f8)](_0x2b8896,_0x33dbf1[_0x31a82f(_0x1fded2._0x46b955,_0x1fded2._0x33ada4,_0x1fded2._0x4da354,_0x1fded2._0x509d3c)]);_0x2b8896++)if(_0x1b31d1[_0x31a82f('@Ijh',_0x1fded2._0x535629,_0x1fded2._0x1be1d8,_0x1fded2._0x36ca6f)](_0x33dbf1[_0x2b8896],_0x1b31d1[_0xd061f3(')HZK',_0x1fded2._0x391935,_0x1fded2._0x4c1a1b,0x5cb)]))_0x1b31d1[_0xd061f3('HPPX',_0x1fded2._0x366d75,_0x1fded2._0x5a7275,0x5c5)](__createBinding,_0x13a75a,_0x4e4b90,_0x33dbf1[_0x2b8896]);}continue;}break;}};}()),__importDefault=this&&this[_0x4107f9('2!5z',0x2ce,0x411,0x40f)+_0x4107f9('i4iK',0x39c,0x30b,0x3cc)]||function(_0x5611db){const _0x3ffe39={_0x2dd69a:0x6d5};function _0x5ab40c(_0xb6f9c5,_0x1f6c67,_0x134ae6,_0x4b7744){return _0x292e55(_0xb6f9c5-0xf3,_0x134ae6,_0x134ae6-0x156,_0xb6f9c5-0x63);}return _0x5611db&&_0x5611db[_0x5ab40c(0x70c,_0x3ffe39._0x2dd69a,'vi1o',0x68b)]?_0x5611db:{'default':_0x5611db};};function _0x48b2(_0x561874,_0x27696b){_0x561874=_0x561874-(0xb3*0x12+-0x2642+-0x1*-0x1ab3);const _0x200081=_0x34db();let _0xe13ba3=_0x200081[_0x561874];if(_0x48b2['jhGrRk']===undefined){var _0x525809=function(_0x5383d1){const _0x47967d='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x51b67d='',_0x5c1319='';for(let _0x3f837e=0x21b5+-0x1*-0x1aab+-0x3c60*0x1,_0x1b302e,_0xfa8d90,_0x41ad10=-0x1*0x1b7a+-0x619+0x2193;_0xfa8d90=_0x5383d1['charAt'](_0x41ad10++);~_0xfa8d90&&(_0x1b302e=_0x3f837e%(0x1*0x1ad5+-0x20d9+0xc1*0x8)?_0x1b302e*(-0x2b3*0xc+0x1648+0xa5c)+_0xfa8d90:_0xfa8d90,_0x3f837e++%(-0x1*-0xfcb+0xbe*-0x17+0x14b))?_0x51b67d+=String['fromCharCode'](-0x5e6+0xe5e+0x779*-0x1&_0x1b302e>>(-(-0x2*0xc41+0x1*-0x1c4+0x1a48)*_0x3f837e&0xccf*-0x3+0x19a3+-0x4*-0x334)):0xb69+-0x559+-0x610){_0xfa8d90=_0x47967d['indexOf'](_0xfa8d90);}for(let _0x4d2a31=0x1d8c+0x22c1+-0x404d,_0x38561f=_0x51b67d['length'];_0x4d2a31<_0x38561f;_0x4d2a31++){_0x5c1319+='%'+('00'+_0x51b67d['charCodeAt'](_0x4d2a31)['toString'](-0x18d+-0x26ec+-0x3*-0xd83))['slice'](-(-0x121d*0x1+0x1e71*0x1+-0xc52));}return decodeURIComponent(_0x5c1319);};const _0x323413=function(_0xf099b6,_0x3facd5){let _0x37b352=[],_0x57ce4b=0x41*0x55+0x107*-0x4+0x7*-0x27f,_0x309685,_0x5d1187='';_0xf099b6=_0x525809(_0xf099b6);let _0x1367e1;for(_0x1367e1=-0x2b*-0xd3+-0x38*-0x42+-0x1*0x31e1;_0x1367e1<-0xb*-0x57+-0x2*0x75e+0xbff;_0x1367e1++){_0x37b352[_0x1367e1]=_0x1367e1;}for(_0x1367e1=-0x2315*-0x1+-0x7d3+-0x1b42;_0x1367e1<0xca*0xe+-0x633*0x4+-0x76*-0x20;_0x1367e1++){_0x57ce4b=(_0x57ce4b+_0x37b352[_0x1367e1]+_0x3facd5['charCodeAt'](_0x1367e1%_0x3facd5['length']))%(-0x83+0x14ac+-0x6d*0x2d),_0x309685=_0x37b352[_0x1367e1],_0x37b352[_0x1367e1]=_0x37b352[_0x57ce4b],_0x37b352[_0x57ce4b]=_0x309685;}_0x1367e1=0x2230+0xbc*0x4+-0x2520,_0x57ce4b=-0x205*0xb+0x762*-0x2+0x24fb;for(let _0x1238e6=0xaf*-0x34+0xf01+0x6d9*0x3;_0x1238e6<_0xf099b6['length'];_0x1238e6++){_0x1367e1=(_0x1367e1+(-0x9b8+-0xd23+0x214*0xb))%(0xb6b*-0x3+-0x335+0x2676),_0x57ce4b=(_0x57ce4b+_0x37b352[_0x1367e1])%(0x1*-0x6b9+0x1*-0x1cd6+0x248f),_0x309685=_0x37b352[_0x1367e1],_0x37b352[_0x1367e1]=_0x37b352[_0x57ce4b],_0x37b352[_0x57ce4b]=_0x309685,_0x5d1187+=String['fromCharCode'](_0xf099b6['charCodeAt'](_0x1238e6)^_0x37b352[(_0x37b352[_0x1367e1]+_0x37b352[_0x57ce4b])%(-0x3a1*-0x2+0x7*-0x403+0x25*0x97)]);}return _0x5d1187;};_0x48b2['noJoMh']=_0x323413,_0x48b2['dlFkwh']={},_0x48b2['jhGrRk']=!![];}const _0x5042e7=_0x200081[-0x1*0xe09+-0x1142+0x1*0x1f4b],_0x35640c=_0x561874+_0x5042e7,_0x1b2b80=_0x48b2['dlFkwh'][_0x35640c];return!_0x1b2b80?(_0x48b2['BQfjEc']===undefined&&(_0x48b2['BQfjEc']=!![]),_0xe13ba3=_0x48b2['noJoMh'](_0xe13ba3,_0x27696b),_0x48b2['dlFkwh'][_0x35640c]=_0xe13ba3):_0xe13ba3=_0x1b2b80,_0xe13ba3;}const _0x2de529={};_0x2de529[_0x292e55(0x485,'4Db5',0x531,0x5bd)]=!![],Object['defineProp'+_0x4107f9('s&#w',0x1f9,0x31a,0x329)](exports,_0x4107f9('hggu',0x323,0x48c,0x261),_0x2de529),exports[_0x292e55(0x5c0,'*aV^',0x4cf,0x5d6)]=void(-0x2f*-0x23+-0x1650+0xfe3),exports[_0x292e55(0x351,'iJ%q',0x2ea,0x40e)]=startTUI;const inquirer_1=__importDefault(require(_0x4107f9('vi1o',0x37f,0x4c5,0x217))),chalk_1=__importDefault(require(_0x4107f9('*aV^',0x374,0x39b,0x4bb))),os=__importStar(require('os')),path=__importStar(require(_0x4107f9('0AND',0x3a2,0x4df,0x42a))),fs=__importStar(require('fs')),main_menu_1=require(_0x292e55(0x65e,'8kpd',0x546,0x603)+_0x292e55(0x34c,'hggu',0x511,0x49f)),services_1=require(_0x4107f9('i4iK',0x23a,0x3a7,0x141)+_0x292e55(0x5e7,'uo]V',0x54a,0x6a8));function _0x292e55(_0x438513,_0x4f6cf6,_0x16bede,_0x5f0650){return _0x48b2(_0x5f0650-0x2e2,_0x4f6cf6);}const utils_1=require(_0x4107f9('(#SV',0x35d,0x3a8,0x243)+_0x292e55(0x7d0,'sErF',0x6f2,0x693)),initSessionRepo=__importStar(require(_0x4107f9('tNhW',0x3ed,0x4b8,0x549)+_0x4107f9('bg9a',0x482,0x374,0x5ed)+_0x4107f9('i4iK',0x412,0x2c3,0x57d)+_0x292e55(0x46c,'5#n^',0x342,0x40f))),configTracker=__importStar(require(_0x292e55(0x47a,'eV8k',0x5a4,0x4d4)+_0x292e55(0x31b,'7DT3',0x382,0x415)+_0x4107f9('eV8k',0x2bd,0x1ce,0x363)+_0x292e55(0x61f,'*66P',0x72a,0x5e4)+'ce')),agent_repo_1=require(_0x292e55(0x55e,'iJ%q',0x74f,0x5f3)+_0x4107f9('sErF',0x36b,0x30f,0x3b3)+_0x4107f9('Jc6R',0x2c1,0x2f1,0x332)+'po'),index_1=require(_0x292e55(0x583,'sErF',0x59f,0x5f8)+_0x4107f9('(#SV',0x25b,0x146,0x225)),storage_1=require(_0x292e55(0x54a,'iuYM',0x4e1,0x506)+_0x4107f9('@Ijh',0x4a5,0x5cf,0x538)+_0x292e55(0x48b,'HMyN',0x42e,0x530)),middleware_1=require(_0x4107f9('iJ%q',0x2b8,0x241,0x2f6)+_0x4107f9('!4cD',0x303,0x328,0x1ca)+_0x4107f9('U9hY',0x320,0x429,0x314));function getHistoryFilePath(){const _0x21f25e={_0x57bf3a:0x5c7,_0x1aca98:'HMyN',_0x29a9f1:0x4cc,_0x280ba6:0x53b,_0x306fa6:0x456,_0x2487a0:0x438,_0x245713:0x4c6,_0x30f4c5:'dLFR',_0x1c13b5:'iuYM',_0x23c616:0x24c,_0xb84325:0x154,_0x40fbb8:0x654,_0x2a971f:0x2db,_0x5efb0e:0x1e5,_0x486619:')HZK',_0x8ca5b6:0x2ba,_0xd70371:0x313,_0x1a8c5d:'p24@',_0x111fc5:0x5a2,_0x525bd7:0x304,_0x1b65a7:'8kpd',_0x149144:0x28f},_0x2f7105={_0x4f856e:0x10b,_0x8f9409:0x143},_0x4aa01b={_0x551aaa:0x67,_0x13b62c:0x6f};function _0x1ba33c(_0x442375,_0x3a9cf3,_0x1f30bb,_0x5cfe9d){return _0x292e55(_0x442375-_0x4aa01b._0x551aaa,_0x3a9cf3,_0x1f30bb-_0x4aa01b._0x13b62c,_0x442375- -0x242);}const _0x1cf2a4={'DJwGT':function(_0x35c73c,_0x2d2b51){return _0x35c73c(_0x2d2b51);},'DkYVy':function(_0x4d5ce1,_0x4ccc76){return _0x4d5ce1!=_0x4ccc76;},'ryKGB':function(_0x239efb,_0x421495){return _0x239efb<_0x421495;},'VXScW':function(_0x1274e3,_0x54de40){return _0x1274e3!==_0x54de40;},'ojive':'default','cjKBp':function(_0x4e37ad,_0xb10614,_0x49f63f,_0x401881){return _0x4e37ad(_0xb10614,_0x49f63f,_0x401881);},'ijOoc':function(_0x506842,_0x17be42,_0x5735d3){return _0x506842(_0x17be42,_0x5735d3);},'DMRTI':_0x4c70aa(_0x21f25e._0x57bf3a,_0x21f25e._0x1aca98,_0x21f25e._0x29a9f1,_0x21f25e._0x280ba6),'ivsBe':_0x1ba33c(_0x21f25e._0x306fa6,'s&#w',0x3a5,0x448)+_0x4c70aa(_0x21f25e._0x2487a0,'oC4&',_0x21f25e._0x245713,0x2f9)+'on'},_0x4aa341=path['join'](os[_0x1ba33c(0x334,_0x21f25e._0x30f4c5,0x41a,0x3d5)](),_0x1ba33c(0x265,_0x21f25e._0x1c13b5,_0x21f25e._0x23c616,_0x21f25e._0xb84325)+_0x4c70aa(_0x21f25e._0x40fbb8,'5#n^',0x572,0x6a4));function _0x4c70aa(_0x5198f0,_0x3e7dfa,_0x2f131b,_0x2561c2){return _0x292e55(_0x5198f0-_0x2f7105._0x4f856e,_0x3e7dfa,_0x2f131b-_0x2f7105._0x8f9409,_0x5198f0- -0x3a);}if(!fs[_0x1ba33c(_0x21f25e._0x2a971f,'iuYM',0x2fd,_0x21f25e._0x5efb0e)](_0x4aa341)){if(_0x1cf2a4[_0x1ba33c(0x3d2,_0x21f25e._0x486619,0x503,_0x21f25e._0x8ca5b6)]!==_0x1cf2a4[_0x1ba33c(_0x21f25e._0xd70371,'UdU#',0x233,0x2b7)]){const _0x4ff74f={_0x581213:0x4ec,_0x36a02e:0x598,_0x3b2c94:0x5e7,_0x437a82:0x1ba,_0x27bf30:0x49,_0x3e87ed:0x17,_0x1c931f:0x2fb,_0x4f0202:0x31b,_0x189fc7:'s&#w',_0x4ae95f:0x1ba,_0x47b651:0x4f8,_0x4d038a:'EIp!',_0x504409:0x379,_0xd72b96:0x4d0,_0xd37e04:0x2a1,_0x10bcbf:0x599,_0x1b6182:0x5ab,_0x49ac7c:'i8ak',_0xbb98fe:0x4ef,_0x25e9fa:0x34f,_0x14d8b8:0x262,_0x357bec:0x21b,_0x3da2ad:'UdU#',_0x42dfdc:0x2e0,_0x27dd02:0x1a8},_0x5db80c={_0x551785:0x14b},_0x163cf8={_0x32c688:'Fp%T',_0x3dd4f0:0x202,_0x1505e5:0x17,_0x115803:0x111},_0x4900c7={_0x6d58e8:0x5b6,_0x381360:'@Ijh',_0x15fded:0x427,_0x32e680:0x346,_0x5c2d25:0x5f6,_0x2cc31e:')HZK',_0x29f435:0x69a,_0x586850:0x711,_0x13c8f5:0x767};var _0xc78010=function(_0x5602bd){const _0x445577={_0x4e5266:0x268,_0x17dfae:0x1a},_0xd6223={_0x180910:0x487,_0x37e8cd:0x184},_0x2e918b={_0x645c40:0x38b,_0x32ef49:0x145,_0x183170:0x1be};function _0x48577b(_0x43b157,_0x926804,_0x11c3a3,_0x2692a6){return _0x4c70aa(_0x2692a6- -_0x2e918b._0x645c40,_0x43b157,_0x11c3a3-_0x2e918b._0x32ef49,_0x2692a6-_0x2e918b._0x183170);}_0xc78010=_0x56b360[_0x42ffef(0x1f0,_0x163cf8._0x32c688,_0x163cf8._0x3dd4f0,0x2ad)+_0x48577b('Absd',0x129,-_0x163cf8._0x1505e5,_0x163cf8._0x115803)]||function(_0x248cd2){const _0x2974dd={_0x241e2e:0x1d0,_0x2e28bb:0x49};var _0x47dbd1=[];function _0x49969a(_0x3cf5cd,_0x38f8a3,_0x5e0fc9,_0x48492d){return _0x42ffef(_0x3cf5cd-0x5,_0x38f8a3,_0x5e0fc9-_0xd6223._0x180910,_0x48492d-_0xd6223._0x37e8cd);}function _0x57a463(_0x4ad421,_0x5ad2c5,_0x1432dc,_0x34cbe5){return _0x48577b(_0x34cbe5,_0x5ad2c5-0x78,_0x1432dc-_0x2974dd._0x241e2e,_0x4ad421-_0x2974dd._0x2e28bb);}for(var _0x4f40d5 in _0x248cd2)if(_0x5b6c8f[_0x49969a(0x460,'eV8k',_0x4900c7._0x6d58e8,0x44f)][_0x57a463(0x133,0x3a,0x7f,_0x4900c7._0x381360)+_0x49969a(0x49d,'dlAy',_0x4900c7._0x15fded,_0x4900c7._0x32e680)][_0x49969a(_0x4900c7._0x5c2d25,_0x4900c7._0x2cc31e,_0x4900c7._0x29f435,_0x4900c7._0x586850)](_0x248cd2,_0x4f40d5))_0x47dbd1[_0x47dbd1[_0x49969a(0x6f6,'7DT3',0x69b,_0x4900c7._0x13c8f5)]]=_0x4f40d5;return _0x47dbd1;};function _0x42ffef(_0x4f4665,_0x2e4775,_0x37fc0b,_0x34062e){return _0x1ba33c(_0x37fc0b- -_0x445577._0x4e5266,_0x2e4775,_0x37fc0b-0x17f,_0x34062e-_0x445577._0x17dfae);}return _0x1cf2a4['DJwGT'](_0xc78010,_0x5602bd);};return function(_0x145b69){function _0x17bdd2(_0x548188,_0x321d1b,_0x4edf3f,_0x2f1f0d){return _0x4c70aa(_0x2f1f0d- -0x629,_0x548188,_0x4edf3f-_0x5db80c._0x551785,_0x2f1f0d-0x192);}const _0x1f8190=_0x16fe4f(_0x4ff74f._0x581213,_0x4ff74f._0x36a02e,'dLFR',_0x4ff74f._0x3b2c94)[_0x17bdd2('i4iK',-0x279,-_0x4ff74f._0x437a82,-0x246)]('|');function _0x16fe4f(_0x4e27c0,_0x14775c,_0x2981c6,_0x130609){return _0x4c70aa(_0x4e27c0- -0xcc,_0x2981c6,_0x2981c6-0x88,_0x130609-0x37);}let _0x2eac10=-0x2227+-0x49*-0x1+0x21de;while(!![]){switch(_0x1f8190[_0x2eac10++]){case'0':if(_0x145b69&&_0x145b69[_0x17bdd2('*aV^',-0xe6,-_0x4ff74f._0x27bf30,_0x4ff74f._0x3e87ed)])return _0x145b69;continue;case'1':if(_0x1cf2a4[_0x16fe4f(_0x4ff74f._0x1c931f,_0x4ff74f._0x4f0202,_0x4ff74f._0x189fc7,_0x4ff74f._0x4ae95f)](_0x145b69,null)){for(var _0xdf7288=_0x1cf2a4[_0x16fe4f(0x3c8,_0x4ff74f._0x47b651,_0x4ff74f._0x4d038a,0x41e)](_0xc78010,_0x145b69),_0x149393=-0xdf3+0x150d+-0x71a;_0x1cf2a4[_0x16fe4f(_0x4ff74f._0x504409,_0x4ff74f._0xd72b96,'c1H$',_0x4ff74f._0xd37e04)](_0x149393,_0xdf7288[_0x16fe4f(_0x4ff74f._0x10bcbf,_0x4ff74f._0x1b6182,_0x4ff74f._0x49ac7c,_0x4ff74f._0xbb98fe)]);_0x149393++)if(_0x1cf2a4[_0x16fe4f(_0x4ff74f._0x25e9fa,_0x4ff74f._0x14d8b8,'iJ%q',_0x4ff74f._0x357bec)](_0xdf7288[_0x149393],_0x1cf2a4[_0x17bdd2(_0x4ff74f._0x3da2ad,0x156,0x127,0x36)]))_0x1cf2a4['cjKBp'](_0x37bd67,_0x36333c,_0x145b69,_0xdf7288[_0x149393]);}continue;case'2':var _0x36333c={};continue;case'3':_0x1cf2a4[_0x17bdd2('i8ak',-0x2f0,-_0x4ff74f._0x42dfdc,-_0x4ff74f._0x27dd02)](_0x5af208,_0x36333c,_0x145b69);continue;case'4':return _0x36333c;}break;}};}else{const _0x253781={};_0x253781[_0x1ba33c(0x3b5,_0x21f25e._0x1a8c5d,0x524,0x419)]=!![],fs[_0x4c70aa(0x453,'c1H$',_0x21f25e._0x111fc5,0x4e9)](_0x4aa341,_0x253781);}}return path[_0x1ba33c(_0x21f25e._0x525bd7,'bg9a',0x1c7,0x3cd)](_0x4aa341,_0x1cf2a4[_0x1ba33c(0x21e,_0x21f25e._0x1b65a7,_0x21f25e._0x149144,0x236)]);}function readWorkspaceHistory(){const _0x143956={_0x46edf6:0x57e,_0x48593e:0x5ea,_0x3f3f30:0x696,_0x58963b:0x7cd,_0x105af1:0x5ad,_0x2ceac7:0x551,_0x5e582b:'s&#w',_0x2b5ee7:0x6f4,_0x41c80d:0x59e,_0x13f5d1:0x65b,_0x12f31f:0x4dc,_0x51d94b:'sErF',_0x4ebd6b:0x484,_0x3b3318:0x67a,_0x27e147:'7DT3',_0x10dbc9:0x7d0,_0x309291:0x6ed,_0x10bfe3:'U(wp',_0x3a0757:0x585,_0x323fb9:'Absd',_0x3b41aa:0x800,_0x519b47:0x785,_0x44738a:0x62f,_0x391391:0x69d,_0x5a5307:0x3f3,_0x22a2c5:0x51c,_0x520567:0x77b,_0x5de947:'Lj*V',_0x2444e0:0x62a,_0x39c312:0x644,_0x562144:0x65f,_0x2f8cd2:'U9hY',_0x293eaa:0x89d,_0x6c6cff:0x86d,_0x177357:0x72b,_0x4827d8:'oC4&',_0x296cec:0x593,_0x40908d:0x70d,_0x1ca951:'2!5z',_0x417c45:0x62c,_0x4e6209:0x545,_0x59fff5:0x661,_0x233984:0x3ec,_0x7c5d0d:0x58a,_0x413735:'HMyN',_0x49e456:0x619,_0x5a89d2:0x62a,_0x3c2b95:0x5d9,_0x3b1473:0x642,_0x2794db:'iuYM',_0x44a812:'(#SV',_0xf7fa34:0x4c0,_0x515ed5:0x4f4,_0x380281:0x69c,_0x26c1e9:'rzql',_0x1d5826:0x69c},_0x428499={_0x24fbde:0xe5,_0x3eb2f8:0xf2},_0x2c269e={_0x12a030:0xd1,_0x5894d4:0x4f,_0x5ae7de:0x8e},_0x18b545={'Voypl':_0x49910e(0x4eb,'p24@',_0x143956._0x46edf6,_0x143956._0x48593e),'YsPmx':function(_0x6a8751){return _0x6a8751();},'vZvDO':function(_0x26452,_0x2d445e){return _0x26452!==_0x2d445e;},'kHIDf':_0x3312eb(_0x143956._0x3f3f30,_0x143956._0x58963b,0x65c,'#y9o'),'sIeOz':_0x3312eb(0x4ae,_0x143956._0x105af1,_0x143956._0x2ceac7,'U9hY'),'jYNdh':_0x49910e(0x768,_0x143956._0x5e582b,_0x143956._0x2b5ee7,0x838),'mZvRw':_0x49910e(_0x143956._0x41c80d,'sErF',0x564,0x5d0),'HYHhW':_0x3312eb(0x60f,_0x143956._0x2b5ee7,_0x143956._0x13f5d1,'%PeD'),'UwMtD':_0x49910e(_0x143956._0x12f31f,_0x143956._0x51d94b,_0x143956._0x4ebd6b,0x43d)};function _0x3312eb(_0x1b254a,_0x5c56e6,_0xe7baf3,_0x56ed34){return _0x292e55(_0x1b254a-_0x2c269e._0x12a030,_0x56ed34,_0xe7baf3-_0x2c269e._0x5894d4,_0xe7baf3-_0x2c269e._0x5ae7de);}function _0x49910e(_0x4fad97,_0x906973,_0x40f8a6,_0x687d39){return _0x292e55(_0x4fad97-0x2c,_0x906973,_0x40f8a6-_0x428499._0x24fbde,_0x4fad97-_0x428499._0x3eb2f8);}const _0x35303c=_0x18b545[_0x3312eb(0x619,0x759,_0x143956._0x3b3318,')HZK')](getHistoryFilePath);if(!fs[_0x3312eb(0x661,0x5d5,0x6cb,_0x143956._0x27e147)](_0x35303c))return _0x18b545[_0x3312eb(_0x143956._0x10dbc9,_0x143956._0x309291,0x73c,_0x143956._0x10bfe3)](_0x18b545[_0x49910e(0x6d0,'s&#w',0x7cd,0x777)],_0x18b545[_0x3312eb(0x438,0x48e,_0x143956._0x3a0757,_0x143956._0x323fb9)])?[]:!![];try{if(_0x18b545[_0x49910e(0x78d,'*66P',_0x143956._0x3b41aa,_0x143956._0x519b47)](_0x18b545[_0x3312eb(0x7e5,_0x143956._0x44738a,_0x143956._0x391391,'vi1o')],_0x3312eb(0x46a,_0x143956._0x5a5307,_0x143956._0x22a2c5,'dLFR'))){const _0x3ccd73=fs[_0x3312eb(0x45b,0x41c,0x584,'Jc6R')+'nc'](_0x35303c,_0x18b545[_0x49910e(_0x143956._0x520567,_0x143956._0x5de947,0x8a6,_0x143956._0x2444e0)]),_0x2cefc6=JSON[_0x3312eb(0x5a0,_0x143956._0x39c312,_0x143956._0x562144,_0x143956._0x2f8cd2)](_0x3ccd73);return _0x2cefc6[_0x3312eb(_0x143956._0x293eaa,_0x143956._0x6c6cff,_0x143956._0x177357,_0x143956._0x4827d8)]||[];}else _0x2a32fe[_0x3312eb(0x42b,0x4ff,_0x143956._0x296cec,'iuYM')+_0x49910e(_0x143956._0x40908d,_0x143956._0x1ca951,0x5d5,0x787)](_0x3f9468['id']),_0x248adf[_0x49910e(0x508,'#y9o',0x4ca,0x5fb)](_0x1319d4[_0x3312eb(_0x143956._0x417c45,_0x143956._0x4e6209,_0x143956._0x59fff5,'eV8k')][_0x3312eb(_0x143956._0x233984,_0x143956._0x7c5d0d,0x4e7,_0x143956._0x413735)]('✓\x20已恢复会话:\x20'+_0x473a4d[_0x49910e(_0x143956._0x49e456,'Jc6R',_0x143956._0x5a89d2,_0x143956._0x3c2b95)+_0x49910e(0x757,'i8ak',0x6ca,0x777)]+'\x0a'));}catch{return _0x18b545[_0x3312eb(_0x143956._0x3b1473,0x5a7,0x69f,_0x143956._0x2794db)](_0x18b545[_0x49910e(0x56b,_0x143956._0x44a812,_0x143956._0xf7fa34,_0x143956._0x515ed5)],_0x18b545[_0x49910e(_0x143956._0x380281,_0x143956._0x26c1e9,0x79e,_0x143956._0x1d5826)])?[]:_0x18b545['Voypl'];}}function _0x34db(){const _0x59eabc=['fmkkWRFdRGW','n8k1WRxdMXi','W7tdImohldHWhHuI','W5P0W4hcGMG','WOZdSCkelSoq','hCkfeq','oYNdGCoGns/dK8k8W7xcRq','W53dICo4ns8','m8ktqSkvWPC','iCoQW5NcVq','nSoxiNKw','rmkVsmkdpwxcPG','6kYt6l6f5yEG5O2F5P2Yn0jF','jCkIWQP9W4ivx8ozlG','WRjUD8oDEKBcM8k1WRzP','dmo2WQS','8y+qQfO','4P2qWQ/LTQ/MGAdLP5BKVRdORkaVWQe','y3JdHSoyofXPWOKh','W7rSWO3dQSkiW6hcJXpdGc0','WOON5BAg5l2Q55Qs5BYffJa','6lwj5B6k5lUM5PMs55Iw5B+W','6kYN6l+D5yAY5Oo95yQy55gR5zcS56sx772F','W5NcIgqcEG','WR4NW4tcPCotWQlcNW','W7BcOgefD8kcWRC','WQxdTmopW49lWQtcSSkrW5/dUq','W7RdOv/dSG','d8ouW5hcICkT','W6FcQveHWQhcGSktwwldNa','Emo8WRBdQqHYz8omW5W1','W7OyWPT0WRxcHmkO','h+wfK+ILME+8Gmo5','W5z8WOqqWOJdKq','4P22WRxNSOpNU6xLTRlLIl7LPPZLJjdcMG','l8ogauKm','AmkvAmk1beVcMSoHWO9D','o8o5W53cTq','W6xcIfjwWOq','a8owW65JW70gWPVcHKv3','DmoxWPJdGJ0','zSkulIVdNq','uwddSrvA','g8obpKZcGq','W7TRpmk8yG','WQ/cGfm0W6u','W5qezmoT','W4ddT8o6db4','W4q5g8oaWPlcNG','WOiWW7NdP8oE','5O2y5PYnWPZcO0JMOzhLVk7MLiFMLi0V','W4DTlfKK','W78JrSoQEW','WOCHt3NdJG','W6BcQu8ZWQhcG8ku','W5BcLLDLWQe','sHmIC2JcUq','W4iyWPXGWOy','W5VcOum','aCo8fq','W6ZcUYtcTa','WOpcR8onWO4zWOdcPq','WPzf5OcS5yIH55c85zg556EscSkV','umozW695W6acW4xdJW8R','iCojWRtdUei','WQ3dI8kc','W7aVn8kd','p8kNWRtdVH8','j8kpyG','b8k/t8kvWPW','aSkpbvbJhCkJ','gSo6cLRcQW','WPmbr2FdJmkbWQ9xkvK','sNaFC0pcLSoYWQNcLe4','ug88','WQRcGuq','E+kFUvBLT4BKVzBNMPZLVPJLTjxOR7VNVle','W7GcnCkKoG','EfyHxx4','W45IbvCjpfG','W6RdSui','W6v1W7/cJxO','W6hcTsFcTZedBmkCh3G','E+kFVvBPQQ/OR4VLPypOT6JdNwu','WRpdTSksoSo7','WOyVWQFcJx4','fCoNf1CWvW','WO8OW7ldH8oY','hcGGWPxcVCoxWRhdH1jW','emoKd28i','W6tcUvW','WOGhW5RdHSoc','AmolWP/dMJtdJCo3W7FcLKW','W4TVW5tcS04','W6G5a8olWQ8','W4hcOvlcO8oz','u8kVxCkriwBcVa','z8oIW5NcHmkiWRHm','lINdHCoejYG','W5v6WPKuWPBdGSkJmqm','qNJdLSoEi0bU','xSkFnCkjWRy','W45VWPGYWO/dI8kAjruD','W6/cVZRcOJKdFa','W7eSWQ5sWPy','umkLEmkaiq','W6b0gLO/','W4bHWPKqWPNdKCkymHCm','W5jo6lEn5B6n5Pwy5PABW6m','W6NdQKRdSKu','6kYt56g46kYH6ls45B61rGC','C1tdLCojla','5ysuW4Oha+MaIUwgIo+/HmoD','fmopWRyUWRTpWPldVGKVW4us','EmkPnCk4WPDS','WOTIW53cVvC','y8obWP7dHdtdNSoa','W4RcKb/cTcW','uCo7WOJdHbJdLSobW6FcL0G','W65qjSku','WOqXW6/dQ8odWPrhWQ7dKa0','lCkiW7iXDW','WP/cTHpcOCkZW6vds8kRW64','W7TOgCkbBG','xa89BW','W5SpwmoNyG','uSk4sCkFjG','dfHgD0ZdKSkD','mI3dMmoe','W4RdTSo9pbS','kCkFE8k9WPm','iNzRCeW','W7qTh8kwaq','EviJw2W','nmkAWQVdQaa','W5ZcOLuUWQ/cUmktwMa','W73dImoAfaC','mmoQW4lcV8kv','WR/LHyhOP73VVyhdGG','B+kEGLJLIkFLPOVLJlxLPABOTkm','oCo3W5C','mSk2WR3dRrnRya','mmk4l2zW','W6pdImonptK','5P6M6l+F5l6u55wv55M85Bwa5l6w55Q55BYV7723','W5BcN119WQq','gmkzmKj+e8kVWOy2oG','vvJdKHq','W44jimkbfY8e','n8oaWQpdU04wW5xcRNKk','pmo2W4dcPCkt','fZqGWOJcRG','WOtdVWKVWQNcRCkUwfq','WQFcT8oTWOWY','WR0NW5BcL8odWR3cMbJcGcO','xruhyem','W6Lulmkzwmoyvq','W5Cuj8ofWOW','W7O+AG','W4tcP0RcMmoy','W5NcV8knWOamW6xcV8kDWPFdMa','WOGNW6/dSCorWODd','mSoQW5hcQq','6zEHW6tcUa','WR0uWQhcLey','W4FdSSknW5rcW57dQeRdSCkInsiW','xMddRcTN','WOFdTqr5W7ddMSkJC3xdQqPG','s3SmF1pcImoN','Fmk+iG','WRlcJb4','W7m3B8ogta','zCkSW7DSWOmD','DNldPSoDpW','W7u3W5BcRCokWR0','p8kUW7GiF1CFWP1fCW','t8kzW6e','ASksmZBdLG','DxJdG8omp0n0','W4dcOvz8WQDKWOFcKI5s','wmkGuSkgmq','6iYb5y6Z5O6F5P+lCrfB77YQ','W6hcTxhcNCoL','WOuDW4FcT8oRWQhcJWtcGYe','WPiTW67dQCodWPbhWQpdGta','qb8GyhNcOW','mcNdM8ogmJq','W4jRWO0CWO3dICk+','hSkYa29j','rwv4tMhcK8kXWQWDWPi','ACk+na','aCoWhLS1tYm','W6FcTCkh','WPpcS8okWP8','kmk7W6mjBW','W50vr3VdJSk6WQLcnq','zgBdMGj/W45zWRxdI8kp','W6mpWOfQ','E8klWOpdLd4Qtmk7W6Km','w2uVwM1rW61Uou8','W4BcJ2TiW6S','WRdcTfufW54','W6xcU8knWOq','W6nYm8kxAW','bmkRmNfZ','ExZdLSoIpufqWO0nEG','vLZdJajtW4zy','WOVdImkgpmoQ','htKK','WPFdRUwjJEs9JUAuOUMxOmoCW5e','WRGCWP1ZWRZdJmk+W57dN8k+','W5iMaCopWP8','W5K5eConWOJcHwS','r8k/smky','W5bCW4VcOMyOlM4iCW','xSkKuSkEm17cOConWR4','W6FdM8oena','ftuNWOhcVCom','xKVdJr5a','EmkImCk3','vSkTxSkEifJcRCoqWRrH','W4RcI2qQwa','imoUmw4','W5VcRveL','W64Lpa','m8ofk2G3','W597WQuSWR4','oSk8WRW','WRzX5Q2U5B+w5O+h5PY0zSkMhHe','W75zjCkpymovsmkqW7NcUW','W4nuW4dcJxK','gSoSWOFdU1u','WOivW5FcVSob','dmo6WQddOw0CW6hcQxOF','CSkPjSkiWPO','dmkQxmkqWRy','WOZcUdJcVCkx','W5mBqCk9ca','W74fo8k1ja','W5dINzhcGUAnJoAFPEMPGUISQUAjOEwjSo+9Hq','k8kafhfU','WQtcJbZcRCk2W6zf','WRRcVb7cTcehyq','CmktW7z2W7SxWPZdKXG','WOqLW7NdSmk6','W5pcPva0WQ3cNG','lCkmlYVdGCky55U755MA5B+F77+q','6k+M6l6o5yEa5OYL5PYjzgxcHG','WOVcQ0W5W4y','W4PHWOW','htuVWOFcVmoiWPy','o3XbC3m','5PI+5zc76ywO6k24772v','vxmiCgLmW5rZogK','W4CfWRLvWRG','W7pcPx1bWQ0','WOa0vwtdVa','WQJcIuqvW4S','W5GeESoT','h8k9WRldUa9MEmkkW4SX','W6FcNwJcTmoACa','W65ik8kw','W645bmoFWPtcHNe','W7Pdi8kmtmowtCkB','nmomo1uk','W5lcVfbU','W68LnmkwnX3cMSkZ','W7mmjmobWPW','W680oCkbid3cQSkE','AmkYp8k3W417s8kUBq','55MB5B6z5lI35RoH5P+bW4ZcLuDGW6e','W5BdSSoYosC','W6RcGxXsW50','6zsU6AgX5y636AweW7NcQUAkP+MFJmoyWQK','F8k+nSk4WPzLwG','vImSWPtcV8onWOhdM088','W5eZea','W67cUuLZW6NdOapcTIHy','W6/cV8kgWOaqW6FcOG','WQlcH04','CCk7W75GWOyfga','dmo6WQddQxyvW4u','W6VcT3uOuG','umkgW6P+W70','fSkpW5ukqG','W7hcQMKcA8kjWRBdJ8oOW5u','WPXXlEs7REAwUtW5W79WFa','WRaOW4ZcGCoK','6kYs6l+r5yE5WQlcNSkpvSkLW4OG','5P69556y6zEX6k+O','WP/cSSo6WOCeWOFcS3hdS8kP','bmoWWQe','WOeRW7e','W7BcQddcLJ0qxCkpdLy','iSkHWRldOq','WQtcUwqnW4q','v8kdW69cW70FWOtdJW','pbddMa','ihD2C00','W6f2W6ddSanyeCksawhdTYNcMW','lSkdASkLWQtcUY8','WOHZW6VcSeuu','tMu/','WR0NW5BcHCovWR3cGGlcMYu','W4HnWOCCWO/dT8kLoa4','W4WGxmoFwq','boAVH+wFHEwkQUwMNUwoR+EXNUE5JCovaW','4P22WRxMJ7dMNBNMNyNMLAVVVzVLIA/KV4NMLOa','W6zCW4dcONOQmW','W5mrtSoQta','d1Hu','wvddRdva','q3SeEvlcJa','WR/cI08TW75G','bfjh','FM3dGmodcunHWOGWzq','W4dcV3rRW4u','W6xcQNupCCkEWQldNSoSW4q','jCkvsCksWOi','WOjVW7BcRwe','W6hcTGFcLXe','WPlcPmoyWOCfWORcPq','i8o5W5ZcUCkd','B8kplZa','WOxcJ8oyWQuu','s8kFW6HJ','hIiSWOpcPW','WQFcJa7cJCkGW75ysCkD','W4n8WP8e','W6eCWOrUWRa','dCoyWQK5WQDzWOVdKXG9','W6tdQ0ddUqVML4tKUQpVVyZcVa','W6fujmkFwCoC','zSkiksNdISokhSowW6BcVa','i8oqWOtdMMe','ymkjmJddHSowcSor','WQuEWPRcK0a','herqCW','W5pcP0K','W4Oyc8kqaW','WRNcHXK','WOtINOSp57gS57U05yME5AAE5y2t5OQM5yUx','WPpdOSktfSoV','mSoQW5xcTCkj','W7SsWO8','eCoqaG','A8owWPNdJG','d8o6WRi','WO3cQMSLWRhcJ8kc','ASobWOVdLIddLCor','p8kLWQJdJGm','ocNdK8oamZddJG','W6i0WR7cKL4zvW','WOeNW7RdO8ofWOXs','WR/cQSojWQW/','W6pdGSorgsm','mmkCF8ktWQS','efDjB3y','W4hdV8oKeIi','W7i0A8k4oHSO','mmo/mwVcRW','WRldPEMuNUIUIZJdJG','WPmJW7ddQ8ou','W6XDW4pcUW','WPyptW','uokFICk36k+f57245BEg5lYS55Ib5B255AsN','W7qyo8o+WP8','W6tcS1v5W7ZdVa','WO0RW6/dTSoFWPjFW67dJJa','W6VdOeBdPf8WbJZdMcS','rbmGCW','q3en','6k6H6l2a5yA+WQXiAgtcHSoFnW','WPRcPmoqWOeeWO4','W4pcRvaPWQW','W4PGW67cQ1G','FcpdHCoekd/dLSkUW7BdOG','ASonWOa','dJ87WO3cUSouWOpdNvLG','W4WSkmk5da','W6ZcV1y','omkFr8kdWPm','W6uummonWQG','WPrIW6RcPq','BmklCZtdNCorhmoDW6tcVG','5PIa5zc45yM35AEv5yYW57cF57Mm77+u','bdlcKSo5WP8icYlcNg0','l8kQW7fwlG','WRdcMXxcOCkZW74','w3i+Chq','WOvwl8k8wc1pyCoNkq','bmoYd8ofzZ7cSmorWRX/W4JdOa','D1yTF3m','WPCNW6ZdP8orWPq','W5dcKHpcScG','j8knAmkTWQpcHcldLa8','wCkTW5rdWRq','W6CpWODQWQtcLW','WPxcS8oBWOCeWOm','W6ddN8ooosjOeW','W6q0Aq','W5mxy8oXDbvpvCo8','W6Pch8knxq','B13dMt1H','pCkuzCkWWRtcKtldLGL5','W5dcVefYWRO','W7JcTSkjWOia','r8ktW6b2W7WAWPW','WOv6W6ZcSW','W6NcTu93W77dSq','uwuOzNTyW5G','W7TqjSkrsq','kSkRW6qt','dmo7vLCLtsi','pbBdNmoiWRq2pKtcOuW','5PYJ6lYN5l+555s/55In5BAt5l6055Ms5BY/772c','W6ddK8of','jqVdMCkaW6i','772u5yY/WPxcJYKSW5/cOCoIWQa','4P6rW7RNSRlNUi7LTQRLIBNLP5lLJ7HW','nmozoeJcUG','WQnfl8kzqmkztmkFW5RcVW','Eg7dS8omjKzKWRasBW','W4LoW53cJ2LrF34+aG','W5NcO1S','rvdcImo5d2jqW5i6uG','WQ82W4tdQCkE','kGZdISoyWRi','vKGlFgS','W78CWPTiWQpcJCkDW5JdN8k8','W6ldT0G','W5FdG8o5prK','tvJdKWrx','lYNdHSoslZpdLa','WPCftwFdNmkG','WObZW6pcTKqquW','W6FcOMn0W64','DM/dGmoija','aCoRWQNdUNO','W64yWOrRWRVcLa','WPydrgJdJCk/WR4','nsBdUSoojq','WRqRWRhcP0qbvq','WQ7dLmkgo8oEWRGzW43dNfO','W6zqW4S','W4RMRORLNzlPQydORilMJilMNBirW5BcTa','W5u1gCoy','eCoNevC','W5hcQvOHWR3cGmko','W4lcH055W5O','W6xcV1u','WR0WW4FcOCoi','sCoOWQRdTI8','WRlcICoyWRmI','WPael8o0WQxdHeDMhXe','W68LlmkWirVcJCkYW7DV','WRjUD8oDEKBcNmk4W6T+','aCoSWOldOxeCW5lcR3OD','6lwK5B2E5lUT5A655z2n','l8koW5OUzW','W65nfheO','mXddKColWRmIDNVcTLq','W57cPelcKCo4','WOWSW7xdRmoxWRrpWQ3dGq','j8o9W4dcTCkgWRG','CmojpspdISowc8kAW7JcVa','FLhcKmkdW7rQogdcTLa','WQmRWQpcS0e+rmkvm0W','WOfKW7hcRN8DsKmv','WQ5XBCohyfhcTSkoW5n5WQddQW','W7hcNatcNaW','WPaoW5VcKSo+','WPbZW7BcOW','uqOziqdcImoFW4X0W70','W63cI8kMWRqN','z8oGW67dOWDgqmkmW6a','WRdcRfyzW5m','wtezCwS','W6RcK1uTWRJcG8kiq0hdQG','WOOpzgZdNG','gJGMWO/cQSobWPe','pCk7W6m0yu0GWP1dzG','W6/cS8kn','lSkSW648C1C0WO5yDW','shuYqg5wW5fV','emkzbuP5bSkSWOKXaa','W6zZg2mj','W77dQKddO0q3ldxdKW','WQqiW53dHCos','W5FcO1aK','6lEy5B2o5PEB5PA4','W40Pbmoe','W5iaCCoPtXHw','W5TkW6tcPhG','A2JdUaTB','W67cQmksWO4x','zJefyxG','W7TCW4RcR2aX','FCobWPNdGIxdQSoaW6dcJuq','jH7dK8oeWR4','CCkdpsddQCore8orW5NcOa','WPDFW6dcMeS','vxaVugm','hcdLIllKVyZML6ZPL4VcHZW','AmkpoCkPWQi','6k6o6ygz5OQG5OUW6l2A5yEbW4ldSuX2','b8klgKPU','W6BcVY/cUdybsCkCfuC','ChddGa','os/dMSopiI8','4PI277MElCo56z2p6kE25O+u5P+f6AUg6k6DWPO','5Ocx5yUt55gi','W41If3ujiL51WQXv','sgCWuwO','5O6E5zQJ6l6o6zsP57IZ57IoW6pcHmkE','W75upSk7wmogu8kBW5RcQG','WQmFzCowa8kBqSkrW4BcUW','W4qnp8kYmW','rmkehCkyWQ1CB8ksxqq','W5pcQ0j2WQf4WPi','veRdUIDH','WQlcIaNcQq','wd4+E0FcICkZWOBcMuu','W6JdLCop','du9uBW','fZeKWOm','WPmraUEBP+w/REI0Vow9JU+8Q+wnG+wqGq','WO8OW4FcP8oF','sMe3Fh4','D8k0nW','W7JcO0H2','WQhdUvRdO0nSocZdKIW','pCk7W6m6zvazWPXyDW','W5u+WQ/dVSkeWPWuWRZcLq','W6FcNwJcRCofCaVdHc0','pCoXW57cPa','W7VcVYxcVtCt','W58RpSo9WOK','W4hdVN7dMMe','W6Hji8klwCohCSkhW5RcVq','l8oVheW3','W6VdQLVdRG','pmo2W5NcPa','W6fElq','lCommwpcRmkk5Bsy5l2j55MV5B24','CSkEkH7dUa','WOtcOaZcR8kh','W54ZgCokWPtcM3i','hCkGWP3dQI8','ySkvlY3dNmomhSoAW77cHG','i8o5W5ZcPCkc','W5VcQ0PWWQb8','4P6c77I+ASoy5OMM5yIC6l6Y5yAB6lwB5B2A','WQm1W7JdRSob','WR/cJ0qNW7G','o0Xtuee','W4lcVmkzWRCk','x3SexuRcHCoKWPNcL0q','nmo/W5u','WP4jrq','W6tcS0X/W7RdSq','4P+jyUAmQUAEH+AER+AwHU+/P+wiMos+TUAwSG','W681o8kqmrRcJa','oSokhuKntdnZW7Wt','W5dcR1mUWQZcNW','W7/cQmkjWOW','W601WPLjWRO','W6FcQdVcVIO','mhLYw2S','WQxdGCkdnSokWQmz','W77cQMa','6k+u6l2L5yEJ6lE45BYn','W4pcOxfNWQrXWPtcSIOm','aSoNhv8U','W4TGbLGiaKLGWQ1s','WRu8WQxcQum','WOm6WO7cHvm','DmkAW4joW58','l8oKpMdcIG','nCk8WRxdQG91Eq','mmkXW74v','W7GsDmk2cq','rSk6W7bvWRW','sMWyCvq','W4VcQeakDG','W6xcQcZcTdy','WRu8WQpcV3uiuSken0W','F3ZdImoi','6lwA5B2i5PEC5Psi','5O2s5PYbW6NcOCoF5QoY5B+K5PAr5PANtG','6kYf6l+15ywh6lEM5BY8','rmktW7jyW74yWRJdJGuO','W47cOeC','W4DOWOuQWOW','W6ZdK8ogla','C8khACkKhq','WPC9W5HpW4RcNCoZdqSdW7VdQxa','W5a1e8klhq','ete6WQNcVSokWRldJfnJ','seZdNbjxW5jo','W7NcV8kqWOqeW78','WOddOmkHmCox','5zk5W6vOfgFcGmkGW5hdQmoa','W6hdImoAnYu','fCk5F8kHWQxcMJtdNHLg','6lATW6WB','W5pcL8khWQac','W5dcT35yWPG','WO3cRbxcTmku','zmkdkaxdNmolfSohW77cUa','BghdJszd','W48CqmoswW','pSk7W7eAy08e','sgKatKW','W77dQKddULS3','x1ZdMrHCW4rTWRldImkA','6k6s6lYg5ysD5O6Y5PYdAdj/776y6l+L','FxldGG','W7q+yCk9','m8kHWQNdOXq','W7DDWQGxWPe','WQWxWONdRsfPjg8Drq','WPSarg/dNq','W5tcIuGSwW','W47cIItcUIi','pXtdNCoanq','W6pdJCoccd0','l8kfy8kQWRxcPa','FCkXW7vKWPCahG','lmkYrCkaWRO','WQVcHvmVW6a','aSoWWQ/dPG','WPysW4/cR8oC','W4vI5OkN5yIR55k2WQLIW7RcHa','W5DEW77cUN0','WR8YW43cT8opWRRcHapcHIe','WPiWW7xdTSovWQzpWQZdGra','W5O2nmo/WPa','6yk85OIL5BEz5lYC55IM5B6577+G','ft8U','BfeCB3m','qCkeW4fgWQK','W7FdLCog','8y+zG1RPG4ZLHlK','c8o3WQFdPgG','W4Xbd2ez','W7/cO8kqWOq','b8ohWRpdHea','C2RdRmo8pG','aCohaLuV','WODVW6tcUq','rrqNAwRcN8oDpmki','uNm+wNrtW5rYmW','W7hcQe54WPi','yMJdHSool1XZ','uLFdJGrBW5nyWRi','fSoHgu41ua','dCodcgBcLW','WOq1Bf3dQW','W67cTs4','cCo6hW','WOCxvvZdSa','csFdRmo1lq','WRBcG8kqyw8YpIe3W73dLCkp','mdS+WQZcHG','W7uUkmkgia','WQhdVtnrmCoAWRVdJmoUW5O1cq','eCo7Cos7REAuLujlWQC4EW','qCkZW6vrW7K','z8k7W7W','iSk8WPFdOXfIzSkGW5aN','A8owWP/dMcC','zSkukd0','ASoo6lEJ5B2a5PsX5PAFCG','kaKkWONcGW','fCk5sCkCWPJcGWtdPq','W5ZdTepdRMa','omkeh1DJe8kHWO4/oG','W7ldM8oelti','W5vPz8kGDCoSEq','jmkDo1Do','W6byW5xcPG','kCkiW7GquW','o8k5W7ivyNevWP9dzq','rCkxW7n7W70','hci7WONcUW','WRhcUeylW7a','gLHbCMRdM8kAWOCSWQu','lwXvr08','WOtdTSkDgCoj','gfXuFG','w8kLxa','dqChWR7cNG','6kYb6k2+6zwq5lId5lM75z+w5z6r6ls95lUW5OUA','ECkXW78','WOOKWRxcLfu','W4iYwCoqBq','WQJdOmkmmmo6','W73dTeBdTe4','W6aWyCkSkG','WQRcI00MW6v/','o1HqD0VdN8kDWPS3','g0n+pJ/dSSooe8kogvZcLW','WQZcHH0','qgKTxhm','wx8gD0i','kCkhymkO','6lE65B2A5lQv5PIU55ID5BY8','WQ4NW5hcSa','WRFcICkqBdvDcJqVW5u','W7FdKSohltTGlGSUW68','aduLWORcPSot','mCk2WQ/dNWn0z8kkW546','WPxcRSoqWOazWPtcVa','WRGvw2xdUW','WQtcOrFcLmkw','W5alhmooWO0','wgu9Dg9tW4K','eEkFIhdMJzhMNQdPQOxOR6/MI47LIP3VVzO','W7JcT0LTW60','dZeLWO/cRq','nbRdMComWQ8PlW','W5efpSoVWPO','WRtcMWpcI8kMW751xSkmW7S','hmoQWQ/dNxCqW53cQa','W78LySkRnG','hshdK8oVma','ia3dKmozWRuXiN/cOq','xmobWOddLJZdL8omW7ZcNh4','W5ujDSo/fb5rx8oH','WOGdWRdcH1y','W5KuWOb/WPK','W5ZcHM1tWRi','W4VcJuanDq','WR4RW48','g8oAWQZdMgG','ntVdMSolWRSWn3S','W7dcNmosyCknW7PDW5xcTN3cMs/dJW','W7tcHglcQ8keDXFdHJ7dHW'];_0x34db=function(){return _0x59eabc;};return _0x34db();}function saveWorkspaceToHistory(_0x46ca0d){const _0x113765={_0x49629e:0x19b,_0x5bfe91:'eV8k',_0x25b677:0x251,_0x3a403d:0x182,_0x1b2b20:'2!5z',_0x52144d:0x685,_0x251b50:0x190,_0x3be487:0x2a5,_0x105a78:0x2a8,_0x44ad11:0xc3,_0x193b56:0x144,_0x5efdf2:0x273,_0x2b88ba:'c1H$',_0x1e705e:0x64b,_0x58dfd1:0x513,_0x13f4b4:0x1a1,_0x429998:'uo]V',_0x570056:0x249},_0x57768a={_0x2ab4ce:0xbd},_0x3fc180={_0x58eb0d:0x1d3,_0x1cf1bf:0x54};function _0x359641(_0x597c18,_0x312755,_0xb5c6f,_0x51d7fd){return _0x4107f9(_0x51d7fd,_0x312755-_0x3fc180._0x58eb0d,_0xb5c6f-0xec,_0x51d7fd-_0x3fc180._0x1cf1bf);}const _0x61bfe9={'yagfi':function(_0x1a0521){return _0x1a0521();},'ODlKr':function(_0x51e960){return _0x51e960();},'ifffe':_0x3a5d02(_0x113765._0x49629e,0xd5,_0x113765._0x5bfe91,_0x113765._0x25b677)},_0x8dd0be=_0x61bfe9[_0x3a5d02(0x224,0x19f,'U(wp',0x2a5)](getHistoryFilePath);let _0x50c0b2=_0x61bfe9['ODlKr'](readWorkspaceHistory);_0x50c0b2=_0x50c0b2[_0x3a5d02(0xef,_0x113765._0x3a403d,_0x113765._0x1b2b20,-0x3)](_0x3c43de=>_0x3c43de!==_0x46ca0d),_0x50c0b2[_0x359641(0x6b1,0x5e3,_0x113765._0x52144d,'Np8L')](_0x46ca0d);function _0x3a5d02(_0x3cdba0,_0x35fe8b,_0xf81d73,_0x5b11ee){return _0x4107f9(_0xf81d73,_0x3cdba0- -0xf6,_0xf81d73-_0x57768a._0x2ab4ce,_0x5b11ee-0x13);}_0x50c0b2=_0x50c0b2[_0x3a5d02(_0x113765._0x251b50,_0x113765._0x3be487,'tNhW',_0x113765._0x105a78)](-0x1*0x1139+-0x17e9*-0x1+0x10*-0x6b,-0x10d5+0xb*0x97+-0x1bb*-0x6);try{const _0x262ae7={};_0x262ae7[_0x3a5d02(0x137,_0x113765._0x44ad11,'S3%]',_0x113765._0x193b56)]=_0x50c0b2,fs[_0x3a5d02(0x18e,_0x113765._0x5efdf2,_0x113765._0x2b88ba,0x5b)+_0x359641(_0x113765._0x1e705e,_0x113765._0x58dfd1,0x65b,'s&#w')](_0x8dd0be,JSON['stringify'](_0x262ae7,null,0x47d*-0x7+0xd*0x22f+0x30a),_0x61bfe9[_0x3a5d02(0x268,_0x113765._0x13f4b4,_0x113765._0x429998,_0x113765._0x570056)]);}catch{}}function validateWorkspacePath(_0x2b80d7){const _0x27d3b2={_0x3abeb7:0x571,_0x494b4a:'uo]V',_0x16d11d:0x56a,_0x15ae94:0x582,_0xd52104:0x6d5,_0x131cd6:0x3b2,_0xb1ce83:0x350,_0x31637d:0x42a,_0x33b097:0x3de,_0x508c1c:0x363,_0x4dfe48:0x360,_0x279c87:0x4ab,_0x18375d:0x4e4,_0x5965bc:0x61e,_0x2c6d05:0x3d9,_0x313666:0x4cd,_0x5081d9:'hggu',_0x5b1965:0x2f0,_0xc2964a:0x3a3,_0x38677b:0x248,_0x397988:0x2e9,_0x4bf910:0x1c7,_0x17f9ff:0x238,_0x3c6cee:'S3%]',_0x1fae34:0x719,_0x44b9c1:0x3e6,_0x11fcfb:0x50e,_0x323795:'n5Gs',_0x3442de:0x601,_0x4504c8:0x312,_0x400647:0x22a,_0x399b5a:0x20f,_0x4591f2:0x3a9,_0x461b09:0x391,_0x32a012:0x3dd,_0x3108c3:0x1ce,_0x9be59a:0x4d4,_0x1f96be:0x3c3,_0x3220fa:0x409,_0x3dca57:0x47d,_0x3120c7:0x4a0,_0x10a6d1:'@Ijh',_0x23f90c:0x485,_0x12ba93:0x383,_0x3d501a:0x39d,_0x2ef5a5:0x585,_0xa95e35:0x487,_0x5f4827:0x522,_0x3835ae:0x6a3,_0x3a0fad:'*aV^',_0x2ec043:0x25a,_0x7ba2cc:0x496,_0x40875a:0x58b,_0x1eeb01:0x476,_0x16941f:0x524,_0x407188:'#5zM',_0x1c1c08:0x464,_0x1ee4c6:0x495,_0x9b9f3c:0x35a,_0x4320b4:'$LPD',_0x569f07:0x5da,_0x4a6e72:'@Ijh',_0x2d59ec:0x331,_0x157fa3:0x2a3,_0x46813f:'8kpd',_0x3ba684:0x350,_0x41d677:0x3fe,_0x3c5ee4:0x3b6,_0x1b71e2:0x4d7,_0x2df8cc:'EIp!',_0x5a5e04:0x4fe,_0x1765cc:0x530,_0x284bc1:0x50e,_0x11e478:'!4cD',_0x376f2d:0x42f,_0x27e203:0x2c1,_0x415e8c:'Fp%T',_0xedf16e:0x4e8,_0x22cbf4:0x48a,_0xbc2084:0x381,_0x14cb8d:0x387,_0x4a880f:0x399,_0x57b7f7:'c1H$',_0x571e36:0x465,_0x133ba4:0x4fd,_0x15cd6b:0x542,_0x4331a0:'8kpd',_0x5c0e0a:0x5a1,_0x45b1d6:0x5f7,_0x54ec95:'i8ak',_0x20149e:0x4c3,_0x40734f:0x531,_0x3c766c:0x464,_0x66cbfd:0x553,_0x1e8f96:'Fp%T',_0x1fedb3:0x25a,_0x3d1007:0x419,_0x240d4e:0x454,_0x4db646:0x47a,_0x25183a:0x5f4,_0x2c625a:0x5ff,_0x4b9f32:'KKLF',_0x33c4e6:0x527,_0x1f6184:0x4c8,_0x43c45f:'oC4&',_0x58143a:0x3c3,_0x508277:0x3e2,_0x4e1e8b:0x32f,_0x24b39b:0x2d6,_0x5a9587:0x424,_0x2a8cf2:0x463,_0x17424a:'tNhW',_0xc2d875:0x543,_0x34f017:'i4iK',_0x497471:0x32d,_0x33f184:0x58d,_0x1ed415:'$LPD'},_0x453384={_0x4cf7f2:0xf8,_0x33f1b0:0x51},_0x5aac6e={_0x78333a:0x125,_0x3ddfaf:0x1dd,_0xca5a52:0xcd},_0x515440={};function _0x97f6cd(_0x41a4d0,_0x26adac,_0x49d840,_0x417473){return _0x292e55(_0x41a4d0-_0x5aac6e._0x78333a,_0x49d840,_0x49d840-_0x5aac6e._0x3ddfaf,_0x41a4d0- -_0x5aac6e._0xca5a52);}_0x515440[_0x97f6cd(_0x27d3b2._0x3abeb7,0x4ce,'hggu',0x485)]=_0x1b9fab(_0x27d3b2._0x494b4a,0x436,0x374,_0x27d3b2._0x16d11d),_0x515440[_0x97f6cd(_0x27d3b2._0x15ae94,_0x27d3b2._0xd52104,'EIp!',0x685)]=_0x1b9fab('tNhW',_0x27d3b2._0x131cd6,0x493,_0x27d3b2._0xb1ce83),_0x515440[_0x97f6cd(0x591,0x517,'bg9a',0x6ce)]=_0x1b9fab('#5zM',_0x27d3b2._0x31637d,0x4df,_0x27d3b2._0x33b097),_0x515440[_0x1b9fab('7DT3',0x49c,_0x27d3b2._0x508c1c,_0x27d3b2._0x4dfe48)]=_0x1b9fab('dLFR',_0x27d3b2._0x279c87,0x3a6,_0x27d3b2._0x18375d);function _0x1b9fab(_0x55b50f,_0x31ef87,_0x4d7807,_0x510b56){return _0x4107f9(_0x55b50f,_0x31ef87-_0x453384._0x4cf7f2,_0x4d7807-0x1e7,_0x510b56-_0x453384._0x33f1b0);}_0x515440[_0x1b9fab('n5Gs',0x548,_0x27d3b2._0x5965bc,_0x27d3b2._0x33b097)]='openclaw.j'+_0x1b9fab(')HZK',0x46a,0x459,0x337),_0x515440[_0x97f6cd(0x423,_0x27d3b2._0x2c6d05,'vi1o',_0x27d3b2._0x313666)]=function(_0x350caa,_0x35965b){return _0x350caa===_0x35965b;},_0x515440[_0x1b9fab(_0x27d3b2._0x5081d9,_0x27d3b2._0x5b1965,_0x27d3b2._0xc2964a,_0x27d3b2._0x38677b)]=_0x1b9fab('U(wp',_0x27d3b2._0x397988,_0x27d3b2._0x4bf910,_0x27d3b2._0x17f9ff),_0x515440[_0x1b9fab(_0x27d3b2._0x3c6cee,0x5a8,_0x27d3b2._0x1fae34,0x570)]=_0x97f6cd(0x343,0x3c7,'2!5z',_0x27d3b2._0x44b9c1)+_0x97f6cd(_0x27d3b2._0x11fcfb,0x575,_0x27d3b2._0x323795,_0x27d3b2._0x3442de),_0x515440[_0x1b9fab('0AND',_0x27d3b2._0x4504c8,_0x27d3b2._0x400647,_0x27d3b2._0x399b5a)]=_0x97f6cd(_0x27d3b2._0x4591f2,0x394,'8kpd',_0x27d3b2._0x461b09)+'law\x20目录路径(包'+_0x1b9fab('S3%]',0x442,0x4e6,0x44f)+_0x1b9fab('Jc6R',0x2de,_0x27d3b2._0x32a012,_0x27d3b2._0x3108c3);const _0x5a3dba=_0x515440;if(!_0x2b80d7||!_0x2b80d7[_0x1b9fab('HMyN',_0x27d3b2._0x9be59a,0x5c3,_0x27d3b2._0x1f96be)]()){const _0x511506={};return _0x511506[_0x97f6cd(0x37e,_0x27d3b2._0x3220fa,'@Ijh',0x2c0)]=![],_0x511506[_0x1b9fab('HMyN',0x554,0x49e,0x6a9)]=_0x5a3dba[_0x1b9fab('uo]V',_0x27d3b2._0x3dca57,_0x27d3b2._0x3120c7,0x5c9)],_0x511506;}const _0x4d0f99=_0x2b80d7[_0x1b9fab(_0x27d3b2._0x10a6d1,0x590,_0x27d3b2._0x23f90c,0x67e)]();if(!fs['existsSync'](_0x4d0f99)){const _0x3debd0={};return _0x3debd0[_0x1b9fab('iuYM',_0x27d3b2._0x12ba93,_0x27d3b2._0x3d501a,0x462)]=![],_0x3debd0[_0x97f6cd(0x4d4,_0x27d3b2._0x2ef5a5,'KKLF',0x5ff)]=_0x5a3dba[_0x1b9fab('uo]V',0x4b2,0x5d7,_0x27d3b2._0xa95e35)],_0x3debd0[_0x97f6cd(_0x27d3b2._0xa95e35,0x438,')HZK',_0x27d3b2._0x5f4827)]=_0x97f6cd(0x586,0x69b,'Absd',_0x27d3b2._0x3835ae)+_0x4d0f99,_0x3debd0;}const _0x71b923=fs['statSync'](_0x4d0f99);if(!_0x71b923[_0x1b9fab(_0x27d3b2._0x3a0fad,0x3b1,0x495,_0x27d3b2._0x2ec043)+'y']()){if(_0x5a3dba[_0x1b9fab('U(wp',_0x27d3b2._0x7ba2cc,_0x27d3b2._0x40875a,_0x27d3b2._0x1eeb01)]!==_0x5a3dba[_0x97f6cd(_0x27d3b2._0x2c6d05,_0x27d3b2._0x16941f,_0x27d3b2._0x407188,0x388)])_0x34e7e3[_0x97f6cd(_0x27d3b2._0x1c1c08,0x575,'uo]V',_0x27d3b2._0x1ee4c6)](_0x53bd88['default'][_0x97f6cd(0x47e,_0x27d3b2._0x9b9f3c,_0x27d3b2._0x4320b4,_0x27d3b2._0x569f07)]('✓\x20'+_0x3679f5));else{const _0x5a68e2={};return _0x5a68e2[_0x1b9fab(_0x27d3b2._0x4a6e72,_0x27d3b2._0x2d59ec,_0x27d3b2._0x157fa3,0x314)]=![],_0x5a68e2[_0x1b9fab(_0x27d3b2._0x46813f,0x453,_0x27d3b2._0x3ba684,_0x27d3b2._0x41d677)]=_0x5a3dba[_0x1b9fab('n5Gs',0x4a0,0x561,_0x27d3b2._0x3c5ee4)],_0x5a68e2;}}const _0x4ee7b9=path[_0x97f6cd(0x4ac,0x566,_0x27d3b2._0x3a0fad,_0x27d3b2._0x1b71e2)](_0x4d0f99,_0x5a3dba[_0x1b9fab(_0x27d3b2._0x2df8cc,_0x27d3b2._0x5a5e04,_0x27d3b2._0x1765cc,_0x27d3b2._0x284bc1)]);if(!fs[_0x1b9fab(_0x27d3b2._0x11e478,0x359,_0x27d3b2._0x376f2d,_0x27d3b2._0x27e203)](_0x4ee7b9)){if(_0x5a3dba[_0x1b9fab(_0x27d3b2._0x415e8c,0x468,_0x27d3b2._0xedf16e,0x45b)](_0x5a3dba[_0x1b9fab('7DT3',_0x27d3b2._0x22cbf4,_0x27d3b2._0xbc2084,_0x27d3b2._0x14cb8d)],_0x97f6cd(_0x27d3b2._0x4a880f,0x31f,_0x27d3b2._0x57b7f7,_0x27d3b2._0x571e36))){const _0x108754=(-0x517*0x4+-0x561+0x1*0x19bd,_0x375611[_0x97f6cd(_0x27d3b2._0x133ba4,_0x27d3b2._0x15cd6b,_0x27d3b2._0x4331a0,0x5f1)+_0x1b9fab('(#SV',_0x27d3b2._0x5c0e0a,0x654,_0x27d3b2._0x45b1d6)+_0x97f6cd(0x432,0x4c0,_0x27d3b2._0x54ec95,_0x27d3b2._0x20149e)])(_0x5af129);return _0x147f3e[_0x1b9fab('s&#w',0x505,0x43b,0x565)](_0x38ff40[_0x97f6cd(_0x27d3b2._0x40734f,_0x27d3b2._0x3c766c,'S3%]',_0x27d3b2._0x66cbfd)][_0x1b9fab(_0x27d3b2._0x1e8f96,0x36d,0x25e,_0x27d3b2._0x1fedb3)](_0x1b9fab('sErF',_0x27d3b2._0x3d1007,_0x27d3b2._0x240d4e,_0x27d3b2._0x4db646)+_0x1b9fab('dLFR',0x56e,_0x27d3b2._0x25183a,_0x27d3b2._0x2c625a)+(-0x38f+-0x1e4a*0x1+0x21d9,_0x2a048f[_0x1b9fab(_0x27d3b2._0x4b9f32,_0x27d3b2._0x33c4e6,_0x27d3b2._0x1f6184,0x63c)+_0x97f6cd(0x404,0x40d,_0x27d3b2._0x43c45f,_0x27d3b2._0x58143a)])(_0x108754)+'\x0a')),!![];}else{const _0x468bde={};return _0x468bde[_0x1b9fab('rzql',_0x27d3b2._0x508277,_0x27d3b2._0x4e1e8b,_0x27d3b2._0x24b39b)]=![],_0x468bde[_0x97f6cd(_0x27d3b2._0x5a9587,_0x27d3b2._0x2a8cf2,_0x27d3b2._0x17424a,_0x27d3b2._0x571e36)]=_0x5a3dba[_0x97f6cd(_0x27d3b2._0xc2d875,0x45c,'#5zM',0x4dd)],_0x468bde[_0x1b9fab(_0x27d3b2._0x34f017,_0x27d3b2._0x497471,0x2d0,0x333)]=_0x5a3dba[_0x97f6cd(_0x27d3b2._0x33f184,0x673,_0x27d3b2._0x1ed415,0x588)],_0x468bde;}}const _0xa0dd36={};return _0xa0dd36['valid']=!![],_0xa0dd36;}function printBanner(){const _0x3819a9={_0x5f4a39:0x28a,_0x3697b6:0x14b,_0x4d33d0:'ejH4',_0x5dba1e:0x76,_0x183145:'oC4&',_0x2eee33:0x19a,_0x9d58bc:0x1a9,_0x4bd261:'n5Gs',_0x163e02:0x58,_0x5b8cec:0x12a,_0x24bf9b:0x55,_0x457c64:'5#n^',_0x3f6566:0x36a,_0x169df8:0x11f,_0x2ccb3c:0x247,_0xbf1e78:0x2d1,_0x2b69c3:0x358,_0x58f62c:0x3de,_0x3bebbb:'8kpd',_0x4b0b9e:0x465,_0x53a83f:0x18f,_0x3006a2:0x177,_0x57f365:'i8ak',_0x5396e7:0x4e,_0x4cdca8:0xba,_0x3bf32c:'%PeD',_0x5751a8:0x83,_0x2ebad9:0x45,_0x4a1b56:0x50},_0x39b8c8={_0x2d65e9:0x10a,_0x3b25a8:0x138},_0x1d4e85={_0x248ed0:0x2ea},_0x2480de={};function _0x3d0bef(_0x47783f,_0x16c382,_0x378fe0,_0x2db4be){return _0x292e55(_0x47783f-0x87,_0x378fe0,_0x378fe0-0xc4,_0x16c382- -_0x1d4e85._0x248ed0);}_0x2480de[_0x3d0bef(0x2df,_0x3819a9._0x5f4a39,')HZK',_0x3819a9._0x3697b6)]='\x0a🤖\x20OpenCla'+_0x3b59aa(_0x3819a9._0x4d33d0,_0x3819a9._0x5dba1e,0x8c,0xc5)+_0x3b59aa(_0x3819a9._0x183145,-0xa0,-0x48,-_0x3819a9._0x2eee33);function _0x3b59aa(_0x5a51de,_0x5a84ad,_0xb0cd22,_0x533933){return _0x292e55(_0x5a51de-_0x39b8c8._0x2d65e9,_0x5a51de,_0xb0cd22-_0x39b8c8._0x3b25a8,_0x5a84ad- -0x496);}const _0xf2cd1c=_0x2480de;console[_0x3b59aa('U9hY',_0x3819a9._0x9d58bc,0x162,0x123)](chalk_1[_0x3b59aa(_0x3819a9._0x4bd261,_0x3819a9._0x163e02,-0x43,_0x3819a9._0x5b8cec)][_0x3b59aa('2!5z',_0x3819a9._0x24bf9b,0x4e,0x10c)][_0x3b59aa(_0x3819a9._0x457c64,0x22a,_0x3819a9._0x3f6566,_0x3819a9._0x169df8)](_0xf2cd1c[_0x3d0bef(_0x3819a9._0x2ccb3c,0x27d,'ejH4',_0x3819a9._0xbf1e78)])),console[_0x3d0bef(_0x3819a9._0x2b69c3,_0x3819a9._0x58f62c,_0x3819a9._0x3bebbb,_0x3819a9._0x4b0b9e)](chalk_1[_0x3d0bef(_0x3819a9._0x53a83f,_0x3819a9._0x3006a2,_0x3819a9._0x57f365,0x1d0)][_0x3b59aa('tNhW',_0x3819a9._0x5396e7,-0xc6,-_0x3819a9._0x4cdca8)](_0x3b59aa(_0x3819a9._0x3bf32c,-_0x3819a9._0x5751a8,-0x53,0x4d)+_0x3b59aa('0AND',_0x3819a9._0x2ebad9,-_0x3819a9._0x4cdca8,_0x3819a9._0x4a1b56)+'\x0a'));}async function ensureLicenseValid(){const _0x2f3965={_0x54ba22:0x1b8,_0x3390f9:0x2b0,_0x2893d5:0x28d,_0xafee09:0xe9,_0x560cd8:0xb3,_0xf596ec:0x3c,_0x1d6640:0x40e,_0x39b776:0x3a6,_0x2a6fd7:0x333,_0x2918fd:0x36d,_0x4accaa:'n5Gs',_0x23bc44:0x98,_0xe42548:0x2ac,_0x5882cb:0x2c8,_0x47b336:'9T^N',_0xbdeed3:0x271,_0x19ead:0x1eb,_0x473abd:0x25a,_0x3633af:'iJ%q',_0x5447a1:0x2ae,_0x1e786d:'sErF',_0x839c7f:0x219,_0x30d26c:0x283,_0x491e77:0x1d7,_0x507a06:0x248,_0x27e40f:'*aV^',_0x802c4a:0x2bb,_0x455ba4:0x212,_0x327f2e:0x1fa,_0x3ad1b4:'@Ijh',_0xa39335:'bg9a',_0x5e4ccd:0x8d,_0xe3e7c2:0x64,_0x490de0:0x3ec,_0x43b8b1:0x245,_0x25c1e9:0x119,_0x20f770:'0AND',_0x14610c:0xf3,_0x1c5198:0x5,_0x6c0c85:0x254,_0x59d9c1:0x379,_0x4fdaae:'Absd',_0x1a2a07:0x538,_0x1b1a6c:0x181,_0x44552b:'uo]V',_0x490de8:0x1b0,_0x27791e:0x2f9,_0x314dda:0x21d,_0x115711:0x28a,_0x9a9494:0x165,_0x496618:0x111,_0xc476ff:0x224,_0x3f2071:0x341,_0x4f5245:'hggu',_0x389162:0x206,_0x114f56:0x18c,_0x2f5170:'U9hY',_0x3e0a0e:'HPPX',_0x36c96b:0x64,_0x12a7bf:0x264,_0x372315:0x5c0,_0x121739:'iuYM',_0x9a3e10:'7DT3',_0x21d4c1:'4Db5',_0x2bde93:0x1a4,_0x439340:0x29f,_0x3ac4f1:0x146,_0x41ca6b:0x3a4,_0x3ea879:'UdU#',_0x3c34af:0x23b,_0x40f890:0x1d4,_0x56ea13:0x2d7,_0x26a69e:0x1c9,_0x5b8b01:0x2db,_0x1ab63b:0x3a7,_0x161ae2:'dLFR',_0x2cea23:0x3cb,_0x108e99:'#y9o',_0x2b4f8d:0x1f6,_0x501d69:0x24b,_0x1aa429:0x1c1,_0x596a8b:0x22d,_0x30fd76:0x274,_0x530a4a:0x356,_0x156d1f:0x354,_0x191e6c:'n5Gs',_0xf5c8f1:0x2e5,_0x1317ee:0x2c4,_0x351991:0x192,_0xef9c5d:0x88,_0x324b55:0x1f3,_0x325d86:0xf5,_0x583bb5:0x20,_0x561db0:0x60,_0x566065:0xa9,_0x38ebac:'eV8k',_0x34d122:0x3f6,_0x52e8d5:0x359,_0x278618:0x7c,_0x47f0bb:'tNhW',_0x3abb87:0x16d,_0x456d50:0x1f,_0x1644c4:0x107,_0x5ac30b:0x19c,_0x3021fc:'dLFR',_0x18fa2c:0xc3,_0x4074c7:0x101,_0x2e1201:0x280,_0x2ac30d:')HZK',_0x48b875:0x122,_0x25d357:'oC4&',_0xf219db:0x195,_0x17c2c5:0x3f4,_0x559ddf:0x418,_0x5455a9:0x2bb,_0x3638ca:0xd1,_0xb78329:0xc,_0x45099b:0x2ad,_0x1e28c4:0x310,_0x5e414b:0x186,_0xaac60d:0x2c0,_0x46aad2:0xf9,_0x5f0f3d:0x10a,_0xe4ab77:0xb5,_0x25a4a7:0x32d,_0x457df1:0x3c5,_0x2b2abe:0x18a,_0x4c2d2e:0x2d6,_0x4b7cb7:'U(wp',_0xfa8ec7:0xbe,_0x4732c7:0x169,_0x3f9fcb:0x16e,_0x25a950:0xd5,_0x3b0007:0xb3,_0xf764fb:0x2f6,_0x34cd4a:0x30b,_0x53cb1f:'!4cD',_0x41b7b0:0x46e,_0x5205db:0x462,_0x17f524:0x328,_0x1d1e5f:0x373,_0x2274c4:0x2a2,_0x426ee9:0x250,_0x8724d2:'i8ak',_0x56fdb4:0x48f,_0x4e1bf4:'dlAy',_0x3c1a9f:'!4cD',_0x2a45ad:0x6f,_0x275f04:0x61,_0x484d4f:0x12,_0x3ec4e2:0xf0,_0x37b9bf:0x3e0,_0x46236d:0x18,_0x2d2082:0xf0,_0x576728:0x5d,_0x352664:0x2b6,_0x3cd93e:0x2eb,_0x11e90c:'Np8L',_0x403a58:0x281,_0x42d2e4:0x1de,_0x2d9f47:0x306,_0x22f652:0x4c3,_0x27c1e3:'EIp!',_0x350f0e:0x31e,_0x10eb96:0x168,_0x2f3379:0x223,_0x3880ea:0x1ea,_0x27b4bb:0x288,_0x2c8358:'%PeD',_0x2690d5:0x15,_0x5c742b:0x7,_0x5deb64:0x11a,_0x4bd904:0x47a,_0xf59fc7:0x4a5,_0x2f8453:0x41f,_0x2ae9c4:0x2f8,_0x5eb8cc:'vi1o',_0x5d327e:0x109,_0x4736bf:0x3b,_0x2070f9:0x3c7,_0x26c0e6:0x34f,_0x533258:0x123,_0x186d15:0x5a,_0x481450:'hggu',_0x4f8818:0x18f,_0x4d7820:0x2f5,_0x576124:0x16b,_0x40f8b4:0x5f,_0x469199:'(#SV',_0x11cd98:0x6e,_0x7b8286:0xd4,_0xc29edf:0x2fa,_0x3d95a5:'iJ%q',_0x554b98:0xf2,_0x4946ee:'i4iK',_0x38d7bf:0x106,_0x14a3c9:0x37b,_0x50aa6e:0x4b8,_0x2ef564:0x203,_0xbd0e37:'5#n^',_0xc887a9:0xc4,_0x282f2e:0x26a,_0x47f3b0:'KKLF',_0x4c0776:0x4e8,_0x5886a3:0x3cf,_0x54314d:'Fp%T',_0x20b595:0x385,_0xd0ad46:'2!5z',_0x893f9b:0x41b,_0x186df6:0x443,_0x347c82:'p24@',_0x2fa5c3:'!4cD',_0x386ddb:0x21a,_0x4d3616:0xf7,_0x48f321:0x4f5,_0x1c4d85:0x1fd,_0x1d0c50:0x3b3,_0x4757a3:'c1H$',_0x2ccb73:0x4b0,_0x11295b:0x23d,_0x2f48a0:0xee,_0xe9c3a5:'(#SV',_0xda6db8:0x128,_0x20739a:0x2c,_0x5084db:0xeb,_0x354765:'#y9o',_0x2b38f5:0x37e,_0x50a74f:'ejH4',_0x10a327:0x15d},_0x5559a6={_0x2c5205:0x29b,_0x8ef958:0x2bf,_0x233261:0xb9,_0x434545:0x92,_0x1de1d7:0x319,_0x1556c8:'0AND',_0x2ba216:0x10c,_0xaa3c49:0x1c1,_0x12a093:0x96,_0x35fa50:0xaa,_0x156f0b:0x14d,_0x55410e:0x1ae,_0x85edde:0x251,_0x295eef:0x263,_0x5f3d2e:0x188,_0x39735d:0x252,_0x3de775:0x2d8,_0x3cd19e:'s&#w',_0x45a77f:0x38e,_0x37bf8d:0xbe,_0x3f692a:0x2d9,_0x277de7:0x3c1,_0x26cf5c:'7DT3',_0x1b5a80:0x27e,_0x3f4625:0x139,_0x35668e:0x21b,_0x12f0f1:0x44a,_0x3073ec:0x3cf,_0x17e610:'sErF',_0x86efd1:0x23b,_0x2321f0:0x3b4,_0x8e5b20:'4Db5',_0x45ca59:0x444,_0x3f5f37:0x510,_0x7c66c1:0x550,_0x2dbe0a:'8kpd',_0x480831:0x656,_0x11e989:0x35f,_0x210ed3:'0AND',_0x25484d:0x3f9,_0x3b5d78:0x203,_0x6e1056:0x2e9,_0x408654:0x24c,_0x367f9c:0x336,_0x47542a:0x2ef},_0x175e95={_0xd6955d:0x76},_0xdb5565={_0x294709:0xbc,_0x2ad5d7:0x110,_0x121c51:0x6a4},_0x229d9e={_0x3ecd83:0x156,_0x523a78:0x1ba};function _0x338463(_0x15dc7f,_0x86bcb1,_0x33b8ce,_0x2d4deb){return _0x4107f9(_0x33b8ce,_0x15dc7f-0x1,_0x33b8ce-_0x229d9e._0x3ecd83,_0x2d4deb-_0x229d9e._0x523a78);}const _0x22955e={'nCyoF':_0x510458('UdU#',-_0x2f3965._0x54ba22,-_0x2f3965._0x3390f9,-_0x2f3965._0x2893d5),'zEKWc':_0x510458('9T^N',-_0x2f3965._0xafee09,-0x159,-0xf6),'IDLRb':_0x510458('Absd',-_0x2f3965._0x560cd8,-0x198,-_0x2f3965._0xf596ec),'FLPTg':function(_0x58429b,_0x309d12){return _0x58429b===_0x309d12;},'RllyK':function(_0x239d3e,_0x701563){return _0x239d3e!==_0x701563;},'gyZOL':'iRABg','bIpdf':_0x338463(0x45e,0x487,'2!5z',_0x2f3965._0x1d6640),'UgXyr':function(_0x5c932a,_0x1c8c52){return _0x5c932a(_0x1c8c52);},'YHGiw':_0x338463(_0x2f3965._0x39b776,_0x2f3965._0x2a6fd7,'Np8L',_0x2f3965._0x2918fd)+_0x510458(_0x2f3965._0x4accaa,-0xa,0xb9,-0x17b),'HiOuM':_0x510458('i4iK',-_0x2f3965._0x23bc44,-0xe0,-0x63)+_0x338463(_0x2f3965._0xe42548,_0x2f3965._0x5882cb,_0x2f3965._0x47b336,0x375)+_0x338463(_0x2f3965._0xbdeed3,_0x2f3965._0x19ead,'Jc6R',0x246)+'\x0a','yyWZa':function(_0x28cc2c,_0x21770a){return _0x28cc2c!==_0x21770a;},'aXsru':_0x338463(0x3b1,_0x2f3965._0x473abd,'ejH4',0x29c),'VNUzs':_0x338463(0x38a,0x2e7,_0x2f3965._0x3633af,0x409),'AJAGb':function(_0x471426,_0x5b48c2){return _0x471426===_0x5b48c2;},'Jzdvw':_0x338463(_0x2f3965._0x5447a1,0x37f,'%PeD',0x170),'OfQMJ':_0x510458(_0x2f3965._0x1e786d,-0x2b3,-0x416,-_0x2f3965._0x839c7f)+'\x0a','DHfUR':function(_0x21ee82,_0xd7b860){return _0x21ee82!==_0xd7b860;},'EJLdG':_0x338463(_0x2f3965._0x30d26c,_0x2f3965._0x491e77,'iuYM',_0x2f3965._0x507a06),'fFlWe':_0x510458(_0x2f3965._0x27e40f,-_0x2f3965._0x802c4a,-0x249,-0x1f4),'sNfCd':_0x338463(_0x2f3965._0x455ba4,_0x2f3965._0x327f2e,_0x2f3965._0x3ad1b4,0xb8),'EDePU':_0x510458(_0x2f3965._0xa39335,0x3,_0x2f3965._0x5e4ccd,_0x2f3965._0xe3e7c2),'SBZCV':_0x510458('p24@',-0x2a6,-_0x2f3965._0x490de0,-_0x2f3965._0x43b8b1),'gLYNu':function(_0x1023f2,_0x2b6954){return _0x1023f2!==_0x2b6954;},'bEcFp':_0x510458('hggu',-_0x2f3965._0x25c1e9,-0x45,-0x103)},_0x1da287=(-0x71e+0x2576+-0xf2c*0x2,storage_1[_0x510458(_0x2f3965._0x20f770,-_0x2f3965._0x14610c,_0x2f3965._0x1c5198,-_0x2f3965._0x6c0c85)+'n'])();if(_0x1da287&&(0x4*-0x88d+-0x14*-0x8c+0x1744,storage_1[_0x510458('Fp%T',-0x2a5,-_0x2f3965._0x59d9c1,-0x390)+_0x510458(_0x2f3965._0x4fdaae,-0x20a,-0x1a3,-0x1d8)])(_0x1da287)){const _0x570c37=(0x1*-0x1e9d+0x239b+-0x4fe,storage_1['getSession'+_0x338463(0x3c9,0x376,'KKLF',_0x2f3965._0x1a2a07)+_0x338463(0x2a3,_0x2f3965._0x1b1a6c,_0x2f3965._0x44552b,_0x2f3965._0x490de8)])(_0x1da287);return console[_0x510458('@Ijh',-0x24a,-_0x2f3965._0x27791e,-0x1e7)](chalk_1[_0x338463(_0x2f3965._0x314dda,0x276,'c1H$',_0x2f3965._0x115711)][_0x510458('hggu',-_0x2f3965._0x9a9494,-_0x2f3965._0x496618,-0x12f)](_0x338463(_0x2f3965._0xc476ff,_0x2f3965._0x3f2071,_0x2f3965._0x4f5245,0x2ac)+'间:\x20'+(0xbd*-0x2b+0xe35+0x118a,storage_1[_0x338463(_0x2f3965._0x389162,_0x2f3965._0x114f56,_0x2f3965._0x2f5170,0x2c2)+_0x510458(_0x2f3965._0x3e0a0e,-0x117,-0xfa,-_0x2f3965._0x36c96b)])(_0x570c37)+'\x0a')),!![];}console[_0x338463(_0x2f3965._0x12a7bf,0x382,'ejH4',0x378)](chalk_1[_0x338463(0x470,_0x2f3965._0x372315,_0x2f3965._0x121739,0x57a)][_0x510458(_0x2f3965._0x9a3e10,-0xdb,-0x54,-0x1e7)](_0x510458(_0x2f3965._0x21d4c1,-_0x2f3965._0x2bde93,-_0x2f3965._0x439340,-_0x2f3965._0x3ac4f1)));function _0x510458(_0x10c9f3,_0x1d39f9,_0x3f0101,_0x6973a4){return _0x292e55(_0x10c9f3-_0xdb5565._0x294709,_0x10c9f3,_0x3f0101-_0xdb5565._0x2ad5d7,_0x1d39f9- -_0xdb5565._0x121c51);}console[_0x338463(_0x2f3965._0x41ca6b,0x36b,_0x2f3965._0x3ea879,0x3e9)](chalk_1[_0x510458('4Db5',-_0x2f3965._0x3c34af,-_0x2f3965._0x40f890,-_0x2f3965._0x56ea13)][_0x338463(0x208,_0x2f3965._0x26a69e,'U(wp',_0x2f3965._0x5b8b01)](_0x22955e[_0x510458('S3%]',-0xc5,-0x6d,0x48)])),console[_0x338463(_0x2f3965._0x1ab63b,0x3d2,_0x2f3965._0x161ae2,_0x2f3965._0x2cea23)](chalk_1[_0x338463(0x4a8,0x4c0,_0x2f3965._0x108e99,0x523)][_0x338463(_0x2f3965._0x2b4f8d,_0x2f3965._0x501d69,_0x2f3965._0x121739,_0x2f3965._0x1aa429)](_0x22955e[_0x338463(_0x2f3965._0x596a8b,_0x2f3965._0x30fd76,'U9hY',_0x2f3965._0x530a4a)]));while(!![]){if(_0x22955e[_0x338463(_0x2f3965._0x156d1f,0x26b,_0x2f3965._0x191e6c,_0x2f3965._0xf5c8f1)](_0x338463(0x300,_0x2f3965._0x1317ee,'sErF',_0x2f3965._0x351991),_0x22955e[_0x510458('s&#w',-_0x2f3965._0xef9c5d,-_0x2f3965._0x324b55,-_0x2f3965._0x325d86)])){const {licenseKey:_0x542cb1}=await inquirer_1[_0x510458(_0x2f3965._0xa39335,-0x13e,-0x12b,_0x2f3965._0x583bb5)]['prompt']([{'type':_0x22955e[_0x510458('*66P',-_0x2f3965._0x561db0,-0x94,_0x2f3965._0x566065)],'name':_0x338463(0x28f,0x3ad,_0x2f3965._0x38ebac,_0x2f3965._0x34d122),'message':_0x338463(_0x2f3965._0x52e8d5,0x30d,_0x2f3965._0x4f5245,0x4c1)+_0x510458('rzql',-0x4f,_0x2f3965._0x278618,-0x6),'validate':_0x46ac13=>{function _0x42dd61(_0xa3bd43,_0xfba60d,_0xdc580f,_0x242cbe){return _0x338463(_0xa3bd43-_0x175e95._0xd6955d,_0xfba60d-0x1bf,_0xdc580f,_0x242cbe-0x171);}function _0x52d72c(_0xc53498,_0x513583,_0x456992,_0x2c2165){return _0x338463(_0xc53498- -0x132,_0x513583-0x186,_0x513583,_0x2c2165-0x1c6);}if(_0x22955e[_0x42dd61(0x298,0x380,'n5Gs',0x12f)]==='UJjZZ')_0x17d496[_0x52d72c(0x377,'UdU#',_0x5559a6._0x2c5205,_0x5559a6._0x8ef958)](new _0x2bef8e[(_0x52d72c(_0x5559a6._0x233261,'7DT3',0x21e,-_0x5559a6._0x434545))][(_0x42dd61(0x424,_0x5559a6._0x1de1d7,_0x5559a6._0x1556c8,0x3de))]('─'[_0x52d72c(0x18f,'HMyN',_0x5559a6._0x2ba216,_0x5559a6._0xaa3c49)](0x469*-0x5+0x111f+0x516)));else{const _0x5493e3=_0x46ac13['trim']();if(!_0x5493e3)return _0x22955e[_0x52d72c(0x12d,'#y9o',_0x5559a6._0x12a093,0x170)];if(_0x22955e[_0x52d72c(_0x5559a6._0x35fa50,'c1H$',-0xb0,_0x5559a6._0x156f0b)](_0x5493e3[_0x52d72c(0x25d,'8kpd',_0x5559a6._0x55410e,_0x5559a6._0x85edde)+'e'](),'q'))return _0x22955e[_0x52d72c(_0x5559a6._0x295eef,'!4cD',_0x5559a6._0x5f3d2e,_0x5559a6._0x39735d)](_0x22955e[_0x42dd61(0x3c6,_0x5559a6._0x3de775,_0x5559a6._0x3cd19e,_0x5559a6._0x45a77f)],_0x22955e[_0x52d72c(0x1c0,'ejH4',0x26f,_0x5559a6._0x37bf8d)])?_0x2006e3[_0x42dd61(_0x5559a6._0x3f692a,_0x5559a6._0x277de7,'HPPX',0x215)]||_0x520187[_0x52d72c(0x26c,_0x5559a6._0x26cf5c,_0x5559a6._0x1b5a80,_0x5559a6._0x3f4625)]||_0x22955e[_0x52d72c(0x36d,'iuYM',_0x5559a6._0x35668e,_0x5559a6._0x12f0f1)]:!![];const _0x57b131=/^TM-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}$/i,_0x34c66e=/^TM-TEMP-[A-Z0-9]{4}-[A-Z0-9]{4}$/i;if(!_0x57b131[_0x42dd61(0x42b,_0x5559a6._0x3073ec,_0x5559a6._0x17e610,0x484)](_0x5493e3)&&!_0x34c66e[_0x42dd61(0x33f,0x1e0,'Absd',_0x5559a6._0x86efd1)](_0x5493e3))return _0x42dd61(_0x5559a6._0x2321f0,0x4ae,_0x5559a6._0x17e610,0x2cb)+_0x52d72c(0x386,_0x5559a6._0x8e5b20,_0x5559a6._0x45ca59,0x45e)+_0x42dd61(_0x5559a6._0x3f5f37,_0x5559a6._0x7c66c1,_0x5559a6._0x2dbe0a,_0x5559a6._0x480831)+_0x52d72c(_0x5559a6._0x11e989,_0x5559a6._0x210ed3,_0x5559a6._0x25484d,0x31a)+_0x42dd61(0x285,0x279,'4Db5',_0x5559a6._0x3b5d78)+_0x42dd61(_0x5559a6._0x6e1056,0x2fb,'eV8k',_0x5559a6._0x408654)+_0x52d72c(_0x5559a6._0x367f9c,'4Db5',0x440,_0x5559a6._0x47542a);return!![];}}}]),_0x269d71=_0x542cb1[_0x510458(_0x2f3965._0x47f0bb,-_0x2f3965._0x3abb87,-_0x2f3965._0x456d50,-_0x2f3965._0x1644c4)]();if(_0x22955e[_0x510458('oC4&',-0x1ba,-_0x2f3965._0x5ac30b,-0x2c0)](_0x269d71['toLowerCas'+'e'](),'q'))return console[_0x510458(_0x2f3965._0x3021fc,-0xec,-_0x2f3965._0x18fa2c,-_0x2f3965._0x4074c7)](chalk_1[_0x338463(_0x2f3965._0x2e1201,0x348,_0x2f3965._0x2ac30d,_0x2f3965._0x48b875)][_0x510458(_0x2f3965._0x25d357,-0x27e,-_0x2f3965._0xf219db,-0x202)](_0x338463(_0x2f3965._0x17c2c5,_0x2f3965._0x559ddf,_0x2f3965._0x3021fc,0x50e))),![];console[_0x338463(0x35a,_0x2f3965._0x5455a9,'p24@',0x45b)](chalk_1[_0x510458('eV8k',-_0x2f3965._0x3638ca,-0x187,-_0x2f3965._0xb78329)][_0x338463(_0x2f3965._0x45099b,_0x2f3965._0x1e28c4,'(#SV',0x342)](_0x22955e[_0x510458('hggu',-_0x2f3965._0x5e414b,-_0x2f3965._0xaac60d,-_0x2f3965._0x46aad2)]));const _0x4039a8=await(0x170*-0x1a+0x7c7*0x1+0x1d99,middleware_1['verifyLice'+_0x510458('Fp%T',-0x116,-_0x2f3965._0x5f0f3d,-_0x2f3965._0xe4ab77)])(_0x269d71[_0x338463(_0x2f3965._0x25a4a7,_0x2f3965._0x457df1,'s&#w',0x44a)+'e']());if(_0x4039a8[_0x510458(_0x2f3965._0x3633af,-0x170,-0xa7,-_0x2f3965._0x2b2abe)]&&_0x4039a8[_0x338463(0x41a,0x46f,'rzql',_0x2f3965._0x4c2d2e)]){console[_0x510458(_0x2f3965._0x4b7cb7,-0x74,0xdd,-_0x2f3965._0xfa8ec7)](chalk_1[_0x510458(_0x2f3965._0x47b336,-_0x2f3965._0x4732c7,-_0x2f3965._0x3f9fcb,-_0x2f3965._0x25a950)][_0x510458('p24@',-0x1ed,-_0x2f3965._0x3b0007,-_0x2f3965._0xf764fb)](_0x22955e[_0x338463(_0x2f3965._0x34cd4a,0x344,_0x2f3965._0x53cb1f,0x328)]));const _0x363c47=(-0x93*-0x27+-0x265e+0x8d*0x1d,storage_1[_0x338463(_0x2f3965._0x41b7b0,_0x2f3965._0x5205db,_0x2f3965._0x1e786d,_0x2f3965._0x17f524)+_0x338463(0x474,0x3c1,'tNhW',_0x2f3965._0x1d1e5f)+_0x338463(0x325,0x31e,'2!5z',0x205)])(_0x4039a8[_0x338463(_0x2f3965._0x2274c4,_0x2f3965._0x426ee9,_0x2f3965._0x8724d2,0x3f0)]);return console[_0x510458('ejH4',-0x22f,-0x100,-0x319)](chalk_1[_0x338463(_0x2f3965._0x56fdb4,0x3e2,_0x2f3965._0x4e1bf4,0x3b1)][_0x510458(_0x2f3965._0x3c1a9f,-_0x2f3965._0x2a45ad,0xe0,_0x2f3965._0x275f04)](_0x510458('s&#w',_0x2f3965._0x484d4f,0xe3,-_0x2f3965._0x3ec4e2)+(-0x13*-0xa3+-0x207e+0x1465,storage_1[_0x510458(_0x2f3965._0x2f5170,-0x28d,-0x169,-_0x2f3965._0x37b9bf)+_0x510458(_0x2f3965._0x3ea879,_0x2f3965._0x46236d,_0x2f3965._0x2d2082,_0x2f3965._0x576728)])(_0x363c47)+'\x0a')),!![];}else{if(_0x22955e[_0x338463(_0x2f3965._0x352664,_0x2f3965._0x3cd93e,_0x2f3965._0x11e90c,_0x2f3965._0x403a58)](_0x22955e[_0x338463(_0x2f3965._0x42d2e4,0x251,_0x2f3965._0x21d4c1,_0x2f3965._0x2d9f47)],_0x22955e[_0x338463(0x376,_0x2f3965._0x22f652,_0x2f3965._0x27c1e3,_0x2f3965._0x350f0e)])){console[_0x510458('S3%]',-_0x2f3965._0x10eb96,-0x19d,-_0x2f3965._0x2f3379)](chalk_1[_0x510458(_0x2f3965._0x44552b,-_0x2f3965._0x3880ea,-0xab,-_0x2f3965._0x27b4bb)][_0x510458(_0x2f3965._0x2c8358,-_0x2f3965._0x2690d5,-_0x2f3965._0x5c742b,_0x2f3965._0x5deb64)](_0x338463(0x427,_0x2f3965._0x4bd904,'rzql',_0x2f3965._0xf59fc7)+(_0x4039a8[_0x338463(0x330,_0x2f3965._0x2f8453,'Lj*V',_0x2f3965._0x2ae9c4)]?.[_0x510458(_0x2f3965._0x5eb8cc,0xf,-_0x2f3965._0x5d327e,_0x2f3965._0x4736bf)]||_0x22955e[_0x510458('Np8L',-0x25e,-_0x2f3965._0x2070f9,-0x172)])+'\x0a'));const _0x50dcb2={};_0x50dcb2[_0x338463(0x242,0x1a3,'0AND',_0x2f3965._0x26c0e6)]=_0x510458(_0x2f3965._0x108e99,-0x17f,-0xdf,-0x1da),_0x50dcb2[_0x338463(_0x2f3965._0x324b55,0xb5,'n5Gs',_0x2f3965._0x533258)]=_0x22955e[_0x510458('5#n^',-_0x2f3965._0x186d15,0xde,0xbd)],_0x50dcb2['message']=_0x22955e[_0x510458(_0x2f3965._0x481450,-_0x2f3965._0xe4ab77,-0x86,-_0x2f3965._0x4f8818)],_0x50dcb2[_0x338463(_0x2f3965._0x426ee9,_0x2f3965._0x4d7820,_0x2f3965._0x8724d2,0x172)]=!![];const {retry:_0x1c1ff9}=await inquirer_1[_0x510458('bg9a',-0x13e,-0x2,-_0x2f3965._0x576124)][_0x510458(_0x2f3965._0x4f5245,-0x69,_0x2f3965._0x40f8b4,0x93)]([_0x50dcb2]);if(!_0x1c1ff9){if(_0x22955e[_0x510458(_0x2f3965._0x469199,-_0x2f3965._0x11cd98,-0x88,_0x2f3965._0x7b8286)](_0x22955e[_0x338463(0x1df,_0x2f3965._0xc29edf,_0x2f3965._0x3d95a5,_0x2f3965._0x554b98)],_0x22955e[_0x510458(_0x2f3965._0x4946ee,-_0x2f3965._0x38d7bf,-0x14,-0x7c)])){_0x5efe3a[_0x338463(0x415,_0x2f3965._0x14a3c9,'9T^N',_0x2f3965._0x50aa6e)](_0x5bceac[_0x338463(_0x2f3965._0x2ef564,0x26a,_0x2f3965._0xbd0e37,_0x2f3965._0xc887a9)][_0x338463(_0x2f3965._0x282f2e,0x233,_0x2f3965._0x47f3b0,0x30e)](_0x22955e[_0x338463(0x45a,_0x2f3965._0x4c0776,'8kpd',_0x2f3965._0x5886a3)]));return;}else return console[_0x338463(0x41e,0x3d4,_0x2f3965._0x54314d,_0x2f3965._0x20b595)](chalk_1[_0x338463(0x2b1,0x213,_0x2f3965._0xd0ad46,0x290)][_0x338463(0x40f,0x476,_0x2f3965._0x481450,_0x2f3965._0x893f9b)](_0x22955e[_0x338463(_0x2f3965._0x186df6,0x3f7,_0x2f3965._0x347c82,0x54d)])),![];}console[_0x338463(0x29f,0x242,_0x2f3965._0x2fa5c3,_0x2f3965._0x386ddb)]('');}else{var _0x2f9678=[];for(var _0x598d2f in _0x4fd9b4)if(_0x11ca03[_0x510458(_0x2f3965._0x2fa5c3,-0x1bb,-0x1fd,-_0x2f3965._0x4d3616)][_0x338463(0x43a,_0x2f3965._0x48f321,'dlAy',0x54c)+_0x510458('0AND',-0x196,-0xc3,-_0x2f3965._0x1c4d85)][_0x338463(_0x2f3965._0x1d0c50,0x41a,_0x2f3965._0x4757a3,_0x2f3965._0x2ccb73)](_0x2f1046,_0x598d2f))_0x2f9678[_0x2f9678[_0x338463(_0x2f3965._0x11295b,_0x2f3965._0x2f48a0,_0x2f3965._0x121739,0xf5)]]=_0x598d2f;return _0x2f9678;}}}else{const _0x3e8a4c=_0x22955e[_0x510458(_0x2f3965._0xe9c3a5,-_0x2f3965._0xda6db8,-0x113,-_0x2f3965._0x20739a)](_0x5f0b87,_0x2ef390);if(!_0x3e8a4c[_0x510458('Fp%T',-_0x2f3965._0x351991,-_0x2f3965._0x5084db,-0xdb)])return _0x3e8a4c[_0x338463(0x2af,0x362,_0x2f3965._0x354765,0x3bb)]||_0x3e8a4c[_0x338463(0x338,_0x2f3965._0x2b38f5,_0x2f3965._0x50a74f,0x3e5)]||_0x22955e[_0x510458(_0x2f3965._0x21d4c1,-_0x2f3965._0x10a327,-0x281,-0x7)];return!![];}}}async function startTUI(){const _0x246d62={_0xf1f387:0x188,_0x479d40:0x198,_0x57d835:0x328,_0x5ce3ba:0x1e9,_0x25e398:'bg9a',_0x95d7b4:0x356,_0x2b617e:0x264,_0x2dc524:0x106,_0x5c5cdc:0x2d5,_0x2fd687:0x3d8,_0x3960a6:'2!5z',_0x5a8aae:0x1c0,_0x53dfb2:0x279,_0x48ae41:0x18b,_0x59b0df:0x4e1,_0x45bfea:'i4iK',_0xf871ae:0x40e,_0x5eab15:0x12a,_0x19e1da:0x15e,_0x8fa114:0x12f,_0x406653:'5#n^',_0x1a2d10:0x48d,_0x3b27ce:'Lj*V',_0x2b9689:0x4e8,_0x366aa0:0x56,_0x1ecaa8:'#y9o',_0x33e02a:0x117,_0x36c885:0x37,_0x4ed906:0x8b,_0x33abbb:'Absd',_0x55f249:0x496,_0x35a36f:'p24@',_0xd9123a:'iuYM',_0x33646b:0x143,_0x185d5f:'sErF',_0x4567b3:0x89,_0x1c1809:0x146,_0x171c0d:0xb0,_0x832d65:'#5zM',_0x59c7ca:0x351,_0x38c67c:0x22b,_0x1c4f59:'i8ak',_0x518a3b:0x2f5,_0x32f7df:0x44e,_0x4687ef:'uo]V',_0x3f9777:0x31e,_0x434cf5:0x4b7,_0x40a12a:0x73,_0x291cbb:0x195,_0x4933b7:'%PeD',_0x2efcb8:0x4d,_0x29310d:0x96,_0x102c0c:0xb7,_0x11329f:0x456,_0x2d2548:0x476,_0x17e0d1:0x5a9,_0x440beb:0x4dc,_0xa600d4:0x137,_0x1e7aae:0x2d,_0x45cb4b:0x118,_0xe0afaa:'iJ%q',_0x54dbab:0x185,_0x40123e:0x10e,_0x5d9601:0x243,_0x3f6265:0xe,_0x5d867b:0x41,_0x442671:'#y9o',_0x253494:0x1cd,_0x4fabf9:0x407,_0xaa2d7e:0x359,_0x19969e:0x5c5,_0x2bfa34:'UdU#',_0x3c68e6:0x29b,_0x1964fa:0x132,_0x4cefc5:'0AND',_0x316389:0x3f2,_0x26261c:'U(wp',_0x38e7b1:0x4e3,_0x464fcd:0x4aa,_0xf8a067:0x3f5,_0x5efe35:0x592,_0x57271f:0x506,_0x4d42f2:0x50d,_0x2b7e0e:'Jc6R',_0x2c552e:0x389,_0x1e3dd8:0x30a,_0x3146ad:0x488,_0xb42c7d:0x454,_0x5134f7:0xb,_0x5270a4:0x52,_0x229486:'0AND',_0x5b018a:0x9b,_0x3ed071:0x294,_0x2f7952:'U9hY',_0x288ef9:0x36c,_0x278552:0x1ba,_0x253a37:0x9d,_0x1b87a7:')HZK',_0x2fe1ac:0x52e,_0x4ee941:'p24@',_0x42babe:0x3cf,_0x59ca11:0x8b,_0x2da3e5:0x189,_0x28289d:0x8f,_0x2bd032:0x305,_0x2dbf3d:0x5ca,_0x387449:0x380,_0x341ba5:'$LPD',_0x537a99:0x3a9,_0x239de1:0x2d7,_0x3fe717:0x1bc,_0x4b1cd2:0x611,_0x580512:'hggu',_0x501df5:0x541,_0x5b1ee6:0x3,_0x3976c3:0x3a,_0x1928f6:0x41d,_0x304829:0x34e,_0x2a9022:0x410,_0x118e3d:0x360,_0x3ec588:0x483,_0x3d4880:0x366,_0x4cca6a:0xd5,_0x249f39:0x300,_0x3c2205:0x4d3,_0x2e8b97:')HZK',_0x3b7419:0x3de,_0x1ceb36:0x3b8,_0x18ff7e:0x34f,_0x586e7b:0xbd,_0x304ac0:0x123,_0x18aa14:'5#n^',_0x106717:0x2f3,_0x5c5a24:'iuYM',_0x51abe0:0x61a,_0x5e4209:0x5ac,_0x38d041:'c1H$',_0x903557:0x1,_0x5b0faa:0x39b,_0x11e8cf:'sErF',_0x121647:0x281,_0x448ef9:0x336,_0x220c7a:'0AND',_0x292542:0x2ce,_0x56bcaa:0x267,_0x5f8e9f:0x7d,_0x120a3a:'HMyN',_0x1589bc:0x312,_0x15d9d7:'bg9a',_0x539670:0x86,_0x5e46dc:0x6e,_0x1536d8:'(#SV',_0x5b13f3:0x390,_0x2a2660:0x474,_0x53b49e:'7DT3',_0x57b81e:0x313,_0xa03321:0x334,_0x548431:0x15c,_0x1b6389:'KKLF',_0x33caba:0x534,_0x2fb9f:0x21c,_0x31b913:0x107,_0x1abffb:0x223,_0x301cf7:0x31b,_0x455c0e:'i4iK',_0x385299:0xc5,_0x1b02e5:0x90,_0x4102c0:'EIp!',_0xa31e6c:0xd1,_0xacefe:0x6a,_0x4bebf6:0x167,_0x379885:0x1dd,_0x59c6ee:0x13,_0x412200:0x100,_0x431019:0xbc,_0x4a8d91:0x47,_0x1cc428:'@Ijh',_0x971bd1:0x3fe,_0x25be6f:0x47f,_0x8e4df7:0x387,_0x1051f2:0x37b,_0x2c96de:0x12f,_0x49ddd9:'U9hY',_0xf67c20:0x32c,_0x4114fb:0x53c,_0x2dfb6c:0x14a,_0x588ee3:0x125,_0x525c59:'!4cD',_0x895ca1:0x16a,_0x1ee5a0:0xa8,_0x366b59:0x80,_0x453130:0xe9,_0x158486:'9T^N',_0x525c76:0x46d,_0x17c3e2:0x695,_0x1de285:'tNhW',_0x187e87:0x580,_0x278b54:0x1ee,_0x1c6f1c:0x183,_0xe60b3:'%PeD',_0x5eabd5:0xe5,_0x4839de:0xa2,_0x3a900b:0x161,_0x33483f:'HMyN',_0x417507:0x4f,_0x57ae6b:0x3f8,_0x240869:0xb7,_0x46d44b:0x43,_0x267972:0x3dc,_0x2d6f6f:0x3d8,_0x118d0d:0x2e3,_0x21612c:0x3f8,_0xa6c887:0x2d1,_0x67f483:0x2ea,_0x1a4d7b:0x3b4,_0x1a7ca8:'bg9a',_0x9d84c1:0x2c,_0x376981:0x1d,_0x531c94:0x2f8,_0xcfde11:0x25d,_0x40d5fc:0x2c6,_0x4131b4:0x200,_0x394e44:0x1d5,_0x1ae7bf:0x225,_0x152dec:0xe2,_0x5b1728:')HZK',_0x3a6622:0x66b,_0x51a612:0x577,_0x12cffd:0x245,_0x41bb97:'HPPX',_0x5b1c1f:0x33e,_0x45a778:0x33a,_0x2a3845:0x431,_0x1ce69f:'s&#w',_0x18146e:0x3fa,_0x319e00:0x3f7,_0x24d0dd:0xdf,_0x1c174d:0x2f,_0x2af7ed:0x6c,_0x2587c5:0xa8,_0x3b3365:0x16e,_0x361404:0x443,_0x3768ea:0x516,_0x496301:0x598,_0x554a17:0x419,_0x2211a3:'9T^N',_0x30a5a9:'Fp%T',_0x117417:0x4a0,_0x2da442:0x56d,_0x1aca88:0x5af,_0x6e0d7c:0x4c5,_0x1a08cd:0x477,_0x54c73c:0x448,_0x34296b:'dlAy',_0x49af5c:0x12b,_0x5820bb:'7DT3',_0x2b7a14:0x41e,_0x5a58d5:0x538,_0xedc70f:0x3fb,_0x169ba5:0x3ee,_0xbcf850:0x308,_0x18246f:'HMyN',_0x56398e:0x216,_0x3f5508:0x335,_0x166bc6:0x584,_0x2eedb4:0x635,_0x11df5d:0x532,_0x44baf9:0x432,_0x205dec:0x53d,_0x216a96:0x43f,_0x461426:0x283,_0x237e1f:0x2eb,_0x43e654:0x443,_0x50a1ed:0x4f1,_0x5dfff4:0x4af,_0xd1b099:0x3be,_0xedf87b:0x572,_0x20e0e2:0x301,_0x12c657:0x3ed,_0x4d2f25:'ejH4',_0x4697bb:0x30b,_0x351981:'9T^N',_0x495a39:0x25f,_0x1c21a5:0x3c9,_0x4961db:0x23,_0x2e3de9:0xa,_0x57d4d6:0x3c2,_0x32c67b:'oC4&',_0x203a60:0x1f6,_0x11dc44:0x4d1,_0x41ca16:0x519,_0x5ee4f5:0x508,_0x42a86:'tNhW',_0x597281:0x55e,_0x2c5092:0x459,_0x4d4ba2:0x361,_0x8108d9:'8kpd',_0x36e14c:0x4b6,_0x5087da:0x198,_0x11fc80:0x1f5,_0x1a723d:0x308,_0x5cf366:0x4e9,_0x504d2c:0x4dd,_0x2e19a3:'@Ijh',_0x149ddd:0x4d5,_0x1069f1:0x54,_0x41e6cb:0x70,_0x4b0b2a:0x451,_0x458e29:0x3b3,_0x4516b0:'iJ%q',_0x165a64:0x108,_0x430961:0x78,_0x79d9dc:0x1cd,_0xe0689d:0x447,_0x47535c:'s&#w',_0x17e8c1:0x325,_0x1b4457:'n5Gs',_0x4efc11:0x421,_0x1b6e5c:0x2ff,_0x4f789b:'7DT3',_0x4f3dec:0x46b,_0x13ddc2:0x66d,_0x363607:0x424,_0x54f277:0x201,_0x5f2108:0x25,_0x181fbb:'Np8L',_0x34a24b:'8kpd',_0x2fde6f:0x4b,_0x132702:0x3ae,_0x4c4e7:0x35c,_0x3700c6:0x449,_0x138356:0x47e,_0x4d9a89:0x109,_0x339a9c:0x1b6,_0x15709e:'8kpd',_0x4fdee2:'%PeD',_0x2e1d58:0x45a,_0x446c35:0x54c,_0x5186da:'bg9a',_0x109447:0x39e,_0x1e93b2:0x2ac,_0x5260e9:0x2f9,_0x40f4b6:0xbd,_0x1b4947:0x9d,_0x3593a3:0x6f5,_0x49640d:0x585,_0x97a7b7:0x388,_0x5b8a13:0x339,_0x1c1d42:0x545,_0x449c84:0x55e,_0x166ba4:'dLFR',_0x1cf5fd:0x220,_0x2c176a:0x392,_0x19c179:0x511,_0x483cc6:'Lj*V',_0x7909:0x53b,_0xddee53:0x347,_0x14633c:'4Db5',_0x45c1d1:0x48e,_0x20a025:0x2a4,_0x2f29f8:0x3ce,_0x41d45b:0x1a,_0x59a6ef:0xad,_0x35d5f1:'!4cD',_0x32fe5b:0xb9,_0x30f378:0x379,_0x3daba8:0x40,_0x221c89:0xca,_0x2cef5d:0x2c7,_0x2059e5:0x23e,_0x4ff756:'7DT3',_0x12c783:0x2d3,_0x19618b:0x53e,_0x44ff16:0x34d,_0x1a67d3:'S3%]',_0x2ea5a9:0x123,_0x2d0e1b:0x596,_0x5a5da8:0x5eb,_0x2f7477:'vi1o',_0x15c53d:0x590,_0x575200:0x122,_0x355edf:'S3%]',_0x474322:0x41b,_0x3ce77f:0xfe,_0x2ba9c0:0x32c,_0x207c86:0x367,_0x4b29c6:0x370,_0xc02987:0x11e,_0x148b2c:0x278,_0x40ac9b:0x16e,_0x18f88e:0x20,_0x4b0c1c:0x33f,_0x51d3ba:0x340,_0x5a8b89:'U9hY',_0x50ca05:0x299,_0x23c04a:0x2d4,_0x33faff:0x575,_0x50c760:'0AND',_0x1bb612:0x539,_0x3edd8a:0x80,_0xa35982:0x314,_0xc41901:0x80,_0x42af4e:0x140,_0x4fe375:0x392,_0x4a3df2:0x5ed,_0x1afaa4:'rzql',_0x13b114:0x502,_0x5df30f:0xff,_0x4c2c3:0x179,_0x5d660f:0x261,_0xfc69af:'U(wp',_0x1f8b7f:0x2cb,_0x443972:0x49e,_0x4d7f69:0x321,_0x28da2f:'uo]V',_0x3789df:0x3b2,_0x1918b8:0x23b,_0x37c956:'$LPD',_0x5cbab1:0xc6,_0x504c7b:0xaa,_0x22092f:0xf0,_0x4a4e50:0x147,_0xb6f6fb:0x17e,_0x45d57f:0x14f,_0x29a543:'UdU#',_0x1f06dd:0x623,_0x3c57e1:0x4bb,_0x1a2041:0x1c2,_0x30289e:0x3b6,_0x2256f9:0x33f,_0x22ce85:0x1f,_0xc71f4d:0x87,_0x2f884f:'Fp%T',_0x2177f1:0x2f4,_0x27c043:0x1de,_0x426c18:0x50e,_0x3f52d2:0x53d,_0x1a9395:0x3fc,_0x197cc6:0x4a6,_0x36f556:0x3cc,_0x19268c:0x4a1,_0x429a36:'%PeD',_0x5e2579:0x1e9,_0x4bacdf:'uo]V',_0x1bd4c5:0x34c,_0x170b36:'*aV^',_0x40e5c6:0x470,_0x1120b8:0x533,_0x11286e:'Jc6R',_0x4dffdd:0x434,_0x87ccc8:0x30b,_0x1d673a:'EIp!',_0xd219dc:0x3b9,_0x4d734e:0x1c8,_0x12ac25:0xf6,_0x16023c:0xa3,_0x14f03c:0x1c1,_0x344b42:0x3b6,_0x3461f8:'UdU#',_0x4514fd:0x592,_0xf044b1:0x136,_0x2ff182:0x1b7,_0x51ac77:0x3c3,_0x558a57:'bg9a',_0x45f507:0x83,_0x39bfcb:0x3b7,_0x59b622:0x2a4,_0x3af62e:0x233,_0x1f5869:0xd2,_0x157084:0x4c,_0x16cbab:0x2e,_0x5548e6:0xc4,_0x3d3858:0x154,_0x45664b:0x2c2,_0x4bbca2:0x582,_0x2096bc:0x463,_0x119d62:0x10f,_0x1195a5:0x2a9,_0x2ffb58:'c1H$',_0x1391ca:0x58,_0x270bf3:0x57,_0x3f8be8:0x22,_0x857acd:0x51a,_0x150f99:0x536,_0x3cbcd1:0x402,_0x121298:0x3ad,_0xf4cc2b:0x4f9,_0x27f8ed:0x2df,_0x1ec5dc:0x43c,_0x4e0bb4:0x41e,_0x3d9bba:0x4b3,_0x38f15e:0x2a2,_0x46d87b:')HZK',_0x32d6d0:0x5,_0x35a453:0xa7,_0x2bb395:0x1e4,_0x2432ce:'9T^N',_0x53c9e7:0x46f,_0x4af006:'#y9o',_0x452281:0x606,_0xd6f9f1:0x405,_0x303b00:'U(wp',_0x5da58b:0x30c,_0x5ab6ad:0x4be,_0x4dbc1b:0x1a7,_0x591c06:0x65,_0xa4990c:0x492,_0x5ac490:0x98,_0x5c6474:0xd3,_0x4740bd:'8kpd',_0x14e57f:'vi1o',_0x32d0f7:0x2fa,_0x3f4d32:0x556,_0x56dc75:'vi1o',_0xdb4a6f:0x435,_0x3e0cc2:'0AND',_0x3f866c:0x535,_0x3cf8d3:0x1c8,_0x539555:0x2e8,_0x932399:0x307,_0x449c77:0x1dc,_0x3b191e:0x93,_0x37398d:0x153,_0x230c31:'Np8L',_0x2a7d3a:0x1a5,_0xb0703f:'%PeD',_0xe42192:0xc8,_0x5abcc2:'uo]V',_0x12e7b1:0x376,_0x24583f:'Lj*V',_0x483f28:0x38d,_0x258a49:'@Ijh',_0x2c9de3:0x563,_0x192d3e:'S3%]',_0x5d6688:0x2ca,_0x4d5b16:'HMyN',_0x5cd195:0x11d,_0x14429f:0xf5,_0x1d0516:0xae,_0x552985:0x10d,_0x509b29:0x4cc,_0x3060b3:0xe5,_0x4d03a2:0x1d,_0x52df3f:0x30,_0x48524c:0x11b,_0x1122b9:0x27,_0x551a6e:0x52,_0x33fc98:0x53d,_0x35c355:0x4e7,_0x138225:'*aV^',_0x3cbee5:0x187,_0x4e359b:'EIp!',_0x51beb7:0x57,_0x556621:0x19b,_0x515549:0x58,_0x110579:0x471,_0x3f41f5:'Jc6R',_0x11e08e:0x3f8,_0x50d881:0x36,_0x560b76:0x10e,_0x57fc52:0x42d,_0x318a42:0x4f4,_0x57772c:0x422,_0x592338:0x101,_0x54a0a3:0x85,_0x448881:0x30a,_0x1c581b:0x54f,_0x231f06:0x3fd,_0x3c5f09:0x22f,_0x58b0b0:0x1d3,_0x47fb61:0x35,_0x230d46:0x173,_0x211fe5:0x3e,_0x397742:'!4cD',_0x2227d8:0x444,_0x2be75c:'5#n^',_0x54c2f4:0x574,_0x4a44fa:0x2c0,_0x4dfa75:0x203,_0x23e9bd:'S3%]',_0x1edfd8:0x1e0,_0x43de0c:'$LPD',_0x1757e9:0x196,_0xbd33ad:'hggu',_0x2e490f:0x16b,_0x439b61:0x36a,_0x2608d7:0x311,_0x399973:0x1e,_0x836259:0x286,_0x564291:0x48a,_0x1ee030:'ejH4',_0x5e2786:'Fp%T',_0xfd9da0:0x53b,_0x76e50b:0x131,_0x5cba09:0x2d3,_0x4d0577:'iuYM',_0x268f95:0x2a,_0x49d615:0x49,_0x5592de:0xe7,_0x5a3de6:0x60,_0x3aed90:0x18b,_0x44376a:0x5a,_0x554009:0x24,_0x295b62:0x47d,_0x3921f8:0x2f6},_0x26c858={_0xa44b54:0x650,_0x41d611:0x53b,_0x4cccac:0x4a2,_0x57bd23:'HPPX',_0x3f369b:0x37b,_0x4e30e2:0x302,_0x2706b6:0x458,_0x48d6e9:'HMyN',_0xb6341d:0x3ba,_0x55531c:0x52b,_0x5a5fe9:'Jc6R',_0x5924df:0x497,_0x109a68:0x475,_0x5ba54e:0x67d,_0x510611:0x51e,_0x15ae77:0x4af,_0x3af5e2:'EIp!',_0x4d059f:0x401,_0x18e509:'4Db5',_0x556799:0x460,_0x13ea09:0x37a,_0x3ebadf:'i8ak',_0x169fdc:0x474,_0x574dbf:0x381},_0x1badcc={_0x3846ee:0x4da,_0x2e484e:0x5b},_0xe739b6={_0x6684f3:0x19b,_0x10cfd9:0x173},_0xd715f0={_0x345f23:0x5d7,_0x2f9b52:0x614,_0x3018a7:0x384,_0x55fa06:'2!5z',_0x2a49f9:0x36d,_0x5aaeac:0x4d9,_0x5848bc:'eV8k',_0x13d893:0x519,_0x3493fc:0x473,_0x297b0a:0x3cc,_0x473940:0x26b,_0x5233f7:'#y9o',_0x12e6eb:0x4c5,_0x3ec26d:0x394,_0x4f8fe1:0x245,_0x3204dc:'Absd',_0x13ef5c:0x57d,_0x2c60b9:0x698,_0x29aae1:0x416,_0xb07117:0x5a3,_0x29015f:0x6af,_0xb4cf78:'p24@',_0x43bfa5:'dLFR'},_0x2401e0={_0x56e1c6:0x42},_0x42f702={_0x1ce99f:0x260,_0x480922:0xc5};function _0x3d87c0(_0x2d820c,_0x237c29,_0x28a640,_0x71d96e){return _0x4107f9(_0x71d96e,_0x237c29- -_0x42f702._0x1ce99f,_0x28a640-_0x42f702._0x480922,_0x71d96e-0xeb);}const _0x55ed26={'sVokE':_0x3d87c0(0x260,_0x246d62._0xf1f387,0x26e,'dlAy'),'ERxNv':'\x0a再见!\x0a','uKWvf':function(_0x4cff2b,_0x45a874){return _0x4cff2b<_0x45a874;},'KsFfI':function(_0x21b6bd,_0x3964b7){return _0x21b6bd(_0x3964b7);},'yuNQF':_0x3d87c0(_0x246d62._0x479d40,0x1df,_0x246d62._0x57d835,'uo]V'),'fTIDk':function(_0x49c0de,_0x495369){return _0x49c0de+_0x495369;},'IfyVo':_0x4941e6(0x339,_0x246d62._0x5ce3ba,_0x246d62._0x25e398,_0x246d62._0x95d7b4),'AmfNv':function(_0x32c178,_0x8d511f){return _0x32c178(_0x8d511f);},'XMgAg':function(_0x1bd62f,_0x25926b){return _0x1bd62f===_0x25926b;},'zsuuh':_0x3d87c0(_0x246d62._0x2b617e,_0x246d62._0x2dc524,0x15a,'U(wp'),'otXjf':_0x4941e6(_0x246d62._0x5c5cdc,_0x246d62._0x2fd687,_0x246d62._0x3960a6,0x41f),'IFQbA':_0x3d87c0(0x1e4,_0x246d62._0x5a8aae,_0x246d62._0x53dfb2,'iJ%q'),'JKKfu':function(_0x5b23dc,_0x348c1a){return _0x5b23dc(_0x348c1a);},'Fwdlq':_0x3d87c0(0xba,_0x246d62._0x48ae41,0x211,'sErF'),'YmGnt':_0x4941e6(0x2d5,_0x246d62._0x59b0df,_0x246d62._0x45bfea,_0x246d62._0xf871ae),'jnjJB':_0x3d87c0(_0x246d62._0x5eab15,_0x246d62._0x19e1da,_0x246d62._0x8fa114,_0x246d62._0x406653)+'\x0a','hmGeU':_0x4941e6(_0x246d62._0x1a2d10,0x3b8,_0x246d62._0x3b27ce,_0x246d62._0x2b9689)+'\x20\x20正式授权:\x20TM'+_0x3d87c0(0x132,_0x246d62._0x366aa0,0x199,_0x246d62._0x1ecaa8)+_0x3d87c0(_0x246d62._0x33e02a,_0x246d62._0x36c885,-_0x246d62._0x4ed906,_0x246d62._0x33abbb)+_0x4941e6(0x314,_0x246d62._0x55f249,'5#n^',0x46e)+_0x4941e6(0x4a0,0x411,_0x246d62._0x35a36f,0x37c)+_0x4941e6(0x581,0x373,_0x246d62._0xd9123a,0x47a),'NPSma':function(_0x4a87c4,_0x5b63cd){return _0x4a87c4+_0x5b63cd;},'biSDr':function(_0x30df6f,_0x18968a){return _0x30df6f(_0x18968a);},'EQuQv':function(_0x1753ba){return _0x1753ba();},'ozvcb':function(_0x35f823,_0x17ac88){return _0x35f823>_0x17ac88;},'sTipA':_0x4941e6(0x44c,0x472,_0x246d62._0x45bfea,0x372),'vYSyC':function(_0x2784e8,_0x1a44d7){return _0x2784e8<_0x1a44d7;},'jjnEB':function(_0x367941,_0x2c1168){return _0x367941!==_0x2c1168;},'etYbv':_0x3d87c0(_0x246d62._0x33646b,0x67,0x162,_0x246d62._0x185d5f),'GwJRS':function(_0x57e1e7,_0x1b87fb){return _0x57e1e7(_0x1b87fb);},'SqsFx':_0x3d87c0(0x16,_0x246d62._0x4567b3,_0x246d62._0x1c1809,'7DT3')+_0x3d87c0(0x89,_0x246d62._0x171c0d,-0x4e,_0x246d62._0x832d65),'SHMAr':_0x4941e6(_0x246d62._0x59c7ca,_0x246d62._0x38c67c,_0x246d62._0x1c4f59,0x375)+_0x4941e6(_0x246d62._0x518a3b,_0x246d62._0x32f7df,_0x246d62._0x4687ef,0x3e1)+_0x3d87c0(-0x66,0x8,-0xdf,'i8ak')+_0x4941e6(0x27e,0x341,'!4cD',_0x246d62._0x3f9777),'ADDfh':_0x4941e6(0x5ab,_0x246d62._0x434cf5,'@Ijh',0x51e),'oXuLC':function(_0x366240,_0x2cac32){return _0x366240>_0x2cac32;},'PxQRl':_0x3d87c0(-_0x246d62._0x40a12a,-0x84,-_0x246d62._0x291cbb,_0x246d62._0x4933b7),'IkwJO':_0x3d87c0(-_0x246d62._0x2efcb8,_0x246d62._0x29310d,-_0x246d62._0x102c0c,'5#n^'),'QSCji':_0x4941e6(0x49c,0x4bb,_0x246d62._0x4933b7,_0x246d62._0x11329f),'LPmkz':_0x4941e6(0x48b,0x3d9,'c1H$',_0x246d62._0x2d2548),'iptEy':_0x4941e6(0x3df,_0x246d62._0x17e0d1,'s&#w',_0x246d62._0x440beb),'BYlbj':_0x3d87c0(-_0x246d62._0xa600d4,-_0x246d62._0x1e7aae,-0x38,'Jc6R'),'cywyB':_0x3d87c0(-_0x246d62._0x45cb4b,-0x66,0x19,_0x246d62._0xe0afaa),'GLGAz':_0x3d87c0(_0x246d62._0x54dbab,_0x246d62._0x40123e,_0x246d62._0x5d9601,'2!5z'),'cXhas':function(_0x3e1a2a,_0x245086){return _0x3e1a2a===_0x245086;},'StYCb':_0x3d87c0(-0xc5,_0x246d62._0x3f6265,_0x246d62._0x5d867b,_0x246d62._0x442671),'uPMUq':_0x4941e6(0x1f0,_0x246d62._0x253494,'p24@',0x30e)+'ot','YuWXp':_0x4941e6(_0x246d62._0x4fabf9,_0x246d62._0xaa2d7e,'oC4&',0x2f3)+'law\x20目录路径:','LtxUu':function(_0x5bf97a,_0x508005){return _0x5bf97a!==_0x508005;},'JlckU':_0x4941e6(0x479,_0x246d62._0x19969e,_0x246d62._0x2bfa34,0x4da)+_0x4941e6(_0x246d62._0x3c68e6,0x2af,'#5zM',0x32c),'LYcRp':_0x3d87c0(_0x246d62._0x1964fa,-0xb,-0x131,_0x246d62._0x4cefc5),'goCpu':_0x4941e6(_0x246d62._0x316389,0x4c4,_0x246d62._0x26261c,_0x246d62._0x38e7b1),'eYSZU':function(_0x304962,_0x4dad11){return _0x304962===_0x4dad11;},'wRwnC':_0x4941e6(0x346,_0x246d62._0x464fcd,'%PeD',_0x246d62._0xf8a067),'VapKO':_0x4941e6(_0x246d62._0x5efe35,_0x246d62._0x57271f,'rzql',0x544),'rRwmD':function(_0x4953bb,_0x5e51b8){return _0x4953bb===_0x5e51b8;},'yrrLP':_0x4941e6(0x2ad,0x494,'U(wp',0x3af),'FLOHY':function(_0x4b06bf,_0x3c5429){return _0x4b06bf===_0x3c5429;},'MEoxW':_0x4941e6(_0x246d62._0x4d42f2,0x2ca,_0x246d62._0x2b7e0e,0x3f4),'VVBwl':function(_0x47a327,_0x1f0e5a){return _0x47a327===_0x1f0e5a;},'xiFef':_0x4941e6(_0x246d62._0x2c552e,0x34a,')HZK',0x382),'zHqNn':_0x4941e6(0x692,0x684,'rzql',0x582),'WHKCX':_0x4941e6(_0x246d62._0x1e3dd8,_0x246d62._0x3146ad,'dLFR',_0x246d62._0xb42c7d),'NYPVc':function(_0x2184f0,_0x24d3fe){return _0x2184f0===_0x24d3fe;},'vSNTS':_0x3d87c0(_0x246d62._0x5134f7,0xc8,_0x246d62._0x5270a4,_0x246d62._0x229486),'UkYTk':_0x3d87c0(-_0x246d62._0x5b018a,0x23,-0x36,'vi1o'),'KMcfx':function(_0x580611,_0x4d2611){return _0x580611===_0x4d2611;},'MYCQM':_0x4941e6(_0x246d62._0x440beb,_0x246d62._0x3ed071,_0x246d62._0x2f7952,_0x246d62._0x288ef9),'gjCSm':_0x4941e6(0x39f,_0x246d62._0x278552,'$LPD',0x313),'WXrWq':_0x3d87c0(_0x246d62._0x253a37,0x156,0x1b9,_0x246d62._0x1b87a7),'xydzf':_0x4941e6(0x37a,0x259,'ejH4',0x354),'QvSjB':_0x4941e6(0x602,0x459,'oC4&',_0x246d62._0x2fe1ac)+_0x4941e6(0x4f2,0x283,_0x246d62._0x4ee941,_0x246d62._0x42babe),'ReUPm':_0x3d87c0(_0x246d62._0x59ca11,_0x246d62._0x2da3e5,0x2f4,'Lj*V'),'uGmpv':_0x3d87c0(0x6,_0x246d62._0x28289d,0x16c,'HPPX'),'FfjoF':_0x4941e6(0x376,0x2cf,'KKLF',_0x246d62._0x2bd032)+'.','mEFDr':function(_0x423b4d,_0x30ab45){return _0x423b4d!==_0x30ab45;},'LuKxI':_0x4941e6(_0x246d62._0x2dbf3d,_0x246d62._0x387449,'#y9o',0x4a5),'YsBgw':_0x4941e6(0x4c2,0x38d,_0x246d62._0x341ba5,_0x246d62._0x537a99),'sEjPk':_0x4941e6(_0x246d62._0x239de1,_0x246d62._0x3fe717,'!4cD',0x328)+'!\x0a','TblgZ':_0x4941e6(0x5b3,_0x246d62._0x4b1cd2,_0x246d62._0x580512,_0x246d62._0x501df5),'JSysL':function(_0xcdacd4,_0xcb870c){return _0xcdacd4!==_0xcb870c;},'NihxM':_0x3d87c0(-_0x246d62._0x5b1ee6,0x98,-_0x246d62._0x3976c3,'vi1o'),'YiwUk':function(_0x271c8b,_0x5c01c3){return _0x271c8b!==_0x5c01c3;},'bWGLU':_0x4941e6(_0x246d62._0x1928f6,0x294,'iJ%q',_0x246d62._0x304829)};_0x55ed26[_0x4941e6(_0x246d62._0x2a9022,_0x246d62._0x118e3d,'0AND',_0x246d62._0x3ec588)](printBanner);const _0x418cd1=await ensureLicenseValid();if(!_0x418cd1)return;const _0x18e941=readWorkspaceHistory();if(_0x55ed26[_0x3d87c0(_0x246d62._0x3d4880,0x246,_0x246d62._0x4cca6a,'#y9o')](_0x18e941[_0x4941e6(0x2dd,0x2a5,'Absd',_0x246d62._0x249f39)],0x13*-0x1b7+0x613+-0x46b*-0x6)){console[_0x4941e6(0x2b6,_0x246d62._0x3c2205,_0x246d62._0x2e8b97,_0x246d62._0x3b7419)](chalk_1['default'][_0x4941e6(_0x246d62._0x1ceb36,0x37f,'U9hY',_0x246d62._0x18ff7e)](_0x55ed26[_0x3d87c0(-_0x246d62._0x586e7b,0x88,_0x246d62._0x304ac0,_0x246d62._0x18aa14)]));for(let _0x35d7d4=0x50*-0x9+-0x1303+0x25*0x97;_0x55ed26[_0x3d87c0(0x13c,0x1ee,_0x246d62._0x106717,_0x246d62._0x5c5a24)](_0x35d7d4,Math[_0x4941e6(_0x246d62._0x51abe0,_0x246d62._0x5e4209,_0x246d62._0x38d041,0x4fa)](_0x18e941[_0x3d87c0(0x113,-_0x246d62._0x903557,-0xe6,_0x246d62._0x2f7952)],-0x3*-0xc2d+0x18d6+-0x3d58*0x1));_0x35d7d4++){if(_0x55ed26[_0x4941e6(0x340,_0x246d62._0x5b0faa,_0x246d62._0x11e8cf,0x2f2)](_0x4941e6(_0x246d62._0x121647,_0x246d62._0x448ef9,_0x246d62._0x220c7a,_0x246d62._0x292542),_0x55ed26[_0x4941e6(0x39a,_0x246d62._0x56bcaa,'n5Gs',0x308)])){const _0x12185f=_0x55ed26['GwJRS'](validateWorkspacePath,_0x18e941[_0x35d7d4])[_0x3d87c0(_0x246d62._0x366aa0,-0x2e,-_0x246d62._0x5f8e9f,_0x246d62._0x120a3a)],_0x11cb52=_0x12185f?'':chalk_1[_0x4941e6(0x3fd,_0x246d62._0x1589bc,_0x246d62._0x15d9d7,0x437)][_0x3d87c0(-_0x246d62._0x539670,0x81,-_0x246d62._0x5e46dc,_0x246d62._0x1536d8)](_0x4941e6(0x39d,_0x246d62._0x5b13f3,'c1H$',_0x246d62._0x2a2660));console[_0x4941e6(0x3d7,0x327,_0x246d62._0x53b49e,0x452)](chalk_1[_0x4941e6(0x2c8,_0x246d62._0x57b81e,'oC4&',_0x246d62._0xa03321)][_0x3d87c0(-0x14,0x9,_0x246d62._0x548431,_0x246d62._0x1b6389)]('\x20\x20'+(_0x35d7d4+(-0x407+0x2*0x1336+-0x2264*0x1))+'.\x20'+_0x18e941[_0x35d7d4]+_0x11cb52));}else{const _0x324add={};return _0x324add[_0x3d87c0(-0xa,0x151,0x16,'ejH4')]=![],_0x324add[_0x4941e6(0x5d1,0x659,'UdU#',_0x246d62._0x33caba)]=_0x55ed26[_0x3d87c0(_0x246d62._0x2fb9f,0x13a,0x2a9,'bg9a')],_0x324add;}}console[_0x3d87c0(_0x246d62._0x31b913,_0x246d62._0x1abffb,_0x246d62._0x301cf7,_0x246d62._0x455c0e)]('');}function _0x4941e6(_0x2fb4d4,_0x1c9acf,_0x3cef7f,_0x268461){return _0x4107f9(_0x3cef7f,_0x268461-0xe3,_0x3cef7f-_0x2401e0._0x56e1c6,_0x268461-0x98);}while(!![]){const _0xe84972=configTracker[_0x3d87c0(-_0x246d62._0x385299,_0x246d62._0x1b02e5,-0xd8,_0x246d62._0x4102c0)+_0x3d87c0(_0x246d62._0xa31e6c,-_0x246d62._0xacefe,-_0x246d62._0x4bebf6,'#y9o')]();if(!_0xe84972){console[_0x4941e6(0x3bd,_0x246d62._0x379885,'dlAy',0x2cc)](chalk_1[_0x3d87c0(-0x2f,-_0x246d62._0x59c6ee,_0x246d62._0x412200,'KKLF')][_0x3d87c0(-_0x246d62._0x431019,_0x246d62._0x4a8d91,-0x114,_0x246d62._0x1cc428)](_0x55ed26[_0x4941e6(0x2f4,0x3ae,_0x246d62._0x229486,_0x246d62._0x971bd1)])),console[_0x4941e6(_0x246d62._0x25be6f,_0x246d62._0x8e4df7,'2!5z',_0x246d62._0x1051f2)](chalk_1['default'][_0x3d87c0(-_0x246d62._0x2c96de,0xc,0x86,_0x246d62._0x49ddd9)](_0x55ed26[_0x3d87c0(_0x246d62._0xf67c20,0x212,0x1bf,'*66P')]));const _0x25de30=[],_0x3b21f5=_0x18e941[_0x4941e6(_0x246d62._0x4114fb,0x50c,'HPPX',0x4ee)](_0x4aef71=>validateWorkspacePath(_0x4aef71)[_0x4941e6(0x475,0x382,'oC4&',0x33d)]);for(const _0x3ae0ff of _0x3b21f5[_0x3d87c0(0x46,_0x246d62._0x2dfb6c,_0x246d62._0x588ee3,_0x246d62._0x525c59)](-0x6c8+0x2*0x121a+-0x1d6c,-0x19ef+-0xfa7*0x1+0x299b*0x1)){if(_0x55ed26[_0x3d87c0(0x2c0,_0x246d62._0x895ca1,_0x246d62._0x1ee5a0,'Lj*V')](_0x3d87c0(-_0x246d62._0x366b59,0x6a,-0xb4,'tNhW'),_0x55ed26[_0x3d87c0(0xae,_0x246d62._0x453130,0x84,_0x246d62._0x158486)])){const _0x4e6bef={};_0x4e6bef[_0x4941e6(_0x246d62._0x525c76,_0x246d62._0x17c3e2,_0x246d62._0x1de285,_0x246d62._0x187e87)]=_0x3d87c0(_0x246d62._0x278b54,_0x246d62._0x1c6f1c,0x2cf,_0x246d62._0xe60b3)+_0x3ae0ff,_0x4e6bef['value']=_0x3ae0ff,_0x25de30[_0x3d87c0(_0x246d62._0x5eabd5,_0x246d62._0x4839de,_0x246d62._0x3a900b,'U9hY')](_0x4e6bef);}else return _0x1f8035[_0x3d87c0(0x1ae,0x1ff,0x31c,_0x246d62._0x33483f)](_0x59de5d[_0x3d87c0(-0xcd,-0x76,-_0x246d62._0x417507,'7DT3')]['dim'](_0x55ed26[_0x3d87c0(0xa,0x141,0xae,'9T^N')])),![];}if(_0x55ed26[_0x4941e6(_0x246d62._0x57ae6b,0x418,'*aV^',0x45a)](_0x25de30[_0x3d87c0(0x1fe,_0x246d62._0x240869,_0x246d62._0x46d44b,'s&#w')],-0xf9d*0x1+0x1*0x21b3+-0x1216)){if(_0x55ed26[_0x4941e6(_0x246d62._0x267972,0x2b6,'iJ%q',_0x246d62._0x2d6f6f)](_0x55ed26[_0x4941e6(_0x246d62._0x118d0d,_0x246d62._0x21612c,'@Ijh',_0x246d62._0xa6c887)],_0x4941e6(_0x246d62._0x67f483,_0x246d62._0x1a4d7b,_0x246d62._0x1a7ca8,0x2ef)))_0x25de30[_0x3d87c0(0xc9,_0x246d62._0x9d84c1,_0x246d62._0x376981,'bg9a')](new inquirer_1[(_0x3d87c0(-0x1,-0x57,-0x28,'*aV^'))][(_0x4941e6(_0x246d62._0x531c94,_0x246d62._0xcfde11,'i4iK',_0x246d62._0x40d5fc))]('─'[_0x3d87c0(_0x246d62._0x4131b4,_0x246d62._0x394e44,0x1c9,'i8ak')](0x4*0x4fe+-0x2d8*0x7+0x18)));else{_0x141dc7['log'](_0x36e8ce[_0x4941e6(0x431,_0x246d62._0x1ae7bf,_0x246d62._0x53b49e,0x2cd)][_0x3d87c0(-0x83,0x30,-_0x246d62._0x152dec,_0x246d62._0x5b1728)](_0x4941e6(_0x246d62._0x3a6622,_0x246d62._0x51a612,'dlAy',0x546)));for(let _0xf19ba6=0x461*-0x8+0x1569+0x13d*0xb;_0x55ed26[_0x4941e6(0x2eb,_0x246d62._0x12cffd,_0x246d62._0x41bb97,0x3b0)](_0xf19ba6,_0x4ecbd9[_0x4941e6(_0x246d62._0x5b1c1f,0x31a,_0x246d62._0x49ddd9,0x395)](_0x424575[_0x4941e6(_0x246d62._0x45a778,_0x246d62._0x2a3845,_0x246d62._0x1ce69f,_0x246d62._0x18146e)],0x3*0x7b3+0x1*-0x12e3+-0x431));_0xf19ba6++){const _0x5c9cf5=_0x55ed26[_0x4941e6(0x422,0x45f,'8kpd',_0x246d62._0x319e00)](_0x3f7736,_0x1d746b[_0xf19ba6])['valid'],_0xb280ca=_0x5c9cf5?'':_0x4fc024[_0x3d87c0(-_0x246d62._0x24d0dd,-_0x246d62._0x1c174d,-_0x246d62._0x2af7ed,'Np8L')][_0x3d87c0(-0x5f,_0x246d62._0x2587c5,_0x246d62._0x3b3365,'$LPD')](_0x55ed26[_0x4941e6(_0x246d62._0x361404,_0x246d62._0x3768ea,'dlAy',_0x246d62._0x496301)]);_0x4a7cbe[_0x4941e6(0x478,_0x246d62._0x554a17,_0x246d62._0x2211a3,0x4f7)](_0x46983f[_0x4941e6(0x381,0x502,_0x246d62._0x30a5a9,_0x246d62._0x117417)][_0x4941e6(_0x246d62._0x2da442,_0x246d62._0x1aca88,'*aV^',_0x246d62._0x6e0d7c)]('\x20\x20'+_0x55ed26[_0x4941e6(_0x246d62._0x1a08cd,0x4a5,_0x246d62._0x38d041,_0x246d62._0x54c73c)](_0xf19ba6,-0xca8+0x1*0x471+-0x20e*-0x4)+'.\x20'+_0x11a1f0[_0xf19ba6]+_0xb280ca));}_0x3d33ba[_0x4941e6(0x24a,0x379,_0x246d62._0x34296b,0x2cc)]('');}}const _0x5c8e1d={};_0x5c8e1d[_0x3d87c0(0x1e4,_0x246d62._0x253a37,_0x246d62._0x49af5c,_0x246d62._0x5820bb)]=_0x4941e6(_0x246d62._0x2b7a14,_0x246d62._0x5a58d5,'iuYM',_0x246d62._0xedc70f),_0x5c8e1d[_0x4941e6(_0x246d62._0x169ba5,_0x246d62._0xbcf850,_0x246d62._0x18246f,0x3f9)]=_0x55ed26[_0x4941e6(_0x246d62._0x56398e,0x34c,'Np8L',_0x246d62._0x3f5508)],_0x25de30[_0x4941e6(_0x246d62._0x166bc6,_0x246d62._0x2eedb4,_0x246d62._0x41bb97,_0x246d62._0x11df5d)](_0x5c8e1d);const _0x58a299={};_0x58a299[_0x4941e6(_0x246d62._0x44baf9,0x458,'$LPD',0x4f2)]=_0x55ed26[_0x4941e6(_0x246d62._0x205dec,0x42a,'dlAy',_0x246d62._0x216a96)],_0x58a299[_0x4941e6(0x3fa,_0x246d62._0x461426,'vi1o',0x383)]=_0x55ed26[_0x4941e6(_0x246d62._0x237e1f,0x3b9,'$LPD',_0x246d62._0x43e654)],_0x25de30[_0x4941e6(_0x246d62._0x50a1ed,_0x246d62._0x5dfff4,'#y9o',_0x246d62._0xd1b099)](_0x58a299);let _0x87e568=null;if(_0x55ed26[_0x4941e6(0x4cb,0x539,'rzql',_0x246d62._0xedf87b)](_0x25de30[_0x4941e6(_0x246d62._0x20e0e2,_0x246d62._0x12c657,_0x246d62._0x4d2f25,_0x246d62._0x4697bb)],-0x238b+0xf7e+-0x4f*-0x41)){if(_0x4941e6(0x361,0x216,_0x246d62._0x351981,0x329)!==_0x55ed26[_0x4941e6(_0x246d62._0x495a39,_0x246d62._0x301cf7,_0x246d62._0x30a5a9,_0x246d62._0x1c21a5)]){const _0x56493d={};_0x56493d[_0x3d87c0(_0x246d62._0x4961db,_0x246d62._0x2e3de9,-0x33,_0x246d62._0x5820bb)]=_0x3d535c,_0x3717e2[_0x4941e6(_0x246d62._0x57d4d6,0x560,_0x246d62._0x32c67b,0x44f)+_0x4941e6(_0x246d62._0x203a60,0x2f6,'%PeD',0x327)](_0x1796d8,_0x31b02c[_0x4941e6(0x510,_0x246d62._0x11dc44,_0x246d62._0x34296b,_0x246d62._0x41ca16)](_0x56493d,null,-0x5c+-0x1*-0x12e+0x10*-0xd),_0x55ed26[_0x4941e6(0x538,_0x246d62._0x5ee4f5,_0x246d62._0x42a86,0x3ff)]);}else{const _0x1f9a6a={};_0x1f9a6a[_0x4941e6(0x578,_0x246d62._0x597281,'tNhW',_0x246d62._0x2c5092)]=_0x55ed26[_0x4941e6(0x61b,_0x246d62._0x4d4ba2,_0x246d62._0x8108d9,_0x246d62._0x36e14c)],_0x1f9a6a[_0x3d87c0(0x1c6,_0x246d62._0x5087da,0x1b8,'HMyN')]=_0x55ed26[_0x3d87c0(0x90,_0x246d62._0x11fc80,_0x246d62._0x1a723d,'c1H$')],_0x1f9a6a[_0x4941e6(_0x246d62._0x5cf366,_0x246d62._0x504d2c,_0x246d62._0x2e19a3,_0x246d62._0x149ddd)]=_0x55ed26[_0x3d87c0(-0xa4,_0x246d62._0x1069f1,0x111,_0x246d62._0x1b6389)],_0x1f9a6a[_0x3d87c0(0x1af,_0x246d62._0x41e6cb,-0x6,'7DT3')]=_0x25de30,_0x1f9a6a[_0x4941e6(_0x246d62._0x4b0b2a,_0x246d62._0x458e29,_0x246d62._0x4516b0,0x4f8)]=![];const {selected:_0x261786}=await inquirer_1['default'][_0x4941e6(0x4b0,0x40b,'dlAy',0x4d7)]([_0x1f9a6a]);if(_0x55ed26['cXhas'](_0x261786,_0x55ed26[_0x3d87c0(-0x11,_0x246d62._0x165a64,_0x246d62._0x430961,'sErF')])){console[_0x3d87c0(0x2dd,_0x246d62._0x79d9dc,0x2cb,_0x246d62._0x49ddd9)](chalk_1[_0x4941e6(_0x246d62._0xe0689d,0x6b0,'hggu',0x575)][_0x4941e6(0x252,0x1b6,_0x246d62._0x47535c,_0x246d62._0x17e8c1)](_0x55ed26[_0x4941e6(_0x246d62._0x440beb,0x427,_0x246d62._0x1b4457,0x561)]));return;}if(_0x55ed26[_0x4941e6(0x57f,_0x246d62._0x4efc11,'i8ak',0x444)](_0x261786,_0x55ed26[_0x4941e6(_0x246d62._0x1b6e5c,0x4d7,_0x246d62._0x4f789b,_0x246d62._0x4f3dec)])){if(_0x55ed26[_0x4941e6(_0x246d62._0x13ddc2,_0x246d62._0x363607,'oC4&',0x50d)](_0x4941e6(_0x246d62._0x54f277,_0x246d62._0x3c68e6,'ejH4',0x35b),_0x55ed26[_0x3d87c0(0x127,0xd0,_0x246d62._0x5f2108,'Lj*V')])){if((-0x1b85+-0x1e0+0x7*0x433,_0x395610[_0x4941e6(0x1ca,0x459,_0x246d62._0x181fbb,0x2f5)+_0x4941e6(0x42d,0x22c,_0x246d62._0x34a24b,0x2d6)+'d'])()){const _0x32fc7d=(0x1*-0x80e+-0x53d*-0x2+-0x26c,_0x4b07[_0x3d87c0(0x3d,-_0x246d62._0x2fde6f,-0xa6,_0x246d62._0x341ba5)+_0x4941e6(0x5ed,_0x246d62._0x132702,'(#SV',0x47c)])();if(_0x32fc7d){const _0x5a25d6=_0x5760e8[_0x4941e6(_0x246d62._0x4c4e7,_0x246d62._0x3700c6,'bg9a',_0x246d62._0x138356)+_0x3d87c0(_0x246d62._0x4d9a89,_0x246d62._0x339a9c,0x31e,_0x246d62._0x15709e)][_0x3d87c0(0xf3,-0x41,0x25,'sErF')+'nt']();_0x5a25d6&&(_0x46fe0c=!![]);}}}else{const {openClawRoot:_0x1d41e5}=await inquirer_1[_0x4941e6(0x5ea,0x4ed,'EIp!',0x505)][_0x4941e6(0x461,0x2f8,_0x246d62._0x4fdee2,0x357)]([{'type':_0x4941e6(0x44b,_0x246d62._0x2e1d58,'HMyN',_0x246d62._0x446c35),'name':_0x55ed26[_0x4941e6(_0x246d62._0x132702,0x2b4,_0x246d62._0x5186da,_0x246d62._0x109447)],'message':_0x55ed26[_0x3d87c0(0x322,_0x246d62._0x278552,0x13a,'#5zM')],'validate':_0xf1cb70=>{const _0x429b1e={_0xa57029:0x1f3},_0xa4a68f={_0x20741c:0x1cd,_0x4c2bf3:0x1b8};function _0x42fb4d(_0x3d5962,_0x5107ff,_0x14ac79,_0x4819f9){return _0x3d87c0(_0x3d5962-0x37,_0x4819f9-_0xa4a68f._0x20741c,_0x14ac79-_0xa4a68f._0x4c2bf3,_0x5107ff);}function _0x131bd3(_0x40f1f8,_0x232e06,_0x218d72,_0x408337){return _0x3d87c0(_0x40f1f8-_0x429b1e._0xa57029,_0x40f1f8-0x37e,_0x218d72-0x1be,_0x218d72);}const _0x263db8=_0x55ed26[_0x131bd3(_0xd715f0._0x345f23,_0xd715f0._0x2f9b52,'(#SV',0x65b)](validateWorkspacePath,_0xf1cb70);if(!_0x263db8[_0x131bd3(_0xd715f0._0x3018a7,0x2b2,_0xd715f0._0x55fa06,_0xd715f0._0x2a49f9)]){if(_0x55ed26[_0x131bd3(0x46c,_0xd715f0._0x5aaeac,'tNhW',0x57b)](_0x55ed26[_0x42fb4d(0x338,_0xd715f0._0x5848bc,0x29d,0x208)],_0x55ed26[_0x131bd3(_0xd715f0._0x13d893,0x4c2,'KKLF',_0xd715f0._0x3493fc)]))return _0x263db8[_0x131bd3(_0xd715f0._0x297b0a,_0xd715f0._0x473940,_0xd715f0._0x5233f7,_0xd715f0._0x12e6eb)]||_0x263db8[_0x42fb4d(_0xd715f0._0x3ec26d,'$LPD',_0xd715f0._0x4f8fe1,0x294)]||_0x55ed26[_0x42fb4d(0x27c,_0xd715f0._0x3204dc,0x4aa,0x3b3)];else _0xb688e3[_0x131bd3(_0xd715f0._0x13ef5c,_0xd715f0._0x2c60b9,'HMyN',_0xd715f0._0x29aae1)](_0x3e1cf5[_0x131bd3(_0xd715f0._0xb07117,_0xd715f0._0x29015f,_0xd715f0._0xb4cf78,0x622)][_0x131bd3(0x4ab,0x33a,_0xd715f0._0x43bfa5,0x375)]('✗\x20'+_0x4bb504));}return!![];}}]);_0x87e568=_0x1d41e5[_0x4941e6(0x28f,_0x246d62._0x1e93b2,'8kpd',_0x246d62._0x5260e9)]();}}else _0x55ed26[_0x3d87c0(_0x246d62._0x40f4b6,0x76,-_0x246d62._0x1b4947,_0x246d62._0x4102c0)](_0x261786,_0x55ed26[_0x4941e6(_0x246d62._0x3593a3,0x4f7,_0x246d62._0x2211a3,_0x246d62._0x49640d)])&&(_0x87e568=_0x261786);}}else{if(_0x55ed26['XMgAg'](_0x55ed26['LYcRp'],_0x4941e6(_0x246d62._0x97a7b7,0x1ad,_0x246d62._0x33abbb,0x312)))return[];else{const {openClawRoot:_0x5d749f}=await inquirer_1[_0x4941e6(_0x246d62._0x5b8a13,0x2fb,_0x246d62._0x1ce69f,0x3da)][_0x4941e6(_0x246d62._0x1c1d42,_0x246d62._0x449c84,_0x246d62._0x166ba4,0x562)]([{'type':_0x55ed26[_0x3d87c0(0x222,_0x246d62._0x1cf5fd,0x1fc,_0x246d62._0x35a36f)],'name':_0x55ed26[_0x3d87c0(-0xd0,-0x20,-0x16b,_0x246d62._0x3b27ce)],'message':_0x55ed26['YuWXp'],'validate':_0x51e0cf=>{function _0xe2dd16(_0x2a0128,_0x513092,_0x36c803,_0x1f87bb){return _0x3d87c0(_0x2a0128-_0xe739b6._0x6684f3,_0x36c803-0x2fb,_0x36c803-_0xe739b6._0x10cfd9,_0x513092);}function _0x266bad(_0x162c87,_0xf6aae0,_0x19a9dc,_0x48e3fa){return _0x3d87c0(_0x162c87-0x112,_0x19a9dc-_0x1badcc._0x3846ee,_0x19a9dc-_0x1badcc._0x2e484e,_0xf6aae0);}if(_0x55ed26[_0x266bad(0x69f,'(#SV',_0x26c858._0xa44b54,0x582)](_0x55ed26['IFQbA'],_0x55ed26[_0xe2dd16(_0x26c858._0x41d611,'n5Gs',_0x26c858._0x4cccac,0x408)])){const _0x2fc43e=_0x55ed26[_0xe2dd16(0x493,_0x26c858._0x57bd23,_0x26c858._0x3f369b,_0x26c858._0x4e30e2)](validateWorkspacePath,_0x51e0cf);if(!_0x2fc43e['valid'])return _0x2fc43e[_0xe2dd16(_0x26c858._0x2706b6,_0x26c858._0x48d6e9,0x3a2,_0x26c858._0xb6341d)]||_0x2fc43e[_0xe2dd16(_0x26c858._0x55531c,_0x26c858._0x5a5fe9,_0x26c858._0x5924df,_0x26c858._0x109a68)]||_0x55ed26[_0x266bad(_0x26c858._0x5ba54e,'U9hY',_0x26c858._0x510611,_0x26c858._0x15ae77)];return!![];}else{const _0x143aec=_0x42942f[_0x266bad(0x4e9,_0x26c858._0x3af5e2,0x5a8,0x700)+_0xe2dd16(_0x26c858._0x4d059f,_0x26c858._0x18e509,_0x26c858._0x556799,0x346)][_0xe2dd16(_0x26c858._0x13ea09,_0x26c858._0x3ebadf,_0x26c858._0x169fdc,_0x26c858._0x574dbf)+'nt']();_0x143aec&&(_0x3c7550=!![]);}}}]);_0x87e568=_0x5d749f[_0x4941e6(0x44f,0x254,'hggu',_0x246d62._0x2c176a)]();}}if(!_0x87e568){if(_0x55ed26[_0x4941e6(0x478,_0x246d62._0x19c179,'vi1o',0x55c)](_0x55ed26['wRwnC'],_0x55ed26[_0x4941e6(0x66c,0x4fe,_0x246d62._0x483cc6,0x50b)])){const _0x449943={};_0x449943['enumerable']=!![],_0x449943[_0x4941e6(_0x246d62._0x7909,_0x246d62._0xddee53,_0x246d62._0x14633c,_0x246d62._0x45c1d1)]=_0x52c02a,_0x4f1997[_0x4941e6(0x2b6,_0x246d62._0x20a025,'$LPD',_0x246d62._0x2f29f8)+_0x3d87c0(_0x246d62._0x41d45b,_0x246d62._0x59a6ef,-0xa9,_0x246d62._0x35d5f1)](_0x1953d2,_0x55ed26[_0x3d87c0(-0xa6,_0x246d62._0x32fe5b,0xfd,'oC4&')],_0x449943);}else continue;}const _0x95361e=(0x2*-0x31c+0x1f5e+0x6f*-0x3a,utils_1[_0x4941e6(_0x246d62._0x18146e,_0x246d62._0x2b7a14,_0x246d62._0x35a36f,_0x246d62._0x30f378)+_0x3d87c0(_0x246d62._0x5eab15,-_0x246d62._0x3daba8,-_0x246d62._0x221c89,'dlAy')])(_0x87e568);if(!_0x95361e[_0x3d87c0(_0x246d62._0x2cef5d,0x160,_0x246d62._0x2059e5,_0x246d62._0x4ff756)]){if(_0x55ed26[_0x4941e6(0x422,_0x246d62._0x54dbab,'uo]V',_0x246d62._0x12c783)](_0x55ed26[_0x4941e6(0x525,0x617,')HZK',_0x246d62._0x19618b)],_0x55ed26[_0x4941e6(0x35d,_0x246d62._0x44ff16,_0x246d62._0x1a67d3,0x2ed)])){console[_0x3d87c0(-0xa,_0x246d62._0x2ea5a9,0x1f3,_0x246d62._0x341ba5)](chalk_1['default'][_0x4941e6(0x614,0x49c,'iJ%q',_0x246d62._0x2d0e1b)]('\x0a✗\x20目录验证失败:'+'\x20'+_0x95361e[_0x4941e6(0x6e7,_0x246d62._0x5a5da8,_0x246d62._0x2f7477,_0x246d62._0x15c53d)]+'\x0a'));continue;}else{const _0x46b5d0={};return _0x46b5d0[_0x4941e6(_0x246d62._0x440beb,0x40d,'eV8k',0x3c6)]=![],_0x46b5d0[_0x3d87c0(_0x246d62._0x575200,0xeb,0xf0,')HZK')]=_0x55ed26[_0x4941e6(0x3a4,0x34d,_0x246d62._0x355edf,_0x246d62._0x474322)],_0x46b5d0;}}const _0x5e24f8=services_1[_0x3d87c0(_0x246d62._0x3ce77f,0x63,-0x5c,'Lj*V')+'ce'][_0x3d87c0(0x1e8,0x1c5,_0x246d62._0x2ba9c0,_0x246d62._0x341ba5)+_0x4941e6(_0x246d62._0x207c86,_0x246d62._0x4b29c6,_0x246d62._0x4d2f25,0x400)+'t'](_0x87e568);if(!_0x5e24f8[_0x3d87c0(0x216,_0x246d62._0xc02987,0x196,'p24@')]){console[_0x4941e6(_0x246d62._0x148b2c,0x27b,'2!5z',_0x246d62._0x1051f2)](chalk_1['default'][_0x3d87c0(_0x246d62._0x40ac9b,_0x246d62._0x18f88e,-0xba,'4Db5')](_0x4941e6(_0x246d62._0x4b0c1c,0x492,'bg9a',_0x246d62._0x51d3ba)+_0x4941e6(0x35d,0x46d,_0x246d62._0x5a8b89,0x430)+_0x5e24f8[_0x4941e6(_0x246d62._0x50ca05,_0x246d62._0x23c04a,_0x246d62._0x30a5a9,0x36d)]+'\x0a'));continue;}_0x55ed26[_0x4941e6(0x430,_0x246d62._0x33faff,_0x246d62._0x50c760,_0x246d62._0x1bb612)](saveWorkspaceToHistory,_0x87e568),console[_0x3d87c0(-_0x246d62._0x3edd8a,-0x18,-0x90,_0x246d62._0x1cc428)](chalk_1[_0x4941e6(0x434,0x2ea,'Np8L',_0x246d62._0xa35982)][_0x3d87c0(_0x246d62._0xc41901,0x53,_0x246d62._0x42af4e,'sErF')](_0x4941e6(_0x246d62._0x4fe375,_0x246d62._0x4a3df2,_0x246d62._0x1afaa4,_0x246d62._0x13b114)+':\x20'+_0x87e568+'\x0a'));let _0x1c38e2=![];try{if(_0x55ed26[_0x3d87c0(0x0,_0x246d62._0x5df30f,0x245,'S3%]')](_0x55ed26[_0x3d87c0(0x1f4,0xf0,_0x246d62._0x4c2c3,'%PeD')],_0x55ed26[_0x4941e6(0x167,_0x246d62._0x5d660f,_0x246d62._0xfc69af,_0x246d62._0x1f8b7f)])){if((-0x1*-0x70+-0xd4f+0x293*0x5,index_1[_0x4941e6(0x4c3,_0x246d62._0x443972,_0x246d62._0x1afaa4,0x548)+_0x4941e6(0x3ad,_0x246d62._0x19969e,'rzql',0x478)+'d'])()){if(_0x55ed26['VVBwl'](_0x4941e6(0x2a9,0x3b1,'*aV^',_0x246d62._0x4d7f69),_0x55ed26[_0x4941e6(0x2f0,0x42f,_0x246d62._0x28da2f,_0x246d62._0x3789df)])){_0x5bc0b4[_0x3d87c0(0x180,_0x246d62._0x304ac0,_0x246d62._0x1918b8,_0x246d62._0x37c956)](_0x2115d1[_0x3d87c0(_0x246d62._0x5cbab1,-0x58,-0x16,_0x246d62._0x166ba4)][_0x3d87c0(_0x246d62._0x504c7b,-0x2a,_0x246d62._0x22092f,'7DT3')](_0x55ed26['jnjJB']));const _0x2ee574=(-0x251d+0x9d0+0x1b4d,_0x405596['getSession'+_0x4941e6(0x54e,0x62e,'2!5z',_0x246d62._0x3c2205)+_0x4941e6(0x493,0x36c,'c1H$',0x446)])(_0x3d9fb5[_0x3d87c0(_0x246d62._0x4a4e50,_0x246d62._0xb6f6fb,_0x246d62._0x45d57f,_0x246d62._0x29a543)]);return _0x129d84[_0x4941e6(0x438,_0x246d62._0x1f06dd,'rzql',_0x246d62._0x3c57e1)](_0x525673[_0x4941e6(0x2b0,_0x246d62._0x1a2041,_0x246d62._0x4fdee2,0x2c4)][_0x4941e6(_0x246d62._0x30289e,0x304,'uo]V',_0x246d62._0x2256f9)](_0x3d87c0(-_0x246d62._0x22ce85,_0x246d62._0xc71f4d,0x2,_0x246d62._0x2f884f)+(0xdb*0x2d+0x91d*0x4+-0x4af3*0x1,_0x5053a6[_0x3d87c0(_0x246d62._0x2177f1,_0x246d62._0x27c043,0x17a,'dlAy')+_0x4941e6(_0x246d62._0x426c18,0x506,_0x246d62._0x3960a6,_0x246d62._0x3f52d2)])(_0x2ee574)+'\x0a')),!![];}else{const _0x589d20=(-0x1986+-0x40*-0x47+0xa*0xc7,index_1[_0x4941e6(0x3b8,_0x246d62._0x1a9395,'%PeD',_0x246d62._0x197cc6)+_0x4941e6(_0x246d62._0x36f556,_0x246d62._0x19268c,_0x246d62._0x429a36,0x3dc)])();if(_0x589d20){const _0x22ebfd=agent_repo_1[_0x3d87c0(_0x246d62._0x5e2579,0x1bb,_0x246d62._0x57d835,_0x246d62._0x4bacdf)+_0x4941e6(_0x246d62._0x1bd4c5,0x4bc,_0x246d62._0x170b36,_0x246d62._0x2c552e)][_0x4941e6(_0x246d62._0x40e5c6,_0x246d62._0x1120b8,_0x246d62._0x11286e,_0x246d62._0x4dffdd)+'nt']();if(_0x22ebfd){if(_0x55ed26[_0x4941e6(0x3e9,_0x246d62._0x87ccc8,_0x246d62._0x1d673a,_0x246d62._0xd219dc)](_0x55ed26[_0x3d87c0(_0x246d62._0x4d734e,0xc6,_0x246d62._0x12ac25,_0x246d62._0x2e19a3)],_0x55ed26[_0x3d87c0(_0x246d62._0x16023c,_0x246d62._0x14f03c,0x212,'ejH4')]))_0x1c38e2=!![];else{const _0x528ef6=(-0x74+-0x48c+0x8*0xa0,_0x17189b[_0x4941e6(0x4be,0x48a,'bg9a',_0x246d62._0x344b42)+_0x3d87c0(0x2fd,0x1a1,0x2a4,'n5Gs')])();if(_0x528ef6){const _0x3c387b=_0x51d3e3[_0x4941e6(0x604,0x456,_0x246d62._0x3461f8,_0x246d62._0x4514fd)+_0x3d87c0(_0x246d62._0xf044b1,0x224,_0x246d62._0x2ff182,_0x246d62._0x11286e)][_0x4941e6(_0x246d62._0x51ac77,0x45d,_0x246d62._0x558a57,0x3e7)+'nt']();_0x3c387b&&(_0x27cb53=!![]);}}}}}}}else return _0x55ed26[_0x3d87c0(0x223,0x1f7,0x2c6,_0x246d62._0x4516b0)];}catch(_0xa764d1){}if(_0x1c38e2){if(_0x55ed26[_0x4941e6(0x64d,0x6d4,'U9hY',0x57e)](_0x55ed26[_0x3d87c0(0xc6,0x122,_0x246d62._0x45f507,_0x246d62._0x4bacdf)],_0x55ed26[_0x4941e6(_0x246d62._0x39bfcb,0x3e0,'i8ak',0x469)]))_0x31278b[_0x3d87c0(_0x246d62._0x59b622,_0x246d62._0x3af62e,0xf3,_0x246d62._0x42a86)](_0x1dc0eb['default'][_0x3d87c0(-_0x246d62._0x1f5869,_0x246d62._0x157084,0x3e,_0x246d62._0x1536d8)](_0x5859cc[_0x3d87c0(-_0x246d62._0x16cbab,0x19,_0x246d62._0x5548e6,_0x246d62._0x32c67b)](_0x117c5d)));else{const _0x39f4cb=initSessionRepo[_0x3d87c0(-0x18b,-0x29,-_0x246d62._0x385299,'%PeD')]();_0x39f4cb&&_0x55ed26[_0x3d87c0(_0x246d62._0x3d3858,0x18a,_0x246d62._0x45664b,'S3%]')](_0x39f4cb[_0x4941e6(0x4b8,_0x246d62._0x4bbca2,'hggu',_0x246d62._0x2096bc)],_0x55ed26[_0x3d87c0(_0x246d62._0x119d62,0x1b8,_0x246d62._0x1195a5,_0x246d62._0x2ffb58)])?(configTracker[_0x3d87c0(-_0x246d62._0x1391ca,_0x246d62._0x270bf3,_0x246d62._0x3f8be8,'iJ%q')+_0x4941e6(0x3f6,0x5c3,'p24@',_0x246d62._0x857acd)](_0x39f4cb['id']),console[_0x4941e6(0x479,_0x246d62._0x150f99,'uo]V',_0x246d62._0x3cbcd1)](chalk_1['default'][_0x3d87c0(-0xe3,0x25,_0x246d62._0x1c6f1c,_0x246d62._0x1ce69f)](_0x4941e6(0x610,_0x246d62._0x121298,_0x246d62._0x832d65,0x4c7)+_0x39f4cb[_0x4941e6(0x249,_0x246d62._0xf4cc2b,_0x246d62._0x1afaa4,_0x246d62._0x1ceb36)+_0x4941e6(_0x246d62._0x27f8ed,_0x246d62._0x1ec5dc,'p24@',_0x246d62._0x4e0bb4)]+'\x0a'))):console[_0x4941e6(0x614,_0x246d62._0x3d9bba,'s&#w',0x4f0)](chalk_1[_0x4941e6(_0x246d62._0x38f15e,0x24a,_0x246d62._0x5b1728,0x362)][_0x4941e6(0x4f4,0x50c,_0x246d62._0x46d87b,0x545)](_0x3d87c0(_0x246d62._0x32d6d0,0x33,_0x246d62._0x35a453,'$LPD')));const _0x1bc191=await(0x270c+-0x13a*0x11+-0x112*0x11,main_menu_1['showMainMe'+'nu'])();if(!_0x1bc191){if(_0x55ed26[_0x3d87c0(_0x246d62._0x2bb395,0x1c7,0x1c1,_0x246d62._0x2432ce)](_0x55ed26[_0x4941e6(_0x246d62._0x53c9e7,0x585,_0x246d62._0x4af006,0x450)],'ZbhVU')){const _0x26f32e=_0x55ed26[_0x4941e6(0x3d7,0x33c,'i8ak',0x4a9)](_0x38ddb8,_0x466833[_0x2cb6b8])['valid'],_0x50ffca=_0x26f32e?'':_0x13b68c[_0x4941e6(_0x246d62._0x452281,_0x246d62._0xd6f9f1,_0x246d62._0x34a24b,0x543)][_0x4941e6(_0x246d62._0x109447,0x361,_0x246d62._0x303b00,_0x246d62._0x5da58b)](_0x55ed26[_0x4941e6(0x5c4,0x57e,_0x246d62._0x38d041,_0x246d62._0x5ab6ad)]);_0x3d82db[_0x3d87c0(-_0x246d62._0x4dbc1b,-0x47,-0xa8,'eV8k')](_0xc7b25e['default']['dim']('\x20\x20'+_0x55ed26[_0x3d87c0(_0x246d62._0x5cbab1,-_0x246d62._0x591c06,-0xd9,_0x246d62._0x4af006)](_0x5c7aa0,-0x14fc+-0x1*-0xaa1+0xa5c)+'.\x20'+_0x48febb[_0x27ed0e]+_0x50ffca));}else{console[_0x4941e6(0x38d,_0x246d62._0x267972,'%PeD',_0x246d62._0xa4990c)]('');continue;}}break;}}const _0xa8ae6d={};_0xa8ae6d[_0x3d87c0(0x2ab,0x18e,0x27,_0x246d62._0x525c59)]=_0x3d87c0(-_0x246d62._0x5ac490,_0x246d62._0x5c6474,-_0x246d62._0x59c6ee,_0x246d62._0x4740bd),_0xa8ae6d[_0x4941e6(0x43f,0x4bc,_0x246d62._0x14e57f,0x549)]=_0x55ed26[_0x4941e6(_0x246d62._0x32d0f7,_0x246d62._0x3f4d32,_0x246d62._0x56dc75,_0x246d62._0xdb4a6f)],_0xa8ae6d[_0x4941e6(_0x246d62._0x4d42f2,0x4d3,_0x246d62._0x32c67b,0x557)]=_0x55ed26['xydzf'],_0xa8ae6d[_0x4941e6(0x5e9,0x5a9,_0x246d62._0x3e0cc2,_0x246d62._0x3f866c)]=!![];const {shouldInit:_0x3ced1b}=await inquirer_1[_0x4941e6(_0x246d62._0x3cf8d3,_0x246d62._0x539555,_0x246d62._0x38d041,_0x246d62._0x1b6e5c)][_0x3d87c0(-0x1cc,-0x6c,-_0x246d62._0xa31e6c,'*66P')]([_0xa8ae6d]);if(_0x3ced1b){const _0x329838={};_0x329838['type']=_0x55ed26[_0x3d87c0(_0x246d62._0x932399,_0x246d62._0x449c77,_0x246d62._0x3b191e,'UdU#')],_0x329838[_0x3d87c0(0x26c,0x252,0x104,_0x246d62._0x3960a6)]=_0x55ed26[_0x3d87c0(0x34f,0x20c,_0x246d62._0x37398d,_0x246d62._0x230c31)],_0x329838[_0x3d87c0(0x125,0x1e7,0x246,'KKLF')]=_0x55ed26['ReUPm'],_0x329838[_0x4941e6(_0x246d62._0x2a7d3a,0x2e7,_0x246d62._0xb0703f,0x2c4)]=_0x55ed26[_0x3d87c0(_0x246d62._0xe42192,0x1a8,0x17b,_0x246d62._0x5abcc2)];const {assistantName:_0x5a81f0}=await inquirer_1[_0x4941e6(_0x246d62._0x12e7b1,0x4bd,_0x246d62._0x24583f,_0x246d62._0x483f28)][_0x4941e6(0x453,0x2ef,_0x246d62._0x258a49,0x360)]([_0x329838]);console['log'](chalk_1[_0x4941e6(0x56e,_0x246d62._0x2c9de3,_0x246d62._0x192d3e,0x4cf)][_0x3d87c0(_0x246d62._0x5d6688,0x215,0x145,_0x246d62._0x4d5b16)](_0x55ed26[_0x3d87c0(0xdb,_0x246d62._0x5cd195,_0x246d62._0x14429f,'s&#w')]));const _0x32b189=await services_1[_0x3d87c0(-0x62,0x82,_0x246d62._0x412200,_0x246d62._0x1b6389)+'ce'][_0x3d87c0(0x20c,_0x246d62._0x1d0516,_0x246d62._0x552985,_0x246d62._0x120a3a)](_0x5a81f0,_0x87e568);if(_0x32b189[_0x3d87c0(_0x246d62._0x5c6474,0xe7,0x1ac,_0x246d62._0x14e57f)]){if(_0x55ed26[_0x4941e6(_0x246d62._0x509b29,0x636,_0x246d62._0x32c67b,0x511)](_0x55ed26[_0x3d87c0(0x135,_0x246d62._0x3060b3,0x148,_0x246d62._0xe0afaa)],_0x55ed26[_0x3d87c0(_0x246d62._0x4d03a2,_0x246d62._0x5f8e9f,-_0x246d62._0x52df3f,'(#SV')]))console['log'](chalk_1[_0x3d87c0(_0x246d62._0x48524c,_0x246d62._0x1122b9,-_0x246d62._0x551a6e,'i4iK')][_0x4941e6(0x43a,_0x246d62._0x33fc98,_0x246d62._0x32c67b,_0x246d62._0x35c355)](_0x55ed26[_0x3d87c0(0xb5,0x16f,0x213,_0x246d62._0x138225)])),console[_0x4941e6(_0x246d62._0x304829,_0x246d62._0x5d9601,'0AND',0x30d)](_0x3d87c0(0x26d,_0x246d62._0x3cbee5,0x24c,_0x246d62._0x4e359b)+_0x87e568),console[_0x3d87c0(_0x246d62._0x51beb7,_0x246d62._0x1c1809,0x228,'dLFR')](_0x3d87c0(_0x246d62._0x556621,0x109,-_0x246d62._0x515549,'oC4&')+_0x32b189[_0x4941e6(_0x246d62._0x110579,0x3d6,_0x246d62._0x3f41f5,_0x246d62._0x11e08e)+'id']),console[_0x3d87c0(-_0x246d62._0x5c6474,-_0x246d62._0x50d881,-_0x246d62._0x560b76,'0AND')](_0x4941e6(_0x246d62._0x57fc52,_0x246d62._0x1a2d10,'n5Gs',_0x246d62._0x318a42)+_0x5a81f0+'\x0a');else{const _0x4efa63={_0xd4ead0:0x1f3,_0x2531fb:'p24@',_0x333e2d:0x4b4,_0x35d50a:0x137,_0x2da06d:0x234,_0x16fb4a:0x30d,_0x28e172:0x337,_0x534394:'iuYM',_0x464988:0x132};return _0x5a81bc=_0x262330[_0x4941e6(0x428,_0x246d62._0x41ca16,'i4iK',_0x246d62._0x57772c)+_0x3d87c0(_0x246d62._0x592338,0x64,-_0x246d62._0x54a0a3,_0x246d62._0x33abbb)]||function(_0x46349d){const _0x2573a4={_0x407a53:0x5c,_0x1d9df9:0x1cb,_0x540333:0x1f6};function _0x557fd8(_0x43a3a1,_0x32600,_0xb5a489,_0x5ed29c){return _0x3d87c0(_0x43a3a1-0x1b0,_0x43a3a1-0x121,_0xb5a489-0x1e2,_0x32600);}function _0x3504d3(_0x18011d,_0x4e2e51,_0x590dcc,_0x46978f){return _0x4941e6(_0x18011d-_0x2573a4._0x407a53,_0x4e2e51-_0x2573a4._0x1d9df9,_0x46978f,_0x590dcc- -_0x2573a4._0x540333);}var _0x22109c=[];for(var _0x2179d3 in _0x46349d)if(_0x2d39ce[_0x3504d3(0x1a8,0xb4,_0x4efa63._0xd4ead0,'*66P')][_0x557fd8(0x361,_0x4efa63._0x2531fb,_0x4efa63._0x333e2d,0x305)+_0x3504d3(0x1be,0x28,_0x4efa63._0x35d50a,'KKLF')][_0x3504d3(_0x4efa63._0x2da06d,_0x4efa63._0x16fb4a,_0x4efa63._0x28e172,_0x4efa63._0x534394)](_0x46349d,_0x2179d3))_0x22109c[_0x22109c[_0x3504d3(0x19e,_0x4efa63._0x464988,0x299,'U(wp')]]=_0x2179d3;return _0x22109c;},_0x55ed26[_0x4941e6(_0x246d62._0x38c67c,_0x246d62._0x3cf8d3,'vi1o',_0x246d62._0x448881)](_0xb37d9f,_0xfead7f);}}else{console[_0x4941e6(_0x246d62._0x1c581b,_0x246d62._0x231f06,_0x246d62._0x5c5a24,0x3f2)](chalk_1[_0x3d87c0(_0x246d62._0x3c5f09,_0x246d62._0x58b0b0,0x224,'UdU#')][_0x3d87c0(_0x246d62._0x47fb61,-0x42,-0x1f,'Fp%T')](_0x55ed26['TblgZ'])),console[_0x3d87c0(_0x246d62._0x230d46,_0x246d62._0x211fe5,0x13b,_0x246d62._0x397742)](chalk_1[_0x4941e6(_0x246d62._0x2227d8,0x4cb,'ejH4',_0x246d62._0x449c84)][_0x4941e6(0x46a,0x6cc,_0x246d62._0x2be75c,_0x246d62._0x54c2f4)](_0x4941e6(_0x246d62._0x4a44fa,_0x246d62._0x4dfa75,_0x246d62._0x23e9bd,0x33c)+_0x32b189[_0x3d87c0(0x17e,0x1da,_0x246d62._0x1edfd8,_0x246d62._0x43de0c)]+'\x0a'));continue;}}else{if(_0x55ed26[_0x3d87c0(0x1ca,_0x246d62._0x1757e9,0x237,_0x246d62._0xbd33ad)](_0x55ed26[_0x3d87c0(0x21,_0x246d62._0x2e490f,0x2c4,'@Ijh')],_0x4941e6(_0x246d62._0x439b61,0x40f,_0x246d62._0x2ffb58,_0x246d62._0x2608d7)))return _0x332816[_0x1b88e1];else{console[_0x3d87c0(_0x246d62._0x399973,0x14f,_0x246d62._0x836259,'%PeD')](chalk_1[_0x4941e6(0x523,_0x246d62._0x564291,_0x246d62._0x1ee030,0x55e)]['dim'](_0x55ed26[_0x4941e6(0x68a,_0x246d62._0x5a58d5,_0x246d62._0x5e2786,_0x246d62._0xfd9da0)]));return;}}}const _0x212c9e=await(-0x251e*-0x1+0x8*-0x103+-0x1d06,main_menu_1[_0x3d87c0(_0x246d62._0x76e50b,0x258,_0x246d62._0x5cba09,_0x246d62._0x4d0577)+'nu'])();if(!_0x212c9e){if(_0x55ed26['YiwUk'](_0x55ed26[_0x3d87c0(_0x246d62._0x268f95,-_0x246d62._0x49d615,0x31,_0x246d62._0x26261c)],_0x55ed26[_0x3d87c0(-_0x246d62._0x5592de,-_0x246d62._0x5a3de6,-_0x246d62._0x3aed90,_0x246d62._0x2f7952)])){const _0x50cb22={};return _0x50cb22[_0x3d87c0(-_0x246d62._0x4bebf6,-_0x246d62._0x44376a,_0x246d62._0x554009,_0x246d62._0x42a86)]=_0x2bc697,_0x332e26&&_0x55f946[_0x4941e6(0x548,_0x246d62._0x295b62,'sErF',0x56d)]?_0x5e1ea6:_0x50cb22;}else{console[_0x4941e6(0x18d,0x255,'*aV^',_0x246d62._0x3921f8)]('');continue;}}break;}}function _0x4107f9(_0x413c31,_0x1eecc1,_0x37caca,_0x2ea8fe){const _0x104997={_0x155ea4:0xd0};return _0x48b2(_0x1eecc1-_0x104997._0x155ea4,_0x413c31);}exports[_0x292e55(0x3bc,'i4iK',0x45b,0x42a)]={'printDivider':(_0xf41c30='─',_0xdaec95=-0x1038+-0x1*0x36a+0x13d4)=>{const _0x2cf432={_0x46f620:0x325,_0x30a494:0x365,_0x3d35dc:'5#n^',_0x2efab8:0x41f,_0xc833cb:0x220,_0x377d51:'s&#w',_0x3d541e:0x22f,_0x30ae09:0x10a,_0x7d7a04:0x21,_0x433491:0x3ac,_0x1df879:'tNhW',_0x2256cf:0x2ef},_0x4a828d={_0x1b2524:0x11f};function _0x415b64(_0x20deee,_0x1e0d0d,_0x27f293,_0x1edbae){return _0x4107f9(_0x27f293,_0x1e0d0d-0x64,_0x27f293-_0x4a828d._0x1b2524,_0x1edbae-0xa5);}function _0x3733bc(_0x3a3246,_0x5d9f7d,_0x220c4f,_0x55300a){return _0x4107f9(_0x220c4f,_0x5d9f7d- -0x399,_0x220c4f-0x1b3,_0x55300a-0x123);}console[_0x415b64(_0x2cf432._0x46f620,_0x2cf432._0x30a494,_0x2cf432._0x3d35dc,_0x2cf432._0x2efab8)](chalk_1[_0x415b64(_0x2cf432._0xc833cb,0x35b,_0x2cf432._0x377d51,_0x2cf432._0x3d541e)][_0x3733bc(0x34,_0x2cf432._0x30ae09,'7DT3',-_0x2cf432._0x7d7a04)](_0xf41c30[_0x415b64(0x3c8,_0x2cf432._0x433491,_0x2cf432._0x1df879,_0x2cf432._0x2256cf)](_0xdaec95)));},'printTitle':_0x3d1630=>{const _0x226b47={_0x3af2ea:'tNhW',_0x6c65f7:0x14c,_0x49a68a:0x190,_0x60cb7f:0x159,_0x9a3c99:0xea,_0x57e8ec:'Absd',_0xd25922:0x223,_0x408f31:'Fp%T',_0x5600df:0x15a,_0xf47488:0x64},_0x12c2c8={_0x2d9004:0x61c},_0x532eab={_0x56c0dc:0x270,_0x15783d:0xbd};function _0x4dc6fd(_0x179255,_0xa9852,_0x254c5d,_0x1fcc3f){return _0x4107f9(_0x179255,_0x1fcc3f- -_0x532eab._0x56c0dc,_0x254c5d-0xbd,_0x1fcc3f-_0x532eab._0x15783d);}console[_0x55e7a2(0x89,0x167,_0x226b47._0x3af2ea,-0xcd)](chalk_1[_0x55e7a2(0x18,0x54,'EIp!',-_0x226b47._0x6c65f7)][_0x4dc6fd('4Db5',_0x226b47._0x49a68a,_0x226b47._0x60cb7f,_0x226b47._0x9a3c99)][_0x4dc6fd(_0x226b47._0x57e8ec,0x210,_0x226b47._0xd25922,0x10a)]('\x0a'+_0x3d1630));function _0x55e7a2(_0x5e71f2,_0x1c9f27,_0x59ef34,_0x370104){return _0x292e55(_0x5e71f2-0x1ce,_0x59ef34,_0x59ef34-0x7f,_0x5e71f2- -_0x12c2c8._0x2d9004);}exports[_0x4dc6fd(_0x226b47._0x408f31,0x5d,_0x226b47._0x5600df,_0x226b47._0xf47488)]['printDivid'+'er']();},'printSuccess':_0xc5198d=>{const _0x3763b4={_0x5c6319:0x5ea,_0x3fd280:0x531,_0x2a7f51:0x225,_0x4a2573:')HZK',_0x230ebf:0x33f,_0x360d25:0x444,_0x7bf5ea:0x64c,_0x4ca762:'!4cD',_0x38cb00:0x500},_0x100d10={_0xca8f6d:0xf0},_0x5c38c6={_0x5249c7:0x4b};function _0x55f81b(_0x3de106,_0x28db52,_0x4992e8,_0x1c7af5){return _0x292e55(_0x3de106-0x84,_0x4992e8,_0x4992e8-_0x5c38c6._0x5249c7,_0x1c7af5- -0x152);}function _0xa9d3bc(_0x472d59,_0x46f3ef,_0x3dc5e0,_0xfb274d){return _0x292e55(_0x472d59-0x55,_0x472d59,_0x3dc5e0-_0x100d10._0xca8f6d,_0x46f3ef- -0x4ec);}console[_0x55f81b(_0x3763b4._0x5c6319,0x564,'4Db5',_0x3763b4._0x3fd280)](chalk_1[_0x55f81b(_0x3763b4._0x2a7f51,0x3f5,_0x3763b4._0x4a2573,_0x3763b4._0x230ebf)][_0x55f81b(_0x3763b4._0x360d25,_0x3763b4._0x7bf5ea,_0x3763b4._0x4ca762,_0x3763b4._0x38cb00)]('✓\x20'+_0xc5198d));},'printError':_0x4f0731=>{const _0x208811={_0x5651ff:0x467,_0x220ef1:'p24@',_0x364195:0x344,_0x3b1cb2:0x433,_0x1933db:0x3bd},_0x2a4417={_0x26c6a0:0x1c3};function _0x54c3db(_0x410ca7,_0x33bea0,_0x497db0,_0x1664b5){return _0x4107f9(_0x497db0,_0x1664b5- -0x5b,_0x497db0-0xec,_0x1664b5-0x177);}function _0x4d20de(_0x2cd1cf,_0x796f75,_0x29e352,_0x32022c){return _0x292e55(_0x2cd1cf-_0x2a4417._0x26c6a0,_0x29e352,_0x29e352-0x16,_0x796f75- -0x563);}console[_0x54c3db(0x21a,_0x208811._0x5651ff,_0x208811._0x220ef1,0x2fe)](chalk_1[_0x54c3db(0x53d,_0x208811._0x364195,'dlAy',_0x208811._0x3b1cb2)][_0x54c3db(_0x208811._0x1933db,0x49a,'dLFR',0x332)]('✗\x20'+_0x4f0731));},'printWarning':_0x544acc=>{const _0x36c249={_0x181f07:0x27f,_0xff0ec8:0x1a3,_0x13a8c7:0x27e,_0xc8bcb1:0x152,_0x18ca89:0xd4,_0x2f8f54:0x397,_0x1297a6:'#y9o',_0x2b85d5:0x420,_0x7e960e:0x276},_0x16984f={_0x35f113:0x27e},_0x42f3a5={_0x1ccd31:0x13f};function _0x21d6ea(_0x14c5b7,_0x3d18ea,_0x25c7df,_0x48c761){return _0x292e55(_0x14c5b7-0x5b,_0x48c761,_0x25c7df-_0x42f3a5._0x1ccd31,_0x14c5b7- -0x3b0);}function _0x190ec1(_0x26f941,_0x557951,_0x21d511,_0x2c75d6){return _0x292e55(_0x26f941-0x1e2,_0x557951,_0x21d511-0x10a,_0x26f941- -_0x16984f._0x35f113);}console[_0x21d6ea(_0x36c249._0x181f07,_0x36c249._0xff0ec8,_0x36c249._0x13a8c7,'Fp%T')](chalk_1[_0x190ec1(0x1b8,'(#SV',_0x36c249._0xc8bcb1,_0x36c249._0x18ca89)][_0x190ec1(_0x36c249._0x2f8f54,_0x36c249._0x1297a6,_0x36c249._0x2b85d5,_0x36c249._0x7e960e)]('⚠\x20'+_0x544acc));},'printInfo':(_0x4255f3,_0x2657a1)=>{const _0x5d1185={_0x39a6a3:0xcf,_0x5696f2:0x1d9,_0x18ee63:0x104,_0x36adc6:'sErF'},_0x57c220={_0x33cfc7:0x117,_0x47b044:0xd8},_0x1a292e={_0x2628d4:0x18,_0x11b59d:0x593};function _0x39df39(_0x15158d,_0x2ecf92,_0x4106cc,_0x1e428c){return _0x292e55(_0x15158d-0x1ed,_0x4106cc,_0x4106cc-_0x1a292e._0x2628d4,_0x1e428c- -_0x1a292e._0x11b59d);}function _0x56bc1b(_0x5766bc,_0x4a58a3,_0xff0592,_0x58c072){return _0x292e55(_0x5766bc-_0x57c220._0x33cfc7,_0xff0592,_0xff0592-0x1a7,_0x5766bc-_0x57c220._0x47b044);}console[_0x39df39(-_0x5d1185._0x39a6a3,-0xb1,'7DT3',-0x12)]('\x20\x20'+chalk_1[_0x39df39(_0x5d1185._0x5696f2,-0x1c,'p24@',_0x5d1185._0x18ee63)][_0x56bc1b(0x6b8,0x5d4,_0x5d1185._0x36adc6,0x7c2)](_0x4255f3)+':\x20'+_0x2657a1);},'waitForKey':async(_0xbd16b6=_0x4107f9('@Ijh',0x2f2,0x378,0x2f9))=>{const _0x13d6f2={_0x34ccb2:0x3e1,_0x168bab:0x385,_0x192f0f:0x43e,_0x31c7bb:0x437,_0x3b26b6:')HZK',_0x3874fe:0x424,_0xd0ab22:0x23a,_0x5bb5aa:0x3ae,_0x4c6614:'(#SV',_0x892aa9:0x50f,_0x3a3d5e:0x3da,_0x1a7ef9:0x406,_0x33f55e:0x1ec,_0x548079:'*aV^',_0xbe3999:0x19a},_0x136047={_0x3f4c88:0xd5},_0x321070={_0x21f2c8:0x1a3,_0x1285b1:0x93},_0x40dfcd={};function _0x46e599(_0x511ef7,_0x423a28,_0x1e10ea,_0x46d161){return _0x292e55(_0x511ef7-_0x321070._0x21f2c8,_0x46d161,_0x1e10ea-_0x321070._0x1285b1,_0x1e10ea- -0x18d);}_0x40dfcd[_0x46e599(0x522,_0x13d6f2._0x34ccb2,0x498,'*aV^')]=_0x46e599(_0x13d6f2._0x168bab,0x58b,_0x13d6f2._0x192f0f,'Np8L'),_0x40dfcd[_0x5a084a(0x51e,_0x13d6f2._0x31c7bb,_0x13d6f2._0x3b26b6,_0x13d6f2._0x3874fe)]=_0x46e599(0x1ea,_0x13d6f2._0xd0ab22,0x2c4,'Jc6R');function _0x5a084a(_0x4a4f5c,_0x1da330,_0x4f0085,_0x4a018e){return _0x4107f9(_0x4f0085,_0x1da330- -0x1d,_0x4f0085-0x19,_0x4a018e-_0x136047._0x3f4c88);}const _0x390f9a=_0x40dfcd;await inquirer_1[_0x46e599(0x3be,0x1d4,0x328,'Absd')][_0x5a084a(0x353,0x339,'!4cD',_0x13d6f2._0x5bb5aa)]([{'type':_0x390f9a[_0x5a084a(0x383,0x413,_0x13d6f2._0x4c6614,_0x13d6f2._0x892aa9)],'name':_0x390f9a[_0x46e599(_0x13d6f2._0x3a3d5e,0x4ac,_0x13d6f2._0x1a7ef9,'#5zM')],'message':chalk_1[_0x5a084a(0x147,_0x13d6f2._0x33f55e,_0x13d6f2._0x548079,_0x13d6f2._0xbe3999)]['dim'](_0xbd16b6),'default':!![]}]);}};
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* TUI Main Entry
|
|
4
|
+
*
|
|
5
|
+
* Provides interactive terminal interface
|
|
6
|
+
*
|
|
7
|
+
* v1.2.1: 添加授权验证
|
|
8
|
+
*/
|
|
9
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
12
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
13
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
14
|
+
}
|
|
15
|
+
Object.defineProperty(o, k2, desc);
|
|
16
|
+
}) : (function(o, m, k, k2) {
|
|
17
|
+
if (k2 === undefined) k2 = k;
|
|
18
|
+
o[k2] = m[k];
|
|
19
|
+
}));
|
|
20
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
21
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
22
|
+
}) : function(o, v) {
|
|
23
|
+
o["default"] = v;
|
|
24
|
+
});
|
|
25
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
26
|
+
var ownKeys = function(o) {
|
|
27
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
28
|
+
var ar = [];
|
|
29
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
30
|
+
return ar;
|
|
31
|
+
};
|
|
32
|
+
return ownKeys(o);
|
|
33
|
+
};
|
|
34
|
+
return function (mod) {
|
|
35
|
+
if (mod && mod.__esModule) return mod;
|
|
36
|
+
var result = {};
|
|
37
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
38
|
+
__setModuleDefault(result, mod);
|
|
39
|
+
return result;
|
|
40
|
+
};
|
|
41
|
+
})();
|
|
42
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
43
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
44
|
+
};
|
|
45
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46
|
+
exports.tuiUtils = void 0;
|
|
47
|
+
exports.startTUI = startTUI;
|
|
48
|
+
const inquirer_1 = __importDefault(require("inquirer"));
|
|
49
|
+
const chalk_1 = __importDefault(require("chalk"));
|
|
50
|
+
const os = __importStar(require("os"));
|
|
51
|
+
const path = __importStar(require("path"));
|
|
52
|
+
const fs = __importStar(require("fs"));
|
|
53
|
+
const main_menu_1 = require("./menus/main.menu");
|
|
54
|
+
const services_1 = require("../../core/services");
|
|
55
|
+
const utils_1 = require("../../core/utils");
|
|
56
|
+
const initSessionRepo = __importStar(require("../../db/repositories/init-session.repo"));
|
|
57
|
+
const configTracker = __importStar(require("../../core/services/config-tracker.service"));
|
|
58
|
+
const agent_repo_1 = require("../../db/repositories/agent.repo");
|
|
59
|
+
const index_1 = require("../../db/index");
|
|
60
|
+
const storage_1 = require("../../core/auth/storage");
|
|
61
|
+
const middleware_1 = require("../../core/auth/middleware");
|
|
62
|
+
/**
|
|
63
|
+
* Get history file path
|
|
64
|
+
*
|
|
65
|
+
* v1.4.9: 从 .team-manager 迁移到 .opclawtm
|
|
66
|
+
*/
|
|
67
|
+
function getHistoryFilePath() {
|
|
68
|
+
const oldHistoryDir = path.join(os.homedir(), '.team-manager');
|
|
69
|
+
const oldHistoryFile = path.join(oldHistoryDir, 'workspace-history.json');
|
|
70
|
+
const historyDir = path.join(os.homedir(), '.opclawtm');
|
|
71
|
+
const historyFile = path.join(historyDir, 'workspace-history.json');
|
|
72
|
+
// 迁移:如果旧历史文件存在且新文件不存在
|
|
73
|
+
if (fs.existsSync(oldHistoryFile) && !fs.existsSync(historyFile)) {
|
|
74
|
+
// 创建新目录
|
|
75
|
+
if (!fs.existsSync(historyDir)) {
|
|
76
|
+
fs.mkdirSync(historyDir, { recursive: true });
|
|
77
|
+
}
|
|
78
|
+
// 复制历史文件到新位置
|
|
79
|
+
try {
|
|
80
|
+
fs.copyFileSync(oldHistoryFile, historyFile);
|
|
81
|
+
// 可选:删除旧文件
|
|
82
|
+
// fs.unlinkSync(oldHistoryFile);
|
|
83
|
+
}
|
|
84
|
+
catch {
|
|
85
|
+
// 忽略迁移错误
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
// 确保新目录存在
|
|
89
|
+
if (!fs.existsSync(historyDir)) {
|
|
90
|
+
fs.mkdirSync(historyDir, { recursive: true });
|
|
91
|
+
}
|
|
92
|
+
return historyFile;
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Read workspace history
|
|
96
|
+
*/
|
|
97
|
+
function readWorkspaceHistory() {
|
|
98
|
+
const historyFile = getHistoryFilePath();
|
|
99
|
+
if (!fs.existsSync(historyFile)) {
|
|
100
|
+
return [];
|
|
101
|
+
}
|
|
102
|
+
try {
|
|
103
|
+
const content = fs.readFileSync(historyFile, 'utf-8');
|
|
104
|
+
const data = JSON.parse(content);
|
|
105
|
+
return data.workspaces || [];
|
|
106
|
+
}
|
|
107
|
+
catch {
|
|
108
|
+
return [];
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Save workspace to history
|
|
113
|
+
*/
|
|
114
|
+
function saveWorkspaceToHistory(workspacePath) {
|
|
115
|
+
const historyFile = getHistoryFilePath();
|
|
116
|
+
let history = readWorkspaceHistory();
|
|
117
|
+
// Remove duplicates
|
|
118
|
+
history = history.filter(p => p !== workspacePath);
|
|
119
|
+
// Add to front
|
|
120
|
+
history.unshift(workspacePath);
|
|
121
|
+
// Keep max 10
|
|
122
|
+
history = history.slice(0, 10);
|
|
123
|
+
try {
|
|
124
|
+
fs.writeFileSync(historyFile, JSON.stringify({ workspaces: history }, null, 2), 'utf-8');
|
|
125
|
+
}
|
|
126
|
+
catch {
|
|
127
|
+
// Ignore errors
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Validate workspace path
|
|
132
|
+
*/
|
|
133
|
+
function validateWorkspacePath(inputPath) {
|
|
134
|
+
if (!inputPath || !inputPath.trim()) {
|
|
135
|
+
return { valid: false, error: '请输入路径' };
|
|
136
|
+
}
|
|
137
|
+
const trimmed = inputPath.trim();
|
|
138
|
+
if (!fs.existsSync(trimmed)) {
|
|
139
|
+
return { valid: false, error: '路径不存在', hint: `请确认路径: ${trimmed}` };
|
|
140
|
+
}
|
|
141
|
+
const stat = fs.statSync(trimmed);
|
|
142
|
+
if (!stat.isDirectory()) {
|
|
143
|
+
return { valid: false, error: '路径不是目录' };
|
|
144
|
+
}
|
|
145
|
+
const openclawJsonPath = path.join(trimmed, 'openclaw.json');
|
|
146
|
+
if (!fs.existsSync(openclawJsonPath)) {
|
|
147
|
+
return {
|
|
148
|
+
valid: false,
|
|
149
|
+
error: '目录下没有 openclaw.json',
|
|
150
|
+
hint: '请输入 .openclaw 目录路径(包含 openclaw.json 的目录)'
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
return { valid: true };
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* Print startup banner
|
|
157
|
+
*/
|
|
158
|
+
function printBanner() {
|
|
159
|
+
console.log(chalk_1.default.bold.cyan('\n🤖 OpenClaw Team Manager\n'));
|
|
160
|
+
console.log(chalk_1.default.dim('问题反馈: 抖音 39797966817\n'));
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* 授权验证流程
|
|
164
|
+
*
|
|
165
|
+
* @returns true 验证通过,false 用户选择退出
|
|
166
|
+
*/
|
|
167
|
+
async function ensureLicenseValid() {
|
|
168
|
+
// 检查本地授权状态
|
|
169
|
+
const session = (0, storage_1.readSession)();
|
|
170
|
+
if (session && (0, storage_1.isSessionValid)(session)) {
|
|
171
|
+
// 授权有效
|
|
172
|
+
const remaining = (0, storage_1.getSessionRemainingSeconds)(session);
|
|
173
|
+
console.log(chalk_1.default.green(`✓ 授权有效,剩余时间: ${(0, storage_1.formatRemainingTime)(remaining)}\n`));
|
|
174
|
+
return true;
|
|
175
|
+
}
|
|
176
|
+
// 授权无效或过期
|
|
177
|
+
console.log(chalk_1.default.yellow('⚠️ 需要授权验证\n'));
|
|
178
|
+
console.log(chalk_1.default.dim('请访问以下地址购买或获取授权Key:'));
|
|
179
|
+
console.log(chalk_1.default.cyan(' https://opclawtm.com/pricing\n'));
|
|
180
|
+
// 让用户输入授权码
|
|
181
|
+
while (true) {
|
|
182
|
+
const { licenseKey } = await inquirer_1.default.prompt([
|
|
183
|
+
{
|
|
184
|
+
type: 'input',
|
|
185
|
+
name: 'licenseKey',
|
|
186
|
+
message: '请输入授权Key(输入 q 退出):',
|
|
187
|
+
validate: (input) => {
|
|
188
|
+
const trimmed = input.trim();
|
|
189
|
+
if (!trimmed) {
|
|
190
|
+
return '请输入授权Key';
|
|
191
|
+
}
|
|
192
|
+
if (trimmed.toLowerCase() === 'q') {
|
|
193
|
+
return true; // 允许退出
|
|
194
|
+
}
|
|
195
|
+
// 支持两种格式:
|
|
196
|
+
// 1. 正式授权 Key: TM-XXXX-XXXX-XXXX-XXXX
|
|
197
|
+
// 2. 临时 Key: TM-TEMP-XXXX-XXXX
|
|
198
|
+
const formalPattern = /^TM-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}$/i;
|
|
199
|
+
const tempPattern = /^TM-TEMP-[A-Z0-9]{4}-[A-Z0-9]{4}$/i;
|
|
200
|
+
if (!formalPattern.test(trimmed) && !tempPattern.test(trimmed)) {
|
|
201
|
+
return '授权Key格式无效\n 正式授权: TM-XXXX-XXXX-XXXX-XXXX\n 临时Key: TM-TEMP-XXXX-XXXX';
|
|
202
|
+
}
|
|
203
|
+
return true;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
]);
|
|
207
|
+
const key = licenseKey.trim();
|
|
208
|
+
// 用户选择退出
|
|
209
|
+
if (key.toLowerCase() === 'q') {
|
|
210
|
+
console.log(chalk_1.default.dim('\n再见!\n'));
|
|
211
|
+
return false;
|
|
212
|
+
}
|
|
213
|
+
// 验证授权
|
|
214
|
+
console.log(chalk_1.default.dim('\n正在验证授权...'));
|
|
215
|
+
const result = await (0, middleware_1.verifyLicenseOnline)(key.toUpperCase());
|
|
216
|
+
if (result.success && result.session) {
|
|
217
|
+
console.log(chalk_1.default.green('\n✓ 授权验证成功!\n'));
|
|
218
|
+
const remaining = (0, storage_1.getSessionRemainingSeconds)(result.session);
|
|
219
|
+
console.log(chalk_1.default.dim(` 剩余时间: ${(0, storage_1.formatRemainingTime)(remaining)}\n`));
|
|
220
|
+
return true;
|
|
221
|
+
}
|
|
222
|
+
else {
|
|
223
|
+
console.log(chalk_1.default.red(`\n✗ 验证失败: ${result.error?.message || '未知错误'}\n`));
|
|
224
|
+
const { retry } = await inquirer_1.default.prompt([
|
|
225
|
+
{
|
|
226
|
+
type: 'confirm',
|
|
227
|
+
name: 'retry',
|
|
228
|
+
message: '是否重试?',
|
|
229
|
+
default: true
|
|
230
|
+
}
|
|
231
|
+
]);
|
|
232
|
+
if (!retry) {
|
|
233
|
+
console.log(chalk_1.default.dim('\n再见!\n'));
|
|
234
|
+
return false;
|
|
235
|
+
}
|
|
236
|
+
console.log('');
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* Start TUI interface
|
|
242
|
+
*/
|
|
243
|
+
async function startTUI() {
|
|
244
|
+
printBanner();
|
|
245
|
+
// ========== 授权验证 ==========
|
|
246
|
+
const licenseValid = await ensureLicenseValid();
|
|
247
|
+
if (!licenseValid) {
|
|
248
|
+
return; // 用户选择退出
|
|
249
|
+
}
|
|
250
|
+
// ========== 授权验证结束 ==========
|
|
251
|
+
// Read history
|
|
252
|
+
const history = readWorkspaceHistory();
|
|
253
|
+
// Show history if available
|
|
254
|
+
if (history.length > 0) {
|
|
255
|
+
console.log(chalk_1.default.dim('最近使用的工作目录:'));
|
|
256
|
+
for (let i = 0; i < Math.min(history.length, 5); i++) {
|
|
257
|
+
const isValid = validateWorkspacePath(history[i]).valid;
|
|
258
|
+
const status = isValid ? '' : chalk_1.default.yellow(' (路径无效)');
|
|
259
|
+
console.log(chalk_1.default.dim(` ${i + 1}. ${history[i]}${status}`));
|
|
260
|
+
}
|
|
261
|
+
console.log('');
|
|
262
|
+
}
|
|
263
|
+
// Main loop
|
|
264
|
+
while (true) {
|
|
265
|
+
const sessionId = configTracker.getCurrentSession();
|
|
266
|
+
if (!sessionId) {
|
|
267
|
+
console.log(chalk_1.default.yellow('请选择或输入 OpenClaw 工作目录'));
|
|
268
|
+
console.log(chalk_1.default.dim('(即 .openclaw 目录路径,包含 openclaw.json 文件)\n'));
|
|
269
|
+
// Build choices
|
|
270
|
+
const choices = [];
|
|
271
|
+
// Add history options
|
|
272
|
+
const validHistory = history.filter(p => validateWorkspacePath(p).valid);
|
|
273
|
+
for (const p of validHistory.slice(0, 5)) {
|
|
274
|
+
choices.push({
|
|
275
|
+
name: `📁 ${p}`,
|
|
276
|
+
value: p
|
|
277
|
+
});
|
|
278
|
+
}
|
|
279
|
+
// Add other options
|
|
280
|
+
if (choices.length > 0) {
|
|
281
|
+
choices.push(new inquirer_1.default.Separator('─'.repeat(40)));
|
|
282
|
+
}
|
|
283
|
+
choices.push({ name: '✏️ 手动输入路径', value: '__MANUAL__' });
|
|
284
|
+
choices.push({ name: '🚪 退出', value: '__EXIT__' });
|
|
285
|
+
let selectedPath = null;
|
|
286
|
+
if (choices.length > 2) {
|
|
287
|
+
// Has history, offer selection
|
|
288
|
+
const { selected } = await inquirer_1.default.prompt([
|
|
289
|
+
{
|
|
290
|
+
type: 'list',
|
|
291
|
+
name: 'selected',
|
|
292
|
+
message: '选择工作目录:',
|
|
293
|
+
choices,
|
|
294
|
+
loop: false
|
|
295
|
+
}
|
|
296
|
+
]);
|
|
297
|
+
if (selected === '__EXIT__') {
|
|
298
|
+
console.log(chalk_1.default.dim('\n再见!\n'));
|
|
299
|
+
return;
|
|
300
|
+
}
|
|
301
|
+
if (selected === '__MANUAL__') {
|
|
302
|
+
const { openClawRoot } = await inquirer_1.default.prompt([
|
|
303
|
+
{
|
|
304
|
+
type: 'input',
|
|
305
|
+
name: 'openClawRoot',
|
|
306
|
+
message: '请输入 .openclaw 目录路径:',
|
|
307
|
+
validate: (input) => {
|
|
308
|
+
const result = validateWorkspacePath(input);
|
|
309
|
+
if (!result.valid) {
|
|
310
|
+
return result.hint || result.error || '路径无效';
|
|
311
|
+
}
|
|
312
|
+
return true;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
]);
|
|
316
|
+
selectedPath = openClawRoot.trim();
|
|
317
|
+
}
|
|
318
|
+
else if (selected !== '__SEPARATOR__') {
|
|
319
|
+
selectedPath = selected;
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
else {
|
|
323
|
+
// No history, direct input
|
|
324
|
+
const { openClawRoot } = await inquirer_1.default.prompt([
|
|
325
|
+
{
|
|
326
|
+
type: 'input',
|
|
327
|
+
name: 'openClawRoot',
|
|
328
|
+
message: '请输入 .openclaw 目录路径:',
|
|
329
|
+
validate: (input) => {
|
|
330
|
+
const result = validateWorkspacePath(input);
|
|
331
|
+
if (!result.valid) {
|
|
332
|
+
return result.hint || result.error || '路径无效';
|
|
333
|
+
}
|
|
334
|
+
return true;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
]);
|
|
338
|
+
selectedPath = openClawRoot.trim();
|
|
339
|
+
}
|
|
340
|
+
if (!selectedPath) {
|
|
341
|
+
continue;
|
|
342
|
+
}
|
|
343
|
+
// Validate and set directory
|
|
344
|
+
const validation = (0, utils_1.isValidOpenClawRoot)(selectedPath);
|
|
345
|
+
if (!validation.valid) {
|
|
346
|
+
console.log(chalk_1.default.red(`\n✗ 目录验证失败: ${validation.error}\n`));
|
|
347
|
+
continue;
|
|
348
|
+
}
|
|
349
|
+
// Set workspace
|
|
350
|
+
const setResult = services_1.setupService.configureOpenClawRoot(selectedPath);
|
|
351
|
+
if (!setResult.success) {
|
|
352
|
+
console.log(chalk_1.default.red(`\n✗ 设置工作目录失败: ${setResult.message}\n`));
|
|
353
|
+
continue;
|
|
354
|
+
}
|
|
355
|
+
// Save to history
|
|
356
|
+
saveWorkspaceToHistory(selectedPath);
|
|
357
|
+
console.log(chalk_1.default.green(`\n✓ 工作目录已设置: ${selectedPath}\n`));
|
|
358
|
+
// Check if system already initialized (check database + assistant)
|
|
359
|
+
let isSystemInitialized = false;
|
|
360
|
+
try {
|
|
361
|
+
if ((0, index_1.isDatabaseInitialized)()) {
|
|
362
|
+
const db = (0, index_1.tryGetDatabase)();
|
|
363
|
+
if (db) {
|
|
364
|
+
const existingAssistant = agent_repo_1.agentRepository.getAssistant();
|
|
365
|
+
if (existingAssistant) {
|
|
366
|
+
isSystemInitialized = true;
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
catch (e) {
|
|
372
|
+
// Ignore errors
|
|
373
|
+
}
|
|
374
|
+
if (isSystemInitialized) {
|
|
375
|
+
// System already initialized, go to main menu
|
|
376
|
+
const activeSession = initSessionRepo.getActive();
|
|
377
|
+
if (activeSession && activeSession.status === 'active') {
|
|
378
|
+
configTracker.setCurrentSession(activeSession.id);
|
|
379
|
+
console.log(chalk_1.default.green(`✓ 已恢复会话: ${activeSession.assistant_name}\n`));
|
|
380
|
+
}
|
|
381
|
+
else {
|
|
382
|
+
console.log(chalk_1.default.green(`✓ 系统已初始化\n`));
|
|
383
|
+
}
|
|
384
|
+
const shouldContinue = await (0, main_menu_1.showMainMenu)();
|
|
385
|
+
if (!shouldContinue) {
|
|
386
|
+
console.log('');
|
|
387
|
+
continue;
|
|
388
|
+
}
|
|
389
|
+
break;
|
|
390
|
+
}
|
|
391
|
+
// No active session, ask to initialize
|
|
392
|
+
const { shouldInit } = await inquirer_1.default.prompt([
|
|
393
|
+
{
|
|
394
|
+
type: 'confirm',
|
|
395
|
+
name: 'shouldInit',
|
|
396
|
+
message: '是否初始化系统?',
|
|
397
|
+
default: true
|
|
398
|
+
}
|
|
399
|
+
]);
|
|
400
|
+
if (shouldInit) {
|
|
401
|
+
const { assistantName } = await inquirer_1.default.prompt([
|
|
402
|
+
{
|
|
403
|
+
type: 'input',
|
|
404
|
+
name: 'assistantName',
|
|
405
|
+
message: '请输入总助理名称:',
|
|
406
|
+
default: '总助理'
|
|
407
|
+
}
|
|
408
|
+
]);
|
|
409
|
+
console.log(chalk_1.default.gray('\n正在初始化系统...'));
|
|
410
|
+
const result = await services_1.setupService.init(assistantName, selectedPath);
|
|
411
|
+
if (result.success) {
|
|
412
|
+
console.log(chalk_1.default.green('\n✓ 系统初始化成功!\n'));
|
|
413
|
+
console.log(` 工作目录: ${selectedPath}`);
|
|
414
|
+
console.log(` 总助理ID: ${result.assistant_id}`);
|
|
415
|
+
console.log(` 总助理名称: ${assistantName}\n`);
|
|
416
|
+
}
|
|
417
|
+
else {
|
|
418
|
+
console.log(chalk_1.default.red('\n✗ 初始化失败'));
|
|
419
|
+
console.log(chalk_1.default.red(` 错误: ${result.message}\n`));
|
|
420
|
+
continue;
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
else {
|
|
424
|
+
console.log(chalk_1.default.dim('\n再见!\n'));
|
|
425
|
+
return;
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
// Show main menu
|
|
429
|
+
const shouldContinue = await (0, main_menu_1.showMainMenu)();
|
|
430
|
+
if (!shouldContinue) {
|
|
431
|
+
console.log('');
|
|
432
|
+
continue;
|
|
433
|
+
}
|
|
434
|
+
break;
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
/**
|
|
438
|
+
* TUI utility functions
|
|
439
|
+
*/
|
|
440
|
+
exports.tuiUtils = {
|
|
441
|
+
/**
|
|
442
|
+
* Print divider
|
|
443
|
+
*/
|
|
444
|
+
printDivider: (char = '─', length = 50) => {
|
|
445
|
+
console.log(chalk_1.default.dim(char.repeat(length)));
|
|
446
|
+
},
|
|
447
|
+
/**
|
|
448
|
+
* Print title
|
|
449
|
+
*/
|
|
450
|
+
printTitle: (title) => {
|
|
451
|
+
console.log(chalk_1.default.bold.cyan(`\n${title}`));
|
|
452
|
+
exports.tuiUtils.printDivider();
|
|
453
|
+
},
|
|
454
|
+
/**
|
|
455
|
+
* Print success message
|
|
456
|
+
*/
|
|
457
|
+
printSuccess: (message) => {
|
|
458
|
+
console.log(chalk_1.default.green(`✓ ${message}`));
|
|
459
|
+
},
|
|
460
|
+
/**
|
|
461
|
+
* Print error message
|
|
462
|
+
*/
|
|
463
|
+
printError: (message) => {
|
|
464
|
+
console.log(chalk_1.default.red(`✗ ${message}`));
|
|
465
|
+
},
|
|
466
|
+
/**
|
|
467
|
+
* Print warning message
|
|
468
|
+
*/
|
|
469
|
+
printWarning: (message) => {
|
|
470
|
+
console.log(chalk_1.default.yellow(`⚠ ${message}`));
|
|
471
|
+
},
|
|
472
|
+
/**
|
|
473
|
+
* Print info
|
|
474
|
+
*/
|
|
475
|
+
printInfo: (label, value) => {
|
|
476
|
+
console.log(` ${chalk_1.default.dim(label)}: ${value}`);
|
|
477
|
+
},
|
|
478
|
+
/**
|
|
479
|
+
* Wait for key press
|
|
480
|
+
*/
|
|
481
|
+
waitForKey: async (message = '按回车键继续...') => {
|
|
482
|
+
await inquirer_1.default.prompt([
|
|
483
|
+
{
|
|
484
|
+
type: 'confirm',
|
|
485
|
+
name: 'continue',
|
|
486
|
+
message: chalk_1.default.dim(message),
|
|
487
|
+
default: true
|
|
488
|
+
}
|
|
489
|
+
]);
|
|
490
|
+
}
|
|
491
|
+
};
|
|
492
|
+
//# sourceMappingURL=index.js.map
|