opclawtm-cli 1.3.4 → 1.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/team-manager.js +35 -1
- package/dist/bin/team-setup.js +65 -1
- package/dist/bin/team-uninstall.js +90 -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 +92 -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.js +433 -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.js +134 -1
- package/dist/cli/index.js +863 -1
- package/dist/cli/tui/index.js +470 -1
- package/dist/cli/tui/menus/agent-manage.menu.js +614 -1
- package/dist/cli/tui/menus/dept-manage.menu.js +358 -1
- package/dist/cli/tui/menus/domain-manage.menu.js +208 -1
- package/dist/cli/tui/menus/feishu.menu.js +1686 -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/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.d.ts +1 -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/crypto.service.d.ts.map +1 -1
- package/dist/core/services/crypto.service.js +377 -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/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/role-flow.service.js +47 -1
- package/dist/core/services/setup.service.js +336 -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.js +1585 -1
- package/dist/core/utils/template-generator.js +170 -1
- package/dist/db/index.js +403 -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
|
@@ -1 +1,1585 @@
|
|
|
1
|
-
'use strict';(function(_0x58b3c3,_0x547ca6){const _0xed872d={_0x4c437d:0x63b,_0x177a03:0xeac,_0x3afdfd:'loi5',_0x460762:0x4fc,_0x4dd542:0xaee,_0x54ba14:'Foj6',_0x4bf5ff:0x75c,_0x253594:'#pB[',_0x3db1e9:0x75a,_0x529f48:0xc35,_0x1eadd4:0xbee,_0x699816:'1mQU',_0x48a1b2:0xa40,_0x2768f7:'7k]n',_0x3759b9:0xe05,_0x246324:0xc04,_0x10eff0:0xaed,_0xbdc409:0x3bd,_0x31cc97:0xab4,_0x13c837:0x62a,_0x4250c6:0xb6e,_0x2f0ba4:0x70f,_0x42f033:'k7fb',_0x55ab72:0xc08,_0x2fd296:0x8ff},_0x59519b={_0x1960f5:0x3e3},_0x521be1={_0xfafe96:0x389};function _0x284a53(_0x4f5408,_0x4a3b42,_0x46122d,_0x4a82de){return _0x5249(_0x46122d-_0x521be1._0xfafe96,_0x4a82de);}function _0x443897(_0x10fb3c,_0x1452f3,_0x33ab8b,_0x43e741){return _0x5249(_0x33ab8b-_0x59519b._0x1960f5,_0x43e741);}const _0x9c5ee0=_0x58b3c3();while(!![]){try{const _0x3f83b0=parseInt(_0x284a53(0x39a,_0xed872d._0x4c437d,0x584,'V23R'))/(0x2136+-0x3*-0x883+-0x2*0x1d5f)*(parseInt(_0x284a53(_0xed872d._0x177a03,0xd64,0xb84,_0xed872d._0x3afdfd))/(-0x1413*0x1+-0x2b6*-0x7+0x11b))+-parseInt(_0x443897(_0xed872d._0x460762,_0xed872d._0x4dd542,0x7ea,_0xed872d._0x54ba14))/(0x12cb*-0x1+0x1*0x3d7+-0x1*-0xef7)*(parseInt(_0x443897(0x46b,_0xed872d._0x4bf5ff,0x75e,_0xed872d._0x253594))/(-0x1*0x2603+0x6b9+0x1f4e))+-parseInt(_0x284a53(0xd9e,_0xed872d._0x3db1e9,0xa9d,'k7fb'))/(0x3*0xdc+0x910+0x5*-0x253)*(parseInt(_0x443897(_0xed872d._0x529f48,0xc9d,_0xed872d._0x1eadd4,_0xed872d._0x699816))/(0x76f+0x1a*-0x60+0x257))+-parseInt(_0x443897(0x10a9,_0xed872d._0x48a1b2,0xe73,_0xed872d._0x2768f7))/(-0x38b+0x1*0x6bb+-0x329)*(-parseInt(_0x443897(_0xed872d._0x3759b9,_0xed872d._0x246324,_0xed872d._0x10eff0,'2m0$'))/(-0x12f*-0x1d+-0x3*0x641+-0x8*0x1f1))+-parseInt(_0x443897(_0xed872d._0xbdc409,_0xed872d._0x31cc97,0x830,'loi5'))/(0x372+-0x985+-0x5c*-0x11)+-parseInt(_0x443897(0xab0,_0xed872d._0x13c837,0x7ad,'VXA^'))/(0x1463*0x1+0x1b1b+-0x2f74)+parseInt(_0x284a53(_0xed872d._0x4250c6,0x7b6,_0xed872d._0x2f0ba4,_0xed872d._0x42f033))/(-0x1322*-0x2+-0x2616+-0x23)*(parseInt(_0x443897(0xb18,_0xed872d._0x55ab72,_0xed872d._0x2fd296,'Mpqc'))/(-0x61*-0x59+0x2*0x117a+0x44a1*-0x1));if(_0x3f83b0===_0x547ca6)break;else _0x9c5ee0['push'](_0x9c5ee0['shift']());}catch(_0x41495f){_0x9c5ee0['push'](_0x9c5ee0['shift']());}}}(_0x97cd,-0x112a04+0x78699*-0x1+0x22722f));var __createBinding=this&&this[_0x259b54('&)0b',0x3c2,0x69d,0x2ee)+_0x259b54('ebUi',0x9f4,0xa0d,0x9b4)]||(Object[_0x259b54('loi5',0xb0f,0x7db,0x7d4)]?function(_0x2bc5da,_0x5dc04a,_0x1bedf8,_0x356d66){const _0x2c3969={_0x4648a8:'7k]n',_0x1ee106:0x57f,_0x148574:0x16e,_0x446712:'LaEV',_0x521bff:0x912,_0xe3aac1:'Ybev',_0x4dd774:0x7c2,_0x153c14:'Q]KY',_0x3ae3ee:0x435,_0x2e1795:0x3b1,_0x1ae5dd:0x164,_0x34e1f0:'loi5',_0x568f53:0x1033,_0x500f00:']GM1',_0x3cff99:0x665,_0x4940eb:0x7bc,_0x2c80e8:0x70d,_0xcaab63:'3Y(#',_0x302472:0x99f,_0x1a70e2:0xaa9,_0x1015be:'Mpqc',_0x174f77:0xc50,_0x4b4725:0x94f,_0x162a64:0x585,_0x306a50:'&)0b',_0x533475:0xacc,_0x30f095:0x66,_0x39fda4:'#%z0',_0xfcbc2e:0xe07},_0x3d3866={_0x4fd0e1:0x88,_0x505680:0x22b},_0x153965={_0x694ed:'da@G',_0x11ef1f:0x9a0,_0x151d87:'V23R',_0x14e5cc:0xc9c,_0xf38a3e:0x91c,_0x5868c6:0xc16,_0x2c28da:0xa95,_0x30603f:'hn9d',_0x2c77b3:0xc55,_0x36c414:0x491,_0x526e8f:'Lh@)',_0x4feba4:']))d',_0x5c526a:0x8fa,_0x366318:0xc84,_0x1c4a1d:'Q]KY',_0x48747a:0xb82,_0x5417e3:0xb50,_0x37f7e3:'#pB[',_0xbbd2fa:0x875,_0x31d586:'suJD',_0x2f966a:0x263},_0x8df29d={_0x453321:0xb0,_0x3e1639:0x4e7,_0xc63ba3:0x1c};function _0x317c6d(_0x1919ff,_0x20b70f,_0x895f36,_0x28bdc9){return _0x5bf319(_0x1919ff-_0x8df29d._0x453321,_0x1919ff- -_0x8df29d._0x3e1639,_0x28bdc9,_0x28bdc9-_0x8df29d._0xc63ba3);}const _0x461afd={};_0x461afd[_0x46f89a(0x3a9,0x3f3,0x39e,_0x2c3969._0x4648a8)]=_0x46f89a(_0x2c3969._0x1ee106,_0x2c3969._0x148574,0x2ba,_0x2c3969._0x446712),_0x461afd[_0x317c6d(0x690,_0x2c3969._0x521bff,0x614,_0x2c3969._0xe3aac1)]=function(_0x4b342b,_0x7e67cd){return _0x4b342b===_0x7e67cd;},_0x461afd[_0x46f89a(0xbde,0xc09,_0x2c3969._0x4dd774,_0x2c3969._0x153c14)]=_0x317c6d(_0x2c3969._0x3ae3ee,0x1d,0x5da,'LaEV'),_0x461afd[_0x317c6d(_0x2c3969._0x2e1795,0x664,_0x2c3969._0x1ae5dd,_0x2c3969._0x34e1f0)]=function(_0x224441,_0x3a6347){return _0x224441 in _0x3a6347;},_0x461afd[_0x317c6d(0x39f,0x19d,0x170,'LaEV')]=_0x46f89a(0xbed,0xed0,_0x2c3969._0x568f53,_0x2c3969._0x500f00);const _0x3b4aa2=_0x461afd;if(_0x3b4aa2[_0x46f89a(0x9fb,0x833,0xe42,_0x2c3969._0x500f00)](_0x356d66,undefined))_0x356d66=_0x1bedf8;var _0x461fe2=Object[_0x317c6d(0x901,_0x2c3969._0x3cff99,0xcd1,'ECfd')+_0x46f89a(0x712,0x862,0x93e,'V)bU')+_0x46f89a(_0x2c3969._0x4940eb,0x3e7,_0x2c3969._0x2c80e8,_0x2c3969._0xcaab63)](_0x5dc04a,_0x1bedf8);(!_0x461fe2||(_0x3b4aa2[_0x46f89a(_0x2c3969._0x302472,0x5d8,_0x2c3969._0x1a70e2,_0x2c3969._0x1015be)](_0x3b4aa2[_0x46f89a(_0x2c3969._0x174f77,0xfb5,0x8ef,'!7O4')],_0x461fe2)?!_0x5dc04a[_0x46f89a(0x8b1,_0x2c3969._0x4b4725,_0x2c3969._0x162a64,_0x2c3969._0x306a50)]:_0x461fe2[_0x46f89a(_0x2c3969._0x533475,0x677,0xe6f,'$6rX')]||_0x461fe2[_0x317c6d(0x120,-0x115,-_0x2c3969._0x30f095,_0x2c3969._0x39fda4)+'le']))&&(_0x461fe2={'enumerable':!![],'get':function(){const _0x343c76={_0x1e4d5e:0x3db,_0x1e9b65:0x103,_0x3f17ea:0xd0};function _0x5ca32f(_0x2c9d3e,_0x1b62e8,_0x30bbba,_0x392e28){return _0x317c6d(_0x392e28-_0x343c76._0x1e4d5e,_0x1b62e8-_0x343c76._0x1e9b65,_0x30bbba-_0x343c76._0x3f17ea,_0x30bbba);}const _0x178491={};_0x178491[_0x5ca32f(0x39f,0x7d0,_0x153965._0x694ed,0x7f2)]=_0x3b4aa2['kmeGG'];const _0x1fdfeb=_0x178491;function _0x3a263b(_0x1086bc,_0xacc6ed,_0xeb74ed,_0x57f97e){return _0x46f89a(_0x57f97e-0x69,_0xacc6ed-0x1e6,_0xeb74ed-0x1a2,_0xacc6ed);}if(_0x3b4aa2[_0x3a263b(_0x153965._0x11ef1f,_0x153965._0x151d87,_0x153965._0x14e5cc,_0x153965._0xf38a3e)](_0x5ca32f(_0x153965._0x5868c6,_0x153965._0x2c28da,_0x153965._0x30603f,_0x153965._0x2c77b3),_0x3b4aa2[_0x5ca32f(0x46e,_0x153965._0x36c414,_0x153965._0x526e8f,0x760)]))_0x321098[_0x3a263b(0x6d4,_0x153965._0x4feba4,_0x153965._0x5c526a,0x77a)](''),_0x2b4161[_0x3a263b(_0x153965._0x366318,_0x153965._0x1c4a1d,_0x153965._0x48747a,_0x153965._0x5417e3)](_0x1fdfeb[_0x3a263b(0x917,_0x153965._0x37f7e3,_0x153965._0xbbd2fa,0xa42)]),_0x384ac9[_0x3a263b(0x4c8,_0x153965._0x31d586,_0x153965._0x2f966a,0x5f8)]('');else return _0x5dc04a[_0x1bedf8];}});function _0x46f89a(_0x3702b8,_0x38dc37,_0x3c2127,_0x58579f){return _0x259b54(_0x58579f,_0x38dc37-_0x3d3866._0x4fd0e1,_0x3c2127-0x176,_0x3702b8-_0x3d3866._0x505680);}Object['defineProp'+_0x46f89a(0xb75,_0x2c3969._0xfcbc2e,0xdc1,'#pB[')](_0x2bc5da,_0x356d66,_0x461fe2);}:function(_0x9495c5,_0x3903b1,_0x359c58,_0x2e7730){const _0x5b1709={_0x36f96b:0xa5b,_0x30fea4:0xa7c},_0x48451f={_0x4cb7bb:0xaf,_0x4a8593:0x291,_0x194d47:0x181},_0x3fa786={_0x5f789a:0x1e5,_0x3239ca:0x16a},_0x28c81b={};_0x28c81b[_0x1d4ed0('hn9d',_0x5b1709._0x36f96b,0xbeb,0xa25)]=function(_0xd027cf,_0x2683ba){return _0xd027cf===_0x2683ba;};function _0x2c3f28(_0x8dc1d4,_0xf6345c,_0x493f76,_0x7a30f7){return _0x259b54(_0x8dc1d4,_0xf6345c-_0x3fa786._0x5f789a,_0x493f76-0x8f,_0x493f76-_0x3fa786._0x3239ca);}function _0x1d4ed0(_0x50128c,_0x693d6,_0x3580a4,_0x5784a4){return _0x5bf319(_0x50128c-_0x48451f._0x4cb7bb,_0x693d6- -_0x48451f._0x4a8593,_0x50128c,_0x5784a4-_0x48451f._0x194d47);}const _0x1bc6e0=_0x28c81b;if(_0x1bc6e0[_0x1d4ed0('PB2^',_0x5b1709._0x30fea4,0x98e,0x92e)](_0x2e7730,undefined))_0x2e7730=_0x359c58;_0x9495c5[_0x2e7730]=_0x3903b1[_0x359c58];});function _0x5bf319(_0x28e4fa,_0xee8773,_0x228769,_0x18d31a){return _0x5249(_0xee8773-0x33e,_0x228769);}var __setModuleDefault=this&&this[_0x5bf319(0xa7e,0xd73,'k7fb',0x959)+_0x259b54('V23R',0x7cf,0x5d9,0x5af)]||(Object[_0x5bf319(0x715,0x6f0,'N%cE',0x429)]?function(_0x22614e,_0x5adca0){const _0x5de967={_0x8a9084:'lofD',_0x399a31:0x4e7,_0x3c9041:0x262,_0x12683e:0x3b2,_0x3abb4c:0x17d,_0x16628e:0x38,_0x1af8da:'suJD',_0x181320:0xa33,_0x5c279c:0xa36,_0x2219b8:'k7fb',_0x1217d6:0x73e,_0xc24ce0:0x863,_0x26a99b:0x6f9,_0x219c83:0x81,_0x43b740:'N%cE'},_0x23bc16={_0x3a1b7d:0x1a9,_0x16c587:0x25d},_0x48d452={_0xda11f:0x40},_0x588a7={};function _0x5425dc(_0x51b038,_0x3d0609,_0x339e1c,_0x158a9b){return _0x259b54(_0x51b038,_0x3d0609-_0x48d452._0xda11f,_0x339e1c-0x81,_0x339e1c-0x1ef);}function _0x293f6c(_0x2b8e95,_0x52ab1e,_0x237042,_0x224ed5){return _0x259b54(_0x224ed5,_0x52ab1e-_0x23bc16._0x3a1b7d,_0x237042-0x18d,_0x237042- -_0x23bc16._0x16c587);}_0x588a7[_0x5425dc(_0x5de967._0x8a9084,0x6f3,_0x5de967._0x399a31,0x637)]=_0x293f6c(-0x1e1,-_0x5de967._0x3c9041,-0xc9,'N%cE');const _0x38e3d7=_0x588a7,_0x55034b={};_0x55034b[_0x293f6c(_0x5de967._0x12683e,_0x5de967._0x3abb4c,_0x5de967._0x16628e,'VXA^')]=!![],_0x55034b[_0x5425dc(_0x5de967._0x1af8da,_0x5de967._0x181320,0x6fd,_0x5de967._0x5c279c)]=_0x5adca0,Object[_0x5425dc(_0x5de967._0x2219b8,0x363,_0x5de967._0x1217d6,_0x5de967._0xc24ce0)+_0x293f6c(0x804,0x611,_0x5de967._0x26a99b,'2m0$')](_0x22614e,_0x38e3d7[_0x293f6c(-0x22a,0x42e,_0x5de967._0x219c83,_0x5de967._0x43b740)],_0x55034b);}:function(_0x578f3e,_0x65a7ce){const _0x1fc610={_0x1cd0ac:0xbd7,_0x18248d:0xb9c,_0x2820e5:0xee2,_0x93a7e7:0xb57},_0x2600db={_0x3273d9:0xae,_0x436fc1:0x46},_0x3ea233={_0x198127:0xfe,_0xad9cd1:0xe1,_0x4d9744:0x19b};function _0x5e7372(_0x1ecb7f,_0x523e8a,_0x1ed2e6,_0x39d7e4){return _0x5bf319(_0x1ecb7f-_0x3ea233._0x198127,_0x523e8a- -_0x3ea233._0xad9cd1,_0x1ecb7f,_0x39d7e4-_0x3ea233._0x4d9744);}const _0x5a8f96={};function _0x1c2036(_0x32fa35,_0x2b3f4c,_0x128912,_0x1d14a4){return _0x259b54(_0x2b3f4c,_0x2b3f4c-_0x2600db._0x3273d9,_0x128912-_0x2600db._0x436fc1,_0x32fa35-0x38d);}_0x5a8f96[_0x1c2036(_0x1fc610._0x1cd0ac,']GM1',_0x1fc610._0x18248d,_0x1fc610._0x2820e5)]=_0x1c2036(0xa3f,'3Y(#',0xe39,_0x1fc610._0x93a7e7);const _0x4b9ea7=_0x5a8f96;_0x578f3e[_0x4b9ea7[_0x5e7372('ECfd',0x846,0xa08,0xa18)]]=_0x65a7ce;}),__importStar=this&&this['__importSt'+'ar']||(function(){const _0x37849c={_0x6b7a2c:0x33c,_0x40ffaa:0x47b,_0x494eca:0x1dd,_0x764071:'v2$P',_0x58247c:0xee,_0x22b443:0x34a},_0x46db36={_0x3839d5:0xc79,_0x27ce10:0xc08,_0x209b14:0x26a,_0x598aa5:0xe8,_0x5343d1:0x26a,_0x19d3bf:0x34a,_0x1644bc:0x1ce,_0x2730af:'v2$P',_0x3a2a13:0xaaf,_0x1efdba:0xb70,_0x2c579b:'1mQU',_0x50b97e:0x40d,_0x3566e8:0xa,_0x58cb98:0x539,_0x13c01c:'2m0$',_0x1ec42d:0x7fd,_0x50b45c:0x1ff},_0x58e8c1={_0x595550:0x8c,_0x53be8e:0x544,_0x319ac6:0x92},_0x2f211f={_0x180412:0x157},_0x1b4d31={_0x807e30:0xa6,_0xadc999:0x206},_0x3670c2={_0x35f7a0:0xa81,_0x242290:'7k]n',_0x29417f:0x5a8,_0x39f458:0x5ff,_0x39d896:'lofD',_0x3895f3:0x6a7},_0x3f2b6c={'VQgek':function(_0x22e323,_0x35d8ca){return _0x22e323(_0x35d8ca);},'WTyse':_0x4b09eb(_0x37849c._0x6b7a2c,_0x37849c._0x40ffaa,_0x37849c._0x494eca,_0x37849c._0x764071),'OHqSd':function(_0x21b8c4,_0x3af455){return _0x21b8c4!=_0x3af455;},'imatI':function(_0x147240,_0x50d40d){return _0x147240<_0x50d40d;},'AzrzC':function(_0x23e1c7,_0x4200ca){return _0x23e1c7!==_0x4200ca;},'pkYtu':_0x4b09eb(-_0x37849c._0x58247c,_0x37849c._0x22b443,0x37,'N%cE'),'DFamE':function(_0x3a39f7,_0x100444,_0x47ca4e,_0x54f770){return _0x3a39f7(_0x100444,_0x47ca4e,_0x54f770);}};var _0x57d674=function(_0x48efef){const _0x116f10={_0x1965ac:0x2b1,_0x34cc70:0x152},_0x4e42be={_0x5a5dcd:'Ybev',_0x654128:0x5d8,_0x3f8396:0x966,_0x588fd1:0x6f5,_0x25badf:'1mQU',_0x1df0e5:0x7ce,_0x1c6fca:0x56c,_0x5e7f54:0x4f7,_0x1d3c56:'lofD',_0x123264:'V)bU',_0x1d049a:0x217,_0xf7b538:0xfc,_0x517415:0x9f,_0x50914e:0x638},_0xddb4de={_0x3a7cde:0xb7,_0x1a2891:0x1b3},_0x1e5df6={_0x3e0e4c:0xe4};function _0x57e518(_0x10e1b5,_0x135e09,_0x422382,_0x156cfe){return _0x4b09eb(_0x10e1b5-0x4d,_0x422382-0x184,_0x422382-_0x1e5df6._0x3e0e4c,_0x135e09);}_0x57d674=Object[_0x57e518(0x62f,'&)0b',_0x3670c2._0x35f7a0,0xa19)+_0x57e518(0xc0e,_0x3670c2._0x242290,0x95c,_0x3670c2._0x29417f)]||function(_0x5ded02){function _0x5f2cff(_0x386118,_0x30cb3e,_0x1b0e8c,_0x36c9a7){return _0x57e518(_0x386118-0x91,_0x386118,_0x36c9a7-0xf0,_0x36c9a7-0x1f2);}var _0x2115bf=[];function _0x1413d1(_0x153e93,_0x35f341,_0x4e92ec,_0x4ff356){return _0x57e518(_0x153e93-_0xddb4de._0x3a7cde,_0x153e93,_0x35f341- -0x29b,_0x4ff356-_0xddb4de._0x1a2891);}for(var _0x5c10d4 in _0x5ded02)if(Object[_0x1413d1(_0x4e42be._0x5a5dcd,_0x4e42be._0x654128,_0x4e42be._0x3f8396,_0x4e42be._0x588fd1)][_0x1413d1(_0x4e42be._0x25badf,_0x4e42be._0x1df0e5,_0x4e42be._0x1c6fca,_0x4e42be._0x5e7f54)+_0x1413d1(_0x4e42be._0x1d3c56,0x5cc,0x8f7,0xa0e)][_0x1413d1(_0x4e42be._0x123264,_0x4e42be._0x1d049a,-_0x4e42be._0xf7b538,_0x4e42be._0x517415)](_0x5ded02,_0x5c10d4))_0x2115bf[_0x2115bf[_0x1413d1('!k$h',0x7eb,0x95b,_0x4e42be._0x50914e)]]=_0x5c10d4;return _0x2115bf;};function _0x136d36(_0x5628e1,_0x57683f,_0x26aaca,_0x204107){return _0x4b09eb(_0x5628e1-0x1be,_0x26aaca- -_0x116f10._0x1965ac,_0x26aaca-_0x116f10._0x34cc70,_0x204107);}return _0x3f2b6c[_0x57e518(_0x3670c2._0x39f458,_0x3670c2._0x39d896,0x7a1,_0x3670c2._0x3895f3)](_0x57d674,_0x48efef);};function _0x4b09eb(_0x5d7510,_0x2fccf8,_0xf1d690,_0xd77691){return _0x5bf319(_0x5d7510-_0x1b4d31._0x807e30,_0x2fccf8- -_0x1b4d31._0xadc999,_0xd77691,_0xd77691-0x10a);}function _0x2ebbe4(_0x16db67,_0x3f192f,_0x515c95,_0x36585c){return _0x5bf319(_0x16db67-0xaa,_0x515c95- -0x67f,_0x16db67,_0x36585c-_0x2f211f._0x180412);}return function(_0x173393){const _0x361f3d={_0x286642:0xbf,_0x664327:0xa0,_0x4fc095:0x1c},_0x375429=_0x3f2b6c[_0x1e7fcb(_0x46db36._0x3839d5,'6]hf',0xaaf,_0x46db36._0x27ce10)][_0x14e899(_0x46db36._0x209b14,'Q]KY',-_0x46db36._0x598aa5,_0x46db36._0x5343d1)]('|');let _0xa0fe29=-0x1*-0x6cd+-0x1ec1+-0xbfa*-0x2;function _0x1e7fcb(_0x3464b7,_0x127b9d,_0x5827f7,_0x526fca){return _0x2ebbe4(_0x127b9d,_0x127b9d-_0x58e8c1._0x595550,_0x3464b7-_0x58e8c1._0x53be8e,_0x526fca-_0x58e8c1._0x319ac6);}function _0x14e899(_0x4490b6,_0x3644d9,_0x445e64,_0x1b3944){return _0x2ebbe4(_0x3644d9,_0x3644d9-_0x361f3d._0x286642,_0x445e64- -_0x361f3d._0x664327,_0x1b3944-_0x361f3d._0x4fc095);}while(!![]){switch(_0x375429[_0xa0fe29++]){case'0':if(_0x173393&&_0x173393['__esModule'])return _0x173393;continue;case'1':return _0x3714e7;case'2':__setModuleDefault(_0x3714e7,_0x173393);continue;case'3':if(_0x3f2b6c[_0x14e899(_0x46db36._0x19d3bf,'FtqP',0x6c8,0x927)](_0x173393,null)){for(var _0x565f19=_0x3f2b6c[_0x14e899(0x29,'ebUi',-_0x46db36._0x1644bc,-0x122)](_0x57d674,_0x173393),_0x11cf81=0x11*0x243+0x25ab+-0x260f*0x2;_0x3f2b6c[_0x1e7fcb(0x6df,_0x46db36._0x2730af,_0x46db36._0x3a2a13,0x272)](_0x11cf81,_0x565f19[_0x1e7fcb(_0x46db36._0x1efdba,'Dsi5',0x788,0xa11)]);_0x11cf81++)if(_0x3f2b6c[_0x14e899(0x193,_0x46db36._0x2c579b,_0x46db36._0x50b97e,-_0x46db36._0x3566e8)](_0x565f19[_0x11cf81],_0x3f2b6c[_0x1e7fcb(_0x46db36._0x58cb98,_0x46db36._0x13c01c,_0x46db36._0x1ec42d,0xea)]))_0x3f2b6c[_0x14e899(0x1e9,'KDG1',0x3d1,_0x46db36._0x50b45c)](__createBinding,_0x3714e7,_0x173393,_0x565f19[_0x11cf81]);}continue;case'4':var _0x3714e7={};continue;}break;}};}());const _0x141bcd={};_0x141bcd[_0x5bf319(0xd74,0xc67,'Foj6',0x98c)]=!![],Object[_0x259b54('LaEV',-0x287,0x19,0x15a)+'erty'](exports,_0x259b54('$6rX',0xa2e,0x8c6,0x96a),_0x141bcd),exports[_0x5bf319(0xa1c,0x8c7,'V)bU',0x5d8)+_0x259b54('Q]KY',0x4e4,0x94a,0x5b8)]=void(-0x23e1*-0x1+0x4a9*0x6+-0x3fd7),exports[_0x259b54('hn9d',-0x1ad,0x652,0x207)+_0x259b54('Lh@)',0x703,0x573,0x720)]=getAgentSessionKey,exports[_0x259b54('z8mf',0x711,0xb67,0x825)+_0x5bf319(0xa41,0xd80,')$Hz',0xacd)+'h']=getAgentWorkspacePath,exports[_0x259b54('ebUi',0x5ab,0x201,0x425)+_0x5bf319(0x93b,0x806,'Foj6',0xb53)]=prepareAgentContext,exports[_0x5bf319(0x12b,0x521,'ebUi',0x14e)+_0x5bf319(0xc1b,0xad7,'FtqP',0xc5b)+'es']=createAgentDirectories,exports[_0x5bf319(0x8db,0xc25,')9pR',0xf16)+_0x5bf319(0x7ab,0x74f,'Ybev',0x5a3)]=createAgentFiles,exports[_0x5bf319(0x523,0x61c,'$6rX',0x4c8)+_0x5bf319(0xed3,0xab9,'!k$h',0xc95)]=syncTeamMemberInfo,exports[_0x259b54('1mQU',0x833,0x261,0x420)+_0x5bf319(0xa57,0xba1,'2m0$',0xa7b)+_0x259b54('7k]n',0x4b1,0x223,0x282)]=syncAssistantTeamMembers,exports[_0x5bf319(0x4ce,0x5ff,'V23R',0x84c)+_0x5bf319(0x80b,0x92b,'LaEV',0x65e)]=syncOpenClawConfig,exports['removeAgen'+_0x259b54('v2$P',0x6dc,0x9d1,0x67f)+'g']=removeAgentFromConfig,exports[_0x259b54('lofD',0x484,0x721,0x5e6)+'tToAgentAl'+_0x5bf319(0x42f,0x89a,'!7O4',0xd0a)]=updateAgentToAgentAllow,exports[_0x5bf319(0x9e4,0x580,'Ybev',0x656)+'AgentToAge'+_0x259b54(']GM1',0x3be,-0xc9,0x1dd)]=initializeAgentToAgentConfig,exports[_0x259b54('da@G',0x255,0x287,0x35a)+_0x259b54('Q]KY',0x1f3,0x316,0x498)]=updateAgentAllowList,exports[_0x5bf319(0xdd5,0x9c4,']GM1',0xbf7)+_0x5bf319(0x88f,0x6b8,'v2$P',0x64e)+_0x5bf319(0x31c,0x629,'KAAL',0x5bb)]=getGatewayRestartReminder,exports[_0x259b54('!7O4',-0x63,0xe4,0x1d9)+'ishuGroup']=syncTeamFeishuGroup,exports[_0x5bf319(0x5a3,0x862,')9w@',0xb60)+_0x259b54('2PrQ',0x97b,0x6ba,0x8c5)]=regenerateAgentFiles,exports[_0x259b54('1mQU',0x356,0xb69,0x781)+_0x5bf319(0x9ab,0xd63,'loi5',0x962)+'ById']=regenerateAgentFilesById;const fs=__importStar(require('fs')),path=__importStar(require(_0x5bf319(0x81a,0x92c,'#pB[',0xa1c))),agent_repo_1=require(_0x259b54('!7O4',0x637,0x5ff,0x31e)+'epositorie'+_0x5bf319(0xd3e,0xdc2,')$Hz',0xdfc)+'po'),dept_repo_1=require(_0x5bf319(0xb07,0xd3c,'&)0b',0x985)+_0x259b54('dx1J',0x6dd,0x1bf,0x424)+_0x5bf319(0x314,0x748,'suJD',0x77e)+'o'),job_repo_1=require(_0x5bf319(0x482,0x5a4,'V23R',0x602)+_0x259b54('6]hf',0xace,0xc39,0x85a)+_0x259b54('Q]KY',0x3d7,0x3fd,0x593));function _0x259b54(_0x3fd27d,_0x5d2867,_0x476066,_0x586739){const _0x58509d={_0x3e298f:0x7e};return _0x5249(_0x586739- -_0x58509d._0x3e298f,_0x3fd27d);}const skill_pack_repo_1=require(_0x5bf319(0x802,0xb83,'N%cE',0xf0a)+_0x259b54('*LpW',0xbb0,0xaa9,0x8f1)+_0x259b54('VXA^',0xe4,0x6f7,0x28d)+_0x5bf319(0x3b5,0x73a,'LaEV',0xa42)),agent_template_repo_1=require(_0x259b54('Dsi5',0x8b6,0x440,0x746)+_0x5bf319(0xd32,0xd2d,'hn9d',0xa3c)+_0x259b54('HQvh',0x5f6,0x394,0x2d2)+_0x5bf319(0x50d,0x84e,'lofD',0x44f)+'o'),utils_1=require(_0x259b54('2m0$',0x285,0x6eb,0x37f)),auth_profiles_service_1=require(_0x5bf319(0xa3b,0x9cc,'loi5',0x857)+_0x5bf319(0xa01,0x7da,'3Y(#',0x3fe)+_0x259b54('lofD',0xa5c,0x39d,0x62f)+_0x5bf319(0x582,0x6f6,'2m0$',0x615)),configTracker=__importStar(require(_0x5bf319(0x86e,0xc1b,'k7fb',0xc04)+_0x259b54('Ybev',0x5ec,0x449,0x5c6)+_0x5bf319(0x749,0x821,'V23R',0x576)+_0x5bf319(0x50c,0x882,'LaEV',0xb41)));function getAgentSessionKey(_0x5d7cb1){const _0x16947f={_0x44e02d:0x5ef,_0x45faf7:0x217,_0x151612:'&)0b',_0x50302c:0x4d8,_0x1441f9:0x8bf,_0x5e8901:'!k$h'},_0x3d1769={_0x17be70:0xf5},_0x295368={_0x1ce671:0x90,_0x300772:0x42d,_0x33e64d:0x87};function _0x1ac0fb(_0x5f2cd2,_0x30fb87,_0x57acd0,_0xb96609){return _0x5bf319(_0x5f2cd2-_0x295368._0x1ce671,_0x5f2cd2- -_0x295368._0x300772,_0x57acd0,_0xb96609-_0x295368._0x33e64d);}function _0x4a6e9f(_0x1f0cdc,_0x325446,_0xdd9d71,_0x36a85e){return _0x5bf319(_0x1f0cdc-_0x3d1769._0x17be70,_0x1f0cdc- -0x69d,_0x325446,_0x36a85e-0x12c);}return _0x1ac0fb(_0x16947f._0x44e02d,_0x16947f._0x45faf7,_0x16947f._0x151612,0x3d6)+_0x5d7cb1+_0x1ac0fb(_0x16947f._0x50302c,_0x16947f._0x1441f9,_0x16947f._0x5e8901,0x38f);}function getAgentWorkspacePath(_0x4461c0){const _0x5a2319={_0x507e68:'v2$P',_0x38ac1f:0x9a,_0x4e0f80:0x476,_0x4f5a31:0xb15,_0x541bc3:0x915,_0x1f36ae:'Q]KY',_0x1dda7c:'v2$P',_0x1fa8a0:0x34,_0x190979:0x114,_0xd0f647:0x10b,_0x1f4942:0x895,_0x3d4ba7:0x5d1,_0x2aba6f:0x5a7,_0x2587af:'!k$h'},_0x2b1ba1={_0x4a5670:0x42};function _0x317540(_0x51fe69,_0x2b5be0,_0x56a9fe,_0x49de00){return _0x5bf319(_0x51fe69-0xa8,_0x56a9fe- -0x563,_0x51fe69,_0x49de00-0x178);}function _0x18acd0(_0x1610ec,_0x217b56,_0x402884,_0x372ab9){return _0x259b54(_0x372ab9,_0x217b56-0x92,_0x402884-_0x2b1ba1._0x4a5670,_0x402884-0x68);}const _0xdf17c1=agent_repo_1[_0x317540(_0x5a2319._0x507e68,0x2f9,_0x5a2319._0x38ac1f,-0x2ec)+_0x18acd0(0x5b2,0x88c,_0x5a2319._0x4e0f80,'Dsi5')][_0x18acd0(_0x5a2319._0x4f5a31,0xa2f,_0x5a2319._0x541bc3,_0x5a2319._0x1f36ae)](_0x4461c0);if(_0xdf17c1&&_0xdf17c1['workspace_'+_0x317540(_0x5a2319._0x1dda7c,-0xcb,-_0x5a2319._0x1fa8a0,_0x5a2319._0x190979)])return _0xdf17c1['workspace_'+'path'];return(0x2*0xc36+0x2022+-0x388e,utils_1[_0x18acd0(_0x5a2319._0xd0f647,_0x5a2319._0x1f4942,0x509,'hn9d')+_0x18acd0(_0x5a2319._0x3d4ba7,_0x5a2319._0x2aba6f,0x8e9,_0x5a2319._0x2587af)])(_0x4461c0);}function prepareAgentContext(_0x4c7862){const _0x4ae18a={_0xfb2e58:0x9b8,_0x52a5d3:0xd2a,_0x41a5cf:'FtqP',_0x2f9de8:0x545,_0x1af144:'N%cE',_0x425a41:0x98e,_0x53bf9b:0x89f,_0x137eac:0x8a3,_0x2a26e3:0x7ca,_0x3806ab:0xce,_0x1a1298:0x4fb,_0x43c5a0:0x9fa,_0xde0fbc:0x731,_0x6610be:'7k]n',_0xe862:0x7de,_0x1dfe3f:0x39e,_0x559de5:0x556,_0x532817:'93KN',_0x4b6716:0x2a2,_0x18dedd:0x375,_0x3e8b83:'Dsi5',_0xab3ae8:0x990,_0x1309cc:0x479,_0x1e3098:0x598,_0x3a116b:0xb0c,_0x4c78be:'GdD8',_0x2f1391:0x161,_0x5cbae8:0x6bc,_0x2929f6:0x35e,_0x207efd:0x7b6,_0x231432:0x7ad,_0xf754c0:0xbc0,_0x4e2646:'suJD',_0x22d690:0x39,_0x123263:0x5b5,_0x14dea6:0x379},_0x403b61={_0x1a438d:0xb2,_0x209f84:0x198},_0x27d5bb={_0x5525cb:0xef,_0x27b38d:0xdf},_0x47c941={'sRqvF':function(_0x289a63,_0x3c0c09){return _0x289a63(_0x3c0c09);},'MoZRg':function(_0x19d869,_0x4d1f0e){return _0x19d869(_0x4d1f0e);}},_0x18b2d8=agent_repo_1[_0x45493c('Mpqc',_0x4ae18a._0xfb2e58,0x8d5,_0x4ae18a._0x52a5d3)+_0x210a45(0x983,_0x4ae18a._0x41a5cf,0x60e,_0x4ae18a._0x2f9de8)][_0x45493c(_0x4ae18a._0x1af144,_0x4ae18a._0x425a41,_0x4ae18a._0x53bf9b,_0x4ae18a._0x137eac)](_0x4c7862);function _0x210a45(_0x4c1953,_0x439b62,_0x650c86,_0x275c0c){return _0x259b54(_0x439b62,_0x439b62-_0x27d5bb._0x5525cb,_0x650c86-0xf8,_0x650c86- -_0x27d5bb._0x27b38d);}if(!_0x18b2d8){const _0x937df8={};return _0x937df8[_0x210a45(0x2c7,'6]hf',0x487,_0x4ae18a._0x2a26e3)]=![],_0x937df8[_0x45493c('6]hf',_0x4ae18a._0x3806ab,_0x4ae18a._0x1a1298,0x78b)]=_0x210a45(0x439,'2m0$',0x354,0x60c)+'\x20'+_0x4c7862,_0x937df8;}const _0x3de3a2=_0x47c941[_0x45493c('2m0$',_0x4ae18a._0x43c5a0,0x7b7,_0x4ae18a._0xde0fbc)](getAgentWorkspacePath,_0x4c7862),_0x4bca9b=_0x47c941[_0x210a45(0x200,'!7O4',0x348,0x61b)](getAgentSessionKey,_0x4c7862),_0x1a5b08={};_0x1a5b08['id']=_0x18b2d8['id'],_0x1a5b08[_0x45493c(_0x4ae18a._0x6610be,_0x4ae18a._0xe862,0x7f1,0x72c)]=_0x18b2d8[_0x210a45(0x2a8,'KDG1',0x4e5,0x156)],_0x1a5b08[_0x210a45(0x4bf,'V)bU',_0x4ae18a._0x1dfe3f,_0x4ae18a._0x559de5)]=_0x18b2d8[_0x210a45(0x1ef,_0x4ae18a._0x532817,_0x4ae18a._0x4b6716,_0x4ae18a._0x18dedd)],_0x1a5b08[_0x210a45(0xb82,_0x4ae18a._0x3e8b83,0x905,_0x4ae18a._0xab3ae8)+'_id']=_0x18b2d8[_0x210a45(_0x4ae18a._0x1309cc,']GM1',_0x4ae18a._0x1e3098,0x72b)+_0x45493c('!7O4',0x825,0xa17,_0x4ae18a._0x3a116b)],_0x1a5b08[_0x45493c(_0x4ae18a._0x4c78be,_0x4ae18a._0x2f1391,0x50d,0x53d)]=_0x18b2d8[_0x45493c(']))d',_0x4ae18a._0x5cbae8,0x64d,_0x4ae18a._0x2929f6)];const _0x499abb={};_0x499abb['success']=!![],_0x499abb[_0x45493c('3Y(#',_0x4ae18a._0x207efd,_0x4ae18a._0x231432,_0x4ae18a._0xf754c0)]=_0x1a5b08,_0x499abb[_0x210a45(-0x15,_0x4ae18a._0x4e2646,0x338,_0x4ae18a._0x22d690)+'path']=_0x3de3a2;function _0x45493c(_0x5e32fc,_0x361b3c,_0x46803d,_0x261b4a){return _0x5bf319(_0x5e32fc-_0x403b61._0x1a438d,_0x46803d- -0x3c1,_0x5e32fc,_0x261b4a-_0x403b61._0x209f84);}return _0x499abb[_0x210a45(_0x4ae18a._0x123263,'V23R',0x2f7,_0x4ae18a._0x14dea6)+'y']=_0x4bca9b,_0x499abb;}function createAgentDirectories(_0x3c869c){const _0x282371={_0x2ab63d:'6]hf',_0x565080:0x9b7,_0x1cf799:0x634,_0x4cd9a3:0x95c,_0x5da117:0x9ba,_0x28c358:0x7c8,_0x423e27:'N%cE',_0x374604:0x9a0,_0x167dea:0x7b4,_0x454cef:'2PrQ',_0x179f0b:0x570,_0x1eff92:0x6ea,_0x470d6c:'$6rX',_0x2922f8:0xa0f,_0xadb97c:0xdb8,_0x18d3a7:0x6d6,_0x3fdf52:'KDG1',_0xfe2423:0xb31,_0x2ccb4a:0xa03,_0x4b067a:0x46f,_0x4a53f2:0x8de,_0x3416df:'!k$h',_0x194139:0xa74,_0x5ccc4d:'v2$P',_0x38823a:'GdD8',_0xc21ff9:0x703,_0x214c6d:0xad2,_0x9a4117:0xb9e,_0x2d7e60:0x7ee,_0x2128d1:0x629,_0x5ab493:0xa5a,_0xdc2545:'l^lf',_0x501b1a:0x740,_0x28ade0:0x810,_0x256642:0x8c9,_0x45c292:0x3fb,_0x3ef66e:0xe1,_0x4f7d88:')9pR',_0x47334f:0x19a,_0x4e4250:0x5da,_0x3d8f0c:0x3a0,_0x11d3f2:'PB2^',_0x4e6b52:0x2d0,_0x56b9a9:0x42c,_0x13bbb1:0x4b8,_0x24e8be:0x459,_0x519eca:0x51c,_0x20975f:0x8c3,_0xde6a73:0xa95,_0x2dc795:0x91e,_0x5ccc0c:'3Y(#',_0x3d7ef0:0x98f,_0x156cba:0xd09},_0x5848f6={_0x531135:0x1aa},_0x235933={_0x2c34a5:0x1e4},_0x2ed943={'uKyQh':function(_0x382e39,_0x380f6f,_0x4e9bb7,_0x3050d1){return _0x382e39(_0x380f6f,_0x4e9bb7,_0x3050d1);},'ChUcg':'LSQXC','HRPJM':_0x58beb7(_0x282371._0x2ab63d,0x9b2,0xb14,_0x282371._0x565080)},_0x39a2ba=(0x2371+0x2490+-0x4801,utils_1[_0x13ba0d(_0x282371._0x1cf799,0xaf9,')$Hz',0x79d)+_0x13ba0d(_0x282371._0x4cd9a3,_0x282371._0x5da117,']))d',0x6b4)])(_0x3c869c),_0x5d2901=(0x4bc+-0x855+-0x133*-0x3,utils_1[_0x13ba0d(_0x282371._0x28c358,0xbb9,_0x282371._0x423e27,_0x282371._0x374604)+'r'])(_0x3c869c),_0x3b9d56=(-0x1*0x2593+-0x11a2+-0x15*-0x2a1,utils_1[_0x13ba0d(0x6a0,_0x282371._0x167dea,_0x282371._0x454cef,_0x282371._0x179f0b)+_0x58beb7('ebUi',_0x282371._0x1eff92,0xa0f,0x851)])(_0x3c869c);if(!fs[_0x13ba0d(0x9ba,0x955,']))d',0x7f4)](_0x39a2ba)){const _0x14df06={};_0x14df06[_0x58beb7(_0x282371._0x470d6c,_0x282371._0x2922f8,0x5bf,_0x282371._0xadb97c)]=!![],fs['mkdirSync'](_0x39a2ba,_0x14df06);}if(!fs[_0x13ba0d(0x544,_0x282371._0x18d3a7,'loi5',0x703)](_0x5d2901)){if(_0x2ed943[_0x58beb7(_0x282371._0x3fdf52,0xb84,_0x282371._0xfe2423,0x913)]!==_0x2ed943[_0x58beb7('2PrQ',_0x282371._0x2ccb4a,0x6ee,0xe05)]){const _0x504b62={};_0x504b62[_0x13ba0d(_0x282371._0x4b067a,0xbc8,'2PrQ',_0x282371._0x4a53f2)]=!![],fs[_0x58beb7(_0x282371._0x3416df,0x96f,0x5e1,0x859)](_0x5d2901,_0x504b62);}else{const _0x47b96b=_0x2ed943[_0x13ba0d(_0x282371._0x194139,0xa8e,_0x282371._0x5ccc4d,0x779)](_0x3c7f7c,_0x3349a1,_0x12dbdf,_0x23e6ea),_0x488fb2={};return _0x488fb2[_0x58beb7(_0x282371._0x38823a,0x9ef,_0x282371._0xc21ff9,_0x282371._0x214c6d)]=_0x47b96b[_0x58beb7('Mpqc',0xa17,0x654,_0x282371._0x9a4117)],_0x488fb2[_0x13ba0d(0x955,_0x282371._0x2d7e60,_0x282371._0x423e27,0x92f)]=_0x47b96b['message'],_0x488fb2[_0x58beb7('GdD8',_0x282371._0x2128d1,0x9e1,_0x282371._0x5ab493)+_0x58beb7(_0x282371._0xdc2545,_0x282371._0x501b1a,0x809,_0x282371._0x28ade0)]=[_0x49a037],_0x488fb2[_0x58beb7('KDG1',_0x282371._0x256642,0xc9c,0xc8d)]=[{'agentId':_0x70f697,'oldValue':_0x47b96b[_0x13ba0d(_0x282371._0x45c292,-_0x282371._0x3ef66e,_0x282371._0x4f7d88,_0x282371._0x47334f)],'newValue':_0x47b96b[_0x13ba0d(_0x282371._0x4e4250,0x2b,']GM1',_0x282371._0x3d8f0c)]}],_0x488fb2;}}if(!fs[_0x58beb7(_0x282371._0x11d3f2,_0x282371._0x4e6b52,0x18a,_0x282371._0x56b9a9)](_0x3b9d56)){const _0x270843={};_0x270843[_0x13ba0d(0x383,0x2e0,'VXA^',0x408)]=!![],fs[_0x13ba0d(_0x282371._0x13bbb1,0x610,'k7fb',_0x282371._0x24e8be)](_0x3b9d56,_0x270843);}function _0x58beb7(_0x3870c5,_0x2fedd9,_0x460d07,_0xbd4811){return _0x5bf319(_0x3870c5-0x71,_0x2fedd9- -0x26b,_0x3870c5,_0xbd4811-_0x235933._0x2c34a5);}function _0x13ba0d(_0x3842bd,_0x49b4fe,_0x2479f5,_0x54b822){return _0x259b54(_0x2479f5,_0x49b4fe-_0x5848f6._0x531135,_0x2479f5-0x5,_0x54b822-0x41);}const _0x44ccb8={};return _0x44ccb8[_0x58beb7(')9w@',_0x282371._0x519eca,_0x282371._0x20975f,0x30f)]=_0x39a2ba,_0x44ccb8[_0x58beb7(_0x282371._0x454cef,_0x282371._0xde6a73,_0x282371._0x2dc795,0xee5)]=_0x5d2901,_0x44ccb8[_0x58beb7(_0x282371._0x5ccc0c,_0x282371._0x3d7ef0,0xcdb,_0x282371._0x156cba)+'r']=_0x3b9d56,_0x44ccb8;}function getSkillPackNames(_0xa7aadf){const _0x5a53f7={_0x1f27cb:'3Y(#',_0x589c9a:0x7d7,_0x29dcd3:'Dsi5',_0x59c100:0x5df,_0x5713a1:0x7ce,_0x153673:'HQvh',_0x38fb58:0x95d,_0x1e4193:']GM1',_0x50a2d4:0x5af,_0x4e9731:'ebUi',_0x58feb6:0x7fa,_0x39f8cf:0x4bc,_0x94acae:0xc10,_0x22b43d:'93KN',_0xcd2bf:0x70e,_0x5c415a:0x400,_0x264484:'Mpqc',_0x417cad:0x5,_0x25cc36:0x359,_0x462fa1:0x504,_0x441d7d:')9pR',_0xf0ca1b:0x921,_0x57281c:0xc8c},_0x4bfbc1={_0x21c384:0x186};function _0x21702f(_0x47bec8,_0x4ca467,_0x18e13e,_0x4e375f){return _0x259b54(_0x4ca467,_0x4ca467-_0x4bfbc1._0x21c384,_0x18e13e-0x182,_0x4e375f-0x1cf);}const _0x35ddfe={};function _0x861a3d(_0x89c801,_0x1c4c09,_0x3e4feb,_0x16cd9d){return _0x259b54(_0x1c4c09,_0x1c4c09-0x147,_0x3e4feb-0x6c,_0x3e4feb-0x297);}_0x35ddfe[_0x861a3d(0x342,_0x5a53f7._0x1f27cb,0x6f1,_0x5a53f7._0x589c9a)]=function(_0x33cb85,_0xcc19fb){return _0x33cb85===_0xcc19fb;};const _0x3904cb=_0x35ddfe;if(!_0xa7aadf)return'-';const _0x38ccab=job_repo_1[_0x861a3d(0x58e,_0x5a53f7._0x29dcd3,_0x5a53f7._0x59c100,0xa16)+_0x21702f(_0x5a53f7._0x5713a1,_0x5a53f7._0x153673,0x6de,0x71f)][_0x861a3d(_0x5a53f7._0x38fb58,_0x5a53f7._0x1e4193,0x7fe,_0x5a53f7._0x50a2d4)+_0x861a3d(0xb52,_0x5a53f7._0x4e9731,_0x5a53f7._0x58feb6,_0x5a53f7._0x39f8cf)](_0xa7aadf);if(_0x3904cb[_0x861a3d(0x8f6,'da@G',0x88e,_0x5a53f7._0x94acae)](_0x38ccab[_0x861a3d(0x83d,_0x5a53f7._0x22b43d,_0x5a53f7._0xcd2bf,_0x5a53f7._0x5c415a)],-0x6fa+-0x6*0x605+-0x628*-0x7))return'-';const _0x502965=[];for(const _0x53e3b7 of _0x38ccab){_0x502965[_0x21702f(0x5ef,'lofD',0x2f0,0x597)](_0x53e3b7);}return _0x502965[_0x21702f(0x2ed,_0x5a53f7._0x264484,-_0x5a53f7._0x417cad,_0x5a53f7._0x25cc36)]>-0x1237*0x2+-0xe3*-0x3+-0x41*-0x85?_0x502965[_0x861a3d(_0x5a53f7._0x462fa1,_0x5a53f7._0x441d7d,_0x5a53f7._0xf0ca1b,_0x5a53f7._0x57281c)](',\x20'):'-';}function getJobName(_0x5cf651){const _0x428f84={_0x226514:0x61f,_0x328ab0:0xa8a,_0x366642:'Dsi5',_0x4abe0c:0x798,_0x583053:0x9c9,_0x2394a8:0xa6e},_0x6cfa8f={_0x5089f3:0x17d,_0x3c315b:0x1a1},_0x54df7a={_0x537f6e:0x78};if(!_0x5cf651)return'-';function _0x3d9fe2(_0x5c6e37,_0x244368,_0x303e14,_0x454643){return _0x259b54(_0x303e14,_0x244368-0xdc,_0x303e14-_0x54df7a._0x537f6e,_0x5c6e37-0x174);}function _0x2aeabf(_0x5a8118,_0x3fdeef,_0x4c281c,_0x3818cc){return _0x259b54(_0x4c281c,_0x3fdeef-0x73,_0x4c281c-_0x6cfa8f._0x5089f3,_0x5a8118-_0x6cfa8f._0x3c315b);}return job_repo_1['jobReposit'+_0x3d9fe2(_0x428f84._0x226514,_0x428f84._0x328ab0,_0x428f84._0x366642,_0x428f84._0x4abe0c)][_0x3d9fe2(_0x428f84._0x583053,0xe16,'z8mf',_0x428f84._0x2394a8)](_0x5cf651);}function getTeamInfo(_0x3f1153){const _0x4ed88f={_0x3b3115:'#pB[',_0xffe8e2:0x583,_0x48353f:0x6a2,_0x5853ff:'ECfd',_0x2025fd:0x5b5,_0x263da7:0x36c,_0x56b31b:0x1cc,_0x17d68b:')9w@',_0x11104e:0x46b,_0x13debc:0x669,_0x126eca:0x76f,_0x4794f6:'GdD8',_0x155c7f:0x73f,_0x310366:0x890,_0x460bbd:0xac9,_0x21a44a:'7k]n',_0xe13432:0xb09,_0x35ba2e:0x9b6,_0x2ef6fd:0x9d7,_0x3ce07d:'V23R',_0x1fd7b8:0x92c,_0x180b91:'V)bU',_0x35fb74:0x191,_0x513e68:'Lh@)',_0x3b5db5:0x6dd,_0x4f1341:0xa80,_0x432d4c:0x633,_0x36a2c7:0x1087,_0x2f5633:'HQvh',_0x140466:0x97e,_0x477b2b:0x8cb,_0x20dd44:0x88a,_0x49ba45:0x6eb,_0x33ac7e:0x3e4,_0x1a00db:'z8mf',_0x33765a:0x788,_0x2d660c:0x571,_0x57577b:0x8f8,_0x30e1cf:0xe74,_0x4e349a:0x9f1,_0x2a681b:0x58d,_0x772c38:'lofD',_0x37aa95:0xb2b,_0x2e961d:0x8c2,_0x15b7d6:'FtqP',_0x767dcb:0xc1b,_0x1765e0:0x3fe,_0x14b586:0x436,_0x33d21d:0x6f6,_0x23154a:0x237,_0x50a43b:0x16d,_0x3e6c28:0x21c,_0x244f20:0x130,_0x1801a8:'k7fb',_0x24125f:0x701,_0x15e16b:0xd03,_0x39a73b:0x965,_0xe7e6f9:'z8mf',_0x329cf0:0x5f2,_0x3d643e:0x7f8,_0x74fadd:'da@G',_0x25a564:0x9e1,_0x8d604b:0x2ee,_0x18ad2d:0x6e0,_0x5b7993:0xd2d,_0x3540bb:0xe96,_0x27b3ef:'KDG1',_0x228357:0x30,_0x5780b5:0x1a8,_0x45644a:0x1061,_0x124140:'!k$h',_0x137d54:'KAAL',_0x59bfa5:0x777,_0x3feefd:0x594,_0x1875c6:0x690,_0x5718ad:'Foj6',_0x20d645:0x8c7,_0x5abe6c:0x8a3,_0x5b3faa:0xd9e,_0x47032e:0xb5,_0x2e1eaf:0x445,_0x353c65:0xb0d,_0xd30f41:'3Y(#',_0x3aa055:0x8b,_0x2e93f9:0x5d6,_0x3ab49a:0x1b5,_0x3936a0:0x828,_0x5a4422:0xbde,_0xe61b09:')$Hz',_0x2801eb:0x8b1,_0xfbc766:0xba7,_0x283465:0x626,_0x39b90d:0x5af,_0x526a33:0x2d7,_0x558897:'*LpW',_0x4b5666:0x73b,_0x3264df:0x425,_0xcc5ec4:0x902,_0xfea17:'KDG1',_0x24c8d8:0x62f,_0x45cd3e:0x2bc,_0x302d8f:0x43d,_0x568cdc:0x2fd,_0x41a785:0x87e,_0x3e492e:0x587,_0x2eeeb9:0x4f1,_0x292239:'93KN',_0x1a8476:0x289,_0x213e71:0x49e,_0x54ad05:'z8mf',_0x910f3b:0x70,_0x63fd71:0x252,_0x52e6fb:0x39e,_0x5667f6:0x6bd,_0x40a0fa:'$6rX',_0xf2bce7:0x788,_0x3adbb0:'2PrQ',_0x5f33fe:0x8e0,_0x332152:0x51e,_0x1ec205:0xa54,_0x3d48c5:0x839,_0x4bdacc:0x698,_0x2373af:0x51d,_0x2b4852:0x322,_0x47a193:0x6ab,_0x1f3b86:'KDG1',_0x58a31e:0xaee,_0x125d28:0x61a,_0x1095fc:0x88f,_0x5d6054:0x56a,_0x12d3da:0x732,_0x3f38fc:0x7a9,_0x4f98e5:')9pR',_0x231013:0x3c3,_0x213acb:0x1aa,_0x49f3a5:0x2b9,_0x3a2784:0x6cd,_0x2e24d7:'6]hf',_0x4c558b:0x7d8,_0x2f3337:0x8e7},_0x2db106={_0x45b514:0x15a},_0x25f34e={_0x306828:'!7O4',_0x3166a8:0x96f,_0x564fee:0xc42,_0x4d737b:'!7O4',_0x11bfe3:0xf14,_0x5374cf:0xb84,_0x4e5af3:0x4f7,_0x14a83b:'*LpW',_0xd6d0ef:0x3b6,_0x3665df:0xad8,_0xb3b952:'V)bU',_0x433d41:0x7b0,_0x3e90a3:0xa31,_0x270b8a:0x973,_0x2aed9d:0x695,_0x563ea4:'$6rX',_0x54d47c:0x9c8,_0x4d1e13:0x4e6,_0x2b1f2b:')9w@',_0x104f15:0x4f1,_0x44eb16:0xcbe,_0xfe1aac:0x98e,_0x1f9d5b:0x757,_0x355dea:0x6af,_0x2e0464:0xab8,_0x3b68e9:0x8a9,_0x1ce0a4:0x9f0,_0xb91f3c:0x907,_0x5a4529:0xabd,_0x210ab4:'Ybev',_0x4ab679:0x984,_0x4a5b27:0x788,_0x5d87c9:0x1eb,_0x51fdac:0x16a,_0x4cd79e:'lofD',_0x2d5061:0x65c,_0x538ae2:0x7d6,_0x1965bc:'da@G',_0x2a3527:0xafe,_0xb5130a:0xdef,_0x529ad4:'KAAL',_0x5f4866:'LaEV',_0x1782f3:0x91a,_0x2174e0:0x97d,_0x55ed11:0x4c1,_0x4a807b:0x9cb,_0xb90014:0xb65,_0x180bba:0x813,_0x3497ce:'dx1J',_0x182a8d:0xc94,_0x3b58af:0x6d7,_0x4ed4e0:0x4d1,_0x1aef2c:'1mQU',_0x48ea7e:0x6eb,_0x5bb284:'&)0b',_0x3d5de3:0x534,_0x1e244d:0x2e0,_0x29ebf8:0x8e4,_0x3f02a2:0x6f2,_0x28c81e:0x918,_0x207534:'z8mf',_0x225469:0xae8,_0x2fa9cc:0x7bf,_0x13c0c4:0x400,_0x25eb91:0xaf9,_0xaf4ac4:0x999,_0x1e7048:'c36g',_0x44f105:'l^lf',_0x46da99:0xf4d,_0x4af50d:0x2fc,_0x2e9346:0x9e7,_0x2c90a8:'VXA^',_0x4b7176:0x51c,_0x481807:0x924,_0x5e51fa:0x606,_0x765878:0xa24,_0x2e7bcb:0xb98,_0x301ca0:0x87b,_0x22f02a:0x723,_0xcc4099:'v2$P',_0x161791:0x593,_0x27f787:'3Y(#',_0x49dd75:0x31d,_0xf96f5e:0x6ca,_0x5738ba:0xb36,_0x54de98:0xf33,_0x140f04:0xf15,_0x1af0ac:0xc67,_0x275f97:0xb24,_0x4bf1d6:0x7a0,_0x2ddee0:')$Hz',_0x5a0511:0xa4e,_0x29db19:0xd0e,_0x19e9b2:0x989,_0x127197:0x550},_0x402199={_0x145c71:0x2},_0xce62c={_0x3f368f:0x1e3,_0x18e0ac:0x1ba,_0x1d9abe:0x46a},_0x3fa769={'MNdFl':function(_0x40ea95,_0x17e2a7){return _0x40ea95!==_0x17e2a7;},'RXCAO':_0x5ddc44(_0x4ed88f._0x3b3115,0x707,_0x4ed88f._0xffe8e2,0x7fe),'EtToA':function(_0x5eec37,_0x5e81d8){return _0x5eec37(_0x5e81d8);},'AZmZS':_0x5c3250(_0x4ed88f._0x48353f,'6]hf',0x71e,0x964),'KPOPM':_0x5ddc44(_0x4ed88f._0x5853ff,_0x4ed88f._0x2025fd,_0x4ed88f._0x263da7,_0x4ed88f._0x56b31b),'JCDfd':function(_0x30b7b5,_0xcf5fee){return _0x30b7b5>_0xcf5fee;},'Abaaq':_0x5ddc44(_0x4ed88f._0x17d68b,_0x4ed88f._0x11104e,_0x4ed88f._0x13debc,_0x4ed88f._0x126eca),'GRsIW':_0x5ddc44(_0x4ed88f._0x4794f6,_0x4ed88f._0x155c7f,0x6a5,0x462),'uMXYY':function(_0x3aa0ee,_0x96619a){return _0x3aa0ee>_0x96619a;},'yBYJV':_0x5c3250(0x780,')$Hz',_0x4ed88f._0x310366,_0x4ed88f._0x460bbd),'JJxyY':function(_0x28031e,_0x2f9025){return _0x28031e>_0x2f9025;},'Jyfbd':_0x5c3250(0xe93,_0x4ed88f._0x21a44a,_0x4ed88f._0xe13432,0xd35)},_0x3d616f=dept_repo_1[_0x5c3250(0xae9,']))d',_0x4ed88f._0x35ba2e,0x9a8)+_0x5c3250(_0x4ed88f._0x2ef6fd,_0x4ed88f._0x3ce07d,_0x4ed88f._0x1fd7b8,0xa6b)][_0x5ddc44(_0x4ed88f._0x180b91,-0x18b,-_0x4ed88f._0x35fb74,0x1e5)](_0x3f1153);if(!_0x3d616f)return null;const _0x288a73=_0x3d616f[_0x5ddc44(_0x4ed88f._0x513e68,-0x55,_0x4ed88f._0x3b5db5,0x30e)+_0x5c3250(0x9f0,'&)0b',_0x4ed88f._0x4f1341,_0x4ed88f._0x432d4c)]||_0x3fa769[_0x5ddc44('V23R',0xaea,0x995,0x6e6)],_0x27198d=_0x3d616f[_0x5c3250(0xa72,'loi5',0xdec,0xd2b)+_0x5c3250(_0x4ed88f._0x36a2c7,_0x4ed88f._0x2f5633,0xd9d,_0x4ed88f._0x140466)]?_0x3d616f[_0x5c3250(0x83a,'2m0$',_0x4ed88f._0x477b2b,_0x4ed88f._0x20dd44)]:_0x3fa769[_0x5ddc44(')9pR',0x621,_0x4ed88f._0x49ba45,_0x4ed88f._0x33ac7e)],_0x4918a7=_0x3d616f[_0x5ddc44(_0x4ed88f._0x1a00db,_0x4ed88f._0x33765a,0x40f,_0x4ed88f._0x2d660c)+_0x5c3250(0xb03,'3Y(#',_0x4ed88f._0x57577b,0xa08)]?_0x5c3250(_0x4ed88f._0x30e1cf,'1mQU',0xce1,_0x4ed88f._0x4e349a)+_0x3d616f[_0x5c3250(_0x4ed88f._0x2a681b,'2m0$',0x822,0xc13)+_0x5ddc44(_0x4ed88f._0x772c38,_0x4ed88f._0x37aa95,_0x4ed88f._0x2e961d,0x6fc)]:_0x3fa769[_0x5c3250(0xb81,_0x4ed88f._0x15b7d6,0xd25,_0x4ed88f._0x767dcb)],_0x4efe08=agent_repo_1[_0x5ddc44('da@G',-0x30,0x318,_0x4ed88f._0x1765e0)+_0x5ddc44('Q]KY',_0x4ed88f._0x14b586,0xaf1,_0x4ed88f._0x33d21d)][_0x5ddc44('hn9d',-_0x4ed88f._0x23154a,-_0x4ed88f._0x50a43b,0x15a)+'nt'](),_0x53e8d2=agent_repo_1[_0x5ddc44('Dsi5',-_0x4ed88f._0x3e6c28,-0x1ca,_0x4ed88f._0x244f20)+'itory'][_0x5ddc44(_0x4ed88f._0x1801a8,0x999,0x2c1,_0x4ed88f._0x24125f)+'rtmentAndR'+_0x5c3250(0xa5f,'1mQU',0x9ff,0x7c6)](_0x3f1153,_0x3fa769[_0x5c3250(0xae5,'V)bU',_0x4ed88f._0x15e16b,_0x4ed88f._0x39a73b)]),_0x132e35=_0x3fa769[_0x5c3250(0x1072,_0x4ed88f._0xe7e6f9,0xda0,0xbad)](_0x53e8d2[_0x5ddc44('!k$h',0x3e2,0x5f5,_0x4ed88f._0x329cf0)],-0x18d0*-0x1+-0x11eb+-0x6e5)?_0x53e8d2[-0xa*-0x1dd+0x174*0x6+-0x1b5a]:null;function _0x5c3250(_0xfabfac,_0x19ce08,_0x26fc7b,_0xd6a795){return _0x5bf319(_0xfabfac-0x10b,_0x26fc7b- -0x5,_0x19ce08,_0xd6a795-0x18c);}const _0x211a18=agent_repo_1[_0x5c3250(_0x4ed88f._0x3d643e,'ebUi',0x629,0x38b)+_0x5ddc44(_0x4ed88f._0x74fadd,_0x4ed88f._0x25a564,_0x4ed88f._0x8d604b,_0x4ed88f._0x18ad2d)][_0x5c3250(0xa87,'#pB[',_0x4ed88f._0x5b7993,_0x4ed88f._0x3540bb)+_0x5ddc44(_0x4ed88f._0x27b3ef,-0xbe,_0x4ed88f._0x228357,_0x4ed88f._0x5780b5)+_0x5c3250(_0x4ed88f._0x45644a,_0x4ed88f._0x124140,0xd3c,0xa39)](_0x3f1153,_0x3fa769[_0x5ddc44(_0x4ed88f._0x137d54,_0x4ed88f._0x59bfa5,_0x4ed88f._0x3feefd,_0x4ed88f._0x1875c6)]),_0x35e5e9=_0x3fa769[_0x5ddc44(_0x4ed88f._0x5718ad,0xa56,_0x4ed88f._0x20d645,_0x4ed88f._0x5abe6c)](_0x211a18[_0x5c3250(_0x4ed88f._0x5b3faa,'N%cE',0x96d,0x5d2)],0x152b*0x1+0x2*0x118c+-0x3843*0x1)?_0x211a18[0x1*0x1466+-0x99b+-0xacb]:null,_0x333594=agent_repo_1[_0x5ddc44(_0x4ed88f._0x772c38,0x54a,_0x4ed88f._0x47032e,_0x4ed88f._0x2e1eaf)+_0x5c3250(0x7a0,'2PrQ',0x9ca,_0x4ed88f._0x353c65)][_0x5ddc44(_0x4ed88f._0xd30f41,-_0x4ed88f._0x3aa055,_0x4ed88f._0x2e93f9,_0x4ed88f._0x3ab49a)+'rtmentAndR'+_0x5c3250(0xcc4,'c36g',0xd15,0x963)](_0x3f1153,_0x3fa769[_0x5ddc44('z8mf',0x7ef,_0x4ed88f._0x3936a0,0x806)]),_0x470f3c=_0x3fa769[_0x5c3250(_0x4ed88f._0x5a4422,_0x4ed88f._0xe61b09,_0x4ed88f._0x2801eb,_0x4ed88f._0xfbc766)](_0x211a18[_0x5c3250(_0x4ed88f._0x283465,'VXA^',_0x4ed88f._0x39b90d,_0x4ed88f._0x526a33)],0x1c77+0x1d37+-0x39ae)?_0x211a18[_0x5ddc44(_0x4ed88f._0x558897,_0x4ed88f._0x4b5666,0x73d,_0x4ed88f._0x3264df)](_0x431adc=>'|\x20'+_0x431adc['id']+_0x5c3250(0xb15,'VXA^',0x841,0x98f)+_0x431adc['id']+_0x5ddc44('!k$h',0x685,0x38f,0x58f)+_0x431adc[_0x5ddc44('V)bU',0x634,0x1a0,0x2ea)]+_0x5ddc44('c36g',0x81a,0xb96,0x7b7)+_0x431adc[_0x5ddc44('Lh@)',0x614,0xe8,0x1f4)]+'\x20|')[_0x5c3250(_0x4ed88f._0xcc5ec4,_0x4ed88f._0xfea17,_0x4ed88f._0x24c8d8,0x8b5)]('\x0a'):_0x3fa769[_0x5ddc44(_0x4ed88f._0x15b7d6,0x7df,_0x4ed88f._0x45cd3e,_0x4ed88f._0x302d8f)],_0x56a5ad=_0x3fa769[_0x5ddc44('!k$h',_0x4ed88f._0x568cdc,_0x4ed88f._0x41a785,_0x4ed88f._0x3e492e)](_0x333594['length'],0x1704+-0x1647+-0xbd)?_0x333594[_0x5ddc44('v2$P',0x7c4,_0x4ed88f._0x2eeeb9,0x87f)](_0x3644bb=>{function _0x976e36(_0x172d4e,_0x40dc77,_0xc07fb9,_0x4113b3){return _0x5ddc44(_0x40dc77,_0x40dc77-_0xce62c._0x3f368f,_0xc07fb9-_0xce62c._0x18e0ac,_0x172d4e-_0xce62c._0x1d9abe);}function _0x201912(_0x33d91f,_0x36f134,_0x347137,_0x46788f){return _0x5c3250(_0x33d91f-0xc6,_0x36f134,_0x347137- -0x236,_0x46788f-_0x402199._0x145c71);}if(_0x3fa769[_0x976e36(0xcb2,_0x25f34e._0x306828,_0x25f34e._0x3166a8,0x1039)](_0x3fa769[_0x976e36(_0x25f34e._0x564fee,_0x25f34e._0x4d737b,0xf02,_0x25f34e._0x11bfe3)],_0x976e36(0x9df,')9pR',0x98e,_0x25f34e._0x5374cf)))return _0x201912(0x7aa,')$Hz',0xa65,0xb51)+_0x976e36(_0x25f34e._0x4e5af3,_0x25f34e._0x14a83b,_0x25f34e._0xd6d0ef,0x2eb)+_0x976e36(_0x25f34e._0x3665df,_0x25f34e._0xb3b952,_0x25f34e._0x433d41,_0x25f34e._0x3e90a3)+_0x201912(0xa02,_0x25f34e._0x14a83b,_0x25f34e._0x270b8a,_0x25f34e._0x2aed9d)+_0x201912(0xac2,_0x25f34e._0x563ea4,_0x25f34e._0x54d47c,0x774)+_0x976e36(_0x25f34e._0x4d1e13,_0x25f34e._0x2b1f2b,0x3a9,_0x25f34e._0x104f15)+'ger\x20get-ag'+_0x976e36(_0x25f34e._0x44eb16,'k7fb',0xd91,_0x25f34e._0xfe1aac)+_0x201912(_0x25f34e._0x1f9d5b,'v2$P',0x60a,_0x25f34e._0x355dea)+'\x20Agent\x20ID\x20'+_0x976e36(_0x25f34e._0x2e0464,'FtqP',_0x25f34e._0x3b68e9,0xa52)+_0x976e36(_0x25f34e._0x1ce0a4,'Foj6',_0x25f34e._0xb91f3c,_0x25f34e._0x5a4529)+_0x976e36(0x54d,_0x25f34e._0x210ab4,0x651,0x24c)+_0x976e36(0x5f4,'HQvh',0x853,_0x25f34e._0x4ab679)+_0x1a50b5[_0x976e36(_0x25f34e._0x4a5b27,'l^lf',0x69c,0x59e)]+(_0x201912(_0x25f34e._0x5d87c9,'lofD',0x36a,_0x25f34e._0x51fdac)+_0x976e36(0x994,_0x25f34e._0x4cd79e,_0x25f34e._0x2d5061,_0x25f34e._0x538ae2)+_0x201912(0xe31,_0x25f34e._0x1965bc,_0x25f34e._0x2a3527,_0x25f34e._0xb5130a)+'\x20|\x20状态\x20|\x0a|-'+_0x201912(0x6f0,_0x25f34e._0x529ad4,0x8b7,0x954)+_0x976e36(0xaca,_0x25f34e._0x5f4866,0xe09,_0x25f34e._0x1782f3)+_0x201912(_0x25f34e._0x2174e0,'$6rX',0x777,0x392))+_0x31942b[_0x976e36(0x9a0,'2PrQ',0x795,0xbe2)]+(_0x201912(0x490,'3Y(#',0x731,0x50a)+_0x201912(_0x25f34e._0x55ed11,'&)0b',0x5f1,0x184)+_0x976e36(_0x25f34e._0x4a807b,_0x25f34e._0x210ab4,0x64f,_0x25f34e._0xb90014)+_0x201912(_0x25f34e._0x180bba,_0x25f34e._0x3497ce,0x443,0x104)+_0x976e36(0x9b9,'l^lf',_0x25f34e._0x182a8d,_0x25f34e._0x3b58af)+_0x201912(_0x25f34e._0x4ed4e0,_0x25f34e._0x1aef2c,0x553,0x4af)+_0x976e36(_0x25f34e._0x48ea7e,_0x25f34e._0x5bb284,_0x25f34e._0x3d5de3,_0x25f34e._0x1e244d)+_0x201912(_0x25f34e._0x29ebf8,_0x25f34e._0x14a83b,_0x25f34e._0x3f02a2,0x285)+_0x201912(_0x25f34e._0x28c81e,_0x25f34e._0x207534,_0x25f34e._0x225469,0xc93)+'|\x0a')+_0x3df58d[_0x976e36(_0x25f34e._0x2fa9cc,'#%z0',_0x25f34e._0x13c0c4,_0x25f34e._0x25eb91)]+(_0x976e36(_0x25f34e._0xaf4ac4,_0x25f34e._0x1e7048,0x9f6,_0x25f34e._0xb91f3c)+'方式\x0a\x0a使用\x20`se'+_0x976e36(0xc3d,_0x25f34e._0x44f105,_0x25f34e._0x46da99,0x881)+_0x201912(0x13c,'V)bU',_0x25f34e._0x4af50d,0x1be)+_0x976e36(_0x25f34e._0x2e9346,_0x25f34e._0x2c90a8,0x813,0x900)+_0x976e36(_0x25f34e._0x4b7176,'2m0$',_0x25f34e._0x481807,0x84c)+_0x976e36(0xba3,'KDG1',0x72f,0xd60)+_0x976e36(0x66c,_0x25f34e._0x2b1f2b,_0x25f34e._0x5e51fa,_0x25f34e._0x765878)+_0x201912(_0x25f34e._0x2e7bcb,_0x25f34e._0x2c90a8,_0x25f34e._0x301ca0,_0x25f34e._0x22f02a)+_0x976e36(0x7ca,_0x25f34e._0xcc4099,0x424,0xa7e)+_0x201912(_0x25f34e._0x161791,_0x25f34e._0x27f787,_0x25f34e._0x49dd75,_0x25f34e._0xf96f5e));else{const _0x86d54d=_0x3fa769[_0x976e36(_0x25f34e._0x5738ba,'Foj6',_0x25f34e._0x54de98,_0x25f34e._0x140f04)](getJobName,_0x3644bb[_0x201912(_0x25f34e._0x1af0ac,'3Y(#',_0x25f34e._0x275f97,0xbf1)]);return'|\x20'+_0x3644bb['id']+_0x201912(0x5af,'k7fb',0x76d,0x71a)+_0x3644bb['id']+_0x201912(_0x25f34e._0x4bf1d6,'&)0b',0x901,0x915)+_0x86d54d+_0x976e36(0xa52,_0x25f34e._0x2ddee0,_0x25f34e._0x5a0511,_0x25f34e._0x29db19)+_0x3644bb[_0x976e36(_0x25f34e._0x19e9b2,_0x25f34e._0x2c90a8,0xbad,_0x25f34e._0x127197)]+'\x20|';}})[_0x5ddc44(_0x4ed88f._0x292239,0x33f,0x135,_0x4ed88f._0x1a8476)]('\x0a'):_0x5c3250(0x350,'2m0$',0x685,_0x4ed88f._0x213e71),_0x466090={};_0x466090[_0x5ddc44(_0x4ed88f._0x54ad05,0x6bb,-_0x4ed88f._0x910f3b,0x2dd)]=_0x4efe08?{'id':_0x4efe08['id'],'status':_0x4efe08[_0x5ddc44(_0x4ed88f._0x137d54,_0x4ed88f._0x63fd71,_0x4ed88f._0x52e6fb,_0x4ed88f._0x5667f6)]||_0x3fa769[_0x5ddc44(')9pR',0xa7a,0x86d,0x8ab)]}:null,_0x466090[_0x5ddc44(_0x4ed88f._0x40a0fa,0x6de,0xbff,_0x4ed88f._0xf2bce7)]=_0x132e35?{'id':_0x132e35['id'],'status':_0x132e35[_0x5c3250(0x89b,_0x4ed88f._0x3adbb0,0x723,0xb01)]||_0x3fa769[_0x5c3250(_0x4ed88f._0x5f33fe,'1mQU',_0x4ed88f._0x332152,_0x4ed88f._0x2a681b)]}:null;function _0x5ddc44(_0x31fe6e,_0x5e46c0,_0x1a41ed,_0x3c9c4a){return _0x259b54(_0x31fe6e,_0x5e46c0-0x9c,_0x1a41ed-0x1e4,_0x3c9c4a- -_0x2db106._0x45b514);}return _0x466090[_0x5c3250(0x347,'dx1J',0x61c,_0x4ed88f._0x1ec205)]=_0x35e5e9?{'id':_0x35e5e9['id'],'status':_0x35e5e9[_0x5c3250(_0x4ed88f._0x3d48c5,'!7O4',0x7e6,0x796)]||_0x3fa769[_0x5ddc44('!k$h',_0x4ed88f._0x4bdacc,_0x4ed88f._0x2373af,_0x4ed88f._0x2b4852)]}:null,_0x466090[_0x5c3250(_0x4ed88f._0x47a193,_0x4ed88f._0x1f3b86,0x9c6,_0x4ed88f._0x58a31e)+_0x5ddc44('Dsi5',0x653,0x50e,0x695)]=_0x470f3c,_0x466090[_0x5c3250(0x574,_0x4ed88f._0x137d54,_0x4ed88f._0x125d28,_0x4ed88f._0x1095fc)+_0x5c3250(_0x4ed88f._0x5d6054,'da@G',0x9af,0x844)]=_0x56a5ad,_0x466090[_0x5c3250(_0x4ed88f._0x12d3da,'hn9d',_0x4ed88f._0x3f38fc,0xc12)+_0x5ddc44(_0x4ed88f._0x4f98e5,_0x4ed88f._0x231013,_0x4ed88f._0x213acb,0x5a5)]=_0x288a73,_0x466090[_0x5ddc44(_0x4ed88f._0x1801a8,0x7a5,_0x4ed88f._0x49f3a5,_0x4ed88f._0x3a2784)+_0x5c3250(0xbc7,_0x4ed88f._0x2e24d7,0xcc9,0xfe0)]=_0x27198d,_0x466090[_0x5ddc44('HQvh',_0x4ed88f._0x4c558b,_0x4ed88f._0x2f3337,0x799)+'pTo']=_0x4918a7,_0x466090;}function getSkillPacksInfo(_0x13e452){const _0x465545={_0x1feb88:0xcfe,_0x18d5f5:0xbcc,_0x54459a:0x308,_0x131e83:0x405,_0x227ed1:'$6rX',_0x1763c7:'3Y(#',_0x17280d:0xa7a,_0x1b23e5:0xbc0,_0x5452e6:0xe08,_0x28fa53:0x8d1,_0x23b377:'93KN',_0x4a2603:0xc65,_0x1286d6:0xc9a,_0x295418:0xa37,_0x89788c:0x72d,_0x4616da:0x7b2,_0xd310a:'1mQU',_0x3ed10a:0x756,_0x49cb3b:0xbb9,_0x6c21c9:'suJD',_0x4af650:0x1e9,_0x3ec431:'#pB[',_0x284e79:0x3d,_0x12765b:'ebUi',_0x5b6120:0x6e3,_0x56caa9:0x96b,_0x2c69a4:'ECfd',_0xbf4e0:'dx1J',_0x1a289d:0xa16,_0x345a97:0x9e2,_0x215fd1:0x7ae,_0x2d7a17:0x665,_0xa2150:0x670,_0x2a5265:0x274,_0x25c8b7:'2m0$',_0x22a7b6:0x0,_0x219d97:0x3a7,_0x319228:0x258,_0x25e694:0x2a0,_0x48b95e:'l^lf',_0x4a3d8a:0x8a6,_0x2faf02:0xa4e,_0x57375c:'!7O4',_0x323f7c:0x9d2,_0x4461d1:'Ybev',_0x2e742d:0xeeb,_0x1317b1:0x7a7,_0x380e35:'Dsi5',_0x307697:0x6e6,_0x1e01d7:0xa52,_0x2ff1c7:')9w@',_0x1297b3:0xa27,_0x9222f:0xe03,_0x240680:0xd9a,_0x1fc90c:0x5db,_0x3d3a23:0x514,_0x25e316:0x7e2,_0x134742:0x2c3,_0x55cc1b:0x2f7,_0x1c43d5:0xa07,_0x494ae7:0x2b,_0x15b97a:0x980,_0x3040b3:0x956,_0x2dbaa2:'*LpW',_0x2ab777:0x616,_0x15b90d:0x5c7,_0x1dad28:']GM1',_0x17d62f:0xeda,_0x126a87:0xafa,_0x5aedfa:0x7d8,_0x49c5fc:'ECfd',_0x332bed:0xa15,_0x115632:0x7f0,_0x55e607:0x393,_0x4414d6:0xaca,_0x5d2936:0x83c,_0x11e88e:0x825,_0x166afc:0xfa0,_0x19343a:0xda1,_0x5627d3:0x1129,_0x39496c:0x41b,_0x33cb0a:0x5d2,_0x3cee88:0x3b1,_0x134f33:'Ybev',_0x5cb807:0x60c,_0xe4506d:0x9b6,_0x50d7e0:'k7fb',_0x487cda:0x435,_0x2ab8b4:0x72e,_0xab5d16:')$Hz',_0x1de36f:0x85a,_0x279aba:0x9eb,_0x29ae24:0x198,_0x210bcc:0x2a4,_0x3b85db:0x243,_0xf580ed:0x14e,_0x8be61d:0x270,_0x2adcb5:'LaEV',_0x3795a9:0x720,_0x1ad11f:'Foj6',_0x4fac33:0xfa1,_0x4422ec:0xca3,_0x5dbe69:0x6ab,_0x1334ed:0x9d3,_0x33c0d8:0x204,_0x2901c6:0x71},_0x3d31a9={_0x5b4a5e:0xff},_0x431806={_0x154ba8:0x88,_0x270d77:0x10e},_0x1f6b32={'YfzMq':function(_0x423da3,_0x458dc7){return _0x423da3 instanceof _0x458dc7;},'vGKTr':function(_0x40266d,_0x1cbdb0){return _0x40266d(_0x1cbdb0);},'MlhTs':function(_0x4172dd,_0x49ffc3){return _0x4172dd===_0x49ffc3;},'BefnY':_0x3e3b2b('suJD',_0x465545._0x1feb88,_0x465545._0x18d5f5,0xd89),'mSWyv':function(_0x10c11f,_0x4da939){return _0x10c11f<_0x4da939;},'Jwupz':function(_0xc63b6f,_0x5caf32){return _0xc63b6f!==_0x5caf32;},'aEHyh':_0xd7db2c(_0x465545._0x54459a,0x87,_0x465545._0x131e83,_0x465545._0x227ed1),'IgKrQ':_0x3e3b2b(_0x465545._0x1763c7,_0x465545._0x17280d,_0x465545._0x1b23e5,_0x465545._0x5452e6),'Uioll':_0xd7db2c(_0x465545._0x28fa53,0x6e7,0x95a,_0x465545._0x23b377),'wdAXB':function(_0x14183e,_0x2820fe){return _0x14183e>_0x2820fe;},'FIYka':_0x3e3b2b('Ybev',0xd35,_0x465545._0x4a2603,_0x465545._0x1286d6),'aYRkf':function(_0xc085f7,_0x2f9c25){return _0xc085f7>_0x2f9c25;},'EkTLb':function(_0x1c0857,_0x34a29b){return _0x1c0857>_0x34a29b;}};function _0x3e3b2b(_0x4e75e6,_0xfda8f1,_0x510a4f,_0x48d12d){return _0x5bf319(_0x4e75e6-0x8b,_0x510a4f-_0x431806._0x154ba8,_0x4e75e6,_0x48d12d-_0x431806._0x270d77);}const _0x487080=job_repo_1[_0x3e3b2b('KDG1',0x778,_0x465545._0x295418,0x5c4)+'ory'][_0xd7db2c(0x7d1,_0x465545._0x89788c,_0x465545._0x4616da,_0x465545._0xd310a)+'ckIds'](_0x13e452);function _0xd7db2c(_0x54e8e6,_0x10d6e7,_0x99918c,_0x11c22e){return _0x259b54(_0x11c22e,_0x10d6e7-0x15a,_0x99918c-_0x3d31a9._0x5b4a5e,_0x54e8e6- -0x14f);}if(_0x1f6b32[_0x3e3b2b('z8mf',_0x465545._0x3ed10a,_0x465545._0x49cb3b,0x9c5)](_0x487080[_0xd7db2c(0x27,-0x3bc,-0x374,_0x465545._0x6c21c9)],-0x9df*-0x1+-0x7ce+-0x1*0x211))return _0x1f6b32[_0xd7db2c(_0x465545._0x4af650,0x4e0,-0x25a,_0x465545._0x3ec431)];const _0x4d11a8=[];for(let _0x56bfec=0x4a*0x49+0xc59+-0x2173;_0x1f6b32[_0xd7db2c(0x70,_0x465545._0x284e79,0x3ad,_0x465545._0x12765b)](_0x56bfec,_0x487080[_0xd7db2c(_0x465545._0x5b6120,_0x465545._0x56caa9,0x4c0,_0x465545._0x2c69a4)]);_0x56bfec++){if(_0x1f6b32[_0x3e3b2b(_0x465545._0xbf4e0,_0x465545._0x1a289d,_0x465545._0x345a97,_0x465545._0x215fd1)](_0x1f6b32[_0xd7db2c(_0x465545._0x2d7a17,_0x465545._0xa2150,0x84f,'V)bU')],_0x1f6b32[_0xd7db2c(0x560,0x6fe,_0x465545._0x2a5265,_0x465545._0x25c8b7)])){const _0x1d106c=_0x487080[_0x56bfec],_0x141f51=skill_pack_repo_1[_0xd7db2c(_0x465545._0x22a7b6,-_0x465545._0x219d97,-_0x465545._0x319228,'N%cE')+'epository'][_0xd7db2c(0x178,0x4e2,-_0x465545._0x25e694,_0x465545._0x48b95e)](_0x1d106c);if(_0x141f51){if(_0x1f6b32['Jwupz'](_0x1f6b32[_0x3e3b2b('93KN',0xcc0,0x987,0xc5b)],_0x1f6b32[_0x3e3b2b(_0x465545._0xbf4e0,_0x465545._0x4a3d8a,_0x465545._0x2faf02,0x708)]))_0x591c50[_0x3e3b2b(_0x465545._0x57375c,_0x465545._0x323f7c,0xd51,0x10b1)][_0x3e3b2b('1mQU',0x6d7,0x618,0x9ca)]={};else{_0x1f6b32['wdAXB'](_0x56bfec,0xf8*-0x25+0x29f*-0x1+-0xe5*-0x2b)&&(_0x4d11a8['push'](''),_0x4d11a8[_0xd7db2c(0x6cd,0x7b6,0x5c6,_0x465545._0x4461d1)](_0x1f6b32[_0x3e3b2b('#pB[',_0x465545._0x2e742d,0xa7c,_0x465545._0x1317b1)]),_0x4d11a8[_0x3e3b2b(_0x465545._0x380e35,_0x465545._0x307697,_0x465545._0x1e01d7,0xd88)](''));_0x4d11a8[_0x3e3b2b(_0x465545._0x2ff1c7,_0x465545._0x1297b3,_0x465545._0x9222f,_0x465545._0x240680)](_0x3e3b2b('hn9d',0x750,_0x465545._0x1fc90c,0x587)+_0x1d106c);if(_0x141f51[_0xd7db2c(0x7c6,0x5d9,0x4ae,'93KN')+'n']){const _0x587224=_0x141f51[_0xd7db2c(_0x465545._0x3d3a23,_0x465545._0x25e316,0x146,'KAAL')+'n'][_0xd7db2c(_0x465545._0x134742,_0x465545._0x55cc1b,-0x198,'!7O4')]('\x0a')[-0x2*-0x80f+0x6*-0x249+-0x268]['trim']();_0x587224&&!_0x587224[_0xd7db2c(0x7b9,0x53d,_0x465545._0x1c43d5,_0x465545._0x2c69a4)]('适用')&&_0x4d11a8[_0xd7db2c(0x2bd,_0x465545._0x494ae7,0x5cf,'2m0$')]('>\x20'+_0x587224);}if(_0x141f51[_0x3e3b2b(')$Hz',0xbb5,0xcc4,0xe7e)]&&_0x1f6b32[_0x3e3b2b('dx1J',_0x465545._0x15b97a,0xa23,_0x465545._0x3040b3)](_0x141f51[_0x3e3b2b(_0x465545._0x2dbaa2,0x83b,0x644,0x2f7)]['length'],0x2*0x1001+-0x1*-0x427+-0x2429))for(const _0xd89e28 of _0x141f51[_0xd7db2c(_0x465545._0x2ab777,0x2fd,_0x465545._0x15b90d,_0x465545._0x1dad28)]){_0x4d11a8[_0x3e3b2b('#%z0',_0x465545._0x17d62f,_0x465545._0x126a87,_0x465545._0x5aedfa)](''),_0x4d11a8[_0x3e3b2b(_0x465545._0x49c5fc,_0x465545._0x332bed,_0x465545._0x115632,_0x465545._0x55e607)]('**'+_0xd89e28['title']+'**');const _0x9243a2=_0xd89e28[_0x3e3b2b('!7O4',_0x465545._0x4414d6,_0x465545._0x5d2936,_0x465545._0x11e88e)][_0x3e3b2b('LaEV',_0x465545._0x166afc,_0x465545._0x19343a,_0x465545._0x5627d3)]()[_0xd7db2c(_0x465545._0x39496c,_0x465545._0x33cb0a,_0x465545._0x3cee88,_0x465545._0x134f33)]('\x0a')[_0xd7db2c(_0x465545._0x5cb807,_0x465545._0xe4506d,0x706,_0x465545._0x50d7e0)](_0x3092c9=>_0x3092c9[_0x3e3b2b('k7fb',0xb9a,0x903,0x84a)]())[_0xd7db2c(_0x465545._0x487cda,0x1dd,_0x465545._0x2ab8b4,_0x465545._0xab5d16)](_0x57ff0c=>_0x57ff0c)[_0x3e3b2b('ECfd',0x958,_0x465545._0x1de36f,0x820)]('\x0a');_0x4d11a8[_0xd7db2c(0x6af,0x7e8,_0x465545._0x279aba,'hn9d')](_0x9243a2);}}}}else return{'success':![],'message':_0xd7db2c(_0x465545._0x29ae24,_0x465545._0x210bcc,-_0x465545._0x3b85db,_0x465545._0x57375c)+(_0x1f6b32[_0xd7db2c(0x684,0x5ca,0x8db,'c36g')](_0x5e7988,_0x27c2ed)?_0x315188[_0xd7db2c(_0x465545._0xf580ed,0x20d,-_0x465545._0x8be61d,_0x465545._0x2adcb5)]:_0x1f6b32[_0xd7db2c(_0x465545._0x3795a9,0x834,0x7da,_0x465545._0x1ad11f)](_0x1cd1ef,_0x43628c))};}return _0x1f6b32['EkTLb'](_0x4d11a8[_0x3e3b2b('l^lf',_0x465545._0x4fac33,0xc15,_0x465545._0x4422ec)],0x1c01+0x4*-0x2+-0x1bf9)?_0x4d11a8[_0xd7db2c(0x5b6,_0x465545._0x5dbe69,_0x465545._0x1334ed,_0x465545._0x50d7e0)]('\x0a'):_0xd7db2c(_0x465545._0x33c0d8,0x5e3,_0x465545._0x2901c6,'ebUi');}function generateManagerTeamMembersDetail(_0x2b255e){const _0x247205={_0x4ab85a:'hn9d',_0x5ac9f8:0x6d8,_0x1e1256:')$Hz',_0xcd8445:0x4b,_0xad02d3:'Lh@)',_0x30a89e:0x3f5,_0x43aeb1:0xf7,_0x3f7ddd:'FtqP',_0x288693:0x269,_0x4eb193:0x3e1,_0x1ae982:0x59a,_0x29ec15:0x4d9,_0x2b5470:'VXA^',_0x3a59fa:0x8a,_0x4def45:0x128,_0x15c4cf:'2m0$',_0x1295bc:0xe,_0x19c6df:0x26a,_0x4421bd:0x20a,_0x10bbdf:'da@G',_0x5ea6bd:0x3f,_0x2dd55e:0x512,_0xbc6b83:')9w@',_0x53176e:0x770,_0x279ee0:0x998,_0x24bce5:']GM1',_0x393395:0x690,_0x14f378:'V23R',_0x541212:0x7c,_0x3144a8:0x1b8,_0x38aa65:0x14a,_0x4dfeab:'&)0b',_0x2693cf:0x554,_0x1a8254:0x70f,_0x20ff4c:']))d',_0x480439:0x648,_0x32d3b6:0xc6,_0x27e51f:0x2d4,_0x3d0a36:0x1c4,_0xc15a4b:0x1cf,_0x1681b4:'Ybev',_0x2d2a5c:0x419,_0x5f89b0:'c36g',_0x1b66ad:0xa10,_0x22c0d1:0x5b9,_0x1f55fd:0x83,_0x4f052d:0xbd,_0xfad93b:0x259,_0x27ecc3:0x649,_0x370ca0:0x41c,_0x4ed7b1:0x383,_0x18660c:0x58,_0xb8aa89:0x425,_0x3a968b:0x1fd,_0x4565e0:0x148,_0x511df6:0x589,_0x54ebd5:0x920,_0x2829bb:0x57a,_0x322a64:0x36f,_0x4071c4:0x35,_0x594047:'!7O4',_0x2b4300:0x817,_0x8eb1ae:0x333,_0x45facb:'k7fb',_0x370d57:0xe9,_0x28aa9:'93KN',_0xf6232:0x917,_0x1bb26a:0x4e4,_0x310f66:0x203,_0x52ecd0:0x6e0,_0x3c21c2:'l^lf',_0x521a7e:0x523,_0x41879b:0x31b,_0x32ab55:'Dsi5',_0x32fc7d:0x678,_0x4280b6:0x244,_0x3708eb:0x83,_0x326849:0x14a},_0xce81ca={_0x21bbe9:0x72,_0x255e4b:0x637},_0x31971c={_0x4df1f5:0x2c0,_0x27c6aa:'N%cE',_0x16e72b:0x653,_0x5f19c4:0x315,_0x272f13:0x796,_0x451ae0:'#%z0',_0x1f37af:0x33,_0x4095a6:0x9d9,_0x251a97:0x872,_0x5c3967:0x78a,_0x1b8f47:'GdD8',_0x39e157:0x3cc,_0x2c7a26:0xbe1,_0x1dfa44:0x93c,_0x2578aa:'hn9d',_0x41de04:0x840,_0x2628a4:0x659,_0x15968a:'z8mf',_0x49ab52:0x56d,_0x581e1d:'k7fb',_0x3bb6eb:0xe9},_0x83f63e={_0x5e893a:0xba},_0x2cb705={_0x124a26:0x118};function _0x2443b3(_0x4067d0,_0x2b459f,_0x1b5a7c,_0x371558){return _0x259b54(_0x4067d0,_0x2b459f-0x8a,_0x1b5a7c-_0x2cb705._0x124a26,_0x371558- -0x292);}const _0x66e9d9={'KKwvE':function(_0x3baa6c,_0x2b022a){return _0x3baa6c!==_0x2b022a;},'NoUtH':_0x4b87cf(_0x247205._0x4ab85a,0xee,_0x247205._0x5ac9f8,0x2c5),'AOdDQ':function(_0x36c280,_0x2a3126){return _0x36c280(_0x2a3126);},'AzAFu':'assistant','GCcEQ':function(_0x27942c,_0x5c4b66){return _0x27942c>_0x5c4b66;},'EOSqm':_0x4b87cf(_0x247205._0x1e1256,0x3a8,-_0x247205._0xcd8445,0x271)+_0x4b87cf(_0x247205._0xad02d3,-0x2b0,-_0x247205._0x30a89e,-_0x247205._0x43aeb1),'rWsXj':_0x4b87cf(_0x247205._0x3f7ddd,-0xb9,_0x247205._0x288693,0x366)},_0x432036=agent_repo_1[_0x2443b3('93KN',_0x247205._0x4eb193,_0x247205._0x1ae982,_0x247205._0x29ec15)+'itory'][_0x4b87cf(_0x247205._0x2b5470,_0x247205._0x3a59fa,-0x45d,-_0x247205._0x4def45)](_0x66e9d9[_0x2443b3(_0x247205._0x15c4cf,_0x247205._0x1295bc,-_0x247205._0x19c6df,_0x247205._0x4421bd)]),_0x10ada2=_0x66e9d9['GCcEQ'](_0x432036[_0x4b87cf(_0x247205._0x10bbdf,_0x247205._0x5ea6bd,_0x247205._0x2dd55e,0x496)],0x6*0x1a4+0x5*0x64+-0xbcc)?'|\x20'+_0x432036[-0x2504+-0x1fa+0x26fe]['id']+_0x2443b3(_0x247205._0xbc6b83,0x779,0x99f,_0x247205._0x53176e)+_0x432036[-0x29d+0x17da*-0x1+0x1a77]['id']+_0x2443b3(_0x247205._0x4ab85a,_0x247205._0x279ee0,0x3fa,0x6f4)+_0x432036[0x242e+-0x22a6+-0x188][_0x4b87cf(_0x247205._0x24bce5,_0x247205._0x393395,-0x84,0x2f8)]+_0x4b87cf(_0x247205._0x14f378,-0x31d,-_0x247205._0x541212,-0x36)+_0x432036[0x16f8+0x1eb5+-0x35ad][_0x4b87cf(_0x247205._0x10bbdf,-_0x247205._0x3144a8,-0x1f0,0x204)]+'\x20|':_0x66e9d9[_0x2443b3('Mpqc',_0x247205._0x38aa65,0x4ca,0x251)],_0x4ae884=agent_repo_1[_0x2443b3(_0x247205._0x4dfeab,0x9f1,_0x247205._0x2693cf,_0x247205._0x1a8254)+_0x4b87cf(_0x247205._0x20ff4c,0x2f8,0x1d5,_0x247205._0x480439)][_0x4b87cf(')9pR',_0x247205._0x32d3b6,0x216,0x37e)+_0x4b87cf('suJD',0xa38,_0x247205._0x27e51f,0x5d4)+_0x2443b3('2PrQ',_0x247205._0x3d0a36,_0x247205._0xc15a4b,0xc4)](_0x2b255e,_0x66e9d9[_0x4b87cf(_0x247205._0x1681b4,0xfe,0x396,_0x247205._0x2d2a5c)]),_0x1db71d=_0x66e9d9[_0x2443b3(_0x247205._0x5f89b0,_0x247205._0x1b66ad,0x668,_0x247205._0x22c0d1)](_0x4ae884[_0x4b87cf('VXA^',-0x311,0x393,-_0x247205._0x1f55fd)],0x1*0x916+-0xd6a+0x1*0x454)?_0x4ae884[_0x2443b3('Lh@)',-_0x247205._0x4f052d,-0x141,_0x247205._0xfad93b)](_0x200587=>'|\x20'+_0x200587['id']+_0x4b87cf('v2$P',0x4e3,0x45c,0x3f4)+_0x200587['id']+_0x2443b3('6]hf',-0xce,0x206,0x102)+_0x200587[_0x2443b3('l^lf',0x551,0x1b9,0x5b4)]+_0x4b87cf('ECfd',0x3f6,0x53e,0x470)+_0x200587[_0x4b87cf('ECfd',0x9c3,0x4ba,0x75a)]+'\x20|')[_0x4b87cf('lofD',0x475,_0x247205._0x27ecc3,_0x247205._0x370ca0)]('\x0a'):_0x66e9d9[_0x4b87cf('6]hf',_0x247205._0x4ed7b1,_0x247205._0x18660c,_0x247205._0xb8aa89)],_0x95bbcc=agent_repo_1[_0x4b87cf('PB2^',0x23f,_0x247205._0x3a968b,_0x247205._0x4565e0)+_0x2443b3('Ybev',_0x247205._0x511df6,_0x247205._0x54ebd5,_0x247205._0x2829bb)][_0x2443b3('loi5',0x34e,-_0x247205._0x322a64,-_0x247205._0x4071c4)+_0x2443b3(_0x247205._0x594047,_0x247205._0x2b4300,_0x247205._0x8eb1ae,0x409)+_0x4b87cf(_0x247205._0x45facb,-0x4f4,-0x242,-_0x247205._0x370d57)](_0x2b255e,_0x2443b3(_0x247205._0x28aa9,_0x247205._0xf6232,_0x247205._0x1bb26a,0x74f)),_0x2f4f0b=_0x95bbcc[_0x4b87cf('LaEV',0x2e4,0x30a,0x4ae)]>0x1aba+-0x502*0x3+-0xbb4*0x1?_0x95bbcc['map'](_0xd1bd3c=>{const _0x2f4f9c={_0x466cbf:0x1b3};function _0x3a3829(_0x44e659,_0xc2a1c9,_0x555df5,_0x4b0a66){return _0x4b87cf(_0x44e659,_0xc2a1c9-0xff,_0x555df5-_0x2f4f9c._0x466cbf,_0x555df5-0x202);}function _0x22efc6(_0x4aa904,_0x5921a2,_0x1e5a3d,_0x1f4b8e){return _0x2443b3(_0x1e5a3d,_0x5921a2-_0x83f63e._0x5e893a,_0x1e5a3d-0x1e9,_0x1f4b8e-0x14c);}if(_0x66e9d9[_0x22efc6(0x2ec,0x4ff,'hn9d',_0x31971c._0x4df1f5)](_0x66e9d9[_0x22efc6(-0x34e,-0x1b5,'KDG1',0x7f)],_0x66e9d9[_0x3a3829(_0x31971c._0x27c6aa,0x43c,_0x31971c._0x16e72b,_0x31971c._0x5f19c4)]))_0x3186d8=_0x6203e2[_0x3a3829('6]hf',_0x31971c._0x272f13,0x3cc,-0x35)](_0x580d13)[_0x3a3829(_0x31971c._0x451ae0,-_0x31971c._0x1f37af,0x27a,0x21d)](_0x32c8a2);else{const _0x3c8fa5=_0x66e9d9[_0x22efc6(_0x31971c._0x4095a6,_0x31971c._0x251a97,'dx1J',_0x31971c._0x5c3967)](getJobName,_0xd1bd3c[_0x22efc6(0x530,0x73d,_0x31971c._0x1b8f47,_0x31971c._0x39e157)]);return'|\x20'+_0xd1bd3c['id']+_0x3a3829(_0x31971c._0x1b8f47,_0x31971c._0x2c7a26,_0x31971c._0x1dfa44,0x600)+_0xd1bd3c['id']+_0x22efc6(0x945,0x412,_0x31971c._0x2578aa,_0x31971c._0x41de04)+_0x3c8fa5+_0x22efc6(0x87f,_0x31971c._0x2628a4,_0x31971c._0x15968a,_0x31971c._0x49ab52)+_0xd1bd3c[_0x3a3829(_0x31971c._0x581e1d,0x3ee,0x322,_0x31971c._0x3bb6eb)]+'\x20|';}})[_0x4b87cf('k7fb',_0x247205._0x310f66,_0x247205._0x52ecd0,0x48a)]('\x0a'):'|\x20-\x20|\x20-\x20|\x20'+_0x4b87cf(_0x247205._0x3c21c2,_0x247205._0x521a7e,_0x247205._0x41879b,0x54a);function _0x4b87cf(_0x5c304d,_0x134ab1,_0x122fc7,_0x2c7a31){return _0x5bf319(_0x5c304d-_0xce81ca._0x21bbe9,_0x2c7a31- -_0xce81ca._0x255e4b,_0x5c304d,_0x2c7a31-0x120);}const _0x9ef8cc={};return _0x9ef8cc[_0x2443b3(_0x247205._0x32ab55,_0x247205._0x32fc7d,0x79,_0x247205._0x4280b6)]=_0x10ada2,_0x9ef8cc[_0x4b87cf('loi5',_0x247205._0x3708eb,0x2dc,0x281)]=_0x1db71d,_0x9ef8cc[_0x4b87cf(_0x247205._0x1681b4,_0x247205._0x326849,0x22,0x219)]=_0x2f4f0b,_0x9ef8cc;}function generateReviewerTeamMembersDetail(_0x38d0ca){const _0x1a58da={_0x252750:0xdb9,_0x7543f3:0xad7,_0x383ebe:0xa56,_0x12bd85:0x3db,_0x34fcc2:0x7b3,_0xc6c61:0x888,_0x4ba7ab:0x21f,_0xfb094c:0xa72,_0x11adc1:0xb18,_0x449c3c:0xa9f,_0x883464:0xb8a,_0x44fbc6:0x3f2,_0x36245c:0x2ab,_0x3835a5:0x33f,_0x5606ae:'KDG1',_0x5a9063:0xd06,_0x58a703:0x27e,_0x4c8a42:0x630,_0x4e2328:'suJD',_0x3e2326:0x6ae,_0xfd08ec:0x57e,_0x6a9ae8:0xad5,_0x36fc5e:0xecf,_0x4c4011:0xa04,_0x23335d:0xe46,_0x524619:0xa27,_0x349a40:']))d',_0x4eb4fe:0x793,_0x340019:'l^lf',_0x16ae8a:0x43c,_0x254a1b:0x6d4,_0x14796c:0x5a9,_0x884a72:0x444,_0x45a904:0x5b6,_0x52b76f:0x8ac,_0x1f314f:0x505,_0x211749:0xb08,_0x1995f5:'2m0$',_0x5ae768:0x37e,_0x2fada7:0x6c5,_0x12220d:0x36b,_0x2aa0d8:0x4e8},_0x1dabb3={_0x2147c4:0x10f,_0x3154c8:0x11b},_0x55c07d={_0xe7d2b3:0x126,_0x4674c2:0x2ad,_0x4051b6:0xf9},_0x3b3b68={_0x305f8f:0xcd,_0x199207:0x2fe,_0x217381:0x33b,_0x1132ee:'Mpqc',_0x1612ec:0x78,_0x7c68fb:'3Y(#',_0x4ccead:0x28e,_0x43812f:'2PrQ',_0x564a24:0x6fc,_0x35098a:0x248,_0x8671a2:0x75,_0xa28f1e:0x21d},_0x2bf2ac={_0x57e0b9:0x53c},_0x3a0bcb={_0x1a9770:0x360,_0x565f2b:0x62,_0x30b7f0:0x139},_0x1cc572={'TfSdg':function(_0x184695,_0x1d857f){return _0x184695(_0x1d857f);},'qxzTu':_0x5c0705(_0x1a58da._0x252750,_0x1a58da._0x7543f3,'6]hf',_0x1a58da._0x383ebe),'hpKJp':function(_0x234cc4,_0x322fbf){return _0x234cc4>_0x322fbf;},'EsBob':_0x5d0890(0x48d,'ebUi',_0x1a58da._0x12bd85,0x56d)+_0x5d0890(0x42b,'c36g',0x43a,0x520)},_0x4a77bd=agent_repo_1[_0x5d0890(0x556,'7k]n',0x264,_0x1a58da._0x34fcc2)+_0x5d0890(0xb1f,'1mQU',_0x1a58da._0xc6c61,0x97d)][_0x5d0890(0x66f,'*LpW',_0x1a58da._0x4ba7ab,0x442)+_0x5c0705(_0x1a58da._0xfb094c,0x7e3,'l^lf',0x865)+_0x5d0890(0xc44,'V)bU',_0x1a58da._0x11adc1,_0x1a58da._0x449c3c)](_0x38d0ca,_0x1cc572[_0x5d0890(_0x1a58da._0x883464,'Q]KY',0xa83,0xd0f)]),_0x3c8484=_0x1cc572[_0x5d0890(0x61e,'Foj6',_0x1a58da._0x44fbc6,0x5de)](_0x4a77bd[_0x5d0890(0x4ba,'dx1J',_0x1a58da._0x36245c,_0x1a58da._0x3835a5)],0x12e0+-0xd33+-0x5ad)?'|\x20'+_0x4a77bd[0x2*-0x1280+0x210e+0x3f2]['id']+_0x5c0705(0x8a8,0xaa0,_0x1a58da._0x5606ae,_0x1a58da._0x5a9063)+_0x4a77bd[0x161*0x17+0x67*0x14+-0xd41*0x3]['id']+_0x5c0705(0x46a,_0x1a58da._0x58a703,'N%cE',_0x1a58da._0x4c8a42)+_0x4a77bd[-0xc58+0x1*0xb53+0x105][_0x5d0890(0x87b,_0x1a58da._0x4e2328,0xaf6,_0x1a58da._0x3e2326)]+_0x5d0890(_0x1a58da._0xfd08ec,'Q]KY',0x720,0x52c)+_0x4a77bd[0x1b3c+0x7*-0x3cd+-0xa1][_0x5c0705(0xdcb,_0x1a58da._0x6a9ae8,'Foj6',_0x1a58da._0x36fc5e)]+'\x20|':_0x1cc572[_0x5d0890(_0x1a58da._0x4c4011,'V23R',_0x1a58da._0x23335d,_0x1a58da._0x524619)],_0x1c5e68=agent_repo_1[_0x5d0890(0x38d,_0x1a58da._0x349a40,_0x1a58da._0x4eb4fe,0x68f)+_0x5d0890(0x563,_0x1a58da._0x340019,0x4b5,0x2e0)]['findByDepa'+'rtmentAndR'+_0x5c0705(0x639,_0x1a58da._0x16ae8a,'Ybev',_0x1a58da._0x254a1b)](_0x38d0ca,'executor'),_0x2f0038=_0x1cc572[_0x5c0705(0x9e1,_0x1a58da._0x14796c,'HQvh',_0x1a58da._0x884a72)](_0x1c5e68[_0x5c0705(_0x1a58da._0x45a904,_0x1a58da._0x52b76f,'V23R',0xa4c)],-0x4*-0x9b1+-0x141*-0xf+-0x363*0x11)?_0x1c5e68[_0x5d0890(0x522,'lofD',_0x1a58da._0x1f314f,0x69b)](_0x4511cc=>{function _0x19be74(_0x278791,_0x2d3199,_0x3ce843,_0x39c131){return _0x5d0890(_0x278791- -_0x3a0bcb._0x1a9770,_0x39c131,_0x3ce843-_0x3a0bcb._0x565f2b,_0x39c131-_0x3a0bcb._0x30b7f0);}const _0x1c997f=_0x1cc572[_0xaa185d(-_0x3b3b68._0x305f8f,'Q]KY',_0x3b3b68._0x199207,_0x3b3b68._0x217381)](getJobName,_0x4511cc[_0xaa185d(0x5ba,_0x3b3b68._0x1132ee,0x642,0x6d3)]);function _0xaa185d(_0x400c0d,_0x23d47f,_0x3e9fe8,_0x491bba){return _0x5d0890(_0x400c0d- -_0x2bf2ac._0x57e0b9,_0x23d47f,_0x3e9fe8-0x14d,_0x491bba-0x120);}return'|\x20'+_0x4511cc['id']+_0x19be74(0x3e,0x431,-_0x3b3b68._0x1612ec,_0x3b3b68._0x7c68fb)+_0x4511cc['id']+_0xaa185d(_0x3b3b68._0x4ccead,_0x3b3b68._0x43812f,_0x3b3b68._0x564a24,_0x3b3b68._0x35098a)+_0x1c997f+'\x20|\x20'+_0x4511cc[_0xaa185d(_0x3b3b68._0x8671a2,'k7fb',_0x3b3b68._0xa28f1e,-0x1a4)]+'\x20|';})[_0x5c0705(0xc55,_0x1a58da._0x211749,_0x1a58da._0x1995f5,0xbcb)]('\x0a'):_0x1cc572[_0x5c0705(_0x1a58da._0x5ae768,0x2c9,'N%cE',0xf7)];function _0x5c0705(_0x237390,_0x26fd7f,_0x1944ca,_0x15ed8f){return _0x5bf319(_0x237390-_0x55c07d._0xe7d2b3,_0x26fd7f- -_0x55c07d._0x4674c2,_0x1944ca,_0x15ed8f-_0x55c07d._0x4051b6);}const _0x5e05a6={};_0x5e05a6[_0x5c0705(-0x9d,0x367,'c36g',0x713)]=_0x3c8484,_0x5e05a6[_0x5d0890(_0x1a58da._0x2fada7,'#%z0',_0x1a58da._0x12220d,_0x1a58da._0x2aa0d8)]=_0x2f0038;function _0x5d0890(_0x51689e,_0x42b946,_0x5238f4,_0x57c5b2){return _0x5bf319(_0x51689e-_0x1dabb3._0x2147c4,_0x51689e- -0x1a6,_0x42b946,_0x57c5b2-_0x1dabb3._0x3154c8);}return _0x5e05a6;}function generateExecutorTeamMembersDetail(_0x348810){const _0x16dc1b={_0x30add4:0x703,_0x18d79e:0x90c,_0x168ed7:'$6rX',_0x322155:0x2a4,_0x1d904e:0x43d,_0x4b1d49:'ebUi',_0x1e623b:0x9e0,_0x50e097:0x5a4,_0x53554f:0xbdf,_0x416679:0xf2a,_0x3f6340:'*LpW',_0x332caf:0x1b2,_0xc36ea8:'1mQU',_0x1138d9:0x114,_0x260df0:0x6d2,_0x3592f7:0x508,_0x26f159:0x15,_0x27c25d:0x369,_0x57c5a8:'2m0$',_0x515393:0x246,_0x615e8:'lofD',_0x1c1707:0xc09,_0x142369:0x33d,_0x14b30e:0x7bf,_0x5d55d5:0x55c,_0x584a63:0x73e,_0x1dca28:0x5e7,_0x4da1c8:'da@G',_0x16d476:0x3da,_0x3ac15a:0x8e,_0x59c555:0x16c,_0x30da0b:0x165,_0x3ad2ec:0x302,_0x192386:0x3b1,_0x4558ec:0x31,_0x1e0a54:0xae6,_0x143677:0x698,_0x5a98e4:0x441,_0x608274:'#%z0',_0x22fca9:'6]hf',_0x813ab:0x800,_0x1227a3:'hn9d',_0x2b0051:0x498,_0x265eec:0x1fb,_0x21be68:0x5cd,_0x157462:'KAAL',_0x5073ed:0x77a,_0x2b506a:0x6d6,_0x43dcdd:0x5c5,_0x1ec232:0x329,_0x29feee:0x743,_0x1a1821:0x35e,_0x44d9bb:0xac6,_0x1898b9:0xd2e,_0x131881:'V23R',_0x328e31:0xbcb,_0x45cb60:0xc2b,_0x4797be:0x128,_0x370873:'3Y(#',_0xf1b3e7:0x643,_0x1e78de:0x4e6,_0x5cc205:'Dsi5',_0x43edbc:0x205},_0x30db17={_0x3b83fe:0x1f,_0x54465d:0x1d9};function _0x58a670(_0xbf6ffe,_0x515759,_0x53bafb,_0x4ce323){return _0x259b54(_0x4ce323,_0x515759-_0x30db17._0x3b83fe,_0x53bafb-_0x30db17._0x54465d,_0x515759-0x235);}const _0x2e33b7={};function _0x3e5d8e(_0x15d58f,_0x34eb67,_0x27ad13,_0x2078bb){return _0x5bf319(_0x15d58f-0x17,_0x15d58f- -0x59b,_0x27ad13,_0x2078bb-0xca);}_0x2e33b7['AntMX']=_0x3e5d8e(_0x16dc1b._0x30add4,_0x16dc1b._0x18d79e,_0x16dc1b._0x168ed7,_0x16dc1b._0x322155),_0x2e33b7[_0x58a670(0x2bf,_0x16dc1b._0x1d904e,0x4d2,_0x16dc1b._0x4b1d49)]=function(_0x2ab87e,_0x5797a1){return _0x2ab87e>_0x5797a1;},_0x2e33b7[_0x58a670(0x85d,0x3fe,0x451,'KDG1')]=_0x58a670(0x945,_0x16dc1b._0x1e623b,_0x16dc1b._0x50e097,'GdD8')+_0x58a670(0x8f9,_0x16dc1b._0x53554f,_0x16dc1b._0x416679,_0x16dc1b._0x3f6340),_0x2e33b7[_0x3e5d8e(0x48b,_0x16dc1b._0x332caf,'Foj6',0x355)]=_0x3e5d8e(0x1dc,-0x19b,_0x16dc1b._0x168ed7,0x4e4);const _0x52aa38=_0x2e33b7,_0x492a02=agent_repo_1[_0x3e5d8e(0x223,-0x58,_0x16dc1b._0xc36ea8,_0x16dc1b._0x1138d9)+_0x3e5d8e(_0x16dc1b._0x260df0,0x83c,'LaEV',_0x16dc1b._0x3592f7)][_0x3e5d8e(-_0x16dc1b._0x26f159,-_0x16dc1b._0x27c25d,'Foj6',-0x332)+_0x3e5d8e(0x54b,0x662,_0x16dc1b._0x57c5a8,0x149)+_0x3e5d8e(0x5a,-0x18f,'7k]n',-0x28c)](_0x348810,_0x52aa38[_0x58a670(_0x16dc1b._0x515393,0x3a0,0x120,_0x16dc1b._0x615e8)]),_0x49581d=_0x52aa38[_0x58a670(0x849,0x88f,_0x16dc1b._0x1c1707,'KDG1')](_0x492a02[_0x3e5d8e(0x315,_0x16dc1b._0x142369,'#pB[',-0xb1)],-0x1*-0x128f+-0xbf9*-0x1+-0xf44*0x2)?'|\x20'+_0x492a02[0x1*-0x22c7+-0x15f2+0x38b9]['id']+_0x3e5d8e(_0x16dc1b._0x14b30e,0xa9a,'FtqP',_0x16dc1b._0x5d55d5)+_0x492a02[-0x12*0x115+0x8c3*-0x4+0x3686]['id']+_0x58a670(_0x16dc1b._0x584a63,_0x16dc1b._0x1dca28,0x6a3,_0x16dc1b._0x4da1c8)+_0x492a02[0x1c32+-0x1fb4*0x1+0x382][_0x3e5d8e(-0x1f,0x167,'LaEV',_0x16dc1b._0x16d476)]+_0x3e5d8e(-_0x16dc1b._0x3ac15a,-_0x16dc1b._0x59c555,'l^lf',0x394)+_0x492a02[-0xb34+0x215a+-0x1626][_0x3e5d8e(_0x16dc1b._0x30da0b,_0x16dc1b._0x3ad2ec,'GdD8',0x5c8)]+'\x20|':_0x52aa38[_0x58a670(0x454,_0x16dc1b._0x192386,0x740,_0x16dc1b._0x57c5a8)],_0x2ee43e=agent_repo_1[_0x3e5d8e(0x3c0,_0x16dc1b._0x4558ec,'lofD',0x2d2)+_0x58a670(0xe7f,_0x16dc1b._0x1e0a54,0xc1b,'LaEV')][_0x3e5d8e(_0x16dc1b._0x143677,_0x16dc1b._0x5a98e4,_0x16dc1b._0x608274,0x6a0)+_0x3e5d8e(0x337,0x354,_0x16dc1b._0x22fca9,0x1dd)+_0x58a670(0x6d7,0x9e5,_0x16dc1b._0x813ab,_0x16dc1b._0x1227a3)](_0x348810,_0x52aa38['srQqD']),_0x538fb6=_0x52aa38[_0x3e5d8e(0x616,_0x16dc1b._0x2b0051,'loi5',0x539)](_0x2ee43e[_0x58a670(0x3bc,0x433,0x6cf,'Foj6')],-0x8ee*0x3+-0x2e3+-0x1*-0x1dad)?'|\x20'+_0x2ee43e[-0xa9b+-0xc71+0x170c]['id']+_0x58a670(_0x16dc1b._0x265eec,0x4e5,_0x16dc1b._0x21be68,_0x16dc1b._0x157462)+_0x2ee43e[-0x9d+-0x1424+-0xe7*-0x17]['id']+_0x3e5d8e(0x5ca,_0x16dc1b._0x5073ed,'Foj6',_0x16dc1b._0x2b506a)+_0x2ee43e[0x138+0x136f+-0x14a7][_0x3e5d8e(0x48e,_0x16dc1b._0x43dcdd,'2PrQ',_0x16dc1b._0x1ec232)]+_0x3e5d8e(_0x16dc1b._0x29feee,_0x16dc1b._0x1a1821,'V)bU',0x66e)+_0x2ee43e[0x92e+0x1212+0xda*-0x20][_0x58a670(0x6fa,_0x16dc1b._0x44d9bb,_0x16dc1b._0x1898b9,_0x16dc1b._0x131881)]+'\x20|':_0x52aa38[_0x58a670(_0x16dc1b._0x328e31,_0x16dc1b._0x45cb60,0xb06,'$6rX')],_0x54a3e9={};return _0x54a3e9[_0x3e5d8e(0x65,_0x16dc1b._0x4797be,_0x16dc1b._0x370873,-0x317)]=_0x49581d,_0x54a3e9[_0x3e5d8e(_0x16dc1b._0xf1b3e7,_0x16dc1b._0x1e78de,_0x16dc1b._0x5cc205,_0x16dc1b._0x43edbc)]=_0x538fb6,_0x54a3e9;}function generateAssistantTeamMembersDetail(){const _0x51dbb7={_0x96c8b3:'LaEV',_0x108e57:0x8c4,_0x27f371:0x8d2,_0x45e6dd:'c36g',_0x1ed016:0x58e,_0x1674f9:0x7a5,_0x11e1b5:0x567,_0x57b4ce:0x890,_0xf22f58:0xf2e,_0x59364d:'hn9d',_0x59f014:0x5a5,_0x707651:0x115f,_0x858c2b:0xd1b,_0x3c9ed9:'#%z0',_0x51d5a9:0x5d8,_0x29d706:0x676,_0x4bcc32:'Bu(&',_0x5641d4:0x7c4,_0x5c8c19:0x70a,_0x3dd2d2:'v2$P',_0x119c52:0x63a,_0x326042:0x6d2,_0x3ba152:0xf5f,_0x11833e:0xf9d,_0x4d57a6:0xbe6,_0x4d1d3c:0x901,_0x527746:0x806,_0x25ce29:0x4ca,_0x27c0c6:0xbb1,_0x348083:0x841,_0x585080:0xad4,_0x519f3a:0x84c,_0x22d8e5:0x9da,_0x1a0c9f:0x3f6,_0x1f4bf9:0x768,_0x178ce3:0x6f1,_0x30699e:')9pR',_0x2bfe5c:0x6ff,_0x532112:0x6ba,_0x1d3c2a:0x32e,_0x33cdf2:')$Hz',_0x295081:0x7de,_0x519017:0xae0,_0x145a9b:'ebUi',_0x1d2a37:0xc73,_0x33eb93:0xb4a,_0x1403a5:0xe74,_0x888098:'2PrQ',_0x476e9a:0xee3,_0x48442f:0xe3d,_0xf8b4c9:0xdc1,_0x465ba8:0xc77,_0x1e3f99:0x93f,_0x3db8a6:0x5fc,_0xb56697:0x438,_0x630228:0x850,_0xca3e1:'HQvh',_0x310a12:0x9ca,_0x65d296:'93KN',_0x345289:0xb29,_0x2aa474:0xe66,_0x4d01a1:0xbbc,_0x31a9ef:0x78b,_0x54ad04:0x781,_0x3023b8:'l^lf',_0x18ac4e:0xa0a,_0x22783f:0xa61,_0x584ffa:')9w@',_0x224547:0xd35,_0x45628f:0xd6a,_0x49ac9:0x8cf,_0xff99bb:0x6ad,_0x550f5a:'suJD',_0x54efe1:0x416,_0x237f05:0x48c,_0x46808b:0x4cf,_0x267828:'ECfd',_0x1bd643:0xdd7,_0x13fd4b:0xe17,_0x4a3233:0xe29,_0x51732d:0x9cb,_0x96def0:0x9dc,_0x2ecfd8:0xce,_0x72a238:'VXA^',_0x376fec:0x697,_0x95f95d:'Q]KY',_0x5a9c5a:0xfb8,_0x2564aa:'Q]KY',_0xed95c1:0xb5f,_0x128c7d:0xd0d,_0x3da928:'2m0$',_0x17fa61:0x555,_0x418b17:0xb44,_0x1591ae:0x85d,_0x4daba7:'VXA^',_0x542512:0xbaf,_0x1378f6:0xb57,_0x5287ef:0xba5,_0x19f12f:'k7fb',_0x5e11a0:0xde1,_0x4f995e:0x972,_0x1dc1b8:0xdd2,_0x193f0e:0xc86,_0x52f373:']))d',_0x196578:0xf72,_0x159a81:'dx1J',_0x5d3a68:0x62f,_0x3638ac:0x84f,_0xccd222:'Mpqc',_0x47078f:0x6ae,_0xf1d8e2:0xaa1,_0xbe2b33:0x7a2,_0x3ca09e:0x541,_0x39ad7a:0x913,_0x5dd6d3:0xef9,_0x18f2f8:0xc7c,_0x39969e:0x1195,_0x894340:']))d',_0x56634b:0x2d8,_0x331579:0x222,_0x22e199:0x5f2,_0x4addfc:'Lh@)',_0x2e238d:0x7c7,_0x455461:0xace,_0x5f34e6:'7k]n',_0x52301a:0x58c,_0x817c2d:0x304,_0xa2bd54:'2m0$',_0x3e4741:0xad9,_0x3cb1e7:0x778,_0x2194f8:0xaf6,_0x4cd2e1:'Dsi5',_0x303772:'*LpW',_0x4b86df:0x95d,_0x2b44ce:0xc89,_0x241d62:0xc10,_0x5a418a:'lofD',_0x20e3c9:0x4c1,_0x171b54:0x819,_0x423fba:'HQvh',_0x3dd062:0xc84,_0x4fa132:0x840,_0x4917f6:0x83c,_0x5c332e:'suJD',_0x2c78dc:0x99b,_0x40de74:'1mQU',_0x13675e:0xc43,_0x479274:0xa9b,_0x447246:0x10a3,_0x7669b3:')9pR',_0x23c46c:0xc32,_0xfbf815:0x885,_0x1745d3:'!k$h',_0x50fa0c:'c36g',_0x34f57b:0xcf1,_0x5d2be5:0xc9f,_0x3c49b2:0xc4a,_0x5c93c3:0xd81,_0x4376ec:0xd40,_0x465558:0x5a9,_0x1becb6:0x37c,_0x80a94f:0x762,_0x2ea385:'Ybev',_0x125d86:0x916,_0x5ec19b:0xad7,_0x45a34d:0x9e0,_0x1cddb8:0x3a1,_0x2f6833:0x9f4,_0x22bb29:0x7fe,_0x5a23dd:0x58f,_0x585edf:0xd17,_0x1373e2:0xa84,_0x24cd0c:'ECfd',_0x38c943:0x625,_0x3fe920:0xdfa,_0x970a27:0xb2c,_0x5fe15c:0x827,_0x5aa142:0x82c,_0x5d88b2:0x49a,_0x2a83a2:0x783,_0x21e867:0x8af,_0x3b32e9:'#pB[',_0x409108:0x8ef,_0x469d78:0xaf5,_0x96a184:'$6rX',_0x1846fa:0xb51,_0x14487d:0x7ae,_0x3e862c:'V)bU',_0x2bea4c:0xb7a,_0x157bde:'KAAL',_0x19454a:0xd71,_0x444e5e:0xe34,_0x12d18d:0x89a,_0x2d18b6:0x63a,_0x43cb0d:0x933,_0x9f85ab:0xa8c,_0x5d42d6:0xe0c,_0x1a4f8f:0xa01,_0x844bd1:0x9ef,_0x2d862f:0x7b7,_0x2a127b:0xc0f,_0x937b36:0xaaa,_0x3084b4:'V23R',_0x5c55b5:0x79c,_0x25e167:'6]hf',_0x9571e8:0xbaa,_0x151ad5:0x86a,_0x2d5b8d:'Mpqc',_0x24b57e:0x4a8,_0x354a18:0x6a7,_0x543e2e:'ebUi',_0x499141:0xb92,_0x4e8776:0x59e,_0x2da2e7:0x9ec,_0x3ad102:0xdf1,_0x33a4d3:0x978,_0x5d8054:0x85c,_0x4ce447:0x857,_0x49073e:0x88a,_0x110eb0:0x585,_0x1c43e7:0x644,_0x507911:0x35f,_0x13ba59:0x59d,_0x2ab8d3:0x819,_0x3fd65e:'&)0b',_0x206fb9:0xad1,_0x23d76e:'da@G',_0x25bfa8:0xc1f,_0x100c0c:0xc1a,_0x2809b8:0x10fe,_0x36d4a2:0xcc4,_0x430f4d:0x910,_0x2f7742:0x3ad,_0xdf9f0b:0x7d5,_0x2e0e9f:0xbaf,_0x3f543c:0x933,_0xe710b9:0xd1a,_0x20702f:0xf54,_0x120a96:0xc1f,_0x408fbd:0xcae,_0x3151b7:'Lh@)',_0x11eb68:0xc91,_0x496151:0x3bf,_0x58c620:0x849,_0x55a4b7:0xd0b,_0x15bae1:0xab4,_0x4ccb6c:0xe51,_0xbdfbf1:'Ybev',_0x2fbd96:0x8bc,_0x39fa19:0xaa5},_0x3ec311={_0x2f161b:0x11d},_0x45794c={'uVzaR':function(_0x29da2c,_0x38d6e8){return _0x29da2c(_0x38d6e8);},'VIuAi':function(_0x37e2f4,_0x55bb15){return _0x37e2f4(_0x55bb15);},'QmddK':function(_0x7bf2f,_0x594c74){return _0x7bf2f===_0x594c74;},'zGLPs':function(_0x4cbe59,_0x1be54f){return _0x4cbe59>_0x1be54f;},'qpzfU':_0x4f65b2(_0x51dbb7._0x96c8b3,_0x51dbb7._0x108e57,0xa98,0xd31),'FHeKL':_0x4f65b2(')9w@',0x7c6,_0x51dbb7._0x27f371,0x53f),'joYUm':_0x4f65b2(_0x51dbb7._0x45e6dd,0x588,_0x51dbb7._0x1ed016,_0x51dbb7._0x1674f9),'dQqLL':function(_0x5526d1,_0x4fdc19){return _0x5526d1!==_0x4fdc19;},'zYcbl':_0x4f65b2('Dsi5',0x966,_0x51dbb7._0x11e1b5,_0x51dbb7._0x57b4ce),'NyRVf':_0x4f65b2('hn9d',0xa0c,0xb8f,_0x51dbb7._0xf22f58),'KoImu':_0x3679dd(_0x51dbb7._0x59364d,0x46f,0x32d,_0x51dbb7._0x59f014)+_0x4f65b2('&)0b',_0x51dbb7._0x707651,_0x51dbb7._0x858c2b,0xfa8)+'\x20|','hzmJA':_0x3679dd(_0x51dbb7._0x3c9ed9,0x2e6,_0x51dbb7._0x51d5a9,_0x51dbb7._0x29d706)+_0x4f65b2(_0x51dbb7._0x4bcc32,_0x51dbb7._0x5641d4,_0x51dbb7._0x5c8c19,0x6b9)+_0x3679dd(_0x51dbb7._0x3dd2d2,0xbfb,0x5e4,0xa0b),'uLqua':_0x4f65b2('#pB[',_0x51dbb7._0x119c52,_0x51dbb7._0x326042,0x489),'NYvDC':function(_0x424bbf,_0x3b41c4){return _0x424bbf>_0x3b41c4;},'rVEjZ':_0x3679dd('2m0$',_0x51dbb7._0x3ba152,_0x51dbb7._0x11833e,_0x51dbb7._0x4d57a6),'mjCZr':_0x4f65b2('ECfd',_0x51dbb7._0x4d1d3c,0x948,0xa5b),'szeKK':_0x4f65b2('suJD',_0x51dbb7._0x527746,0x9a4,0xc91),'ebZPu':_0x4f65b2('dx1J',_0x51dbb7._0x25ce29,0x8d9,_0x51dbb7._0x27c0c6)+_0x3679dd(_0x51dbb7._0x45e6dd,_0x51dbb7._0x348083,0xce2,_0x51dbb7._0x585080)+_0x4f65b2('Ybev',_0x51dbb7._0x519f3a,_0x51dbb7._0x22d8e5,0x57d)+_0x3679dd('v2$P',_0x51dbb7._0x1a0c9f,_0x51dbb7._0x1f4bf9,_0x51dbb7._0x178ce3)+'-|','lncVL':_0x4f65b2(_0x51dbb7._0x30699e,_0x51dbb7._0x2bfe5c,_0x51dbb7._0x532112,_0x51dbb7._0x1d3c2a),'TMfmn':_0x3679dd(_0x51dbb7._0x33cdf2,0x971,_0x51dbb7._0x295081,0x88b),'cpYCi':function(_0x14a8ae,_0x268d13){return _0x14a8ae(_0x268d13);},'hAzPx':function(_0x38d4e6,_0xbb48f7){return _0x38d4e6>_0xbb48f7;},'LuFcC':_0x3679dd('6]hf',0x10d1,0xe94,0xd06),'YBxAV':_0x3679dd('KAAL',_0x51dbb7._0x519017,0x6df,0xb26),'bXAHC':_0x3679dd(_0x51dbb7._0x145a9b,_0x51dbb7._0x1d2a37,_0x51dbb7._0x33eb93,_0x51dbb7._0x1403a5)};function _0x4f65b2(_0x45d1a7,_0x2056cf,_0x318764,_0x324340){return _0x259b54(_0x45d1a7,_0x2056cf-0x13e,_0x318764-0xbf,_0x318764-0x336);}const _0x45b63d=dept_repo_1[_0x3679dd(_0x51dbb7._0x888098,_0x51dbb7._0x476e9a,_0x51dbb7._0x48442f,_0x51dbb7._0xf8b4c9)+_0x4f65b2(_0x51dbb7._0x59364d,_0x51dbb7._0x465ba8,_0x51dbb7._0x1e3f99,0xc1a)][_0x3679dd('c36g',0xd6c,0x917,0x9b0)]();function _0x3679dd(_0x24c01d,_0x1995c0,_0x308264,_0x18db24){return _0x5bf319(_0x24c01d-_0x3ec311._0x2f161b,_0x18db24-0x95,_0x24c01d,_0x18db24-0x2d);}const _0x552b3e=[],_0x424987=[],_0x36d1d3=[];for(const _0x53063f of _0x45b63d){if(_0x45794c[_0x3679dd('k7fb',_0x51dbb7._0x3db8a6,_0x51dbb7._0xb56697,_0x51dbb7._0x630228)]!==_0x45794c[_0x3679dd(_0x51dbb7._0xca3e1,0xcb3,0x84f,_0x51dbb7._0x310a12)]){const _0x465325=agent_repo_1[_0x3679dd(_0x51dbb7._0x65d296,_0x51dbb7._0x345289,_0x51dbb7._0x2aa474,_0x51dbb7._0x4d01a1)+_0x4f65b2('7k]n',0x99e,_0x51dbb7._0x31a9ef,_0x51dbb7._0x54ad04)]['findByDepa'+_0x4f65b2(_0x51dbb7._0x3023b8,0xb18,_0x51dbb7._0x18ac4e,_0x51dbb7._0x22783f)+_0x3679dd(_0x51dbb7._0x584ffa,_0x51dbb7._0x224547,_0x51dbb7._0x45628f,0xb7c)](_0x53063f['id'],_0x45794c[_0x3679dd('FtqP',_0x51dbb7._0x49ac9,_0x51dbb7._0xff99bb,0x79a)]);if(_0x45794c[_0x4f65b2(_0x51dbb7._0x550f5a,0x312,0x565,_0x51dbb7._0x54efe1)](_0x465325[_0x4f65b2('V23R',0xe18,0xad3,0x917)],-0xfa3*-0x1+-0x17*0x72+-0x565)){if(_0x45794c['dQqLL'](_0x45794c[_0x4f65b2('HQvh',_0x51dbb7._0x237f05,_0x51dbb7._0x46808b,0xf4)],_0x45794c[_0x3679dd(_0x51dbb7._0x267828,_0x51dbb7._0x1bd643,_0x51dbb7._0x13fd4b,_0x51dbb7._0x4a3233)])){_0x552b3e[_0x4f65b2(']GM1',0x8d7,_0x51dbb7._0x51732d,_0x51dbb7._0x96def0)](_0x4f65b2('KAAL',_0x51dbb7._0x2ecfd8,0x4b8,0x78f)+_0x53063f[_0x3679dd(_0x51dbb7._0x72a238,0x24f,0x980,_0x51dbb7._0x376fec)]),_0x552b3e[_0x4f65b2(_0x51dbb7._0x95f95d,0xeda,0xbf2,_0x51dbb7._0x5a9c5a)](''),_0x552b3e[_0x3679dd(_0x51dbb7._0x2564aa,0xc91,_0x51dbb7._0xed95c1,_0x51dbb7._0x128c7d)](_0x45794c[_0x3679dd('FtqP',0x65a,0xc2d,0x872)]),_0x552b3e[_0x3679dd(_0x51dbb7._0x3da928,_0x51dbb7._0x17fa61,_0x51dbb7._0x418b17,_0x51dbb7._0x1591ae)](_0x45794c['hzmJA']);for(const _0x5b840c of _0x465325){_0x552b3e[_0x3679dd('&)0b',0x9e4,0xbde,0x96b)]('|\x20'+_0x5b840c['id']+_0x3679dd(_0x51dbb7._0x4daba7,_0x51dbb7._0x542512,_0x51dbb7._0x1378f6,_0x51dbb7._0x5287ef)+_0x5b840c[_0x3679dd(_0x51dbb7._0x19f12f,_0x51dbb7._0x5e11a0,0x783,_0x51dbb7._0x4f995e)]+_0x3679dd('KAAL',_0x51dbb7._0x1dc1b8,0xc0b,_0x51dbb7._0x193f0e)+_0x5b840c[_0x4f65b2(_0x51dbb7._0x52f373,0xf51,0xb6c,_0x51dbb7._0x196578)]+'\x20|');}_0x552b3e[_0x4f65b2(_0x51dbb7._0x159a81,0x222,_0x51dbb7._0x5d3a68,_0x51dbb7._0x3638ac)]('');}else{const _0x868ccd=_0x45794c[_0x3679dd(_0x51dbb7._0xccd222,0x63e,_0x51dbb7._0x47078f,0x68f)](_0x4ae3b8,_0x3d1404);return _0x45794c['VIuAi'](_0x53dd3a,_0x868ccd);}}const _0x3bfca1=agent_repo_1[_0x3679dd(_0x51dbb7._0x145a9b,0x286,0x3f3,0x6c3)+_0x4f65b2('KAAL',_0x51dbb7._0xf1d8e2,0xb2f,_0x51dbb7._0xbe2b33)][_0x4f65b2('$6rX',0x86e,_0x51dbb7._0x3ca09e,_0x51dbb7._0x39ad7a)+_0x3679dd('!k$h',0xb9f,_0x51dbb7._0x5dd6d3,_0x51dbb7._0x18f2f8)+_0x3679dd('*LpW',_0x51dbb7._0x39969e,0xb5d,0xd88)](_0x53063f['id'],_0x45794c[_0x3679dd(_0x51dbb7._0x894340,0x6e0,_0x51dbb7._0x56634b,0x745)]);if(_0x45794c[_0x3679dd('GdD8',0x1b8,_0x51dbb7._0x331579,_0x51dbb7._0x22e199)](_0x3bfca1[_0x4f65b2(_0x51dbb7._0x4addfc,_0x51dbb7._0x2e238d,0x818,_0x51dbb7._0x455461)],0x86*0x3d+0xc14*0x2+-0x1c0b*0x2)){_0x424987[_0x4f65b2(_0x51dbb7._0x5f34e6,0x879,_0x51dbb7._0x52301a,_0x51dbb7._0x817c2d)](_0x4f65b2(_0x51dbb7._0xa2bd54,_0x51dbb7._0x3e4741,0x9e2,0x739)+_0x53063f[_0x4f65b2('*LpW',0x407,_0x51dbb7._0x3cb1e7,0x966)]),_0x424987[_0x3679dd(_0x51dbb7._0x33cdf2,_0x51dbb7._0x2194f8,0x6dd,0x9b3)](''),_0x424987[_0x4f65b2(_0x51dbb7._0x4cd2e1,0xd4f,0x944,0x8b5)](_0x45794c[_0x3679dd(_0x51dbb7._0x303772,_0x51dbb7._0x4b86df,_0x51dbb7._0x2b44ce,_0x51dbb7._0x241d62)]),_0x424987[_0x3679dd(_0x51dbb7._0x5a418a,0xb87,_0x51dbb7._0x20e3c9,_0x51dbb7._0x171b54)](_0x45794c[_0x4f65b2(_0x51dbb7._0x423fba,0xb98,0x8a2,0xc85)]);for(const _0x1c67ac of _0x3bfca1){_0x424987[_0x3679dd(_0x51dbb7._0xccd222,_0x51dbb7._0x3dd062,_0x51dbb7._0x4fa132,0x883)]('|\x20'+_0x1c67ac['id']+_0x3679dd('suJD',0x754,_0x51dbb7._0x4917f6,0x890)+_0x1c67ac[_0x4f65b2(_0x51dbb7._0x5c332e,0x6ec,_0x51dbb7._0x2c78dc,0x8fd)]+_0x3679dd(_0x51dbb7._0x40de74,_0x51dbb7._0x13675e,0xb10,0x833)+_0x1c67ac[_0x4f65b2('ECfd',_0x51dbb7._0x479274,0xd0b,_0x51dbb7._0x447246)]+'\x20|');}_0x424987['push']('');}const _0x526716=agent_repo_1[_0x3679dd(_0x51dbb7._0x7669b3,_0x51dbb7._0x23c46c,0x8f9,_0x51dbb7._0xfbf815)+_0x3679dd(_0x51dbb7._0x1745d3,_0x51dbb7._0x27c0c6,0xaed,0x815)][_0x4f65b2(_0x51dbb7._0x50fa0c,_0x51dbb7._0x34f57b,_0x51dbb7._0x5d2be5,_0x51dbb7._0x3c49b2)+_0x4f65b2('hn9d',_0x51dbb7._0x5c93c3,0xc32,_0x51dbb7._0x4376ec)+_0x3679dd('Mpqc',_0x51dbb7._0x465558,_0x51dbb7._0x1becb6,_0x51dbb7._0x80a94f)](_0x53063f['id'],_0x45794c[_0x4f65b2(_0x51dbb7._0x2ea385,0xc4b,_0x51dbb7._0x125d86,_0x51dbb7._0x5ec19b)]);if(_0x45794c[_0x4f65b2('&)0b',_0x51dbb7._0x45a34d,0x5ba,_0x51dbb7._0x1cddb8)](_0x526716[_0x3679dd('loi5',_0x51dbb7._0x2f6833,_0x51dbb7._0x22bb29,0xae4)],0xb62+0x1*0x2559+-0x30bb)){if(_0x45794c[_0x4f65b2(')$Hz',0x771,_0x51dbb7._0x1674f9,_0x51dbb7._0x5a23dd)](_0x45794c[_0x3679dd(_0x51dbb7._0x3dd2d2,_0x51dbb7._0x585edf,0x889,_0x51dbb7._0x1373e2)],_0x45794c['szeKK'])){_0x36d1d3[_0x3679dd(_0x51dbb7._0x24cd0c,0x64d,0x399,0x7fd)](_0x3679dd('!k$h',_0x51dbb7._0x38c943,0xb65,0x964)+_0x53063f[_0x4f65b2('7k]n',_0x51dbb7._0x3fe920,_0x51dbb7._0x970a27,0xcba)]),_0x36d1d3[_0x3679dd('PB2^',_0x51dbb7._0x5fe15c,_0x51dbb7._0x5aa142,0xa5e)](''),_0x36d1d3[_0x3679dd('#pB[',0xbe6,_0x51dbb7._0x5d88b2,_0x51dbb7._0x2a83a2)](_0x3679dd('GdD8',0xa9e,_0x51dbb7._0x21e867,0xca3)+_0x3679dd(_0x51dbb7._0x3b32e9,_0x51dbb7._0x409108,_0x51dbb7._0x469d78,0x7d6)+_0x3679dd(_0x51dbb7._0x96a184,_0x51dbb7._0x1846fa,0x88e,_0x51dbb7._0x14487d)+_0x3679dd(_0x51dbb7._0x3e862c,0xbb3,_0x51dbb7._0x2bea4c,0xa83)),_0x36d1d3[_0x4f65b2(_0x51dbb7._0x157bde,0x1058,_0x51dbb7._0x19454a,_0x51dbb7._0x444e5e)](_0x45794c[_0x4f65b2(_0x51dbb7._0x5c332e,_0x51dbb7._0x12d18d,_0x51dbb7._0x2d18b6,0x294)]);for(const _0x40d9bd of _0x526716){if(_0x45794c[_0x3679dd('!7O4',_0x51dbb7._0x43cb0d,_0x51dbb7._0x9f85ab,0xbdc)](_0x45794c[_0x4f65b2('3Y(#',_0x51dbb7._0x5d42d6,0xd68,_0x51dbb7._0x1a4f8f)],_0x45794c[_0x4f65b2('#pB[',0x1034,0xc49,0xd9c)])){const _0xc0d271=_0x45794c[_0x4f65b2('&)0b',0xb19,_0x51dbb7._0x844bd1,0xdcf)](getJobName,_0x40d9bd[_0x3679dd(_0x51dbb7._0x96a184,_0x51dbb7._0x2d862f,_0x51dbb7._0x2a127b,_0x51dbb7._0x937b36)]),_0x4db43a=_0x45794c[_0x4f65b2(_0x51dbb7._0x3dd2d2,0x10d9,0xd4c,0xcf2)](getSkillPackNames,_0x40d9bd[_0x4f65b2(_0x51dbb7._0x3084b4,0x933,0xb0f,_0x51dbb7._0x5c55b5)]);_0x36d1d3[_0x4f65b2(_0x51dbb7._0x25e167,0xcfc,_0x51dbb7._0x9571e8,_0x51dbb7._0x151ad5)]('|\x20'+_0x40d9bd['id']+_0x3679dd('V23R',_0x51dbb7._0x56634b,0xa2f,0x696)+_0x40d9bd[_0x4f65b2(_0x51dbb7._0x2d5b8d,_0x51dbb7._0x24b57e,_0x51dbb7._0x354a18,0x610)]+_0x3679dd(_0x51dbb7._0x543e2e,_0x51dbb7._0x499141,_0x51dbb7._0x4e8776,0x8b1)+_0xc0d271+_0x3679dd(']GM1',0xbdd,0xbbe,0x923)+_0x4db43a+_0x3679dd('hn9d',_0x51dbb7._0x2da2e7,0x74e,0x82b)+_0x40d9bd[_0x3679dd('KAAL',0xb19,0x899,0xc68)]+'\x20|');}else{if(!_0x1cfbd3)return'-';const _0x2df17e=_0x13c87b['jobReposit'+_0x3679dd(_0x51dbb7._0x1745d3,_0x51dbb7._0x3ad102,0x1014,0xbba)]['getSkillPa'+_0x3679dd('2m0$',0x161,_0x51dbb7._0x33a4d3,0x5cb)](_0x3786d1);if(_0x45794c[_0x4f65b2('hn9d',0x37f,_0x51dbb7._0xff99bb,0x3aa)](_0x2df17e[_0x3679dd('2m0$',_0x51dbb7._0x5d8054,_0x51dbb7._0x4ce447,_0x51dbb7._0x49073e)],-0x1365+-0x18*0x24+0x16c5))return'-';const _0x468225=[];for(const _0x1b166f of _0x2df17e){_0x468225[_0x4f65b2('93KN',_0x51dbb7._0x110eb0,_0x51dbb7._0x1c43e7,0x29a)](_0x1b166f);}return _0x45794c[_0x4f65b2('hn9d',0x628,0x55e,_0x51dbb7._0x507911)](_0x468225['length'],-0x1*-0x21f9+-0x1*0x184a+-0x9af)?_0x468225[_0x3679dd('V23R',_0x51dbb7._0x13ba59,0x730,0x85a)](',\x20'):'-';}}_0x36d1d3[_0x3679dd('lofD',0x6f6,0x463,_0x51dbb7._0x2ab8d3)]('');}else _0x3f4e3a[_0x3679dd(_0x51dbb7._0x3fd65e,0xb71,0x8e4,_0x51dbb7._0x206fb9)]={};}}else{const _0x1fb0cc={};return _0x1fb0cc[_0x3679dd(_0x51dbb7._0x23d76e,_0x51dbb7._0x25bfa8,_0x51dbb7._0x100c0c,0x8a3)]=![],_0x1fb0cc[_0x3679dd('KDG1',0x1021,_0x51dbb7._0x2809b8,_0x51dbb7._0x36d4a2)]=_0x4f65b2('1mQU',0xc8c,_0x51dbb7._0x430f4d,0x94f)+_0x45c325+_0x4f65b2('N%cE',_0x51dbb7._0x2f7742,_0x51dbb7._0xdf9f0b,0x778),_0x1fb0cc;}}return{'managers':_0x45794c[_0x3679dd('N%cE',_0x51dbb7._0x2e0e9f,_0x51dbb7._0x3f543c,0x7e0)](_0x552b3e[_0x4f65b2('Foj6',0x90c,0x534,0x832)],-0xf4e+0x56b*0x3+-0xf3)?_0x552b3e[_0x3679dd('hn9d',_0x51dbb7._0xe710b9,0xd93,0xa28)]('\x0a'):_0x45794c[_0x4f65b2(_0x51dbb7._0x52f373,_0x51dbb7._0x20702f,_0x51dbb7._0x120a96,_0x51dbb7._0x408fbd)],'reviewers':_0x45794c[_0x3679dd(_0x51dbb7._0x3151b7,0xbd3,_0x51dbb7._0x11eb68,0xe27)](_0x424987[_0x4f65b2(']))d',_0x51dbb7._0x496151,0x835,_0x51dbb7._0x58c620)],-0x23cc+-0x1*0x21b5+0x4581)?_0x424987[_0x3679dd('Foj6',_0x51dbb7._0x55a4b7,_0x51dbb7._0x15bae1,_0x51dbb7._0x4ccb6c)]('\x0a'):_0x45794c[_0x3679dd('c36g',0x6b5,_0x51dbb7._0x11e1b5,0x700)],'executors':_0x36d1d3[_0x3679dd(_0x51dbb7._0x72a238,0x2fe,0xa31,0x649)]>-0x254b+-0x18b1+-0x4*-0xf7f?_0x36d1d3[_0x3679dd(_0x51dbb7._0xbdfbf1,0x6dd,0xc78,0xb22)]('\x0a'):_0x45794c[_0x4f65b2('LaEV',_0x51dbb7._0x2fbd96,_0x51dbb7._0x39fa19,0x6c1)]};}function createAgentFiles(_0x518db6,_0x495cbb){const _0x31dd6a={_0x4fd31c:0x32a,_0x981afc:0x1f4,_0xbb4b0c:'2m0$',_0x18d552:0x4c,_0x87afeb:'da@G',_0x468191:0x48c,_0x3ea379:'Foj6',_0x2f7b15:0x755,_0x39015e:0x814,_0x32ff78:')9w@',_0x2906fa:0x411,_0x19f807:0xf8,_0x30302f:0x1cf,_0x57856c:0x58c,_0x1f5ef8:0x4a8,_0xa79718:0x31a,_0x50a36f:0xd7,_0x4a098f:0x7bd,_0xd1f377:0x52d,_0x48a89b:'GdD8',_0x185c74:0x391,_0x3cde2f:0x41,_0x37411c:0x2f9,_0x14904b:'Ybev',_0x524e99:0x4ac,_0x5313b2:0x8bb,_0x246527:0x78b,_0x307b5d:0x8ce,_0x39ca01:'z8mf',_0x3ef5f5:0x2e3,_0x54b2c0:0x642,_0x2b5913:'7k]n',_0x1d34b8:0x37a,_0x2b6b03:0x24d,_0x5bb442:0xfe,_0x146e0c:0x9e9,_0x2aff48:0x5ad,_0x1fa094:0x5cd},_0x15b3d8={_0x289134:0x1c7,_0x36311b:0xcb},_0x43bf34={_0x4f0549:0x3bc,_0x2d8c31:0x74},_0x2d1849={'FwVJD':function(_0xfef84a,_0x22f97c){return _0xfef84a(_0x22f97c);},'KpYAq':function(_0x49de57,_0x3a1d4e){return _0x49de57===_0x3a1d4e;},'xsxTR':_0x21d532('v2$P',_0x31dd6a._0x4fd31c,0xd1,0x2d0),'cxEJe':_0x311621(0x440,0x4d4,'#%z0',_0x31dd6a._0x981afc),'dKieG':function(_0x17eac8,_0x2eff43,_0x1f8a2c,_0x26acae,_0x5cb456){return _0x17eac8(_0x2eff43,_0x1f8a2c,_0x26acae,_0x5cb456);},'wQuWt':function(_0x5b035f,_0x384f36,_0x433029,_0x41a6a9){return _0x5b035f(_0x384f36,_0x433029,_0x41a6a9);}};function _0x311621(_0x4d712a,_0xd1f0b9,_0x3cdbad,_0x2d25c5){return _0x5bf319(_0x4d712a-0xe2,_0xd1f0b9- -_0x43bf34._0x4f0549,_0x3cdbad,_0x2d25c5-_0x43bf34._0x2d8c31);}function _0x21d532(_0x568189,_0xa8d05,_0x2a8995,_0x92ca3a){return _0x5bf319(_0x568189-_0x15b3d8._0x289134,_0x92ca3a- -0x53d,_0x568189,_0x92ca3a-_0x15b3d8._0x36311b);}const _0x50f232=(-0xc*-0xef+-0x3*-0x371+-0x1587,utils_1[_0x21d532(_0x31dd6a._0xbb4b0c,0x2d0,-_0x31dd6a._0x18d552,0x10e)+_0x21d532(_0x31dd6a._0x87afeb,_0x31dd6a._0x468191,0x4bf,0x635)])(_0x518db6),_0x1646f1=agent_template_repo_1['agentTempl'+_0x21d532(_0x31dd6a._0x3ea379,_0x31dd6a._0x2f7b15,_0x31dd6a._0x39015e,0x4cb)+'ory'][_0x21d532(_0x31dd6a._0x32ff78,-0x1,0x76f,_0x31dd6a._0x2906fa)](_0x495cbb[_0x21d532(_0x31dd6a._0x87afeb,-_0x31dd6a._0x19f807,0x539,_0x31dd6a._0x30302f)]);if(_0x1646f1){if(_0x2d1849[_0x21d532('1mQU',0x44b,_0x31dd6a._0x57856c,_0x31dd6a._0x1f5ef8)](_0x2d1849[_0x311621(0x52e,0x649,'#%z0',0x3df)],_0x2d1849[_0x21d532('2PrQ',_0x31dd6a._0xa79718,_0x31dd6a._0x50a36f,0x225)])){const _0xb3dc3c=_0x1a6726(_0x44f264[_0x311621(_0x31dd6a._0x4a098f,0x51f,'k7fb',_0x31dd6a._0xd1f377)]),_0x1b5124=_0x2d1849['FwVJD'](_0x27a5e5,_0x26dec6[_0x21d532(_0x31dd6a._0x48a89b,0x6d1,-0xb8,_0x31dd6a._0x185c74)]);_0x1fdfe7[_0x311621(_0x31dd6a._0x3cde2f,_0x31dd6a._0x37411c,'dx1J',0x220)]('|\x20'+_0x1bba13['id']+_0x21d532(_0x31dd6a._0x14904b,_0x31dd6a._0x524e99,0x648,_0x31dd6a._0x5313b2)+_0x3e3f9d[_0x311621(0x79e,0x643,'v2$P',_0x31dd6a._0x246527)]+'\x20|\x20'+_0xb3dc3c+_0x311621(_0x31dd6a._0x307b5d,0x6b3,_0x31dd6a._0x39ca01,0x852)+_0x1b5124+_0x21d532(')9w@',_0x31dd6a._0x3ef5f5,_0x31dd6a._0x54b2c0,0x274)+_0x47248a[_0x21d532(_0x31dd6a._0x2b5913,-0x376,-_0x31dd6a._0x1d34b8,0xa5)]+'\x20|');}else{_0x2d1849[_0x311621(0x165,_0x31dd6a._0x2b6b03,'&)0b',-_0x31dd6a._0x5bb442)](createAgentFilesFromTemplate,_0x518db6,_0x495cbb,_0x50f232,_0x1646f1);return;}}_0x2d1849[_0x311621(_0x31dd6a._0x146e0c,_0x31dd6a._0x2aff48,']))d',_0x31dd6a._0x1fa094)](createAgentFilesFallback,_0x518db6,_0x495cbb,_0x50f232);}function createAgentFilesFromTemplate(_0x283eea,_0x31b67e,_0x64cc1,_0x3071fa){const _0x44be16={_0x50dcfe:'KDG1',_0x45e152:0x890,_0x2ae5e0:0x7d8,_0xda355b:0xac7,_0x3a868e:0x844,_0x5f2da6:0x430,_0x290d97:0xb47,_0xa670da:0xd13,_0x164401:'&)0b',_0x284713:0xe66,_0x1add17:0x5c5,_0xea6582:0x666,_0x59b0fb:0x734,_0xc67843:0xd5f,_0xabae45:0x416,_0x1fb562:0x532,_0x287040:0x31d,_0xf1f926:0xabc,_0x3f899f:0x667,_0x296c5f:'6]hf',_0x544783:0xc30,_0x41bb70:0x91e,_0x2c007c:0xe87,_0x3c8bd9:'N%cE',_0x25b7f0:0x97e,_0x476e93:0x8e3,_0x1bb75b:0xa5c,_0x40481d:0xc1b,_0x129bdf:0x8f4,_0x2775ae:0xaf3,_0x56825d:0x5ee,_0x7d26ea:0xc51,_0x1107b4:0x822,_0x2e6755:'v2$P',_0x55d5b8:0x5bc,_0x3475cf:'93KN',_0x4aaff1:0xb67,_0x173c90:'V23R',_0x1ea054:0xdf1,_0x1803c7:0xd78,_0x186a9d:0xa23,_0x114cea:0xf12,_0x8aa3f1:0x724,_0x3ee3c6:0x451,_0x5021ca:0x408,_0x20c0e8:0x2e3,_0x1d9d6f:'$6rX',_0x3c1821:0x6e8,_0x315952:0x59e,_0x593114:0xb4b,_0x262ed3:0xc78,_0x55e4b1:0xf67,_0x59e076:0xab6,_0x4fe21b:0x9d0,_0x424622:0xb11,_0x56deca:')9w@',_0x1ed629:0x97f,_0x21ff46:0x7d9,_0x5cb07c:0xa59,_0x4934f3:0xcbc,_0x3a73b1:'ebUi',_0x154af:0xe36,_0x573e66:0x738,_0x4b622b:0xf1b,_0x24b679:0x637,_0x21dd62:'GdD8',_0x5b6ded:0x75b,_0x3b2dcf:0x6d9,_0x3bcaaa:0x524,_0x47534b:0xd28,_0x45931e:0x7eb,_0x4f9302:'#%z0',_0xa17e7c:'suJD',_0x1b6774:0x71f,_0x198274:0x6c3,_0x1cb25b:0x6c0,_0x425862:0x363,_0x58287b:0x12f,_0x1a44af:0x73f,_0x305253:'#%z0',_0x56bc0a:0x75f,_0xd5abe8:0xb10,_0x2cdab4:0x46b,_0x3f9bc2:'LaEV',_0x3f9bfb:0x57e,_0x5565fb:'HQvh',_0x5e396a:0xada,_0x564b84:0xb81,_0x8a09d0:'loi5',_0x4bcc50:'l^lf',_0x203d13:0xde9,_0x1477d5:0x1e6,_0x5e5d27:0x57f,_0x18dd5a:'&)0b',_0x2932e2:0xa5,_0x4b21a6:'KAAL',_0x36bcd:0x45c,_0x1616fa:0xa95,_0x153aed:0xcba,_0x2aadef:'lofD',_0x24d469:0x91d,_0x467991:0xb3c,_0x47c189:0x5c8,_0x578455:0x7e6,_0x3efcd4:0xbd4,_0x38a907:'3Y(#',_0x39ffd1:0x969,_0x28cd33:0x6df,_0x5317a2:'Q]KY',_0x3753d0:0x69a,_0x98a835:'KDG1',_0x8a227e:0x496,_0x3b2c28:'KDG1',_0x184f99:0x638,_0x418891:0xe48,_0x549869:0xd32,_0x3f7369:0xc59,_0x1e13cc:0xac5,_0x1123cd:'l^lf',_0x2a4fdb:0x10d1,_0x484273:0x346,_0x3f98c4:0x114,_0x646c7f:'93KN',_0x172d2c:0x376,_0x5534c7:')9pR',_0x56ada0:0xe84,_0x33bf06:0xfce},_0x499b33={_0x303a25:0x192,_0x2b8c26:0x197},_0x1ac678={_0x99f527:0x13d,_0x290015:0x455},_0x2f961a={'EFkFA':function(_0x1f2751,_0x376981,_0x505a9a,_0x5eff4b){return _0x1f2751(_0x376981,_0x505a9a,_0x5eff4b);},'ZeNcb':function(_0x5aee09,_0x16dbe7){return _0x5aee09(_0x16dbe7);},'rgQvN':function(_0x2559ef,_0x477126){return _0x2559ef===_0x477126;},'IHbZi':_0x1449d6(_0x44be16._0x50dcfe,_0x44be16._0x45e152,_0x44be16._0x2ae5e0,_0x44be16._0xda355b),'TzZVz':function(_0x40ddf0){return _0x40ddf0();},'GkMbn':function(_0x487a68,_0x3d4f02){return _0x487a68(_0x3d4f02);},'TBQOV':_0x1449d6('2PrQ',0x670,_0x44be16._0x3a868e,_0x44be16._0x5f2da6),'tfuEz':_0x4a1182(_0x44be16._0x290d97,_0x44be16._0xa670da,_0x44be16._0x164401,_0x44be16._0x284713),'mZmkj':_0x4a1182(0x9ad,_0x44be16._0x1add17,'$6rX',0x6a8),'VUjmj':_0x4a1182(0x9d9,_0x44be16._0xea6582,'1mQU',_0x44be16._0x59b0fb)},_0x1433b5=agent_template_repo_1[_0x4a1182(0xb64,0xce8,'1mQU',_0x44be16._0xc67843)+_0x4a1182(_0x44be16._0xabae45,_0x44be16._0x1fb562,'1mQU',_0x44be16._0x287040)+_0x4a1182(_0x44be16._0xf1f926,_0x44be16._0x3f899f,'hn9d',0x88c)][_0x1449d6('#%z0',0xcdd,0xde1,0xd98)](_0x3071fa['id']);if(!_0x1433b5){_0x2f961a['EFkFA'](createAgentFilesFallback,_0x283eea,_0x31b67e,_0x64cc1);return;}const _0x4b95ac=_0x2f961a[_0x1449d6(_0x44be16._0x296c5f,_0x44be16._0x544783,_0x44be16._0x41bb70,_0x44be16._0x2c007c)](parseTemplateContent,_0x1433b5),_0x12fbc9=_0x31b67e[_0x4a1182(0xb13,0xa38,_0x44be16._0x3c8bd9,_0x44be16._0x25b7f0)+'Id']?dept_repo_1[_0x4a1182(0xb07,0xab3,'2PrQ',_0x44be16._0x476e93)+_0x1449d6('Foj6',_0x44be16._0x1bb75b,_0x44be16._0x40481d,_0x44be16._0x129bdf)][_0x1449d6('Lh@)',0xd4b,_0x44be16._0x2775ae,0xba7)](_0x31b67e[_0x1449d6('z8mf',0x9e1,_0x44be16._0x56825d,_0x44be16._0x7d26ea)+'Id']):null,_0x45099e=_0x12fbc9?.[_0x1449d6('Dsi5',0x628,0x53f,_0x44be16._0x1107b4)]||'全局';function _0x1449d6(_0x367d89,_0x4f229f,_0x17450b,_0x32af3e){return _0x259b54(_0x367d89,_0x4f229f-0xa9,_0x17450b-_0x1ac678._0x99f527,_0x4f229f-_0x1ac678._0x290015);}const _0x3142e4=_0x31b67e[_0x1449d6(_0x44be16._0x2e6755,0x932,_0x44be16._0x55d5b8,0x796)]?_0x2f961a[_0x1449d6(_0x44be16._0x3475cf,_0x44be16._0x4aaff1,0xb09,0xf1d)](getJobName,_0x31b67e[_0x1449d6(_0x44be16._0x173c90,0xa6e,_0x44be16._0x1ea054,_0x44be16._0x1803c7)]):'',_0x37cfaa=generateTeamMembersSection(_0x31b67e[_0x1449d6('KAAL',_0x44be16._0x186a9d,0x9d2,0x91c)],_0x31b67e[_0x1449d6('#pB[',0x64a,0x34a,0x6b7)+'Id']);function _0x4a1182(_0x16ec89,_0x307cf9,_0x1a5759,_0x54b8db){return _0x259b54(_0x1a5759,_0x307cf9-0x1ec,_0x1a5759-_0x499b33._0x303a25,_0x16ec89-_0x499b33._0x2b8c26);}const _0x45ec1a={};_0x45ec1a[_0x1449d6('VXA^',0xb3b,_0x44be16._0x114cea,0xe25)]='',_0x45ec1a[_0x4a1182(_0x44be16._0x8aa3f1,0xaba,'6]hf',_0x44be16._0x3ee3c6)]='',_0x45ec1a[_0x4a1182(0x7ba,0x379,'LaEV',_0x44be16._0x5021ca)]='';const _0x26239e=_0x2f961a[_0x1449d6('VXA^',0x616,_0x44be16._0x20c0e8,0x916)](_0x31b67e[_0x1449d6(_0x44be16._0x1d9d6f,0xd03,0xeb3,0xcb0)],_0x2f961a[_0x1449d6('3Y(#',_0x44be16._0x3c1821,_0x44be16._0x315952,_0x44be16._0x593114)])?_0x2f961a[_0x1449d6(_0x44be16._0x50dcfe,0xe47,_0x44be16._0x262ed3,_0x44be16._0x55e4b1)](generateAssistantTeamMembersDetailForTemplate):_0x45ec1a,_0xbbb584=_0x31b67e[_0x1449d6('&)0b',_0x44be16._0x59e076,0x68d,_0x44be16._0x4fe21b)+'Id']?_0x2f961a[_0x4a1182(_0x44be16._0x424622,0xd01,_0x44be16._0x56deca,_0x44be16._0x1ed629)](getTeamInfo,_0x31b67e[_0x4a1182(_0x44be16._0x21ff46,_0x44be16._0x5cb07c,'*LpW',0x923)+'Id']):null,_0x41ed9c=_0x31b67e[_0x4a1182(0xae2,_0x44be16._0x4934f3,_0x44be16._0x3a73b1,_0x44be16._0x154af)]?_0x2f961a[_0x4a1182(0x582,_0x44be16._0x573e66,'LaEV',0x77e)](getSkillPacksInfo,_0x31b67e[_0x1449d6('VXA^',0xd24,0xa6d,_0x44be16._0x4b622b)]):_0x2f961a[_0x4a1182(0x5f2,_0x44be16._0x24b679,_0x44be16._0x21dd62,0xa05)],_0x5185b3={'{name}':_0x31b67e[_0x4a1182(_0x44be16._0x5b6ded,_0x44be16._0x3b2dcf,_0x44be16._0x50dcfe,_0x44be16._0x3bcaaa)],'{agentId}':_0x283eea,'{department}':_0x45099e,'{job}':_0x3142e4,'{workspace}':_0x64cc1,'{role}':_0x31b67e[_0x1449d6('3Y(#',0xa9b,0xb08,_0x44be16._0x47534b)],'{roleName}':getRoleName(_0x31b67e[_0x4a1182(_0x44be16._0x45931e,0x5e8,_0x44be16._0x4f9302,0x848)]),'{team_members_section}':_0x37cfaa,'{managers_detail}':_0x26239e[_0x1449d6(_0x44be16._0xa17e7c,_0x44be16._0x1b6774,_0x44be16._0x198274,_0x44be16._0x1cb25b)],'{reviewers_detail}':_0x26239e[_0x1449d6('k7fb',0xb13,0x8b4,0x9b6)],'{executors_detail}':_0x26239e[_0x4a1182(_0x44be16._0x425862,_0x44be16._0x58287b,'7k]n',_0x44be16._0x1a44af)],'{assistant_id}':_0xbbb584?.[_0x1449d6(_0x44be16._0x305253,_0x44be16._0x56bc0a,_0x44be16._0xd5abe8,_0x44be16._0x2cdab4)]?.['id']||'暂无','{assistant_status}':_0xbbb584?.[_0x1449d6(_0x44be16._0x3f9bc2,0x973,0xa01,0xbe5)]?.[_0x4a1182(_0x44be16._0x3f9bfb,0x624,_0x44be16._0x5565fb,0x700)]||'-','{manager_id}':_0xbbb584?.[_0x1449d6('KAAL',0xb4c,_0x44be16._0x5e396a,_0x44be16._0x564b84)]?.['id']||'暂无','{manager_status}':_0xbbb584?.[_0x4a1182(0x51e,0x5e4,_0x44be16._0x8a09d0,0x816)]?.[_0x1449d6(_0x44be16._0x4bcc50,_0x44be16._0x203d13,0x11b2,0xc61)]||'-','{reviewer_id}':_0xbbb584?.[_0x4a1182(0x37a,_0x44be16._0x1477d5,'ECfd',0x119)]?.['id']||'暂无','{reviewer_status}':_0xbbb584?.[_0x4a1182(_0x44be16._0x5e5d27,0x407,_0x44be16._0x18dd5a,0x3ce)]?.['status']||'-','{reviewers_list}':_0xbbb584?.['reviewersL'+_0x4a1182(0x3cc,-_0x44be16._0x2932e2,_0x44be16._0x4b21a6,_0x44be16._0x36bcd)]||_0x2f961a[_0x4a1182(0xb24,0xa28,'hn9d',_0x44be16._0x1616fa)],'{executors_list}':_0xbbb584?.[_0x1449d6('Foj6',_0x44be16._0x153aed,0xa0b,0x1063)+_0x4a1182(0x9fa,0xb42,_0x44be16._0x2aadef,0xbbd)]||_0x4a1182(_0x44be16._0x24d469,0xce7,'1mQU',_0x44be16._0x467991),'{feishu_group_id}':_0xbbb584?.[_0x4a1182(_0x44be16._0x47c189,_0x44be16._0x578455,')$Hz',0x523)+_0x4a1182(0x802,_0x44be16._0x3efcd4,_0x44be16._0x38a907,0xb8e)]||_0x2f961a[_0x1449d6(_0x44be16._0x21dd62,0x72c,_0x44be16._0x39ffd1,0x778)],'{feishu_group_name}':_0xbbb584?.[_0x4a1182(_0x44be16._0x28cd33,0x460,'Ybev',0x6c7)+_0x1449d6(_0x44be16._0x5317a2,0x980,0x57a,_0x44be16._0x3753d0)]||_0x2f961a[_0x1449d6(_0x44be16._0x98a835,0x8d5,0x682,0x4d5)],'{feishu_group_to}':_0xbbb584?.[_0x4a1182(0x893,0x5aa,'2PrQ',0x927)+_0x1449d6('&)0b',0x823,0x5b9,_0x44be16._0x8a227e)]||_0x2f961a[_0x4a1182(0x617,0x2eb,_0x44be16._0x3b2c28,0x7d2)],'{skillPacks}':_0x41ed9c};for(const [_0x304ac6,_0x15ee3d]of Object['entries'](_0x4b95ac)){let _0x5b20d7=_0x15ee3d;for(const [_0x54a177,_0x55650e]of Object[_0x1449d6(_0x44be16._0x2e6755,0x664,0x6db,_0x44be16._0x184f99)](_0x5185b3)){_0x5b20d7=_0x5b20d7[_0x4a1182(0xb4f,_0x44be16._0x418891,'3Y(#',_0x44be16._0x549869)](_0x54a177)[_0x4a1182(0xb90,_0x44be16._0x3f7369,'2m0$',_0x44be16._0x1e13cc)](_0x55650e);}const _0x1c0c79=path[_0x4a1182(0x73d,0xa9a,_0x44be16._0x1123cd,0xaed)](_0x64cc1,_0x304ac6);fs[_0x1449d6(_0x44be16._0x1d9d6f,0xd9a,0xc4f,_0x44be16._0x2a4fdb)+_0x4a1182(_0x44be16._0x484273,-0x6d,'loi5',_0x44be16._0x3f98c4)](_0x1c0c79,_0x5b20d7,_0x2f961a['VUjmj']);}(0x14cd+0x4*0x3fa+0x24b5*-0x1,auth_profiles_service_1[_0x4a1182(0x604,0x19e,_0x44be16._0x646c7f,_0x44be16._0x172d2c)+_0x1449d6(_0x44be16._0x5534c7,_0x44be16._0x56ada0,0xf65,_0x44be16._0x33bf06)+'es'])(_0x283eea);}function parseTemplateContent(_0x3fe751){const _0x279463={_0x38cecf:0x588,_0x2dc33c:0x17e,_0x284fef:'!k$h',_0x158ca9:0x1be,_0x286268:'KDG1',_0x2f60d3:0x3e6,_0x45fe36:0xab0,_0x58b0fb:'z8mf',_0x20889c:0x5c1,_0x3c40b2:0x7a6,_0x234df5:'N%cE',_0x164cfe:0x6ca,_0x2f86d3:0x51,_0x268813:0xd6,_0x4e8e45:0x9ee,_0x57facc:0x606,_0x25af77:0x586,_0x2577e9:'2PrQ',_0x11ce91:0x819,_0x4645c1:0xa3c,_0x5ec602:0x1ff,_0x1d0124:0x14d,_0x1fad9f:0xb6,_0x496ed1:0x4d2,_0x44af8:'c36g',_0x5745ca:0x333,_0xb052a6:0x324,_0x2876df:0x37e,_0x190c57:0x257,_0x51f68b:0x3d7,_0x3bc42a:'VXA^',_0x5460d7:0x2b2,_0x5c9acb:0x126,_0x56b108:'da@G',_0x212953:0x273,_0x9175dc:0x210,_0x497f5:0x100,_0x156f79:0x61f,_0x2a7b7b:'6]hf',_0x30ba8c:0x2a,_0x82e421:'1mQU',_0x13618a:0x3a2,_0x37fb68:'LaEV',_0x580231:0x76f,_0x4753d7:0x1a9,_0x42ae4f:'GdD8',_0x387a3e:0x228,_0x523542:'HQvh',_0x394712:0x67d,_0x388015:'Dsi5',_0x9f1000:0x287,_0x31f9f4:0x24,_0x53f6eb:0x69b,_0x416adb:0x431,_0x2e8913:'l^lf',_0x513e45:'Bu(&',_0x109d76:0x7b0,_0x3ee379:0x952,_0x1cc93a:'hn9d',_0x589d3c:0x9c4,_0x529195:0x8ea,_0x255901:']GM1',_0x1bbe7d:'KAAL',_0x3c94f5:0x9b,_0x1fb343:0x624,_0x5c3df9:0x363,_0x10d17e:0x2b6,_0x3e12bb:'FtqP',_0x58eda9:0x7a9,_0x150962:0x8eb,_0x538369:0x155,_0x54a8ea:0xc4,_0x570526:0x85,_0x4db304:0x8e5,_0x36970a:'ECfd',_0x2089d8:'ECfd',_0x5dc8c4:0x509,_0x1df492:0x670,_0x29fd5f:0x5a0,_0x3f228a:0x8be,_0x1a2691:'FtqP',_0x105d67:0x59a,_0x503fec:0x5aa,_0x4797b2:'3Y(#',_0x283102:0x6,_0x31f762:0x222,_0x38b4bf:0x813,_0xcddb54:0x466,_0x29e54f:0x7d1,_0x4cffc1:'#pB[',_0x835016:0x56c,_0x4374ad:0x5d3,_0x48ae26:0x1e2,_0x37faf6:')$Hz',_0x16d5e2:0x75d,_0x54fafe:0x7bd,_0x1200c0:0x393,_0x2b19cb:'Dsi5',_0x1c653d:0x365,_0x4ff5b7:0x3d6,_0x2cc9ac:'Dsi5',_0x9c1443:'hn9d',_0x11f503:0xe,_0xaea711:0x115,_0x28a2f1:0x53a,_0x6f1c6d:'2m0$',_0x551345:0x5ba,_0x229bba:0x4d2,_0x54de0d:0x455,_0x446274:0x421,_0x851bdd:0x31c,_0x291dab:'v2$P',_0x4806fd:0xba2,_0x3cfa7c:0x820,_0x51bf3e:'suJD',_0x158230:0x27a,_0x5d5137:0x935,_0x5a3c30:0x416,_0x3fd8f4:0x86e,_0x230dad:0xa94,_0x14a4ea:0x9b5,_0x3eaee1:0x860,_0x2aaff0:0xcd,_0x2e4945:'ebUi'},_0x38aa63={_0x1bdd59:0x148,_0x48e365:0x2bb},_0x416ac3={_0xbc5be2:0x4d5,_0x5a891a:0x2b},_0x56f033={};_0x56f033[_0x35e86e(0x1f1,_0x279463._0x38cecf,_0x279463._0x2dc33c,_0x279463._0x284fef)]=function(_0x4f338b,_0x1cb75f){return _0x4f338b+_0x1cb75f;};function _0x35e86e(_0x171517,_0xfda49e,_0x319e5f,_0x148ce0){return _0x5bf319(_0x171517-0x44,_0x319e5f- -_0x416ac3._0xbc5be2,_0x148ce0,_0x148ce0-_0x416ac3._0x5a891a);}_0x56f033[_0x1d4dca(_0x279463._0x158ca9,_0x279463._0x286268,0x540,_0x279463._0x2f60d3)]=function(_0x2504d5,_0x14f081){return _0x2504d5+_0x14f081;},_0x56f033[_0x35e86e(0xa73,_0x279463._0x45fe36,0x892,_0x279463._0x58b0fb)]=_0x35e86e(_0x279463._0x20889c,0x749,0x8f5,')9pR'),_0x56f033[_0x35e86e(0x9b8,_0x279463._0x3c40b2,0x5ad,_0x279463._0x234df5)]=function(_0x508419,_0x948c1e){return _0x508419<_0x948c1e;},_0x56f033[_0x1d4dca(0x262,'V23R',0x295,0x50b)]='ZfnSU',_0x56f033[_0x35e86e(0xa50,0xa66,_0x279463._0x164cfe,'GdD8')]=function(_0x5f0745,_0x37ba62){return _0x5f0745===_0x37ba62;},_0x56f033[_0x1d4dca(-_0x279463._0x2f86d3,')9w@',0x29b,0x1c9)]=_0x35e86e(0x605,-_0x279463._0x268813,0x20c,')9w@');function _0x1d4dca(_0x45d992,_0x3060e3,_0xb10d15,_0x311603){return _0x259b54(_0x3060e3,_0x3060e3-0x9,_0xb10d15-_0x38aa63._0x1bdd59,_0x311603- -_0x38aa63._0x48e365);}const _0x10acf3=_0x56f033,_0x592b2a={},_0x437003=_0x3fe751[_0x35e86e(_0x279463._0x4e8e45,_0x279463._0x57facc,_0x279463._0x25af77,_0x279463._0x2577e9)](/=== (\S+\.md) ===/);for(let _0x257c3b=0x624+-0x1f*0xd3+-0x3e2*-0x5;_0x10acf3['zylYr'](_0x257c3b,_0x437003[_0x35e86e(_0x279463._0x11ce91,_0x279463._0x4645c1,0x8d5,'HQvh')]);_0x257c3b+=0x25c3+0x44c+-0x2a0d){if(_0x10acf3[_0x1d4dca(0x592,'2PrQ',_0x279463._0x5ec602,0x282)]===_0x10acf3[_0x35e86e(_0x279463._0x1d0124,_0x279463._0x1fad9f,_0x279463._0x496ed1,'*LpW')]){const _0x480a45=_0x437003[_0x257c3b],_0x2149ff=_0x437003[_0x10acf3[_0x1d4dca(-0x514,_0x279463._0x44af8,_0x279463._0x5745ca,-0x104)](_0x257c3b,-0x1f94+-0x42*0x18+-0x25c5*-0x1)]?.[_0x35e86e(_0x279463._0xb052a6,_0x279463._0x2876df,_0x279463._0x190c57,'dx1J')]()||'';_0x592b2a[_0x480a45]=_0x2149ff;}else{const _0x56e5bd=_0x1d4dca(_0x279463._0x51f68b,_0x279463._0x3bc42a,-_0x279463._0x5460d7,_0x279463._0x5c9acb)+'###\x20所在群\x0a\x0a-'+_0x1d4dca(-0x109,_0x279463._0x56b108,-0x29e,-0xca)+_0x56db5b+(_0x1d4dca(-_0x279463._0x212953,'V23R',-_0x279463._0x9175dc,-_0x279463._0x497f5)+':\x20')+_0x3ddc95+(_0x35e86e(0xc56,_0x279463._0x156f79,0x893,_0x279463._0x2a7b7b)+_0x1d4dca(-_0x279463._0x30ba8c,_0x279463._0x82e421,_0x279463._0x13618a,0x220)+_0x1d4dca(0x32e,_0x279463._0x37fb68,_0x279463._0x580231,0x538)+_0x1d4dca(_0x279463._0x4753d7,'FtqP',0x4f0,0x47f)+_0x35e86e(0x13f,0x45,0x45f,_0x279463._0x42ae4f)+_0x1d4dca(_0x279463._0x387a3e,_0x279463._0x523542,0x310,_0x279463._0x394712)+'end\x22,\x0a\x20\x20ch'+_0x1d4dca(0xc3,_0x279463._0x388015,-_0x279463._0x9f1000,_0x279463._0x31f9f4)+'shu\x22,\x0a\x20\x20to'+'=\x22')+_0x385d29+(_0x35e86e(0x89,_0x279463._0x53f6eb,_0x279463._0x416adb,_0x279463._0x2e8913)+_0x1d4dca(0x356,_0x279463._0x513e45,_0x279463._0x109d76,0x4f4)+_0x35e86e(_0x279463._0x3ee379,0x1ca,0x572,_0x279463._0x1cc93a)+_0x1d4dca(0x56d,'suJD',0x8ce,0x6c7)+_0x35e86e(_0x279463._0x589d3c,0xcb6,_0x279463._0x529195,_0x279463._0x255901)+_0x1d4dca(0x877,_0x279463._0x1bbe7d,0x285,0x46c)+_0x1d4dca(_0x279463._0x3c94f5,'2PrQ',_0x279463._0x1fb343,_0x279463._0x5c3df9)+'ction`\x20|\x20固'+_0x35e86e(-0xba,_0x279463._0x10d17e,0x298,_0x279463._0x3e12bb)+'`\x20|\x0a|\x20`cha'+_0x35e86e(_0x279463._0x58eda9,0xc4f,_0x279463._0x150962,'FtqP')+_0x1d4dca(_0x279463._0x538369,'$6rX',0x151,0x443)+_0x1d4dca(-_0x279463._0x54a8ea,'7k]n',_0x279463._0x570526,-0x11d)+_0x1d4dca(_0x279463._0x4db304,_0x279463._0x36970a,0x2e4,0x6db)+_0x1d4dca(0x254,_0x279463._0x2089d8,0x621,_0x279463._0x5dc8c4)+_0x35e86e(_0x279463._0x1df492,_0x279463._0x29fd5f,_0x279463._0x3f228a,_0x279463._0x1a2691)+_0x35e86e(0x75b,_0x279463._0x105d67,_0x279463._0x503fec,_0x279463._0x4797b2)+_0x35e86e(-_0x279463._0x283102,0x655,_0x279463._0x31f762,'N%cE')+_0x1d4dca(_0x279463._0x38b4bf,_0x279463._0x44af8,0x2fe,_0x279463._0xcddb54)+_0x35e86e(0x32c,_0x279463._0x29e54f,0x769,_0x279463._0x4cffc1)+_0x35e86e(0x49f,_0x279463._0x835016,_0x279463._0x4374ad,'c36g')+_0x35e86e(-0x1c7,-0x181,_0x279463._0x48ae26,_0x279463._0x37faf6)+_0x35e86e(_0x279463._0x16d5e2,_0x279463._0x54fafe,_0x279463._0x1200c0,_0x279463._0x2b19cb)+_0x1d4dca(0x702,'Foj6',_0x279463._0x1c653d,0x711)+_0x35e86e(0x7ac,0xb3a,0x85c,'ebUi')+_0x35e86e(0x3b6,0x35d,0x5b7,']GM1')+_0x35e86e(0x8f1,_0x279463._0x4ff5b7,0x5f6,_0x279463._0x2cc9ac)+_0x1d4dca(0x851,_0x279463._0x9c1443,0x7c,0x42a)),_0x494724=_0x10acf3[_0x1d4dca(0x2db,'v2$P',_0x279463._0x11f503,-_0x279463._0xaea711)](_0x10acf3['vWTRn'](_0x178a3c[_0x35e86e(_0x279463._0x28a2f1,-0x3d,0x18d,'LaEV')](-0x1ab8+0xc66+0xe52,_0xdffeee),_0x56e5bd),_0x3d7e94[_0x1d4dca(0x363,_0x279463._0x6f1c6d,0x372,_0x279463._0x551345)](_0x151d95));_0x4b1680[_0x35e86e(_0x279463._0x229bba,_0x279463._0x54de0d,_0x279463._0x446274,'VXA^')+'ync'](_0x3f84af,_0x494724,_0x10acf3[_0x1d4dca(_0x279463._0x851bdd,_0x279463._0x291dab,0x378,0x2ee)]),_0xf8a0f8++;}}return _0x10acf3[_0x35e86e(_0x279463._0x4806fd,_0x279463._0x3cfa7c,0x815,'Dsi5')](Object[_0x1d4dca(0x12b,_0x279463._0x51bf3e,_0x279463._0x158230,0x1ae)](_0x592b2a)[_0x35e86e(_0x279463._0x5d5137,_0x279463._0x5a3c30,_0x279463._0x3fd8f4,'hn9d')],0x249f+-0x1*-0xc5e+-0x30fd)&&_0x3fe751[_0x35e86e(_0x279463._0x230dad,_0x279463._0x14a4ea,_0x279463._0x3eaee1,'ECfd')]('#\x20')&&(_0x592b2a[_0x10acf3[_0x35e86e(0x243,-0x278,_0x279463._0x2aaff0,_0x279463._0x2e4945)]]=_0x3fe751),_0x592b2a;}function getRoleName(_0xe0543c){const _0x13f844={_0x3b51c7:0xa65,_0x9fec8:0xb88,_0x420385:0x8ea,_0x321089:0xcf2,_0x332987:0xf20,_0x89712d:'V)bU',_0x390747:0x7fc,_0x1d49bd:0xb7d,_0x5046d6:0x7c3,_0x5d44e0:0x70a,_0x20d554:'Dsi5',_0x1dd5e2:0x741,_0x21a3a7:0x866,_0x3e8437:0x288,_0x2ddbc4:0xf3d,_0x64ee96:'2PrQ',_0x5c4579:0x586,_0x4ffbae:0x8ab,_0x42b445:'GdD8',_0x5cb339:0xc61,_0x116794:0xbeb,_0x5364d9:0x963,_0x5617be:0xc57},_0xcfad90={_0x42c4d3:0xcd,_0x5471eb:0x16},_0x2f7090={_0x1253a0:0xfe,_0xd9fdbe:0x30},_0x390eae={};_0x390eae[_0x1c1e48(0x825,_0x13f844._0x3b51c7,_0x13f844._0x9fec8,'suJD')]=_0x2da513(0x69a,_0x13f844._0x420385,_0x13f844._0x321089,'VXA^');function _0x1c1e48(_0x423d3e,_0x511d06,_0x561695,_0xf6b3c6){return _0x5bf319(_0x423d3e-_0x2f7090._0x1253a0,_0x511d06- -0x4d,_0xf6b3c6,_0xf6b3c6-_0x2f7090._0xd9fdbe);}_0x390eae[_0x1c1e48(0x102e,0xc46,_0x13f844._0x332987,_0x13f844._0x89712d)]=_0x2da513(_0x13f844._0x390747,_0x13f844._0x1d49bd,0xebd,'2m0$'),_0x390eae[_0x2da513(_0x13f844._0x5046d6,_0x13f844._0x5d44e0,0x893,_0x13f844._0x20d554)]=_0x1c1e48(_0x13f844._0x1dd5e2,0x8c0,0x5f6,'3Y(#');const _0x394bb3=_0x390eae,_0xb9d6dd={};_0xb9d6dd['assistant']=_0x394bb3[_0x1c1e48(0x805,_0x13f844._0x21a3a7,0x45d,']GM1')],_0xb9d6dd[_0x2da513(_0x13f844._0x3e8437,0x48a,0x8b7,'Dsi5')]=_0x394bb3[_0x1c1e48(_0x13f844._0x2ddbc4,0xd69,0x9dd,_0x13f844._0x64ee96)],_0xb9d6dd[_0x2da513(_0x13f844._0x5c4579,_0x13f844._0x4ffbae,0xa8a,_0x13f844._0x42b445)]=_0x394bb3[_0x1c1e48(_0x13f844._0x5cb339,_0x13f844._0x116794,_0x13f844._0x5364d9,'v2$P')];function _0x2da513(_0x205672,_0x461ca2,_0x22b0a7,_0x3886a5){return _0x5bf319(_0x205672-0x136,_0x461ca2- -_0xcfad90._0x42c4d3,_0x3886a5,_0x3886a5-_0xcfad90._0x5471eb);}_0xb9d6dd[_0x1c1e48(0xf05,_0x13f844._0x5617be,0x821,'KDG1')]='审核者';const _0x1cecb9=_0xb9d6dd;return _0x1cecb9[_0xe0543c]||_0xe0543c;}function _0x97cd(){const _0x527224=['kcddS8oIaG','lmofW5DSWOe','sCoMW5PvW6W','5lMr5yQo5yM16yAl44k+5AAP6z2v6AME6k2V5P2y','qJnEuXC','5PUi5PAR5A2x5Qoz6ioV','gmozW73cUXO','WPZdRmofh2ezmwlcKwK','WQ9YcmowWQ/dQMmmma','jsFcKW','W6BdLmklBmo1WQS2DmokW4a','lSoMW4JcIdS1qfDIrG','W7b4W6rzv8klWRi','WPXnW7HBiq','WQpcR8oty8ka','AmoOW6GdW48KW6BcHeRdLa','W4qNWOSfWQ1K','WRTjWO3LTltKV6/NQQ7PLjpKUP/LRO7LNiC','WOpdQMe4FrXYuf8','oX7dP8kszI3KVOlMMzO','WOFPH4VML4RNLQdMI5hdKcRLTPJLKyxMRly','DCoLWQ/dVmk5','FhH/tmovcmoiW5C','WOZdU8oEs2m6lcpcLv0','BCoqW6L8W41h','pItcMCknWPK','iZ/cMCktWPm','WRpcKJBdHeK','D8kzWOldHG','W77cJYBcTCoB','bCkHtuX9','WP7dP8othsP2zw/cK2y','i8oEW4hcJmkctmk7w8oDW7ddHatdHa','EXC2','orpdTGjp','idJdSxhcHq','qbeKW6jfdsC/bSoq','5BsA5PUm5Ps9nHhcTSo4ALxdGa','WQzfpSooWQ8','p8okW4lcQIKKqve','DYuOpG','WQFdKSknDSoOWPa3cmkpW5y','qSkjWR7dR8op','WPBcOupcQg8','y8oClZfmWOeuA8kNfa','ugLkWR8+W6FdRW','566Z55grvK1tD8oNloI3J+w8Rq','mXdcRmot','Cmo5WP4','DrXRWP/cGL/dI8k4t8oZ','y8o4hevH','xCkkWQtdVmoP','576D5BEc5zoY5Q2B','vGfsWRlcGG','WQ3cNGFdT0q','BmoJFSktWRtdMhRcIbZdRG','6ks65lQw5O2b6ygUpLlVVi3KUk/NVlRPG5e','cCkhqNaBW6H0W6JcQ8ov','5PUq5PEn5OQj6ko76ioR','ECo8WPxdUCkViG9pWP9K','WQtdLSosteStitRcNgS','W6BcUcVcMSoY','W7HVW6vfra','gmoHW5xcNmkzwEA0GEAbSEwnREMcLa','W5XhW7PWzq','lmo7WRZLTPpLH5VVVzxdGSkJymkx','ExPQq8otomomW4bnWPy','ACohW6nHW5baEbGVW4y','qSkrWRfBWOffW4ldKEI+MEs7Nq','FhH/tmovgmooW6reWOC','W7LbWRJdUhG','WRNdJwNcGmk1amkw5lQj5yMC55QP','DmkcWPJdM8o4amonE8omW7q','kCkTamolWQ0','a8oHW7vJWPBdKt0nBmkg','WPVcJvNcH0JcNmkvdG','sSkakMrs','6AgP5A2N5yAE55k56kwz55Qx5Qko5zks6z685Rox','DHXVWR/cL07dImkPzCoU','uKGPWOySahyY5zcM56sn','W6v3WPVcPmo9','W4bMWQVcJSopxXy','W50EW5eqyMvWiMBdSG','hos4SEwTKEwFPW','5PsH6k6i5PUT776YccpdVeS4kq','5y6tWR/dMZBcVmoUCUAnGoITIEwkOq','WPn2h8orWOldOwSDAEMeNG','sSk4WPi','nSoAW617W5CuA0O','ymosW6j1W41C','W74AW57cPq','WR7dP8ozFNi','FSoYWP7dS8kzdYrRWOHG','5PAC5B+BW71J5lYH55AJlCkhjCoa','4PIf77MpW45l6kYU6yEA5zo9imoXWRKG','EmorW7LxW4m','WQSAW6lLMy7PMjlMIQNLKi/cKbxKUke','j8k5jq','WRVcLchcKCopu8owEmoqCq','W4uDW4KEl8o9W6fUW7u','WPnVW6JOGQhKURamgCo45OIs6ikM','WOhcILxcHxBcNCkj77215OQF6ygL','grBdNIjlWRC','cXFdIZ4','WPldG0BdI+E+MCkXWRtVVBhKUyFKUBu','W75BdCk4hCkmmmoZdJm','oL/cHNWj','6l2tW4afWPVdMHldGLlcTbu','v8oFdx9cWRCWWQVdOq','smkyrG','v0hcR8k1qq4','e8o1W7FcSsG','WR1HWRDluCkjWRNdM8og','WPldL3qOvG','mWhdGxaw','WPjxWPTqobHXmcBdSW','xsv5vdq','FmkuW6P7Af0','weZcNvnt','FmozW4raW7u','WP3cKdJdIMS','i8ofaXWnW4FcLCoDdXi','nsRcRmoftW','WPBdOgSTyqX4uf8','z2VcISobW4CRW6W','xSoBo11Y','W5qds8o6wSkm5y6v6ykA57+p5RAB','W61DWQVdNhK','lCo1W6GwWOZLKllKUkZJGOXkW70','pCkiBh9KW4Lyk8omxa','5PMX5PEq5A2F5Qcg6igj','vHxcLuRdOwhcNSkrqW','5zkE6k2t57IU5l+55OoZ77+i55wW5lUh5BYd6ykS','W55oWQZdLei','W7RcHc3cKSoy','FSkRzSolWOhdN1ZcIKG','bCkOW5C','f8oeW68tW5GcWQFdQJxcMW','zCklW6rnDq','W596WRVcMq','jSkujmo+WQC','WOJdUSowwgmC772FbCkJqq','W5aWWOOkWQ1YWPnNW5pcTG','jmo0W7mgW44UWQVdPq','vLnGWQe','ymkqf28','lZpcK8kcWP9/W7/cM1O','BCoqW6LGWPLtCH5RW4i','W7uwW5K','WPhdM8oAzLW','bmo6W6jYWOpdLXK6AmkC','WQVdKmkBA8o9WQm9yCoIWPm','kCogW4BcVsKJ','W7hcPcFcHmoQ','WRnObSk4hSojnG','Ec52WQJcIq','WR/cQ8opD8krW6e','At9tzSkbmmkb5zkO56EtW4i','D8kFW5VdPhf9aW4maW','WR1Hh8orWRxdMw8hot8','WPxdLSkEqmoF','6l2vu8oSWRBdLSk6WPpcSSkFAW','qSoErUElHoAbUmkHWOdcUXzm','WP4+WRtdGmkhauJdTCk/DG','DGjZDHK/rW','hX8QW6/MNytKUQVKUjdPG7RNRORNK7S','5RUzdhdcNmoIWQ1CaYS2','WOhcL1VcN0JcIW','WQzHW7TsmW','5lQNp+AEVEE7U+wURmoo5yUo5Pwp5RcP5y6T','WRZcMMJcVvS','W6qOfG','W6HFohvXmmodW6ldTG','5Pw+5B+Yv8kR5l2y55w0WQ/dH8k+WPu','WOPtu8kNW5Too8kMWPq','WRfNfmoEWQBdQhG','DJD85BAI5ysj772nW4CRamoj','Fa5ZDsW7','yqxdMJTkCW','r3PCWQWQW7ddPCoy','lthdRHro','WOJdPSofsW','hGNdSSo5hGBcJXbdWRu','W5nmW57LKlpNPRXQAgdNI7/MGOe','WRpdHCk3CCo4','f8oNW7FcKSoThq','p0JcNCoeWO/dNWO','BSoPk2Ps','FW3cKSkxW4pcMbm','A0TmrSok','5yQ45AAl5y+45AwA6lE8lCoY','w1L7W68prx4/sSkA','WQRdKmkgF8oOWQW','kH3dRwFcNa','aGJMO4VLVjNMT6/MGAdLHR/LRA3cMq','yCowW6jZW55rzq','WReBWRmPmG','BUACLoIVOo+8LtRcGrKMW6DC','CSoWWOJdRSkmpc4','WObdWP9zksRVVi4kgSop','WRhdM8oUsh4','CZa5kqOK','WOLDeCkQha','EdG1kq','wvTUwSo1','qhJcQrr85Okl5yUa55gqWQlcTG','CCk8W6T8CW','emoXW6pcRZG','BCosiUwBVUMyR+AkVowrOuZcGos7Na','ko++GEAmUEAvGoIcQEEBI8oOW70LWOq','mmoDW47cPW','oXpcGCo3s20','mmkzrgzxnmkbW71u','5y2q5PsdWO3cRCkt6kYG5PUPWRlcQIu','W7nZW7jgvSomWQVcJ+wyHUwVPG','W7LQWQ7cJ8oo','bCk+W7bLWOFdMGHeE8kn','W4C1W4xcKSoM','pSo5W73cHre','WQNdHCknDSo/WQG5pSkGW5y','5Ogb5yUf55ke5zM66zMZ5OMI5zk65l6u5Ogc','WOCcxSk6WRy','5A2t5QoB6ic/W6e3','WR3cUSkbwCkHWQNcHSkg5zkd56AA','W4zNWQ7dGmks','FUACSUIUPo++O8oSWPCsWP4FW7m','nMVdM8obWPyRWR3dIvxdVG','kYZcK8kpWP5FW7/cQe7cUW','kaVdVZKmm8osFvtcP8oNmCoW','ChPXWRCF','W6XBhCkHW4K','WQitW6ldV2BdKcFcUMVcRa','W6O5p8oRWRK','EuRcRwTzk8knwvVcOW','W57cHWZcHSoW','WRJcQMJcPeO','smkXWOqAp8oSAa','zsnzFGe','tWj5','DSkmchnviW','cr/dQ8o3aGhcVqziWQ8','W7n4W6b8v8kaWQldIG','twToWRK6','Cq7dJUMcREExHUILVoInRa','t2LDWQyTW5FdS8oeW4O','5PIw5Psa5OIJ6kkW6ik6','FUs7VEAjLUwtSUEzOUE8NUs/K+AcKq','zbPXvr4','mIT854UX5Og/D8kXdfZcHa','n8kFyq','h8krfSobWOm','56YZ55g16ikO','WPBdOgC9yaTew0lcKG','W5jvW6z5uG','WPxcHK7cPeRcLSkGd8oMdW','5yE76ycJ55YNWOXXWPNKUQZLIlVLIjNPHOK','iCkDzW','W7jMWRZcHCo6xGRcVSo7nW','5PsT5lUz5A+P5lQp5l+C5PIe6lgu44oq6zIH55Yy','5l2s5Og8W4ldP8khde/dSSotpa','ESkvW6TYtq','WQyjWRWClW','WPRdVmodvW','bmohdWerW7tcO8owga4','W4nYWRRcNSop','WQLLdZX+zowsR+ELVmkIva','WQhcLdpdHwuLW4VdGSk9WPe','DCkDdxreiSk8W7aaWQS','eXpdQcaE5OMg5Bk+5lQZ5lIV6ycQ','pf3cHh4','WOPtuW','bCo0W6jXWOVdMXiz','gU+9TUAmP+AwRUIbQEEBTSocbKJcSG','yrj2WRlcIwRdHmkVymoi','rmkZWPihkSoFySkMmCoa','sH7cNW','qmkoWOBdKmojemo9CCooW6W','netcGmotWQZdGt3dTCohxG','CmkxW411W5XAy0OpW6C','zCodW6nGW4a','WQRdMSkhAmo+WQu7iG','qSoe6yoB5yMg55IO5zYE5zge6kwT5yEZ5Pwo','fCkAwZ8bW7W8WP/dSSkSW7VcRa','W5X/WQZcU8olqbdcVq','iWFcO8oxcSkQWPtcG8o4mW','5Og9xvBKVlJNLzz3WQ1RrCoA','mSkYnmkkWPhdLudcMGhcUa','grFdNdvBWRFcRG','abRcRtZdVt3cGmoh5lM+6lAY','kbZdG3Os','vCkYWRiI5ywN5AYn5yA656ce5OcU6kwP','WOazWOWCpCoSW6bO','WO8DW5mtywC5BwtcRq','5PYZ5OMa5yU45QIR5P2l77Yk5l6F55sq6BUT6k2M','yGXSWRy','W7FcKIhcNColgCo3fCkypW','eCordX0xW7lcO8ocdW8','WPz/hmoDWQu','CX56WRdcKwJdGmk8zmoP','W7f0W6rE','WQpcKIRdJWFMOAdLVOdcH8kXW7O','WOBcKYNdRh8','WPJdTg83ya','sSkdWOpdS8o2','ouldQoEkVoAaTsBcNdjjW68','kbr+WRFcIXRdMCoS','5A+S5ykTWRfIW4ddHXKeBCok','oblcGmoev23cKZi','EflcPgvdsSkjs0e','W7KOeSoa','WRjSbSk+dCoe','W7NcKI1Tn1JMTP/MGy3LJ73PG7a','prNcJCopvMe','n8oNW7FcKSoTB8keywbn','lCkqBNa','lclcRSkoWQe','CtWviW0','kSkriUw3UEwfH+++TJnRWQPz','waufmay','W4hcRdz3rHPFvelcIq','CLpcRu1Z','abhdJKxcPg7dUCkuhvS','5PY45OIP5yMS5Og85yUx55gr','vmo0zCkk5zIe6zQL5OII5zkMEmkC','BWVdLdvh','f1ZcTmoyWPq','W4uyW7e2xCoXW6e','W4SHWOmo','qSkUWQ4Tca','bmo6W6jYWOpdLXK','nSkhWQHfzLZcT8k8qq','F8osW79HW5bBEq','jJ7dPfaOW5G','FLVcUIPty8kufvtcPq','gJVdLHLv','WRb7v8kFW6xdQ2dcQZBdHCo1WR8q','l8oUW7e','WOrFWOXvpZP1iYZdNW','mIT8','5lID5A695z2m55Qd5lUt56gq44oUW4G+WOe','j8o3W7K','WORdVSk6E8om','DHX5WR/cKfBdKq','W4lcSspcMCou','5PAu44kOmay','l8kuWQ8Y','W45kfCkNW4Lhiq','WRZdRmklESoW','oEEkIoAdIsPidmkCfrJdRW','fW3dRmo5cXFcKa','wmoB5Qk05BYR5RAj5Ogw5ywC5A2X','feZcKNqx','o17dQhy+ESoawehcRq','jY7cHCksWOTSW7u','vSoWW7zNWOZdGfXczmkj','emkommoUWQu','W7yXWQGNWO8','p8oPW7hdOCoaDMyhW4iO','5A2A5QkX6ikYnqWazq7cL2S','W4SBWQ41ua','W68nfSohWRe','W6RcGxdcJaPXWQlcISkXW50','kCkuBgHqWOZLKytKUQlJGOGZ','57Ms5lYb5OcR77+W55Ax5lUY5B2D6ygT6ikP57kQ','W6vwWQBdIq','W7Pza8kLW6u','W554WQZcHmoyFXZcTSoX','eSoxfrO','6k6J5P6I5PEw54Ue5Og4776n6kYl5l+o55wcqq','g8ombq','pItcNCkeWOq','zYFcPXPXWP1eE8ouWPe','W7K8fCoa','6yAk6kEJ5lMH5lIS5zgQ5PI75Pw044oZWR1j','gZxdRSoHnG','W40AW4K','kvdcKNusE1xcPG','ECorWOVdSSkm','uLTHWQ4bkICYaCox','vLP0q8o5','vWPDWRhcHW','W7NcTs5KpUE/NowqMUENKGBdMW','lmoJW75NW41CzgbmWOK','DHK/5Bs75yAs77YGWQ/dOsVdUG','dqddQbLt','W7NcSXpcHCoj','kqpcQmoB','ieRcV8obWQa','WPhcHr7dSgG','W4TdhW','W4nbgSkYW5vkoCk7W5q9','WQSoWRWlaa','6l+LiNJcQdRdQSo+WORdOfu','emohebSCW7BcMCod','hmoyWQShiEACLEs5KUs7KUMcK+EUHG','WQ8ZWRaima','pmoBW4NcRr4PAKzrtW','FajUzG','FeBcRwLbCSkpsKy','zSoLW6flW6m','WRjNf8oA','lX7dJL4w','5OUZ6kkS6igbW7BcTqdcLJpcMJq','naFcTSondCkGWQO','ka7cOCoObCkJWRhcLa','fa3dR8o9','WQ9JcComWQJdOMqz','vxbPWOit','CmkrawzDFmkcW6GaWQK','fmolfrSBW6JcKmoyhHG','w8kXW60IW4/cLaa','yXjZCqW2sSkIWPFdSW','776M5ywEuW','W5DqWQFcMmoewa','WQXZcCox','W7WhW67cVSoDWRlcJSo1','WP/dRmohxNqikcRcNNO','qSoErG','ot7cLmksWP55W7NcH04','WONdVCoAwMGi','dmkAwg52','WOdcHKZcGLJcJ8kvdW','w8oBW65CW7y','W4rzWRVcGSoeFatcRmo6','W73cLdBcR8oq','5lMb5lMX5P+A5lMQ5lUW6yoJ5zMY6zU25OI55zkg','W53cTIfGoLDZqapcGW','W43dT37cGGr85P6J5lIS5lUx6ycy','WQBcLCkuooE8Umknho+9HEs4PUs6Uq','6AMl6kY85P2D5Psr54Qr5OgD776d6k2q5l6Y55Ey','W7n8W7Pp','WOWpWO0AmmoxW6K','WQJKUjpdOSoTASoCoCoUp+MFHa','W5PqWQpdVxq','W7TvWO/cL8o/','hbyJ572RiwqGobhdNq','gSoVrYqtCEAFG+s4GUs5ToMaOa','5PMW5Psd566B55oT6ic4','g8o0W6jXWOpdKXK','DSkoWOBdNSoidCoKE8osW6e','omorW5y','WPzEWP9Cic9W','pKJcGmoqWPRdKa','cWZcS8kVWR5yWR7cHe0','WPFcM1/cIeJcJmkFd8o6','WPxcHK7cQLRcNCkEcCoEea','BgNcKhmjEXRcNCoxea','A8k4WRZLMPtPMRpMIz/LKPdcHeRKUji','nSoxW4NcRIG4','5yUo5Asf5y635AsH6lEaWRpdMG','os7cLCkvWOnKW77cMG','nuJcNmkxWONdNrVcT8okxa','5PQw5Pss5Awx6lwxq8kH','WPTnW651fCkIW64','WQJcP8oAwYBKUBhLRj3LNAC','W7O9b8oCWQxcQG','amoaW4zPWOe','A8osW7HtW55rEr4vW4y','W6xcKG3cTSor','WOqnWOuqpW','ccJVVkpcRW','WP3dOmozw0qfasRcGg8','CU+9JEApUEAvSEIbU+EBK8oTDuxdMG','m1RdJSoqWO/dJaRdRCokqG','W77dO8kmpCoiWQtcHSklWQnh','W6WNeSoAWRNcVcC','aCoJW7H2WOFdSHugBmk7','Fq5UytK0tG','WOu8W6qxW7q6W78TWPVdTq','lCkYnCozWO/dLvZcTrFdRW','WOpdVCkcF8ou','mSk1WOFcVCoaEZC','FXPyFdS','WR9geSk/oW','FmkFW5BdTSo+wCo1pUwsSEELPq','ovZcKtTF','nblcGSoktMZcKG','5PQF5PE/5OQA6ioF5y6K','CqX4FcWG','44og5Pw65Qc+44kG57225zYC5OQz5lIS5A2tW7O','jd/dLSkOWQ4RW6ZdIEwqPoEKRG','xcPpwZm','WPhcICodxSkj','oGBcP8ooqW','cqxdRCo2jXFcM++9VEAiU+MdMW','W5HkbCkVW5LCmmkG','W4CcrG','W5LTW4ngW7q6W78TWPVdTq','AKRcQx5bDq','gCk0i8otWOa','DSoWW4bcW4O','W6WXa8olWQxcRtVcNI8','W4OHW5JcI8oe','nmo3W4VcMCoG','WQHen8ovWRi','jZ7dUuq9W5Cm','jwBcImk7t1lcOrPFWQq','kZVcR8o4uq','WRtdKmkjFmoAWQ00lmk7W4O','ia/dKSo8dq','WQ7cItldK14','5y2/tmo+WRJNI5RMGBpdGGKNWR0','p+s6V8oBW5ZcIJ4LxG','jvVcGW','F8ohW6b7W40','t2fFWROE','WRT7smk+hmoyACo6dhy','DLlcRq','6kYs5P+o5Psr54QM5OoK776f6kYn5l+z55AMsG','oSop772+5l+P5Psj5lQQ5l665Pso5lQy5yQf','hLWPWRnIxcPYx8ks','WOCcxSk6WPegEmo/WOn1','pW3dSfyo','asRdIepcVMK','od/cM8keWOr/W5hcH03cJa','W6GUa8ogWQtcIZhcNdpdSa','WQlcMSoXCCkJ','WOddOwaTwWHYtg/cNq','E8kAW6zfzLZcQW','W5pdPc4','peZcG8os','W6zalG','gf1/zf135P+H5lQn5lI66ygb','kYFdUmo9pW','WRtcMc7dKK4ZW6hdLa','W4yVWOanWRbWWQDYW5FcUG','metcGmot','WPD7WPDBcW','5lQh5lQP5lMC5P2E5lUY5lQB6ycu5zMt6zM15OMX','5BE65l+j57I06AIr56sc57w0772h5y+f5lIk5PUX','ga3dKZm','WQ3dO8kKACo7','n8o3W75YWPO','W4bGWQhcGSoexZRcQ8o3nq','77YC5O2Q57UW5PUM5PEOdchdHCo8WRy','dGFdJZDmWRdcSmoYW4z8','AuVcU2i','kSkED35rW4mwiSoLta','CSo0WPxdVmkkpJK','W5XFWPhdIgO','lNNcN1WF','cU+9UoAmMUAvOoIaU+EzGmo9W6tdJxS','mvNLKjVKUzxKU7/PG5lNRitNK4ROGi7cKa','bmolcby7W7JcUmougGa','WPpcKdVdPN4','nqFcS8oxaCk4WQhcGW','WOJdSmozxfizjclcVwS','m8obW4BcRI41sW8bxG','o8oLW6hcJ8o4wSke','kvdcKNusE1xcPSoGFa','l8oEW5rkFCkR5PYH5lMS5lMm6ygn','W7TjpxvNm8ohW74','WR7cQ8osy8keW67cNW','W4f2WQNcICoSrqNcVCobiG','W4HeWQ3LKjVNPOddSCoHjoEkL+AcLq','D8kawsxMTRJMGl7LHARLRlbmW4i','f8o2W7rSWPBdObmRBSkn','p+ADSoISME++LmoNDMTkWOjG','cmo5W5PeC8kMCCokE8ki','juBcK3mv','CmkkWPNcKSojhmoSESkrWQC','WR7cKZ4','5PE35B++cbBKVy/NLOqzjSo5xa','WQFcNSoWzCkC','W7xcHYhcKSollSotaSksiG','5BET5yQi5AsW5y6lW406le/cGxe','qmkSWP4AkSo4xSkEomog','FaddJSkfdYtdM2W4ja','s3frWROyW7BdPCoFW5K','W6JdGgNdNmodxmkBuSkbCq','WO8oWOar','ACopW6vHW41hrbmOW4a','hIJcOSkZWQ8','W7TjWQ7dHxK','C8kRta','lCoJW7ufW5G8WPVdTY7cLa','5lIz5lMd5PYZ5lMv5lU/6yos5zMh6zUt5OIB5zoc','WR1Yh8oTWQtdVwuzicC','jCo1W7hcN8o8tSks','FfhdJSkfd3xdVa','E1VcUNK','nmk4l8oe','WOL3WRjUpW','B2pKURtKUkZJG5hNQk7PHAFJG6ZLJPZPNzG','6l2TdZlcOCozrshdSSoNha','fHRdJLNcVM7dTCkEfLy','Cq7dJUwzLEMBSEAkQowqTW','CqddG+IdPos4UcNcIMhMI4tOG7q','gWVdP8o2gcdcHWvcWRi','oCkRzu9f','WPNdV8o0Axi','iqlcNCoCWOFdLapcT8oBwG','W6XiiMX2','DtiObHKYWQnYD8og','6kwK6yAS5Pwz55wG5OMy5PsF5lM5','WQnzWRjPga','m0RcI8ozWPRdRaddM8omxG','x8kZW6P+Aa','uwDkWRW2W6VdPmoHW4XO','n0pcM8oAWOVdIG7dUmohxG','uCk7WPGflq','q8kqWOCgpW','WRVdKhdcJaPXWQldM8oGW50','aSo+W7PNWOW','m8k2kmolWOhdN0a','W4nMWRVcHq','WOxcKvpcN1JcVSkzeCoSla','kGFcTSonbCkOWQe','6ioa57cB5zoi5lIh5yIE5yM66yE744gW5Aw/6z2r','W7NcHtFcJ8oEg8ot','WQrKs8kfWQZdThNdGxhcRG','AcH/rHK','sMnkWOaOW6RdMSoyW4zH','oSogW4lcQdf9q0jptW','W6vjjxT2la','CtXLWPBcJW','nbFcP8onemk9WQ3cN8oW','W5y1WOWyWQ1LWRTUW5e','rMDFWQ4QW6JdVSoz','zGPlWRRcKa','WRHObmk1g8onj8oWga','hsJdJdLqWPtcVmoJW4a','WR0CgMrHlSofW44','BwPPsG','WPzEWOTtktH1iIxdPq','rSoxWOpdNmk7','BftdL3CaALtcOmkP','WQ3cJZFdONa','W6LEWQFdGNNdIG','t8kjW4b3DG','A8osW7HtW4PhFHKYW4i','55ov6iolWQSAWPNcQCk7W4hdQWq','W4xcIYZcV8o1','v8k7WRS5ma','yJWfmWS','ksRcM8oItG','EeBdGW','e8ksc8oLWRtdOXZcKXy','rgTxWQSDW73dJSopW5LW','5zkF6kYB57QB5l2a5Ogi772q55AN5lIP5BYM6yoV','t2nxWQ44W6hdUa','grBdJt9qWQpcTmoXW5e','W4Tyu8kHW51FmmkLW48H','pK3cLgmvFfpcOSo2','WQLqA+IbKos4MgtdNSkS5OIc6iov','v8omoML4','W7CqWOCeWQK','WRK1uSouW6pcPwBcKg0','m8o3W7pcHCk55l2c6Ac/5lM36zwW6l+G','dqFdIXvrWQRcQCoYW4z8','WOiAW6hcJowBR+MAPUAjH+wtGHxdJG','p1VcLNecB++8OmkEW4b/','pb3cJCojrwZcHdi','hSoyW7xcU8oD','WQhdKmkgBmo8W6tLKkxKUQ3JG6RcUq','5PEd5B2JWOJcKUs8K+EvMSocfv7cPa','5PQq5PA35OI76kcl6ig7','FNT8kreJW612rCoB','sColhW','wmkhqIeBW6H0W6JcQ8ov','WRxcMSkjF8o5WQOSzmkCW5y','W7b8W7LluCkjWQu','b37cQ8oLW4ddLqS','fCkNW5xcVCohCEwjVEwUSoAkIoIHIq','pI7dRff8W5eei8oBW5u','m8knk8obWOW','lSkInCoc','5AwX5Rg5WRSO77+4WR52rYtdHq','cmondXW','ot7cLCkcWO94W6m','WRldRSoID1W','WOKmu+MGMos7MUE+J+s+ToAcVCkKuG','sY5DWOtcJW','gWldRmo9ae/dGbniWQG','omk+kmooWQtdG3VcMG','W7fhW7r5zG','umoRa2bzWRivWQZdTCkm','WOhdT2iR','WRRcMmofnCkXW6L1nCoI','WR/cLXNdG3m','5lQF5lUA5P2O5lM35lQL6yku5zMu6zMT5OUT5zcj','56ER6zIp5AsS6ls3yNm','W6rniNi','WQdcP8ooFSkUW6ZcG+++RUAkMoMbSa','oSkcvNHf','WOmMAd8HzoA0QUAdO+wnK+MaQq','vdnVWPlcSq','gqRdINqsW47dVCk3W5XN','WQXVWP1mksTGjqVdQq','uw5qWQW6','emohbXy/W6JcKmouorG','6yEf572x5Pwf5lMA5lIa5A+H5z2/','nbdcMSkisMZcMJeIFa','W48VWOCf','i8omW6pcICo4','WPz8fmoxWRG','W5VKUQpLPOBOTjO','ASk2buf+','WP7cQH/dU00','W7Lzohq','W7vPj8opWRxcTYddJbxdHW','FmoTWRhLNlJMMO3cLabk5RAb5Okh','W5SSfCoCWRhcQYdcVJNdRG','i8oAW4ddKSoRi8oAD8oe','5lIS5lQR5lUV5A+k5lMT55I955w/5OQT5ygq5AA5','ueBJGOdcKMzrW4fv6kE/6iQZ','WOhcHKNcMftcL8kEdG','W6W7fmohWQlcQG','WPCvWOqAjSoSW450WQSg','W6RdKhdcJaPXWQlcISkXW50','nb7cUCo4vW','W4f2WQxcGSoCsstcV8o3nq','W5lPHOtML5BNLRFMI4dcHhtIN7T8','W7xcKZFcLComcmoxhmkj','E8kOW4O5W7yBWQhdLa','wwvMWR8M','W4qZWP0cWQPJWRnUW4i','WONdRmoqwMGznY7cHgS','WQRcNc0','zCk7W50uW4m6WRZcRHNcMa','uNDkWQC','CmksW6zaq0dcNCkTc0y','W43dKh3cQY1/WQZcH+w9IowjRG','jtFdRW','ye/cN3Wu6ksw6iQV57oS5zYJiG','WO/cTsnJovu6xGhdNa','5PAR5B2yvK3KVihNLB/dRwztW4W','55o06ioMmmoHqCoyWReAW6Wr','gHFdVbnx','W6DnjNK','fWNdSCoRdrxcHW','WR3cUoAGSUw9GEA2NoAaL+wgKUwUMW','vSkGWOuammoSzmkblW','WQZdMmosDw0','m8k4iSop','zSoKhx5H','pKuYphz8t8kTW77dPa','BMP5qCoep8os','5BMO56Q45Qoo5Qkz44kX5BoE6ysQ6l2l5lU85yYv','WR9dWOdcVCoAWQdcGSk/W6qz','W6jYWQFcO8oN','WOnVW45BpG','W58aW5FcHCog','uCkIiuLKaSobW6qk','WP/cGLtcILRcNCkc','W4yz5Qo+5B6J5RAf5Oow5yEs5AYJfq','hI/dRCoTaGy','WOzeWPGtDa','zmkqW7TuyfRcVa','5A+W5Qge6ioMWQiO','FbHYWRS','W4vdfG','WPPbWQ1Ih8oXW7TTrSoH','s2XDWQONW4VdRa','EhfUqSkb5zcX5lMf44kNkCoO','WQ1Sg8kQemodkSoqdMO','ySkEWOxdLW','W5eCW7qEBcDXmZRdOq','CqT6WR/cKv8','WRxdKmkBA8o1WQS2aSknW4O','6iglW7SiybddRv4JW6rn','pCkcy3TvW4ZVVkmmW5L2','umkoWPddKCoJ','jG7cQq','EZq5','yrH4WRVcHrRdMCoS5RAd5Oo1','W61bWQVdN3NdIGtdO3hcPW','n8o1W6BcLa','uSoIWONdMCkK','kmkyBhHYW5vWiG','EfNcRwravmkfsfRcSq','q8opg0nbWQSjWRFdQCki','W6f6de97','kW3cOG','lCkJj8oEWPpdIq','W5pdUhORDru6t03cNW','DUs6QSkYWR3dVLJcJ2uV55Q6','5P285OU+5yQI5zIE6zQg5OIT5zk56yo55yIj','eapdOmokcqlcJqzeWRu','W7DYW45/wW','rwDxWRS/WQtLK7FKUy7JGQSB','WOT4WPrDfG','ybJdM8kgW5VcJv/dGSoOvHFdN0m','aXBdKcrh','WPTmW6XIbCkI','W5/dJHFcLXddLCoDumkKuG','tLnLWQO','W6jPeSoaWRxdUtFcGZldTW','omoHW7/cMq','5PIw5Psa5OUe6icb5y66','AK/dQa','aGJMO4VLVjNMT6/MGAdLHR/LRA0','CNn/','5OM46koz6io+WPFdPYDRA8kiya','mmoDW4xcLJu0','W5NdHmkcm8ogWQNMN5BKUk3KUPtPGOi','suXTWQ4CruT1tSkt','mSkxW5y','6l+xW4uLyfu/WPVcQsFcJa','W5VdTCkx5OQ/6io75y25ztpdKoEkUa','FSkeWPe','W7WwW5RcH8osWRJcKSo3','5P+W5yAG566EW4FcGo+8TUMgQowNV+wnIUAARW','WOOfwEExRUAkI+wqPUEMPCo4WOtVVyi','W7uwW4pcPCkt','mSk+nCoE','iqNcKmoa','kSoqkZen','WQlcHttdKLmVW5ZdNSkJWPm','5P+057Uy5A+Y','WQHfW6i','W5f6WQRcR8oh','cWJdILm','eSkXWRWI6zAD5P6R6k+m5B6Sa8oI','BMT7vSoupW','57gP5zo/5lMw5yMW5yQ16yAz44oL5Asq6z+w6AQJ','l8oOWRbwW4OMWQBdQMdcHa','qSk4WR9w5zMo6zMq5OUy5zowsSo9','W71EiNe','jdRdP1i','qSkitoE/LJddHCowWPTqqq','6yEF57YD5PsQ5lIN5lQ+5A6m5z+p','W7CDW5NcSCkt5zkP5lId44kqW5WL','WQzJoCoOWOW','WOfBWO1olsLX','xCoAW6H2W7i','WR1Hh8orWRxdMwuRlJy','5lQ05lM35lUz5B+75yMV5zUR6zUP5OMr5zcC6k+V','CSkEW61Wza','W4nLjxzr','W4TifSkOW4H/oSktW4K9','irpcKCoC','jaNdQ8omaCk/WQS','phLZmGO+WQf1','n8owW5rmWRBdP1ihBq','ug1vWQO','WRNcOCodt8kmW60','W7pcSSkb','W4TAWQtcPCoV','mSkxW5BLKRlNPyPzW7u+6ioW5lQp','A8k7W54zW5KHWQZdRZlcNG','d8odcbmEW6tcJG','s8k1WPOm','A8kcWPpdUMTPs3LvESkFkG','W5pdPc7OGilKUi5yAWlNIPRMG7a','WPCoWOuA','iLpcH8onuN3dMdmHEq','xCkVW4XJCW','FLDtWR0U','EJHLWO7cNq','W5a0WOHgW6e','55oA6icdCmk1WR3cRuSnld0','W7JcJYm','W55PgSkQW5Ly','W6rKcCkWf8kmomk7','p8ogW5VcKSogvmkKm8krWRG','5OkiArO','W6WXd8oBWQtcQGFcLtldOa','WP98hmkXkCoEk8o9aN8','oelcJmoOWOFdNa','WQn8W4D/bG','o8oVW70cW5K8','ymkoWOddLSoFdSoSBa','C8oWWPxdUSkzmW','6yst57655PEb5lMC5lUR5A+I5zYA','zHzWWRlcLG','oaJcJmoAwW','F1hcUMDvCSkjtLdcRG','qSkaWOiBmmo4','WRtdGCkfFCoYWRazj8kmW6e','jmooaZy0','nSkemSomWRW','FMDFAmoe','cXZdJ3KiW6nho8om','W4ZcV8olo8k/W6tMNBtKU4lKU7lPGzS','pCoissODlCocWQrdW6u','WRfqWO3PG4VNLPVOPjdOJ6q','WOldP8ou','WOlcLKNcGW','WQ4LWQmwpG','kmkBeCoVWQC','6k6S57Qn5lYx5Oko77+M55sJ5lIE5BYc6yc26ikk','WQ5JdmowWQtdUM8y','5AYh5ycHWRDkfmkFWRldGCkyxG','bLfOWQygahyY','5lMa5lMl5lUu5P2h5lMs5lIn6yc65zUI6zQP5OUi','6ioj57oM5zcB5lUr5yQx5yUQ6yAA44kT5Aw+6z28','5ycE5Asb44oI57MN6AQU5Pwq6k2B44gd6l6D5PIM','kblcGa','rCoSWQ7dNmkG','W6rplwLd','p8okW4lcQIKKqvfs','6ywP57+e5PEO5lU65lI75A6D5z2X','WONdRmobvMmlid0','FmoKoxvN','yrvMd8kmyCkmWOGoW48','rEAEJoITHE+8V8oAmmkkWO0Exq','yX5/ysWHqSkHWRy','5zYk5lQe6kEA5lUp5lM15lI+776g5lQN5PQg5zY5','AH0fcr0','n1xcI8ouWPVdJaddQmoy','ba7dGLJcPe/dJ8kDheS','tmkGWPGBjW','W7pcSSkb6igC5lU/WQNcHSkg54I45OgR','DSkoWPddNSopfCo9','ieJcJCocWPZdIWBdRmoo','WRFcIc7dIq','xvbLWQaF','bCo4W7FcRCo1','z8kkfMXdiCkoW6Ol','EUEiHoAcPSoPifPsdGWd','m8o5W43cOX8','WOnKWPe','wSkrxKvmWRNdISoCiJxdNJhcHa','nSkhWQG','jJldUum','W7eRv8ksW6ZcOcDhzh4','566HgmoXhhRdVmkWksVcNG','W77cSSkmpCoiWQtdL8klW7jh','W7LFW65Pza','WOddVx09FrD5FuFcLa','zSoKFSkDW5pcGGtcKZRdGSkRW5ddRW','pmor5zo15zcP6kEf6iY6W7pdOU+9OuC','AGldPuj7W4imDSojW5a','lmolWQW','WO8DW5mtywC5pgtcRq','WRFdImoLDM0','W5BcRYRcQCoX','z3BcP0TwW4Xj5lQT5yIj55Me','6l+xs1X1pt1FW6/cMmos','DWTTWRhcL0K','Cq7dJUMHQEs6IoE8Nos+JUAdTCkHmq','W7X6wG','sg1qWQe','WQdcUSoazmkqW7O','WPpcKeNcGK7cJmkre8o9','p0ZcGmowWONdNr0','WRxdGCkjBmoPWRC','WOfvWOHxkt1XmG','6icvyrDUEbjmWQRcV8oI','dSka77215lIb55+t6ykw55UD6zsR6AcE55Im','aaNcImoCcG','W7PCj3v2','n8o0W6HqWOq','sColaw1rWQaR','WPXxW6j6aW','5yI544oPW7W','5OMB6kgW6icmW4vI','ASosW6vHW5fbubGPW5y','W5NdHmkcm8ogWQNMTBlMG4NLJz/PGAS','i8kqA3i','mmkzra','W7H2WQ/dQKe','WQNdTmkpFCoYWRb2kmkeW58','CWrZzJ09xW','o8oCW4dcRa','lu/cKMrhAf/cOmk+uq','ydWVnX80WQG','D8kfWPFdNCowhmoT','B8oGWOJdTq','kaGAW6X8WQtLKO7KUkhKURpPG7K','oCoRW6yqW7K','eSo0W6fJWPddGbepz8kC','WQpdM8kCEmk85zk55lQ844glW6lcUq','WR1Hh8orWRxdN28AjIa','57gY5zkG5lQW5yQ95yIe6ysj44kG5Aso6z6c6AQK','WPyaWO4Akmk4W7m65Rwh5Oc7','qSkXWOmOoCoUy8ktaCok','r8o8W7TKW7W','jrpcJmoeuq','mSocW6ZcGYW','WPNdT2CG','WPCxWRqjfCom5RwF5Ooa5yYT6yg9','ymkZW6f0yG','yIiVlW','WQBcKthdJLa','eXJdRCoQfq','WPDdfmoEWPK','WRnOga','sCoKWRpdMmkd','yXTXEYW','W5lcGL3cJLpcJa','ESoNWONdSSkFka','W71bWQFdGMq','WPJcJfpcHq','jHpcKCoduxNcLYiHvG','jCoWW7GFW54CWRhdOcm','5REI5yQEW6Hlu2pcJKWv','6icCnmocDHrhWODDw8k2','ialdHmowgG','b8kjt+wBRUMyQEAlLEwqGq','W5/dJKBdOq','zCouW6LrDvhdTmk4cuG','prCWp3v+bSoIWQ3cUW','WQ9/fmoCWOddVNKdoIC','W5zYW55hqW','jGhdQwqm','CxP0rCovja','W6XCjg9RmmonW77dQ00','W6tcKIhcJmoEdSotm8kAna','FWddG8kAW4pdHgu','xqrhqd8','pCoPWRW+W5KIWQNdOeRdVq','BmoSWPxdVSkIkY5eWQXP','5PsW5BYJqrBKVB3NLAZcGSoSW7fn','5B+j6Aom5yEe5Asv5lMe5yIe5OYq5A+W55QO5B+2','WQRcLHxdKgi','yCkEWPxdNmoFcSo6','yCosW79HW5HtCG','yX98zI0G','WOCcxSoRW4agEmo/WOn1','emo0W7HXWORdGtSyzSkD','oI7dUv8','uZa5kqP35lUa5A2E5zYiWPm','W5j0WQ3cG8oEFGdcQmo9ka','5lU+6igL5lUa6ysd57265lMv56ES6zMg6BU06k2v','ESolWPddKmoiwCoGASksWRu','rCozhgvfWRe4WQVdSG','ytiVnbC4WQm','FJiYiaO/','lSo0W7bAWRC','WOqsWPOwo8oSW650WRS','6ignWPhcLGRcJa7cR8oRlSkd','W7eRv8ksW6ZcOcDhnx4','t8kXdgjEdSopW6GDWQm','CqddGW','iSkuBhTeW4q','W5iYWOCFWRXrWRTSW5pcIW','jcRcM8ke','drJcP8kJWPO','imkqB3K','WQ15bmkWdq','W4qUWOaoWRuQW7bMW5pcSq','B3P7rSoNjConW4bWWPS','kfZcJvSX','5OU16kc/6ikOW5VcUCkOW4FdK8kXsG','nmogW6tcPJiKs1Tv','eSodeHO','t1rWWOmf','twJdPSkDr8oV5Rwm5OkE5y2g6ygc','W6PElN12iCoJW6VdP0y','pvzEaSoDBowsRoELLqpcNG','lG3NIzJMGRBdJSoezCoMWOyw','W6CVcmobWQe','t0LQWQWnu3K','WQKcWOaSbq','lJldUfK9W50m','CeRcP3Hn','p8okW5pdP3Wds0jttq','WRldRmoCrx8','baxcNZLmW6tcV8o4W5PH','lclcMmkfWQHYW5tcJfNcVW','FSkqW5TnuW','cSkvf8oLWRa','iupcV2CI','ySoLW6vbW54','W6aKb8oCWPK','5y6xu8orW7hNIixMG5xdH8oUW5Xt','WRtcNgq','CxzPvG','C8o6A8khW4VcLX/cGL/cUW','oCkdA2HvW6PqkSoVAG','5Pwl5B+SmmoH5l2c55EqW5aDW7OA','WOhdUw0LCqO5uuNcGW','DfVcU3LvyCkf','WPhcRdRdHeW','WO5DW6rLgmkKW4jJu8o7','oHNcMSoB','WR5cW596mG','Ddi1nbyIWPjHuSog','aCowW5iGW78','s2XqWRS2W6xdPSodW5n0','fU+8PUApMEs9LoEBRos/GEAbPEMCKUACOUABSW','eSoaW6boWQ4','5OQu6kg86io7ney2naeUW6u','D0RdQenWjSkCgowqUoEKSG','5OU1s8oJ','WPtdGKSHwW','cWxdMJHkWRC','5O+I5OID6k2H776Y5lMP54+t5RAp5O2y55Mbsq','u0VcVeHo','tMDxWQGRW6W','cXhdJd9nWRdcVmo5W5W','jKFcLuKoAW','jCoZW7pcM8o8xE+/U1TCCq','5OcM5yQ255cC55QMWOenW6BdOg3cTG','B8kTWPeloG','pmkEBNK','AK3cQw1rzU+/UNjMWO0','t0HOWRSDuW','WOG7WOquiG','W7m6WRWhWPS','5A2e5Qgz6ioSDuldPmkVw8kOmq','r8k1WP4fn8oQy8oimCoj','ECkrfLrF','WR0uWOmLoG','zSkxWQ4Akq','W4Dkamk1W51mma','W7mKrCo0vmoq','WQPQrCki5OoR5yMW55gsW6zwW78','CLhdJSowWONdNqhdRSkr','WRipWQFcRCkEW7NdISk/W7Sc','CfJcRmk4rLJMLAxKUOpLPkRKUlW','Fhf+aSkdbCkgW4edWOa','z3BdTJ0','6AQE6kYQ5P+25Psp54Im5Og4776f6k+P5l+d55A9','z3BcPXPXWP1eE8kfW4a','W4m8eSoQWQO','WQRcJthdGfm5WQhdLCkOWOa','5zo96k6M57IO5l6k5Ok277YB55E65lQo5B2D6yoh','W49xfSkLW4LFoSkGW50','W5/dJHFdHKhdLCoDumkKuG','yCoCW6H7W4TNBGqL','W4aUWO8jWRvYWRy','W7X4WQ7dGgldJHVdS2ZcSa','WPpcHf/cHuNcQSkvdCoMda','WQ7dHCkJuSoS','l8kuWQ8Y5OUE6kg45lUS5yUl6kAc6i6G','uY0DaqS','WRNdGdJdNmksxmokEmo3CG','C2NcUWbPWOjDeCocW7PjWPWD','mUs5TowTH+wFTG','WOJdRmoetg8tkWtcLxC','A8osW7HtW55rEr4rW4W','6kYP5PY45Ps954QG5OgX77+D6k2Q5l2755sjWRq','fHZdHfxcTw7dMq','D8ktWPpdNmopdCoMBmop','vmotW6LWW4K','ySkaa2jEnmkDW6GAWQ0','xhFMOAdLVyJMT7BMGlJLHyJLRR8','pINdO1O','boADJ+IUJE+8HtZdQhNcPCoRWP0','jGxcOmoqemkDWQhcGCo4ma','fr7dUW','5yE/5A+vWQldPgyoW49yamoS','F8k4W5P+ta','bmolcby7W7JcTCov','W4a4WOSiWQXJWR1YW4u','WR5pW6nUpW','DvVcPM1aBG','o0/dQmktsCoIW6NdNmk6BG','WRJVVANcP8o8WPpdVSon5PwK5y+Sbq','56EP6zID5AsU6lE7W58A','zmk1WQFdJCkScmorsuXte2yG','o8oOW7uzW4i8WPFdVsxcMq','id3cQ8o/DG','W5vuW75FFq','iCoPW71hWOW','W7O6b8opWRxcUE+9JSkMd8om','WP/cHKNcMfZcN8kv','AmoErUwDIoAyLSkHWOdcKEA3OUAaJG','jmkGW7xcMCoTemkaDMPq','pmkuDhvvW5TCnmo5','pmoPW7uB','vmodawvzWQSQW6VcRmos','WPFcQx7cJxW','bSohfHmlW7xcKCoubbu','pJtdPvSV','ySodWQXBW70uA0RLKyVNPzm','WQ9Yg8olWRtdVG','mqVcPSoB','CL/dGmklaG','W4lVVkldJguzWRdcSLDjW7u','acVdHgpcIG','mXpcQCo5iG','WPZcGLFcJG','lmk4kSop','5Q2Z5A+u6kYZ5lQA77+I5l2L5O2U57cK56YR44c5','W5y0WO8FWQXK','ghr/zf7MNBVKUyBKUjZPG4JNRiG','WONdVCoAwMGibchcLfW','WPFcKu7cKG','WRipWO0','AmoNWRW','W78jWRyEWOO','WPRdRSosuxiUid/cN30','gX/dSCoXhWBcGXTz','W69CWRBdRwRdNdNdRKJcQW','p8kXimopWOxdJLFcMJpdSq','5PU05PwX5AYW5Qc66ioN','5lMX5lUR5lM+5P+q5lI05lMM6ygE5zQq6zUI5OMb','5OkZdhdKV4dNL6NcRwOhlca','jSoWfrC+','W6mMbmoHWRq','FarQ','zJGZkW0','FmkfWPpdK8oAwCo1pUwzHUwSJW','W7uwW5NcKmouWRhcICoMWOfa','WOrDW6nXbmk5','dXtdMuyX','W4n7pxzh','z2VdNmol6kYW5A6v6z+Y5AYq5PYd55Y7','jSo1W6hcLa','k8kdDMv0W4LkjCo4ua','W50inCoaWQu','W7TmWQhdJ2JdIIq','gbVcRCoyCW','WOvzW70','cSkXWRWIWP7cLffkDCoi','uo+9TUEJRos9HEwASUESPUwkR+wrU+s4REIeTq','fJddN2pcHG','W598WQ8','6AQr6k+E5PYA5PAs54Ix5Ogn776T6k2s5l2C55Ek','5A+B5Qgu6ikhWPjMdSocneRcPa','5OMG5B6t5BQP5Ooh5ywx77645ys06k6i6zEN5R2S','W4i6WRCVWO8','FSkoWPJdMmooeq','W4ieW4HAaXXtcZe','5lIs5lIe5P+K5lQb5lIU6yoU5zIc6zIN5OIL5zkA','W4y2W5NcOCob','l8oWjr87','W7X6W7jeqSk4WRJdRSkBgq','a8oCW4LBWRS','W5qds8o6wEE5O+MRIoAxGUIVHHK','emohebSCW7BcMCodgq','FCooW41uW4e','WPfwW64','oSoLW7ZcM8oTvq','WRnSg8kQgmoliq','iKNcMNm','EmkpW6Ge5zg85lUD44oBW4jXba','5OUc6kcmW4rb77+d5OYE5RUx5y2v6ykM5Q69','e0RcI8ozWPRcMa','v8kPW6brrq','kZZdR0v8W5CmiSkfW50','AKVcQ2LrDCkt','qCoiou1r','W7CsW4ddVmoEWRxcICoZWRfk','WQz3WRbNfa','iCkbz3jtW4bymCocxa','W5eZWROpWQW','6k+757Uz5l+75Ogn776T55wK5lIV5B2o6yc86ik2','jX3cJ8oDrW','cWxdMIqEWQpcUmoJWOvP','qq5wqXi','W4HeWQ0','nmk4jmo1WO/dNG','bSo3W5rkFG','FdyXiG','suHVW6jq','WQX9bCk8f8oybCo1d0e','BNDXzWj3W6aMxmkj','eIRdGLik','W7CHWQWOWRa','WOnfWO1w','6k+557Mt5lYA5OoY77+H55wZ5lUf5B+b6yoW6igr','W6dcJYVcKmom','D29nzmoc','jHhcTSoxf8k7WQxcN8oJ','iSo0W74PW4uR','W55ahmkQW48','jSo6W7et','AJFdLG','pCouW79JWRO','fXu5aCkcBoA0QEAdIUwpSUMdOW','m0RcI8ozWPRdIW','prpcGmojtG','WQaLumoLWP8l5RED5Ok95y2/6ygz','5PsW5B2gBmkI5l6V55EXDmkml8oM','W6ubW4tcPCowWPlcJSo+WRn8','iCkxWQy45l2y5OgB5y+46AUM6k6hWOK','W7H3WQpdGwG','gCo7W6ZcRYq','WQlcJYNdMa','6kAi6iUa5AY95l6evLRKVy7MMiW','ENPUy8ogkCopW5fWWOC','WOHTW4mxW7q6W78TWPVdTq','WRNdJwNdKCksuCokx8oqFa','WRVdNEElQ+AcOaCGWOxdM8oGW50','BmoWWOJdRSkencvHWOP8','W6jjjq','lCowW7xcJJe','jmoLW7pcMmoFvmknDfXh','W60SamojWQxcTsa','yqxcIXW','W5PDhmkYW5nFlmkIW4S','jv/cH8odWOVdVGBdTSooAa','5PYq5PEB54QR5Oct772u6k6K5l2u55ENW7hdTG','neZMOR7LVPFMT6tMGj3LHAFLR4WN','shDDAmog','W7jjWQxcT8o5','5Asy44gR5l+H6k6g5l6FpEkcVSon5lYt5PIx','E8oXW7zEW44','y8klW5Dnzq','Ae1LWQu+','D2TwWQmZ','W65tW6ZcTSowWRRcK8kYWP9R','W4pcQrhcMCo3','6ick57cS5zok5lMr5yMh5yQ86yw/44o85AEW6z6w','p3CllXf3WPrPvCkj','W4XkgSk1W5rEeSkGW4eT','h8k5WPyama','se7cTxyEWQNcUmoKW5TP','caFdSCoOdrhcHW','p8oUW7VcImoWxmknEhvB','h1ZMO5/LVQFMTQRMGABLHBpLR7Ho','ra4AeG0','lmo+W7OFW4iQWPJdVc/cHW','WQNdH8kr','5OMX6kk36ikn','nmotW4RcRa','nXxcJ8oCr3S','WQPScCk0vmobjCo1cNq','D8kfWOlcN8oZpCkJnmkgWRu','W6dcKI3cKq','W7XwWQ3dGh4','xvTSWQeCCM9Irmko','mUACJUISLo++TSkWvmkPFSorW7a','6ywF5PEd55AY5OUb5AAc6lEXW53cSG','W7Tdj3K','culMO7NLVRhMT6ZMGQdLHyhLRyG','AmoNWPldQCkihsjgWOPw','44cy6l+L5BMU5Rgn5OQr44ch5A2b5Qca57UM5P2E','ECo8WPxdUCkSnYC','fq3cJmoQcW','5PAv5lQH5l2g6koS6iAu5yU/5RcL5ywJ5yIq5Q2M','bSoKW6jQ','W7FcIW3cMmom','5OMB6kgW6icmW4vIxcPttmky','uwnEWQO/WQtLTA/LH53LJBJPGja','WQ18c8k6hmoFnW','W7uwW5NcGSoyWR3cI8o+WOzo','CNLmsSos','FeT/DZ48wCkQW7hdTW','W5LFh8kVW4G','WQVcLxxcJhW','WQ7dJ8kfuSoD','sSkfWOddVCow','776e5y+O542Y6zA16k+I5lQc5yU/57I65Q28W44','jHxcHSorcSkPWQ3cLG','ySkkWOldLW','z2BdM8omWPyMWR3dHatdSW','ar/cSSkMWPG','W7WsW4dcTa','jSohW5FcM8oB','WQhdVx4HzXfJtv7cIa','s8oZW5HHW5q','W4n1WP3cJ8oA','m8kYnCozWOFdNvFdLNJcTG','WOddVCknu8oq','AUEBN+w1R+s9Q+EOPUMvHos5PowSJUwEGa','nqFcPSolfSk8WQ3cH8oY','5zQi6zM95OQV5zco5l+F5OkR','5OMT55I26z6N5Rkl44gD5lQR5yQp5yAM5A6y5lIJ','5lMz5lIx5B695yU65zIm6zQN5OM/5zoc6k2n57U9','jYRcHG','yX5+Ct0Gwa','jG7cISoCr0/cNY0HwG','WOPRdCkUoG','pmk2W5VLMB/PM7lMIyVLKjmGW6xKU6a','emo4W712WOFdHG','5A6f5Qks6igQbJZcUxNcHmoHWP0','WQ9ZgCoCWQtdVNK','WRxdGCkACCoYWQmXl8kr','W54Bi8oQWP8','W7PwWQ7dIq','zgxdMa','lmkwW6LnBXNcPCoO','qmoph21eWRe0WQddQmkm','WQXShSkWhmoBiCoPga','goIVKUw+KowhJEMvIUwfVoEUKUodSoEwV+AjTa','W6qOcmojWRFcVcy','wCohWQldSCkE','zSkpW6Dw','DSkmcMnYkmk9W6ycWQ0','W7SwWQJdG2/cLYxdV2/cQW','iKJcJ8oCW47dLaddR8opxG','WPH5WO7dSSkqW7tLJlBPGPpNVBlMTQC','zHeUkbmuWQjOrSoa','W6rFW45Gya','bGxcOmoqemoV','W6FcKY3cK8ord8oYg8kp','keFcGNqgybxcSmo8rq','oCkYnmkkWOhdN0BdKXpdSq','y8kYievj','WRTdoCojWOu','W4nBpMX4','WQBcMJJdJ1moW6RdL8kIWOm','ACopW6LXW4XaEbG','AmorW75WW7u','W5lcILZdI0tcL8kfwSo7gG','W7ubzJeVACkpWQhcRWu','crNdOCo7cqhcKq','j1NcImkAW5y','aa3dLJG','W7X6W7jeqSk+WRldN8ktdW','wvDOWQKP','W7m4mSo5WPq','EmoyW6n+W4O','WRv1imorWRi','iGJcKCobtg7cNYC9','iCorW6FcQ8oT','WO3dOmoevMqvksBcHhC','WPBdNgSODq17vG','hmoXWQShiHNMN7xKUypKUAhPG48','o8o+W68fW4uGWQy','WR/cP8osza','aGZdK3FcT3JdHmkzjfC','j3j7s8opBmoDWOu','a8ofaXWnW7i','FHXXWRNcKvi','WQNcIx3dQgn8W7pcH+wtGoEKGa','W6rjWQFdNG','WPBdRmoetgCBia','WQrKs8kfW73cPq','W7hcJJdcNmkF5zcb5lMs44gWW7DB','o8kVi8ojWPpdJL3cJa','xSo/cM58','pmk1WQ7dJSkOcwvhWOSL','iq3dSKhcQa','wa7dJCkx5zIm6zQN5OM/5zocWQeX','fHRdHLhcTx3VVRdcPYb3','uxnOumo1','WPpNIQxMG4NdJCowjHNdTCk/DG','WOSaWOqA','aGZdK3NcOhJdHmkUh1K','W5KaemkPW5jnpmk1WOmS','W7b8W6C','yhTWWQS','iCoVW7meW5u','W6qMaSon','gmoLWRflWQBcLabk5zce56sy','dbhdKfmt','W7tVV7RMJ6hML4ROGRRNM7JcLGhcMci','pKFcM3m','xCoeda','WQBcRmo7vCkC','o8kfzdei','ySkkWOtdJmoF','W6e6n8odWPK','aSovW7HWWOFdLWGfE8kb','FSk2iCopWOJdJHldLH/dTW','a8oeabCAW7xcMCovkWy','zSoyW6v8','5A+l5QgA6ik6xdtcUmo9W5BdJ20','5yAG6k+m57ME6k6S77285ywC6k2P57Uc6iQJ44kw','WP1Hh8orWRxcRq','W6FMNjJORR/VVQGTCCkVW4FcOmkv','Fa0/WPFcOrRdMCoS5zcg56wQ','W65uWRpdQ1S','DSkmcMnYkmkRW6WEWQK','W6H1gxDK','W5H5nSkSW6y','W694W6fdu8kBWRldNq','p0ZcH8oz','W69fjxHapCoMW6NdSKK','WPH5WO7dSSkqW7tMN4VKUjNKU4ZPG4C','tZr4yru8t8k6WR3dSW','WRlcJtNdGfm5W47dGmkOWP4','qCkXWPeik8oNECku','BowiMoMdREs/T+EyMUwqGUwnRW','eb3dGrVdQa','a8ofaXWnW5pcMCobbri','hYpcSCkRWO0','AmoNWRWxW4SQWQBdUNO','WQPQrCki5P+85lMs5lMo6yce56+955kf','Bmo8WPtdS8kMpJlVVklMI7NPGj8','dWZdIYu','FaddQq','mbC9','W5ycxSoRWPegEmkUWOn1','WO8oWOSTlCoOW6bPWQyG','D8kCW61kDwVcVmk4ffq','W7jSf8k/W7y','W5BcPmkAqWW','vfDAWQy6','vu99','W5v6WQBcICoOvshcVCoIoG','mmoOhWGH','5OgP5yQe55oO','5PAy5Qo255EkWR3cMt4Qr8ocAa','p8ogW5VdG8kW','j8khWRPymuxdQSk0tW','mSoLW6lcNCoRsCkmDgfk','WQTuWPTCpa','44g455we5lQV5PsF5RoZ6ygO77+U5OU15PYc5P+U','5PENW7xMIiBLNOlNVylcMoIoHEwmQoobSowKLa','moAEJUIVV++8M1j+c8kVWRZdSW','W5X7b8keW4y','DSkkWPJdKCk0emoRgYxMRzO','6k6l5P2l5Pwg54Mx5OoR77Yh6k2N5l6w55sbW74','cmoxW5FcPI85wKXtvW','W7uwW5NcLSosWQdcGSoLWRDw','xSosW7X9W4PDyWu0W5O','W5XfjhbU','drhdOLiQ','W7DRWOxcGCon','frZdLf4','cHNdSCoW','WPCeWP8wlCoVW6POWRWy','tmkmsqeCW7pcISoycqq','DWf2WQ3cKuNdTSk1zCo5','WOtcHKVcO1W','DgT1umoy','keJdL+w3S+weKo+8LtddUCkZua','WPTmW6XKbmkIW4PTvCo8','fCk0kmolWQi','ereKW6jfdsC/bSkb','BNz1tmoQkCoy776T5OI16yo4','WPNdT2WhCa','AK/dQmktsCoIW6NcJCk6BG','W751sa','jGZcPmozaCk9W6tOHjVLIl/NLzW','CeXGWPyA','mdi3d8oDrSoDWOvdWOm','5O2z54o15zgO55IS57gU5y6x772y5lUH5PMZ5yYC','WOfeWPnBiJ4','WQrqzJeVACkpWQhdVIi','FeZcVhn6z8knxuy','iHRcOmoDeCk7WQVcG8oK','oSksW5VdGYbWtKbjtW','mmolW4pcKW0','D8o35PEb5lMC5Bsu6yw35PAc55EH5OMI','BNtcU2vAvSkbtf0','W4mMW4/cLSoX','WPD2i8o+WRa','WRlcQCoeFSkrW5VcN8owW6ez','6z226ksq55A55OI156km6kYqDKCPW4i','hrZdHuaj','W54DW5ncrG','WQdcVCoaD8kaW6NVV6ddRmoDjq','WQhcLdhdHfrYW7ZdGSk/WOy','pJW65zUa6zQ+5OMC5zo5WQ8P5lIh','F+++J+AnNUAwQ+IdQoEBN2TzWOP2','5OgpW5f+','W6qJjCoYWQi','WPBdJCkFCSof','W6RdKhdcJaPXW7pcISoGW50','hcJdKcbZ','vCkIdNDP','vmkIWQ/dLmoB','77+q5lIl5PMv56Y/5y6u55Ij5lYQ5AkA56YB44gr','smkLWPpdQSox','l8kuWQ8Y5P6v5lQ/5lIn6ykc56+N55kL','57oI5zkY5lIZ5yQR5yIY6ywl44oI5AA66zY16AMo','D8ooWQ0','WOPMkCk+hmocmmk76ysM5729','WQZcUrhdTwm','W5PNWQFcN8ot','mSk4W5BdOCoN','lI7cHSkaWPH/W73cJeFcQG','W6COc8on','WOmMAd8HzoAEJUs4H+s6MoMdGa','acZdI3JcKW','zmkuW6rb','WQ9kW41iW7O35P++5lQl5lQS6ycW','WRnQhW','W50ZWPy/WOS','teL6WQC','W7TCWRhdN2tdLJNdKxRcVq','o8ogW4lcMZKGqvbiwG','C8ocWQNdP8kM','5lQd5lId5P+U5lIN5lIx6ygr5zQ16zQf5OIp5zkC','WOHTW4mxW5m','W4XKhhzK','aWddI0lcTw8','pmoVW7dcO8oWwq','WPHnW75+','W5CVWOio','ouldQa','WQdcUSotECklW67cK8oaW7C','5y6k5PERWRWkWOZORRVMM4BcRJZdVq','WOFcUowiMEIGPG','WPhdPSovyg8y','WPqtWQa1jG','W4ZcKqZcMCoP','WRKzW6VdJSkjdoADIEs5K+s6IoMcSW','W7XMdSoAWQddOcChkd0','d8ohfqeyW6BcMq','g8ovW4lcPYHW5BEC5lUT6ywS572a','WPjxWPTqoha','WPDvWO5FpJ55jsFdTa','u8kmWPpdKCoowq','ke3cHhuvzKRcOmo6xW','rmkZWPihkSo4','pX3cJSon','WOJVVklMJkJMLkdOGBxNMzxcVxDeW6C','5Ocz5yQR55c/','CX56WRdcKuK','BCk/WR0pkW','kCoaW7BcUbG','zSkYW6W','WQhdMCkQsCoW','C353rW','idBcICoduG','WQK1rSojWRFcVdRcMgy','W6tcLtFcLa','cWZdKgdcSxhdN8ki','5QcE776m6yoT5yAX6ywu5AsW6lUi5z2audq','jmoRW6hcJmo4xSke','W5lcSqRcKSoN','6kAP5lQW5yMxW4VdGo+8KEw+KowKOUwjPow8MW','ECkrc3vj','W7ywW53cSmobWQdcISo3WRHB','WQ5JdmowWQtdUM8yoG','ivNcJ8odWPVdIW','WPldTgiHyZr+uvG','W6D+iK9L','bWpdKtDzWQhcRW','WRRcLEwtPEENQmk8WRH454U/5OoPWPm','EtiY','W70pfmohWR3cMJVcGJRdQG','WODFWPfspW','5lMb6iov5lI56ywB57Yj5lII56Eb6zQW6BMl6k6u','kSk4kCogWPu','mSoPW5BcSmoaDMyhWPmO','5A2M5Qof6igyWQSTimkVW6BcQSkv','5zgi6k6n57UB5l+Z5Oc3772F55sd5lMb5BY66ykj','WQXVWPTnasvWnsxdPq','lmk6thfG','WPRdM0KDBq','fCkFW5JcVSooE+A3G+AbHEwmVUMaHa','W5L8WQhcGW','jCk9W6XYW5K+hubS5y2H','jMCnpX09WQPe','WQvfW6/cGsdcLhRcT2pdQq','WOddQgiNDX0','WP1AW5Dtcq','B3PSs8oeo8oeW5Dq','WOXDW6T3bCk9W6K','WORdTM0','dSohcbunW6K','W5H4amkEW5y','W6igW57cUq','E8kOWQ1hWPW4WPhdJsRcV2e','WQ3cKJtdJW','W7SSemobWRxcRJhcNI8','kSotW5xcUJK','oSoWW68gW40SWQ0','yH9WDZyNASkHWRxdHa','jWhdReyW','W7hPH6lML4pNL5NMIQX2DEw0OowsOUASVq','sSolaMK','BM92s8ov','WPTgo8kOfa','WPm2WR0TjG','oc7cKCkeWOrUW6lcIf3cUW','WPJdQ3C/yW','WOCcxSoRWPfxEmo/WOn1','bG3dNdDs','5lM56AkAzCoHn8ovW5aMWQKI','WOncWPToltHXas7dPq','aqZdL1FcOMNdH8kihuW','5y2VqSodDUEkIoAdHCo9W6VcONq','W75VW7jlqSkjWPBdImkzeG','AH7dQmktsCoIW6NdNmoRBG','mxr/zf4','WPFdNSkSB8ou','fqVcPmoVhq','wZaxns8','pSkJi8olWOVcL1/cNXZdTW','ptNcN8kvWO9nW7NcHuZcJq','CSkEW65fDfxcRq','bmowtW','WQVcMdpdHLm0','WOhcJeJcNW','W5u1WP0d','uvL6WRWjr28','nrNcHCojv2xcGG','WQv5WOT/jq','iGNcGmolr3RcHq','W4rBu8kpW7GlkCoY5zkJ56AO','iCkAW7ay','o1RcNMicsvpcUmo2yW','oSo+W6OFW4K4WQ3dVdm','WPddNCoZuMm','W7BKUiVMSR7PNO3PMzhNPyWGqo+9K+EvUW','dqFdIXDzWQhcS8oJW6XH','b8oAdWenW7lcR8oibai','6ycxW5VdTc59gCk5WQuEva','W6XCWQtdJxJdLsm','5OI96ko+6ikIW4nwla5IrKS','AabZWOFcLW','5lIw6AgKWP0GAEMFRoILLUI1SoI8P+EBUa','55c66ic5a8offablDu7cKW','WOzaWQfxka','WQSzWPhdO1JdTxNdT3VdPa','qSopbN9EWRagWQldTmkx','xbzkWQRcRq','WOiMWOONoG','WQpcOCotza','W6nXWOdcVCoF','5yEH6ygP552iW7hdJ8o05lIC5yIZ5yUq6ywI','W4bagSkO','ESk1W5NdMSkFpIPEW490','5RU25y2LW5qu772w5Bgm5lUV5yUH5OQp6kwJ','gbBdKJnqWRdcNmo5W4XA','5PUo5PEi5A2w5QcU6igI','o8khWQujlbtdTmoLbWO','iuJcNCoeWOFdLWhdKCooqG','WQr5W59FgW','W4f2WQ7cImoydbhcSmo7nq','W7hcMc3cJ8old8oLc8ktmG','5OIV6kox6ikzFmkM','eSoHfZu3','W7P4W7LEvSom5zkQ5lMl44o+DG','puyWBNv+bSoIW7ZcUW','5Bwb5zcF5Q6TW40','jSk4W5VdPhf9aW4maW','B8kEWO8qbW','dr7dQ8oScttcIXLiWPi','yCkUWRZdTmo+','vSkaWQxdKSo0','562fWPFdSbJcSXK6r0ZcQq','p0ZcGmowWONdNr3dQq','p03cHguoyfq','FqPLqJe9tmkFWR7dUa','h8k5WPyammkRCCoh','hSkc54Uq5OgZwCo9W7BdJuDm','W5lcNXO','fCk2W5JcVSon5y6k6ygk5PEC5P+vdW','W7rPW7HytW','mc83tSoiomoeWOGrW5q','etVdGCoviG','DCkDawrfjCkaW7SD','AxJcQUwqS+s7L+s6QUMcGEEVT+EsRUIcUq','hCouW5BcU8oR','bmokg2LxWQH0WQJdP8kw','kSo3d8oUW4BdHHlLK7pNPOlcTG','5Psk5BYCW4ldP+s/LEEuHexcUmoHpG','btNcL8oyua','iuNcMxCaAKG','k8kJimkhW54','EUADL+ITHE+/Gfz9dKnmsW','CUAFIoISJo++VSoKWPvpW7RdHL4','WPNdRx06nbbYtLZdNW','E3PZuCojoCoMW5DmWPC','smk2WPiBf8oLA8ki','5yohWQNdLX1GgsW8WPH7','W4nAWQW','DCo6WPNdGSkepW','5zoe5lMG5yI95yMW6yEH44gn5Awk6z6o6AUm6kY2','kJ/cK8kaWOCMW73cIeFcVW','W45ka8kNW45Fomk3W4aS','E8kJWRVdP8oj','iSo0W7uy','iqVcQ8oAjSk2WOdcLmoNiG','i1/dJty8','WQrZW591ia','p8ogW5VcKSkxvmkKm8oaWRG','grhdNJfBWQtVV4FdNCo7rW','5A2A5QkX6ikY','DCkoWPJdI8kA','n8oxW5tcUJ03sW','iCo1W7GtW5qaWQ4','44g76l635BIK5RoF5OUj44gZ5A2d5Qgn57U+5P2D','WRPSgmk4c8oykCo+bwC','ufLNWQGCsa','EgD3WQW9','FeZcUMvgDq','6yEF5PEN55wd5OMx5Awp6lwYW7CM','lu/cKNGtxv/cPmo8qW','f2xcUCoDWOG','W7Pzkh9Nn8or','W4pcQJ97','5lUh5lIj5lId5P+J5lUu5lQE6ygI5zMi6zQ25OIb','WPFdUc7LTQVLHApVVAiDdWZcKq','W6LzW75yu8kpWQpdGmkofq','5PA15B64WOyy5l+g55sCnWO1W4y','p03cLgioyftcPW','6l2ApCowtvpcGSkJWO/cTtG','WOpdRx0M','WPTlW6r5hSkAW7H9','5yAA5AYS77+35PAY5O+SEWzlWP1U','W4Tdh8kPW4S','W5VNIl/MGRyFENy5ySoDiW','6l6nA8k3WOBcJ2xdPmojymkA','W7ubzJeVACkpW7dcIa','WQOpAd8I','maxdMJTkiHFcQmk+hq','CCoJWPtdPmkh','kWFcQ8ozemkN','ycmXiHaJWOXOrmo7','F8kjaq','WOvDW75LeCk2W7G','mZxdQq','W4Cm5Qg35BYt5RAk5OcR5ysN5AY1','WRrNcCoWWRBdO1OyjIm','nbhcRmorcSkeWQhcIa','5BAG5zcH5Q6lWPC','WPCeWP8wlCoVW6POWRW','W6rnjx1LiCoqW78','WQeNWOGsdq','umkGWPfezG','yqxdMJTkiHFdUCk+ta','yXH0FtyGDmk8WRtdUa','W7Wch8o5WRG','naVcGSoraUs9TUMGQos4P+MuU+I/LW','57Y55RAv5Oo477YWpmoMWRFdJ8kCDG','WPfdfmoxWOa','W4xMNOtORiVVVBzcWRxcR3RcOJe','W7jkeSkVW78','W6LDWQy','pSkeCxq','WP9kW6rIfCkxW7rOrmoh','W5NdHmkcm8ogWQNLK77KUk3KUPtPGOi','vSoTWRe','W7esW4hcVq','W78wW57cOSosWRpcGG','WPFdOmoesW','velcRCk2qL3cHHCcWRm','WPrvWOPXoYremIBdSa','W71fp3bN','EfDHWQej','pSkdA3frW55a','kY7cPCoQrW','sCkXWPKokSoJ','nbpdPsDik8onfrJdRW','dJRdJmopaW','BSkVW5bUAa','W7OGcCogWPVcVc3VV6tMIyRPGPK','hmkuCNndW4vnkCo4qa','Ef3cVgncyW','pmkACwXrW49C','CLhdJG','f8oeW7KfW6eGWQZdUYZcKG','CLhdJUEiGEAdR8kye8kqW5Cw','WOpcJfBcHg0','hX8QW6Xi','mdi3d8oDyCkmWOGoW48','mSk4W5BcSmoaj0e','jCo6W6W','eCo0W6vdWOxdKriExSkh','W7vcWOBcG8oY','y8kwbwbvmE+/TCodpCkh','caZdLexcSxRdJW','mSoLW7tcNCoSuCkvphTr','icBdIdXm','eWZcRmo8kq','sSkolK9C','FSkRzG','W6ewW47cPCoAWRVcICoH','WPvhWPn6oG','WRtcLvBcH3W','caRdGupcKq','sSkMWO4','oSkYimolWPpdLKBdKWBdUq','q2vCWQeRW5BdR8oAW4zI','yehcNhuE5P+O5lMw5lQn6yga566P','WR7VVjpMJ43ML6/OGBZNMkHKW6Goya','WRldV2SGyd5+tKNcGG','jtRcHmo2jW','WP18cmofWOi','WORcIx7cIwK','vSoTWPT+W4/cMvfhjmof','W49beSkKW5bomq','dGNdUviB','ACogb1Hf','W5DZW6JLTiJLH53VVlzVW7xcSJS','wmoSWPZdQ8k5','WOyjWOGrl8o9W7W','ctRdQSo9pa','zhjFWRy5','m8ogrowBPEMyR+AjGEwsT8kdzos4Rq','x8k3W41GBq','u8kwuby2W5FcU8o6eG','bmoldhHFWQO3W7JcPmkl','d8k8lSoPWQW','W4LDWP9xiMPOya','WQ5JhCoAWQ/dQhGlpty','5PQZ5AsF5z+15P6Z5yUf44onWPVdU8kDBG','W7OSfCoBWRNcTJRcPZNdUG','pd3dJmo2na','d8onaHCv','5PME5PEM5OID6koZ6ioe','FLVcPN5ujUwsNEs7NooaT8oi','5PUt5PAC5OMJ6igv5yYN','otJcN8koWOr4W4/cMKZcSa','WQdcU8ody8krW7VcK8oiW6K','DdPSxHq','W58eW6xcM8ox','W6S2smoUWRxdQ10emq','W7j0WQ3cG8oEEaRcMCo1pG','iWldPEw1M+weK++/LCooW5ZcTYm','WQxdNgq+tG','WRtcNgtNIyRMGR5CW4P4WOf8','m0G96Aom5lI+57+35l+k5OkG','fGxdSCoS','ySoRiwvp','DY85jaSJWQj0','W7TjkhnWimoJW6VdP0y','WRxcMcVdIeiRW6RdLCk+','5Oo85yMu55gB5zMd6zI45OMm5zox5l2g5OkI5Bsc','zLLwWPRdHuBcHEwtGEENU8k6','puyWp3v+bSoIW7ZdQG','jZRdPfy7W5uB','W5pVViNMJA3ML5VOGQ/NMQHfWQVdTYG','WP/dVwaPyba','ldldPfmvW54nm8oq','v0ruWOGB','CCkcawLebCkaW4GjWQ0','mW3cQSosfW','5B6o5AsO5RcmabKMW4Os5lI456kS','W7npW755uq','pmoBW4NcRr4Pz0C','5AsJ5PED5B2A44cul8oBWPCNaSk0','nJyQW6XlaowqJUs6MEs4SEMaLq','WOlcHsJdJMq','W6e95zkA56EAfSkqW7FNIjNMG71C','ymoFW4BcOdjWuGm','pSkdBwHFW5HanSoV','iSo3A8kkWPRcMH/dNG7cTG','WPtdVxOpCX15vNVcNG','pZpcIConnW','rSkAWPRdLCoS','WRtcQ8kCmUA1REAdPUwfV+wSN8kSya','y8oBW6K','p8o5W5iSW40','D8kCW61kDq','m8o4W7VcJ8oTtSkYAgfD','l8k0sMvy','DZKOna','tLD6WR8jq28','W4JMN53ORA/VVj96W7ZcVwrmW7e','u8kmWRy7pW','ke3cKxCsy04','AK/dQmktsCoIWRJdNmk6BG','W4nSnmkvW4u','yquTmtG','rE+/JUAnKUAvN+IbM+EyJY3cLdpdLG','W5pdKuPUAfJLKjRNP5imWO0','astcV8kmWP8','WRtLV7xLRRJMLBVKUyL2WRXrW55X','DJDnWO7cJq','eHVdJKlcTvVdG8kbfMS','CqeneHC','5PwlW4hMIBRLN4pNVPNdMUInH+woQ+ocI+wNVq','r0ldG3ytW6tcOq','WQBdSeKeCW','pfCWW7ddIXxdGCkUjmoO','6k6O57I35l+J5OgZ77Y855Ae5lQ35B6T6ykv6igT','5Pwc54Mv5Oc777+N6k+k5l6h55EyxCoPcW','WRNcT37cRe8','ivNcNmoEWOddNWBdVmos','g8kFeCoaWOa','oSk3zUw1J+wgKE++OdJdK1ldTG','WPTDW75LgCk+W7m','q8opgW','W7SWW6RcGSok','bGFdKtfkWQW','5yEw6zwU5ywD56Y96k2P5B2cW5GkW4RdUa','rSoZWOhdKmkC','aCoqaXmnW6q','WPBcV8o7F8kF','WPyuWOOClCoRW7W','WP/dT2K','qehdLCocW4KR5Rsy5Okg5y+46yoF','WPNdT2WrFrW','ALxcOwrtkmokeHxcLG','WOrSjSk6gW','tuhdPSkE6yg+55EN6ksa6i+YWP1j','W5ypmSkHW5LfiCoYW6CC','zSkoW7Tm','W4uDW4NMI7/OGRxLJP3cR2BdR+ElOG','WP8TWO8cWRC3WQ4G','WQtdKNxdIq','6k6e57MK5l6h5OcD772155AP5lMY5B2A6yg16ic1','dmkBn8oqWOG','vJi+ptq','CZKOeXS2WQblrCoe','pCkcj8ooWQe','kYZcK8kpWP54','6lY0WRHpkxewyWjLWRu','vCkHWOqb','duRcLNCw','faVcRmkszLJdIdDiW6e','5PAR5P+UiMaq5ysF562VzSo2gq','w3BdGmklasNMTB7MGk7LJPxPGiG','WRBdQ0WHDG','eX/dTG','6AU26k6T5P6c5PsO54UA5OgZ77+U6k6c5l2s55EP','6ycCp2yOW51SW4hdIeBcKq','57kX5zoh5lIn5yMa5yUS6ywg44ks5AwR6zYP6AMs','napcOSoBbmoV5BsH5yAg5y2g6ygc','WQL2WPfOdG','e8oqlZGx','D1/cPw8','WROiWO0','zCkpW6LqDeO','jvZcMgqE','oc7dLSkiWP4RW7/cNf3dSa','WOdKUBlLIjz2qGfOnoAuLEACKq','5P2p57Q45AY9','nSk6W6TqAfBcT8k7w1q','FmocW796','t8oEs19uWQZdKCkCfKW','W6VcMmofnCkXW6KKzmofWP4','wmoB5Qk05BYR5RAj5Ogw5ywC5A2XCq','WOhdVw8QuHf7r3/cIa','WQ9VfCorWORdQhpVVAlMIz/PGyK','mCoAaYmv','W4iQcmojWPq','WQVdKmkBA8o9WQm9','W7PxbmkSW6u','n8oteWOa','EmkpW4TlB03cVmkWdW','o8oAW7tcJCo1','gmoHW5xcNmkzwEELIoACL+ERHUMvOq','W4nBhmk0W4u','WQVdM2O3xG','5OM36kkP6igHdtOTW4/dIaNcRq','A8k4WR9w5P6a5lUe5lUs6ygM56+H55oX','t8kps19uWQZdKConr0W','W6ChW4VdVmkl','WO/dPSoyu3u','gZJcLmocua','W4jhWPJcJmoS','EfNcRxGuyCkftbJcOW','5P+r57My5AYT','p1ZcLMisFa','q8opg0ngWQa3WOBdQSkz','5AYh5BcS6zw5abZVV7BPGPdLIP/MQ53NSRy','WR9EWOddVmkEW7NdISk/W7Tt','kCo3W7azW5S','W5PAamkU','6k+t5P255PAV54MO5OoK77Y26k2s5l6Z55sJWRO','smk/WPmalmoyDmkjnq','ifNcG8osWOddJc7dTmopAq','lsNdU8oZkG','WOCcxG','caNdTmoXcqxcHWC','W694W6rfq8kEWRtdISkAcq','WPutWOyjiCo8W6POWRW','q8opg01rWQa3WRhdKCkx','h8ogW7pcPH0','lSo+W7ufW4q6WO/dVc/cGG','lCkKl8ofWOJdIw3cJrFdUa','jIRdVKxcPW','vSk9WPGhfCoUDo+/R+AjGoMcVW','v8kGWPOmmmo/tmkjmSo3','aXRdJsX4','lYxcL8kdWOzUW7q','hYddS2tcUG','yfdcQW','W7W5aSojWQtcVddcRZpdTG','WOhcUKlcVMS','WP7cHLtcJeNcKa','W6ndiNi','57kH5zc+5lMC5yMO5yMA6ysD44cS5AAH6zYH6AQI','BftdLW','jCo0W7pcImoStG','vSkglu17','WQL1WOD2jq','W4mPWOioW7C3WPfOW5pcUW','vuHMWR0r','W6Xcp3WI5zc55lMg44koWOGI','WP7dJwtdLSkv56Am5zok5PEl5B+YEW','oSopxIC','zCkEW7TxAfBcT8k7p04','wCo0W5PjiSkRimohkSkf','WRldGMmurW','WO/cSrxdJeW','WQLYhmksW7K','WP9vWPbzoci','6k685y6t5lY+55EX6iUt5PAo44o05Rcg5OUH5PE/','WONdNEAHOEw+RUA2R+AaS+weIUwSNSoh','bapdKJm','6kY65P6j5Psh54Qj5Och772W6k6Y5lYW55EylG','W6rqWRhdMa','5l6W5Oct77+V55Aa5lQS5B+I6yoP6icv57k/5zkf','W4SfW6lcTSoY','wmowWPJdMmk8','mSk4W5BcSmoaj2yhW4iO','BCocW7H6','E8kTWR/dKCk0emompcit','iWJcJSonth3cTY8GwW','W6fnWQ3dNNq','l8o3W5rkFUAEP+s6HUs7VEMcVUESHa','iSo3b8onWOpdLeBdNJVdKG','W6VdICofnCkXW6L1zmkuWP4','csVdUrvs','q8opg0jxWQG8','WRlcJqldIem','W7fWW6n8Cq','WP3dOmozw08sisRcIa','ACosW5v7W4G','WRT5b8kQemoyk8oPaNy','lSoYW7isW642WOZdQZdcLG','t8klW6X3ya','qmokt+w3QEwfGE+/N1pdQmkMWPG','DrXRWP/cGL/dI8k4wmo/','zSk1WRmfW4K9WR7dPYpcKG','WRWJWPGlaG','WRfBb8kPnG','u3LlCSoy','WQ7cJIK','FSkcWOxdIW','p8okW4lcQIKKqvfsyG','yqP2WRhcI0NdUSk/BSo0','WP3cUuVcSxu','CfpcPe9b','W5bHWQ3cJmoEsstcV8o3nq','WQpcMc7dGLu1W7/dK8kKWP8','WPhcI1VcHvRcNCkd','W4GyWPKAWQ0','cmogacCb','qCkwWPOyja','lmo1W6ZcNs4','jCo6W7ixW4SQWRO','qSodawH0WRWDWQddTSkz','Frv7WOJcHfBdKmkP','WOGeWPOmkCo/W6O','WQ58g8kX','ysi+naOLWQrOrW','x8kxWRmyma','W4mPWOapWPTUWPzLW4BcUq','W4qNWOSfWQ1dWR1bW5hcVq','lZpdLbby','W7RcGsNcMq','smkrkhbx','W5mNimoMWQy','jCo+W68fW40OWQ0','WPBcM3tcV1m','WPjxWPTqodK','bCo0W7j2WOVdMXiz','v8k/WOqzp8oOAa','DSkeWOhdKCkA5Qgf5B6gpSoaWP8','ieJcMmoEWOVdJWRdQa','W4OLfSomWPO','W6VcMmofnCoGW44KACkiW5i','ECkrWOFLMkVPMypMIydLKBy','WO9/W65oaG','W4iLWPOOWRz5WQzLW5JcRa','lCoiW6hcQbC','tLL/WQynv29G','pwm6','5lUz5lI35lIZ5P+J5lUJ5lI66yoI5zUW6zI05OUT','57++5Rs65Ooi77+tvLPoq0eK','566Z55gr6igz','r8kQnubO','57kz5zcU5lQD5yUt5yM/6yEm44o+5AsZ6z2Q6AUT','WOddRg86yqS','W60PrUw1JEwgP++/G17dGxZdOW','WPyiWOyra8o9W7BVVjlMI5NPGy4','pCoissODFmocWQrdW6u','WPqyW4XXfCk/W6KKAmoq','WRpdHCkmECoOWQe8cSkhW4y','sgzFWPON','DvhcV29qjSkuvXxcPG','WRpPH7xMLl3NLiNMIAdcJmk95OM65yIrWRq','z2BdM8kDW6a','WPKCjCkjW6z/pmki','C8o6A8khW4VdHH/dK1/cUW','B3P5v8otp8oiW5ng','lCkIjCojWOpdIue','WOZdG8oeugGSjdVcMa','FCkecMzxnmkDW7O','WOZdU8oEs2CEksO','lSoDW4ZcRdi','WRFcQ8orCCkxW73cL8odW6aE','DbbXWRRcP0pdRmkO','d8onaHC','WQqbzJf+ACkpWQhcRWu','jaZcMmkgWPa','DSkmcMnXpCkd','qmoyW6ngW6O','x8oFW79LW7W','lmotW4VcVdK','5lIP6igx5lQH6ywb572y5lUO56AI6zQH6BME6k2C','W65qWQZdIe/dGb7dVG','WONdPSoBwG','l8o+W6G3W4SQWQBdUHFcMa','FvVcUgTgCSknxvVcTG','lHBcQSomhq','vu1kAmoS','mWBdPSo0ba','W4vbWQFdVvO','5PMC5PEP56+j55oF6ig8','p8obW5nxWOu','WPxdQmoAwG','f+MhPEAvH+EuIEAjT1iA4P+hWRnX','5lIL5y265OQC6kor5Q6i6AU/772h5B2i5OU/5RIa','mGu/','a8opW5GXW54','W7HmWRhdHa','twJdTmkqrmoLW67LHPNPN7xNKyu','WONdRmousNqpldNcLq','hmoXWQShiHNLK53KUypKUAhPG48','iq3cL8ojDG','FSoyW6b3','f8o9W71TWPu','p8o0W73cJSoG','WPH5WOFdU8o7WRxcKCo3W7za','xhH/tmovcSoiW4LgWPe','os7dQvq5W4mA','k0tcTuCl','BeTCDt09x8oVWPJdKG','ySkaeM5vjSkkW7S','WRFdJmkPxSoK','heaP5zoc56AyahyY6igN5lUN','bmolcGyCW7m','xCoGW7vZW6K','CK3cMSosWO/dLuldT8okvq','oelcJmo+WOO','W4HJl1Ht','Ds1QWQZcI0K','FZiVnb8WWQG','WRiMWQyihq','w2XA','6kYu57IL5l+B5Oke77YX55Eq5lM+5B6w6ykw6icR','5zgw5Q+x6yEQ576N5AwT6lw1fam','cSk1DMrK','vM1wWQmS','5PAU6z+X5PU25PAS77Y86yEH572x5BA05Q+P56gx','kZZdR1KOW6imjSohW48','W4ZcMmoimSk2572G5zgv56A5W4lcMq','bSk9WQ8XWPOu5PY75lUH5lMC6ygl','5O2J5Psy5B+O77YcW7pcTd0NWOVdNW','5lQK56Ex6zIV','5Pw/5B66W6is5l+J55ESEcNcM8ow','idtdQgG1W5q','WORdJCouvNy','WPBdQmozxMeznW','5zga5Q2n5AEg6lsZxs8','vCkYWRhLM6dPM73MIQtLKkrGa+s4Jq','C2S6A8oLBmoDWOxLKk7NPji','mGu/6iks5lU/gSozW6ZNIR3MGPS','5zke6k+G57Q85l2E5OkU776b55sI5lUK5B6I6ygm','WPCeWP8wlCoVW6PO','gSo1W5tcN8oA','Fb7cOgTeDSkzgehcRq','nCoEW4i','W7DYW7v1x8ki','WOxdVmkJFSoK','FXXSWQ3cHf3dGa','fGNdRmo/gbO','eSoRW4hcKCox','lZVcMCksWOn/W7/cM0dcUW','omoUW68E','WQddKmkbA8o0WReFo8khW4y','WP7dUwCG','WRldV2SGyfJKUjRLNiRPHAhNVP8','WO5rW6nYmSkOW5rG','amo4W6jRWOddNradFCkr','zr3dNmoMWPRdNJJdTmot','z3BcPXPXW4XeE8kfWPe','5BAJ6yAX5Pwt55A35OIYkq','BSonj3z5','FSodW6f3W5DavGqIW7e','WOddRw0TCqTK','iutcGCozWQxdNrBVVPlMIR3PGke','FXP5WQVcPa','AmoxWQZLT7FLH47VVk4Dr2BdGW','obu5zXKYWQnZsCoh','W7L7e2r1','WP5vWO1nls1X','lCoPW6GpW6iUWQxdQZm','WRxdSSkpuSoe','mCoLW6BcVCoQtSkiyNTF','WRNdJwNdKCksuCkBdSoqFa','WOhcL1VcMuNcI8kNfmo9fW','WRvYfConWRG','q2vCWQeRW7C','6igy57gm5zca5lUP5yIy5yIY6ywA44gO5AEe6z6J','W59JWQ3cNW','zarYFIS','WQRcNdpdGea5W73dLa','hqNdTSoxhbFcJdzbWQa','mCoHW5CeW7S','p8oPW5S','WQ5hcCk0ha','rSkMWPddKSou','vSoEaMLyWReyWQVdOSkQ','rMDkWQWTW63dUSoEW4b+','fSoncr4k','W4PBfSkNW5egomkZW4a5','t+s5O+IMH+s9P+EAToEvUEAlMo++HEAiO+IaTq','DSk3WOeXhq','vCozcN1e','FcbLWPtcKq','56g85PYC5RQp5OUi5O2n55c86l2I56UhaCkq','5yw+5AYWWPDddabOySoDiW','5y+o5zQCW4pdLalLVBJLKlTHoam','prxcKmoC','WRTJdSoSWQRdPgyggti','WPVcJv7cJKxcT8kw','BSkniG','p8kWi8oeWPldQfFcJH3dPq','W7pcHtdcVCoygCoybSkQpG','y8ofW7u','arhdHIDj','DSowW5LXW7W','sUs5ImkFn1NcOCkZW6pcIoEAJa','twJdPSkDr8oV5P+O5lM65lQn6ykR','WR9Ug8olW7S','cmkVbCo7WQK','W7ShW4lcO8ok','grhdLJLqWRFcGSoKW41M'];_0x97cd=function(){return _0x527224;};return _0x97cd();}function generateTeamMembersSection(_0x39854f,_0x3892c0){const _0x4ae094={_0x38fd34:0xc69,_0x4984ca:0xf0e,_0x4f5240:0xae7,_0x56f15d:0xa71,_0x2bce36:'loi5',_0x2ed70e:'Q]KY',_0x4b01f8:0x10f1,_0x3f7152:0xdcc,_0x32aa4a:0x531,_0x3b54eb:'suJD',_0x11340f:0x6d6,_0x5e88a9:0xf24,_0x66a1d0:0xb82,_0x20ca4e:0xa8b,_0x4e5312:0xa64,_0x1dacf3:0xf81,_0x5273a1:0xa39,_0x1c93f8:0xbc7,_0x25cf44:'c36g',_0x2f1f60:0x725,_0x405f8e:0xbd3,_0x2218e8:0xa89,_0x540d81:0x8c4,_0x575633:'Foj6',_0xcbc811:0x771,_0x2139c4:'suJD',_0x65d44e:0x87a,_0x1bc8af:0x7ab,_0x30ce42:0x783,_0x282e2e:0x638,_0x3247b6:0x9af,_0x121c7f:0xb86,_0x389d23:0x530,_0xe25759:0xbfb,_0xe7ff71:0x83e,_0x6fe7a3:0xe25,_0x3d1803:0xdff,_0x18d39a:0x6fd,_0x4a5cad:'!7O4',_0x52e5a2:0xd85,_0x501e32:0xbc7,_0x4f7e5a:0x54d,_0xcb45bc:0x3a,_0xd3938:'1mQU',_0x29a17a:0x5e4,_0x3d52db:0x9a7,_0x4d0e2e:0x54f,_0x4a9b59:0x6fb,_0x29b837:0x91c,_0x35b5e3:'Mpqc',_0xfd014:0xa67,_0x31f849:0x82a,_0x5aff2e:0xdb5,_0x2781ef:'ECfd',_0x5e7d2c:0xf84,_0x12e065:0xc38,_0x257026:0x8ae,_0x3a84f7:0x576,_0x4a2688:0x357,_0x447ef0:0x7ad,_0x108fe8:0x590,_0x5228cc:'Bu(&',_0x8ec7cb:0x5a1,_0x2b808d:0xa1d,_0x310cac:0x9a9,_0x549651:0x549,_0x2c17a8:0x272,_0x33c7a8:'V)bU',_0x19889:0x9c7,_0x2f9897:0x730,_0xe9a719:0xf4a,_0x2078ae:'7k]n',_0x2f6c99:0xb44,_0x3f3ebb:'6]hf',_0x686c98:0xa3a,_0x2307dd:0x636,_0x52481f:0x464,_0x3170ad:'3Y(#',_0x271d3f:0xfab,_0x4f9500:0x881,_0x1e7019:0x7db,_0x5e2738:0xde8,_0x183f4d:0x822,_0x3b4d4e:')$Hz',_0x47400c:0xda9,_0x493753:0xb4e,_0x24b2e9:'dx1J',_0x1bf5da:0x67c,_0x73e289:0x4ad,_0x4b9c38:'ebUi',_0x486cf5:0x588,_0x3d0dcd:0x964,_0x5d229d:0x917,_0x26985a:0xc3e,_0x2a93c3:0xce0,_0x32c511:'Q]KY',_0x592af2:'*LpW',_0x383d11:0x5ce,_0x9bef90:0x5c6,_0x1a87f1:0x4f8,_0x1913b6:0x622,_0x4caba1:0x659,_0x227cd3:0xc1,_0x5f5119:0xe0c,_0x2649f5:0x973,_0x267c30:0x81f,_0x9c9ece:'da@G',_0x4bf172:0x1062,_0x203c06:0xa0e,_0x2929ed:0x808,_0x7d5c6:0x31d,_0x178a7e:'7k]n',_0x245d8b:0x6b,_0x12271f:0xf9,_0x318ca6:0x9eb,_0x19c1e7:'hn9d',_0x2ab988:0xfeb,_0xd1b022:0xc10,_0x119f7d:0xa10,_0x123cf0:0x778,_0x4c0d87:0x5ef,_0x37aea3:0xf44,_0x25b156:'V23R',_0x4edcf6:0x65a,_0x3da719:0x7a9,_0x63a7f3:0xa0,_0x3e137c:0xa39,_0x3a7e45:0xb78,_0x2e706b:'Q]KY',_0x2ea956:0x8ac,_0x1f4417:'VXA^',_0xa0b62:0x82c,_0x170011:0x645,_0x5ece46:'#pB[',_0x42887f:0x494,_0x31d508:'z8mf',_0x4789f4:0x952,_0x1fe4f4:0xca2,_0x74ac9c:0xb52,_0x3ad1d2:'v2$P',_0x556db4:0x906,_0x580245:0xb6f,_0xdffa2f:0xa72,_0x2a56cf:0xff0,_0x4ef067:0x88d,_0x2c6c7b:0xcb,_0x59a788:'N%cE',_0x11e1c7:0xcf9,_0x4873db:0x9b3,_0x3a0e7a:0xbaf,_0x516f9b:'1mQU',_0x33b42f:0x802,_0x5ea8e8:0xe52,_0x2e1c52:'2m0$',_0x5a50bd:'PB2^',_0x526d38:0x8c2,_0x27856c:'PB2^',_0x1bbf85:0xde7,_0x109beb:0xcde,_0x534dcf:0x933,_0x103d16:0x38b,_0x385fa5:0x80b,_0x2846e2:0xa23,_0x5ac45c:0x3a7,_0x491765:0x47d,_0x4b2e9b:0x401,_0x38e8c7:0xb3e,_0x2a8f60:'lofD',_0x4e38bd:0x8ec},_0x53168c={_0x50181d:0x140},_0x3f3564={_0x23912a:0x1b7},_0x18edbf={'VDjpZ':_0x1ab405(_0x4ae094._0x38fd34,'!7O4',_0x4ae094._0x4984ca,_0x4ae094._0x4f5240)+'\x20|\x20名称\x20|\x20状态'+'\x20|','BkZrF':function(_0x4a1763,_0x5b54e0){return _0x4a1763(_0x5b54e0);},'klayt':function(_0x525d3c,_0x561372){return _0x525d3c instanceof _0x561372;},'qAHWT':function(_0x415bce,_0x4d4baf){return _0x415bce===_0x4d4baf;},'ZkJHl':function(_0x2afc58){return _0x2afc58();},'eElNC':function(_0x48e776,_0x4a05d1){return _0x48e776!==_0x4a05d1;},'WREBO':function(_0x3509ad,_0x123b6e){return _0x3509ad===_0x123b6e;},'IgUHZ':'manager','jcZVc':function(_0x4484fa,_0xc3088e){return _0x4484fa!==_0xc3088e;},'JIROw':_0x5c4889('dx1J',_0x4ae094._0x56f15d,0xc9c,0x903),'QUbGB':function(_0x4ca306,_0x18c833){return _0x4ca306(_0x18c833);},'ubZEy':function(_0x589759,_0x1f19af){return _0x589759(_0x1f19af);},'XNVyQ':function(_0xdab4e6,_0x25a8a2){return _0xdab4e6===_0x25a8a2;},'Uquxy':_0x1ab405(-0x74,_0x4ae094._0x2bce36,0x2a5,0x3e6),'ZTFnc':function(_0x5167df,_0x1971f3){return _0x5167df===_0x1971f3;},'WIUeH':_0x5c4889(_0x4ae094._0x2ed70e,0xc36,_0x4ae094._0x4b01f8,_0x4ae094._0x3f7152),'MRCmB':function(_0x2a9bed,_0x17a53d){return _0x2a9bed(_0x17a53d);},'VbVTb':function(_0x564dee,_0x543ee9){return _0x564dee(_0x543ee9);},'FJpLT':function(_0x4e4423,_0x4da68b){return _0x4e4423===_0x4da68b;},'FANiy':'executor','isZns':'PemOB','ExuoC':function(_0x2f3110,_0x4e486b){return _0x2f3110(_0x4e486b);}};function _0x1ab405(_0x19e849,_0x2c4a0b,_0x706b9c,_0x3acf85){return _0x5bf319(_0x19e849-0xc2,_0x3acf85- -0x19d,_0x2c4a0b,_0x3acf85-_0x3f3564._0x23912a);}if(_0x18edbf[_0x1ab405(_0x4ae094._0x32aa4a,_0x4ae094._0x3b54eb,0x3a2,_0x4ae094._0x11340f)](_0x39854f,_0x1ab405(_0x4ae094._0x5e88a9,'dx1J',0xfc5,0xbf9))){const _0xaa107b=_0x18edbf[_0x5c4889(')9w@',0xc50,0x7a7,_0x4ae094._0x66a1d0)](generateAssistantTeamMembersDetail);return generateTeamSectionForAssistant(_0xaa107b);}if(!_0x3892c0){if(_0x18edbf[_0x5c4889('PB2^',0xac7,_0x4ae094._0x20ca4e,_0x4ae094._0x4e5312)](_0x1ab405(_0x4ae094._0x1dacf3,'suJD',_0x4ae094._0x5273a1,_0x4ae094._0x1c93f8),_0x5c4889(_0x4ae094._0x25cf44,_0x4ae094._0x2f1f60,0xabf,0x75d)))return'';else{_0x5e5f43[_0x5c4889('ebUi',_0x4ae094._0x405f8e,0x778,0xa8f)](_0x1ab405(_0x4ae094._0x2218e8,'da@G',0xba6,0x977)+_0x55f135[_0x1ab405(_0x4ae094._0x540d81,_0x4ae094._0x575633,0x505,_0x4ae094._0xcbc811)]),_0xdf4dde[_0x5c4889('3Y(#',0x8c6,0xad6,0xbfd)](''),_0x47f5ec[_0x5c4889(_0x4ae094._0x2139c4,_0x4ae094._0x65d44e,_0x4ae094._0x1bc8af,_0x4ae094._0x30ce42)](_0x18edbf[_0x1ab405(_0x4ae094._0x282e2e,'V23R',0xd80,_0x4ae094._0x3247b6)]),_0x451217[_0x5c4889('#pB[',_0x4ae094._0x121c7f,0x70a,0x751)](_0x5c4889('&)0b',_0x4ae094._0x389d23,0x6c6,0x581)+_0x5c4889('!7O4',0x673,_0x4ae094._0xe25759,_0x4ae094._0xe7ff71)+_0x5c4889('KAAL',0xe0b,_0x4ae094._0x6fe7a3,_0x4ae094._0x3d1803));for(const _0x4c1902 of _0x4b75f0){_0x58db45[_0x5c4889(']GM1',0xa46,_0x4ae094._0x18d39a,0xab4)]('|\x20'+_0x4c1902['id']+_0x5c4889(_0x4ae094._0x4a5cad,_0x4ae094._0x52e5a2,0xa04,0xa10)+_0x4c1902[_0x1ab405(0xcf0,'z8mf',_0x4ae094._0x501e32,0x8bd)]+_0x1ab405(0x651,'loi5',_0x4ae094._0x4f7e5a,0x3fe)+_0x4c1902['status']+'\x20|');}_0x1c8077[_0x1ab405(_0x4ae094._0xcb45bc,_0x4ae094._0xd3938,0x9c,0x3fb)]('');}}if(_0x18edbf[_0x5c4889('v2$P',0x902,_0x4ae094._0x29a17a,_0x4ae094._0x3d52db)](_0x39854f,_0x18edbf[_0x5c4889('$6rX',0x6a5,_0x4ae094._0x4d0e2e,_0x4ae094._0x4a9b59)])){if(_0x18edbf[_0x1ab405(0xe01,'lofD',0xf7d,0xb83)](_0x1ab405(_0x4ae094._0x29b837,_0x4ae094._0x35b5e3,_0x4ae094._0xfd014,_0x4ae094._0x31f849),_0x18edbf[_0x1ab405(_0x4ae094._0x5aff2e,_0x4ae094._0x2781ef,_0x4ae094._0x5e7d2c,_0x4ae094._0x12e065)])){const _0x2737f7=_0x18edbf[_0x5c4889(']GM1',0xe48,0xe88,0xa47)](generateManagerTeamMembersDetail,_0x3892c0);return _0x18edbf[_0x1ab405(0xcbb,'Lh@)',0x669,_0x4ae094._0x257026)](generateTeamSectionForManager,_0x2737f7);}else{const _0x4076b8=_0x18edbf[_0x5c4889('da@G',_0x4ae094._0x3a84f7,_0x4ae094._0x4a2688,_0x4ae094._0x447ef0)](_0x4d3d08,_0x3d449d[_0x1ab405(_0x4ae094._0x108fe8,_0x4ae094._0x5228cc,0x2d7,_0x4ae094._0x8ec7cb)]),_0x32570c=_0x18edbf[_0x1ab405(_0x4ae094._0x2b808d,'Foj6',_0x4ae094._0x310cac,0xb53)](_0x44236d,_0xa191f[_0x1ab405(_0x4ae094._0x549651,'Foj6',_0x4ae094._0x2c17a8,0x577)]);_0x267331[_0x5c4889(_0x4ae094._0x33c7a8,0x7e6,0x93b,0xb5e)]('|\x20'+_0xe92f22['id']+_0x1ab405(0x401,'Lh@)',_0x4ae094._0x19889,_0x4ae094._0x2f9897)+_0x45d103[_0x1ab405(_0x4ae094._0xe9a719,'$6rX',0xe22,0xad6)]+_0x1ab405(0xc38,_0x4ae094._0x2078ae,_0x4ae094._0x2f6c99,0x874)+_0x4076b8+_0x5c4889(_0x4ae094._0x3f3ebb,0xce4,0xdc8,_0x4ae094._0x686c98)+_0x32570c+_0x1ab405(0x22e,'V23R',_0x4ae094._0x2307dd,_0x4ae094._0x52481f)+_0x1e2f95[_0x5c4889(_0x4ae094._0x3170ad,_0x4ae094._0x271d3f,_0x4ae094._0x4f9500,0xc17)]+'\x20|');}}else{if(_0x18edbf[_0x5c4889('z8mf',0x36f,0x748,_0x4ae094._0x1e7019)](_0x39854f,_0x18edbf[_0x1ab405(0x89f,'loi5',_0x4ae094._0x5e2738,0xa27)])){if(_0x18edbf[_0x1ab405(_0x4ae094._0x183f4d,_0x4ae094._0x3b4d4e,_0x4ae094._0x47400c,_0x4ae094._0x493753)](_0x1ab405(0x29a,_0x4ae094._0x24b2e9,_0x4ae094._0x1bf5da,_0x4ae094._0x73e289),_0x18edbf[_0x5c4889(_0x4ae094._0x4b9c38,0x683,_0x4ae094._0x486cf5,_0x4ae094._0x3d0dcd)])){const _0x77bd45=_0x18edbf[_0x5c4889('loi5',0xa5f,0x588,_0x4ae094._0x5d229d)](generateReviewerTeamMembersDetail,_0x3892c0);return _0x18edbf['VbVTb'](generateTeamSectionForReviewer,_0x77bd45);}else return _0x5c4889(_0x4ae094._0x25cf44,_0x4ae094._0x26985a,_0x4ae094._0x2a93c3,0x9a2)+_0x5c4889(_0x4ae094._0x32c511,0xe35,0xdf6,0xa6d)+_0x1ab405(0x4d4,_0x4ae094._0x592af2,0x1a5,_0x4ae094._0x383d11)+_0x1ab405(_0x4ae094._0x9bef90,'dx1J',_0x4ae094._0x1a87f1,_0x4ae094._0x1913b6)+_0x5c4889(_0x4ae094._0x5228cc,0x987,0x390,_0x4ae094._0x4caba1)+_0x1ab405(0x8a5,_0x4ae094._0x575633,_0x4ae094._0x227cd3,0x4c2)+_0x5c4889('da@G',0xde2,0xd61,_0x4ae094._0x5f5119)+_0x5c4889(_0x4ae094._0x4b9c38,_0x4ae094._0x2649f5,_0x4ae094._0x267c30,0x9da)+_0x1ab405(0xdb0,_0x4ae094._0x9c9ece,_0x4ae094._0x4bf172,0xbf2)+_0x5c4889('!7O4',_0x4ae094._0x203c06,0xa05,_0x4ae094._0x2929ed)+'\x20ID\x20|\x20名称\x20|'+_0x1ab405(_0x4ae094._0x7d5c6,_0x4ae094._0x178a7e,_0x4ae094._0x245d8b,0x3b9)+_0x1ab405(0x69e,'GdD8',0x62a,0x681)+'----|-----'+_0x1ab405(_0x4ae094._0x12271f,'GdD8',0x4bc,0x49b)+_0x45afa9[_0x1ab405(_0x4ae094._0x318ca6,_0x4ae094._0x19c1e7,_0x4ae094._0x2ab988,_0x4ae094._0xd1b022)]+(_0x5c4889('Bu(&',0x89a,_0x4ae094._0x119f7d,_0x4ae094._0x123cf0)+_0x5c4889(_0x4ae094._0x4b9c38,0x8b7,0x4df,_0x4ae094._0x4c0d87)+_0x5c4889(_0x4ae094._0x9c9ece,_0x4ae094._0x37aea3,0xf8d,0xd9c)+_0x5c4889(_0x4ae094._0x25b156,0x698,_0x4ae094._0x4edcf6,_0x4ae094._0x3da719)+_0x1ab405(0x7cd,_0x4ae094._0x25cf44,_0x4ae094._0x63a7f3,0x3c2)+_0x5c4889('2PrQ',_0x4ae094._0x3e137c,0xcf1,_0x4ae094._0x3a7e45)+_0x1ab405(0xc65,_0x4ae094._0x2e706b,0x9ad,_0x4ae094._0x2ea956)+_0x1ab405(0x9ca,_0x4ae094._0x1f4417,_0x4ae094._0xa0b62,_0x4ae094._0x170011))+_0x140b42[_0x5c4889(_0x4ae094._0x5ece46,_0x4ae094._0x42887f,0xa5c,0x8c3)]+(_0x1ab405(0x6bf,_0x4ae094._0x3b54eb,0xce4,0xa0c)+_0x1ab405(0x808,'Dsi5',0x6bc,0x4ec)+'ssions_sen'+_0x5c4889(_0x4ae094._0x31d508,_0x4ae094._0x4789f4,_0x4ae094._0x1fe4f4,0xc7c)+_0x5c4889('v2$P',0xaf1,0x8fa,0xba2)+_0x1ab405(_0x4ae094._0x74ac9c,'!k$h',0x8e3,0x9dc)+_0x5c4889(_0x4ae094._0x3ad1d2,_0x4ae094._0x556db4,0xb52,_0x4ae094._0x580245)+_0x1ab405(_0x4ae094._0xdffa2f,_0x4ae094._0x4b9c38,_0x4ae094._0x2a56cf,0xbb8)+_0x1ab405(0x7bd,_0x4ae094._0x5ece46,0x847,0x778)+_0x5c4889(_0x4ae094._0x178a7e,0x7a4,0xa44,0x89d)+_0x5c4889('2m0$',0x967,_0x4ae094._0x4ef067,0x8c6));}else{if(_0x18edbf[_0x1ab405(_0x4ae094._0x2c6c7b,_0x4ae094._0x59a788,0x5b5,0x50b)](_0x39854f,_0x18edbf[_0x1ab405(_0x4ae094._0x11e1c7,'z8mf',0xd9f,_0x4ae094._0x4873db)])){if(_0x18edbf[_0x5c4889('da@G',0xa24,_0x4ae094._0x3a0e7a,0xb99)](_0x18edbf[_0x5c4889(_0x4ae094._0x516f9b,_0x4ae094._0x33b42f,0xad0,0x9ca)],_0x1ab405(_0x4ae094._0x5ea8e8,_0x4ae094._0x2e1c52,0x8f0,0xa03)))return _0x42f8a0[_0x5c4889(_0x4ae094._0x5a50bd,0x54a,0xb76,_0x4ae094._0x526d38)]=![],_0x4ff181[_0x1ab405(0x6e6,_0x4ae094._0x27856c,_0x4ae094._0x1bbf85,0x97e)]=_0x1ab405(0xd1a,_0x4ae094._0x2e1c52,_0x4ae094._0x109beb,_0x4ae094._0x534dcf)+(_0x18edbf[_0x1ab405(0xf2,'V23R',0x6f8,_0x4ae094._0x103d16)](_0x1eb6d0,_0x120166)?_0x2ca409[_0x5c4889('HQvh',_0x4ae094._0x385fa5,_0x4ae094._0x2846e2,0xc25)]:_0x18edbf[_0x1ab405(_0x4ae094._0x5ac45c,'V)bU',_0x4ae094._0x491765,_0x4ae094._0x4b2e9b)](_0x5d98fa,_0x86d13a)),_0x41e86d;else{const _0x5515fe=_0x18edbf[_0x1ab405(0x47c,'Bu(&',_0x4ae094._0x38e8c7,0x7ef)](generateExecutorTeamMembersDetail,_0x3892c0);return _0x18edbf[_0x1ab405(_0x4ae094._0x1bf5da,_0x4ae094._0x2a8f60,_0x4ae094._0x4e38bd,0x9c6)](generateTeamSectionForExecutor,_0x5515fe);}}}}function _0x5c4889(_0x283fc8,_0x1421a6,_0x5094ca,_0x185430){return _0x5bf319(_0x283fc8-0x108,_0x185430-0x63,_0x283fc8,_0x185430-_0x53168c._0x50181d);}return'';}function generateAssistantTeamMembersDetailForTemplate(){const _0x1af0e1={_0x1ae4b2:0x60e,_0x221f23:'LaEV',_0x4c05a6:0x581,_0x14c969:0x1af,_0x492c03:0x422,_0x4160f2:'GdD8',_0x3571a8:0x96b,_0x3a7385:0x599,_0x1f30d8:0x3ce,_0x22fb6c:0x5cf,_0x4d7e30:'v2$P',_0x31613a:0x4ad,_0x4c9184:0xb58,_0x114aa1:'VXA^',_0x4e25cd:0x75f,_0x11cb04:'LaEV',_0x47b549:0xc71,_0x38354c:'Dsi5',_0x1ddb77:0x1059,_0x31df1f:0x3b8,_0x4b0b28:0x662,_0x1bbb52:0x10d7,_0x584024:0x3ac,_0x343357:'suJD',_0x279cf8:0xad4,_0x3a3fc8:0x558,_0x59d3a7:0x752,_0x249624:'Mpqc',_0x3e0cfa:0xdcd,_0x702320:0x9a4,_0xe159d:0x575,_0x182e23:'v2$P',_0x4c1c7c:0x9e0,_0x5f05d8:0x4ea,_0x38c26d:0x432,_0x4aed00:0x58,_0x9a861:'ECfd',_0xf7edd9:0x7a5,_0x31710f:0x917,_0x34abce:'*LpW',_0x5d8f5a:0xb65,_0x12f407:0x9bf,_0x493241:0x9f5,_0x31214f:0x8cc,_0x4f3f6e:'ECfd',_0x43f916:')$Hz',_0x4d6942:0x78d,_0x10a157:0x3a7,_0x2ce14e:0x352,_0x4cb523:'N%cE',_0x239cbf:0x871,_0x14d7f7:0xbbf,_0x586e0f:0x467,_0x2923c8:'dx1J',_0x215432:0x7a5,_0x55f913:'$6rX',_0x4d4af3:0x930,_0x407b36:0x51c,_0x58f1a5:'dx1J',_0xfe210c:0xc09,_0x5d03b2:0xc83,_0x49780f:0x83d,_0x454ae6:'2PrQ',_0x824e56:'!k$h',_0x129614:0x7d2,_0x2bf3f8:0x3e4,_0x2c307c:'Lh@)',_0x3d3ebb:0x70a,_0x53f9ed:0x3ab,_0x58c4db:0x600,_0x4c038f:0x91f,_0x1b1d59:'da@G',_0x2bd473:0x632,_0x555323:0xb0f,_0x283997:0xa49,_0x2d4e9b:0x97e,_0x14ece9:'V)bU',_0x25a54d:0x5a6,_0x8742a8:'z8mf',_0x217ebe:0x321,_0x51f1e2:0x6c4,_0x392703:0x3e6,_0xfbc28f:0x22d,_0x406523:'6]hf',_0x17c71a:'Dsi5',_0x86b6b7:0x943,_0x3277e5:0xb60,_0x2b1d5a:0xc43,_0x3cad9d:'#%z0',_0x10e8ed:0x364,_0x497c04:0xb8f,_0x5e3c53:0x466,_0x28d7af:0xf1,_0x29d82e:0x6d2,_0x220ff7:'c36g',_0x459237:0x5c0,_0x4b240a:0xca3,_0x2f2f46:0xaef,_0x58beb6:0x89f,_0x56abf6:0x876,_0x396158:'7k]n',_0x288ac5:0x7ff,_0x4db443:0xb61,_0x3c7953:'da@G',_0x25d690:0x915,_0x4755b1:0x7af,_0x3e8aee:'!7O4',_0x368863:0x81b,_0x2a2f50:0x71e,_0x509633:'KAAL',_0x3bc983:'FtqP',_0x1413bd:0xb26,_0x2d7e49:0x72a,_0x2c2a5b:0xa35,_0x49b740:0x698,_0x467a5d:'ECfd',_0x3861ce:0xca0,_0x573223:'2PrQ',_0x33a110:0xd1f,_0x41a2f4:'loi5',_0x58ffc8:0xa3b,_0x36eee1:0x3ea,_0x1cdac2:0xb21,_0x23b659:0xc07,_0xdb8d5a:0xb1b,_0x3ac814:0x860,_0x285f62:'hn9d',_0x5d18ac:0x596,_0x55e661:0x9c4,_0x20c01e:0x845,_0x2b5266:0x9fe,_0x4ac9a3:0x604,_0x2491a7:0x1ad,_0x126a46:'Bu(&',_0x5c6d70:0x4e7,_0x30b1ec:0x673,_0x21c171:0xa92,_0x55865:'HQvh',_0x33c3da:0xc95,_0x39a125:0xfc4,_0x507ce0:0xd21,_0xa700a2:0x742,_0x533777:0x4af,_0x1f74bb:'V)bU',_0xe03233:0x382,_0x4f0d13:0xc77,_0x241f64:0x775,_0xbaee8f:'$6rX',_0x1a1eae:0x6a7,_0x11e80c:0x9ac,_0x215e47:0x847,_0x2fa84f:0x8c3,_0x1d27ae:0x604,_0x5835a0:0x60f,_0x1e7771:'93KN',_0x496c3a:0x441,_0x231dc2:0xa70,_0x5a7ddf:0x9df,_0x1161dd:0xa8c,_0x136e79:0xad6,_0x11d843:'3Y(#',_0x5748fe:0xcfe,_0x59fb1d:0x8a8,_0x2660bd:0x6e9,_0x2f550f:0x3a5,_0x4484cb:0x89e,_0x1829ce:0x4fb,_0x32d293:0x883,_0x4b769c:0x279,_0x38fb54:'93KN',_0x575b21:0xcbf,_0x20d9e5:'VXA^',_0x225d78:0x602,_0x258097:0x865,_0x90407a:0xbf0,_0x1fd22a:0x917,_0x23580e:0x55b,_0x313744:0x61f,_0x5dcfcd:0xcb4,_0x31c1ea:'!7O4',_0x574891:0xc5b,_0x498231:0x7e4,_0x5db58c:0x654,_0x47965c:0x712,_0x4dedc6:0x97a,_0x5e5324:0xa85,_0x482112:'#pB[',_0x5982c5:0x8d4,_0x262d79:']GM1',_0xec3a3e:0x971,_0x3a4ef3:'Mpqc',_0x5a9d01:'k7fb',_0x4f36af:0x798,_0x296fe8:0xe25,_0x1cae6d:0xb43,_0xf8fad7:0xc06,_0x13043b:0xba0,_0x1e6a61:0xe4b,_0x3df018:0x442,_0x1b8670:0xcfd,_0x41f804:0x761,_0x1f3096:0xa39,_0xbfebc5:'GdD8',_0x3b7f6f:0xbbe,_0x1863c3:'HQvh',_0x453ba0:0x40a,_0x30f1d4:0x155,_0x1c84ed:0x84d,_0x1a4ef1:0x3f1,_0xa1135e:0x3d,_0x7cab17:0x9ea,_0x499687:0x622,_0x35251a:0xd37,_0xc3ec90:0x8a0,_0x338365:0x9db,_0x587287:'z8mf',_0x2bfff5:0xb2a,_0x3d7b2d:0x711,_0xec46:0xb16,_0xaca117:'lofD',_0x1fce38:0x45e,_0x37cb82:0x5ca,_0x4490bf:'7k]n',_0x5ca07a:0x9b8,_0x3c8f11:0xaea,_0x459a2e:0x51e,_0x573633:0x533,_0x3ed6e5:0x63e,_0x1f5d1a:')9pR',_0x38b0c4:0x94e,_0x558bda:0xb29,_0x540176:0x7ba,_0xd0c078:0x66f,_0x1f494d:0xb5f,_0x2c4eb2:'93KN',_0x36ca51:0xe34,_0xfa1ffa:0x7a0,_0x4fcde2:'ECfd',_0x583959:0x991,_0x2c183c:0x332,_0x5418e7:0xa68,_0x18362a:0xa22,_0x327753:0xb7a,_0x52d67d:0xdba,_0x4724f3:0xb58,_0x24ea9b:0x88a,_0x41c3bc:'!k$h',_0xd80d12:0x74e,_0x2829f5:'KAAL',_0x51b768:0x397,_0x3703c6:0x6ae,_0x6d9739:0x66e,_0x1cc1a9:'VXA^',_0x37fbdf:0x5b2,_0x3a50fb:0x835,_0x35cbed:0x843,_0x12ff4c:'!k$h',_0x31164a:0x7a8,_0x2824bd:'k7fb',_0x40f1ee:0x3c4,_0x53d1a2:0x1cf,_0x191c2e:0x8b4,_0x490c91:0x6af,_0x175d6f:0x661,_0x2906f8:0x70d,_0x8bd946:'#%z0',_0x3b04a4:0x570,_0xd9d034:'&)0b',_0x5058a2:0x6d2,_0xd37622:0xb89,_0x11eaab:0xa85,_0x3417cf:0xc0f,_0x3f3016:0x156,_0x233e1b:0x615,_0x36447e:'KDG1',_0x52e7b9:0x110,_0x3e415f:0xc38,_0x22c45e:0x662,_0x327433:0x2b2,_0x561302:0x490,_0xa08e4a:'ebUi'},_0x487083={_0x39c02e:0xe3,_0x4045cc:0xe7,_0x315797:0xe7},_0x24a430={_0x8acae0:0xec},_0x381209={'VYFUs':_0x42a2f2(_0x1af0e1._0x1ae4b2,_0x1af0e1._0x221f23,_0x1af0e1._0x4c05a6,_0x1af0e1._0x14c969),'ScvXC':function(_0x21606e,_0x374d34){return _0x21606e(_0x374d34);},'ksyqw':'ygBqk','jrjCW':_0x42a2f2(0x593,'93KN',0x290,_0x1af0e1._0x492c03),'LARIk':function(_0x5056e5,_0x239df1){return _0x5056e5>_0x239df1;},'RYnBh':function(_0x475604,_0x784517){return _0x475604!==_0x784517;},'kaknO':_0x42a2f2(0x683,_0x1af0e1._0x4160f2,0x487,_0x1af0e1._0x3571a8),'ofVhs':_0x42a2f2(_0x1af0e1._0x3a7385,'#%z0',0x953,_0x1af0e1._0x1f30d8),'mZfql':_0x42a2f2(_0x1af0e1._0x22fb6c,_0x1af0e1._0x4d7e30,_0x1af0e1._0x31613a,0x1bc)+'\x20|\x20名称\x20|\x20状态'+'\x20|','FRYls':_0x42a2f2(_0x1af0e1._0x4c9184,_0x1af0e1._0x114aa1,0x83c,0xb5b),'dBmqz':_0x2e9e6a(0x6f1,0x36e,_0x1af0e1._0x4e25cd,_0x1af0e1._0x11cb04)+_0x2e9e6a(0x8ea,0x8dd,0xd5c,'LaEV')+_0x42a2f2(_0x1af0e1._0x47b549,_0x1af0e1._0x38354c,_0x1af0e1._0x1ddb77,0xd19),'OaRCS':function(_0x2e7b9c,_0x33f440){return _0x2e7b9c!==_0x33f440;},'XhuLL':_0x2e9e6a(_0x1af0e1._0x31df1f,-0x9b,_0x1af0e1._0x4b0b28,'*LpW'),'AFPke':_0x42a2f2(0xcf0,'!7O4',0x8c1,_0x1af0e1._0x1bbb52),'HLHmk':_0x2e9e6a(0x7df,_0x1af0e1._0x584024,0x8d5,'hn9d'),'QKzeS':function(_0x419852,_0xcfe26b){return _0x419852===_0xcfe26b;},'bibBm':'kGkTe','LFxxw':_0x2e9e6a(0x4f8,0x511,0x30c,_0x1af0e1._0x343357),'IMNVS':_0x2e9e6a(_0x1af0e1._0x279cf8,0x8b0,0xeae,'Lh@)')+'\x20|\x20名称\x20|\x20职业'+'\x20|\x20技能包\x20|\x20状'+_0x2e9e6a(0x5d5,_0x1af0e1._0x3a3fc8,_0x1af0e1._0x59d3a7,_0x1af0e1._0x4d7e30),'tuuMQ':_0x2e9e6a(0x510,0xbc,0x567,'z8mf')+_0x2e9e6a(0x3f0,0xe2,0x9d,_0x1af0e1._0x249624)+_0x42a2f2(0xbce,_0x1af0e1._0x249624,_0x1af0e1._0x3e0cfa,_0x1af0e1._0x702320)+_0x42a2f2(_0x1af0e1._0xe159d,_0x1af0e1._0x182e23,_0x1af0e1._0x4c1c7c,_0x1af0e1._0x5f05d8)+'-|','FleDM':function(_0x5eef8d,_0x56ec9d){return _0x5eef8d(_0x56ec9d);},'mXwqt':_0x2e9e6a(_0x1af0e1._0x38c26d,_0x1af0e1._0x4aed00,0x346,_0x1af0e1._0x9a861),'DxMlg':function(_0x3c2513,_0x389fcb){return _0x3c2513>_0x389fcb;},'BOnUN':_0x2e9e6a(0xba7,0xbea,_0x1af0e1._0xf7edd9,'VXA^')};function _0x2e9e6a(_0x187283,_0xc54d83,_0x171932,_0x1c18f0){return _0x259b54(_0x1c18f0,_0xc54d83-_0x24a430._0x8acae0,_0x171932-0xd6,_0x187283-0x23f);}const _0x16af70=dept_repo_1[_0x42a2f2(_0x1af0e1._0x31710f,_0x1af0e1._0x34abce,0x80d,0x5b7)+'Repository']['findAll'](),_0x10ac02=[];function _0x42a2f2(_0xfddc44,_0x301283,_0x3e5018,_0x51d5e5){return _0x5bf319(_0xfddc44-_0x487083._0x39c02e,_0xfddc44- -_0x487083._0x4045cc,_0x301283,_0x51d5e5-_0x487083._0x315797);}const _0x140b7e=[],_0x3b53fb=[];for(const _0x365ea7 of _0x16af70){if(_0x381209[_0x2e9e6a(_0x1af0e1._0x5d8f5a,0xe17,_0x1af0e1._0x12f407,'l^lf')]!==_0x381209[_0x2e9e6a(0x8e2,_0x1af0e1._0x493241,_0x1af0e1._0x31214f,'V23R')])_0x3ab36e[_0x42a2f2(0x56b,'!k$h',0x776,0x2a3)][_0x2e9e6a(0x53f,0x419,0x656,_0x1af0e1._0x4f3f6e)][_0x42a2f2(0xbcc,_0x1af0e1._0x43f916,0xab1,0xa3d)]=_0x381209[_0x2e9e6a(_0x1af0e1._0x4d6942,0xadb,0x374,'2m0$')];else{const _0x2e7390=agent_repo_1[_0x2e9e6a(_0x1af0e1._0x10a157,0xe0,_0x1af0e1._0x2ce14e,_0x1af0e1._0x4cb523)+_0x42a2f2(0x9c2,'FtqP',_0x1af0e1._0x239cbf,0xcdb)][_0x2e9e6a(0x822,_0x1af0e1._0x14d7f7,_0x1af0e1._0x586e0f,_0x1af0e1._0x2923c8)+_0x42a2f2(_0x1af0e1._0x215432,_0x1af0e1._0x55f913,_0x1af0e1._0x4d4af3,0x6c8)+_0x42a2f2(_0x1af0e1._0x407b36,_0x1af0e1._0x58f1a5,0x861,0x560)](_0x365ea7['id'],_0x381209[_0x42a2f2(0x586,'lofD',0x6f6,0x1b9)]);if(_0x381209['LARIk'](_0x2e7390[_0x2e9e6a(_0x1af0e1._0xfe210c,0xe21,_0x1af0e1._0x5d03b2,'Bu(&')],-0x394*-0x8+0x7*0x38b+-0x11cf*0x3)){if(_0x381209['RYnBh'](_0x381209['kaknO'],_0x381209[_0x42a2f2(_0x1af0e1._0x49780f,_0x1af0e1._0x454ae6,0x548,0x6d3)])){_0x10ac02[_0x42a2f2(0xabe,_0x1af0e1._0x824e56,_0x1af0e1._0x129614,0xa10)](_0x2e9e6a(_0x1af0e1._0x2bf3f8,0x294,0x4e9,_0x1af0e1._0x2c307c)+_0x365ea7[_0x2e9e6a(_0x1af0e1._0x3d3ebb,_0x1af0e1._0x53f9ed,0x2e6,'ECfd')]),_0x10ac02[_0x2e9e6a(0x517,_0x1af0e1._0x58c4db,0x273,_0x1af0e1._0x4160f2)](''),_0x10ac02[_0x42a2f2(_0x1af0e1._0x4c038f,_0x1af0e1._0x1b1d59,_0x1af0e1._0x2bd473,_0x1af0e1._0x555323)](_0x381209[_0x2e9e6a(_0x1af0e1._0x283997,0x762,0x92c,']))d')]),_0x10ac02[_0x2e9e6a(_0x1af0e1._0x2d4e9b,0x9b1,0x6ec,_0x1af0e1._0x14ece9)](_0x42a2f2(_0x1af0e1._0x25a54d,_0x1af0e1._0x8742a8,_0x1af0e1._0x217ebe,_0x1af0e1._0x51f1e2)+_0x2e9e6a(_0x1af0e1._0x392703,0x796,_0x1af0e1._0xfbc28f,'lofD')+_0x42a2f2(0x75d,_0x1af0e1._0x406523,0x5ba,0xa9a));for(const _0x1b43ca of _0x2e7390){_0x10ac02[_0x42a2f2(0x8e3,_0x1af0e1._0x17c71a,_0x1af0e1._0x86b6b7,0xc0a)]('|\x20'+_0x1b43ca['id']+_0x42a2f2(_0x1af0e1._0x3277e5,'2PrQ',0xf64,_0x1af0e1._0x2b1d5a)+_0x1b43ca[_0x42a2f2(0x45a,_0x1af0e1._0x3cad9d,0x555,_0x1af0e1._0x10e8ed)]+_0x42a2f2(_0x1af0e1._0x497c04,_0x1af0e1._0x4cb523,0xed3,0xcb2)+_0x1b43ca[_0x42a2f2(0x4da,'v2$P',_0x1af0e1._0x5e3c53,_0x1af0e1._0x28d7af)]+'\x20|');}_0x10ac02[_0x42a2f2(_0x1af0e1._0x29d82e,_0x1af0e1._0x220ff7,0x413,_0x1af0e1._0x459237)]('');}else{const _0x1ee7f2=_0x381209[_0x42a2f2(_0x1af0e1._0x4b240a,'HQvh',_0x1af0e1._0x4c1c7c,0xe8e)](_0x2c03f3,_0x28a605[_0x2e9e6a(_0x1af0e1._0x2f2f46,_0x1af0e1._0x58beb6,_0x1af0e1._0x56abf6,_0x1af0e1._0x396158)+'Id']);_0x579028=_0x2e9e6a(_0x1af0e1._0x288ac5,0xba8,0x806,'VXA^')+_0x42a2f2(_0x1af0e1._0x4db443,_0x1af0e1._0x3c7953,_0x1af0e1._0x25d690,0x993)+_0x2e9e6a(0x8c4,_0x1af0e1._0x4755b1,0xba8,_0x1af0e1._0x3e8aee)+_0x42a2f2(_0x1af0e1._0x368863,'GdD8',0x976,_0x1af0e1._0x2a2f50)+'验证最新状态,请使用'+_0x2e9e6a(0xb0d,0xea5,0xf27,'VXA^')+_0x2e9e6a(0x639,0x2bc,0x6c9,_0x1af0e1._0x509633)+_0x42a2f2(0x9b2,_0x1af0e1._0x3bc983,0xb67,0x7f7)+_0x42a2f2(_0x1af0e1._0x1413bd,'!k$h',_0x1af0e1._0x2d7e49,_0x1af0e1._0x2c2a5b)+_0x2e9e6a(0x554,0x97b,_0x1af0e1._0x49b740,_0x1af0e1._0x467a5d)+_0x42a2f2(_0x1af0e1._0x3861ce,_0x1af0e1._0x573223,_0x1af0e1._0x33a110,0xa7e)+_0x42a2f2(0x9bf,_0x1af0e1._0x41a2f4,_0x1af0e1._0x58ffc8,0xc2a)+_0x2e9e6a(0x67c,0xaac,_0x1af0e1._0x36eee1,'1mQU')+_0x42a2f2(_0x1af0e1._0x1cdac2,_0x1af0e1._0x220ff7,0x7f4,_0x1af0e1._0x23b659)+_0x42a2f2(0x80d,'KAAL',0xab0,0x4c6)+_0x1ee7f2[_0x2e9e6a(0x8bb,0xaae,0x48a,'l^lf')]+(_0x2e9e6a(_0x1af0e1._0xdb8d5a,0xe91,_0x1af0e1._0x3ac814,_0x1af0e1._0x285f62)+_0x2e9e6a(_0x1af0e1._0x5d18ac,0x158,_0x1af0e1._0x55e661,'c36g')+_0x2e9e6a(0xb24,_0x1af0e1._0x20c01e,_0x1af0e1._0x2b5266,'2PrQ')+_0x2e9e6a(_0x1af0e1._0x4ac9a3,_0x1af0e1._0x2491a7,0x75d,_0x1af0e1._0x126a46)+_0x42a2f2(_0x1af0e1._0x5c6d70,_0x1af0e1._0x3cad9d,_0x1af0e1._0x30b1ec,0x94b)+'----|-----'+_0x2e9e6a(_0x1af0e1._0x21c171,0xb25,0xcfd,_0x1af0e1._0x55865)+'-----|\x0a')+_0x1ee7f2[_0x42a2f2(_0x1af0e1._0x33c3da,'*LpW',_0x1af0e1._0x39a125,_0x1af0e1._0x507ce0)]+(_0x2e9e6a(0x632,_0x1af0e1._0xa700a2,0x835,'Bu(&')+_0x2e9e6a(_0x1af0e1._0x533777,0x6d3,0x53a,_0x1af0e1._0x1f74bb)+_0x2e9e6a(0x492,_0x1af0e1._0xe03233,0x57,')9pR')+_0x42a2f2(0xc44,'k7fb',_0x1af0e1._0x4f0d13,0x992)+_0x42a2f2(_0x1af0e1._0x241f64,_0x1af0e1._0xbaee8f,_0x1af0e1._0x1a1eae,0x5eb)+_0x2e9e6a(_0x1af0e1._0x11e80c,0xc52,_0x1af0e1._0x215e47,_0x1af0e1._0x406523)+_0x42a2f2(_0x1af0e1._0x2fa84f,'c36g',0xbfe,0x5e8)+_0x2e9e6a(0x405,_0x1af0e1._0x1d27ae,_0x1af0e1._0x5835a0,_0x1af0e1._0x1e7771)+_0x2e9e6a(0x81a,_0x1af0e1._0x496c3a,_0x1af0e1._0x231dc2,'lofD')+_0x42a2f2(_0x1af0e1._0x5a7ddf,'l^lf',0x782,_0x1af0e1._0x1161dd)+_0x42a2f2(_0x1af0e1._0x136e79,_0x1af0e1._0x11d843,_0x1af0e1._0x5748fe,_0x1af0e1._0x59fb1d));}}const _0x3477d3=agent_repo_1[_0x2e9e6a(_0x1af0e1._0x2660bd,_0x1af0e1._0x2f550f,0x5c0,'LaEV')+_0x42a2f2(_0x1af0e1._0x4484cb,'k7fb',0x6e6,0xb43)][_0x2e9e6a(_0x1af0e1._0x1829ce,_0x1af0e1._0x32d293,_0x1af0e1._0x4b769c,_0x1af0e1._0x38fb54)+_0x2e9e6a(0xa5e,0xb29,_0x1af0e1._0x575b21,_0x1af0e1._0x20d9e5)+_0x42a2f2(_0x1af0e1._0x225d78,'Ybev',0x9d5,0x1a4)](_0x365ea7['id'],_0x381209[_0x42a2f2(_0x1af0e1._0x258097,_0x1af0e1._0x220ff7,0x95d,_0x1af0e1._0x90407a)]);if(_0x381209[_0x2e9e6a(_0x1af0e1._0x1fd22a,_0x1af0e1._0x23580e,_0x1af0e1._0x313744,'Lh@)')](_0x3477d3[_0x42a2f2(_0x1af0e1._0x5dcfcd,_0x1af0e1._0x31c1ea,_0x1af0e1._0x574891,0xbfc)],0x254b+0xe8d+-0x1148*0x3)){_0x140b7e[_0x2e9e6a(0x63c,_0x1af0e1._0x498231,_0x1af0e1._0x5db58c,'c36g')](_0x2e9e6a(0x8eb,_0x1af0e1._0x47965c,_0x1af0e1._0x4dedc6,'2m0$')+_0x365ea7[_0x2e9e6a(_0x1af0e1._0x5e5324,0xc2a,0xe93,'l^lf')]),_0x140b7e[_0x42a2f2(0x607,_0x1af0e1._0x482112,0x1a9,0x2a3)](''),_0x140b7e[_0x2e9e6a(_0x1af0e1._0x5982c5,0xc28,0x713,_0x1af0e1._0x262d79)](_0x381209[_0x42a2f2(_0x1af0e1._0xec3a3e,_0x1af0e1._0x3a4ef3,0xc43,0x74a)]),_0x140b7e[_0x42a2f2(0xbc7,_0x1af0e1._0x5a9d01,_0x1af0e1._0x4f36af,_0x1af0e1._0x296fe8)](_0x381209[_0x42a2f2(_0x1af0e1._0x1cae6d,_0x1af0e1._0x824e56,_0x1af0e1._0xf8fad7,0x86e)]);for(const _0x549289 of _0x3477d3){_0x381209[_0x2e9e6a(_0x1af0e1._0x13043b,_0x1af0e1._0x1e6a61,_0x1af0e1._0x5d03b2,_0x1af0e1._0x482112)](_0x381209[_0x42a2f2(_0x1af0e1._0x3df018,_0x1af0e1._0x482112,0x89,0x69)],_0x381209[_0x42a2f2(_0x1af0e1._0x1b8670,'GdD8',0xb87,0x8c3)])?_0x140b7e['push']('|\x20'+_0x549289['id']+_0x2e9e6a(_0x1af0e1._0x41f804,0x971,0x468,'*LpW')+_0x549289[_0x2e9e6a(0x740,0xb54,0x6cb,'KAAL')]+_0x42a2f2(_0x1af0e1._0x1f3096,_0x1af0e1._0xbfebc5,_0x1af0e1._0x3b7f6f,0xcf4)+_0x549289[_0x2e9e6a(0x626,0x652,0x8e6,_0x1af0e1._0x1863c3)]+'\x20|'):_0x443237[_0x42a2f2(0xc1b,_0x1af0e1._0x285f62,0x8f6,0x102c)][_0x2e9e6a(_0x1af0e1._0x453ba0,0x383,_0x1af0e1._0x30f1d4,'!7O4')][_0x310de9][_0x42a2f2(0x98d,'suJD',_0x1af0e1._0x1c84ed,0xcb2)]=_0x109514;}_0x140b7e[_0x2e9e6a(_0x1af0e1._0x1a4ef1,0x141,_0x1af0e1._0xa1135e,_0x1af0e1._0x182e23)]('');}const _0x468f7b=agent_repo_1[_0x42a2f2(_0x1af0e1._0x7cab17,'KAAL',_0x1af0e1._0x499687,0xbe4)+_0x42a2f2(0xb0f,'da@G',_0x1af0e1._0x35251a,_0x1af0e1._0xc3ec90)][_0x42a2f2(_0x1af0e1._0x338365,_0x1af0e1._0x221f23,_0x1af0e1._0x702320,0x725)+_0x2e9e6a(0xb53,0xce8,0xbb4,_0x1af0e1._0x587287)+_0x2e9e6a(_0x1af0e1._0x2bfff5,_0x1af0e1._0x215432,_0x1af0e1._0x3d7b2d,'Foj6')](_0x365ea7['id'],_0x381209[_0x42a2f2(_0x1af0e1._0xec46,_0x1af0e1._0xaca117,0xbae,0xa6f)]);if(_0x381209[_0x2e9e6a(_0x1af0e1._0x1fce38,_0x1af0e1._0x37cb82,0x211,_0x1af0e1._0x31c1ea)](_0x468f7b[_0x42a2f2(0x786,_0x1af0e1._0x4490bf,_0x1af0e1._0x5ca07a,_0x1af0e1._0x3c8f11)],-0xd6*-0x25+-0x1a1b+-0x4d3)){if(_0x381209[_0x42a2f2(_0x1af0e1._0x459a2e,'Dsi5',0x86e,_0x1af0e1._0x573633)](_0x381209[_0x42a2f2(_0x1af0e1._0x3ed6e5,_0x1af0e1._0x1f5d1a,_0x1af0e1._0x38b0c4,0xa52)],_0x381209[_0x2e9e6a(0xc52,0xaee,_0x1af0e1._0x558bda,_0x1af0e1._0x1b1d59)])){const _0x34a417={};_0x34a417[_0x2e9e6a(_0x1af0e1._0x540176,_0x1af0e1._0xd0c078,_0x1af0e1._0xdb8d5a,'LaEV')]=!![],_0xc9147d[_0x2e9e6a(0xc61,_0x1af0e1._0x1f494d,0x91e,_0x1af0e1._0x2c4eb2)](_0x33ec48,_0x34a417);}else{_0x3b53fb[_0x2e9e6a(0x5eb,0x7cc,0x564,_0x1af0e1._0x4f3f6e)](_0x42a2f2(0x9fb,_0x1af0e1._0x58f1a5,_0x1af0e1._0x36ca51,0x7f3)+_0x365ea7[_0x42a2f2(_0x1af0e1._0xfa1ffa,_0x1af0e1._0x4fcde2,_0x1af0e1._0x583959,0x442)]),_0x3b53fb[_0x2e9e6a(0x54d,0x894,0x917,'93KN')](''),_0x3b53fb[_0x42a2f2(0x582,'2PrQ',0x569,_0x1af0e1._0x2c183c)](_0x381209[_0x2e9e6a(0x6ab,_0x1af0e1._0x5418e7,_0x1af0e1._0x18362a,'k7fb')]),_0x3b53fb[_0x42a2f2(0x5ad,_0x1af0e1._0xbfebc5,0x682,0x59c)](_0x381209[_0x2e9e6a(_0x1af0e1._0x327753,_0x1af0e1._0x52d67d,0xbc4,'Lh@)')]);for(const _0x58d8f7 of _0x468f7b){const _0x56db9d=_0x381209[_0x2e9e6a(_0x1af0e1._0x4724f3,0xad6,_0x1af0e1._0x24ea9b,_0x1af0e1._0x41c3bc)](getJobName,_0x58d8f7[_0x42a2f2(_0x1af0e1._0xd80d12,_0x1af0e1._0x2829f5,0x6bd,0x7e6)]),_0x48061c=_0x381209[_0x2e9e6a(0x5e3,_0x1af0e1._0x51b768,_0x1af0e1._0x3703c6,_0x1af0e1._0x41a2f4)](getSkillPackNames,_0x58d8f7[_0x42a2f2(_0x1af0e1._0x6d9739,_0x1af0e1._0x1cc1a9,_0x1af0e1._0x499687,_0x1af0e1._0x37fbdf)]);_0x3b53fb[_0x2e9e6a(0xa28,_0x1af0e1._0x3a50fb,_0x1af0e1._0x35cbed,_0x1af0e1._0x12ff4c)]('|\x20'+_0x58d8f7['id']+_0x42a2f2(_0x1af0e1._0x31164a,_0x1af0e1._0x2824bd,0x345,0x894)+_0x58d8f7[_0x2e9e6a(_0x1af0e1._0x40f1ee,0xf5,_0x1af0e1._0x53d1a2,'#%z0')]+_0x42a2f2(0x630,'#pB[',_0x1af0e1._0x191c2e,0x92b)+_0x56db9d+_0x42a2f2(_0x1af0e1._0x490c91,_0x1af0e1._0x285f62,0xab3,0x56c)+_0x48061c+_0x2e9e6a(0xa74,_0x1af0e1._0x175d6f,0x7d6,'KAAL')+_0x58d8f7[_0x2e9e6a(_0x1af0e1._0x2906f8,0xa6c,0xa5d,_0x1af0e1._0x8bd946)]+'\x20|');}_0x3b53fb[_0x42a2f2(_0x1af0e1._0x3b04a4,')9pR',0x228,0x238)]('');}}}}return{'managers':_0x381209[_0x2e9e6a(0x61b,0x3c4,0x9b1,'$6rX')](_0x10ac02[_0x2e9e6a(0xa82,0xd05,0x7c4,_0x1af0e1._0xd9d034)],0x402+-0x2511*0x1+0x1*0x210f)?_0x10ac02['join']('\x0a'):_0x381209[_0x42a2f2(0xb41,'#%z0',_0x1af0e1._0x5058a2,_0x1af0e1._0xd37622)],'reviewers':_0x381209[_0x42a2f2(0x8e1,')9pR',_0x1af0e1._0x11eaab,_0x1af0e1._0x3417cf)](_0x140b7e[_0x2e9e6a(0x4e3,_0x1af0e1._0x3f3016,_0x1af0e1._0x233e1b,'dx1J')],-0x1222+0x1*-0x1526+0x2748)?_0x140b7e[_0x42a2f2(0x54d,_0x1af0e1._0x36447e,_0x1af0e1._0x52e7b9,0x871)]('\x0a'):_0x2e9e6a(0xb72,0xc79,0xfc3,'*LpW'),'executors':_0x381209[_0x42a2f2(_0x1af0e1._0x3e415f,_0x1af0e1._0x4cb523,0xb3a,0xb75)](_0x3b53fb[_0x2e9e6a(_0x1af0e1._0x22c45e,_0x1af0e1._0x327433,0x573,'2PrQ')],-0x10c0+-0x1d74+-0x2*-0x171a)?_0x3b53fb[_0x2e9e6a(0xa72,0xd32,0xc22,_0x1af0e1._0x2923c8)]('\x0a'):_0x381209[_0x2e9e6a(0x61c,_0x1af0e1._0x561302,0x2c3,_0x1af0e1._0xa08e4a)]};}function createAgentFilesFallback(_0x183d04,_0x1e2b3a,_0x409aee){const _0x50e750={_0x19b04f:0x408,_0x134b1b:0x6fd,_0x4017ff:'ECfd',_0x347e7c:0x8b4,_0x1cc801:'2PrQ',_0x36b9b4:0x713,_0x27781f:0xccb,_0x505c7d:'Dsi5',_0x1e755e:0x944,_0xfb95ef:0x1c7,_0x537903:0x469,_0x54da2d:')$Hz',_0x758319:0x47f,_0x249e05:0x576,_0x1e71dd:0xe1a,_0x95ec8f:0x7e5,_0x2eceec:0x5ec,_0x5a69fd:'VXA^',_0x14d108:0x4b1,_0x2d8f8b:0x6ba,_0x2d58b6:0xa58,_0x455de9:'V23R',_0x232754:0x568,_0x5f4cd7:0x397,_0x4a9696:0x47b,_0x3b337e:'7k]n',_0x3b2658:0xd7f,_0x504941:0xb21,_0x5c773c:0xb5e,_0x1f1625:0xc14,_0x14990e:0x906,_0x1dd75d:0x87b,_0x5ddeae:'l^lf',_0x31d008:'#pB[',_0x36acc6:0x2a4,_0x3b6c4a:0x348,_0x32d718:0x8fc,_0x46e8d4:0x98f,_0x221d2d:0x8d3,_0x9002e4:0x7da,_0x1e39aa:'N%cE',_0x22b50a:0x522,_0x432e1c:0x384,_0x35cdc1:0x6d1,_0x468324:0x4e7,_0x20fafc:0x5ff,_0x430239:0x744,_0x427fbb:0x7e4,_0x5e8382:0xcfa,_0x46c443:0xb11,_0x561d5f:0x42f,_0x3a19f4:0x87c,_0xa6107a:0x347,_0x3d6b66:']))d',_0x43b504:0x421,_0x4051f3:0x488,_0x390b88:'k7fb',_0x198e0e:0x99c,_0x308662:0x5d5,_0x4a4e7:0x4c1,_0x3aea6e:0xcac,_0x300508:0x9f7,_0x4e10f9:0x8f7,_0xdfc34b:0xb96,_0x4657d0:'!7O4',_0x4190b7:0x47f,_0x497241:0x55c,_0x1c58bc:0x776,_0xc79ab3:'6]hf',_0x2cf20a:0x42e,_0x5a5cd6:0x43b,_0x2ce5c2:'3Y(#',_0x44b037:0xb96,_0x187532:0x95d,_0x460335:')9w@',_0x152e2e:0x6d9,_0x489a8f:'da@G',_0x15480e:0x99c,_0x6c634b:0xca9,_0x1a17ce:0x961,_0x3ad40f:'v2$P',_0x58c72d:0x918,_0x31117b:0x86f,_0x63de23:0xe89,_0x3ddd1b:0x499,_0x13c2b3:0x6b1,_0x325d58:0x82a,_0x43e062:0xa08,_0x4862fb:')9w@',_0x29ca4c:'*LpW',_0x475b74:0x9ce,_0x335a9c:'ECfd',_0x3de1b8:0x831,_0x22d4af:'V23R',_0x1e64da:0x90e,_0x481918:0xd73,_0xc55f9a:0x992,_0xccd41:0x3e8,_0x575abd:0x438,_0x385254:0x4df,_0x9109da:0x88d,_0x2cb595:0x91a,_0x31e868:0x885,_0x150382:0x6aa,_0x55f584:0x9ad,_0x48ddfd:0x727,_0x17fd34:0x946,_0x5ce1c6:0xb0b,_0x4e9bf2:0xd08,_0x4c24f6:'KAAL',_0x194451:0x19e,_0x5c8174:0x2cf,_0x5ee4a6:'hn9d',_0x410673:0x6a3,_0x4954a8:'KDG1',_0x180961:0x57a,_0x31d8aa:0x8a7,_0xbb15cf:'v2$P',_0x34a940:'Ybev',_0x294d6a:0x8f9,_0x59b430:0xb6e,_0x1e54ac:0x200,_0x43764f:')$Hz',_0x556066:0x5f6,_0x558458:0x35d,_0x4599d8:0x474,_0xf51c66:0x6d0,_0x29dc5e:0x524,_0x2e151e:'#%z0',_0x4237ca:0xf12,_0x41fc2c:0xc23,_0x2a7159:0x7a7,_0x324fef:0x61e,_0x4dc4db:'z8mf',_0x311adf:0x6df,_0xb73c79:0x782,_0x1e5a68:0xbb7,_0x1acb64:0xbfc,_0x151912:0x913,_0x24590e:0xa9f,_0x54bf44:0xff3,_0x4aed99:0xbf1,_0x46241c:0xf15,_0x32d461:0xaf5,_0x19fe66:0x6bb,_0xb78508:0xab7,_0xd18abb:0x540,_0x107417:0x767,_0x3b0019:0x383,_0x14a6a0:'ebUi',_0xfea57d:0x581,_0x12bc78:0x332,_0x36666d:0x3e8,_0x4a138a:0xbc9,_0x27e5bb:0x809,_0x590f13:0x571,_0x24f69f:0xd1,_0x36ea9a:0x486,_0x10c82f:0x7a0,_0x2e1302:0xa1f,_0x4ba5ae:0x88d,_0x55d49b:0xc21,_0x484280:0xc83,_0x3f81b1:'2PrQ',_0x52d909:0xa40,_0x25c88e:0x886,_0x55e8ce:0x701,_0x4448ab:'da@G',_0x6bae8e:0x4d5,_0xd6d925:'hn9d',_0x4219b4:0x38b,_0xc344b7:0x4f9,_0xbeb114:0x777,_0xd17d12:0xa8a,_0x20c0db:0xe6a,_0x1cdf3f:0x949,_0x5b5271:0xdb3,_0x568cbc:0xcc1,_0x291d17:'V23R',_0x476a9c:'Ybev',_0x24c573:0x544,_0x1169da:0x3b5,_0x2a4908:0xaa4,_0x1f3383:0xaa4,_0xc35870:0xa4f,_0x2c17b0:'!7O4',_0x2f85a3:0x23d,_0x15b7b7:0x627,_0x2f920e:0x99b,_0x582fc6:0xaf1,_0x5ef964:0x930,_0x2580fa:'2PrQ',_0x3667c8:0xb44,_0x423fdd:0xc05,_0x91234:0x20c,_0x1c5c39:']))d',_0x5ca734:0xa39,_0x186fc4:0x670,_0xc49b1d:0x311,_0x2da9cc:0x467,_0x3c9921:0x8f4,_0x204620:0x778,_0x5ead93:0x2e5,_0x394092:0x6f8,_0x465c55:0x4be,_0x478e54:0x90f,_0x19e172:0x76b,_0x58acf9:0xf49,_0x535a66:0xadd,_0x33a27f:0x975,_0x5c6d7f:0x7f5,_0x3a2295:0x827,_0x43fa14:0x676,_0x33db77:0x8d5,_0x78761c:'2m0$',_0x5b0e2c:0x4ab,_0x4ed9c5:0x79c,_0x56de00:0xeb7,_0x506df9:0xab1,_0x59988e:'N%cE',_0x208181:0x65a,_0x4ce98a:'lofD',_0x6fa02e:0x728,_0xad8cde:0x7dd,_0x4ddbee:'1mQU',_0x450d1b:0x633,_0x4beaa9:0xa92,_0x48d867:0xa26,_0x134009:'hn9d',_0x464df6:0x706,_0x44e0e5:0x86d,_0x4a86f0:'HQvh',_0x132554:0x20f,_0x2c79d9:0x778,_0x10d4e2:0x521,_0x273c8a:0x5f4,_0x3cf3f8:0x3f3,_0x5becfe:'dx1J',_0x5c2065:0xf5d,_0x4ebe22:0xa93,_0x40c960:0xc18,_0x744757:0x84b,_0x1c561e:'c36g',_0x393523:'Dsi5',_0x4c41f6:0x923,_0xb6d1ea:0x9dc,_0xab8940:0xce7,_0x3f0e8e:']GM1',_0x598582:0x9bd,_0x5070e7:'Foj6',_0x408014:0xbc7,_0x39a4e5:0xd7a,_0x36fe59:0x9d6,_0x2f3c5f:0x854,_0x48e66e:0x798,_0x421e16:0x7b0,_0x36c860:0x6b7,_0x50e9d1:'N%cE',_0x58013c:0x22a,_0x509c45:0xed0,_0x1793b7:0xb50,_0x4e881e:0xa4a,_0x4c9b24:'2PrQ',_0x1716b2:0xdc2,_0x99c287:0xa75,_0xb9edc2:'Bu(&',_0x376478:0x829,_0x2d9896:'VXA^',_0x1fb257:0xa84,_0x100897:0x7b6,_0x573764:0x92c,_0x1288b8:0x889,_0x59c32a:'FtqP',_0x458e9f:0x3e1,_0xeb4125:0x367,_0x31619e:0x6fc,_0x53fd8c:0x468,_0x5dc757:0x540,_0x53407e:0x931,_0x1ea956:0x2d9,_0x33e325:0x1ec,_0x574bf1:0x5ea,_0x292fcb:0x535,_0x23b1f1:0x6c7,_0x53f92f:0x629,_0x254b4a:0x8ff,_0x4831f9:0x643,_0x552bfa:'Mpqc',_0xb1c71b:0x79f,_0x4e981c:0x684,_0x3e3291:'!k$h',_0x219628:0x45a,_0x305bc9:0x905,_0x27ce05:'KDG1',_0x44efff:0xb79,_0x532996:')$Hz',_0x329b1c:0x4f8,_0x4eedd6:0x5ae,_0x5035da:0x99c,_0x1a6bbf:'LaEV',_0x7f63a8:0x455,_0x285267:'V23R',_0x7ede8:0xb3e,_0x44e9d8:'HQvh',_0x197a57:0x9d3,_0xa35275:0x17e,_0x84960d:0xc3e,_0x1e603c:'FtqP',_0x555d0b:0x827,_0x9f363d:0x908,_0x1d00c0:'&)0b',_0x56e94b:0xbeb,_0x43d387:'suJD',_0x102aec:0x5ee,_0x4c6a94:0x743,_0x32f981:0x624,_0x22cd99:0x720,_0x5a24d9:0x7c8,_0x5d1ce3:'Foj6',_0x3087cc:0x876,_0x19c7e7:0x792,_0x382d6f:0x4f5,_0x2b0075:0xe37,_0x1342a4:0xf3a,_0x31d5f6:')9pR',_0xb02aa1:0x8a6,_0xee8fe0:0x556,_0x5555dd:0x5c0,_0x570957:0x62a,_0x5dc3b7:0xc1e,_0x227ba7:0x9e9,_0x5a3171:0xcb3,_0x48d74d:0xd52,_0x25133e:')9w@',_0x48354a:0x83f,_0x4537b3:0xa33,_0x40476f:0xbe5,_0xd46335:0x9d2,_0x334e47:0xf19,_0xf37592:0x3b,_0xc38711:0x4a9,_0x4f0b74:'lofD',_0x30e117:0x413,_0x3108cf:0x93a,_0x181a77:'*LpW',_0xf8ae61:0x9b0,_0x166d4e:0x5e0,_0x29ea1f:0x744,_0x550444:0x52f,_0x1bb474:0x936,_0x14a2af:0x805,_0x5eac13:0x886,_0x5cdbf7:'da@G',_0x2cd92f:0xb12,_0x28703c:'hn9d',_0x57a119:0x429,_0xcc3fa:0x691,_0x19e1a3:0xe7a,_0x5d315b:0xbd5,_0x599f37:0xb31,_0xbd4f8c:'#pB[',_0x2be72c:0x5fa,_0x549390:0x4cb,_0x53152b:0xae6,_0xab4ce0:0x7cf,_0x3619b9:0x9eb,_0x153b0c:0xe35,_0x748bd6:0xda8,_0x17edaf:0xbd1,_0x461f58:'c36g',_0x1a066d:0xc85,_0x3708fd:'HQvh',_0x1924b9:0x81b,_0x313c5f:0xa51,_0x74a8b4:'Dsi5',_0x56c297:0x109,_0x38f987:')9w@',_0xc3dadf:0x13,_0xf3b7ac:0x431,_0x164358:0x407,_0x1a687c:0x621,_0x38d1dd:0xf7d,_0x5896cb:0xb23,_0x13ce77:0x845,_0x2eafc2:0xe01,_0x46b3b6:0x925,_0x1fed60:0x6f0,_0x2aef65:'$6rX',_0x571ea6:0xae0,_0x156091:0x934,_0x5e3842:0x9dc,_0x3b28ca:0x64b,_0x1a5e86:0xae7,_0x491596:0x8d8,_0x531855:0x8a3,_0x1df9a9:0x6ce,_0xd5475d:'loi5',_0x2b9bdf:'2PrQ',_0x40b4de:'V)bU',_0x33da80:0x9e2,_0x51338a:0x505,_0x4bddf9:0x73d,_0x3f6bb5:0x8ce,_0x398df8:0xb37,_0x503174:0x5be,_0x119a5f:0x7ae,_0x4ad38c:0x677,_0x41c6a6:0x26a,_0xb6bac5:0x4e8,_0x3ab267:0x4d4,_0x52ef7e:0xaf7,_0xb6beb:0x3d1,_0x2894b3:0x60a,_0x2bd39a:0x52b,_0x9693f0:0x7aa,_0x4908df:0x597,_0xe3eac9:0xc2a,_0x8b6b37:'Q]KY',_0x5730a5:0xfd5,_0x50e5df:0x52c,_0x1eebe2:'2PrQ',_0x17abc3:0x5d2,_0x7a45ae:0xa13,_0x3fe2e7:0xb15,_0x2e91e5:0x8ea,_0x58068d:0x48e,_0x46a02f:0x78a,_0x5361b5:0x612,_0x1a982b:0x474,_0x29df31:'GdD8',_0x1424f1:0xaba,_0x3ee1f8:0x7c1,_0x4de8ec:0x7d8,_0x41634e:'z8mf',_0x2447fb:0x383,_0x4e8ae2:0x5cf,_0x55c3b4:0xe7f,_0x1abfff:0xcec,_0x3ce826:0xa8e,_0x22b554:0x172,_0x206eff:0x457,_0x4402a5:')9pR',_0x31d7c4:0x8cf,_0x5b3e30:0xa06,_0x21e1bd:0x686,_0x24b8cc:0x4f7,_0x447548:0x4cc,_0x4030d9:0xa3c,_0xe1d6c1:0x770,_0x176e8f:0x8d5,_0x159d4e:0xb03,_0xd03244:0xb08,_0x16a9dd:'FtqP',_0x27c37a:0xa19,_0x4100a8:0x488,_0x4afe62:0x881,_0x5ba8c7:0xaf2,_0x95cde2:'7k]n',_0x3a46de:0x51b,_0x3807a8:0x6f1,_0x4f7e04:'Lh@)',_0x23a8b0:0xa56,_0x314686:0x1015,_0x331728:0x5e1,_0x4e6860:0x669,_0x5bd480:0x52a,_0xff203c:0x45b,_0x3327e1:0x4af,_0xa1591d:0x5e4,_0x17c3e6:0x8ae,_0x5b3673:0xd0b,_0x36ab5a:0x814,_0x8ddde5:0x7bf,_0x673c43:0xafa,_0x44bbfc:0xaa5,_0x4076e8:0x9d8,_0x4758da:0x822,_0x124761:0x998,_0x4f4b2e:0xbe9,_0x3ee112:0xb30,_0x470bd7:0xb1c,_0x180c77:0x6e8,_0x40f6c5:0x10ae,_0x356506:0x76f,_0x48ebb0:0x59d,_0x35c0a7:'suJD',_0x5a1c21:0x8a2,_0x2ccebf:0x644,_0x1f91e3:0x8f1,_0x1645f8:0xe60,_0x44aa03:0xd48,_0x5cf9f0:0x21,_0x409b9f:0x214,_0x33cb8c:0x445,_0x30324e:'*LpW',_0x1508c5:0xb13,_0x4a8c60:0x842,_0x14c322:0x648,_0x374ec1:0x8d1,_0x5cbdba:0xa7d,_0x1a0427:0xa8b,_0xce987e:'c36g',_0x52e3d0:0x503,_0x46d553:0x740,_0x5e1f0e:0xdc5,_0x1c22e8:0xcf7,_0x9448f3:0xcb9,_0x11f993:'LaEV',_0x4e43fc:0x5a0,_0x45322b:'Ybev',_0x194c37:0x557,_0x529fab:'ebUi',_0x422aa2:0x9e8,_0x5ce765:0x4b6,_0x11bc56:0x7cb,_0x484c16:0x80e,_0x57aa15:0x355,_0x581678:'da@G',_0x1403f7:0x15,_0x5126f0:0x3ae,_0xbf694a:0x8ac,_0x5e6768:0x5f1,_0x534a53:0x9a1,_0x28f890:'PB2^',_0x1a9680:0x39c,_0x2583e1:0x5b6,_0x3bc407:0x4dc,_0xb51dba:'#pB[',_0x51fda6:0xab2,_0x27f2a5:0xa4d,_0x190cdf:0x34a,_0x554038:'l^lf',_0x29546c:0xb14,_0x341662:0x29b,_0x5c7609:0xbf2,_0x2f8fc7:0x803,_0x1abf60:')$Hz',_0x3319bf:0xfd,_0x55e930:0x561,_0x1364df:'LaEV',_0xac3124:0x903,_0x139471:0x784,_0x111b83:0x9aa,_0x253ff8:0x5ac,_0x250873:0x6a7,_0x2c402e:0x99b,_0x16c31e:0xbaa,_0x2e5d1d:0x785,_0x78cdd2:0x591,_0x5066d5:0x9e2,_0x11af7d:0xacc,_0x11af65:'suJD',_0x4b603b:0xb14,_0x1fb76c:0x5b0,_0x186311:0xe0c,_0x830044:'dx1J',_0x361954:0xa69,_0x376c08:0xa35,_0x1b4018:'ebUi',_0x4d9f66:0x693,_0x28d953:0x68c,_0x48ab5a:0x7b7,_0x20510d:'!7O4',_0x490bc5:0x838,_0x3d6f03:0x28b,_0x23e581:0x6f1,_0xaad77f:0x89d,_0xcffcf:'k7fb',_0x509d0a:0xa34,_0x1b814b:0x98a,_0x2fbcb4:0x1da,_0x3cb1f2:0x506,_0x90fe08:0x579,_0x370251:0x8bd,_0x9ab4c7:0x680,_0x281b25:0x608,_0x238807:0x89c,_0x3c162e:0xc4c,_0x10985e:0x91d,_0x3a62db:0x338,_0x35f5b5:0x4b7,_0x160bfd:0x3a9,_0x554956:0x7e5,_0x2fc7ba:0x4cb,_0x18e9ca:0x3aa,_0x1c49ba:0x8ba,_0x39f0af:0xd22,_0x4d9814:0xf19,_0xc8ff3f:0xcb5,_0x1d8fd3:0x9e5,_0xc11a06:'KDG1',_0x12daa1:0x97a,_0x291ee2:0x864,_0x3ead67:0x75d},_0x4acd24={_0xe2446e:0xe0},_0x45c5ae={'VxCQO':function(_0x187482,_0x5cffb7){return _0x187482(_0x5cffb7);},'GDTsm':function(_0x2c43d7,_0x1b40b3){return _0x2c43d7(_0x1b40b3);},'eEDiJ':function(_0x4f6005,_0x24f79d){return _0x4f6005===_0x24f79d;},'nYzJt':_0x2bd370(_0x50e750._0x19b04f,0x799,_0x50e750._0x134b1b,_0x50e750._0x4017ff),'lZcSP':_0x1428c5(0x6a9,'l^lf',0xbd0,0xa4a),'bwYey':function(_0x2907ff){return _0x2907ff();},'ilYdi':function(_0xfd07a4,_0x267306){return _0xfd07a4===_0x267306;},'jWivl':function(_0x56eec2,_0x59ac8c){return _0x56eec2(_0x59ac8c);},'tPQuy':function(_0xaf946,_0x4354c3){return _0xaf946!==_0x4354c3;},'TbewC':_0x1428c5(_0x50e750._0x347e7c,_0x50e750._0x1cc801,0x420,_0x50e750._0x36b9b4),'vQWkc':_0x1428c5(_0x50e750._0x27781f,_0x50e750._0x505c7d,0xa19,_0x50e750._0x1e755e),'JInjS':function(_0xd61fdb,_0x3b26fb){return _0xd61fdb===_0x3b26fb;},'ZEyHi':_0x1428c5(_0x50e750._0xfb95ef,'KAAL',_0x50e750._0x537903,0x3ac),'RJyzX':function(_0x180e40,_0x534cb7){return _0x180e40(_0x534cb7);},'LlrrT':_0x1428c5(0x752,_0x50e750._0x54da2d,_0x50e750._0x758319,_0x50e750._0x249e05),'NfQPy':'SOUL.md','gGcXr':_0x2bd370(_0x50e750._0x1e71dd,_0x50e750._0x95ec8f,0xb29,']GM1'),'iKjjC':_0x2bd370(0x353,0x268,_0x50e750._0x2eceec,_0x50e750._0x5a69fd),'IGPxt':_0x1428c5(0x5a7,'GdD8',0x6d1,_0x50e750._0x14d108)};function _0x2bd370(_0x1ed9ae,_0x44d603,_0x20f0c6,_0x222042){return _0x259b54(_0x222042,_0x44d603-0xfb,_0x20f0c6-_0x4acd24._0xe2446e,_0x20f0c6-0x318);}console[_0x2bd370(_0x50e750._0x2d8f8b,_0x50e750._0x2d58b6,0xaef,_0x50e750._0x455de9)]('[Agent创建]\x20'+_0x2bd370(_0x50e750._0x232754,_0x50e750._0x5f4cd7,_0x50e750._0x4a9696,_0x50e750._0x3b337e)+'内容');const _0x4a3369=_0x45c5ae[_0x1428c5(_0x50e750._0x3b2658,'GdD8',0xc13,_0x50e750._0x504941)](getRoleName,_0x1e2b3a['role']),_0x498ed4=_0x1e2b3a[_0x1428c5(_0x50e750._0x5c773c,'6]hf',_0x50e750._0x1f1625,_0x50e750._0x14990e)+'Id']?dept_repo_1[_0x2bd370(_0x50e750._0x1dd75d,0x70e,0x56d,_0x50e750._0x5ddeae)+_0x1428c5(0x46d,_0x50e750._0x31d008,_0x50e750._0x36acc6,_0x50e750._0x3b6c4a)][_0x2bd370(_0x50e750._0x32d718,0x47f,0x7c6,'loi5')](_0x1e2b3a[_0x2bd370(_0x50e750._0x46e8d4,_0x50e750._0x221d2d,_0x50e750._0x9002e4,'loi5')+'Id']):null,_0x1cc8c6=_0x498ed4?.[_0x1428c5(0x3f8,_0x50e750._0x1e39aa,0x70c,_0x50e750._0x22b50a)]||'全局';let _0x5c1781='';if(_0x45c5ae[_0x2bd370(_0x50e750._0x432e1c,_0x50e750._0x35cdc1,_0x50e750._0x468324,'Mpqc')](_0x1e2b3a[_0x2bd370(_0x50e750._0x20fafc,_0x50e750._0x430239,_0x50e750._0x427fbb,'GdD8')],_0x45c5ae[_0x1428c5(_0x50e750._0x5e8382,_0x50e750._0x1e39aa,0xf58,_0x50e750._0x46c443)])){if(_0x45c5ae[_0x2bd370(_0x50e750._0x561d5f,0x63d,0x73a,'Mpqc')]===_0x45c5ae[_0x1428c5(_0x50e750._0x3a19f4,'FtqP',_0x50e750._0xa6107a,0x4d7)]){const _0x1c3cdc=_0x45c5ae[_0x1428c5(0x112,_0x50e750._0x3d6b66,0x360,_0x50e750._0x43b504)](generateAssistantTeamMembersDetail);_0x5c1781=_0x2bd370(0x3cd,_0x50e750._0x4051f3,0x687,_0x50e750._0x390b88)+_0x2bd370(_0x50e750._0x198e0e,_0x50e750._0x308662,0x691,'suJD')+_0x2bd370(0x7e2,0x54d,_0x50e750._0x4a4e7,'ebUi')+_0x1428c5(_0x50e750._0x3aea6e,'k7fb',_0x50e750._0x300508,_0x50e750._0x4e10f9)+_0x2bd370(_0x50e750._0xdfc34b,0x8c2,0x853,_0x50e750._0x4657d0)+_0x1428c5(_0x50e750._0x4190b7,'6]hf',_0x50e750._0x497241,0x74a)+_0x1428c5(_0x50e750._0x1c58bc,_0x50e750._0xc79ab3,0x67a,_0x50e750._0x2cf20a)+_0x2bd370(_0x50e750._0x5a5cd6,0x5f7,0x81a,_0x50e750._0x2ce5c2)+_0x1428c5(0xd34,'Mpqc',0x798,0x8e7)+'\x0a\x0a'+_0x1c3cdc[_0x2bd370(_0x50e750._0x44b037,_0x50e750._0x187532,0xbb8,_0x50e750._0x460335)]+(_0x1428c5(_0x50e750._0x152e2e,_0x50e750._0x489a8f,0xcfc,_0x50e750._0x15480e)+_0x2bd370(0xbc0,_0x50e750._0x6c634b,0xd24,'ECfd'))+_0x1c3cdc[_0x1428c5(_0x50e750._0x1a17ce,_0x50e750._0x3ad40f,_0x50e750._0x58c72d,0x88e)]+(_0x1428c5(_0x50e750._0x31117b,'3Y(#',_0x50e750._0x63de23,0xab5)+_0x1428c5(_0x50e750._0x3ddd1b,'da@G',0x479,0x5e7))+_0x1c3cdc[_0x2bd370(_0x50e750._0x13c2b3,_0x50e750._0x325d58,_0x50e750._0x43e062,_0x50e750._0x4862fb)]+(_0x1428c5(0x867,_0x50e750._0x29ca4c,0xd2f,_0x50e750._0x475b74)+_0x1428c5(0x3ae,_0x50e750._0x335a9c,0x48e,0x65a)+'ssions_sen'+_0x1428c5(_0x50e750._0x3de1b8,_0x50e750._0x22d4af,_0x50e750._0x1e64da,0x910)+_0x2bd370(_0x50e750._0x481918,0xeba,0xa9b,'v2$P')+_0x1428c5(0xb94,')9pR',0x602,_0x50e750._0xc55f9a)+_0x1428c5(_0x50e750._0xccd41,'Bu(&',_0x50e750._0x575abd,_0x50e750._0x385254)+_0x1428c5(0x921,_0x50e750._0x29ca4c,_0x50e750._0x9109da,_0x50e750._0x2cb595)+_0x1428c5(_0x50e750._0x31e868,'Lh@)',_0x50e750._0x150382,_0x50e750._0x55f584)+_0x2bd370(0x65c,_0x50e750._0x48ddfd,_0x50e750._0x17fd34,'Bu(&')+_0x2bd370(0xa7c,_0x50e750._0x5ce1c6,_0x50e750._0x4e9bf2,_0x50e750._0x4c24f6));}else{const _0x33a883=_0x45c5ae[_0x1428c5(_0x50e750._0x194451,'lofD',_0x50e750._0x5c8174,0x3b8)](_0x767a62,_0x13b352);return _0x45c5ae[_0x2bd370(0xa69,0xc92,0x88e,_0x50e750._0x5ee4a6)](_0x1df570,_0x33a883);}}else{if(_0x45c5ae['ilYdi'](_0x1e2b3a[_0x2bd370(0x7af,0xac1,_0x50e750._0x410673,_0x50e750._0x4954a8)],_0x2bd370(_0x50e750._0x180961,0xcb0,_0x50e750._0x31d8aa,_0x50e750._0xbb15cf))&&_0x1e2b3a[_0x1428c5(0x609,_0x50e750._0x34a940,0xcf3,_0x50e750._0x294d6a)+'Id']){const _0x174f95=_0x45c5ae[_0x2bd370(_0x50e750._0x59b430,0x10e9,0xce1,'N%cE')](generateManagerTeamMembersDetail,_0x1e2b3a[_0x1428c5(_0x50e750._0x1e54ac,_0x50e750._0x43764f,0x516,_0x50e750._0x556066)+'Id']);_0x5c1781='\x0a##\x20团队成员\x0a\x0a'+_0x1428c5(_0x50e750._0x558458,'ebUi',_0x50e750._0x4599d8,_0x50e750._0xf51c66)+_0x2bd370(0x9dd,_0x50e750._0x29dc5e,0x7ab,_0x50e750._0x2e151e)+_0x2bd370(_0x50e750._0x4237ca,0xc19,_0x50e750._0x41fc2c,_0x50e750._0x5ee4a6)+_0x2bd370(0x39d,0x4bc,_0x50e750._0x2a7159,_0x50e750._0x31d008)+_0x1428c5(_0x50e750._0x324fef,_0x50e750._0x4dc4db,_0x50e750._0x311adf,0x8e9)+_0x1428c5(0xe53,_0x50e750._0x5ee4a6,_0x50e750._0xb73c79,_0x50e750._0x1e5a68)+_0x2bd370(_0x50e750._0x1acb64,_0x50e750._0x151912,_0x50e750._0x24590e,'7k]n')+_0x1428c5(0x981,'Mpqc',_0x50e750._0x54bf44,_0x50e750._0x4aed99)+_0x2bd370(0xc15,_0x50e750._0x46241c,_0x50e750._0x32d461,'Ybev')+_0x1428c5(_0x50e750._0x19fe66,'Lh@)',0x27f,0x45e)+_0x1428c5(_0x50e750._0xb78508,_0x50e750._0x43764f,0x737,0x968)+_0x1428c5(0x355,'*LpW',_0x50e750._0xd18abb,_0x50e750._0x107417)+'-|------|\x0a'+_0x174f95[_0x1428c5(_0x50e750._0x3b0019,_0x50e750._0x14a6a0,_0x50e750._0xfea57d,0x4fd)]+(_0x1428c5(0x3f4,')9w@',_0x50e750._0x12bc78,_0x50e750._0x36666d)+_0x2bd370(0xb18,_0x50e750._0x4a138a,_0x50e750._0x27e5bb,'Dsi5')+_0x1428c5(_0x50e750._0x590f13,'lofD',0xb3e,0x7ad)+_0x2bd370(0x44d,_0x50e750._0x24f69f,_0x50e750._0x36ea9a,'7k]n')+_0x2bd370(0xba0,_0x50e750._0x10c82f,0x92f,'da@G')+_0x2bd370(_0x50e750._0x2e1302,_0x50e750._0x4ba5ae,0x849,_0x50e750._0x14a6a0)+_0x1428c5(0x6e4,_0x50e750._0x2e151e,_0x50e750._0x55d49b,0x845))+_0x174f95[_0x1428c5(_0x50e750._0x484280,_0x50e750._0x3f81b1,_0x50e750._0x52d909,_0x50e750._0x25c88e)]+(_0x1428c5(_0x50e750._0x55e8ce,')9pR',0x762,0x852)+_0x2bd370(0x583,0x585,0x87c,_0x50e750._0x4448ab)+_0x2bd370(_0x50e750._0x6bae8e,0x89f,0x7dc,_0x50e750._0xd6d925)+_0x2bd370(_0x50e750._0x4219b4,0x5a4,0x5a1,'suJD')+_0x2bd370(0x7c0,_0x50e750._0xc344b7,_0x50e750._0xbeb114,']GM1')+_0x1428c5(0xca9,_0x50e750._0x4862fb,0x96b,_0x50e750._0xd17d12)+'|------|--'+_0x2bd370(0xbbe,_0x50e750._0x20c0db,0xc72,'V)bU')+_0x1428c5(_0x50e750._0x1cdf3f,'!7O4',0xcc9,0x8d4)+'|\x0a')+_0x174f95[_0x2bd370(_0x50e750._0x5b5271,0xb6d,_0x50e750._0x568cbc,_0x50e750._0x291d17)]+(_0x1428c5(0x557,_0x50e750._0x476a9c,0x463,0x71d)+_0x1428c5(_0x50e750._0x24c573,'v2$P',_0x50e750._0x1169da,0x71e)+_0x2bd370(_0x50e750._0x2a4908,_0x50e750._0x1f3383,_0x50e750._0xc35870,_0x50e750._0x2c17b0)+'d`\x20工具:\x0a-\x20`'+_0x2bd370(0x67b,_0x50e750._0x2f85a3,0x649,'6]hf')+_0x1428c5(0x602,'ebUi',_0x50e750._0x15b7b7,0x7c3)+_0x2bd370(_0x50e750._0x2f920e,_0x50e750._0x582fc6,_0x50e750._0x5ef964,_0x50e750._0x2580fa)+'过\x20Agent\x20ID'+_0x1428c5(_0x50e750._0x3667c8,'GdD8',0x80c,_0x50e750._0x423fdd)+_0x1428c5(_0x50e750._0x91234,_0x50e750._0x1c5c39,_0x50e750._0x5ca734,_0x50e750._0x186fc4)+_0x1428c5(0x351,'Q]KY',_0x50e750._0xc49b1d,0x51d));}else{if(_0x1e2b3a[_0x2bd370(0x2c3,0x4a2,0x5fb,_0x50e750._0x455de9)]==='reviewer'&&_0x1e2b3a['department'+'Id']){if(_0x45c5ae[_0x1428c5(_0x50e750._0x410673,'Bu(&',-0xe,_0x50e750._0x2da9cc)](_0x45c5ae[_0x1428c5(0x893,'6]hf',_0x50e750._0x3c9921,_0x50e750._0x204620)],_0x45c5ae[_0x1428c5(0x41c,')$Hz',0x21f,0x3fc)])){const _0x5cfece=generateReviewerTeamMembersDetail(_0x1e2b3a[_0x1428c5(0x79e,'$6rX',_0x50e750._0x5ead93,0x3d4)+'Id']);_0x5c1781=_0x1428c5(_0x50e750._0x394092,'Q]KY',0x701,_0x50e750._0x465c55)+_0x1428c5(0xacf,'93KN',0x96c,_0x50e750._0x478e54)+_0x1428c5(_0x50e750._0x19e172,'1mQU',_0x50e750._0x58acf9,_0x50e750._0x535a66)+'联系和任务分配。如需'+_0x1428c5(0x27e,'2PrQ',0x891,0x6e6)+_0x2bd370(0xad7,0xd4c,_0x50e750._0x33a27f,'1mQU')+_0x2bd370(_0x50e750._0x5c6d7f,0x3c8,_0x50e750._0x3a2295,'l^lf')+_0x2bd370(_0x50e750._0x43fa14,_0x50e750._0x33db77,0x5e4,'HQvh')+_0x2bd370(0xa93,0x425,0x7e7,_0x50e750._0x78761c)+_0x1428c5(0x1f1,'Bu(&',0x1c3,_0x50e750._0x5b0e2c)+_0x2bd370(_0x50e750._0x4ed9c5,_0x50e750._0x56de00,_0x50e750._0x506df9,_0x50e750._0x59988e)+_0x1428c5(_0x50e750._0x208181,_0x50e750._0x4ce98a,0x34f,_0x50e750._0x6fa02e)+_0x1428c5(_0x50e750._0xad8cde,_0x50e750._0x4ddbee,0x6ed,_0x50e750._0x450d1b)+_0x1428c5(0xd3a,'GdD8',0xc8e,_0x50e750._0x4beaa9)+_0x1428c5(_0x50e750._0x48d867,_0x50e750._0x134009,0x6c6,0x8b2)+_0x5cfece[_0x2bd370(0x72c,0x99a,_0x50e750._0x464df6,_0x50e750._0x4dc4db)]+(_0x1428c5(_0x50e750._0x44e0e5,_0x50e750._0x4a86f0,_0x50e750._0x132554,0x59e)+_0x1428c5(0x853,')9w@',_0x50e750._0x2c79d9,0xa04)+_0x2bd370(0x5ff,0x6bc,0x789,'7k]n')+'\x20|\x20职业\x20|\x20状态'+'\x20|\x0a|------'+'----|-----'+_0x1428c5(_0x50e750._0x10d4e2,'3Y(#',0x7fa,0x8cc)+_0x1428c5(0x754,'suJD',_0x50e750._0x273c8a,0x477))+_0x5cfece['executors']+(_0x2bd370(_0x50e750._0x3cf3f8,0x8ab,0x603,_0x50e750._0x5becfe)+'方式\x0a\x0a使用\x20`se'+_0x1428c5(0xba8,_0x50e750._0x505c7d,_0x50e750._0x5c2065,0xc14)+_0x2bd370(_0x50e750._0x4ebe22,0xcfa,_0x50e750._0x40c960,'hn9d')+_0x2bd370(0x924,0x75b,_0x50e750._0x744757,_0x50e750._0x1c561e)+_0x1428c5(0xd82,_0x50e750._0x393523,0x886,0xc34)+'sionKey(或通'+_0x2bd370(_0x50e750._0x4c41f6,_0x50e750._0xb6d1ea,_0x50e750._0xab8940,_0x50e750._0x3f0e8e)+_0x1428c5(_0x50e750._0x598582,_0x50e750._0x5070e7,_0x50e750._0x408014,0x8ef)+_0x1428c5(_0x50e750._0x39a4e5,_0x50e750._0x4862fb,_0x50e750._0x5b5271,0x954)+_0x2bd370(_0x50e750._0x36fe59,0x4de,_0x50e750._0x2f3c5f,_0x50e750._0x393523));}else _0x581962[_0x2bd370(_0x50e750._0x48e66e,_0x50e750._0x421e16,_0x50e750._0x36c860,_0x50e750._0x50e9d1)]['agentToAge'+'nt']['allow']=[];}else{if(_0x45c5ae[_0x1428c5(_0x50e750._0x58013c,'dx1J',0xfe,_0x50e750._0x590f13)](_0x1e2b3a['role'],_0x45c5ae[_0x2bd370(_0x50e750._0x509c45,0xae0,_0x50e750._0x1793b7,'&)0b')])&&_0x1e2b3a[_0x1428c5(_0x50e750._0x4e881e,_0x50e750._0x4c9b24,_0x50e750._0x1716b2,0xb66)+'Id']){const _0x209de3=_0x45c5ae[_0x2bd370(0x8c1,_0x50e750._0x99c287,0x912,'loi5')](generateExecutorTeamMembersDetail,_0x1e2b3a[_0x1428c5(0xbd0,_0x50e750._0xb9edc2,_0x50e750._0x376478,0xa99)+'Id']);_0x5c1781=_0x1428c5(0xc14,_0x50e750._0x2d9896,_0x50e750._0x1fb257,_0x50e750._0x100897)+_0x2bd370(0x159,0x221,0x566,'loi5')+_0x2bd370(_0x50e750._0x573764,0x68e,0x5d5,_0x50e750._0x4ce98a)+_0x2bd370(_0x50e750._0x1288b8,0x59f,0x6cc,_0x50e750._0x59c32a)+_0x1428c5(0x1d5,_0x50e750._0x4ce98a,0x2c1,_0x50e750._0x458e9f)+_0x2bd370(_0x50e750._0xeb4125,0x491,0x65d,'V23R')+_0x1428c5(0x337,'Mpqc',0x310,_0x50e750._0x31619e)+_0x1428c5(0x2d5,'93KN',_0x50e750._0x53fd8c,_0x50e750._0x5dc757)+_0x2bd370(_0x50e750._0x53407e,_0x50e750._0x1ea956,0x4e0,_0x50e750._0x2ce5c2)+_0x1428c5(0x476,'1mQU',_0x50e750._0x33e325,0x587)+_0x2bd370(0xe67,0xb04,0xa0c,'GdD8')+_0x1428c5(_0x50e750._0x574bf1,_0x50e750._0x2d9896,_0x50e750._0x292fcb,0x646)+_0x1428c5(_0x50e750._0x23b1f1,'#pB[',_0x50e750._0x53f92f,_0x50e750._0x254b4a)+_0x2bd370(_0x50e750._0x4831f9,0x577,0x6c1,')9w@')+_0x1428c5(0x2b8,_0x50e750._0x552bfa,_0x50e750._0xb1c71b,_0x50e750._0x4e981c)+_0x209de3['manager']+(_0x1428c5(0x6b2,_0x50e750._0x3e3291,0x378,_0x50e750._0x219628)+_0x1428c5(_0x50e750._0x305bc9,_0x50e750._0x27ce05,0x3f3,0x678)+_0x2bd370(0xc30,_0x50e750._0x44efff,0x8e3,_0x50e750._0x532996)+_0x1428c5(0xe25,'2m0$',0xfa6,0xc1c)+'---------|'+_0x1428c5(_0x50e750._0x329b1c,'!k$h',_0x50e750._0x4eedd6,0x462)+_0x1428c5(_0x50e750._0x5035da,'c36g',0x4a3,0x837))+_0x209de3[_0x1428c5(0x29c,_0x50e750._0x1a6bbf,0x10a,_0x50e750._0x7f63a8)]+(_0x1428c5(0x327,_0x50e750._0x285267,-0x3c,0x36b)+_0x2bd370(_0x50e750._0x7ede8,_0x50e750._0xd17d12,0xbf7,_0x50e750._0x44e9d8)+_0x1428c5(0x6a8,'PB2^',0x1f3,0x47d)+_0x1428c5(_0x50e750._0x197a57,'GdD8',0x79d,0x9c3)+_0x1428c5(_0x50e750._0xa35275,'93KN',0x8e,0x48a)+'`:接收者的\x20ses'+_0x1428c5(_0x50e750._0x84960d,'!k$h',0x76c,0xa20)+_0x2bd370(0xd1f,0xce7,0xa36,_0x50e750._0x1e603c)+_0x2bd370(_0x50e750._0x555d0b,0x6b1,0xa54,'KDG1')+_0x1428c5(_0x50e750._0x9f363d,_0x50e750._0x1d00c0,0xe89,_0x50e750._0x56e94b)+_0x1428c5(0x860,_0x50e750._0x43d387,_0x50e750._0x102aec,_0x50e750._0x4c6a94));}}}}const _0x205b92='#\x20'+_0x1e2b3a[_0x1428c5(_0x50e750._0x32f981,']))d',_0x50e750._0x22cd99,0x548)]+(_0x1428c5(0x9c6,'ebUi',_0x50e750._0x5a24d9,0x9b6)+_0x1428c5(0x870,_0x50e750._0x5d1ce3,_0x50e750._0x3087cc,0x724))+_0x1cc8c6+'的**'+_0x4a3369+(_0x1428c5(0x5d1,_0x50e750._0x505c7d,_0x50e750._0x19c7e7,_0x50e750._0x382d6f)+_0x2bd370(_0x50e750._0x2b0075,_0x50e750._0x1342a4,0xd49,_0x50e750._0x31d5f6)+_0x1428c5(_0x50e750._0xb02aa1,'#pB[',_0x50e750._0xee8fe0,0x74b))+_0x183d04+(_0x2bd370(_0x50e750._0x5555dd,0x453,_0x50e750._0x570957,'l^lf')+_0x2bd370(_0x50e750._0x5dc3b7,_0x50e750._0x227ba7,_0x50e750._0x5a3171,'loi5'))+_0x4a3369+(_0x2bd370(0x97f,0xfd5,_0x50e750._0x48d74d,_0x50e750._0x3b337e)+_0x1428c5(0xbc8,_0x50e750._0x25133e,_0x50e750._0x48354a,_0x50e750._0x4537b3))+_0x1cc8c6+('\x0a-\x20**工作空间*'+_0x1428c5(0x2f8,'#pB[',0x53a,0x3ec))+_0x409aee+'\x0a\x0a'+_0x5c1781+(_0x1428c5(_0x50e750._0x40476f,'LaEV',0x786,_0x50e750._0xd46335)+_0x2bd370(0x365,0x34f,0x478,_0x50e750._0x43764f)+'求\x0a\x0a-\x20**禁止幻'+_0x1428c5(_0x50e750._0x334e47,'V23R',0x9ca,0xb5c)+_0x2bd370(_0x50e750._0xf37592,0x28c,_0x50e750._0xc38711,')9w@')+_0x1428c5(0x26a,_0x50e750._0x4f0b74,0x5e2,_0x50e750._0x30e117)+_0x1428c5(_0x50e750._0x3108cf,_0x50e750._0x181a77,0xa7a,0x6db)+_0x1428c5(_0x50e750._0xf8ae61,_0x50e750._0x4dc4db,0x436,_0x50e750._0x166d4e)+_0x1428c5(_0x50e750._0x29ea1f,'LaEV',0x2c9,0x66b)+'-\x20**逻辑一致性*'+_0x2bd370(_0x50e750._0x550444,_0x50e750._0x1bb474,_0x50e750._0x14a2af,'Dsi5')+_0x2bd370(0x8c3,0x5a5,_0x50e750._0x5eac13,'Q]KY')+_0x1428c5(0x37a,'hn9d',0x433,0x720)+_0x1428c5(0x97a,_0x50e750._0x5cdbf7,0xa2f,0x664)+_0x1428c5(0xb79,_0x50e750._0x50e9d1,0xcbd,_0x50e750._0x2cd92f)+_0x1428c5(0x32f,_0x50e750._0x28703c,_0x50e750._0x57a119,_0x50e750._0xcc3fa)+_0x2bd370(_0x50e750._0x19e1a3,0xe79,_0x50e750._0x5d315b,'LaEV')+_0x1428c5(_0x50e750._0x599f37,_0x50e750._0x29ca4c,0x7c8,0x86b)+_0x1428c5(0xf03,_0x50e750._0xbd4f8c,0xbbb,0xb71)+_0x1428c5(0x1d1,'c36g',_0x50e750._0x2be72c,_0x50e750._0x549390)+_0x2bd370(_0x50e750._0x53152b,_0x50e750._0xab4ce0,_0x50e750._0x3619b9,_0x50e750._0x1d00c0)+_0x2bd370(_0x50e750._0x153b0c,_0x50e750._0x748bd6,_0x50e750._0x17edaf,_0x50e750._0x461f58)+_0x1428c5(_0x50e750._0x1a066d,_0x50e750._0x3708fd,0x74d,_0x50e750._0x44efff)+_0x2bd370(0xabb,0x5b0,_0x50e750._0x1924b9,_0x50e750._0x2e151e)+'完成,确保高质量交付'+_0x2bd370(0xad1,_0x50e750._0x313c5f,0x7a4,_0x50e750._0x74a8b4)+_0x1428c5(_0x50e750._0x56c297,_0x50e750._0x38f987,-_0x50e750._0xc3dadf,_0x50e750._0xf3b7ac)+_0x1428c5(0x4eb,'hn9d',_0x50e750._0x164358,_0x50e750._0x1a687c)+_0x2bd370(_0x50e750._0x38d1dd,0xa80,_0x50e750._0x5896cb,_0x50e750._0x31d008)+_0x2bd370(0xef9,0x941,0xc74,_0x50e750._0x78761c)+_0x1428c5(_0x50e750._0x13ce77,'93KN',0x771,0x400))+_0x409aee+(_0x1428c5(0x85a,'ebUi',_0x50e750._0x2eafc2,0xb86)+_0x2bd370(_0x50e750._0x46b3b6,0x946,_0x50e750._0x1fed60,'3Y(#')+_0x2bd370(0xb47,0x9ae,0xb13,_0x50e750._0x2aef65)+'}-{文档类型}.m'+'d`\x0a\x0a---\x0a*本'+_0x1428c5(0xc5d,'c36g',_0x50e750._0x571ea6,0x7f2)+_0x2bd370(0x78f,0x76c,_0x50e750._0x156091,_0x50e750._0x1a6bbf)+_0x2bd370(_0x50e750._0x5e3842,0x6af,0x78a,'KDG1'));fs[_0x1428c5(_0x50e750._0x3b28ca,'Dsi5',_0x50e750._0x1a5e86,_0x50e750._0x491596)+_0x2bd370(0xaf8,_0x50e750._0x531855,_0x50e750._0x1df9a9,_0x50e750._0x43d387)](path[_0x1428c5(0x32b,_0x50e750._0xd5475d,0x837,0x4d0)](_0x409aee,_0x45c5ae[_0x2bd370(0xb37,0x9b8,0x8da,_0x50e750._0x2b9bdf)]),_0x205b92,_0x2bd370(0xc44,_0x50e750._0xc38711,0x8e9,_0x50e750._0x40b4de));const _0xf189e0=_0x2bd370(0xd4e,0x919,_0x50e750._0x33da80,'Q]KY')+_0x1428c5(0x4d1,'2m0$',_0x50e750._0x51338a,_0x50e750._0x4bddf9)+_0x1428c5(0xdb5,'Dsi5',_0x50e750._0x3f6bb5,_0x50e750._0x398df8)+_0x4a3369+(_0x1428c5(0x7b3,'1mQU',_0x50e750._0x503174,0x82f)+_0x1428c5(_0x50e750._0x119a5f,'Dsi5',_0x50e750._0x4ad38c,0x424)+_0x2bd370(_0x50e750._0x41c6a6,_0x50e750._0xb6bac5,_0x50e750._0x3ab267,'hn9d')+_0x1428c5(0xa26,'2m0$',0xeeb,_0x50e750._0x52ef7e)+_0x2bd370(_0x50e750._0xb6beb,0x672,_0x50e750._0x2894b3,'suJD')+_0x1428c5(0x6c4,'2m0$',0x3dd,0x4c5)+_0x1428c5(_0x50e750._0x2bd39a,'7k]n',_0x50e750._0x9693f0,_0x50e750._0x4908df)+'y\x20helpful.'+_0x1428c5(_0x50e750._0xe3eac9,_0x50e750._0x8b6b37,_0x50e750._0x5730a5,0xc0b)+_0x1428c5(0xb16,_0x50e750._0x461f58,0xa13,0x8c8)+'uestion!\x22\x20'+_0x2bd370(_0x50e750._0x50e5df,0x9d8,0x7a5,_0x50e750._0x1eebe2)+_0x2bd370(0x7c1,0x1044,0xc02,'7k]n')+'\x20help!\x22\x20—\x20'+_0x2bd370(_0x50e750._0x17abc3,0x678,_0x50e750._0x7a45ae,_0x50e750._0x291d17)+_0x2bd370(0xe7c,0xf8c,_0x50e750._0x3fe2e7,'3Y(#')+_0x1428c5(_0x50e750._0x2e91e5,_0x50e750._0x2d9896,_0x50e750._0x58068d,_0x50e750._0x46a02f)+'r\x20than\x20fil'+_0x2bd370(_0x50e750._0x5361b5,0x34c,_0x50e750._0x1a982b,_0x50e750._0x29df31)+_0x1428c5(0x933,']GM1',0x9c9,_0x50e750._0x1424f1)+_0x2bd370(_0x50e750._0x3ee1f8,0x880,_0x50e750._0x4de8ec,_0x50e750._0x41634e)+_0x1428c5(_0x50e750._0x2447fb,_0x50e750._0x552bfa,0x488,_0x50e750._0x4e8ae2)+_0x1428c5(_0x50e750._0x55c3b4,_0x50e750._0x3b337e,_0x50e750._0x1abfff,_0x50e750._0x3ce826)+_0x1428c5(_0x50e750._0x22b554,'Foj6',0x12f,_0x50e750._0x206eff)+_0x1428c5(0x8c2,_0x50e750._0x4402a5,0x490,_0x50e750._0x31d7c4)+_0x2bd370(_0x50e750._0x5b3e30,0x7e1,_0x50e750._0x21e1bd,'k7fb')+_0x1428c5(0x683,'Mpqc',_0x50e750._0x24b8cc,_0x50e750._0x447548)+_0x2bd370(_0x50e750._0x4030d9,0xae2,_0x50e750._0xe1d6c1,'l^lf')+_0x2bd370(0x89a,_0x50e750._0x176e8f,_0x50e750._0x159d4e,'Dsi5')+_0x1428c5(_0x50e750._0xd03244,_0x50e750._0x16a9dd,0xa2a,_0x50e750._0x27c37a)+_0x2bd370(_0x50e750._0x4100a8,0x424,_0x50e750._0x4afe62,_0x50e750._0x2c17b0)+_0x2bd370(0x6b2,0x8ea,_0x50e750._0x5ba8c7,_0x50e750._0x95cde2)+_0x2bd370(_0x50e750._0x3a46de,_0x50e750._0x3807a8,0x646,_0x50e750._0x4f7e04)+_0x1428c5(_0x50e750._0x23a8b0,'*LpW',0x58f,0x9f0)+_0x2bd370(_0x50e750._0x314686,0x109e,0xcaf,_0x50e750._0xc79ab3)+_0x1428c5(_0x50e750._0x331728,'#%z0',0xaed,0xa2f)+_0x2bd370(0x298,0x407,_0x50e750._0x4e6860,'v2$P')+_0x1428c5(0x524,'Foj6',_0x50e750._0x5bd480,0x64c)+_0x2bd370(_0x50e750._0x1a5e86,_0x50e750._0xff203c,0x74e,'#pB[')+_0x2bd370(_0x50e750._0x3327e1,0x491,0x756,_0x50e750._0x460335)+_0x2bd370(_0x50e750._0xa1591d,_0x50e750._0x17c3e6,0x8ba,_0x50e750._0x335a9c)+_0x2bd370(_0x50e750._0x5b3673,0xbfe,0xc55,'k7fb')+_0x2bd370(0x6c2,0xa05,0x69e,_0x50e750._0x390b88)+_0x2bd370(_0x50e750._0x36ab5a,0x607,0x476,'PB2^')+_0x1428c5(_0x50e750._0x8ddde5,')9pR',0x624,0x556)+_0x2bd370(0x67a,_0x50e750._0x673c43,0x943,')$Hz')+_0x2bd370(_0x50e750._0x44bbfc,0x760,_0x50e750._0x4076e8,_0x50e750._0x4ddbee)+_0x1428c5(0x89d,'Foj6',_0x50e750._0x4076e8,0x773)+_0x1428c5(0x55a,'7k]n',_0x50e750._0x4758da,_0x50e750._0x124761)+_0x2bd370(0x751,_0x50e750._0x4f4b2e,_0x50e750._0x599f37,'FtqP')+_0x1428c5(_0x50e750._0x3ee112,')$Hz',_0x50e750._0x470bd7,_0x50e750._0x180c77)+_0x2bd370(_0x50e750._0x40f6c5,0x1164,0xcec,_0x50e750._0x4ddbee)+_0x2bd370(_0x50e750._0x356506,0x3c4,_0x50e750._0x48ebb0,'PB2^')+_0x1428c5(0x74a,_0x50e750._0x74a8b4,0x821,0x7f7)+_0x1428c5(0xae0,_0x50e750._0x35c0a7,_0x50e750._0x5a1c21,0xa3a)+_0x2bd370(_0x50e750._0x2ccebf,0xa76,_0x50e750._0x1f91e3,'Lh@)')+_0x1428c5(_0x50e750._0x1645f8,'k7fb',0x77d,0xb68)+_0x2bd370(0x1185,0xca2,_0x50e750._0x44aa03,'Ybev')+_0x1428c5(-_0x50e750._0x5cf9f0,_0x50e750._0x461f58,_0x50e750._0x409b9f,_0x50e750._0x33cb8c)+_0x1428c5(-0x83,'z8mf',0x61a,0x38c));fs[_0x1428c5(0x563,_0x50e750._0x30324e,_0x50e750._0x1508c5,_0x50e750._0x31d8aa)+_0x1428c5(_0x50e750._0x4ad38c,']))d',0x581,_0x50e750._0x432e1c)](path['join'](_0x409aee,_0x45c5ae[_0x2bd370(0x718,_0x50e750._0x4a8c60,0xb7a,'2PrQ')]),_0xf189e0,_0x45c5ae[_0x1428c5(_0x50e750._0x14c322,'Lh@)',_0x50e750._0x374ec1,_0x50e750._0x5cbdba)]);const _0x13dffe=_0x1428c5(_0x50e750._0x1a0427,_0x50e750._0xce987e,0x559,0x7b4)+_0x1428c5(0x7f9,'k7fb',0x87b,_0x50e750._0x52e3d0)+_0x2bd370(0x7d6,0x539,_0x50e750._0x46d553,'k7fb')+_0x2bd370(_0x50e750._0x5e1f0e,_0x50e750._0x1c22e8,0xc30,')9w@')+_0x2bd370(_0x50e750._0x9448f3,0xad4,0xa9a,_0x50e750._0x11f993)+_0x1428c5(_0x50e750._0x4e43fc,_0x50e750._0x45322b,0x42e,_0x50e750._0x194c37)+_0x1428c5(0x6b2,_0x50e750._0x529fab,_0x50e750._0x422aa2,0xa32)+_0x2bd370(_0x50e750._0x5ce765,0xc0c,_0x50e750._0x11bc56,_0x50e750._0x3f0e8e)+_0x2bd370(_0x50e750._0x30e117,_0x50e750._0x484c16,0x7e0,'Lh@)')+_0x1428c5(_0x50e750._0x57aa15,_0x50e750._0x581678,-_0x50e750._0x1403f7,_0x50e750._0x5126f0)+_0x2bd370(0x1d5,_0x50e750._0xbf694a,_0x50e750._0x5e6768,')$Hz')+'\x0a\x0a了解越多,服务越'+_0x2bd370(_0x50e750._0x534a53,0x885,0x857,_0x50e750._0x28f890)+_0x1428c5(_0x50e750._0x1a9680,'93KN',0x6f2,_0x50e750._0x2583e1)+_0x2bd370(0x43a,0x3c9,0x638,_0x50e750._0x3f0e8e)+_0x2bd370(_0x50e750._0x3bc407,0x6f4,0x708,_0x50e750._0xb51dba);fs[_0x2bd370(_0x50e750._0x51fda6,0x32f,0x77b,'V)bU')+_0x1428c5(0xb78,'93KN',_0x50e750._0x27f2a5,0xaca)](path[_0x1428c5(_0x50e750._0x190cdf,_0x50e750._0x554038,_0x50e750._0x29546c,0x79c)](_0x409aee,_0x45c5ae[_0x1428c5(_0x50e750._0x341662,_0x50e750._0x5d1ce3,0x3a2,0x5c3)]),_0x13dffe,_0x45c5ae[_0x1428c5(0xab6,_0x50e750._0x2ce5c2,0xef5,_0x50e750._0x5c7609)]);const _0x11444c='#\x20MEMORY.m'+_0x1428c5(_0x50e750._0x2f8fc7,_0x50e750._0x1abf60,_0x50e750._0x3319bf,_0x50e750._0x55e930)+_0x1428c5(0x5e8,_0x50e750._0x1364df,_0x50e750._0xac3124,_0x50e750._0x139471)+_0x2bd370(_0x50e750._0x111b83,_0x50e750._0x253ff8,0x6cd,'suJD')+_0x1428c5(_0x50e750._0x250873,'v2$P',0x7f1,0x815)+_0x1428c5(0xc7a,'Lh@)',0xd44,_0x50e750._0x2c402e)+_0x2bd370(_0x50e750._0x16c31e,_0x50e750._0x2e5d1d,0xaea,_0x50e750._0x2e151e)+_0x1428c5(0x771,'V)bU',_0x50e750._0x78cdd2,_0x50e750._0x5066d5)+_0x1428c5(_0x50e750._0x11af7d,_0x50e750._0x11af65,0x861,_0x50e750._0x4b603b)+_0x2bd370(0x4ef,0x5bf,_0x50e750._0x1fb76c,'lofD')+_0x2bd370(_0x50e750._0x186311,0xcb7,0xa65,'7k]n')+_0x1428c5(0xa0a,_0x50e750._0x830044,_0x50e750._0x361954,0x817)+_0x1428c5(0xc28,'!k$h',0xd18,_0x50e750._0x376c08)+_0x1428c5(0x8c7,_0x50e750._0x1b4018,0x3d0,_0x50e750._0x4d9f66)+'#\x20用户偏好\x0a\x0a_从'+_0x2bd370(_0x50e750._0x28d953,0x57a,0x616,'Q]KY')+_0x1428c5(_0x50e750._0x48ab5a,_0x50e750._0x20510d,_0x50e750._0x490bc5,0x44a)+_0x1428c5(0x6c8,_0x50e750._0xc79ab3,_0x50e750._0x3d6f03,_0x50e750._0x23e581)+_0x2bd370(_0x50e750._0xaad77f,0x511,0x46f,_0x50e750._0xcffcf)+_0x2bd370(_0x50e750._0x509d0a,0x620,_0x50e750._0x1b814b,']))d')+_0x1428c5(0x21c,'lofD',_0x50e750._0x2fbcb4,_0x50e750._0x3cb1f2)+_0x1428c5(_0x50e750._0x90fe08,_0x50e750._0x59c32a,0xce2,_0x50e750._0x370251)+_0x1428c5(_0x50e750._0x9ab4c7,_0x50e750._0x335a9c,_0x50e750._0x281b25,_0x50e750._0x238807)+_0x2bd370(_0x50e750._0x3c162e,0x4bc,_0x50e750._0x10985e,']))d')+_0x1428c5(_0x50e750._0x3a62db,'2m0$',_0x50e750._0x35f5b5,0x757)+_0x2bd370(0x549,_0x50e750._0x160bfd,_0x50e750._0x554956,'VXA^')+_0x2bd370(0x307,0x7d3,_0x50e750._0x2fc7ba,'LaEV');function _0x1428c5(_0x2bedb6,_0x2e6f6f,_0x11288b,_0x2f54cf){return _0x5bf319(_0x2bedb6-0x120,_0x2f54cf- -0x1c6,_0x2e6f6f,_0x2f54cf-0xf3);}fs[_0x1428c5(0xaba,_0x50e750._0x3f0e8e,0x970,0x71f)+_0x1428c5(_0x50e750._0x18e9ca,'Lh@)',_0x50e750._0x1c49ba,0x6f4)](path[_0x1428c5(_0x50e750._0x39f0af,'k7fb',_0x50e750._0x186fc4,0x8fb)](_0x409aee,_0x45c5ae[_0x2bd370(0x958,_0x50e750._0x4d9814,_0x50e750._0xc8ff3f,'Foj6')]),_0x11444c,_0x45c5ae[_0x2bd370(0x58e,0xd9a,_0x50e750._0x1d8fd3,_0x50e750._0xc11a06)]),(-0x1*0xa67+0xfc7*0x2+-0x1527,auth_profiles_service_1[_0x2bd370(_0x50e750._0x12daa1,0xaab,_0x50e750._0x291ee2,_0x50e750._0x1c5c39)+_0x1428c5(0x732,'6]hf',_0x50e750._0x3ead67,0x58e)+'es'])(_0x183d04);}function syncTeamMemberInfo(_0x2f42f2,_0x45ad20){const _0xe03796={_0x5b9daf:0x4f1,_0x4396a2:0x499,_0x31b426:0x258,_0x42b69f:'*LpW',_0x4e4e04:0x20f,_0x2b8b49:0x47a,_0x4fa6db:0x428,_0x48260e:0x482,_0x424f24:0x688,_0x1cf5c6:'&)0b',_0x255339:0x401,_0x37ea5b:0x624,_0x3a99db:0x1ae,_0x36aa6c:0x9,_0x3a6ab8:0xdbc,_0x31533f:0xcc1,_0xced698:0xa65,_0x598fac:'VXA^',_0x4755a2:0x8a7,_0x426811:0xb00,_0x20f6fa:'KDG1',_0x1516ae:0xbc3,_0x5b03f6:0x911,_0x3fa87d:0x582,_0xc0d1d9:'hn9d',_0x5f0ce5:0xb11,_0x47d794:0x863,_0x41aedf:'z8mf',_0x407573:0xb60,_0x3933d5:0x199,_0x477f0d:0x69b,_0x4fef2c:0x8d7,_0x3056a9:0x21c,_0x1f504f:0x637,_0x57e70a:0x306,_0x1306e7:'2PrQ',_0x5aa60b:0x443,_0x406242:0x598,_0x397986:'PB2^',_0x34393a:0x7cf,_0x5f47c9:'GdD8',_0x5d034b:'dx1J',_0x114665:0xee2,_0x30bd30:0xca7,_0x1af407:']GM1',_0x1a6244:0x15b,_0xcfe6b9:0x4d7,_0x75ce6f:0x45b,_0x30c2c2:0x66e,_0x362dba:'N%cE',_0x19dc80:0x63b,_0x43d124:'Q]KY',_0x28c6bc:0x624,_0x10e8a6:0x552,_0x3c2ad2:'Q]KY',_0x22bdc3:'dx1J',_0x59c6c8:0x595,_0x2bf9b3:0x67,_0x377a1f:'93KN',_0x250824:0x54c,_0x556ab8:0xb53,_0x284bd9:0xec8,_0x51ab84:'Dsi5',_0x4a4f9d:'Dsi5',_0x50a20b:0x3bf,_0x1de51c:'dx1J',_0x8b3c4f:0x726,_0x36da56:0xbdb,_0x3ee113:0xa42,_0x312d47:0x9bb,_0x6abe2b:'ECfd',_0x5d22fc:0x8e,_0x504d8b:0x27f,_0x11e77b:'!7O4',_0x933359:0x542,_0x55bd92:0xd3a,_0x53ab4:0x900,_0x19bf57:'c36g',_0xf53794:0xd26,_0x54eb9a:0xb2e,_0x2f7593:'l^lf',_0xb402a8:'Foj6',_0xfc021:0x451,_0x3d2276:0x715,_0x455d45:'lofD',_0x2ca572:'3Y(#',_0x23000d:0xb1,_0xc544d7:'*LpW',_0x1a440e:0x135,_0x186de4:0x960,_0x19ea54:0xd10,_0x2a27f0:'KAAL',_0x377e7a:0xcc7,_0x341b9a:0xbaf,_0x3b321a:0x166,_0x2f7ee7:0x1f5,_0x48fd07:0x1f,_0x5c567a:0x7e4,_0xb821b3:0x935,_0x40d40c:0x79a,_0x79ee1c:0x3c7,_0x4f04ba:0x604,_0x38ffa5:0x611,_0x362537:'Mpqc',_0x3353ee:0x53e,_0x5e3b6c:0x156,_0x5dc5e2:0x15a,_0x268e07:0x71a,_0x5b3379:'*LpW',_0x59bc14:0x6f6,_0x4db664:0xad0,_0x34f95e:0xdb1,_0x7d042a:0x693,_0x4744e9:0x81f,_0x54ac15:0x4a0,_0x4bd8d0:0x81c,_0x4006be:0x932,_0x22b0db:'l^lf',_0xba0596:0x414,_0x213080:0x787,_0x172b31:'ebUi',_0x397d1b:0x65c,_0xf0fe36:0x34e,_0x3d9165:0x75e,_0x49f0fc:0x4e0,_0x4c5277:0x402,_0xd9fd14:0x92,_0x488e96:'Lh@)',_0x3e8dfd:0x227,_0x3d0b14:0x16d,_0x5b4a38:'suJD',_0x1c37b6:0x660,_0xb4ccbe:0x1e4,_0x1e8824:0xc6},_0x170aa9={_0x565037:0x64d,_0x46b702:0x141},_0x1c990f={_0x4360f6:0x2a0};function _0x39f7b3(_0x20bf85,_0x3d398e,_0x3e5bf3,_0x202492){return _0x259b54(_0x202492,_0x3d398e-0x1db,_0x3e5bf3-0x1e3,_0x3d398e-_0x1c990f._0x4360f6);}const _0x783723={'EHWjf':function(_0x5cf52d,_0x2086a9){return _0x5cf52d===_0x2086a9;},'xSyqC':_0x39f7b3(_0xe03796._0x5b9daf,_0xe03796._0x4396a2,_0xe03796._0x31b426,_0xe03796._0x42b69f),'CCYsw':_0x3d7750(_0xe03796._0x4e4e04,0x98,'&)0b',_0xe03796._0x2b8b49),'UFhCU':_0x3d7750(_0xe03796._0x4fa6db,0x5df,'k7fb',0x615),'mcfuA':function(_0x3902b9,_0x342075){return _0x3902b9(_0x342075);},'MxeQW':_0x39f7b3(_0xe03796._0x48260e,_0xe03796._0x424f24,0x9e7,_0xe03796._0x1cf5c6),'Ijdlh':_0x39f7b3(0x40e,_0xe03796._0x255339,_0xe03796._0x37ea5b,'KDG1'),'kWCMN':function(_0x338f14,_0x17c82c){return _0x338f14(_0x17c82c);},'YpdSa':_0x3d7750(-_0xe03796._0x3a99db,0x144,'FtqP',0x3ad),'QeKQJ':_0x3d7750(-0xb8,-_0xe03796._0x36aa6c,'VXA^',0x40e),'jpTaT':_0x39f7b3(_0xe03796._0x3a6ab8,_0xe03796._0x31533f,_0xe03796._0xced698,_0xe03796._0x598fac),'SqITq':function(_0x11cf29,_0x269be7){return _0x11cf29!==_0x269be7;},'dKZLM':function(_0x54059d,_0x679dbf){return _0x54059d+_0x679dbf;},'ZmekL':function(_0x16db63,_0x11a88d){return _0x16db63+_0x11a88d;},'deeTe':function(_0x5b51ff,_0x4d4fc1){return _0x5b51ff+_0x4d4fc1;},'JgHzO':_0x39f7b3(_0xe03796._0x4755a2,_0xe03796._0x426811,0xb9d,_0xe03796._0x20f6fa),'OtJQL':function(_0x2e7c83,_0x2fbb32){return _0x2e7c83 instanceof _0x2fbb32;}};function _0x3d7750(_0x23c0a9,_0xca35e3,_0x54e1ed,_0x1f5e01){return _0x5bf319(_0x23c0a9-0xff,_0xca35e3- -_0x170aa9._0x565037,_0x54e1ed,_0x1f5e01-_0x170aa9._0x46b702);}try{const _0x2eeabe=agent_repo_1[_0x39f7b3(0x1000,_0xe03796._0x1516ae,_0xe03796._0x5b03f6,'GdD8')+_0x3d7750(-_0xe03796._0x3fa87d,-0x13c,_0xe03796._0xc0d1d9,0x329)][_0x39f7b3(0x8a1,_0xe03796._0x5f0ce5,_0xe03796._0x47d794,_0xe03796._0x41aedf)+_0x39f7b3(0x8b5,0x8c0,_0xe03796._0x407573,'&)0b')](_0x2f42f2);let _0x4b912f=0x1af4+-0x185e+-0x296*0x1;for(const _0x1ed10e of _0x2eeabe){if(_0x45ad20&&_0x783723['EHWjf'](_0x1ed10e['id'],_0x45ad20))continue;const _0xc9ad31=(0xaff+-0x6*-0x131+-0x1225,utils_1[_0x3d7750(_0xe03796._0x3933d5,0x246,'Q]KY',0x566)+_0x39f7b3(0xab3,_0xe03796._0x477f0d,_0xe03796._0x4fef2c,'2m0$')])(_0x1ed10e['id']),_0x352e13=path['join'](_0xc9ad31,_0x783723['xSyqC']);if(!fs[_0x39f7b3(_0xe03796._0x3056a9,_0xe03796._0x1f504f,0x9bb,'v2$P')](_0x352e13))continue;const _0x3531d4=fs[_0x3d7750(_0xe03796._0x57e70a,0x1b6,_0xe03796._0x1306e7,-0x19c)+'nc'](_0x352e13,_0x783723[_0x3d7750(_0xe03796._0x5aa60b,_0xe03796._0x406242,_0xe03796._0x397986,_0xe03796._0x34393a)]);let _0x11e2a0='';if(_0x783723[_0x39f7b3(0xd03,0xa6c,0x7c4,_0xe03796._0x5f47c9)](_0x1ed10e[_0x39f7b3(0xa63,0x7fb,0x72c,_0xe03796._0x5d034b)],_0x783723[_0x39f7b3(_0xe03796._0x114665,_0xe03796._0x30bd30,0x1084,_0xe03796._0x1af407)])){const _0x30d08e=_0x783723[_0x3d7750(_0xe03796._0x1a6244,_0xe03796._0xcfe6b9,_0xe03796._0x397986,0x72a)](generateManagerTeamMembersDetail,_0x2f42f2);_0x11e2a0=_0x783723[_0x3d7750(_0xe03796._0x75ce6f,_0xe03796._0x30c2c2,_0xe03796._0x362dba,_0xe03796._0x19dc80)](generateTeamSectionForManager,_0x30d08e);}else{if(_0x1ed10e[_0x3d7750(0xa8,0x2f8,_0xe03796._0x43d124,_0xe03796._0x28c6bc)]===_0x783723[_0x3d7750(_0xe03796._0x10e8a6,0x623,_0xe03796._0x3c2ad2,0x489)]){const _0x5106a6=_0x783723[_0x3d7750(0x49c,0x127,_0xe03796._0x22bdc3,_0xe03796._0x59c6c8)](generateReviewerTeamMembersDetail,_0x2f42f2);_0x11e2a0=_0x783723[_0x39f7b3(0x85a,0x4d7,_0xe03796._0x2bf9b3,_0xe03796._0x377a1f)](generateTeamSectionForReviewer,_0x5106a6);}else{if(_0x783723[_0x3d7750(_0xe03796._0x250824,0x485,_0xe03796._0x598fac,0x642)](_0x1ed10e['role'],_0x783723[_0x39f7b3(0x841,_0xe03796._0x556ab8,_0xe03796._0x284bd9,_0xe03796._0x51ab84)])){const _0x306c26=_0x783723['mcfuA'](generateExecutorTeamMembersDetail,_0x2f42f2);_0x11e2a0=_0x783723[_0x3d7750(0x2fa,0x45e,_0xe03796._0x4a4f9d,0x20c)](generateTeamSectionForExecutor,_0x306c26);}}}if(_0x11e2a0){if(_0x783723[_0x3d7750(0x1fb,_0xe03796._0x50a20b,_0xe03796._0x1de51c,_0xe03796._0x8b3c4f)](_0x783723[_0x39f7b3(_0xe03796._0x36da56,0xafc,_0xe03796._0x3ee113,'3Y(#')],_0x39f7b3(0xb82,0xbf9,_0xe03796._0x312d47,_0xe03796._0x6abe2b))){const _0x3a20a1=_0x783723[_0x3d7750(_0xe03796._0x5d22fc,_0xe03796._0x504d8b,_0xe03796._0x11e77b,_0xe03796._0x933359)],_0xe49c01=_0x783723[_0x39f7b3(_0xe03796._0x55bd92,0xbe3,_0xe03796._0x53ab4,_0xe03796._0x19bf57)],_0x4274ca=_0x3531d4['indexOf'](_0x3a20a1),_0x3c77b7=_0x3531d4[_0x39f7b3(0x896,0xbc1,_0xe03796._0xf53794,_0xe03796._0x6abe2b)](_0xe49c01);if(_0x783723[_0x39f7b3(0xa6a,0xbf0,_0xe03796._0x54eb9a,_0xe03796._0x2f7593)](_0x4274ca,-(-0x13bc+-0x1*0x3a1+0x175e))&&_0x3c77b7!==-(0x13e*-0xe+0x10a7+0x13*0xa)){const _0x3506e5=_0x783723[_0x39f7b3(0xb4e,0xca8,0xbb1,_0xe03796._0xb402a8)](_0x783723[_0x3d7750(_0xe03796._0xfc021,_0xe03796._0x3d2276,_0xe03796._0x455d45,0xb7a)](_0x783723[_0x3d7750(-0x172,0xe9,_0xe03796._0x2ca572,0x23f)](_0x3531d4[_0x3d7750(-0x433,-_0xe03796._0x23000d,_0xe03796._0xc544d7,_0xe03796._0x1a440e)](0x95*-0x13+0x2*0x1268+-0x19c1,_0x4274ca),_0x11e2a0),'\x0a'),_0x3531d4[_0x39f7b3(_0xe03796._0x186de4,0x547,0x845,'#%z0')](_0x3c77b7));fs[_0x39f7b3(_0xe03796._0x19ea54,0x95d,0x722,_0xe03796._0x2a27f0)+_0x39f7b3(0xbb8,_0xe03796._0x377e7a,_0xe03796._0x341b9a,'V)bU')](_0x352e13,_0x3506e5,_0x783723[_0x3d7750(-_0xe03796._0x3b321a,_0xe03796._0x2f7ee7,'!k$h',-_0xe03796._0x48fd07)]),_0x4b912f++;}}else _0x5b6f7d[_0x39f7b3(_0xe03796._0x5c567a,_0xe03796._0xb821b3,_0xe03796._0x40d40c,']GM1')]('|\x20'+_0x41ac18['id']+_0x3d7750(0x899,0x725,'!k$h',_0xe03796._0x79ee1c)+_0x175241[_0x39f7b3(_0xe03796._0x4f04ba,_0xe03796._0x38ffa5,0x8e3,_0xe03796._0x362537)]+'\x20|\x20'+_0x57bf51[_0x3d7750(_0xe03796._0x3353ee,_0xe03796._0x5e3b6c,'HQvh',-0xbb)]+'\x20|');}}const _0x4c503e={};return _0x4c503e[_0x39f7b3(_0xe03796._0x5dc5e2,0x57b,_0xe03796._0x268e07,_0xe03796._0x5b3379)]=!![],_0x4c503e[_0x39f7b3(_0xe03796._0x59bc14,_0xe03796._0x4db664,0xa74,'v2$P')+'nt']=_0x4b912f,_0x4c503e[_0x39f7b3(_0xe03796._0x34f95e,0x9e4,_0xe03796._0x7d042a,']GM1')]=_0x3d7750(_0xe03796._0x4744e9,_0xe03796._0x54ac15,'VXA^',0x8e)+_0x4b912f+(_0x3d7750(0x7e3,0x697,'l^lf',0x450)+_0x39f7b3(0x870,_0xe03796._0x4bd8d0,_0xe03796._0x4006be,_0xe03796._0x22b0db)),_0x4c503e;}catch(_0x5e1f35){if(_0x783723['EHWjf'](_0x783723[_0x3d7750(_0xe03796._0xba0596,_0xe03796._0x213080,_0xe03796._0x172b31,0x450)],_0x783723[_0x3d7750(0x568,0x66a,'z8mf',_0xe03796._0x397d1b)]))return{'success':![],'updatedCount':0x0,'message':'同步团队成员信息失败'+':\x20'+(_0x783723[_0x3d7750(_0xe03796._0xf0fe36,_0xe03796._0x3d9165,'PB2^',0x9c1)](_0x5e1f35,Error)?_0x5e1f35[_0x3d7750(0x56e,0x65d,_0xe03796._0x362dba,_0xe03796._0x49f0fc)]:_0x783723[_0x3d7750(_0xe03796._0x4c5277,_0xe03796._0xd9fd14,_0xe03796._0x488e96,-_0xe03796._0x3e8dfd)](String,_0x5e1f35))};else{const _0x2d6a60={};_0x2d6a60[_0x39f7b3(0x1b2,0x4ba,_0xe03796._0x3d0b14,_0xe03796._0x5b4a38)]=!![],_0x2d6a60['allow']=[],_0x26ebb0[_0x3d7750(0x180,0x510,'LaEV',_0xe03796._0x1c37b6)][_0x3d7750(-_0xe03796._0xb4ccbe,0x1,_0xe03796._0x598fac,_0xe03796._0x1e8824)+'nt']=_0x2d6a60;}}}function syncAssistantTeamMembers(){const _0x321b8e={_0x3e4f18:'z8mf',_0xbaebf7:0x941,_0xefc46:0x231,_0x3bafdf:0x93f,_0x4cc3b2:0xc95,_0x8586e2:0x9e4,_0x6a3b7:0x4a0,_0x4cf0fc:0x2b7,_0x4ccc22:0x51f,_0x3d02dc:'2PrQ',_0x29d92e:0x510,_0x209f06:0x299,_0x3ffebe:'PB2^',_0x79c8da:0x4c4,_0x16f328:0x91b,_0x2bbe48:0xef,_0x4c4a57:']GM1',_0x4e4829:'v2$P',_0x3bfaf4:0x768,_0x4fb5a0:0xd4f,_0x1ea5c4:'ebUi',_0x57bc05:'lofD',_0x3fb642:0xa18,_0x8a3e42:0x92d,_0x3d9f6d:0x6a7,_0x197425:']))d',_0x3c1102:'FtqP',_0x4aeb14:0x85d,_0x33a564:0x9ec,_0x171305:0x6f5,_0x5c38fc:0x72c,_0x595433:0x73c,_0x6531ac:')9pR',_0x5b8caa:0x976,_0x3f8e7d:0x7d5,_0x409e77:0x7bd,_0x208a13:0x99b,_0xf3e95d:0x9fc,_0x319a31:0x915,_0x414645:0xd89,_0x2d46de:0xc0e,_0xfcea48:0x8c1,_0x5bc55f:0x75b,_0x4ed56e:'*LpW',_0x117c43:0x193,_0x35399f:0x79f,_0x22dc4b:0x5d8,_0x55fc5e:0x5bd,_0x44a9bf:'k7fb',_0x903a9e:0x944,_0x306889:'loi5',_0x5d9724:0x817,_0x3ec0da:'l^lf',_0x1fb797:0xbaf,_0x2230f2:0xa82,_0x28b670:0xbce,_0x357afe:0xbce,_0x4affbf:0x724,_0x30bcbd:'dx1J',_0x1b4030:'Q]KY',_0x3d8a2a:0x536,_0x281b1a:0x172,_0x3ccac2:0x3f0,_0x2bbd46:0x757,_0x4934d7:0x385,_0x45dded:0x8bd,_0x5913e8:0xa2e,_0x3f0207:0xa76,_0x30fd7e:0x31c,_0x516bd7:0x279,_0x127db8:0x5bd,_0x355244:0xde4,_0x5cefa8:'lofD',_0x374a86:0x9a3,_0x361bc2:0x9a9,_0x15f3b9:'KDG1',_0x19288e:0x9d1,_0x4f15fc:0x731,_0x4326e9:'Foj6',_0x465cda:0x54e,_0x3356d3:0x94d,_0x5c25a2:0x54f,_0x5d9056:'KDG1',_0x12c922:0x282,_0x4736b6:'93KN',_0x2a9d41:0x8c8,_0x523435:0x442,_0x3f96bb:0x2c6,_0x23da75:'VXA^',_0x507cc9:0x797,_0x133573:0xaa2,_0x3085ca:0x86a,_0x44e5d9:0xd98,_0x949c0a:0x99a,_0x5bef31:'hn9d',_0x24dc88:0x9bc,_0x5e46f9:'Lh@)',_0x243c51:0x5b3,_0x214102:0x6bf,_0x160f54:0x542,_0x322b87:'suJD',_0x339943:0x8e0,_0x1c1f04:0x454,_0x49525a:')$Hz',_0x1947ec:0x2a5,_0x3456d7:0x492,_0x128d49:'7k]n',_0xf89d51:0x410,_0x2cffc1:0x46,_0x60dfda:0x3ae,_0x5a2d1a:0x9e8,_0x178357:'ebUi',_0x64d04f:0x67b,_0x254675:0x347,_0x8d920f:0xda4,_0x424689:0x997,_0x5ed46a:0xbfb,_0x1fc051:0x7ab,_0x4609e0:0x3a9,_0x4a2cc5:0x43e,_0x5d27a2:0x6aa,_0x490532:'V23R',_0x337893:0x722,_0x27eb1e:0x8b4,_0x14a63e:0x41e,_0x58c7d1:0x1f2,_0x2eb7e8:0x2c1,_0x426946:0x9c4,_0x40a5b5:0x438,_0x2736a5:0x652,_0x53e075:0x2db,_0x1408b3:0x7d9,_0x2c2970:0xcd3,_0x254491:0x8a,_0x1d5125:0x634},_0x2f8eda={_0x65312f:0x189},_0x11675f={_0x3899ca:0x95};function _0x272ccb(_0x463b57,_0x2ed3b6,_0x3acc1a,_0x65e8b9){return _0x259b54(_0x3acc1a,_0x2ed3b6-0x7a,_0x3acc1a-0x192,_0x65e8b9-_0x11675f._0x3899ca);}const _0x3edb6f={'GSQBp':'AGENTS.md','FcIJK':_0x272ccb(0xd63,0x56e,_0x321b8e._0x3e4f18,_0x321b8e._0xbaebf7)+_0x272ccb(_0x321b8e._0xefc46,_0x321b8e._0x3bafdf,'GdD8',0x66a)+_0x272ccb(0x87d,_0x321b8e._0x4cc3b2,'N%cE',_0x321b8e._0x8586e2),'oZqZH':_0x272ccb(0x19d,0x48f,'3Y(#',_0x321b8e._0x6a3b7),'ClpdJ':'xxRNd','pGEgB':_0x2f713e('2m0$',_0x321b8e._0x4cf0fc,_0x321b8e._0x4ccc22,0x315),'pOmFL':_0x272ccb(0x61d,0x565,_0x321b8e._0x3d02dc,_0x321b8e._0x29d92e)+_0x272ccb(0x432,0x513,'$6rX',_0x321b8e._0x209f06),'qDcip':_0x2f713e(_0x321b8e._0x3ffebe,0x764,0x320,0x77e),'WlbNO':function(_0x5414e3){return _0x5414e3();},'vXARa':_0x272ccb(_0x321b8e._0x79c8da,0x72f,'Foj6',_0x321b8e._0x16f328),'FvllA':_0x272ccb(0x39d,_0x321b8e._0x2bbe48,_0x321b8e._0x4c4a57,0x43f),'EqZoz':function(_0x590cff,_0x5b5f3a){return _0x590cff!==_0x5b5f3a;},'sGgJX':_0x2f713e(_0x321b8e._0x4e4829,0xa00,0x3aa,_0x321b8e._0x3bfaf4),'zaUcE':_0x272ccb(_0x321b8e._0x4fb5a0,0x82d,_0x321b8e._0x1ea5c4,0xa5c),'KDJiv':function(_0x42b0e3,_0x39daf4){return _0x42b0e3+_0x39daf4;},'zRFBe':function(_0x17a774,_0x31b3fc){return _0x17a774+_0x31b3fc;},'pWXxw':_0x2f713e(_0x321b8e._0x57bc05,_0x321b8e._0x3fb642,0xa54,_0x321b8e._0x8a3e42)+'同步','zUebJ':_0x272ccb(0x620,_0x321b8e._0x3d9f6d,_0x321b8e._0x197425,0x3dc),'kTDme':_0x2f713e(_0x321b8e._0x3c1102,0xcbe,_0x321b8e._0x4aeb14,_0x321b8e._0x33a564),'yZKGJ':function(_0x39e37a,_0x3f9485){return _0x39e37a(_0x3f9485);}};function _0x2f713e(_0x19c870,_0x3fb0fa,_0x119584,_0x4bcf1b){return _0x5bf319(_0x19c870-0x19c,_0x4bcf1b- -0x227,_0x19c870,_0x4bcf1b-_0x2f8eda._0x65312f);}try{const _0x295a3c=agent_repo_1[_0x2f713e(_0x321b8e._0x3c1102,_0x321b8e._0x171305,_0x321b8e._0x5c38fc,_0x321b8e._0x595433)+_0x2f713e(_0x321b8e._0x6531ac,_0x321b8e._0x5b8caa,0x755,_0x321b8e._0x3f8e7d)][_0x272ccb(0xa16,_0x321b8e._0x409e77,']))d',_0x321b8e._0x208a13)+'nt']();if(!_0x295a3c){if(_0x3edb6f[_0x2f713e('ECfd',0x6db,0xe67,_0x321b8e._0xf3e95d)]!==_0x3edb6f[_0x272ccb(_0x321b8e._0x319a31,0xa68,'v2$P',0x919)]){const _0x11b35a={};return _0x11b35a[_0x272ccb(_0x321b8e._0x414645,_0x321b8e._0x2d46de,'V23R',0x992)]=![],_0x11b35a[_0x2f713e('Lh@)',0xc36,0xbd2,_0x321b8e._0xfcea48)]=_0x3edb6f[_0x2f713e(']))d',_0x321b8e._0x5bc55f,0x721,0x709)],_0x11b35a;}else _0x45c9c9[_0x3edb6f[_0x2f713e(_0x321b8e._0x4ed56e,_0x321b8e._0x117c43,_0x321b8e._0x35399f,_0x321b8e._0x22dc4b)]]=_0x5ea908;}const _0x5062e1=(-0x303*-0x9+-0x2530+0xa15,utils_1[_0x272ccb(_0x321b8e._0x55fc5e,0xb40,_0x321b8e._0x44a9bf,_0x321b8e._0x903a9e)+_0x272ccb(0x5bb,0x655,'&)0b',0x40b)])(_0x295a3c['id']),_0x509e68=path[_0x2f713e(_0x321b8e._0x306889,_0x321b8e._0x5d9724,0x4b9,0x46f)](_0x5062e1,_0x3edb6f[_0x2f713e(_0x321b8e._0x3ec0da,0x9a9,_0x321b8e._0x1fb797,0xb77)]);if(!fs[_0x2f713e(')9w@',0xabf,_0x321b8e._0x2230f2,_0x321b8e._0x28b670)](_0x509e68)){const _0x4850a1={};return _0x4850a1[_0x272ccb(_0x321b8e._0x357afe,_0x321b8e._0x4affbf,_0x321b8e._0x30bcbd,0x7ac)]=![],_0x4850a1['message']=_0x3edb6f[_0x2f713e(_0x321b8e._0x1b4030,_0x321b8e._0x3d8a2a,_0x321b8e._0x281b1a,0x58b)],_0x4850a1;}const _0x215751=fs[_0x272ccb(_0x321b8e._0x3ccac2,_0x321b8e._0x2bbd46,'loi5',_0x321b8e._0x4934d7)+'nc'](_0x509e68,_0x3edb6f[_0x2f713e('$6rX',_0x321b8e._0x45dded,_0x321b8e._0x5913e8,_0x321b8e._0x3f0207)]),_0x24b65e=_0x3edb6f[_0x272ccb(_0x321b8e._0x30fd7e,0x371,'hn9d',_0x321b8e._0x516bd7)](generateAssistantTeamMembersDetailForTemplate),_0x1397e4={};_0x1397e4[_0x272ccb(_0x321b8e._0x127db8,_0x321b8e._0x355244,_0x321b8e._0x5cefa8,_0x321b8e._0x374a86)]=_0x24b65e['managers'],_0x1397e4[_0x272ccb(0x5c1,_0x321b8e._0x361bc2,_0x321b8e._0x15f3b9,0x7c7)]=_0x24b65e[_0x2f713e(_0x321b8e._0x5cefa8,_0x321b8e._0x19288e,_0x321b8e._0x4f15fc,0x92c)],_0x1397e4[_0x2f713e(_0x321b8e._0x4326e9,_0x321b8e._0x281b1a,0x56c,_0x321b8e._0x465cda)]=_0x24b65e['executors'];const _0x40ee05=generateTeamSectionForAssistant(_0x1397e4),_0x41b71e=_0x3edb6f[_0x2f713e('!k$h',0x7a9,0x7e4,_0x321b8e._0x3356d3)],_0x595224=_0x3edb6f[_0x2f713e('ECfd',_0x321b8e._0x4affbf,_0x321b8e._0x5c25a2,0x8fc)],_0x4b4467=_0x215751[_0x272ccb(0x6e1,0x397,_0x321b8e._0x5d9056,_0x321b8e._0x12c922)](_0x41b71e),_0x281734=_0x215751[_0x2f713e(_0x321b8e._0x4736b6,_0x321b8e._0x2a9d41,0x895,0x4c4)](_0x595224);if(_0x3edb6f[_0x272ccb(_0x321b8e._0x523435,_0x321b8e._0x3f96bb,_0x321b8e._0x23da75,0x218)](_0x4b4467,-(0x17ff+0x1934+-0x2*0x1899))&&_0x3edb6f[_0x272ccb(_0x321b8e._0x507cc9,_0x321b8e._0x133573,'Bu(&',_0x321b8e._0x3085ca)](_0x281734,-(0xb*-0x20b+-0x11a4+0xd*0x316))){if(_0x3edb6f['EqZoz'](_0x3edb6f[_0x272ccb(_0x321b8e._0x44e5d9,0x985,'HQvh',_0x321b8e._0x949c0a)],_0x3edb6f[_0x272ccb(0xbeb,0x92b,_0x321b8e._0x5bef31,_0x321b8e._0x24dc88)])){const _0x3cd7ca=_0x3edb6f[_0x2f713e(_0x321b8e._0x5e46f9,_0x321b8e._0x243c51,0x33b,0x52f)](_0x3edb6f[_0x2f713e(_0x321b8e._0x15f3b9,0x972,_0x321b8e._0x214102,_0x321b8e._0x160f54)](_0x3edb6f[_0x2f713e(_0x321b8e._0x322b87,0x9ae,0xa11,_0x321b8e._0x339943)](_0x215751['substring'](-0x200*-0xb+-0x17ef*-0x1+-0x42d*0xb,_0x4b4467),_0x40ee05),'\x0a'),_0x215751[_0x272ccb(0xc0,0x7f6,'!7O4',_0x321b8e._0x1c1f04)](_0x281734));fs[_0x272ccb(0x35,-0x5b,_0x321b8e._0x49525a,_0x321b8e._0x1947ec)+_0x272ccb(_0x321b8e._0x3456d7,0xd0b,_0x321b8e._0x128d49,0x8c4)](_0x509e68,_0x3cd7ca,_0x2f713e('KAAL',_0x321b8e._0xf89d51,_0x321b8e._0x2cffc1,_0x321b8e._0x60dfda));const _0x377c87={};return _0x377c87[_0x272ccb(0x885,_0x321b8e._0x5a2d1a,_0x321b8e._0x1b4030,0x57e)]=!![],_0x377c87[_0x2f713e(_0x321b8e._0x178357,_0x321b8e._0x64d04f,_0x321b8e._0x254675,0x434)]=_0x3edb6f[_0x272ccb(0x52d,_0x321b8e._0x8d920f,_0x321b8e._0x30bcbd,_0x321b8e._0x424689)],_0x377c87;}else{const _0x11cf03=_0x118842[_0x2f713e(_0x321b8e._0x57bc05,_0x321b8e._0x5ed46a,0xe05,0x9ff)+'n']['split']('\x0a')[0xdb9+0xd9*-0x14+0x33b][_0x2f713e('Mpqc',_0x321b8e._0x1fc051,_0x321b8e._0x4609e0,0x63d)]();_0x11cf03&&!_0x11cf03[_0x272ccb(0x2d1,_0x321b8e._0x4a2cc5,_0x321b8e._0x5e46f9,_0x321b8e._0x5d27a2)]('适用')&&_0x315ddd[_0x2f713e(_0x321b8e._0x490532,_0x321b8e._0x337893,0x7fc,_0x321b8e._0x27eb1e)]('>\x20'+_0x11cf03);}}const _0x2e5737={};return _0x2e5737[_0x272ccb(0x4fd,_0x321b8e._0x14a63e,_0x321b8e._0x3ec0da,_0x321b8e._0x58c7d1)]=![],_0x2e5737[_0x2f713e('Ybev',_0x321b8e._0x2eb7e8,_0x321b8e._0x426946,0x61c)]=_0x3edb6f[_0x272ccb(_0x321b8e._0x40a5b5,0x37b,'z8mf',_0x321b8e._0x2736a5)],_0x2e5737;}catch(_0x276f15){if(_0x3edb6f['kTDme']!==_0x3edb6f[_0x272ccb(_0x321b8e._0x29d92e,0x9b9,'$6rX',0x754)]){const _0x46c705={};return _0x46c705[_0x272ccb(0x769,_0x321b8e._0x53e075,_0x321b8e._0x1b4030,0x57e)]=![],_0x46c705['message']=_0x3edb6f[_0x2f713e(')9w@',_0x321b8e._0x1408b3,_0x321b8e._0x2c2970,0x9cc)],_0x46c705;}else return{'success':![],'message':'同步总助理信息失败:'+'\x20'+(_0x276f15 instanceof Error?_0x276f15[_0x2f713e('!7O4',0x3fd,-_0x321b8e._0x254491,0x3a6)]:_0x3edb6f[_0x272ccb(0xb08,_0x321b8e._0x1d5125,'Mpqc',0xa35)](String,_0x276f15))};}}function generateTeamSectionForAssistant(_0x5066ce){const _0x227027={_0x2bbd99:0x44a,_0x1591bb:'k7fb',_0x3d1da1:0x69f,_0x2af75b:0x4cd,_0x2ed9c9:0x618,_0x8683b3:0x74f,_0x5d2048:0x9b1,_0x474acf:0xb53,_0x50cb01:0xa6e,_0x3a26be:']GM1',_0x380b6b:0x65d,_0x4e672e:']))d',_0x1106a5:0x793,_0x530ca9:0x7c7,_0x197bb3:0x5d4,_0x1e30df:0x566,_0x3c8ac0:0xd70,_0x3ff160:'dx1J',_0x58db8e:0xa10,_0x52ddb5:0xa03,_0x1bd4e3:'93KN',_0x5ea9de:0x6ce,_0xaad25c:'suJD',_0x53c4d4:0x5fb,_0x1b4c9b:0xd90,_0x2daba8:'1mQU',_0x2c2b07:0xd61,_0x5f486e:0xd59,_0x43e213:0x851,_0x184006:0x818,_0x3189d1:0x2f2,_0x5e5d71:0x9bc,_0x519fb2:0x714,_0xfc7889:0xc86,_0x57a986:')9pR',_0x16dcd8:0x55d,_0x56d386:0x963,_0x55cec5:0x85f,_0xfa357d:0xc34,_0x57da4d:'c36g',_0x121312:0x803,_0x1b17f7:0xd24,_0x45cba7:0xbbe,_0x48f671:'ECfd',_0x4914d0:'!7O4',_0x2c2905:0xc63,_0x1acfd8:0xa09,_0x4bcf35:0x623},_0x167e26={_0x296cfc:0xb0,_0x5f4e74:0x2d0},_0x4a46d3={_0x8f90fe:0xfb,_0x49ec1c:0x11};function _0x396302(_0x1ee4bf,_0x430c46,_0xb39cc6,_0x4a6418){return _0x259b54(_0x1ee4bf,_0x430c46-_0x4a46d3._0x8f90fe,_0xb39cc6-_0x4a46d3._0x49ec1c,_0x4a6418-0x30a);}function _0x4ce569(_0x5704a1,_0x25fb77,_0x1cff45,_0x15e582){return _0x259b54(_0x25fb77,_0x25fb77-_0x167e26._0x296cfc,_0x1cff45-0x96,_0x15e582-_0x167e26._0x5f4e74);}return _0x4ce569(_0x227027._0x2bbd99,_0x227027._0x1591bb,_0x227027._0x3d1da1,_0x227027._0x2af75b)+_0x396302('VXA^',_0x227027._0x2ed9c9,_0x227027._0x8683b3,0x888)+_0x396302('suJD',_0x227027._0x5d2048,0xeee,_0x227027._0x474acf)+_0x4ce569(_0x227027._0x50cb01,'Ybev',0xdeb,0xc01)+_0x4ce569(0xf0e,'ECfd',0xa75,0xa99)+_0x396302(_0x227027._0x3a26be,_0x227027._0x380b6b,0x6a5,0x813)+_0x396302(_0x227027._0x4e672e,_0x227027._0x1106a5,0xa38,_0x227027._0x530ca9)+'t`\x20命令。\x0a\x0a##'+_0x396302('N%cE',_0x227027._0x197bb3,0x2ed,_0x227027._0x1e30df)+'\x0a'+_0x5066ce[_0x4ce569(_0x227027._0x3c8ac0,_0x227027._0x3ff160,_0x227027._0x58db8e,_0x227027._0x52ddb5)]+(_0x4ce569(0x802,_0x227027._0x1bd4e3,0x598,_0x227027._0x5ea9de)+_0x4ce569(0x30b,_0x227027._0xaad25c,0x49c,_0x227027._0x53c4d4))+_0x5066ce[_0x4ce569(_0x227027._0x1b4c9b,_0x227027._0x2daba8,_0x227027._0x2c2b07,0x948)]+(_0x396302('Bu(&',_0x227027._0x5f486e,0x983,0xa4b)+_0x396302('k7fb',_0x227027._0x43e213,_0x227027._0x184006,0x9e5))+_0x5066ce[_0x396302('v2$P',_0x227027._0x3189d1,0x8bd,0x533)]+(_0x396302('FtqP',_0x227027._0x5e5d71,0x71c,_0x227027._0x519fb2)+_0x4ce569(0x862,'hn9d',_0x227027._0xfc7889,0x9ec)+_0x396302(_0x227027._0x57a986,0x70b,0x586,_0x227027._0x16dcd8)+_0x4ce569(_0x227027._0x56d386,_0x227027._0x57a986,_0x227027._0x55cec5,0xa46)+_0x4ce569(_0x227027._0xfa357d,_0x227027._0x57da4d,0x72c,_0x227027._0x121312)+_0x396302('Dsi5',_0x227027._0x1b17f7,_0x227027._0x45cba7,0xd48)+_0x396302(_0x227027._0x48f671,0x93f,0xd8c,0xc9d)+'过\x20Agent\x20ID'+_0x396302(_0x227027._0x4914d0,_0x227027._0x2c2905,0x613,0x90d)+'ssage`:JSO'+_0x396302('V23R',0x8b0,_0x227027._0x1acfd8,_0x227027._0x4bcf35));}function generateTeamSectionForManager(_0x1ccd46){const _0x31528a={_0x5e32eb:0x659,_0x1dadcd:'2PrQ',_0x5710aa:0x6dd,_0x745731:0x390,_0x270028:0x111,_0x25ee99:0x6a7,_0x152f9c:'loi5',_0x3553b0:0x88f,_0x1d886b:0x2fc,_0x3eec30:0x69c,_0x19d502:0x9c4,_0x2f3bff:0x3dd,_0x4a6491:0x126,_0x3fe079:0x4d5,_0x257732:'v2$P',_0x4fbf8e:0x10d,_0x31d03a:0x2a9,_0x4486ed:0x72a,_0x401d82:0xb0f,_0x533221:0x107,_0x242f39:0x4f,_0x1d8e71:0x113,_0x65fafa:']GM1',_0x2ce4b3:0x4a9,_0x4ab94e:0x29a,_0x29377a:0x29c,_0x85427b:0x391,_0xb9c48b:0x815,_0xc24bee:0x6e2,_0x777df3:0x89e,_0xf41cbe:0x767,_0x3d2bb4:0x2aa,_0x2fb3ae:0x2ca,_0x10d71b:0x160,_0xf28c44:0x91b,_0x5571e3:'da@G',_0x5ad286:0xa2a,_0x248b18:0xb62,_0x4c5ed4:0x8ce,_0x2f9fbe:'Dsi5',_0xee6431:0x3f,_0x99a5fb:']))d',_0x8a62b1:0x11d,_0xa83e98:0x42,_0x320f7a:0x614,_0xbfbaea:'V)bU',_0x390ed9:0xa07,_0x2629c1:0x88e,_0x488363:0x224,_0x50b2a1:'ECfd',_0x43451a:0x284,_0x442812:'VXA^',_0x5d5026:0x1ce,_0x287d9d:'2m0$',_0x3aa485:0x70a,_0x18e3e5:'N%cE',_0x57958d:0x913,_0x386625:0x52e,_0x2c0980:'KAAL',_0x34281c:0x83f,_0x52bdfb:0xc22,_0x28cac0:0xcfe,_0x1ba2aa:0x5d9,_0x272658:'v2$P',_0x3883a4:0x93a,_0x3472dd:0x6d,_0x4d447e:'Ybev',_0x5c57b2:0x46b,_0x68ff5f:'PB2^',_0x1585bd:0x66e},_0x564135={_0x49d4f5:0xc6,_0xbb69ef:0x30f},_0x4dd26a={_0x156edc:0xd5,_0x52458f:0x5b0,_0x3b766b:0x140};function _0xeae48d(_0x5d0bb5,_0x4dc72d,_0x3a02b2,_0x44b382){return _0x5bf319(_0x5d0bb5-_0x4dd26a._0x156edc,_0x3a02b2- -_0x4dd26a._0x52458f,_0x4dc72d,_0x44b382-_0x4dd26a._0x3b766b);}function _0x4254c6(_0x44bf26,_0xaa70ab,_0x294936,_0x5c59a5){return _0x5bf319(_0x44bf26-_0x564135._0x49d4f5,_0x294936- -_0x564135._0xbb69ef,_0xaa70ab,_0x5c59a5-0xe4);}return _0x4254c6(_0x31528a._0x5e32eb,_0x31528a._0x1dadcd,_0x31528a._0x5710aa,0x2e6)+_0xeae48d(-_0x31528a._0x745731,'N%cE',0x8a,-_0x31528a._0x270028)+_0x4254c6(_0x31528a._0x25ee99,_0x31528a._0x152f9c,_0x31528a._0x3553b0,0x52d)+_0xeae48d(_0x31528a._0x1d886b,'loi5',_0x31528a._0x3eec30,0x2d5)+_0xeae48d(-0x3a9,_0x31528a._0x152f9c,-0x46,-0x14d)+_0x4254c6(0x615,'Ybev',_0x31528a._0x19d502,0xd44)+_0xeae48d(0x20c,'VXA^',0xd,-0x36f)+_0x4254c6(0x4a3,'2PrQ',_0x31528a._0x2f3bff,_0x31528a._0x4a6491)+_0xeae48d(_0x31528a._0x3fe079,_0x31528a._0x257732,0x295,-0x28)+_0x4254c6(_0x31528a._0x4fbf8e,'KAAL',_0x31528a._0x31d03a,0x6d6)+_0x4254c6(0xade,'HQvh',_0x31528a._0x4486ed,_0x31528a._0x401d82)+_0x4254c6(_0x31528a._0x533221,_0x31528a._0x1dadcd,0x46a,0x236)+_0xeae48d(-_0x31528a._0x242f39,'#%z0',0x33c,-0xe0)+_0xeae48d(0x8bd,'dx1J',0x531,0x54f)+_0x1ccd46[_0xeae48d(0x329,'ebUi',_0x31528a._0x1d8e71,0x1f5)]+(_0x4254c6(0x472,_0x31528a._0x65fafa,0x691,_0x31528a._0x2ce4b3)+_0xeae48d(0x4b2,'l^lf',0x3e4,0x5dc)+_0xeae48d(_0x31528a._0x4ab94e,'*LpW',0x2a,0x30d)+'\x20|\x20状态\x20|\x0a|-'+_0xeae48d(-0x192,'Mpqc',_0x31528a._0x29377a,_0x31528a._0x85427b)+_0x4254c6(_0x31528a._0xb9c48b,'lofD',_0x31528a._0xc24bee,_0x31528a._0x777df3)+_0x4254c6(0x707,'&)0b',0x6da,_0x31528a._0xf41cbe))+_0x1ccd46[_0xeae48d(_0x31528a._0x3d2bb4,'V)bU',_0x31528a._0x2fb3ae,_0x31528a._0x10d71b)]+(_0xeae48d(0x6b8,')9pR',0x468,0x499)+_0x4254c6(0x664,'Foj6',0x772,0x707)+_0x4254c6(_0x31528a._0xf28c44,_0x31528a._0x5571e3,_0x31528a._0x5ad286,_0x31528a._0x248b18)+_0xeae48d(_0x31528a._0x4c5ed4,')9pR',0x79e,0x46b)+_0xeae48d(0xc0,_0x31528a._0x2f9fbe,_0x31528a._0xee6431,0x487)+_0x4254c6(0xbf3,_0x31528a._0x99a5fb,0x8fb,0xc0b)+_0xeae48d(_0x31528a._0x8a62b1,'Ybev',0x3fe,_0x31528a._0xa83e98)+_0x4254c6(_0x31528a._0x320f7a,_0x31528a._0xbfbaea,_0x31528a._0x390ed9,_0x31528a._0x2629c1)+_0xeae48d(_0x31528a._0x488363,_0x31528a._0x50b2a1,0x15b,0x276)+'|\x0a')+_0x1ccd46[_0xeae48d(-_0x31528a._0x43451a,_0x31528a._0x442812,_0x31528a._0x5d5026,0x506)]+(_0x4254c6(0x1e4,'LaEV',0x4fa,0x1b0)+_0xeae48d(0x253,_0x31528a._0x287d9d,0x120,-0x25e)+_0x4254c6(_0x31528a._0x3aa485,_0x31528a._0x18e3e5,_0x31528a._0x57958d,_0x31528a._0x386625)+_0xeae48d(0x470,_0x31528a._0x2c0980,0x420,_0x31528a._0x34281c)+'sessionKey'+_0x4254c6(_0x31528a._0x52bdfb,'k7fb',0xaac,_0x31528a._0x28cac0)+_0xeae48d(_0x31528a._0x1ba2aa,_0x31528a._0x272658,0x55c,_0x31528a._0x3883a4)+_0xeae48d(_0x31528a._0x3472dd,_0x31528a._0x4d447e,0x92,0x437)+_0x4254c6(0x883,'PB2^',_0x31528a._0x5c57b2,0x72c)+_0x4254c6(0x857,_0x31528a._0x68ff5f,_0x31528a._0x1585bd,0x8b6)+'N\x20格式消息内容');}function generateTeamSectionForReviewer(_0x50ed71){const _0x1dc679={_0x4615b1:0x880,_0xdd7bb7:'7k]n',_0x3f4314:0x4d4,_0x50ed74:0x914,_0x27d9a8:'2PrQ',_0x28d7ef:0x32f,_0x51681d:0x553,_0x264807:0x51a,_0x576ec4:0x6b7,_0x2ddc5d:0x326,_0x591d79:0x6c9,_0x5cc512:0x155,_0x502bfe:'GdD8',_0x3ebc44:0x341,_0x304489:0x970,_0x30330c:0xe3,_0x19cc1c:0x33,_0x1e67e8:'V)bU',_0xfe67aa:0x734,_0x254eb8:0x9d9,_0x456ed8:0xab5,_0x8b3b8f:'$6rX',_0x39bfa5:0x7f0,_0x3d2702:0xd5d,_0x32d572:0xa38,_0x8b9f64:0x424,_0x1cb8d9:0x92,_0x47d47d:0x463,_0x11767a:'#pB[',_0x28e8d7:0xb8d,_0x27d3ce:0xe18,_0x2d16d7:0x867,_0x39022e:0xaa6,_0x780a83:0x32a,_0x49d9e1:0x5e3,_0x23404a:0x755,_0x20eecf:0x62,_0x2dd80a:0x5a3,_0x1b366b:0x95e,_0x260af3:0xe92,_0x3642fc:'c36g',_0x4ac47c:0xf5d,_0x30a21d:0xb78,_0x3e4381:0x3a1,_0x5bbde4:'ECfd',_0x4f8929:0x618,_0x3c0c3c:0xdb0,_0xaed17a:'LaEV',_0x4b6517:0xbad,_0x114b2a:0xabf,_0x3f136e:'HQvh',_0x309e23:0x494,_0x30ab49:0x3cd,_0x26e3bf:0x1b5,_0x2ecfcf:0x82c,_0x5467fb:0x36b,_0x36b6a7:'1mQU',_0xefcf94:'!7O4',_0x5e5ef0:0x48d,_0x5e7a0e:0x7fd,_0x3a8baf:0x3a,_0x4c68e3:'KAAL',_0x5c8ed8:0x7fa},_0x2b0c04={_0x4e67c1:0x150,_0x2223c0:0x62,_0x542fb8:0xe},_0x4c8462={_0x5045a6:0xca};function _0x44a480(_0x538323,_0x454dc3,_0x3b4865,_0x42ee5d){return _0x259b54(_0x42ee5d,_0x454dc3-0xdd,_0x3b4865-_0x4c8462._0x5045a6,_0x454dc3- -0x303);}function _0x2e5afb(_0x281b72,_0x229938,_0x1b1427,_0x5a968d){return _0x5bf319(_0x281b72-_0x2b0c04._0x4e67c1,_0x5a968d-_0x2b0c04._0x2223c0,_0x229938,_0x5a968d-_0x2b0c04._0x542fb8);}return _0x44a480(0x232,0x478,_0x1dc679._0x4615b1,')9w@')+_0x2e5afb(0x558,_0x1dc679._0xdd7bb7,_0x1dc679._0x3f4314,_0x1dc679._0x50ed74)+_0x2e5afb(0x8b0,_0x1dc679._0x27d9a8,0x9c1,0x92b)+_0x44a480(_0x1dc679._0x28d7ef,0x531,_0x1dc679._0x51681d,'Foj6')+_0x44a480(0x73c,_0x1dc679._0x264807,_0x1dc679._0x576ec4,'N%cE')+_0x44a480(0xa04,0x714,_0x1dc679._0x2ddc5d,_0x1dc679._0xdd7bb7)+_0x44a480(_0x1dc679._0x591d79,0x298,-_0x1dc679._0x5cc512,_0x1dc679._0x502bfe)+_0x44a480(0x34e,0x71,-_0x1dc679._0x3ebc44,']GM1')+_0x2e5afb(0x830,'v2$P',_0x1dc679._0x304489,0xa0b)+_0x44a480(-_0x1dc679._0x30330c,_0x1dc679._0x19cc1c,-0x4d,_0x1dc679._0x1e67e8)+_0x44a480(0x69b,_0x1dc679._0xfe67aa,_0x1dc679._0x254eb8,'dx1J')+_0x2e5afb(_0x1dc679._0x456ed8,_0x1dc679._0x8b3b8f,0xad8,0xb41)+_0x2e5afb(_0x1dc679._0x39bfa5,'LaEV',_0x1dc679._0x3d2702,_0x1dc679._0x32d572)+_0x44a480(_0x1dc679._0x8b9f64,_0x1dc679._0x1cb8d9,_0x1dc679._0x47d47d,_0x1dc679._0x11767a)+'-|\x0a'+_0x50ed71[_0x2e5afb(0x8ba,'Mpqc',_0x1dc679._0x28e8d7,0xbb9)]+(_0x2e5afb(_0x1dc679._0x27d3ce,'dx1J',0xbff,0xa62)+_0x2e5afb(0x8dd,']GM1',0x45a,_0x1dc679._0x2d16d7)+_0x44a480(_0x1dc679._0x39022e,0x70a,0x978,'Bu(&')+_0x44a480(_0x1dc679._0x780a83,_0x1dc679._0x49d9e1,_0x1dc679._0x23404a,'N%cE')+_0x44a480(-_0x1dc679._0x20eecf,0x188,0x44a,']GM1')+_0x2e5afb(0x9c8,'ECfd',_0x1dc679._0x2dd80a,0x8b3)+_0x2e5afb(_0x1dc679._0x1b366b,'loi5',0xd78,0xc1d)+_0x2e5afb(_0x1dc679._0x260af3,_0x1dc679._0x3642fc,_0x1dc679._0x4ac47c,_0x1dc679._0x30a21d))+_0x50ed71[_0x2e5afb(_0x1dc679._0x3e4381,_0x1dc679._0x5bbde4,0x89b,_0x1dc679._0x4f8929)]+('\x0a\x0a###\x20消息发送'+_0x2e5afb(0x83b,')9pR',0xbf2,0xb13)+_0x44a480(0x3f8,0x1b3,-0x27c,'k7fb')+_0x2e5afb(_0x1dc679._0x3c0c3c,_0x1dc679._0xaed17a,0xf42,_0x1dc679._0x4b6517)+_0x2e5afb(_0x1dc679._0x114b2a,_0x1dc679._0x3f136e,_0x1dc679._0x309e23,0x753)+_0x44a480(-_0x1dc679._0x30ab49,-0xa8,-_0x1dc679._0x26e3bf,'l^lf')+_0x44a480(_0x1dc679._0x2ecfcf,0x500,_0x1dc679._0x5467fb,_0x1dc679._0x36b6a7)+_0x2e5afb(0xbcf,_0x1dc679._0xefcf94,_0x1dc679._0x5e5ef0,_0x1dc679._0x5e7a0e)+_0x44a480(0x14b,0x256,0x1bd,_0x1dc679._0x11767a)+_0x44a480(0x10c,-_0x1dc679._0x3a8baf,-0x26,_0x1dc679._0x4c68e3)+_0x2e5afb(0x8c1,'LaEV',_0x1dc679._0x5c8ed8,0x97a));}function generateTeamSectionForExecutor(_0x5dcd89){const _0x319d29={_0x5e15ad:'Q]KY',_0x3e9e4a:0x65d,_0x1926cd:0x3f6,_0x41bb58:'7k]n',_0x1e6933:0x526,_0x5a468c:0x464,_0x2513de:'c36g',_0x4c8129:0x851,_0x3c9783:0x6c6,_0x34610a:'Lh@)',_0x558507:0xad9,_0x54e008:0x869,_0x525d0b:0x8d2,_0x380188:'*LpW',_0x21fb46:0x301,_0x512f90:'7k]n',_0x1881e7:0x27a,_0x25362c:0x53d,_0x2c450a:0x777,_0x41f3ef:0x5a3,_0x1679b1:'k7fb',_0x160ba6:0x6a0,_0xd3d304:0x8fa,_0x2c9461:0x511,_0x5be357:'V23R',_0x4dbc8a:0x166,_0x4dcef2:0x1e6,_0x3cf286:0x606,_0x5f508d:0x94c,_0x15f813:0x924,_0x67cf55:'loi5',_0x420ffd:0x597,_0x38533d:0x3c6,_0x5c57bb:0x44d,_0x363aec:0x72c,_0x55491c:0xa7a,_0x126d96:'1mQU',_0x531351:0x454,_0x674eca:0x3a8,_0x4efb02:0x195,_0x5067e1:0x2e0,_0x36ef35:0x1c1,_0x556750:0x354,_0x350bc1:0x442,_0xa9c5b1:'#pB[',_0x2e3714:0x770,_0x27da14:0xca8,_0xe0dbd3:0x8d6,_0x17218a:0x55c,_0x4c5a04:0x490,_0x3584fd:0x764,_0x101ba3:0x6c1,_0x5dc880:'#pB[',_0x3bf995:0xa48,_0x14da6b:0x9c6,_0x5db10f:'da@G',_0xa5fa84:0x93b,_0x29a43d:0xc55,_0x12960a:0xb56,_0x44d6eb:0x8f0,_0x1064fa:0xa3c,_0x5dc21a:0x9ce,_0x263442:0xcb4,_0x4c7506:0x870,_0x35f8e9:0x76d,_0x55827d:0x390,_0x58d294:0xb00,_0x84ea34:0x570,_0x4da22e:0x9b2,_0x514ed7:'PB2^',_0x33e6f9:0x80,_0x21d610:'KAAL'},_0x16e83c={_0x37b570:0x255,_0xebb076:0x95};function _0x18de75(_0x196e16,_0x42554f,_0x1a807c,_0x50e149){return _0x5bf319(_0x196e16-0x164,_0x42554f- -_0x16e83c._0x37b570,_0x50e149,_0x50e149-_0x16e83c._0xebb076);}function _0x5ce8d8(_0x56b3f3,_0x26f3d4,_0x588c9d,_0x42b202){return _0x5bf319(_0x56b3f3-0x186,_0x26f3d4- -0x280,_0x42b202,_0x42b202-0x120);}return _0x18de75(0xb02,0xaf5,0xc85,_0x319d29._0x5e15ad)+_0x18de75(0x923,_0x319d29._0x3e9e4a,_0x319d29._0x1926cd,_0x319d29._0x41bb58)+_0x18de75(_0x319d29._0x1e6933,0x682,_0x319d29._0x5a468c,_0x319d29._0x2513de)+_0x5ce8d8(_0x319d29._0x4c8129,0x4a9,0x6a8,']GM1')+_0x5ce8d8(0x751,0x5de,_0x319d29._0x3c9783,_0x319d29._0x34610a)+_0x18de75(_0x319d29._0x558507,_0x319d29._0x54e008,_0x319d29._0x525d0b,_0x319d29._0x380188)+_0x18de75(0xef,0x2f2,_0x319d29._0x21fb46,_0x319d29._0x512f90)+_0x5ce8d8(_0x319d29._0x1881e7,_0x319d29._0x25362c,0x4a6,'HQvh')+_0x5ce8d8(0xb7a,_0x319d29._0x2c450a,0x463,'hn9d')+_0x18de75(0x7e8,_0x319d29._0x41f3ef,0x40f,_0x319d29._0x1679b1)+_0x5ce8d8(_0x319d29._0x160ba6,_0x319d29._0xd3d304,_0x319d29._0x2c9461,_0x319d29._0x5be357)+_0x5ce8d8(_0x319d29._0x4dbc8a,0x508,_0x319d29._0x4dcef2,'Foj6')+_0x5ce8d8(_0x319d29._0x3cf286,_0x319d29._0x5f508d,_0x319d29._0x15f813,_0x319d29._0x67cf55)+_0x18de75(0x15b,_0x319d29._0x420ffd,_0x319d29._0x38533d,'Ybev')+_0x5ce8d8(_0x319d29._0x5c57bb,_0x319d29._0x363aec,0x41b,'suJD')+_0x5dcd89[_0x5ce8d8(_0x319d29._0x55491c,0xb19,0x82d,_0x319d29._0x126d96)]+(_0x18de75(_0x319d29._0x531351,0x7ae,_0x319d29._0x674eca,'#%z0')+_0x5ce8d8(-_0x319d29._0x4efb02,_0x319d29._0x5067e1,_0x319d29._0x36ef35,'$6rX')+_0x5ce8d8(0x497,_0x319d29._0x556750,_0x319d29._0x350bc1,_0x319d29._0xa9c5b1)+_0x18de75(_0x319d29._0x2e3714,0x8f8,_0x319d29._0x27da14,'ebUi')+_0x5ce8d8(0x9f2,_0x319d29._0xe0dbd3,_0x319d29._0x17218a,'!7O4')+_0x5ce8d8(-0xfe,0x34a,_0x319d29._0x4c5a04,'Bu(&')+_0x18de75(0x65d,_0x319d29._0x3584fd,_0x319d29._0x101ba3,_0x319d29._0x5dc880))+_0x5dcd89[_0x5ce8d8(_0x319d29._0x3bf995,_0x319d29._0x14da6b,0xd71,_0x319d29._0x5db10f)]+(_0x5ce8d8(0xa83,0x660,_0x319d29._0xa5fa84,'2PrQ')+_0x18de75(_0x319d29._0x29a43d,0xaf2,0x786,'!k$h')+_0x18de75(_0x319d29._0x12960a,_0x319d29._0x44d6eb,0xa3a,'*LpW')+_0x5ce8d8(_0x319d29._0x1064fa,_0x319d29._0x5dc21a,_0x319d29._0x263442,'v2$P')+_0x18de75(0x678,0x7b2,0x5a1,_0x319d29._0x5e15ad)+_0x5ce8d8(_0x319d29._0x4c7506,_0x319d29._0x35f8e9,_0x319d29._0x55827d,_0x319d29._0x2513de)+_0x5ce8d8(0xa36,0x754,0x6fd,'2PrQ')+_0x18de75(0xa53,_0x319d29._0x58d294,0xc2a,'ebUi')+_0x18de75(_0x319d29._0x84ea34,0x3d2,-0x84,_0x319d29._0x2513de)+_0x18de75(_0x319d29._0x4da22e,0x728,0x998,_0x319d29._0x514ed7)+_0x18de75(_0x319d29._0x33e6f9,0x4bc,0x224,_0x319d29._0x21d610));}function _0x5249(_0x5f14b8,_0x302543){_0x5f14b8=_0x5f14b8-(-0x1b01+0x71*0x1d+0x1001);const _0x270e7c=_0x97cd();let _0x320a46=_0x270e7c[_0x5f14b8];if(_0x5249['Wtzyqy']===undefined){var _0x493f61=function(_0x245bb6){const _0x3fda08='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x564de3='',_0x5c959d='';for(let _0xff29a=0x379+-0x374+-0x5*0x1,_0x3fce83,_0x49d642,_0x196372=0x1ca9+-0x180b+0x2*-0x24f;_0x49d642=_0x245bb6['charAt'](_0x196372++);~_0x49d642&&(_0x3fce83=_0xff29a%(0x16fa*-0x1+-0x17*-0x17f+-0xb6b)?_0x3fce83*(-0x5c3+-0x15b7+-0x2*-0xddd)+_0x49d642:_0x49d642,_0xff29a++%(0xa2b+-0x1815+0xdee))?_0x564de3+=String['fromCharCode'](-0x17c+0x1eba+-0x1c3f&_0x3fce83>>(-(-0x74f*-0x1+0x444+-0x15*0x8d)*_0xff29a&-0xad*-0x2e+-0x7*-0x8d+-0x22eb)):0x5*0x782+-0x2e9+0x5*-0x6ed){_0x49d642=_0x3fda08['indexOf'](_0x49d642);}for(let _0x10e996=0x150b*-0x1+-0x1*0x14db+0x29e6,_0x26c704=_0x564de3['length'];_0x10e996<_0x26c704;_0x10e996++){_0x5c959d+='%'+('00'+_0x564de3['charCodeAt'](_0x10e996)['toString'](-0xd25*0x1+0x745+0x28*0x26))['slice'](-(-0x26e*-0x7+-0x8eb+0x815*-0x1));}return decodeURIComponent(_0x5c959d);};const _0x27e22f=function(_0x283669,_0x3cbc06){let _0x4f7333=[],_0xea133f=0x71*-0x50+0x1e18+0xa7*0x8,_0x5931d8,_0x3b30da='';_0x283669=_0x493f61(_0x283669);let _0x37de08;for(_0x37de08=-0x1*-0x122c+-0x3f3*0x2+-0xa*0x107;_0x37de08<0xb8c*0x3+-0x11*0x4d+-0x1c87;_0x37de08++){_0x4f7333[_0x37de08]=_0x37de08;}for(_0x37de08=0x1d4c+0x1d69+-0x1*0x3ab5;_0x37de08<0x1*0x1989+0x6f8*-0x4+0x357;_0x37de08++){_0xea133f=(_0xea133f+_0x4f7333[_0x37de08]+_0x3cbc06['charCodeAt'](_0x37de08%_0x3cbc06['length']))%(0x164a*0x1+0x671*0x2+-0x222c),_0x5931d8=_0x4f7333[_0x37de08],_0x4f7333[_0x37de08]=_0x4f7333[_0xea133f],_0x4f7333[_0xea133f]=_0x5931d8;}_0x37de08=-0x152d+0x6a*0x28+0x1*0x49d,_0xea133f=-0x572+0x23c*-0xb+-0x1ab*-0x12;for(let _0x4020fb=0x1d17+-0xc5*0x6+-0x1879;_0x4020fb<_0x283669['length'];_0x4020fb++){_0x37de08=(_0x37de08+(-0x9*-0x107+0x278*0x2+-0x79*0x1e))%(0x2071+-0x1772+-0x59*0x17),_0xea133f=(_0xea133f+_0x4f7333[_0x37de08])%(0xa7c+0x886*0x2+-0xd44*0x2),_0x5931d8=_0x4f7333[_0x37de08],_0x4f7333[_0x37de08]=_0x4f7333[_0xea133f],_0x4f7333[_0xea133f]=_0x5931d8,_0x3b30da+=String['fromCharCode'](_0x283669['charCodeAt'](_0x4020fb)^_0x4f7333[(_0x4f7333[_0x37de08]+_0x4f7333[_0xea133f])%(0x101*0x5+-0x178f*-0x1+-0x1b94)]);}return _0x3b30da;};_0x5249['NExjDn']=_0x27e22f,_0x5249['SGzRxx']={},_0x5249['Wtzyqy']=!![];}const _0x2f4d41=_0x270e7c[-0x18c5+0x52*0x1+0x1*0x1873],_0x596d66=_0x5f14b8+_0x2f4d41,_0x30767f=_0x5249['SGzRxx'][_0x596d66];return!_0x30767f?(_0x5249['PrNEzB']===undefined&&(_0x5249['PrNEzB']=!![]),_0x320a46=_0x5249['NExjDn'](_0x320a46,_0x302543),_0x5249['SGzRxx'][_0x596d66]=_0x320a46):_0x320a46=_0x30767f,_0x320a46;}function syncOpenClawConfig(_0x44c751){const _0x1e2323={_0x281e27:']GM1',_0x56d754:0xb32,_0xbbcfa7:'da@G',_0x2b67c5:0x820,_0x1c23e1:0x3bb,_0x3869b2:'KDG1',_0x50b7c9:0xaee,_0x4a0049:0x6a8,_0x17c9c5:0x30e,_0x14ae0b:'suJD',_0x239fb5:0x8e7,_0x5533fd:0x518,_0x40a8c1:'dx1J',_0x7699cf:0x60d,_0xd1b725:'Mpqc',_0x253b0b:0x841,_0x3d0873:0x9d0,_0x4c1786:'l^lf',_0x58ecf4:0x1dc,_0x48341f:0x54,_0x237667:0x2a1,_0x1b09b1:')$Hz',_0x529eb7:0x3e2,_0x22031c:0x7ab,_0xd02929:0x3a1,_0xaf6f78:'GdD8',_0x42fbfd:0x575,_0x3e1523:0x5ce,_0x54bf7b:0x298,_0x5d28a9:'V)bU',_0x2c49a8:0x362,_0x222dbe:0xff,_0x41f2c2:0xa0a,_0x3f471b:'ebUi',_0x51110a:0x894,_0x242aec:0x8b7,_0x414ba5:0x644,_0x450478:0x4b7,_0x1ca93c:0x210,_0x5814e6:0x848,_0x4781d2:'Ybev',_0x536bf2:0x547,_0x357d61:0x9c8,_0x336e4d:0xd4d,_0x436fbe:0x78d,_0x5d2af6:'1mQU',_0x233254:0xde9,_0x35de9f:0xafe,_0x4f908a:'&)0b',_0x2bf175:0x78b,_0x34c7e5:0xa04,_0x13a30e:0x866,_0x20b381:0x390,_0x4f812e:'KAAL',_0x391c3d:0xe95,_0x2df71e:0x778,_0x695928:'Dsi5',_0x127c13:0x381,_0x4c036a:')9pR',_0x41e5af:'V23R',_0x2edeaf:0x800,_0x50d3b9:0x14d,_0x577ac6:0x1c2,_0x16dd41:0x451,_0x431d51:'GdD8',_0x3f29fb:0x7d6,_0x7ea1ce:'ECfd',_0x3667d5:0x3e8,_0x46682e:'VXA^',_0x20b056:0x5a7,_0x343ffa:0x889,_0x366292:0x706,_0x5a149c:0x8e9,_0x5872aa:0x2f7,_0x5b2040:'l^lf',_0x24be62:'lofD',_0x513f9c:0x8fb,_0x15321a:0x560,_0x11899d:0x784,_0x468ed6:'V)bU',_0x18ab50:0x974,_0x305505:0x3a8,_0x3e3e65:0x446,_0x2b5dfa:'6]hf',_0xd165f1:0x94,_0x4efff9:0x3eb,_0x2e32f4:'!k$h',_0x57e107:0xfd,_0x5ed8a1:0x41a,_0x5034fa:0x679,_0x2577ce:0x12b,_0x1b2c21:0x2ba,_0x19eafd:0x1d,_0x1eeeba:0x5ce,_0x188d75:0x310,_0x40c81a:0x3bb,_0x3cf1cd:0x505,_0x5762a2:0x7e4,_0x2244cf:'FtqP',_0xe04a6b:0x843,_0x14399e:0xc4d,_0x5b9d97:0x889,_0x56a1c0:0x461,_0x5d0e37:0x613,_0x4790a4:0x294,_0x58f7e9:0x47f,_0x2133d0:0xc86,_0x3f83c5:0x628,_0x247333:0x592,_0x1bbf51:0x237,_0x30a1fd:0x412,_0x2c43b1:0x524,_0x9158f8:0x80a,_0xda8007:0xa1b,_0x1863b3:0x89b,_0x29cc02:'&)0b',_0x278ca4:0x610,_0x6caa55:0xa4e,_0x4f7c93:'l^lf',_0x1174f9:0x72f,_0x1aa7c5:'$6rX',_0x1dda2a:0x353,_0x3f2377:0x7b8,_0x3d414c:0xbdb,_0x525787:0x9fa,_0x14fcc1:0xde7,_0x19623a:')9pR',_0x3fb6a2:0x598,_0xe07721:0x351,_0x16aebb:'Q]KY',_0x39d3d9:0x53b,_0x318842:0x8d8,_0x34ec80:0x520,_0x19688d:0x101,_0x2e9fb3:0x1cd,_0x2dbffe:'2m0$',_0xdb355d:0x28b,_0x314698:0xea,_0x235b36:0xee1,_0x11d3fd:0x7e3,_0x5adf51:0x222,_0x19bc22:0x273,_0x3bfb3b:0x95a,_0x45e68a:'loi5',_0x168c09:0x768,_0x1dbb5a:0xbd9,_0x3e42e8:0xbaa,_0x497622:0xce5,_0x45bae6:0x373,_0x47f003:0x6c6,_0x106750:0x2d2,_0x3ed33e:'Q]KY',_0x542cf1:0x325,_0x1f4dd9:0x667,_0x35b661:'hn9d',_0xe772cd:0x687,_0x4cd80e:'2m0$',_0x26e8f8:0x89e,_0xd79b07:0xb40,_0x5b4d0c:'Lh@)',_0x576257:')9w@',_0x162c34:0x3c6,_0x4839ec:0xa,_0x1e8183:0x326,_0x3a2ce5:0x65a,_0x3f45b7:0x42,_0x4c3d40:'lofD',_0x53846f:0x53c,_0x2318d0:0xcc1,_0x13d1cc:0x1c7,_0x29ce39:0x23f,_0x22f0b1:'!k$h',_0x3c4329:0xa6,_0xb3ef23:0x26,_0x212e10:0x5f,_0x4791cd:'GdD8',_0x4f7c86:0xc0,_0x320092:'#%z0',_0x3f480b:0x271,_0x35eb9c:'ebUi',_0x164fdc:0x831,_0x5438cb:0xc41,_0x1a2d02:'7k]n',_0x51acf9:0x1e9,_0x5282fe:0x1dc,_0x1ae263:0x864,_0xc81d50:0x14e,_0x4dcc56:'lofD',_0x3dffad:0x5fa,_0x562f7c:0x58e,_0x318faa:0x289,_0x39bd76:0x4d3,_0x4d69c2:0x1fc,_0x16de88:0x5c6,_0x17ea5c:0x5d8,_0x2a69f5:'z8mf',_0x2a5f0a:']GM1',_0x3afb4f:0xc55,_0x17973b:0xba7,_0x4f367a:0xcc3,_0x4cf025:0x1a7,_0x35f687:0x138,_0x58347f:0x197,_0x126a06:0xa6b,_0x107ac7:0x91f,_0x50d926:'v2$P',_0xb195ff:0xc55,_0x4e5976:0x24d,_0x41b429:0x2d9,_0x1e7067:0x640,_0xa0bdd9:'2m0$',_0x26c584:0x263,_0x21e53b:0x153,_0x47c196:0x83d,_0x47023c:0xcb5,_0x2e5965:'FtqP',_0xb90dd:0x441,_0x5527d9:0xc47,_0x4af7c2:0xa28,_0x4a2985:'k7fb',_0x2ab9b4:0xb0f,_0x34e442:0x8fa,_0x4784ff:0x884,_0x12e1d3:0x5a1,_0x2a1697:0x3e3,_0x1da7e1:0x1f0,_0x294411:0x212,_0xf67983:'LaEV',_0x4c9202:0x2ab,_0x1a89bd:0x5ec,_0x31a5df:0x522,_0x157e27:')$Hz',_0x47a05c:0x912,_0x3ecedd:0x5b5,_0x257355:'!7O4',_0x4c4657:0xa00,_0x2b2096:0x6c8,_0x5b3ec0:'#pB[',_0x173b6f:0x7df,_0x57273a:0x438,_0x27bdce:0x61f,_0x26ede4:0x659,_0x2e0844:0x99a,_0x5b30bc:0x3c0,_0x173874:0x5fb,_0x385fc6:0x3ac,_0x1e2393:0x5e7,_0x26a4a9:0x292,_0x55fa32:'loi5',_0x52546c:0x586,_0x58f982:0x5f4,_0x1dfa12:0x99c,_0x4fa120:'93KN',_0x25bdb8:0x702,_0x5d815c:0x3d0,_0xb60bf0:0xa16,_0x3645ed:0xb05,_0x73222a:0x8e4,_0x1dd544:0x2b3,_0x5cdfe8:0x7c6,_0x2e41ec:0x849,_0x2e393e:'HQvh',_0x822af3:0x6d3,_0x5254ce:0x804,_0x5cbfd2:0x9d5,_0x1f03f4:0x3a4,_0x581cd7:0x81,_0x4092be:0x546,_0x1116f2:0x9f5,_0x3935c6:0xb24,_0x31afab:']GM1',_0x47154c:0x678,_0x39cd6a:0x9a0,_0x1230c8:0x28d,_0x40e170:0x277,_0x5a3014:'N%cE',_0x31fc91:0x8e1,_0x1a65ec:'$6rX',_0xa71fda:0x6ed,_0x4c0faf:0x474,_0x2ca5ce:0x81e,_0x1259bd:'GdD8',_0x1b21db:0x4cf,_0x20dfef:0x4b3,_0x3813d7:0x10d,_0x32633d:0x829,_0x20dd3f:0x449,_0x372436:'z8mf',_0x18e18f:0x43e,_0x4f9507:0x22,_0x429b81:0x14,_0x564576:0x2f4,_0x20d8c9:0x645,_0x5bb0eb:'3Y(#',_0x4292f9:0x1bc,_0x2430ed:0x60c,_0x4d3535:0x741,_0x84fec8:0x6ba,_0x28efa9:'GdD8',_0x56d286:0x4c6,_0x2aa209:0x13d,_0x239a70:0x727,_0x3d22f7:0x8f0,_0x53d34f:0x801,_0x36a9d5:0x32c,_0xfa6ced:0x66,_0x2aa279:0x506,_0x2f6721:0x10a,_0x94b75a:0xaee,_0x49a049:0x94b,_0x866d55:0x630,_0x15b3e2:0x7d4,_0x53065b:0x4e5,_0x5f3cbd:0x99a,_0x1079f5:0x545,_0x25a2ee:'hn9d',_0x4fd0ff:0x7c3,_0x3183cf:0x5dd,_0x4fc7ea:0x338,_0xebd1c8:'#%z0',_0x22fd50:0x6a9,_0x247da3:0x2b0,_0x4d4fca:0x37d,_0x17d38e:0xa3b,_0x3903c1:0x6bc,_0x415383:0x9e3,_0x3a2c66:0x856,_0x3b0b3a:0x602,_0x272091:0x1b1,_0xdcd974:0x92c,_0x297b27:0x878,_0xa7a6cb:'loi5',_0x34bed1:0x5ae,_0x12b30f:0x5ed,_0x1af289:'Bu(&',_0x53147d:0x4b7,_0x5820ca:0x3fc},_0x1d9b0b={_0xecef83:0x1e1,_0x37300b:0x19c},_0x1d616f={_0x2a720e:0x37b,_0x2eab7f:0x39};function _0x257fd8(_0x33084c,_0x23a004,_0x1f03f0,_0x2383a8){return _0x5bf319(_0x33084c-0x112,_0x33084c- -_0x1d616f._0x2a720e,_0x2383a8,_0x2383a8-_0x1d616f._0x2eab7f);}function _0x234732(_0x57c0a2,_0x5a89c7,_0x524c1b,_0x34bae2){return _0x259b54(_0x524c1b,_0x5a89c7-0x142,_0x524c1b-_0x1d9b0b._0xecef83,_0x57c0a2-_0x1d9b0b._0x37300b);}const _0x4f2285={'gzYDV':function(_0x5de17d,_0x449b00){return _0x5de17d(_0x449b00);},'sfUeN':_0x234732(0x6e0,0x88e,_0x1e2323._0x281e27,_0x1e2323._0x56d754)+_0x234732(0xa67,0xa68,_0x1e2323._0xbbcfa7,0x774)+_0x257fd8(_0x1e2323._0x2b67c5,_0x1e2323._0x1c23e1,0xc6f,_0x1e2323._0x3869b2)+'态\x20|','YrHSw':_0x234732(_0x1e2323._0x50b7c9,0xdc0,_0x1e2323._0xbbcfa7,0x797)+_0x257fd8(0x2b6,_0x1e2323._0x4a0049,_0x1e2323._0x17c9c5,_0x1e2323._0x14ae0b)+'-----|----'+_0x257fd8(_0x1e2323._0x239fb5,_0x1e2323._0x5533fd,0xccb,_0x1e2323._0x40a8c1)+'-|','imlEu':function(_0x2c3c34,_0x2adfa2){return _0x2c3c34===_0x2adfa2;},'glBQl':_0x257fd8(_0x1e2323._0x7699cf,0x2a3,0x6b1,_0x1e2323._0xd1b725),'qoloP':_0x234732(_0x1e2323._0x253b0b,_0x1e2323._0x3d0873,_0x1e2323._0x4c1786,0x777),'wbNZa':_0x234732(0x2f2,_0x1e2323._0x58ecf4,'HQvh',-_0x1e2323._0x48341f),'zeCWM':_0x234732(0x435,_0x1e2323._0x237667,_0x1e2323._0x1b09b1,_0x1e2323._0x529eb7),'rXofM':_0x257fd8(_0x1e2323._0x22031c,_0x1e2323._0xd02929,0x907,_0x1e2323._0xaf6f78)+_0x257fd8(_0x1e2323._0x42fbfd,0x985,_0x1e2323._0x3e1523,_0x1e2323._0x40a8c1),'kDLTD':_0x257fd8(_0x1e2323._0x54bf7b,0x574,-0x138,_0x1e2323._0x5d28a9)+'bao-seed-2'+_0x257fd8(_0x1e2323._0x2c49a8,-_0x1e2323._0x222dbe,0x6f7,']GM1')+_0x257fd8(0x822,0xbc4,_0x1e2323._0x41f2c2,_0x1e2323._0x3f471b),'nRiSg':_0x234732(_0x1e2323._0x51110a,0x947,'GdD8',0x875),'bvCVt':function(_0x3504fe,_0x1acfda){return _0x3504fe===_0x1acfda;},'UGNYX':_0x234732(0x95f,_0x1e2323._0x242aec,'2m0$',_0x1e2323._0x414ba5),'GygvT':_0x234732(_0x1e2323._0x450478,_0x1e2323._0x1ca93c,'$6rX',_0x1e2323._0x5814e6),'fmqGV':_0x234732(0x35f,0x378,_0x1e2323._0x4781d2,_0x1e2323._0x536bf2),'XRuZw':function(_0x5795f9,_0x368867){return _0x5795f9!==_0x368867;},'xjDbT':_0x257fd8(0x769,0x7a6,0x782,'c36g'),'bKNmP':function(_0x1abcfa,_0x4af5b2){return _0x1abcfa===_0x4af5b2;},'QkDwH':function(_0xbdcf79,_0x3e8fc3){return _0xbdcf79>=_0x3e8fc3;},'EGjpY':function(_0x55aad5,_0x5830c3){return _0x55aad5!==_0x5830c3;},'ArUYg':_0x234732(_0x1e2323._0x357d61,0x5dc,_0x1e2323._0x4c1786,_0x1e2323._0x336e4d),'MszTu':_0x257fd8(0x7e0,_0x1e2323._0x436fbe,0x599,'93KN'),'pCqGN':_0x234732(0xb20,0xd7a,_0x1e2323._0x5d2af6,_0x1e2323._0x233254)+_0x234732(_0x1e2323._0x35de9f,0xe43,_0x1e2323._0x4f908a,_0x1e2323._0x2bf175),'XnvBl':function(_0x49731e,_0xb13570){return _0x49731e instanceof _0xb13570;},'vJovM':function(_0x46da52,_0x580ced){return _0x46da52(_0x580ced);}};try{if(_0x4f2285[_0x234732(_0x1e2323._0x34c7e5,0x5ba,'7k]n',_0x1e2323._0x13a30e)](_0x4f2285[_0x257fd8(0x6ad,_0x1e2323._0x20b381,0x251,'HQvh')],_0x4f2285[_0x234732(0xa63,0xb90,_0x1e2323._0x4f812e,_0x1e2323._0x391c3d)])){const _0x34df3a=(0x2212+-0x242b*0x1+-0x1*-0x219,utils_1[_0x257fd8(0x950,0xbc4,_0x1e2323._0x2df71e,_0x1e2323._0x695928)+_0x234732(_0x1e2323._0x127c13,-0x99,_0x1e2323._0x4c036a,0x7b)])();if(!fs[_0x234732(0xbc6,0x93c,_0x1e2323._0x41e5af,_0x1e2323._0x2edeaf)](_0x34df3a)){const _0x581fb1={};_0x581fb1[_0x234732(0x519,_0x1e2323._0x50d3b9,'suJD',_0x1e2323._0x577ac6)]=0x7075,_0x581fb1[_0x257fd8(0x35d,_0x1e2323._0x16dd41,-0xde,_0x1e2323._0x431d51)]=_0x4f2285[_0x257fd8(0x798,_0x1e2323._0x3f29fb,0x543,_0x1e2323._0x7ea1ce)],_0x581fb1[_0x234732(_0x1e2323._0x3667d5,0x10d,_0x1e2323._0x46682e,0x225)]=_0x4f2285[_0x257fd8(0x7f2,_0x1e2323._0x20b056,_0x1e2323._0x343ffa,'k7fb')],_0x581fb1[_0x257fd8(0x9d6,_0x1e2323._0x5a149c,_0x1e2323._0x366292,_0x1e2323._0x5b2040)]={},_0x581fb1[_0x257fd8(0x9d6,_0x1e2323._0x5a149c,_0x1e2323._0x366292,_0x1e2323._0x5b2040)][_0x257fd8(0x1eb,-0xb6,_0x1e2323._0x5872aa,'Q]KY')]=_0x4f2285[_0x257fd8(0x3b6,0x2c9,0x3cb,'1mQU')],_0x581fb1[_0x257fd8(0x9d6,_0x1e2323._0x5a149c,_0x1e2323._0x366292,_0x1e2323._0x5b2040)][_0x234732(0xae5,0xd34,_0x1e2323._0x24be62,_0x1e2323._0x513f9c)]=_0x4f2285[_0x257fd8(0x9ac,0xd1b,_0x1e2323._0x15321a,'ebUi')];const _0x3ee9ee={};_0x3ee9ee[_0x234732(0x8e6,_0x1e2323._0x11899d,_0x1e2323._0x468ed6,0x590)]=_0x4f2285[_0x234732(0x7db,_0x1e2323._0x18ab50,'lofD',_0x1e2323._0x305505)],_0x3ee9ee[_0x234732(_0x1e2323._0x3e3e65,0x1e3,_0x1e2323._0x2b5dfa,0x764)]=[];const _0x2bd169={};_0x2bd169[_0x234732(0x9c0,0x611,'KDG1',0xbdc)]={};const _0x314795={'gateway':_0x581fb1,'agents':{'defaults':{'workspace':(-0x611*-0x3+-0x1986+0x753,utils_1[_0x257fd8(_0x1e2323._0x3e3e65,_0x1e2323._0xd165f1,_0x1e2323._0x4efff9,_0x1e2323._0x2e32f4)+_0x257fd8(0x1c8,_0x1e2323._0x57e107,_0x1e2323._0x5ed8a1,')$Hz')])(_0x234732(0x590,_0x1e2323._0x5034fa,_0x1e2323._0x5d28a9,_0x1e2323._0x2577ce)),'model':_0x3ee9ee},'list':[]},'bindings':[],'models':_0x2bd169,'channels':{}},_0x17f31f=path[_0x257fd8(0x495,0x63f,0x41d,_0x1e2323._0xd1b725)](_0x34df3a);if(!fs[_0x257fd8(_0x1e2323._0x1b2c21,0x20d,_0x1e2323._0x19eafd,'hn9d')](_0x17f31f)){const _0x23a7f5={};_0x23a7f5[_0x257fd8(0x8de,0x824,_0x1e2323._0x1eeeba,'2PrQ')]=!![],fs[_0x257fd8(0x1ed,_0x1e2323._0x188d75,_0x1e2323._0x40c81a,')9pR')](_0x17f31f,_0x23a7f5);}fs[_0x234732(0x438,0x589,_0x1e2323._0x7ea1ce,_0x1e2323._0x3cf1cd)+'ync'](_0x34df3a,JSON['stringify'](_0x314795,null,0xc7a+0x7e8*-0x1+-0x4*0x124),_0x4f2285[_0x257fd8(_0x1e2323._0x5762a2,0x8b8,0x83c,_0x1e2323._0x2244cf)]);}const _0x2638b9=fs[_0x257fd8(_0x1e2323._0xe04a6b,_0x1e2323._0x14399e,_0x1e2323._0x5b9d97,'V23R')+'nc'](_0x34df3a,_0x4f2285[_0x257fd8(0x49e,_0x1e2323._0x56a1c0,0x30e,'hn9d')]),_0x8a604b=JSON[_0x257fd8(_0x1e2323._0x5d0e37,_0x1e2323._0x4790a4,_0x1e2323._0x58f7e9,'#pB[')](_0x2638b9);if(!_0x8a604b[_0x234732(0xae2,_0x1e2323._0x2133d0,'hn9d',0x941)]){const _0xf145c9={};_0xf145c9[_0x257fd8(_0x1e2323._0x3f83c5,_0x1e2323._0x247333,_0x1e2323._0x1bbf51,'!k$h')]={},_0xf145c9[_0x257fd8(_0x1e2323._0x30a1fd,_0x1e2323._0x2c43b1,_0x1e2323._0x9158f8,'Mpqc')]=[],_0x8a604b[_0x234732(_0x1e2323._0xda8007,_0x1e2323._0x1863b3,_0x1e2323._0x29cc02,0xa26)]=_0xf145c9;}if(!_0x8a604b[_0x234732(_0x1e2323._0x278ca4,_0x1e2323._0x6caa55,_0x1e2323._0x4f7c93,_0x1e2323._0x1174f9)]['list']){if(_0x4f2285[_0x234732(0x428,0x1f4,_0x1e2323._0x1aa7c5,0x56)](_0x4f2285[_0x257fd8(0x54b,_0x1e2323._0x1dda2a,0x4e5,'&)0b')],_0x4f2285[_0x257fd8(_0x1e2323._0x3f2377,_0x1e2323._0x3d414c,0x96f,'c36g')])){const _0x2aa8e7=_0x5c8c00(_0xae0c9c);_0x5c8213=_0x423b96(_0x2aa8e7);}else _0x8a604b['agents'][_0x257fd8(_0x1e2323._0x525787,_0x1e2323._0x14fcc1,0x96f,_0x1e2323._0x19623a)]=[];}!_0x8a604b[_0x257fd8(_0x1e2323._0x3fb6a2,_0x1e2323._0xe07721,0x34d,_0x1e2323._0x16aebb)]&&(_0x8a604b[_0x234732(_0x1e2323._0x39d3d9,0x4f6,'N%cE',_0x1e2323._0x318842)]={});!_0x8a604b[_0x257fd8(_0x1e2323._0x34ec80,_0x1e2323._0x19688d,_0x1e2323._0x2e9fb3,_0x1e2323._0x2dbffe)][_0x257fd8(_0x1e2323._0xdb355d,0x611,_0x1e2323._0x314698,'lofD')]&&(_0x8a604b[_0x234732(0x6f3,0x99e,'Q]KY',0x49b)][_0x234732(0xbd9,_0x1e2323._0x235b36,')$Hz',_0x1e2323._0x11d3fd)]={});!_0x8a604b['tools']['sessions'][_0x257fd8(0x5ef,_0x1e2323._0x5adf51,_0x1e2323._0x19bc22,'$6rX')]&&(_0x8a604b[_0x234732(0xab2,_0x1e2323._0x3bfb3b,_0x1e2323._0x45e68a,_0x1e2323._0x168c09)][_0x234732(_0x1e2323._0x1dbb5a,_0x1e2323._0x3e42e8,')$Hz',_0x1e2323._0x497622)][_0x234732(_0x1e2323._0x45bae6,_0x1e2323._0x47f003,'loi5',0xb9)]=_0x4f2285[_0x257fd8(0x61e,_0x1e2323._0x106750,0x8ef,_0x1e2323._0x3ed33e)]);!_0x8a604b[_0x234732(_0x1e2323._0x542cf1,_0x1e2323._0x1f4dd9,_0x1e2323._0x35b661,0x57c)]&&(_0x8a604b[_0x234732(0x5d4,_0x1e2323._0xe772cd,_0x1e2323._0x4cd80e,_0x1e2323._0x26e8f8)]={});if(!_0x8a604b[_0x234732(0x96a,_0x1e2323._0xd79b07,_0x1e2323._0x5b4d0c,0x9bc)][_0x234732(0x93c,0xa40,_0x1e2323._0x576257,0xb4c)+'nt']){if(_0x4f2285[_0x234732(_0x1e2323._0x162c34,_0x1e2323._0x4839ec,']GM1',0x490)](_0x4f2285[_0x257fd8(_0x1e2323._0x1e8183,_0x1e2323._0x3a2ce5,-_0x1e2323._0x3f45b7,_0x1e2323._0x4c3d40)],_0x4f2285[_0x234732(0x90d,_0x1e2323._0x53846f,'ECfd',_0x1e2323._0x2318d0)])){const _0x5e40d9=_0x4f2285[_0x257fd8(_0x1e2323._0x13d1cc,-_0x1e2323._0x29ce39,0x530,_0x1e2323._0x22f0b1)](_0x101512,_0x29665d[_0x257fd8(0x441,_0x1e2323._0x3c4329,-_0x1e2323._0xb3ef23,')$Hz')+'Id']);_0x1443ed=_0x257fd8(0x1c2,0x5f7,-_0x1e2323._0x212e10,_0x1e2323._0x4791cd)+_0x257fd8(0x3f4,_0x1e2323._0x4f7c86,0x548,_0x1e2323._0x320092)+_0x257fd8(0x9f3,0xc2f,0xa68,'HQvh')+_0x234732(0x43a,_0x1e2323._0x3f480b,_0x1e2323._0x35eb9c,0xa4)+_0x257fd8(_0x1e2323._0x164fdc,_0x1e2323._0x5438cb,0xbae,'Dsi5')+'\x20`team-man'+_0x257fd8(0x856,0x995,0xba3,_0x1e2323._0x1a2d02)+_0x257fd8(_0x1e2323._0x51acf9,0x3b,-_0x1e2323._0x5282fe,'V)bU')+_0x257fd8(0x7ad,0x51d,0x49e,'l^lf')+_0x234732(_0x1e2323._0x1ae263,0xa8c,_0x1e2323._0xbbcfa7,0x8cc)+'t\x20ID\x20|\x20名称\x20'+'|\x20状态\x20|\x0a|--'+_0x234732(0x49f,_0x1e2323._0xc81d50,_0x1e2323._0x4dcc56,_0x1e2323._0x3dffad)+'-----|----'+_0x234732(0x5b9,0x76a,'ECfd',_0x1e2323._0x562f7c)+_0x5e40d9[_0x234732(0x436,0x5bf,_0x1e2323._0x4791cd,0x80b)]+(_0x257fd8(_0x1e2323._0x318faa,_0x1e2323._0x39bd76,_0x1e2323._0x4d69c2,'2m0$')+_0x257fd8(_0x1e2323._0x16de88,_0x1e2323._0x17ea5c,0x816,_0x1e2323._0x2a69f5)+'nt\x20ID\x20|\x20名称'+_0x234732(0xb6c,0xf2d,'loi5',0x9bf)+_0x234732(0x9b6,0x7a9,_0x1e2323._0x2a5f0a,_0x1e2323._0x3afb4f)+'------|---'+_0x234732(_0x1e2323._0x17973b,0xfac,'Ybev',0x9ee))+_0x5e40d9['reviewer']+(_0x234732(0xb09,0xf32,'#pB[',_0x1e2323._0x4f367a)+_0x234732(0xb77,0x791,'lofD',0xcd3)+_0x257fd8(_0x1e2323._0x4cf025,_0x1e2323._0x35f687,-_0x1e2323._0x58347f,'loi5')+_0x234732(0xb7a,0x83a,_0x1e2323._0x2dbffe,_0x1e2323._0x126a06)+_0x234732(_0x1e2323._0x107ac7,0x5db,_0x1e2323._0x50d926,_0x1e2323._0xb195ff)+_0x257fd8(_0x1e2323._0x4e5976,_0x1e2323._0x41b429,_0x1e2323._0x1e7067,_0x1e2323._0xa0bdd9)+_0x257fd8(_0x1e2323._0x26c584,0x2f8,_0x1e2323._0x21e53b,'Dsi5')+'过\x20Agent\x20ID'+_0x257fd8(0xa34,_0x1e2323._0x47c196,_0x1e2323._0x47023c,'V)bU')+_0x234732(0x4d3,0x84b,'V)bU',0x707)+_0x234732(0x9e1,0x71b,'lofD',0x604));}else _0x8a604b['session'][_0x234732(0x695,0x63f,_0x1e2323._0x2e5965,_0x1e2323._0xb90dd)+'nt']={};}_0x4f2285[_0x234732(0x823,0x4b3,'V)bU',_0x1e2323._0x5527d9)](_0x8a604b[_0x257fd8(0x5f2,0x183,_0x1e2323._0x4af7c2,_0x1e2323._0x4a2985)][_0x234732(_0x1e2323._0x2ab9b4,0xc47,'2PrQ',_0x1e2323._0x34e442)+'nt'][_0x234732(_0x1e2323._0x4784ff,0x794,'!7O4',_0x1e2323._0x12e1d3)+_0x257fd8(_0x1e2323._0x2a1697,0x207,_0x1e2323._0x1da7e1,'!k$h')],undefined)&&(_0x8a604b[_0x257fd8(_0x1e2323._0x294411,-0x218,0x2f5,_0x1e2323._0xf67983)][_0x257fd8(_0x1e2323._0x4c9202,_0x1e2323._0x1a89bd,_0x1e2323._0x31a5df,_0x1e2323._0x157e27)+'nt']['maxPingPon'+_0x257fd8(_0x1e2323._0x47a05c,0x9e3,_0x1e2323._0x3ecedd,'N%cE')]=0x5d1*0x6+-0x13ab*-0x1+0x1b47*-0x2);const _0xa97ce7=_0x8a604b[_0x234732(0x3b8,0x787,_0x1e2323._0x257355,0x367)][_0x234732(_0x1e2323._0x4c4657,_0x1e2323._0x2b2096,_0x1e2323._0x5b3ec0,0x989)][_0x257fd8(_0x1e2323._0x173b6f,0x4d5,_0x1e2323._0x57273a,'Mpqc')](_0x4bf6e6=>_0x4bf6e6['id']===_0x44c751['id']),_0x26bfe5={};_0x26bfe5['primary']=_0x234732(_0x1e2323._0x27bdce,_0x1e2323._0x26ede4,'!k$h',_0x1e2323._0x2e0844)+_0x234732(_0x1e2323._0x5b30bc,_0x1e2323._0x173874,_0x1e2323._0x4781d2,0x2ac);const _0x396ced={'id':_0x44c751['id'],'workspace':_0x44c751[_0x257fd8(0x1d0,0xdc,_0x1e2323._0x385fc6,_0x1e2323._0x4f908a)+_0x234732(_0x1e2323._0x1e2393,_0x1e2323._0x26a4a9,_0x1e2323._0x55fa32,_0x1e2323._0x52546c)]||(0xcab+0x1c1c+-0x28c7,utils_1[_0x257fd8(_0x1e2323._0x58f982,0x494,0x361,'PB2^')+_0x257fd8(_0x1e2323._0x1dfa12,0xcd6,0xa01,_0x1e2323._0x4fa120)])(_0x44c751['id']),'agentDir':(0x1e73+0x12aa*0x1+0x17d*-0x21,utils_1[_0x257fd8(_0x1e2323._0x25bdb8,_0x1e2323._0x5d815c,0x41f,'l^lf')+'r'])(_0x44c751['id']),'name':_0x44c751[_0x234732(_0x1e2323._0xb60bf0,_0x1e2323._0x58f982,_0x1e2323._0x3f471b,_0x1e2323._0x3645ed)],'model':_0x8a604b[_0x234732(0x6c1,_0x1e2323._0x73222a,_0x1e2323._0x46682e,0xa14)]?.[_0x234732(0x444,_0x1e2323._0x1dd544,'93KN',0x149)]?.[_0x257fd8(_0x1e2323._0x5cdfe8,0x7da,0x8f4,_0x1e2323._0x45e68a)]||_0x26bfe5};if(_0x4f2285[_0x234732(_0x1e2323._0x2e41ec,0x9d5,_0x1e2323._0x2e393e,_0x1e2323._0x822af3)](_0xa97ce7,-0x224d+0x47*0x47+0xe9c)){const _0x34450f=_0x8a604b[_0x234732(_0x1e2323._0x5254ce,_0x1e2323._0x5cbfd2,'N%cE',0x482)][_0x257fd8(_0x1e2323._0x1f03f4,_0x1e2323._0x581cd7,0x661,'GdD8')][_0xa97ce7][_0x234732(0x82d,_0x1e2323._0x4092be,'Lh@)',_0x1e2323._0x1116f2)];_0x8a604b[_0x257fd8(0x2f3,-0x164,-0x13d,'Q]KY')][_0x234732(_0x1e2323._0x3935c6,0xa3c,_0x1e2323._0x31afab,0xa15)][_0xa97ce7]=_0x396ced;if(_0x34450f){if(_0x4f2285[_0x257fd8(_0x1e2323._0x47154c,_0x1e2323._0x39cd6a,0x534,')9w@')](_0x4f2285[_0x234732(_0x1e2323._0xd79b07,0xbf8,'7k]n',0xca5)],_0x4f2285[_0x257fd8(0x365,_0x1e2323._0x1230c8,_0x1e2323._0x40e170,_0x1e2323._0x31afab)]))_0x8a604b[_0x234732(_0x1e2323._0x5254ce,0x7e4,_0x1e2323._0x5a3014,0xc4a)][_0x234732(_0x1e2323._0x31fc91,0x77e,_0x1e2323._0x1a65ec,_0x1e2323._0xa71fda)][_0xa97ce7]['default']=_0x34450f;else{_0x167eff[_0x234732(_0x1e2323._0x4c0faf,_0x1e2323._0x2ca5ce,_0x1e2323._0x1259bd,_0x1e2323._0x1b21db)](_0x257fd8(0x508,0x283,0x787,'suJD')+_0x30f085[_0x234732(_0x1e2323._0x20dfef,_0x1e2323._0x3813d7,_0x1e2323._0x40a8c1,0x23e)]),_0x522ffc[_0x234732(0x4aa,_0x1e2323._0x32633d,'93KN',0x598)](''),_0x96145[_0x257fd8(0x694,_0x1e2323._0x20dd3f,0xa2a,'Lh@)')](_0x4f2285[_0x257fd8(0x304,0x5fe,0x5fd,_0x1e2323._0x372436)]),_0x5226a1[_0x257fd8(_0x1e2323._0x18e18f,-_0x1e2323._0x4f9507,-_0x1e2323._0x429b81,'c36g')](_0x4f2285[_0x257fd8(_0x1e2323._0x564576,0x10a,_0x1e2323._0x20d8c9,_0x1e2323._0x5bb0eb)]);for(const _0x5d160c of _0x2cf14f){const _0x994912=_0x4f2285[_0x257fd8(0x534,0x8dd,_0x1e2323._0x4292f9,'#%z0')](_0x338939,_0x5d160c[_0x257fd8(0x92d,0xaa6,_0x1e2323._0x2430ed,'FtqP')]),_0xa2ac82=_0x591b01(_0x5d160c[_0x257fd8(_0x1e2323._0x4d3535,0x553,_0x1e2323._0x84fec8,'c36g')]);_0x4e125a[_0x257fd8(0x319,0x257,0x5e5,_0x1e2323._0x28efa9)]('|\x20'+_0x5d160c['id']+_0x257fd8(0x795,_0x1e2323._0x56d286,0x99f,_0x1e2323._0x46682e)+_0x5d160c[_0x234732(0x35c,_0x1e2323._0x2aa209,_0x1e2323._0xf67983,_0x1e2323._0x239a70)]+_0x234732(_0x1e2323._0x3d22f7,_0x1e2323._0x53d34f,'VXA^',0x8cd)+_0x994912+_0x234732(_0x1e2323._0x36a9d5,0x47c,'2m0$',-_0x1e2323._0xfa6ced)+_0xa2ac82+'\x20|\x20'+_0x5d160c[_0x257fd8(_0x1e2323._0x2aa279,0x629,_0x1e2323._0x2f6721,'1mQU')]+'\x20|');}_0x458a26[_0x234732(0x852,_0x1e2323._0x94b75a,'#%z0',0x405)]('');}}}else _0x8a604b[_0x257fd8(_0x1e2323._0x49a049,_0x1e2323._0x866d55,0x969,'93KN')][_0x257fd8(_0x1e2323._0x15b3e2,_0x1e2323._0x53065b,0x489,_0x1e2323._0x695928)][_0x234732(_0x1e2323._0x5f3cbd,_0x1e2323._0x1079f5,_0x1e2323._0x25a2ee,_0x1e2323._0x4fd0ff)](_0x396ced);fs[_0x234732(_0x1e2323._0x3183cf,_0x1e2323._0x4fc7ea,_0x1e2323._0xebd1c8,_0x1e2323._0x22fd50)+_0x257fd8(_0x1e2323._0x247da3,_0x1e2323._0x4d4fca,0x722,_0x1e2323._0x4dcc56)](_0x34df3a,JSON[_0x257fd8(0x697,0x371,_0x1e2323._0x17d38e,'Bu(&')](_0x8a604b,null,0x1d*0x10+-0xc8e+-0x4*-0x2b0),_0x4f2285[_0x257fd8(_0x1e2323._0x3903c1,0xaa4,_0x1e2323._0x415383,_0x1e2323._0x40a8c1)]);const _0x754109={};return _0x754109[_0x234732(_0x1e2323._0x3a2c66,0x7ce,'suJD',0x639)]=!![],_0x754109[_0x234732(_0x1e2323._0x3b0b3a,_0x1e2323._0x272091,_0x1e2323._0x1a2d02,_0x1e2323._0xdcd974)]=_0x4f2285[_0x234732(_0x1e2323._0x297b27,0x685,_0x1e2323._0xa7a6cb,0x64b)],_0x754109;}else return'';}catch(_0xe6e248){return{'success':![],'message':_0x257fd8(0x917,0x94d,0xc46,'Foj6')+(_0x4f2285[_0x257fd8(_0x1e2323._0x34bed1,0x880,_0x1e2323._0x12b30f,'#pB[')](_0xe6e248,Error)?_0xe6e248[_0x234732(0x402,0x536,_0x1e2323._0x1af289,_0x1e2323._0x53147d)]:_0x4f2285[_0x257fd8(0x677,_0x1e2323._0x5820ca,0x44c,'l^lf')](String,_0xe6e248))};}}function removeAgentFromConfig(_0x440f11){const _0x2549bd={_0x4ce9c4:0xc90,_0x56b2aa:0xade,_0x4e4e6c:']))d',_0x3ae001:0x968,_0x415b4c:0xcdc,_0x950d7a:0xdf5,_0x1de4f9:0x1c0,_0x47cd41:0x78a,_0x3599b3:0x40a,_0x4097b9:0x68d,_0xa122e3:'!7O4',_0x5d26b8:0x243,_0x1e638f:0xc75,_0x108e8c:0xf39,_0x495366:'V23R',_0x2afc53:0x38c,_0x10c88a:0x987,_0xb963d6:0x58c,_0x59fbbe:')$Hz',_0x38e495:0x72a,_0x526d87:0x4b3,_0xb52864:0x6ac,_0x1f1dca:0x82a,_0x5e0d94:'VXA^',_0x5ce166:0xa57,_0x28e3b1:'Foj6',_0xa0673d:0xc9e,_0x1fbd81:0xa44,_0x4b2d56:'Mpqc',_0xc78391:0x8b9,_0x1e94a2:0xbb7,_0x4665f2:0xb3b,_0x1013d9:0xc7f,_0x36b851:0xf8f,_0x1c9435:0x6e1,_0x50dc88:0xac8,_0x5f738b:'KAAL',_0x3480b6:0x7f2,_0x561ef5:0x698,_0x2c4954:0x50c,_0x353d1d:0x76c,_0xca14fc:0x856,_0x562226:0x8e4,_0x1158f6:'Foj6',_0x4214e7:0x691,_0x4f77f5:0xb63,_0x325b3a:'dx1J',_0x42840c:0xa4a,_0x6c8821:0x88d,_0x51ed65:0xb52,_0x3bdcdc:'&)0b',_0x42ea3f:0xa61,_0x45cc06:0x5e8,_0x4a9a4d:0xf3d,_0x888441:0xad0,_0x392f85:0x5b6,_0x1a05ee:0x5db,_0x3817cb:'Q]KY',_0xce8331:'z8mf',_0x1f951e:0xb19,_0x2daf77:'lofD',_0x4c4097:0x8f3,_0x50ec34:'7k]n',_0x2c56c8:0x8a6,_0x53b506:0xd20,_0x475fc3:')9pR',_0x3f0fea:0xc45,_0x465f93:'ECfd',_0xf10da1:0xda6,_0x31b536:'GdD8',_0x4f3154:0xcb7,_0x5ba7f4:0x8e3,_0x14885c:0x86c,_0x1f4c68:'KAAL',_0x2c864f:0xd28,_0x2dd237:0xc05,_0x56891c:0xc7c,_0xc97418:'2m0$',_0x4478b0:0x9c9,_0x1f078f:0xe26,_0xc4d631:0xbfb,_0x157e8f:'HQvh',_0x3d183e:0xb72,_0x5dfc89:0xdd6,_0x826870:0xdfe,_0xab0b7a:0x7d8,_0x57fb97:0xc9e,_0x279aed:0x84d,_0x43aeff:'2PrQ',_0x3206e7:0x701,_0x624270:0x1043,_0xcff00f:0xc44,_0x5d1a3b:0x9cb,_0x34f512:0x72e,_0x51a694:'ebUi',_0x1a2c84:'k7fb',_0x2f774a:0x7af,_0x240744:0xed7,_0x2a90f4:'Ybev',_0x383493:0xeb3,_0xc7af61:0xc6d,_0x1051a6:0xfa0,_0x38dc3b:0xcb3,_0x11d181:'V)bU',_0x11967d:0xcb2,_0x494dc2:0x89a,_0x5205e3:0x6d2,_0x56661c:0xa28,_0x2afa90:'7k]n',_0x238978:0x8bf,_0x4571c3:0x9f2,_0x3cd1dd:0xa9c,_0x14b74e:0xd3d,_0x5b3688:0xca9,_0x39dda7:'$6rX',_0x76b1a5:0xfb7,_0x4f2f1c:0xc19,_0x2a348a:'dx1J',_0x4f81ca:0xaca,_0x45591c:0xa94,_0x22c9fc:0xdc5,_0x2281e7:0x817,_0x5f56e0:'7k]n',_0x721d76:0x6ba,_0x4fe56b:'2PrQ',_0x141f0a:0x927,_0x54c26d:0x848,_0x262a39:')9pR',_0x13dd8d:0x10c4,_0x222db6:'Foj6',_0x3f8153:0xe0e,_0xf5a2fc:0x774,_0x2642f5:0xcca,_0xaef4d0:0x971,_0x3a7285:0x639,_0x198adf:0x741,_0x3360f3:0xedd,_0x499cbf:0xa85,_0x256a37:0x887,_0x5689f5:0x813,_0x101d22:'*LpW',_0x3b3509:0x4e4,_0x3e4686:0x3fa,_0x50b28f:0x3,_0xe757b2:0x6a7,_0x2f4a39:0x70e,_0x31c40f:0x8f3,_0x395375:0xb79,_0x5b617e:'N%cE',_0x3d3932:0x400,_0x5be2e2:0xa52,_0x29ef3f:0x7d1,_0x5c8cbc:'VXA^',_0x59b288:0xe23,_0xf42c59:0xa6d,_0x4df18f:'V23R',_0x266a39:0xe97,_0x50b1f3:0x97b,_0x82fa75:0xc40,_0x31d850:0x9f5,_0x95ae05:'dx1J',_0x28ede0:0x6fc,_0x21b9e0:0xbc3,_0x266c34:'#%z0',_0x3a71b1:0x1039,_0x3a4d70:0xb7f,_0x30c75c:'Dsi5',_0x309e8b:0x503,_0x34b887:'v2$P',_0x226f1e:0xa5b,_0x4420fe:'KDG1',_0x544337:0x729,_0x3dcf3d:0x8e8,_0xfc38a2:0x256,_0x359184:0x6b1,_0x181bd7:'lofD',_0x4ae851:0xa6e,_0x3a556e:0x8fd,_0x1b5af6:0xa50,_0x203226:0x830,_0x4f2655:0xc34,_0x1b1f84:0x913,_0x307510:0x4ed,_0x1a316d:'PB2^',_0x14dc1f:0xc32,_0x33c74c:0x40c,_0x5a2833:'1mQU',_0x2d5bc9:0xc5d,_0x647f59:0xb20,_0x46324a:0x6e1,_0x3306ad:0x740,_0x349622:0x454,_0x8a5b55:0x706,_0xb79b96:0x63a,_0x47560d:0x852,_0x4a8261:'3Y(#',_0x2d5dc6:0xba7,_0x38072a:0x739,_0x34daaa:'N%cE',_0x468a06:0x321,_0x3c6eb1:0x4ad,_0x20754d:0x64e,_0x23b1b0:']))d'},_0xe3c313={_0x5d74d3:0x123,_0x15bc63:0x22,_0x20ac7c:0x3ec},_0x4ad236={_0x36258d:0x30,_0x740549:0x137},_0x5ea1e2={};_0x5ea1e2[_0x1aa1f4(_0x2549bd._0x4ce9c4,_0x2549bd._0x56b2aa,_0x2549bd._0x4e4e6c,_0x2549bd._0x3ae001)]=function(_0x527d9d,_0x30182c){return _0x527d9d===_0x30182c;},_0x5ea1e2[_0x1aa1f4(0x79c,0xa9a,'LaEV',0xd63)]=_0x1aa1f4(0x9fa,_0x2549bd._0x415b4c,_0x2549bd._0x4e4e6c,_0x2549bd._0x950d7a),_0x5ea1e2[_0x1aa1f4(_0x2549bd._0x1de4f9,0x62e,'Bu(&',0x28c)]=_0x1aa1f4(0xb6e,_0x2549bd._0x47cd41,'GdD8',0x3a7);function _0x385ae5(_0x51346c,_0x4f2144,_0x27eb90,_0xaf3aaf){return _0x5bf319(_0x51346c-_0x4ad236._0x36258d,_0x51346c- -_0x4ad236._0x740549,_0x4f2144,_0xaf3aaf-0x196);}_0x5ea1e2[_0x1aa1f4(_0x2549bd._0x3599b3,_0x2549bd._0x4097b9,_0x2549bd._0xa122e3,_0x2549bd._0x5d26b8)]='main';function _0x1aa1f4(_0x2ea56b,_0x197213,_0x46f886,_0x1e9232){return _0x259b54(_0x46f886,_0x197213-_0xe3c313._0x5d74d3,_0x46f886-_0xe3c313._0x15bc63,_0x197213-_0xe3c313._0x20ac7c);}_0x5ea1e2[_0x1aa1f4(0xb53,_0x2549bd._0x1e638f,'Foj6',_0x2549bd._0x108e8c)]=_0x385ae5(0x6ba,_0x2549bd._0x495366,_0x2549bd._0x2afc53,_0x2549bd._0x10c88a)+_0x1aa1f4(0x679,_0x2549bd._0xb963d6,_0x2549bd._0x59fbbe,0x7ef)+'in)',_0x5ea1e2[_0x385ae5(_0x2549bd._0x38e495,'hn9d',_0x2549bd._0x526d87,_0x2549bd._0xb52864)]=_0x385ae5(_0x2549bd._0x1f1dca,_0x2549bd._0x5e0d94,0x57a,0x95a),_0x5ea1e2[_0x1aa1f4(_0x2549bd._0x5ce166,0x918,_0x2549bd._0x28e3b1,0xaca)]='配置中没有\x20Agen'+_0x1aa1f4(_0x2549bd._0xa0673d,_0x2549bd._0x1fbd81,'V23R',0x76e),_0x5ea1e2[_0x385ae5(0x79d,_0x2549bd._0x4b2d56,0x8a2,0xaff)]=function(_0x1b2f80,_0x42ad92){return _0x1b2f80<_0x42ad92;},_0x5ea1e2[_0x385ae5(_0x2549bd._0xc78391,'HQvh',_0x2549bd._0x1e94a2,0x97d)]=_0x385ae5(_0x2549bd._0x4665f2,')$Hz',_0x2549bd._0x1013d9,_0x2549bd._0x36b851),_0x5ea1e2[_0x385ae5(_0x2549bd._0x1c9435,'KAAL',_0x2549bd._0x50dc88,0x4b5)]=_0x385ae5(0x906,_0x2549bd._0x5f738b,_0x2549bd._0x3480b6,0x4a9)+_0x385ae5(_0x2549bd._0x561ef5,'ECfd',0x516,_0x2549bd._0x2c4954),_0x5ea1e2[_0x1aa1f4(_0x2549bd._0x353d1d,_0x2549bd._0xca14fc,'Lh@)',0xb63)]=_0x385ae5(_0x2549bd._0x562226,_0x2549bd._0x1158f6,_0x2549bd._0x4214e7,0x820)+_0x385ae5(_0x2549bd._0x4f77f5,_0x2549bd._0x325b3a,0x968,_0x2549bd._0x42840c),_0x5ea1e2[_0x1aa1f4(_0x2549bd._0x6c8821,_0x2549bd._0x51ed65,_0x2549bd._0x3bdcdc,0xb1c)]=function(_0x228339,_0x3056dc){return _0x228339 instanceof _0x3056dc;};const _0x4cc2e3=_0x5ea1e2;try{if(_0x4cc2e3[_0x385ae5(0x7f7,'*LpW',_0x2549bd._0x42ea3f,_0x2549bd._0x45cc06)](_0x1aa1f4(_0x2549bd._0x4a9a4d,_0x2549bd._0x888441,'#pB[',0xe37),_0x4cc2e3[_0x1aa1f4(_0x2549bd._0x392f85,_0x2549bd._0x1a05ee,_0x2549bd._0x3817cb,0x7b0)])){const _0x1ded26=(0x28*0x36+0x593+-0xe03,utils_1[_0x385ae5(0xa9d,_0x2549bd._0xce8331,0x94c,0xd3e)+_0x1aa1f4(0xc48,0xa13,'7k]n',_0x2549bd._0x1f951e)])();if(!fs[_0x1aa1f4(0x88b,0x752,_0x2549bd._0x2daf77,0x60f)](_0x1ded26)){const _0x35d657={};return _0x35d657[_0x1aa1f4(0x6ba,_0x2549bd._0x4c4097,_0x2549bd._0x50ec34,_0x2549bd._0x2c56c8)]=![],_0x35d657[_0x1aa1f4(0xd59,0xcda,'N%cE',_0x2549bd._0x53b506)]=_0x4cc2e3[_0x385ae5(0xa99,_0x2549bd._0x475fc3,0x706,0xa63)],_0x35d657;}if(_0x4cc2e3[_0x1aa1f4(_0x2549bd._0x3f0fea,0xbb6,_0x2549bd._0x465f93,0xc50)](_0x440f11,_0x4cc2e3[_0x1aa1f4(0xf16,_0x2549bd._0xf10da1,_0x2549bd._0x31b536,_0x2549bd._0x4f3154)])){const _0x4b0d46={};return _0x4b0d46['success']=![],_0x4b0d46[_0x385ae5(_0x2549bd._0x5ba7f4,'loi5',0x675,0x90e)]=_0x4cc2e3[_0x1aa1f4(0x1022,0xd63,'GdD8',0xdd1)],_0x4b0d46;}const _0xacecf6=fs['readFileSy'+'nc'](_0x1ded26,_0x4cc2e3[_0x1aa1f4(_0x2549bd._0x14885c,0x589,_0x2549bd._0x1f4c68,0x139)]),_0x5d48fa=JSON[_0x1aa1f4(0x8b7,_0x2549bd._0x2c864f,'Bu(&',_0x2549bd._0x2dd237)](_0xacecf6);if(!_0x5d48fa[_0x385ae5(_0x2549bd._0x56891c,_0x2549bd._0xc97418,_0x2549bd._0x4478b0,_0x2549bd._0x1f078f)]?.['list']){const _0x399993={};return _0x399993[_0x385ae5(0x99c,_0x2549bd._0x325b3a,_0x2549bd._0xc4d631,0xd10)]=![],_0x399993[_0x385ae5(0xa8b,_0x2549bd._0x157e8f,0x6c1,0xa17)]=_0x4cc2e3[_0x385ae5(_0x2549bd._0x3d183e,'HQvh',_0x2549bd._0x5dfc89,_0x2549bd._0x826870)],_0x399993;}const _0x43a7ff=_0x5d48fa[_0x385ae5(0xa6c,'*LpW',_0x2549bd._0xab0b7a,_0x2549bd._0x57fb97)][_0x1aa1f4(0x7c8,_0x2549bd._0x279aed,_0x2549bd._0x43aeff,_0x2549bd._0x3206e7)][_0x1aa1f4(_0x2549bd._0x624270,_0x2549bd._0xcff00f,'$6rX',_0x2549bd._0x5d1a3b)](_0x1fe8aa=>_0x1fe8aa['id']===_0x440f11);if(_0x4cc2e3[_0x1aa1f4(_0x2549bd._0x34f512,0xa47,_0x2549bd._0x51a694,0x5f3)](_0x43a7ff,0x244*-0x5+-0x1bce+0x2722)){if(_0x4cc2e3[_0x385ae5(0xb40,_0x2549bd._0x1a2c84,0x8e4,_0x2549bd._0x2f774a)](_0x4cc2e3[_0x1aa1f4(_0x2549bd._0x240744,0xbf3,_0x2549bd._0x2a90f4,_0x2549bd._0x383493)],'IPBUg')){const _0x10b28c={};return _0x10b28c['success']=![],_0x10b28c[_0x385ae5(_0x2549bd._0xc7af61,_0x2549bd._0x5e0d94,_0x2549bd._0x1051a6,_0x2549bd._0x38dc3b)]='Agent\x20不在配置'+'中',_0x10b28c;}else return _0x1aa1f4(0xa30,0xdea,_0x2549bd._0x11d181,_0x2549bd._0x11967d)+_0x1aa1f4(_0x2549bd._0x494dc2,_0x2549bd._0x5205e3,'ebUi',0x783)+_0x385ae5(0xb5a,'ECfd',0xcfa,0xd88)+_0x1aa1f4(0xdc6,_0x2549bd._0x56661c,_0x2549bd._0x2afa90,0xb8d)+_0x1aa1f4(_0x2549bd._0x238978,_0x2549bd._0x4571c3,'*LpW',0xd5d)+_0x1aa1f4(0x97f,_0x2549bd._0x3cd1dd,'GdD8',_0x2549bd._0x14b74e)+_0x1aa1f4(_0x2549bd._0x5b3688,0xd21,_0x2549bd._0x39dda7,_0x2549bd._0x76b1a5)+_0x1aa1f4(_0x2549bd._0x4f2f1c,0xc27,_0x2549bd._0x2a348a,_0x2549bd._0x4f81ca)+_0x385ae5(_0x2549bd._0x45591c,'k7fb',_0x2549bd._0x22c9fc,_0x2549bd._0x2281e7)+_0x385ae5(0x69f,_0x2549bd._0x5f56e0,_0x2549bd._0x721d76,0x58b)+_0x1aa1f4(0xba9,0x83b,_0x2549bd._0x4fe56b,_0x2549bd._0x141f0a)+_0x385ae5(_0x2549bd._0x54c26d,_0x2549bd._0x262a39,0xca4,0xace)+_0x1aa1f4(0xe09,0xcf3,'ebUi',_0x2549bd._0x13dd8d)+'----|-----'+_0x1aa1f4(0x73b,0xa29,_0x2549bd._0x222db6,_0x2549bd._0x3f8153)+_0x249c54[_0x1aa1f4(_0x2549bd._0xf5a2fc,0x7d2,_0x2549bd._0x5e0d94,0xa41)]+(_0x385ae5(0xbae,'LaEV',0xd80,0xf0b)+_0x1aa1f4(_0x2549bd._0x2642f5,_0x2549bd._0xaef4d0,_0x2549bd._0xce8331,_0x2549bd._0x3a7285)+_0x1aa1f4(_0x2549bd._0x198adf,0x9c8,'N%cE',0x70f)+_0x1aa1f4(_0x2549bd._0x3360f3,0xb42,_0x2549bd._0x5e0d94,0xa58)+'---------|'+_0x385ae5(_0x2549bd._0x499cbf,'HQvh',_0x2549bd._0x256a37,_0x2549bd._0x5689f5)+_0x385ae5(0xb1f,_0x2549bd._0x101d22,0x78b,0xdb2))+_0x2529ed[_0x385ae5(_0x2549bd._0x3b3509,'LaEV',0x4c2,0x7dd)]+(_0x385ae5(_0x2549bd._0x3e4686,'V23R',_0x2549bd._0x50b28f,0x5e4)+_0x385ae5(0x6af,_0x2549bd._0x2a348a,_0x2549bd._0xe757b2,_0x2549bd._0x2f4a39)+_0x385ae5(0xaad,_0x2549bd._0x31b536,_0x2549bd._0x31c40f,_0x2549bd._0x395375)+_0x385ae5(0x442,_0x2549bd._0x5b617e,_0x2549bd._0x3d3932,0x478)+_0x385ae5(0x498,'GdD8',0x457,0x35f)+_0x1aa1f4(0xa4e,_0x2549bd._0x5be2e2,'Lh@)',_0x2549bd._0x29ef3f)+_0x385ae5(0xb83,_0x2549bd._0x5c8cbc,0xc16,_0x2549bd._0x59b288)+_0x385ae5(_0x2549bd._0xf42c59,_0x2549bd._0x4df18f,0xdb9,_0x2549bd._0x266a39)+_0x1aa1f4(_0x2549bd._0x50b1f3,0x895,'z8mf',0xcbc)+_0x385ae5(_0x2549bd._0x82fa75,'$6rX',_0x2549bd._0x31d850,0x9a6)+_0x1aa1f4(0xd2c,0xb1a,_0x2549bd._0x95ae05,_0x2549bd._0x28ede0));}if(_0x5d48fa[_0x385ae5(_0x2549bd._0x21b9e0,_0x2549bd._0x266c34,0xd71,_0x2549bd._0x3a71b1)][_0x1aa1f4(0xc8d,_0x2549bd._0x3a4d70,_0x2549bd._0x30c75c,0xca2)][_0x43a7ff][_0x1aa1f4(_0x2549bd._0x309e8b,0x923,_0x2549bd._0x34b887,0xa3c)]){const _0x426dfe={};return _0x426dfe[_0x385ae5(_0x2549bd._0x226f1e,_0x2549bd._0x4420fe,_0x2549bd._0x544337,0x713)]=![],_0x426dfe[_0x385ae5(0x59d,'Dsi5',_0x2549bd._0x3dcf3d,_0x2549bd._0xfc38a2)]=_0x4cc2e3[_0x385ae5(_0x2549bd._0x359184,_0x2549bd._0x181bd7,_0x2549bd._0x4ae851,_0x2549bd._0x3a556e)],_0x426dfe;}_0x5d48fa[_0x1aa1f4(0xd5b,_0x2549bd._0x1b5af6,'!k$h',_0x2549bd._0x203226)][_0x1aa1f4(0xa42,_0x2549bd._0x4f2655,'Q]KY',0xb46)][_0x385ae5(_0x2549bd._0x1b1f84,_0x2549bd._0x495366,_0x2549bd._0x307510,0x8b5)](_0x43a7ff,-0x15b*0x15+-0x3*0x3d+0xf1*0x1f),fs[_0x385ae5(0xa47,_0x2549bd._0x1a316d,0xc4c,0xb6b)+_0x385ae5(0x854,_0x2549bd._0xce8331,_0x2549bd._0x14dc1f,_0x2549bd._0x33c74c)](_0x1ded26,JSON[_0x385ae5(0xbbb,_0x2549bd._0x5a2833,_0x2549bd._0x2d5bc9,_0x2549bd._0x647f59)](_0x5d48fa,null,-0x1*-0x1d41+0x1*-0x17c2+0x57d*-0x1),_0x4cc2e3[_0x385ae5(0x885,'&)0b',_0x2549bd._0x46324a,0x5d8)]);const _0x43aa0c={};return _0x43aa0c['success']=!![],_0x43aa0c[_0x385ae5(_0x2549bd._0x3306ad,_0x2549bd._0x465f93,0x522,_0x2549bd._0x349622)]=_0x4cc2e3[_0x385ae5(_0x2549bd._0x8a5b55,'#%z0',0x628,_0x2549bd._0xb79b96)],_0x43aa0c;}else{if(_0x4cc2e3[_0x1aa1f4(_0x2549bd._0x47560d,0x779,_0x2549bd._0x4a8261,_0x2549bd._0x2d5dc6)](_0x37ccbb,_0x1600fe))_0x163be7=_0x47a700;_0x4d3929[_0x3538d5]=_0x24ad7d[_0x1c061f];}}catch(_0x1c50d6){return{'success':![],'message':_0x385ae5(_0x2549bd._0x38072a,_0x2549bd._0x34daaa,_0x2549bd._0x468a06,0xb74)+(_0x4cc2e3['fwmDv'](_0x1c50d6,Error)?_0x1c50d6[_0x1aa1f4(_0x2549bd._0x3c6eb1,_0x2549bd._0x20754d,_0x2549bd._0x23b1b0,0x20c)]:String(_0x1c50d6))};}}function updateAgentToAgentAllow(_0xa96b54,_0x83db35,_0x10bd98){const _0x1cf534={_0xfade3:0x3e8,_0x47199d:0x3ed,_0x2e389c:0x94f,_0x5df9f:'k7fb',_0x916b97:0x2fe,_0x40fb75:0x5f6,_0x14771e:']))d',_0x3606fc:0xa4f,_0x609244:0x713,_0x21c9d1:0x1aa,_0x2533e1:0x3ce,_0x2b0444:0xa20,_0x3587b0:0x9e0,_0x3ad70a:0x9b9,_0xa1257c:0x6b4,_0x41be03:0xab5,_0x4658c8:0xb5e,_0x12d9c3:0xa74,_0x542c8c:0xabe,_0x321a09:']GM1',_0x4da48b:0x5cd,_0x5f5912:0x3b8,_0x43ab45:0xb62,_0x59a709:0xbff,_0x578105:0xf77,_0x4a934f:0xa6b,_0x54ce64:0xb95,_0x9d63c5:0x27c,_0x2cc938:'z8mf',_0x11af58:0x159,_0x4989ff:'!k$h',_0x24cf8c:0x94c,_0x15845b:0x4c7,_0x570340:0x1fb,_0x6aa885:0xce5,_0x46d5a1:0x1161,_0x1d0317:0xe36,_0x5e5017:0xc3f,_0xe630a3:0xcb8,_0x3fa500:'Ybev',_0x4400ba:0x86a,_0xde24d3:0x88b,_0x3ac997:'$6rX',_0x2d4938:0x9ff,_0x2fb04f:0x734,_0x128c35:0x339,_0x92ff5c:'N%cE',_0xde7bb3:0x416,_0x116245:0x281,_0x4de76d:0x556,_0x21afa5:0x1113,_0x50a778:0xf3c,_0x3d0d82:0xd13,_0x4e4f9a:0x1e4,_0x4cfa6c:0x6,_0x180e5a:0x4aa,_0x3a4eaa:0x6ba,_0x329aa6:0xc89,_0xbfb588:0x420,_0x197b10:0x41,_0x69cc5d:0x2bf,_0x4448a6:0x4c6,_0x11a271:'*LpW',_0x5e8da4:0x47a,_0x544ac5:'c36g',_0x23625d:0x857,_0x399637:0x50d,_0x3d2fb7:0x8bc,_0x161f65:0x6ad,_0x13827d:0x38c,_0x122c62:'1mQU',_0x5ebc52:')9pR',_0x441356:0x58e,_0x4a4083:0x479,_0x10dd67:'suJD',_0xe723ca:0x572,_0x90ca9e:0x4f,_0x491399:0x1cc,_0x46cc5e:'hn9d',_0x5f07b3:0x94,_0x1a2bae:0xee0,_0x3bcc4e:'HQvh',_0x19ce1f:0xdc3,_0x3696cf:0xd10,_0x443485:'VXA^',_0xe77189:0x982,_0x45f981:'Dsi5',_0x4feb57:0x2a,_0x194e97:'ebUi',_0x1e18a3:0x261,_0x40be2b:0x5db,_0x5a4946:0x154,_0x1d8dbf:0x69,_0x2c92ad:'VXA^',_0x2a0bb7:0xcc,_0x4dca7e:0x749,_0x46708a:'&)0b',_0x3208c3:0x3ad,_0x39b64e:0x784,_0x290748:0x346,_0x1660b0:')$Hz',_0x12e2c2:0xb49,_0x2db0a1:0x809,_0x28b953:0x814,_0x3272e4:0x8a0,_0x4faaf2:0x23e,_0x5deb11:0x1ce,_0x47f276:'Ybev',_0x16ccf7:0x47d,_0x34a43a:0x7cf,_0x5a61c3:0x70a,_0x2a7cb5:0x399,_0x2b106b:0x2cf,_0x1872b3:'lofD',_0x44f60a:0xc70,_0x303885:0xe7d,_0x30bc7a:'93KN',_0x10ab69:0xf5e,_0x17dcc3:0xc96,_0xd9fadd:0xd08,_0x229c6e:0x359,_0x1e6874:0xc1,_0x1f50b1:0x1ae,_0x2f05d0:0x5e4,_0x4798d0:0x79a,_0x250768:'93KN',_0x11b708:0xcbe,_0xd9c2e4:0x4a1,_0x54b105:'Lh@)',_0x2d6e7c:0x807,_0x2a084d:'c36g',_0x5c747b:0x725,_0xe0d5a3:0x764,_0x40d7e7:0x77e,_0x109b8c:0x686,_0x420b6e:0x970,_0x1cfd62:'!7O4',_0x29e9aa:0x1157,_0x3fbe45:0x938,_0x199078:0x487,_0x18d311:0x7a5,_0x37934a:0xa08,_0x4c7664:0x757,_0x3b4ca8:'KDG1',_0x26d897:0xd2b,_0x3e5af8:0xd4f,_0x3ec751:')9w@',_0x5b1329:0x8c1,_0x3c24d9:'FtqP',_0x24e2a4:0xd23,_0x4411bb:0x98f,_0x3c31df:0xf7a,_0x529754:0xb14,_0x5728ea:'v2$P',_0x27a039:0x51d,_0x30f2f2:0x1d8,_0x49bf6b:0x21a,_0x4e0477:0x13a,_0x554a46:0x782,_0x1ccae6:0x9c0,_0x579f53:0x7fc,_0x255e73:0x41a,_0x21584e:0x70f,_0x38a0f1:0xb6d,_0x3c4d9d:0xad9,_0xc7a7d4:0xc44,_0x41e7b9:0xceb,_0x1ec531:0x11d,_0x48a5fb:0x764,_0x53fdbc:0xa6b,_0x445f3f:0x802,_0x16bdfd:0xc40,_0x44c4ca:0x922,_0x173105:0x981,_0xbbfb16:'ebUi',_0x3897d3:0x7c8,_0x29696a:'V)bU',_0x3d5739:0x899,_0x3a8ad6:0xe5a,_0x3002b5:'N%cE',_0x563d36:0xec5,_0x1a738a:0xa57,_0x151f95:'KAAL',_0x2db00f:0xa91,_0x1002e8:0x358,_0x28d960:0x6a7,_0x3d1e5e:'V23R',_0x3b9052:0x6e4,_0x340379:0x580,_0x1e5b12:0x9f2,_0x376c92:0x754,_0x5f0e68:0x3aa,_0x2c038a:0x105,_0x25ca37:0x6d5,_0xd19090:0x933,_0x17922c:0x750,_0x4ecbc7:'1mQU',_0x4fd9d1:0xe12,_0x4ea96f:0x59d,_0x8341ab:0x3eb,_0x162aaf:0x99f,_0x5d6943:0xb30,_0x3b6a34:0x5ec,_0x2113d3:0x636,_0x44b462:'1mQU',_0x527754:0x9e3,_0x125a19:0x1df,_0x43484b:0x31,_0x234ac7:'z8mf',_0x51b598:0x492,_0x3c65cc:'VXA^',_0x4190a6:0x242,_0x33eb41:0x33e,_0x1cff55:'ECfd',_0x297dda:'$6rX',_0x596abd:0xb6a,_0x5caef9:0xe29,_0x179f6f:'PB2^',_0x360bd5:0xc74,_0x4f57ce:0xf8,_0x3bb76f:0x290,_0x2f00c1:'2PrQ',_0x20e461:0xe31,_0x3f4f2b:0x646,_0x1aedbc:0x5df,_0x408e6a:'Dsi5',_0x4312c3:0x4b0,_0x1f1ffe:0x911,_0x1e8fd3:'V)bU',_0x3a351a:0xcdd,_0x4cfa2c:0x886,_0x13c99f:0x4e,_0x13fa80:0x1bf,_0x17e95d:0x617,_0x285f67:0x293,_0x3d6b10:0x331,_0x4ab177:'7k]n',_0x426e63:0x874,_0x4d1609:0x13c,_0x5067bf:0x1e4,_0x5db968:0xd80,_0x24284b:0xd8d,_0x153859:0x12,_0x2363eb:0x6ef,_0x1d867b:0x54a,_0x4c3d75:0xaa4,_0x428746:0xb67,_0x4aa15b:0xc1c,_0x38a128:0x9f0,_0x5936f6:0x819,_0x5e6495:0x702,_0x31f2b2:0x55e,_0x2fd938:0x602,_0x3ac0d3:0x712,_0x18985b:0x83e,_0x4006c6:0x4b2,_0x5160fb:0x8f1,_0x1d4241:0x88f,_0x1f7e00:0x9cd,_0x3a176e:0x7b,_0x3280f0:0xa8,_0x14df24:'2PrQ',_0xec6627:0xa4,_0x3c2d73:0xee0,_0x118d48:'dx1J',_0x293602:0xf5f,_0x1d07a0:0xbdc,_0x34c264:0x1026,_0x18db63:'Foj6',_0x5e4836:0xd50,_0x502967:0xd7f,_0x43e081:0x5bc,_0xeda197:0x18c,_0x30e8c0:0x114,_0x260cf5:0xbfd,_0x2acdf7:0x251,_0x1d18c1:'7k]n',_0x45f932:0x860,_0x4f8624:0x5ce,_0x1e5968:0x77e,_0x4b30db:0x5ce,_0x5d229:'Lh@)',_0x38629e:0x344,_0x3a1152:0xb76,_0x4514ff:0x815,_0x48656d:0x654,_0x2538bf:0xb91,_0x2d9417:0xac3,_0x2e910e:0x83d,_0x56dab7:0x42c,_0x1c678e:'da@G',_0x4c8849:0xa70,_0x4cb27d:'!k$h',_0x29a94a:0x79c,_0x2809f5:0xaaf,_0x23cf4b:'GdD8',_0x3b7f2c:0x7a0,_0x45ce6f:0x66d,_0x203846:0x717,_0x219e2f:0xb0c,_0x4071b9:0x958,_0x4e4464:0xdf6,_0x6408ab:0x69e,_0x3e7067:0x591,_0x3e282f:'loi5',_0x5e649f:0x6f8,_0x24c9f4:0x648,_0x551990:0x2f0,_0x190aae:'&)0b',_0x2b558f:0x11c,_0x40428b:'KAAL',_0x1ca467:0x88},_0x32d935={_0xb48220:0x99,_0xbfc035:0x13e},_0x8ff594={_0xfeed0c:0x4f};function _0x4097f8(_0x56abb3,_0x298214,_0x5984fe,_0x21a7f6){return _0x5bf319(_0x56abb3-_0x8ff594._0xfeed0c,_0x21a7f6-0x8a,_0x298214,_0x21a7f6-0x2);}const _0x51f762={'sVheP':function(_0x5e0d4b,_0x20fa43){return _0x5e0d4b instanceof _0x20fa43;},'FQNnX':function(_0x17986a,_0x45a81c){return _0x17986a(_0x45a81c);},'puCEi':_0x50c2a5(_0x1cf534._0xfade3,_0x1cf534._0x47199d,'suJD',0x2c1),'pqtaT':_0x50c2a5(0x87f,_0x1cf534._0x2e389c,_0x1cf534._0x5df9f,0x6af),'ZNeUm':_0x4097f8(_0x1cf534._0x916b97,'*LpW',0x38a,_0x1cf534._0x40fb75),'jydZQ':_0x4097f8(0xa22,_0x1cf534._0x14771e,_0x1cf534._0x3606fc,0xba6)+_0x4097f8(_0x1cf534._0x609244,'2m0$',0x902,0xac4),'LciSM':_0x50c2a5(_0x1cf534._0x21c9d1,_0x1cf534._0x2533e1,'dx1J',0x34e),'Ftngu':_0x4097f8(_0x1cf534._0x2b0444,'KAAL',0xc27,_0x1cf534._0x3587b0)+_0x4097f8(0x42b,'#pB[',_0x1cf534._0x3ad70a,_0x1cf534._0xa1257c)+_0x4097f8(0xa09,'2PrQ',0x801,0xb34)+_0x4097f8(0xce4,'V23R',_0x1cf534._0x41be03,_0x1cf534._0x4658c8),'KEnaX':'utf-8','yzKrW':_0x4097f8(_0x1cf534._0x12d9c3,'93KN',0x9d2,0xaad),'RNYYE':_0x4097f8(_0x1cf534._0x542c8c,_0x1cf534._0x321a09,0xcbe,0xe6f),'HFGzU':'执行者','gECvD':_0x50c2a5(_0x1cf534._0x4da48b,_0x1cf534._0x5f5912,'$6rX',0x1da),'zITRj':_0x50c2a5(0x873,0x45d,'PB2^',_0x1cf534._0x43ab45),'vTVdk':function(_0x6e304a,_0x23956b){return _0x6e304a!=_0x23956b;},'pYiOk':function(_0x1b8aad,_0x97acac){return _0x1b8aad!==_0x97acac;},'EHjgH':_0x4097f8(0xbde,'KAAL',0xff1,_0x1cf534._0x59a709),'vTtBz':function(_0x56c00b,_0x337cb0,_0x2978a5,_0x2078d1){return _0x56c00b(_0x337cb0,_0x2978a5,_0x2078d1);},'HXgGD':function(_0x44089a,_0x3f7cb2,_0x1ef7cb){return _0x44089a(_0x3f7cb2,_0x1ef7cb);},'UMAdm':function(_0x32c256,_0x3d7996){return _0x32c256(_0x3d7996);},'QWyaP':function(_0x35fd03,_0x2b8e45){return _0x35fd03===_0x2b8e45;},'QaoNM':_0x4097f8(_0x1cf534._0x578105,'3Y(#',_0x1cf534._0x4a934f,_0x1cf534._0x54ce64),'VqHEn':_0x50c2a5(_0x1cf534._0x9d63c5,-0x59,_0x1cf534._0x2cc938,-_0x1cf534._0x11af58),'TmfGY':function(_0x2ef7c3,_0x773d9){return _0x2ef7c3!==_0x773d9;},'qyAFx':_0x4097f8(0xa24,'&)0b',0x68a,0x6d7),'DdUwx':_0x4097f8(0x977,_0x1cf534._0x4989ff,_0x1cf534._0x24cf8c,0xcbc),'nGngz':function(_0x137e1a,_0x2c16ed){return _0x137e1a===_0x2c16ed;},'jRmYZ':_0x50c2a5(0x600,0x3d9,'Q]KY',0x509),'oqEnc':function(_0x15f5bc,_0x379bf7){return _0x15f5bc===_0x379bf7;},'WGOwU':_0x50c2a5(0x60b,_0x1cf534._0x15845b,'93KN',0x230),'bGIMN':function(_0xb8943a,_0x2b6dd9){return _0xb8943a===_0x2b6dd9;},'MEnhA':_0x50c2a5(0x623,_0x1cf534._0x570340,'l^lf',0x532),'BNrrW':function(_0x1a0097,_0xbf293){return _0x1a0097===_0xbf293;},'PvpcY':_0x4097f8(0x886,'da@G',_0x1cf534._0x6aa885,0x9ee),'TcTRE':_0x4097f8(_0x1cf534._0x46d5a1,'V)bU',_0x1cf534._0x1d0317,0xd1f),'Afopx':function(_0x4de90a,_0x3df24c){return _0x4de90a===_0x3df24c;},'HkJfu':function(_0xb554bf,_0x542ec6){return _0xb554bf>_0x542ec6;},'Gceyf':_0x4097f8(0xde9,'*LpW',_0x1cf534._0x5e5017,0x9d0),'MwHJd':function(_0x445c2f,_0x2ba134){return _0x445c2f!==_0x2ba134;},'jdfUx':_0x4097f8(_0x1cf534._0xe630a3,_0x1cf534._0x3fa500,0xd83,0xb83),'BGbNl':function(_0x36e0b1,_0x54ec47){return _0x36e0b1 instanceof _0x54ec47;},'bQhJx':function(_0x173ca5,_0x1df2ef){return _0x173ca5(_0x1df2ef);}},_0x2a0121={};_0x2a0121[_0x4097f8(_0x1cf534._0x4400ba,'Dsi5',0xbfb,0x9ea)]=![];function _0x50c2a5(_0x3ebad9,_0x4a52ae,_0x38f150,_0x5df506){return _0x259b54(_0x38f150,_0x4a52ae-0x2e,_0x38f150-_0x32d935._0xb48220,_0x3ebad9- -_0x32d935._0xbfc035);}_0x2a0121[_0x4097f8(_0x1cf534._0xde24d3,_0x1cf534._0x3ac997,0x655,_0x1cf534._0x2d4938)]='',_0x2a0121[_0x50c2a5(_0x1cf534._0x2fb04f,_0x1cf534._0x128c35,_0x1cf534._0x92ff5c,_0x1cf534._0xde7bb3)]=[],_0x2a0121[_0x50c2a5(0x533,_0x1cf534._0x116245,'PB2^',_0x1cf534._0x4de76d)]=[];const _0x39561c=_0x2a0121;try{if(_0x51f762[_0x4097f8(_0x1cf534._0x21afa5,'hn9d',_0x1cf534._0x50a778,_0x1cf534._0x3d0d82)]('xTXJi',_0x51f762[_0x50c2a5(_0x1cf534._0x4e4f9a,_0x1cf534._0x4cfa6c,')9pR',_0x1cf534._0x180e5a)])){const _0x42027e=(0x179*0x13+-0xfc9+0x2*-0x619,utils_1[_0x4097f8(_0x1cf534._0x3a4eaa,'PB2^',_0x1cf534._0x329aa6,0xa0b)+_0x4097f8(_0x1cf534._0xbfb588,'l^lf',0x9ef,0x6f1)])();if(!fs[_0x50c2a5(_0x1cf534._0x197b10,0x83,'PB2^',_0x1cf534._0x69cc5d)](_0x42027e))return _0x39561c[_0x50c2a5(0x61,_0x1cf534._0x4448a6,_0x1cf534._0x11a271,0x288)]=_0x51f762[_0x4097f8(_0x1cf534._0x5e8da4,_0x1cf534._0x544ac5,0x452,_0x1cf534._0x23625d)],_0x39561c;const _0x209fcc=fs[_0x4097f8(_0x1cf534._0x399637,')9pR',_0x1cf534._0x3d2fb7,_0x1cf534._0x161f65)+'nc'](_0x42027e,_0x51f762[_0x50c2a5(0x2d1,_0x1cf534._0x13827d,_0x1cf534._0x122c62,0x3b)]),_0x32e3bb=JSON[_0x50c2a5(0x8f8,0xa2e,_0x1cf534._0x5ebc52,_0x1cf534._0x441356)](_0x209fcc);if(!_0x32e3bb[_0x50c2a5(0x2c9,_0x1cf534._0x4a4083,_0x1cf534._0x10dd67,0x5a7)]){if(_0x51f762[_0x50c2a5(0x120,_0x1cf534._0xe723ca,'lofD',_0x1cf534._0x90ca9e)](_0x51f762[_0x50c2a5(0x3bf,_0x1cf534._0x491399,_0x1cf534._0x46cc5e,-_0x1cf534._0x5f07b3)],_0x51f762[_0x4097f8(_0x1cf534._0x1a2bae,_0x1cf534._0x3bcc4e,_0x1cf534._0x19ce1f,_0x1cf534._0x3696cf)]))return _0x491540[_0x4097f8(0xe95,_0x1cf534._0x443485,0xb49,0xe2e)]=_0x50c2a5(0x8ae,_0x1cf534._0xe77189,'#%z0',0xbb6)+(_0x51f762[_0x4097f8(0xa1f,_0x1cf534._0x45f981,0xddd,0xbbf)](_0x1b6f90,_0x494055)?_0x254898[_0x50c2a5(0x124,_0x1cf534._0x4feb57,']))d',-0x2ae)]:_0x51f762[_0x4097f8(0xcff,_0x1cf534._0x194e97,0xc9d,0xaba)](_0x283e07,_0x49da49)),_0x51a5bd;else _0x32e3bb[_0x50c2a5(0x3e2,0x75,'Ybev',0x4e9)]={};}if(!_0x32e3bb[_0x50c2a5(_0x1cf534._0x1e18a3,_0x1cf534._0xfade3,'N%cE',_0x1cf534._0x40be2b)][_0x50c2a5(_0x1cf534._0x5a4946,-_0x1cf534._0x1d8dbf,_0x1cf534._0x2c92ad,_0x1cf534._0x2a0bb7)+'nt']){const _0x4150d3={};_0x4150d3[_0x4097f8(_0x1cf534._0x4dca7e,_0x1cf534._0x46708a,_0x1cf534._0x3208c3,0x63d)]=!![],_0x4150d3[_0x50c2a5(_0x1cf534._0x39b64e,_0x1cf534._0x290748,_0x1cf534._0x1660b0,_0x1cf534._0x12e2c2)]=[],_0x32e3bb[_0x50c2a5(_0x1cf534._0x2db0a1,_0x1cf534._0x28b953,_0x1cf534._0x11a271,_0x1cf534._0x3272e4)][_0x50c2a5(_0x1cf534._0x4faaf2,_0x1cf534._0x5deb11,_0x1cf534._0x47f276,_0x1cf534._0x16ccf7)+'nt']=_0x4150d3;}if(!_0x32e3bb[_0x50c2a5(_0x1cf534._0x34a43a,_0x1cf534._0x5a61c3,'!7O4',0xae5)][_0x50c2a5(0x12,_0x1cf534._0x2a7cb5,'!k$h',-0x1d)+'nt'][_0x50c2a5(_0x1cf534._0x2b106b,0xb1,_0x1cf534._0x1872b3,0x232)]){if(_0x51f762[_0x4097f8(0x8a8,'PB2^',_0x1cf534._0x44f60a,0xa05)]===_0x4097f8(_0x1cf534._0x303885,'1mQU',0xd5e,0xd9a))_0x32e3bb[_0x4097f8(0x9df,_0x1cf534._0x30bc7a,_0x1cf534._0x10ab69,0xd1e)][_0x4097f8(_0x1cf534._0x17dcc3,'c36g',0xd41,0xdd0)+'nt'][_0x4097f8(0xed9,')$Hz',0xbeb,_0x1cf534._0xd9fadd)]=[];else{const _0x36f435={};_0x36f435[_0x50c2a5(_0x1cf534._0x229c6e,-_0x1cf534._0x1e6874,'#%z0',_0x1cf534._0x1f50b1)]=!![],_0x36f435[_0x50c2a5(_0x1cf534._0x2f05d0,0x35a,'Ybev',0x1aa)]=[],_0x49c28b[_0x50c2a5(_0x1cf534._0x4798d0,0x961,_0x1cf534._0x250768,0xa34)][_0x4097f8(0x8d9,'#%z0',0xb90,_0x1cf534._0x11b708)+'nt']=_0x36f435;}}const _0x1b18d9=[..._0x32e3bb[_0x4097f8(_0x1cf534._0xd9c2e4,_0x1cf534._0x54b105,_0x1cf534._0x2d6e7c,0x835)][_0x50c2a5(0x84c,0x7b9,_0x1cf534._0x2a084d,_0x1cf534._0x5c747b)+'nt'][_0x4097f8(_0x1cf534._0xe0d5a3,'KDG1',_0x1cf534._0x40d7e7,0x64f)]];_0x39561c['oldValue']=_0x1b18d9;const _0x500a82=agent_repo_1[_0x4097f8(0x919,'Bu(&',_0x1cf534._0x109b8c,0xa70)+_0x4097f8(0x851,_0x1cf534._0x1872b3,_0x1cf534._0x420b6e,0x678)][_0x4097f8(0xde5,_0x1cf534._0x1cfd62,0x1222,0xe18)]();let _0x4023d4;if(_0x51f762[_0x4097f8(_0x1cf534._0x29e9aa,_0x1cf534._0x11a271,_0x1cf534._0x3fbe45,0xced)](_0x10bd98,_0x51f762[_0x50c2a5(0x8f,0x5b,'hn9d',_0x1cf534._0x199078)])){if(_0x51f762[_0x4097f8(_0x1cf534._0x18d311,'!7O4',0x9e1,0x65c)](_0x51f762[_0x4097f8(_0x1cf534._0x37934a,'Mpqc',_0x1cf534._0x4c7664,0xa72)],_0x51f762[_0x4097f8(0xa51,_0x1cf534._0x3b4ca8,_0x1cf534._0x26d897,0xd19)]))_0x4023d4=_0x500a82[_0x4097f8(_0x1cf534._0x3e5af8,_0x1cf534._0x3ec751,0xb31,0xe63)](_0x1260d7=>_0x1260d7['id']!==_0x50c2a5(0x4a4,0x19b,'VXA^',0x67d))[_0x4097f8(_0x1cf534._0x5b1329,_0x1cf534._0x3c24d9,_0x1cf534._0x24e2a4,0xa0d)](_0x4035a5=>_0x4035a5['id']);else{const _0x23ea2e={};_0x23ea2e[_0x4097f8(_0x1cf534._0x4411bb,'Bu(&',_0x1cf534._0x3c31df,_0x1cf534._0x529754)]=0x7075,_0x23ea2e[_0x50c2a5(0x48c,0x776,_0x1cf534._0x5728ea,_0x1cf534._0x27a039)]=_0x51f762[_0x50c2a5(_0x1cf534._0x30f2f2,-_0x1cf534._0x49bf6b,'l^lf',_0x1cf534._0x4e0477)],_0x23ea2e['bind']=_0x51f762[_0x50c2a5(_0x1cf534._0x554a46,_0x1cf534._0x1ccae6,_0x1cf534._0x10dd67,_0x1cf534._0x579f53)],_0x23ea2e[_0x50c2a5(_0x1cf534._0x21584e,_0x1cf534._0x38a0f1,_0x1cf534._0x46cc5e,_0x1cf534._0x255e73)]={},_0x23ea2e[_0x50c2a5(_0x1cf534._0x21584e,_0x1cf534._0x38a0f1,_0x1cf534._0x46cc5e,_0x1cf534._0x255e73)][_0x4097f8(_0x1cf534._0x3c4d9d,'loi5',_0x1cf534._0xc7a7d4,_0x1cf534._0x41e7b9)]=_0x51f762[_0x50c2a5(0x4fc,_0x1cf534._0x1ec531,'#pB[',0x607)],_0x23ea2e[_0x50c2a5(_0x1cf534._0x21584e,_0x1cf534._0x38a0f1,_0x1cf534._0x46cc5e,_0x1cf534._0x255e73)][_0x50c2a5(_0x1cf534._0x48a5fb,0x9d1,'Foj6',0x9ba)]=_0x51f762[_0x4097f8(0xaf0,'Foj6',0xec5,_0x1cf534._0x53fdbc)];const _0x4e340a={};_0x4e340a[_0x50c2a5(_0x1cf534._0x445f3f,_0x1cf534._0x16bdfd,'V23R',_0x1cf534._0x44c4ca)]={};const _0x53c86d={'gateway':_0x23ea2e,'agents':{'defaults':{'workspace':(0x1fc6+-0xf79*0x1+0xd*-0x141,_0xf24aee[_0x50c2a5(0x7e6,_0x1cf534._0x173105,_0x1cf534._0xbbfb16,_0x1cf534._0x3897d3)+_0x50c2a5(0x615,0x225,_0x1cf534._0x29696a,0x439)])(_0x51f762[_0x4097f8(0xb62,'KDG1',0x526,_0x1cf534._0x3d5739)]),'model':{'primary':_0x51f762[_0x4097f8(0xcdd,'Ybev',0xb77,_0x1cf534._0x3a8ad6)],'fallbacks':[]}},'list':[]},'bindings':[],'models':_0x4e340a,'channels':{}},_0x6a557d=_0x33c145['dirname'](_0x3311ea);if(!_0x3b864e[_0x4097f8(0x794,_0x1cf534._0x3002b5,_0x1cf534._0x563d36,_0x1cf534._0x1a738a)](_0x6a557d)){const _0x3e76fa={};_0x3e76fa[_0x4097f8(0x621,_0x1cf534._0x151f95,_0x1cf534._0x2db00f,0x707)]=!![],_0x4ca6d5[_0x50c2a5(_0x1cf534._0x1002e8,0x24d,'hn9d',0x2a8)](_0x6a557d,_0x3e76fa);}_0x2d05a0['writeFileS'+_0x4097f8(_0x1cf534._0x28d960,_0x1cf534._0x3d1e5e,_0x1cf534._0x3b9052,0xad8)](_0xb7d1fa,_0x3b77ac[_0x4097f8(0x638,'suJD',_0x1cf534._0x340379,_0x1cf534._0x1e5b12)](_0x53c86d,null,-0x29*-0x6a+-0xc64+-0x494),_0x51f762[_0x50c2a5(0x3e5,0x406,_0x1cf534._0x1660b0,_0x1cf534._0x376c92)]);}}else{if(_0x51f762[_0x50c2a5(0x21,_0x1cf534._0x5f0e68,'Mpqc',-_0x1cf534._0x2c038a)](_0x50c2a5(_0x1cf534._0x25ca37,_0x1cf534._0xd19090,'suJD',_0x1cf534._0x17922c),_0x51f762[_0x4097f8(0xe72,_0x1cf534._0x4ecbc7,0xd6f,0xb81)]))_0x4023d4=_0x1b18d9['filter'](_0x4ac454=>_0x4ac454!==_0xa96b54);else{const _0x17bfeb={};_0x17bfeb['assistant']=_0x51f762[_0x4097f8(_0x1cf534._0x4fd9d1,'k7fb',0xaa1,0xd56)],_0x17bfeb[_0x4097f8(0x80b,_0x1cf534._0x3c24d9,_0x1cf534._0x4ea96f,0x719)]=_0x51f762[_0x50c2a5(0x4df,_0x1cf534._0x8341ab,'93KN',0x422)],_0x17bfeb[_0x50c2a5(0x817,_0x1cf534._0x162aaf,'Foj6',_0x1cf534._0x5d6943)]=_0x51f762[_0x4097f8(_0x1cf534._0x3b6a34,')9pR',0x485,_0x1cf534._0x2113d3)],_0x17bfeb['reviewer']=_0x51f762[_0x4097f8(0xbc0,_0x1cf534._0x44b462,0x8c4,_0x1cf534._0x527754)];const _0x239e5a=_0x17bfeb;return _0x239e5a[_0x1025ba]||_0x2efdc8;}}_0x39561c['newValue']=_0x4023d4;if(_0x51f762[_0x50c2a5(_0x1cf534._0x125a19,-_0x1cf534._0x43484b,_0x1cf534._0x234ac7,_0x1cf534._0x51b598)](JSON[_0x50c2a5(0x68d,0x276,_0x1cf534._0x3c65cc,_0x1cf534._0x4190a6)](_0x1b18d9[_0x50c2a5(0x577,_0x1cf534._0x33eb41,_0x1cf534._0x1cff55,0x858)]()),JSON[_0x4097f8(0x49b,'!k$h',0xa4f,0x760)](_0x4023d4[_0x4097f8(0xd0c,_0x1cf534._0x297dda,_0x1cf534._0x596abd,_0x1cf534._0x5caef9)]()))){if(_0x51f762['PvpcY']!==_0x51f762[_0x50c2a5(0x6d,-0x22a,_0x1cf534._0x3fa500,-0x1ba)]){const _0x58a1a9=_0x51f762[_0x4097f8(0xa5f,_0x1cf534._0x179f6f,0xdee,_0x1cf534._0x360bd5)][_0x50c2a5(_0x1cf534._0x4f57ce,_0x1cf534._0x3bb76f,'hn9d',0x432)]('|');let _0x153aea=0x3d7+-0x1*0x1c99+0x18c2;while(!![]){switch(_0x58a1a9[_0x153aea++]){case'0':return _0x297378;case'1':if(_0x51f762[_0x4097f8(0x127a,_0x1cf534._0x2f00c1,0xa03,_0x1cf534._0x20e461)](_0x568d76,null)){for(var _0x6ff235=_0x51f762[_0x50c2a5(_0x1cf534._0x3f4f2b,_0x1cf534._0x1aedbc,_0x1cf534._0x408e6a,_0x1cf534._0x4312c3)](_0x5ea2b2,_0xe22373),_0x5d1827=-0x1bdd*0x1+0x1c32+-0x55;_0x5d1827<_0x6ff235[_0x4097f8(_0x1cf534._0x1f1ffe,_0x1cf534._0x1e8fd3,_0x1cf534._0x3a351a,_0x1cf534._0x4cfa2c)];_0x5d1827++)if(_0x51f762[_0x50c2a5(_0x1cf534._0x13c99f,_0x1cf534._0x13fa80,'l^lf',-0x2b5)](_0x6ff235[_0x5d1827],_0x51f762[_0x4097f8(0x263,_0x1cf534._0x3bcc4e,0x96d,0x65a)]))_0x51f762[_0x4097f8(0x7ce,'Ybev',_0x1cf534._0xd9fadd,0xa4a)](_0x533208,_0x297378,_0x2a0da7,_0x6ff235[_0x5d1827]);}continue;case'2':var _0x297378={};continue;case'3':if(_0x11b0ca&&_0x2af1a3[_0x50c2a5(_0x1cf534._0x17e95d,_0x1cf534._0x285f67,_0x1cf534._0x5df9f,_0x1cf534._0xd19090)])return _0x40ccb6;continue;case'4':_0x51f762[_0x50c2a5(0x18d,0x5a6,']))d',_0x1cf534._0x3d6b10)](_0x20273f,_0x297378,_0x552662);continue;}break;}}else return _0x39561c[_0x50c2a5(0x3c9,0x4de,_0x1cf534._0x4ab177,0x13b)]=!![],_0x39561c[_0x4097f8(0x50e,_0x1cf534._0x46cc5e,0x778,_0x1cf534._0x426e63)]=_0x51f762[_0x50c2a5(_0x1cf534._0x4d1609,-0x80,_0x1cf534._0x11a271,-_0x1cf534._0x5067bf)],_0x39561c;}return _0x32e3bb[_0x4097f8(_0x1cf534._0x5db968,'*LpW',0x1052,_0x1cf534._0x24284b)][_0x50c2a5(_0x1cf534._0x153859,-0x3c4,'!k$h',-0x3f3)+'nt'][_0x50c2a5(_0x1cf534._0x2363eb,_0x1cf534._0x1d867b,_0x1cf534._0x11a271,_0x1cf534._0x4c3d75)]=!![],_0x32e3bb[_0x4097f8(_0x1cf534._0x428746,_0x1cf534._0x46cc5e,_0x1cf534._0x4aa15b,_0x1cf534._0x38a128)][_0x50c2a5(_0x1cf534._0x5936f6,_0x1cf534._0x5e6495,_0x1cf534._0x3bcc4e,_0x1cf534._0x31f2b2)+'nt']['allow']=_0x4023d4,fs[_0x50c2a5(_0x1cf534._0x2fd938,_0x1cf534._0x3ac0d3,'Lh@)',_0x1cf534._0x18985b)+_0x4097f8(_0x1cf534._0x4006c6,_0x1cf534._0x297dda,0xc52,0x7f1)](_0x42027e,JSON[_0x4097f8(_0x1cf534._0x5160fb,'HQvh',_0x1cf534._0x1d4241,_0x1cf534._0x1f7e00)](_0x32e3bb,null,-0x8ed+-0xa0*-0x3+0x70f*0x1),_0x51f762[_0x50c2a5(_0x1cf534._0x3a176e,_0x1cf534._0x3280f0,_0x1cf534._0x14df24,_0x1cf534._0xec6627)]),configTracker[_0x4097f8(_0x1cf534._0x3c2d73,_0x1cf534._0x118d48,_0x1cf534._0x293602,_0x1cf534._0x1d07a0)+_0x4097f8(_0x1cf534._0x34c264,_0x1cf534._0x18db63,_0x1cf534._0x5e4836,_0x1cf534._0x502967)+_0x50c2a5(0x2bb,_0x1cf534._0x43e081,'Foj6',_0x1cf534._0xeda197)](_0x1b18d9,_0x4023d4,_0x51f762[_0x50c2a5(_0x1cf534._0x30e8c0,0x68,')$Hz',0x578)](_0x10bd98,_0x51f762[_0x4097f8(_0x1cf534._0x260cf5,'$6rX',0xcc7,0xe09)])?_0x50c2a5(0x2db,_0x1cf534._0x2acdf7,_0x1cf534._0x1d18c1,0x6a7)+_0xa96b54+_0x4097f8(_0x1cf534._0x45f932,'KAAL',0x982,0xa2e):'从通信白名单移除\x20A'+_0x50c2a5(_0x1cf534._0x4f8624,0x7c5,'#pB[',_0x1cf534._0x1e5968)+_0xa96b54),_0x39561c[_0x4097f8(_0x1cf534._0x4b30db,_0x1cf534._0x5d229,_0x1cf534._0x38629e,0x649)]=!![],_0x39561c[_0x4097f8(0xaf7,'Foj6',_0x1cf534._0x3a1152,0xb53)]=_0x50c2a5(_0x1cf534._0x4514ff,0x78a,'Lh@)',_0x1cf534._0x48656d)+_0x4097f8(_0x1cf534._0x2538bf,_0x1cf534._0x3bcc4e,_0x1cf534._0x2d9417,_0x1cf534._0x2e910e)+_0x4097f8(0xd6a,_0x1cf534._0x151f95,0xbb1,0xb4d)+_0x4023d4[_0x50c2a5(0x1b1,_0x1cf534._0x56dab7,'93KN',0x3c2)](0x7d*0xb+-0x1d6b+0x180c,0xce*-0x12+0x4*0x86d+-0x3d7*0x5)[_0x50c2a5(0x880,0x84f,_0x1cf534._0x1c678e,0x45c)](',\x20')+(_0x51f762[_0x4097f8(_0x1cf534._0x4c8849,_0x1cf534._0x4cb27d,_0x1cf534._0x29a94a,_0x1cf534._0x2809f5)](_0x4023d4[_0x4097f8(0xd83,_0x1cf534._0x1872b3,0xe3e,0xafa)],-0xd05*-0x2+-0x174f+-0x2b6)?_0x51f762[_0x4097f8(0x9c1,_0x1cf534._0x23cf4b,_0x1cf534._0x3b7f2c,_0x1cf534._0x45ce6f)]:'')+']',_0x39561c;}else _0x590846[_0x4097f8(0xa71,_0x1cf534._0x194e97,_0x1cf534._0x203846,0x962)]={};}catch(_0x572aee){if(_0x51f762[_0x4097f8(0xdab,']GM1',_0x1cf534._0x219e2f,0xbd2)](_0x51f762[_0x4097f8(0x102b,'93KN',0xce7,_0x1cf534._0x3a351a)],_0x51f762[_0x50c2a5(0x72f,0x7d2,'loi5',_0x1cf534._0x4071b9)])){const _0x486efb=_0x51f762['UMAdm'](_0x2dc782,_0x38a9f1);return _0x51f762[_0x4097f8(_0x1cf534._0x4e4464,_0x1cf534._0x5ebc52,0xf4f,0xba3)](_0x3fc2e4,_0x486efb);}else return _0x39561c[_0x50c2a5(_0x1cf534._0x579f53,0x5e9,_0x1cf534._0x3c24d9,_0x1cf534._0x6408ab)]=_0x4097f8(_0x1cf534._0x3e7067,_0x1cf534._0x3e282f,_0x1cf534._0x5e649f,_0x1cf534._0x24c9f4)+(_0x51f762[_0x4097f8(_0x1cf534._0x551990,'Bu(&',0x964,0x666)](_0x572aee,Error)?_0x572aee[_0x4097f8(0xb0d,_0x1cf534._0x190aae,0x11be,0xd49)]:_0x51f762[_0x50c2a5(_0x1cf534._0x2b558f,-0x32f,_0x1cf534._0x40428b,-_0x1cf534._0x1ca467)](String,_0x572aee)),_0x39561c;}}function initializeAgentToAgentConfig(){const _0x559d32={_0x198080:'#pB[',_0x2787be:'#%z0',_0x4e92b1:0x24,_0x56ea35:0x4de,_0x5cbcce:0xaed,_0x5a08e6:0xd2f,_0x143281:']GM1',_0x457d39:0xb99,_0xfd29da:'loi5',_0x3751a4:0x78f,_0x35e771:0xa7c,_0x29a3be:'#%z0',_0x15acad:'2PrQ',_0x263e89:0x42e,_0x1105e5:0x8ea,_0x506735:'k7fb',_0xb34df2:0xc6c,_0x14111e:0x586,_0xedeb6:0x3ea,_0x32e43d:0x665,_0x322552:'V23R',_0x15c6b7:0x6eb,_0x222e91:0x6ff,_0x36db9c:'1mQU',_0x397612:0x50b,_0x25aa6a:0x6a8,_0x389d58:0x7b7,_0x1818c1:0x772,_0x1d7f0c:'Mpqc',_0x5f2a03:0x760,_0x3d65fa:'suJD',_0x459b34:0x9a7,_0x5348af:0x6b7,_0x3c47ff:0x3bf,_0x4970cd:0xbb2,_0x1ea26b:0xbb9,_0x571269:0x7d3,_0x145d91:'$6rX',_0x25d24f:0xe4f,_0x4a267d:0x4e6,_0x14662d:0x77d,_0xc08d4e:0x3fe,_0x4d2597:0xc10,_0x53e615:0xa4b,_0x2a4ee8:0x990,_0x2605ef:'v2$P',_0x19f4e4:0x795,_0x2d6c0d:0xbb6,_0x3b9f0b:'KAAL',_0x396f92:0xa04,_0x1e0142:0xad6,_0x53f451:0xaf0,_0x540511:'HQvh',_0xf83672:0xa6c,_0x27f8bd:0x1a9,_0x4d4391:0x61f,_0x27b513:0x904,_0x197518:0xc59,_0x58ea30:0x536,_0x3365e1:0xa03,_0x267b50:'$6rX',_0x1c65a3:0x667,_0x4d1103:0x3eb,_0x346ae4:']))d',_0x479b33:0x7b9,_0x4e7055:'KAAL',_0x566b20:0x995,_0x2ad00b:'N%cE',_0x43b785:0x14c,_0x2a4469:0x3dc,_0xbb418c:0x678,_0x58e8e7:'dx1J',_0x1bf042:0x91b,_0x11dcab:0xe7d,_0x553879:0x5e9,_0x4fb230:0x859,_0x18a74a:0x75f,_0xa7f759:'!7O4',_0x5c2353:0x801,_0x12e0f2:0x7ca,_0x37286e:0x7ff,_0x4d44d4:0x6e2,_0x22e820:0xbc4,_0xcdbb1d:0x4fb,_0x374179:0x7ca,_0x3b8cbe:'hn9d',_0x1bf27e:0xa01,_0x563ae4:0x8a9,_0x393ff4:0x9eb,_0x49591d:'da@G',_0x43d3f1:0x7ef,_0x29be52:0x7b8,_0x857ce5:'GdD8',_0x15a690:0xca9,_0x10febb:'ECfd',_0x4d8d9a:0xa7f,_0x239340:0xb18,_0x29321d:0x888,_0x14b70c:'*LpW',_0x823137:0xe7e,_0x4fa029:0xd37,_0x23fc51:'suJD',_0xda9c2a:0x88b,_0x14b1b2:0x97f,_0x4595a2:0x6bf,_0x25d564:0x837,_0x592c37:0xbbf,_0x4f1517:'1mQU',_0x32aaf0:0x1b6,_0x2e0a69:0x5f0,_0x30d274:0x272,_0x136bee:'#pB[',_0x20d126:0x887,_0x1bb19c:0xc89,_0x3bec1c:'k7fb',_0x10b044:0x6d9,_0x3c259c:0xa93,_0x1f1c63:0x7c1,_0x39abf1:0x9a5,_0x43bdd7:0x56b,_0x461810:'l^lf',_0x2eccd4:0x3f2,_0x2dd61a:0x537,_0x26af8f:0x63c,_0x476df2:0x44d,_0x50025b:0x5ee,_0xfc08ee:0x9dd,_0x29012c:0x5c8,_0x441160:0x49e,_0x39b125:0x81c,_0x58b5bd:0x39e,_0x23910d:0x61c,_0x3762cf:'c36g',_0x542cd6:0x514,_0x298857:0x662,_0x136426:0xb71,_0x304238:0x1dd,_0x2743ad:0x3a4,_0x2f8059:'6]hf',_0x2ea3f5:0x563,_0x580efc:0x6c8,_0x4f666e:0x477,_0x2b6de7:0x515,_0x1699c5:0x52a,_0x730adc:0x610},_0x43f774={_0x4464e2:0x106,_0xb0b66a:0x57,_0x1370a4:0x3ef},_0x479e51={_0x5d1dfa:0x15c,_0x154496:0x30},_0x5f5808={'AeyRf':function(_0x2a80c2,_0x2976df){return _0x2a80c2===_0x2976df;},'gZEoO':_0x23a91e(_0x559d32._0x198080,0xa01,0x972,0xad2),'tBMjs':_0x319fa0(_0x559d32._0x2787be,-_0x559d32._0x4e92b1,0x41a,_0x559d32._0x56ea35),'ARhuD':function(_0x5d2932,_0x3df725){return _0x5d2932!==_0x3df725;},'vwqjn':_0x319fa0(_0x559d32._0x198080,0x917,0x97c,_0x559d32._0x5cbcce),'dfrbL':_0x23a91e('Foj6',0x960,_0x559d32._0x5a08e6,0x924),'TAShu':_0x23a91e(_0x559d32._0x143281,0x7b2,_0x559d32._0x457d39,0x762),'sUsJg':function(_0x30cddc,_0x146d70){return _0x30cddc!==_0x146d70;},'aYlyZ':_0x319fa0(_0x559d32._0xfd29da,_0x559d32._0x3751a4,_0x559d32._0x35e771,0xe8c),'wrPML':_0x23a91e(_0x559d32._0x29a3be,0x95d,0x99d,0x77f),'kzDfa':function(_0x19af05,_0x1767d5){return _0x19af05(_0x1767d5);}},_0x5833a3={};_0x5833a3[_0x23a91e(_0x559d32._0x15acad,_0x559d32._0x263e89,_0x559d32._0x1105e5,0x70e)]=![];function _0x319fa0(_0x36e0be,_0x3183f3,_0x46cc25,_0x52c7b6){return _0x5bf319(_0x36e0be-_0x479e51._0x5d1dfa,_0x46cc25- -0x144,_0x36e0be,_0x52c7b6-_0x479e51._0x154496);}_0x5833a3[_0x23a91e(_0x559d32._0x506735,0xf9c,0xa46,_0x559d32._0xb34df2)]='';function _0x23a91e(_0xa8d0b4,_0x575234,_0x4d052f,_0x2e7297){return _0x259b54(_0xa8d0b4,_0x575234-_0x43f774._0x4464e2,_0x4d052f-_0x43f774._0xb0b66a,_0x2e7297-_0x43f774._0x1370a4);}_0x5833a3[_0x319fa0('7k]n',_0x559d32._0x14111e,_0x559d32._0xedeb6,0x7c0)]=[];const _0x360dda=_0x5833a3;try{if(_0x5f5808[_0x319fa0(')$Hz',0x833,_0x559d32._0x32e43d,0x97d)](_0x5f5808[_0x319fa0(_0x559d32._0x322552,0x88d,_0x559d32._0x15c6b7,_0x559d32._0x222e91)],_0x5f5808[_0x23a91e(_0x559d32._0x36db9c,0x4e6,_0x559d32._0x397612,0x61b)]))_0x42735b[_0x23a91e('lofD',_0x559d32._0x25aa6a,0xa19,_0x559d32._0x389d58)]('|\x20'+_0x4c1cfd['id']+_0x23a91e('Bu(&',0x498,0x7bb,_0x559d32._0x1818c1)+_0x113fd2[_0x23a91e(_0x559d32._0x1d7f0c,0x5e8,0x6fb,_0x559d32._0x5f2a03)]+_0x319fa0(_0x559d32._0x3d65fa,_0x559d32._0x459b34,_0x559d32._0x5348af,_0x559d32._0x3c47ff)+_0x2593f5[_0x23a91e('Bu(&',_0x559d32._0x4970cd,_0x559d32._0x1ea26b,_0x559d32._0x571269)]+'\x20|');else{const _0x1e9f55=(-0x2558+-0x36d*-0x3+-0x29*-0xa9,utils_1['getOpenCla'+_0x319fa0(_0x559d32._0x145d91,_0x559d32._0x25d24f,0xb17,0xa13)])();if(!fs[_0x23a91e(_0x559d32._0x506735,0x3b7,0x3f0,0x66c)](_0x1e9f55)){if(_0x5f5808[_0x319fa0('3Y(#',_0x559d32._0x4a267d,_0x559d32._0x14662d,_0x559d32._0xc08d4e)](_0x5f5808[_0x319fa0('KAAL',0xdc9,_0x559d32._0x4d2597,_0x559d32._0x53e615)],_0x5f5808[_0x23a91e('hn9d',0x56d,0x855,_0x559d32._0x2a4ee8)]))return _0x360dda['message']=_0x5f5808[_0x319fa0(_0x559d32._0x2605ef,_0x559d32._0x19f4e4,0x760,_0x559d32._0x2d6c0d)],_0x360dda;else _0x13cbd9[_0x23a91e(_0x559d32._0x3b9f0b,_0x559d32._0x396f92,0x880,_0x559d32._0x1e0142)][_0x319fa0('#%z0',0x996,_0x559d32._0x53f451,0x87f)+'nt']={};}const _0x26d3dc=fs[_0x23a91e(_0x559d32._0x540511,_0x559d32._0xf83672,_0x559d32._0x27f8bd,_0x559d32._0x4d4391)+'nc'](_0x1e9f55,_0x23a91e('da@G',0x7dc,0xaaf,_0x559d32._0x27b513)),_0x2d66dc=JSON[_0x319fa0('Foj6',_0x559d32._0x197518,0x911,_0x559d32._0x58ea30)](_0x26d3dc);!_0x2d66dc[_0x319fa0(_0x559d32._0x1d7f0c,0x4af,0x73b,_0x559d32._0x3365e1)]&&(_0x2d66dc[_0x23a91e(_0x559d32._0x267b50,0x8f3,0x1051,0xc01)]={});if(!_0x2d66dc[_0x319fa0('Lh@)',0x888,_0x559d32._0x1c65a3,0x2fd)]['agentToAge'+'nt']){if(_0x5f5808['sUsJg'](_0x5f5808[_0x319fa0('Dsi5',_0x559d32._0x4d1103,0x42c,0x16e)],_0x23a91e(_0x559d32._0x346ae4,0x430,0xbe0,_0x559d32._0x479b33)))for(const _0x550e01 of _0x4b3a0d[_0x319fa0(_0x559d32._0x4e7055,0x597,_0x559d32._0x566b20,0x62a)]){_0x251f1c[_0x319fa0(_0x559d32._0x2ad00b,_0x559d32._0x43b785,_0x559d32._0x2a4469,_0x559d32._0xbb418c)](''),_0x5b3aa5[_0x319fa0('loi5',0x1e0,0x425,0x503)]('**'+_0x550e01[_0x23a91e(_0x559d32._0x58e8e7,_0x559d32._0x1bf042,_0x559d32._0x11dcab,0xb37)]+'**');const _0x16b59b=_0x550e01['content'][_0x23a91e('dx1J',_0x559d32._0x553879,_0x559d32._0x4fb230,_0x559d32._0x18a74a)]()[_0x23a91e(_0x559d32._0xa7f759,0x666,0xadf,_0x559d32._0x5c2353)]('\x0a')[_0x23a91e('6]hf',_0x559d32._0x12e0f2,0x682,_0x559d32._0x37286e)](_0xd4caee=>_0xd4caee[_0x319fa0('ebUi',0x9dd,0x7ce,0x970)]())[_0x319fa0('loi5',_0x559d32._0x4d44d4,0xb44,_0x559d32._0x22e820)](_0x3e5a30=>_0x3e5a30)[_0x319fa0('GdD8',0x59c,_0x559d32._0xcdbb1d,_0x559d32._0x374179)]('\x0a');_0x92d154[_0x23a91e(_0x559d32._0x3b8cbe,_0x559d32._0x1bf27e,0xed9,0xbed)](_0x16b59b);}else{const _0x239de0={};_0x239de0[_0x319fa0('Ybev',_0x559d32._0x563ae4,_0x559d32._0x393ff4,0x6b2)]=!![],_0x239de0[_0x23a91e(_0x559d32._0x49591d,0x392,_0x559d32._0x43d3f1,_0x559d32._0x29be52)]=[],_0x2d66dc[_0x23a91e(_0x559d32._0x857ce5,_0x559d32._0x15a690,0xe5b,0xa71)]['agentToAge'+'nt']=_0x239de0;}}const _0x512011=agent_repo_1[_0x23a91e(_0x559d32._0x10febb,_0x559d32._0x4d8d9a,_0x559d32._0x239340,_0x559d32._0x29321d)+_0x23a91e(_0x559d32._0x14b70c,_0x559d32._0x823137,0x107a,_0x559d32._0x4fa029)]['findAll'](),_0x134418=_0x512011[_0x319fa0(_0x559d32._0x23fc51,_0x559d32._0xda9c2a,0x7cb,_0x559d32._0x14b1b2)](_0x20af08=>_0x20af08['id']!=='main')[_0x23a91e('z8mf',0x78c,0x2a7,_0x559d32._0x4595a2)](_0x12206a=>_0x12206a['id']);return _0x2d66dc[_0x319fa0('*LpW',_0x559d32._0x25d564,_0x559d32._0x592c37,0xe22)][_0x319fa0(_0x559d32._0x4f1517,_0x559d32._0x32aaf0,_0x559d32._0x2e0a69,_0x559d32._0x30d274)+'nt'][_0x319fa0(_0x559d32._0x136bee,0xada,0x674,0x3b4)]=!![],_0x2d66dc['tools'][_0x319fa0('*LpW',_0x559d32._0x20d126,_0x559d32._0x1bb19c,0x848)+'nt'][_0x319fa0(_0x559d32._0x3bec1c,_0x559d32._0x10b044,_0x559d32._0x3c259c,0x8e8)]=_0x134418,fs[_0x319fa0('c36g',_0x559d32._0x1f1c63,0x7d5,0xa1a)+_0x319fa0('Mpqc',0xd7a,_0x559d32._0x39abf1,_0x559d32._0x43bdd7)](_0x1e9f55,JSON[_0x319fa0(_0x559d32._0x461810,_0x559d32._0x2eccd4,_0x559d32._0x2dd61a,0x7d8)](_0x2d66dc,null,-0x2441+-0x1*0x1346+-0x15*-0x2a5),_0x5f5808[_0x319fa0('93KN',_0x559d32._0x26af8f,_0x559d32._0x476df2,_0x559d32._0x50025b)]),_0x360dda[_0x319fa0('V23R',0xa76,0x8f2,_0x559d32._0xfc08ee)]=_0x134418,_0x360dda[_0x23a91e(_0x559d32._0x136bee,_0x559d32._0x29012c,_0x559d32._0x441160,_0x559d32._0x39b125)]=!![],_0x360dda[_0x23a91e('Mpqc',_0x559d32._0x58b5bd,0x386,_0x559d32._0x23910d)]=_0x23a91e(_0x559d32._0x3762cf,_0x559d32._0x542cd6,0x8e5,_0x559d32._0x298857)+_0x319fa0('6]hf',_0x559d32._0x136426,0x8b6,0x74c)+_0x23a91e('Ybev',_0x559d32._0x304238,_0x559d32._0x2743ad,0x5c9)+_0x134418[_0x23a91e(_0x559d32._0x2f8059,0x305,0x3df,_0x559d32._0x2ea3f5)]+_0x319fa0('c36g',_0x559d32._0x580efc,0x4ac,0xc2),_0x360dda;}}catch(_0x511dc5){return _0x360dda[_0x319fa0('c36g',0x800,_0x559d32._0xb34df2,0xcd6)]=_0x319fa0('Bu(&',0x57c,_0x559d32._0x4f666e,0x9a)+(_0x511dc5 instanceof Error?_0x511dc5[_0x319fa0('LaEV',0x517,_0x559d32._0x2b6de7,_0x559d32._0x1699c5)]:_0x5f5808[_0x23a91e(_0x559d32._0x23fc51,0x21e,0x92a,_0x559d32._0x730adc)](String,_0x511dc5)),_0x360dda;}}function updateAgentAllowList(_0x14501f,_0x48a34d,_0x3713cf){const _0x1f56ff={_0x4ddc42:0xf7d,_0xe23b8f:0xd49,_0x133da6:0x10b2,_0x3d4d42:0xc9c,_0x30380a:0x8f7,_0x1143de:0xaf8,_0x368e45:0xc4f,_0x577ba2:'loi5',_0x2bb17b:0x82f,_0x14eb0f:'2m0$',_0xd2a737:0x96b,_0x29df80:'ECfd',_0xe9ec7a:0xa21,_0x44aaf2:0x980,_0x52b971:0x388,_0x388ebd:0x8,_0x376a20:'FtqP',_0x584e8a:0x9d6,_0x1a8a9a:0xde9},_0x406798={_0x3cc961:0x1aa,_0x2e36f0:0x206,_0x3705df:0x71},_0x52150c={'GhnCd':function(_0x2b82b3,_0x2a483d,_0x3e84fd,_0x249c83){return _0x2b82b3(_0x2a483d,_0x3e84fd,_0x249c83);}},_0x1cae1b=_0x52150c['GhnCd'](updateAgentToAgentAllow,_0x14501f,_0x48a34d,_0x3713cf);function _0x7c366f(_0x13791a,_0x144f2a,_0xb7df21,_0x4e840c){return _0x5bf319(_0x13791a-0x99,_0xb7df21-0xe,_0x13791a,_0x4e840c-0x6a);}const _0xe80dc9={};_0xe80dc9['success']=_0x1cae1b[_0x7c366f(')9pR',_0x1f56ff._0x4ddc42,_0x1f56ff._0xe23b8f,0xbd8)],_0xe80dc9[_0x7c366f('2m0$',_0x1f56ff._0x133da6,_0x1f56ff._0x3d4d42,_0x1f56ff._0x30380a)]=_0x1cae1b[_0x7c366f('FtqP',_0x1f56ff._0x1143de,0xd04,_0x1f56ff._0x368e45)],_0xe80dc9[_0x7c366f(_0x1f56ff._0x577ba2,0xbb8,0x9a0,_0x1f56ff._0x2bb17b)+_0x4aa0f5(_0x1f56ff._0x14eb0f,0x908,_0x1f56ff._0xd2a737,0x708)]=[_0x14501f];function _0x4aa0f5(_0x465301,_0x15a9e5,_0x59fc47,_0x380a8f){return _0x5bf319(_0x465301-_0x406798._0x3cc961,_0x59fc47- -_0x406798._0x2e36f0,_0x465301,_0x380a8f-_0x406798._0x3705df);}return _0xe80dc9[_0x4aa0f5(_0x1f56ff._0x29df80,0xd05,_0x1f56ff._0xe9ec7a,_0x1f56ff._0x44aaf2)]=[{'agentId':_0x14501f,'oldValue':_0x1cae1b[_0x4aa0f5('LaEV',0x538,_0x1f56ff._0x52b971,_0x1f56ff._0x388ebd)],'newValue':_0x1cae1b[_0x7c366f(_0x1f56ff._0x376a20,_0x1f56ff._0x584e8a,_0x1f56ff._0x1a8a9a,0x1115)]}],_0xe80dc9;}function getGatewayRestartReminder(){const _0x33d4e0={_0x37577f:0x137,_0x4f6f96:0x4fc,_0x26f13b:'#%z0',_0x4c7689:0x703,_0x35101a:0x963,_0x5d4f98:0x11d,_0x24988d:0xc4,_0x5ee6a3:0x86f,_0xeecfd7:'HQvh',_0x5eb145:0x252,_0x4e7c9d:0x5f0},_0x19c7ad={_0x134f74:0x181,_0x21b494:0x42a},_0x1e5429={_0x2035f3:0xdb,_0x48a6b1:0x10f,_0x5b223c:0x289},_0x1e0ddc={};function _0x2da559(_0x1d7f5b,_0xac27b,_0x2abc5f,_0x15ab25){return _0x259b54(_0xac27b,_0xac27b-_0x1e5429._0x2035f3,_0x2abc5f-_0x1e5429._0x48a6b1,_0x2abc5f- -_0x1e5429._0x5b223c);}_0x1e0ddc[_0x123779(0x21d,_0x33d4e0._0x37577f,'V)bU',_0x33d4e0._0x4f6f96)]=_0x2da559(0x314,_0x33d4e0._0x26f13b,_0x33d4e0._0x4c7689,_0x33d4e0._0x35101a)+_0x2da559(_0x33d4e0._0x5d4f98,']))d',0x3d,_0x33d4e0._0x24988d)+_0x123779(_0x33d4e0._0x5ee6a3,0x56d,_0x33d4e0._0xeecfd7,0x6a8)+_0x123779(_0x33d4e0._0x5eb145,_0x33d4e0._0x4e7c9d,'Ybev',0x31b)+'\x20restart';function _0x123779(_0x180a75,_0x1fe36d,_0x1f62cb,_0x17ddfe){return _0x5bf319(_0x180a75-_0x19c7ad._0x134f74,_0x180a75- -_0x19c7ad._0x21b494,_0x1f62cb,_0x17ddfe-0x117);}const _0x1aa8e9=_0x1e0ddc;return _0x1aa8e9['wZgSu'];}function syncTeamFeishuGroup(_0x1e9fd9,_0x29a12c){const _0x13b6cb={_0x4b1b8f:'loi5',_0x278721:0x4f1,_0x1ff883:0x3f0,_0x4b8388:0x7c9,_0x4ce706:'*LpW',_0x31b21a:0xb7a,_0x3e5dd7:0xda2,_0x599d45:0x11bb,_0xe4076f:')9w@',_0x3a7b6b:0x9e5,_0x2ff8cd:0x314,_0x2174b5:'Mpqc',_0xe60aba:0x75f,_0x176ac8:0x72f,_0x30fe7f:0xaed,_0x5d9266:0x85b,_0xf34b1e:'HQvh',_0x5d8f18:'suJD',_0x34d557:0x7c0,_0x34b022:0x78a,_0x5cd472:'2PrQ',_0x2d6067:0xd28,_0xf9eacc:'V)bU',_0x236277:0xb09,_0x13a9c4:'GdD8',_0xaaec1:0x44a,_0x10a8f6:0x33a,_0x239ebb:0x6fd,_0x2d73bd:'V)bU',_0x523b67:0x5ae,_0x2d632b:0x42d,_0x13a4f7:0x772,_0x15b179:'ebUi',_0x14933c:0xa82,_0x3fe00f:0x9e8,_0x4e1ee5:0x804,_0x41d1f9:0xb9b,_0x4b3838:0x912,_0xe1a938:0x64b,_0x1713dd:0x54d,_0x4b1e48:0x4ac,_0x1ace15:0x39a,_0x1ad844:0xa38,_0x4011ee:']))d',_0x606ea8:0x96d,_0x3ddc09:0x8fc,_0xb9a950:'z8mf',_0x169168:0x8c0,_0x33cce7:0x706,_0x530d81:0x6b8,_0x5a3e89:'KDG1',_0x5b5f6f:0x311,_0x5cbf01:0x4b2,_0x24530f:0x1f0,_0x5e3733:0x72a,_0xfb4b6a:0xa45,_0x57ef6c:0x7d1,_0x20a180:']GM1',_0x1c6e99:0x284,_0x41b4c7:'2m0$',_0x15ea18:0x186,_0x485cd1:0x407,_0x18492b:0x914,_0x3f9357:0x7e1,_0x600eb3:0xab7,_0x9ab77b:0x838,_0x1fe9e4:0x5b0,_0x4cd1d8:0x6a5,_0x644098:0x8f5,_0x3b12f0:'&)0b',_0xec5849:0x6b6,_0x4f144a:0x3d3,_0x12f37e:0x67f,_0x4a2f2e:0x90b,_0x20f28e:'hn9d',_0x390da0:0xd4d,_0x2e0551:0x995,_0x760fb9:0x501,_0x4e0cf5:0x6cb,_0x57853:'HQvh',_0x1a404e:0xc81,_0x51a723:0x5fd,_0x110a95:')$Hz',_0x3de9b0:0x9dc,_0x2a2084:0xb6b,_0x728c43:0x256,_0x563e03:'#pB[',_0x4ebe86:0x64a,_0x17a004:0x945,_0x9fb000:'da@G',_0x47e2c0:0x5f2,_0x332db6:0x781,_0x5713b1:0x59b,_0x1d5ac0:'GdD8',_0x1df5c1:0x76c,_0x201ca6:0x8df,_0x276f72:0xf3c,_0x33c490:0xd92,_0x21b3fe:0xc9a,_0x34d8fe:0x47f,_0x5e131e:0x88b,_0x55e6a6:0xc55,_0x519079:0xbbd,_0x13873e:0x874,_0x3903cb:0x885,_0x2433b9:0xea2,_0x10659a:0xbcf,_0x53822b:')9pR',_0x389d24:0xb3b,_0x7be58d:0xa4e,_0x3f5b93:0x422,_0x101e6e:0xa62,_0x1780ef:0x734,_0x38c621:0xb97,_0x598232:0xb15,_0x7ec056:0x67a,_0x2862b2:0x78b,_0x2df9d3:0xcb5,_0x2da8fe:0xc31,_0x4e6a88:0xddf,_0xdb8f84:'z8mf',_0x12a0ad:0xd52,_0x5240c2:0xac3,_0x7fb1c9:'Bu(&',_0x3c85bb:0xa6f,_0x597273:0x4d2,_0x4f8335:0x939,_0x16b70a:0x505,_0x49851d:0xac5,_0x41c25f:0x92f,_0x206713:0x76d,_0x46a45e:0xc60,_0x49a8a5:0x80a,_0x1e3066:0xac6,_0x5a40fc:0xc4e,_0x2cd7c2:0xb5f,_0x570cd6:0x8e8,_0x1cf6d3:'KDG1',_0x4c8ef6:0xc5f,_0x2b7faa:0x849,_0x4ecaa9:0xa87,_0x5a532e:0x384,_0x1e2933:'PB2^',_0x55416a:0x633,_0x449d11:0x3eb,_0x13432f:0xa4d,_0x299f18:0x86a,_0x5ac684:0x669,_0x19690c:0x8d1,_0x464e82:'&)0b',_0x196068:0xc6f,_0x218f9f:0xc4c,_0xfba016:0xb2c,_0x2a225a:0xc7b,_0x483d21:0xba2,_0x5454a8:0x7c8,_0x866631:0xab2,_0x270992:0x879,_0x54f8f7:0x96c,_0x304910:0xd67,_0xa103ac:0xaf1,_0x517ae3:0xa82,_0x41332f:0xd61,_0x3736af:0xd94,_0x3664e9:'3Y(#',_0x5e1876:0x6f5,_0x41b08e:0xe3,_0x322b0f:0x169,_0xd32a89:0x6b6,_0x3a716a:0x681,_0x4a06ad:0x7f7,_0x208d67:0x391,_0x58fc09:0x342,_0x454622:0x757,_0x1eb04f:0x9da,_0x2e20a0:0x75e,_0x1ef705:0x86f,_0x3faa4a:')9w@',_0x544aa3:0x75b,_0x4b73cf:0x8d0,_0x57513f:0xced,_0x5328b5:0x890,_0xbe7320:0x6a4,_0xe0c000:0xa05,_0x495e74:']))d',_0x5cccf9:0x528,_0x20311d:0x965,_0x2bde1a:0xcb3,_0x2ef57a:'#%z0',_0x35405f:0x94a,_0x918637:0x509,_0xd6cd64:0x7c7,_0x3c98dc:'!k$h',_0x455768:0x740,_0x59f6a7:0x4cb,_0x1c5760:0x683,_0x4f3838:'3Y(#',_0x315de0:0xb89,_0xb21641:'V23R',_0x144165:0xd6a,_0x97c066:0x9c6,_0x370a37:0xc61,_0x56f499:0x694,_0x54802c:'z8mf',_0x2a91d0:0x7a6,_0xb67b10:0x92a,_0x1a6357:0x38d},_0x51a2cc={_0x242dd8:0x129},_0x2427a3={_0x393e44:0x16a};function _0x5f235e(_0xc6c693,_0x2ac36d,_0x41dd31,_0xf9469c){return _0x259b54(_0x2ac36d,_0x2ac36d-0x194,_0x41dd31-0x66,_0x41dd31-_0x2427a3._0x393e44);}const _0x3358f8={'uxeni':'default','qseqr':_0x5f235e(0x72b,_0x13b6cb._0x4b1b8f,_0x13b6cb._0x278721,_0x13b6cb._0x1ff883),'eJDfA':function(_0x7fac69,_0xfe8ffa){return _0x7fac69>_0xfe8ffa;},'lWRzK':function(_0x2d3f06,_0x26a223){return _0x2d3f06>_0x26a223;},'LooTS':_0x5f235e(_0x13b6cb._0x4b8388,_0x13b6cb._0x4ce706,_0x13b6cb._0x31b21a,_0x13b6cb._0x31b21a)+_0x5d4d74(0xe53,'VXA^',_0x13b6cb._0x3e5dd7,_0x13b6cb._0x599d45),'pCQZS':function(_0x2c969d,_0x23a8e4){return _0x2c969d||_0x23a8e4;},'QkhCJ':_0x5d4d74(0xbcc,'PB2^',0xbb4,0x971),'mVILZ':_0x5f235e(0xb2f,_0x13b6cb._0xe4076f,_0x13b6cb._0x3a7b6b,0xd57),'hVGSy':_0x5d4d74(_0x13b6cb._0x2ff8cd,_0x13b6cb._0x2174b5,_0x13b6cb._0xe60aba,0x9b7),'pfUbp':_0x5d4d74(_0x13b6cb._0x176ac8,'!k$h',_0x13b6cb._0x30fe7f,0xac4),'ebVAg':_0x5d4d74(0x550,'z8mf',0x7d4,_0x13b6cb._0x5d9266),'IgNpQ':function(_0x11a096,_0x5c5b8c){return _0x11a096!==_0x5c5b8c;},'pyBaV':function(_0x7c95b0,_0x3a7ecb){return _0x7c95b0+_0x3a7ecb;},'EQkFf':function(_0x38398f,_0x1579d8){return _0x38398f+_0x1579d8;},'eBcUZ':_0x5d4d74(0x333,_0x13b6cb._0xf34b1e,0x609,0x20a),'RaBCi':function(_0x5f3a2d,_0x3b8bec){return _0x5f3a2d instanceof _0x3b8bec;},'VdSIW':function(_0x3e7759,_0x495328){return _0x3e7759(_0x495328);}};function _0x5d4d74(_0x30091a,_0x16363d,_0x82e78,_0x993c53){return _0x259b54(_0x16363d,_0x16363d-0x1d9,_0x82e78-_0x51a2cc._0x242dd8,_0x82e78-0x3b8);}try{const _0x50739d=agent_repo_1['agentRepos'+_0x5f235e(0x7ae,_0x13b6cb._0x5d8f18,0x50a,0x71b)]['findByDepa'+_0x5d4d74(0x848,'$6rX',0x599,_0x13b6cb._0x34d557)](_0x1e9fd9);let _0x558ebc=0x8*0x59+-0x1*-0x13f9+-0x16c1;const _0x220459=_0x3358f8['pCQZS'](_0x29a12c,_0x3358f8[_0x5d4d74(0xa48,'GdD8',0xb37,_0x13b6cb._0x34b022)]),_0x2bc096=dept_repo_1[_0x5d4d74(0xb98,_0x13b6cb._0x5cd472,_0x13b6cb._0x2d6067,0xe5a)+_0x5d4d74(0xe32,_0x13b6cb._0xf9eacc,_0x13b6cb._0x236277,0xb4a)][_0x5f235e(0x597,_0x13b6cb._0x13a9c4,_0x13b6cb._0xaaec1,_0x13b6cb._0x10a8f6)](_0x1e9fd9),_0x44d828=_0x29a12c?_0x2bc096?.[_0x5f235e(_0x13b6cb._0x239ebb,_0x13b6cb._0x2d73bd,_0x13b6cb._0x523b67,_0x13b6cb._0x2d632b)]||'未知':_0x3358f8[_0x5d4d74(_0x13b6cb._0x13a4f7,_0x13b6cb._0x15b179,0x66e,_0x13b6cb._0x14933c)];for(const _0x43a538 of _0x50739d){if(_0x3358f8['mVILZ']!==_0x3358f8[_0x5d4d74(_0x13b6cb._0x3fe00f,'93KN',_0x13b6cb._0x4e1ee5,0x3ae)])_0x24ce1f[_0x3358f8[_0x5d4d74(_0x13b6cb._0x41d1f9,'Q]KY',0x7cd,0x527)]]=_0x470217;else{const _0x3f57bf=(-0x132e+0x5c7*0x1+0xd67,utils_1[_0x5f235e(_0x13b6cb._0x4b3838,']GM1',_0x13b6cb._0xe1a938,0x7cf)+_0x5d4d74(0xcf8,'k7fb',0xa52,0xd4f)])(_0x43a538['id']),_0x128ef6=path[_0x5f235e(0x2de,'93KN',_0x13b6cb._0x1713dd,0x9b5)](_0x3f57bf,_0x3358f8[_0x5f235e(0x835,'dx1J',_0x13b6cb._0x4b1e48,_0x13b6cb._0x1ace15)]);if(!fs[_0x5d4d74(0x6de,'ebUi',0xa92,_0x13b6cb._0x1ad844)](_0x128ef6))continue;const _0x1d78da=fs[_0x5d4d74(0x521,_0x13b6cb._0x4011ee,0x8ee,_0x13b6cb._0x606ea8)+'nc'](_0x128ef6,_0x3358f8['pfUbp']),_0x104dcd=_0x5f235e(0x9f1,'!7O4',_0x13b6cb._0x3ddc09,0xbc1),_0x4c13dd=_0x3358f8[_0x5d4d74(0x9f7,_0x13b6cb._0xb9a950,_0x13b6cb._0x169168,_0x13b6cb._0x33cce7)],_0x5124c1=_0x1d78da[_0x5f235e(0x976,'k7fb',0x878,0x82e)](_0x104dcd),_0x12448b=_0x1d78da[_0x5d4d74(_0x13b6cb._0x530d81,_0x13b6cb._0x5a3e89,0x5a5,_0x13b6cb._0x5b5f6f)](_0x4c13dd);if(_0x3358f8[_0x5d4d74(0x6c8,_0x13b6cb._0x5d8f18,0x8a2,_0x13b6cb._0x5cbf01)](_0x5124c1,-(0x20be+0x2*-0x421+-0x187b))&&_0x12448b!==-(0x2552+0x291*-0x5+-0x4*0x61f)){const _0x29091b=_0x5f235e(0x2b9,'Ybev',0x447,_0x13b6cb._0x24530f)+'###\x20所在群\x0a\x0a-'+_0x5d4d74(0xb0e,_0x13b6cb._0x4b1b8f,_0x13b6cb._0x5e3733,0x7fc)+_0x220459+(_0x5f235e(0xad9,_0x13b6cb._0xf34b1e,_0x13b6cb._0xfb4b6a,_0x13b6cb._0x57ef6c)+':\x20')+_0x44d828+(_0x5f235e(0x898,_0x13b6cb._0x20a180,0x6ff,0x789)+_0x5d4d74(_0x13b6cb._0x1c6e99,_0x13b6cb._0x41b4c7,0x513,_0x13b6cb._0x15ea18)+_0x5f235e(0x4f6,'93KN',0x6cf,_0x13b6cb._0x485cd1)+_0x5f235e(0x872,'Foj6',0x9f7,0x5c4)+_0x5f235e(0xa00,_0x13b6cb._0xf34b1e,0xb2f,_0x13b6cb._0x18492b)+_0x5d4d74(0xe96,_0x13b6cb._0xb9a950,0xb36,0x9f8)+_0x5f235e(_0x13b6cb._0x3f9357,'$6rX',_0x13b6cb._0x600eb3,0x7eb)+_0x5f235e(_0x13b6cb._0x9ab77b,'#%z0',_0x13b6cb._0x1fe9e4,0x1a0)+_0x5d4d74(0x2bf,'l^lf',_0x13b6cb._0x4cd1d8,0x232)+'=\x22')+_0x220459+(_0x5f235e(_0x13b6cb._0x644098,_0x13b6cb._0x3b12f0,0x49d,_0x13b6cb._0xec5849)+_0x5f235e(0x2cf,')9w@',_0x13b6cb._0x4f144a,_0x13b6cb._0x12f37e)+_0x5d4d74(_0x13b6cb._0x4a2f2e,_0x13b6cb._0x20f28e,0xa43,_0x13b6cb._0x390da0)+'数说明:**\x0a\x0a|\x20'+_0x5f235e(_0x13b6cb._0x2e0551,'k7fb',0x7c1,0x370)+_0x5d4d74(_0x13b6cb._0x760fb9,'V23R',_0x13b6cb._0x4e0cf5,0x7a4)+_0x5f235e(0xde3,_0x13b6cb._0x57853,0x9ef,_0x13b6cb._0x1a404e)+'ction`\x20|\x20固'+_0x5d4d74(_0x13b6cb._0x51a723,_0x13b6cb._0x110a95,0x528,0x125)+_0x5d4d74(0x83c,'Foj6',_0x13b6cb._0x3de9b0,_0x13b6cb._0x2a2084)+_0x5f235e(_0x13b6cb._0x728c43,_0x13b6cb._0x563e03,_0x13b6cb._0x4ebe86,_0x13b6cb._0x17a004)+'值\x20`\x22feishu'+_0x5d4d74(0x23a,_0x13b6cb._0x9fb000,0x5f4,_0x13b6cb._0x47e2c0)+_0x5f235e(_0x13b6cb._0x332db6,'HQvh',0x354,0x16f)+_0x5f235e(_0x13b6cb._0x5713b1,_0x13b6cb._0x1d5ac0,_0x13b6cb._0x1df5c1,_0x13b6cb._0x201ca6)+_0x5d4d74(_0x13b6cb._0x276f72,'FtqP',0xd8f,_0x13b6cb._0x33c490)+_0x5f235e(_0x13b6cb._0x21b3fe,_0x13b6cb._0x5cd472,0x95b,0x65b)+_0x5f235e(_0x13b6cb._0x34d8fe,_0x13b6cb._0x5a3e89,0x56e,0x871)+_0x5f235e(0x8fc,'c36g',_0x13b6cb._0x5e131e,_0x13b6cb._0x55e6a6)+_0x5f235e(-0xe4,'lofD',0x2d4,0x26b)+'\x0a###\x20发送时机\x0a'+_0x5d4d74(_0x13b6cb._0x519079,_0x13b6cb._0x4b1b8f,_0x13b6cb._0x13873e,_0x13b6cb._0x3903cb)+_0x5f235e(_0x13b6cb._0x2433b9,'$6rX',0xa87,0xa3f)+_0x5f235e(_0x13b6cb._0x10659a,_0x13b6cb._0x53822b,_0x13b6cb._0x389d24,_0x13b6cb._0x7be58d)+_0x5d4d74(_0x13b6cb._0x3f5b93,_0x13b6cb._0x2174b5,0x796,_0x13b6cb._0x101e6e)+_0x5f235e(_0x13b6cb._0x1780ef,'Q]KY',_0x13b6cb._0x38c621,0x791)+_0x5f235e(0x69f,'7k]n',0x6c8,_0x13b6cb._0x598232)+_0x5d4d74(_0x13b6cb._0x7ec056,'Lh@)',_0x13b6cb._0x2862b2,0x36e)),_0x20a10e=_0x3358f8['pyBaV'](_0x3358f8[_0x5d4d74(_0x13b6cb._0x2df9d3,'l^lf',_0x13b6cb._0x2da8fe,0xa30)](_0x1d78da[_0x5d4d74(_0x13b6cb._0x4e6a88,_0x13b6cb._0xdb8f84,_0x13b6cb._0x12a0ad,_0x13b6cb._0x5240c2)](-0x1441+0xa28*0x1+0xa19*0x1,_0x5124c1),_0x29091b),_0x1d78da[_0x5d4d74(0xf68,_0x13b6cb._0x7fb1c9,0xb42,_0x13b6cb._0x3c85bb)](_0x12448b));fs[_0x5d4d74(_0x13b6cb._0x597273,_0x13b6cb._0x5d8f18,_0x13b6cb._0x4f8335,_0x13b6cb._0x16b70a)+_0x5f235e(0xbbc,'GdD8',0xaf9,_0x13b6cb._0x49851d)](_0x128ef6,_0x20a10e,_0x3358f8[_0x5d4d74(0xcf7,_0x13b6cb._0x53822b,_0x13b6cb._0x41c25f,_0x13b6cb._0x206713)]),_0x558ebc++;}}}const _0x3fa377={};return _0x3fa377[_0x5d4d74(_0x13b6cb._0x46a45e,'da@G',_0x13b6cb._0x49a8a5,_0x13b6cb._0x1e3066)]=!![],_0x3fa377[_0x5d4d74(0x87a,'HQvh',_0x13b6cb._0x5a40fc,_0x13b6cb._0x2cd7c2)+'nt']=_0x558ebc,_0x3fa377[_0x5d4d74(_0x13b6cb._0x570cd6,_0x13b6cb._0x1cf6d3,0xc2b,0xc53)]=_0x5f235e(_0x13b6cb._0x4c8ef6,_0x13b6cb._0x53822b,_0x13b6cb._0x2b7faa,_0x13b6cb._0x5240c2)+_0x558ebc+_0x5f235e(0xf33,'GdD8',0xb8e,_0x13b6cb._0x4ecaa9),_0x3fa377;}catch(_0x5e1660){if(_0x3358f8['eBcUZ']===_0x3358f8[_0x5f235e(_0x13b6cb._0x5a532e,_0x13b6cb._0x1e2933,_0x13b6cb._0x55416a,_0x13b6cb._0x449d11)])return{'success':![],'updatedCount':0x0,'message':_0x5f235e(0xa0d,'KAAL',_0x13b6cb._0x13432f,_0x13b6cb._0x299f18)+(_0x3358f8[_0x5d4d74(_0x13b6cb._0x5ac684,'#%z0',_0x13b6cb._0x19690c,0xd20)](_0x5e1660,Error)?_0x5e1660[_0x5d4d74(0xd4a,_0x13b6cb._0x464e82,0xcbb,0xb68)]:_0x3358f8[_0x5f235e(0xa36,_0x13b6cb._0x53822b,0xae8,_0x13b6cb._0x196068)](String,_0x5e1660))};else{const _0x2153f3=_0x4f10ac[_0x5d4d74(0x6ba,'$6rX',0x88d,_0x13b6cb._0x218f9f)+_0x5d4d74(_0x13b6cb._0xfba016,']))d',_0x13b6cb._0x2a225a,0xb03)][_0x5f235e(0xfcc,'lofD',_0x13b6cb._0x483d21,_0x13b6cb._0x5454a8)+_0x5f235e(0x4a6,_0x13b6cb._0x4ce706,0x3aa,0x802)+'ole'](_0x16d84f,_0x3358f8[_0x5d4d74(_0x13b6cb._0x866631,'z8mf',0xcd2,0xf62)]),_0x4ea0c5=_0x3358f8[_0x5d4d74(0xc6d,'ECfd',_0x13b6cb._0x270992,_0x13b6cb._0x54f8f7)](_0x2153f3[_0x5f235e(_0x13b6cb._0x304910,'hn9d',_0x13b6cb._0xa103ac,_0x13b6cb._0x517ae3)],0x1cd1+0x5*-0x491+-0x5fc)?'|\x20'+_0x2153f3[0x6*-0x139+0x1cae+-0x1558]['id']+_0x5d4d74(_0x13b6cb._0x41332f,'Ybev',_0x13b6cb._0x3736af,0xfe4)+_0x2153f3[-0x5e3*0x1+-0x22*-0xd4+-0x1645*0x1]['id']+_0x5f235e(0xac0,_0x13b6cb._0x3664e9,_0x13b6cb._0x5e1876,0x34b)+_0x2153f3[-0xe0b+0x197b+-0x3d*0x30][_0x5d4d74(0x9c7,_0x13b6cb._0x1e2933,0x722,0x5f5)]+_0x5f235e(-_0x13b6cb._0x41b08e,'l^lf',0x2bb,-_0x13b6cb._0x322b0f)+_0x2153f3[0x2*-0x570+0xf8d+-0x4ad]['status']+'\x20|':_0x5f235e(_0x13b6cb._0xd32a89,_0x13b6cb._0x41b4c7,_0x13b6cb._0x3a716a,_0x13b6cb._0x4a06ad)+_0x5f235e(_0x13b6cb._0x208d67,')$Hz',_0x13b6cb._0x58fc09,_0x13b6cb._0x454622),_0x3131d7=_0x4e14b1[_0x5f235e(_0x13b6cb._0x1eb04f,'3Y(#',_0x13b6cb._0x2e20a0,_0x13b6cb._0x1ef705)+_0x5d4d74(0xb72,']GM1',0xce4,0x921)][_0x5f235e(0x86c,_0x13b6cb._0x3faa4a,0x748,0x2df)+_0x5d4d74(0x8d1,_0x13b6cb._0x57853,_0x13b6cb._0x544aa3,_0x13b6cb._0x4b73cf)+_0x5d4d74(0x835,'Foj6',0xca3,_0x13b6cb._0x57513f)](_0xdb120d,_0x5d4d74(0xb56,'1mQU',0x768,_0x13b6cb._0x5328b5)),_0x4d9bd3=_0x3358f8[_0x5d4d74(_0x13b6cb._0xbe7320,'c36g',_0x13b6cb._0xe0c000,0x6bf)](_0x3131d7[_0x5d4d74(0xaaa,_0x13b6cb._0x495e74,0x8b7,_0x13b6cb._0x5cccf9)],0x13a8+-0x11*0x185+-0x11*-0x5d)?'|\x20'+_0x3131d7[0x4*-0x18d+-0x3*0x91d+0x1f*0x115]['id']+_0x5d4d74(_0x13b6cb._0x20311d,'k7fb',0x9a4,0x714)+_0x3131d7[-0x1a*0x73+-0x52*-0x53+-0xee8]['id']+_0x5f235e(_0x13b6cb._0x2bde1a,_0x13b6cb._0x2ef57a,_0x13b6cb._0x35405f,_0x13b6cb._0x918637)+_0x3131d7[0x42*-0x4+0x23ad+0x7*-0x4f3][_0x5d4d74(_0x13b6cb._0xd6cd64,_0x13b6cb._0x3c98dc,_0x13b6cb._0x455768,_0x13b6cb._0x59f6a7)]+_0x5f235e(_0x13b6cb._0x1c5760,_0x13b6cb._0x4f3838,0x53a,0x32c)+_0x3131d7[-0x2*0x12c9+0xab0+0x1ae2][_0x5d4d74(_0x13b6cb._0x315de0,_0x13b6cb._0xb21641,0xc49,_0x13b6cb._0x144165)]+'\x20|':_0x3358f8[_0x5d4d74(_0x13b6cb._0x97c066,'hn9d',_0x13b6cb._0x370a37,0x86b)],_0x2ae755={};return _0x2ae755[_0x5d4d74(_0x13b6cb._0x56f499,_0x13b6cb._0x54802c,_0x13b6cb._0x2a91d0,_0x13b6cb._0xb67b10)]=_0x4ea0c5,_0x2ae755[_0x5f235e(0x334,'Ybev',_0x13b6cb._0x1a6357,0x794)]=_0x4d9bd3,_0x2ae755;}}}function regenerateAgentFiles(_0x13233a=[_0x259b54('V23R',0x889,0x539,0x8f4),'watchdog_m'+'ain']){const _0x15bc98={_0x5d5e32:0xb33,_0x1fa375:0xfb,_0x4ee313:'VXA^',_0x2dc353:0x79,_0x45f255:'loi5',_0x11f702:0x703,_0xc5be91:'da@G',_0x49275f:0xadf,_0x362b42:'GdD8',_0x5d9932:'l^lf',_0x3dfbc1:0xab4,_0x275de8:'suJD',_0x7f65ad:0xbcf,_0x9b724:')9pR',_0x18f448:0x2a2,_0x4f28c5:0x1ef,_0x2986cb:'v2$P',_0x5e413a:0x357,_0x3f1044:0x6c,_0x510e57:0x999,_0x65e502:'lofD',_0x33865f:0x804,_0x1813bf:0xdb5,_0x2ad384:')9w@',_0x4f3af9:0x10e,_0xde5bf1:'ebUi',_0x1e7446:0x42f,_0xcac402:0x9aa,_0x395325:'Lh@)',_0x2a21f9:0xace,_0x31e72b:0xdc,_0x103cc3:'Q]KY',_0x50ca26:0x2d2,_0x291df4:0x30a,_0x56e5f0:'KDG1',_0x12a416:0x98c,_0x230570:0x3fa,_0x142c2b:'#%z0',_0xff8121:0x447,_0x444d10:0x783,_0x291d33:'N%cE',_0x268194:0x9ea,_0x5215b8:0x842,_0x491cde:0x84a,_0x48966e:'KAAL',_0x20f659:0xa74,_0x1f4590:'hn9d',_0x40298e:0x724,_0x13d699:0xa2d,_0x36d3d7:'3Y(#',_0x1e712e:0x626,_0x8c58ba:0x22a,_0x72b977:0x170,_0xaa4bc1:0x81a,_0x329267:'PB2^',_0x273034:0x324,_0x566991:0x8fe,_0x26590f:0xadb,_0x1f841c:0x5aa,_0x4448ca:'PB2^',_0x16e3da:0x370,_0x4b53ca:']GM1',_0x49e4ec:0x99d,_0x1c7f7e:0x6f1,_0x1d0f48:0x313,_0x18ad02:0x824,_0x433e53:0xbc,_0x414f51:'1mQU',_0x57c04a:0x13e,_0x5eccb0:0x1a2,_0x1a9c3e:0xaa2,_0x394360:0x83a,_0x1e250b:0x3c3,_0x1042d0:0x773,_0x2d960e:0xdfb,_0x4f9243:0x610,_0x3adc76:0x23a,_0x5a77a4:0x3c1,_0x56cc97:0x73d,_0x3cf62e:0x441,_0x3d05e6:0x48a,_0x4bc699:0xcb2,_0x24c570:0x891,_0xf77d7a:'KAAL',_0x414def:0xe52,_0x1ad0e7:0x250,_0x244739:0x412,_0x44d9ee:0x4da,_0x3740f4:0x5e6,_0x2dd907:'FtqP',_0x51d661:0x969,_0x5e65e:0xa45,_0x15c82d:0x504,_0x26012b:0x83d,_0x81987b:'VXA^',_0x40ed10:0xa5c,_0x15853d:0x8fb,_0x391596:0xd5d,_0x50358f:0x5a3,_0x3bd150:0x76c,_0x5336e4:0x825,_0x23df5c:0x697,_0x1ef97d:0x5af,_0x5934eb:'LaEV',_0x193b73:0x3e2,_0x29868c:0x80e,_0x5ecd60:0x6d2,_0x2fcae1:0x6ae,_0x4b98bd:0x5e5,_0x1899f2:'FtqP',_0x5b21b8:0x769,_0x5ce169:0x21,_0x468218:0x27d,_0x33abee:0xd38,_0x41c4de:0xdd1,_0x333795:0x1085,_0x505843:0x9c,_0x36f1e5:0x332,_0x759426:0x834,_0x10b4a9:0xac7,_0x25ec9f:0x48f,_0x16d619:0x474,_0x1275d4:0xd17,_0x1ba4ff:'Bu(&',_0x46d23f:0x6c4,_0x3f5a7d:0x46e,_0x4784d1:'c36g',_0x4ac867:0xc07,_0x4f6882:0x7a7,_0x306034:0x892,_0xad5931:0x4e3,_0x22e6df:0x384,_0xf9e56:'Ybev',_0xc935e1:0xe14,_0x1b77c2:'!k$h',_0x47d4e9:0xeae,_0x25b50f:'V23R',_0x494f78:0x6b9,_0x1727b3:0xba9,_0x2df50e:0x940,_0x31d4e0:0xcf4,_0x443c48:0x8b7,_0xe0cc14:0x14b,_0x22744c:0x871,_0x44a871:'93KN',_0x4ac871:']))d',_0xae63bb:0xfd,_0x301ed6:0x2ce,_0x7ecb11:0xf,_0x25dc54:0x1f9,_0x355f84:0x5a5,_0x5d2b91:0x6db,_0x358ea0:0x28b,_0x5554b7:0x378,_0x598c76:0x1e4,_0x27bfe1:'$6rX',_0x5abf1e:0x34,_0x2c5beb:0x1eb,_0x28bd29:0x983,_0x2c6fc2:0x197,_0x127ae2:0x69f,_0x5115a5:0x4bc,_0x344502:0x8e0,_0x3af0c4:0x758,_0x1c1f39:0x4da,_0x2ef33f:0x407,_0x1ac165:0xd3c,_0x40777d:0xbdf,_0x6d04b8:'1mQU',_0x519bbe:0xe04,_0x2e2cd0:0x10b7,_0x13f751:'Dsi5',_0x50e2af:0x8e2},_0x58a2fc={_0x4e31d5:0xcf,_0x21b118:0x3e,_0x266773:0x113},_0x2ad312={_0x111541:0x14c};function _0x48b6bb(_0x2abb36,_0x257897,_0x28cf87,_0x483f35){return _0x259b54(_0x257897,_0x257897-0x141,_0x28cf87-_0x2ad312._0x111541,_0x2abb36- -0x112);}const _0x2cc0e3={'ShswE':'⚠️\x20\x20请重启\x20Gat'+_0x3649de(_0x15bc98._0x5d5e32,0xaaf,'suJD',0xf52)+'接断开:opencl'+_0x48b6bb(_0x15bc98._0x1fa375,_0x15bc98._0x4ee313,0x4c3,_0x15bc98._0x2dc353)+'\x20restart','tsTdu':function(_0x30d95a,_0x2de17f){return _0x30d95a===_0x2de17f;},'dNRPh':_0x3649de(0x75f,0x97f,_0x15bc98._0x45f255,0x468),'dtzMV':_0x3649de(_0x15bc98._0x11f702,0xb13,_0x15bc98._0xc5be91,_0x15bc98._0x49275f),'zSaFN':function(_0x40adc6,_0x47568b,_0x2c88c5){return _0x40adc6(_0x47568b,_0x2c88c5);},'KcnaD':_0x48b6bb(0x6d4,_0x15bc98._0x362b42,0x76c,0x53a),'dxNTn':function(_0x2e642c,_0xdf50a5){return _0x2e642c instanceof _0xdf50a5;},'ZyUAM':function(_0x3e0c04,_0xe9e356){return _0x3e0c04===_0xe9e356;},'XCdyJ':_0x48b6bb(0xac,_0x15bc98._0x5d9932,0x169,0x316),'vNexb':function(_0x30af73,_0x583a84){return _0x30af73>_0x583a84;},'iCRZM':'SRwnJ'},_0xb1b1b3={};_0xb1b1b3[_0x3649de(_0x15bc98._0x3dfbc1,0x839,_0x15bc98._0x275de8,_0x15bc98._0x7f65ad)]=!![],_0xb1b1b3['regenerate'+_0x48b6bb(0xc9,_0x15bc98._0x9b724,-_0x15bc98._0x18f448,0x4b)]=0x0,_0xb1b1b3[_0x48b6bb(_0x15bc98._0x4f28c5,_0x15bc98._0x2986cb,_0x15bc98._0x5e413a,_0x15bc98._0x3f1044)]=[],_0xb1b1b3[_0x3649de(0xe14,0x1259,'!k$h',0x9c2)]='';function _0x3649de(_0x59aa26,_0x3b2f5f,_0x56f308,_0x3ce1b4){return _0x5bf319(_0x59aa26-_0x58a2fc._0x4e31d5,_0x59aa26-_0x58a2fc._0x21b118,_0x56f308,_0x3ce1b4-_0x58a2fc._0x266773);}const _0x3dcbf3=_0xb1b1b3;try{const _0x13c6ae=agent_repo_1[_0x3649de(_0x15bc98._0x510e57,0xcda,_0x15bc98._0x65e502,_0x15bc98._0x33865f)+_0x3649de(0xa70,_0x15bc98._0x1813bf,_0x15bc98._0x2ad384,0x7d4)][_0x3649de(0xca2,0xe2e,')9w@',0x1042)](),_0x5629ee=_0x13c6ae[_0x48b6bb(0x53f,'PB2^',_0x15bc98._0x4f3af9,0x6c4)](_0x3272bf=>!_0x13233a[_0x3649de(0x56b,0x179,'suJD',0x3b2)](_0x3272bf['id']));console[_0x48b6bb(0x280,_0x15bc98._0xde5bf1,0x543,_0x15bc98._0x1e7446)](_0x3649de(0xc93,_0x15bc98._0xcac402,_0x15bc98._0x395325,_0x15bc98._0x2a21f9)+_0x5629ee[_0x48b6bb(0x311,'2PrQ',0x32d,0xef)]+(_0x48b6bb(_0x15bc98._0x31e72b,_0x15bc98._0x103cc3,-_0x15bc98._0x50ca26,-_0x15bc98._0x291df4)+_0x3649de(0x68a,0xa07,_0x15bc98._0x56e5f0,_0x15bc98._0x12a416)));for(const _0x47ebd0 of _0x5629ee){if(_0x2cc0e3[_0x48b6bb(_0x15bc98._0x230570,_0x15bc98._0x142c2b,_0x15bc98._0xff8121,_0x15bc98._0x444d10)](_0x2cc0e3[_0x48b6bb(0x6af,_0x15bc98._0x291d33,0x80d,_0x15bc98._0x268194)],_0x2cc0e3[_0x3649de(_0x15bc98._0x5215b8,_0x15bc98._0x491cde,_0x15bc98._0x48966e,0x8ce)]))return _0x2cc0e3[_0x3649de(0xca4,_0x15bc98._0x20f659,_0x15bc98._0x1f4590,0xbae)];else try{const _0x4dd85e=(0x1ed8+-0xb62+-0x5e*0x35,utils_1[_0x3649de(0x5f5,0x959,'ECfd',0x1e0)+_0x3649de(_0x15bc98._0x40298e,_0x15bc98._0x13d699,_0x15bc98._0x36d3d7,_0x15bc98._0x1e712e)])(_0x47ebd0['id']);if(!fs[_0x48b6bb(_0x15bc98._0x8c58ba,_0x15bc98._0x103cc3,-_0x15bc98._0x72b977,-0x13e)](_0x4dd85e)){_0x3dcbf3[_0x3649de(0xb0d,_0x15bc98._0xaa4bc1,'7k]n',0xe5e)][_0x48b6bb(0x4fb,_0x15bc98._0x329267,0x547,_0x15bc98._0x273034)](_0x3649de(_0x15bc98._0x566991,_0x15bc98._0x26590f,'VXA^',_0x15bc98._0x1f841c)+_0x47ebd0['id']+'\x20('+_0x47ebd0[_0x48b6bb(0x258,_0x15bc98._0x4448ca,0x5bd,_0x15bc98._0x16e3da)]+_0x48b6bb(0x82d,_0x15bc98._0x4b53ca,0x92b,_0x15bc98._0x49e4ec));continue;}_0x2cc0e3[_0x3649de(_0x15bc98._0x1c7f7e,_0x15bc98._0x1d0f48,')9w@',_0x15bc98._0x18ad02)](createAgentFiles,_0x47ebd0['id'],{'name':_0x47ebd0[_0x48b6bb(_0x15bc98._0x433e53,_0x15bc98._0x414f51,0x34c,0x1bb)],'role':_0x47ebd0[_0x48b6bb(_0x15bc98._0x57c04a,'l^lf',-0x15e,_0x15bc98._0x5eccb0)],'departmentId':_0x47ebd0[_0x3649de(_0x15bc98._0x1a9c3e,0x858,'PB2^',_0x15bc98._0x394360)+_0x3649de(0x5af,_0x15bc98._0x1e250b,']GM1',_0x15bc98._0x1042d0)]||undefined,'jobId':_0x47ebd0[_0x3649de(_0x15bc98._0x2d960e,0x117e,'suJD',0x1271)]||undefined}),_0x3dcbf3[_0x3649de(0x705,_0x15bc98._0x4f9243,'$6rX',0x814)+_0x48b6bb(0x12d,'PB2^',_0x15bc98._0x3adc76,_0x15bc98._0x5a77a4)]++,console[_0x3649de(_0x15bc98._0x56cc97,_0x15bc98._0x3cf62e,'LaEV',_0x15bc98._0x3d05e6)](_0x3649de(_0x15bc98._0x4bc699,_0x15bc98._0x24c570,_0x15bc98._0xf77d7a,_0x15bc98._0x414def)+_0x48b6bb(_0x15bc98._0x1ad0e7,']GM1',_0x15bc98._0x244739,_0x15bc98._0x44d9ee)+_0x47ebd0['id']+'\x20('+_0x47ebd0[_0x3649de(_0x15bc98._0x3740f4,0x8d4,_0x15bc98._0x2dd907,0x69e)]+')');}catch(_0xd29b2a){if(_0x2cc0e3[_0x3649de(0x6e4,_0x15bc98._0x51d661,'V)bU',0x631)](_0x2cc0e3[_0x48b6bb(0x6f3,'v2$P',_0x15bc98._0x5e65e,0x864)],_0x2cc0e3[_0x48b6bb(_0x15bc98._0x15c82d,'GdD8',0x757,_0x15bc98._0x26012b)])){const _0x5cb234=_0x3649de(0x8fe,0x8d2,_0x15bc98._0x81987b,_0x15bc98._0x40ed10)+_0x47ebd0['id']+'\x20('+_0x47ebd0[_0x3649de(_0x15bc98._0x15853d,_0x15bc98._0x391596,'KAAL',0xade)]+_0x48b6bb(0x1a8,_0x15bc98._0x275de8,0x5ab,_0x15bc98._0x50358f)+(_0x2cc0e3[_0x48b6bb(_0x15bc98._0x3bd150,'ECfd',0x9cf,_0x15bc98._0x5336e4)](_0xd29b2a,Error)?_0xd29b2a[_0x3649de(_0x15bc98._0x23df5c,_0x15bc98._0x1ef97d,_0x15bc98._0x5934eb,_0x15bc98._0x193b73)]:String(_0xd29b2a));_0x3dcbf3[_0x3649de(_0x15bc98._0x29868c,0x834,'c36g',0xbc7)][_0x3649de(_0x15bc98._0x5ecd60,_0x15bc98._0x2fcae1,'GdD8',_0x15bc98._0x4b98bd)](_0x5cb234),console[_0x48b6bb(0x85a,_0x15bc98._0x1899f2,_0x15bc98._0x5b21b8,0x49b)](_0x48b6bb(0x1f4,'v2$P',-_0x15bc98._0x5ce169,_0x15bc98._0x468218)+_0x5cb234);}else{const _0x119a55=_0x1f481d[_0x3649de(_0x15bc98._0x33abee,_0x15bc98._0x41c4de,_0x15bc98._0x142c2b,0xcfa)][_0x3649de(0xd19,_0x15bc98._0x333795,'suJD',0xf2b)][_0x4a4696][_0x48b6bb(0x2b4,'#pB[',-_0x15bc98._0x505843,_0x15bc98._0x36f1e5)];_0x17dbc4[_0x48b6bb(_0x15bc98._0x759426,'hn9d',0x62f,_0x15bc98._0x10b4a9)][_0x48b6bb(0x57,_0x15bc98._0x2dd907,_0x15bc98._0x25ec9f,0x374)][_0x56e318]=_0x1448b8,_0x119a55&&(_0x438ac1[_0x48b6bb(0x4a3,'loi5',_0x15bc98._0x16d619,0x469)][_0x3649de(0x9ac,_0x15bc98._0x1275d4,_0x15bc98._0x1ba4ff,0xbe6)][_0x7f0414][_0x48b6bb(0x5b2,_0x15bc98._0x103cc3,0x51f,0x29b)]=_0x119a55);}}}const _0x38dbdc=syncAssistantTeamMembers();if(_0x38dbdc[_0x48b6bb(_0x15bc98._0x46d23f,_0x15bc98._0x56e5f0,0x3cf,_0x15bc98._0x3f5a7d)]){if(_0x2cc0e3[_0x3649de(0x7b1,0x72e,_0x15bc98._0x4784d1,0x603)](_0x2cc0e3[_0x3649de(_0x15bc98._0x4ac867,_0x15bc98._0x4f6882,'V23R',_0x15bc98._0x306034)],_0x2cc0e3[_0x48b6bb(_0x15bc98._0xad5931,'Ybev',0x5ab,0x22f)]))console[_0x48b6bb(0x3dd,')9pR',0x17f,_0x15bc98._0x22e6df)](_0x48b6bb(0x58b,_0x15bc98._0xf9e56,0x203,0x721)+'总助理团队成员信息');else{const _0xde0e20={};return _0xde0e20['success']=![],_0xde0e20[_0x3649de(_0x15bc98._0xc935e1,0xbed,_0x15bc98._0x1b77c2,_0x15bc98._0x47d4e9)]=_0x48b6bb(0x7e3,_0x15bc98._0x25b50f,_0x15bc98._0x494f78,0x600)+'中',_0xde0e20;}}return _0x3dcbf3[_0x48b6bb(0x908,_0x15bc98._0x1b77c2,_0x15bc98._0x1727b3,_0x15bc98._0x2df50e)]=_0x3649de(_0x15bc98._0x31d4e0,_0x15bc98._0x443c48,'suJD',0xe83)+_0x3dcbf3['regenerate'+_0x48b6bb(0x216,'Dsi5',0x5be,_0x15bc98._0xe0cc14)]+'/'+_0x5629ee[_0x3649de(_0x15bc98._0x22744c,0x5c5,_0x15bc98._0x44a871,0x9e9)]+(_0x48b6bb(0x234,_0x15bc98._0x4ac871,-0x211,_0x15bc98._0xae63bb)+'文件'),_0x2cc0e3['vNexb'](_0x3dcbf3[_0x48b6bb(_0x15bc98._0x301ed6,'N%cE',0x28f,-_0x15bc98._0x7ecb11)][_0x48b6bb(0xe6,_0x15bc98._0x4ee313,_0x15bc98._0x25dc54,0x48b)],-0x7c3*-0x1+0x1*0x189+-0x94c)&&(_0x3dcbf3[_0x48b6bb(_0x15bc98._0x355f84,_0x15bc98._0xc5be91,_0x15bc98._0x5d2b91,0x7ff)]+=','+_0x3dcbf3['errors'][_0x48b6bb(_0x15bc98._0x358ea0,'c36g',0x259,_0x15bc98._0x5554b7)]+_0x48b6bb(_0x15bc98._0x598c76,_0x15bc98._0x27bfe1,-_0x15bc98._0x5abf1e,_0x15bc98._0x2c5beb),_0x3dcbf3[_0x3649de(0x980,0xa90,'1mQU',_0x15bc98._0x28bd29)]=![]),_0x3dcbf3;}catch(_0x3f30c5){if(_0x2cc0e3[_0x48b6bb(_0x15bc98._0x2c6fc2,'N%cE',-0x297,0x89)](_0x2cc0e3[_0x3649de(0x8a7,0x969,_0x15bc98._0x36d3d7,0x9c6)],_0x3649de(_0x15bc98._0x127ae2,_0x15bc98._0x5115a5,'N%cE',_0x15bc98._0x344502)))_0x25d2e9[_0x3649de(_0x15bc98._0x3af0c4,_0x15bc98._0x1c1f39,'#pB[',_0x15bc98._0x2ef33f)](_0x3649de(_0x15bc98._0x1ac165,_0x15bc98._0x40777d,_0x15bc98._0x6d04b8,0xb07)+_0x3649de(_0x15bc98._0x519bbe,_0x15bc98._0x2e2cd0,_0x15bc98._0x13f751,0x11cb));else return _0x3dcbf3['success']=![],_0x3dcbf3[_0x3649de(0xc6d,_0x15bc98._0x50e2af,_0x15bc98._0x56e5f0,0x88d)]='重新生成失败:\x20'+(_0x3f30c5 instanceof Error?_0x3f30c5['message']:String(_0x3f30c5)),_0x3dcbf3;}}function regenerateAgentFilesById(_0x42ef5c){const _0x26dbad={_0x13b690:0x5ae,_0x39f23f:'Q]KY',_0x54a58b:0x7ff,_0x54c003:0x7a8,_0x12e456:0xca5,_0x13603e:0x10aa,_0x6ec87f:0x9f4,_0x3d0e8e:0x5a9,_0x5d50c1:0x3d0,_0xa6efd8:'loi5',_0x3f383e:0xaaf,_0x4fab1e:0x909,_0x2ac1a9:'FtqP',_0x1fff4d:0xc6c,_0x10ee75:0xaa0,_0x1b2e86:0xbba,_0x3c5d98:0xe1a,_0x50c4c2:0x6ad,_0x14917b:'v2$P',_0x392830:0x7e1,_0x327481:0x10f2,_0x5b84d2:0x32f,_0x6b0e7:0x62d,_0x5aa487:0x258,_0x16a2b5:'!7O4',_0x48c4eb:0x8fc,_0x32f91d:0x996,_0x5bdea7:'2m0$',_0x3768d2:0xa78,_0x58931d:0xaf4,_0x2d3239:0xd97,_0x5836f3:'hn9d',_0x44c400:0x5a2,_0x276666:0x5a5,_0x56d667:0x767,_0x1b7352:'Dsi5',_0x4f375e:0x490,_0x5020fa:'!k$h',_0xfa173:0xb78,_0x29aa3c:0xa3c,_0x341f78:0xadc,_0x2de151:0xb1e,_0x352bbc:0xae5,_0x44ad66:'Dsi5',_0x4eb144:0x9ba,_0x3502b9:')$Hz',_0x5dec62:0x9b7,_0x49d180:0x200,_0x2aaeee:0xc7b,_0x3b56b7:0x728,_0x4a2bac:0x796,_0x21b7ba:'Mpqc',_0x432fb5:0xc01,_0x3f2809:0x9d2,_0x523848:0x51a,_0x3a608f:0x6c4,_0x3b4d66:0x936,_0x22b1f5:'z8mf',_0x197e14:0x7b6,_0x11bf76:0xbe5,_0x413d6c:0xeac,_0x49883f:0xc47,_0x44746f:0x7ed,_0x14cd0e:'ebUi',_0x51c564:0x8d8,_0xe5f1e6:0x50c,_0xe97daa:0x25e,_0xc6b536:'6]hf',_0xa7304c:0xc03,_0x5f04d8:']))d',_0x2ad7a9:0xc28,_0x3ebb80:0xa3c,_0x727739:0xba2,_0x1712de:0xa2,_0x4b284b:0x18f,_0x15739e:0xb15,_0x2194f9:0x4f6,_0x5b1704:0x6b1,_0x54c0ab:0x9c9,_0x4a87c0:'LaEV',_0xd42d08:'&)0b',_0x2b1f1f:0x449,_0x3bd752:0x5d3,_0x17552e:'*LpW',_0x4489cf:0x416,_0x507c37:0xba5,_0x39250b:0xf05,_0xb36b64:0xdeb},_0x7cedc9={_0x108dc0:'3Y(#',_0x5316a3:0x466,_0x1dbe47:0x462,_0x14bad6:0x18d,_0x31304b:'dx1J',_0x53d9b9:0x6ca,_0x1b616d:0x2a9,_0x5ea2d0:'FtqP',_0x552df0:0x196,_0x58ba52:0x4e3,_0x2f6940:0x6d,_0xb1ab16:0x65c,_0x202cf3:0x759,_0x4415b2:0x444,_0x175eca:'7k]n',_0x3b370a:0x6d7,_0x2a1621:'PB2^',_0x16be83:0x61},_0x119bbe={_0x3e7101:0x198,_0x6b263e:0x1a0},_0x11d44c={_0x1d6e2b:0xe5,_0x3f2aa9:0x5a,_0x299c49:0x15e};function _0x4dc5d0(_0x241743,_0x331482,_0x3226b8,_0x5ca519){return _0x5bf319(_0x241743-_0x11d44c._0x1d6e2b,_0x3226b8-_0x11d44c._0x3f2aa9,_0x241743,_0x5ca519-_0x11d44c._0x299c49);}function _0xa63d89(_0x265192,_0x5211bd,_0x8478a9,_0x1ce220){return _0x5bf319(_0x265192-_0x119bbe._0x3e7101,_0x265192- -_0x119bbe._0x6b263e,_0x5211bd,_0x1ce220-0x109);}const _0x5b12dc={'XujZr':function(_0x27175c,_0x5f3b8c){return _0x27175c(_0x5f3b8c);},'HIiuK':function(_0x580505,_0x14dc41){return _0x580505!=_0x14dc41;},'hStfZ':function(_0x249846,_0x2bcc26){return _0x249846(_0x2bcc26);},'ZFoVB':function(_0x1dc6d3,_0x2c147b){return _0x1dc6d3<_0x2c147b;},'JutBz':function(_0x4f0cc3,_0x13651b){return _0x4f0cc3!==_0x13651b;},'UMaeO':_0x4dc5d0('Ybev',0x1b8,_0x26dbad._0x13b690,0x8f2),'Jznhy':function(_0x25a50c,_0x49177e,_0x1b528d,_0x249b13){return _0x25a50c(_0x49177e,_0x1b528d,_0x249b13);},'sYxUV':function(_0x298d46,_0x35223b,_0x505ae4){return _0x298d46(_0x35223b,_0x505ae4);},'EnnAt':_0xa63d89(0x50d,_0x26dbad._0x39f23f,_0x26dbad._0x54a58b,_0x26dbad._0x54c003),'aOzfB':_0x4dc5d0(')9w@',0xfb5,_0x26dbad._0x12e456,_0x26dbad._0x13603e),'xJYNc':function(_0x165ca8,_0x52beca){return _0x165ca8===_0x52beca;},'WEykF':_0x4dc5d0('HQvh',_0x26dbad._0x6ec87f,_0x26dbad._0x3d0e8e,_0x26dbad._0x5d50c1),'roLPn':function(_0x47b2ea,_0x236ebf){return _0x47b2ea===_0x236ebf;},'xQLsS':function(_0x3d44bb,_0x1ee9d6){return _0x3d44bb instanceof _0x1ee9d6;},'xHjcZ':function(_0xd07553,_0x1659bc){return _0xd07553(_0x1659bc);}};try{const _0x3c3412=agent_repo_1[_0xa63d89(0x806,_0x26dbad._0xa6efd8,_0x26dbad._0x3f383e,0x5df)+_0xa63d89(_0x26dbad._0x4fab1e,_0x26dbad._0x2ac1a9,_0x26dbad._0x1fff4d,0xb59)][_0x4dc5d0('Foj6',_0x26dbad._0x10ee75,_0x26dbad._0x1b2e86,_0x26dbad._0x3c5d98)](_0x42ef5c);if(!_0x3c3412){if(_0x5b12dc[_0xa63d89(_0x26dbad._0x50c4c2,_0x26dbad._0x14917b,_0x26dbad._0x392830,0x7fa)](_0x5b12dc[_0x4dc5d0('V23R',0xe72,0xdb5,_0x26dbad._0x327481)],_0x5b12dc[_0x4dc5d0('6]hf',_0x26dbad._0x5b84d2,_0x26dbad._0x6b0e7,_0x26dbad._0x5aa487)])){const _0x14e4ba={_0x434188:0x35},_0x228f4b={_0x41abd7:0x6df,_0x3be2ce:0x4e9,_0xe05a9f:0xa33,_0x4cb1cc:0x5e3};var _0x262d49=function(_0x1771f1){const _0x3951f6={_0x398977:0x936,_0x4956a3:0x6ca,_0x260dc7:0x276,_0x29f79a:'V)bU',_0x593c6f:0x869,_0x46d9a7:'ECfd',_0x12592f:0xb02,_0x58fefc:0x2c8,_0x578540:'VXA^',_0x187704:0x42a,_0x58ed0e:0x5b7},_0x52f443={_0x34ef9f:0x19,_0x2ec3da:0x1b1},_0x42fd09={_0x4e9529:0x128},_0x1b246c={_0x51fdbe:0x15d};function _0x60c5b6(_0x53dd1f,_0x2c7daa,_0x34ca52,_0x321ab2){return _0x4dc5d0(_0x34ca52,_0x2c7daa-_0x1b246c._0x51fdbe,_0x2c7daa- -0x2b8,_0x321ab2-0x75);}_0x262d49=_0x8f89a7[_0x816e33(0x8e6,_0x228f4b._0x41abd7,'z8mf',_0x228f4b._0x3be2ce)+_0x816e33(0x6ff,0xa9a,'k7fb',0xaac)]||function(_0x507c29){var _0x23a704=[];function _0x597878(_0x2b1eb5,_0x545737,_0x5e4147,_0x4e61f2){return _0x816e33(_0x2b1eb5-_0x42fd09._0x4e9529,_0x545737-0xa6,_0x545737,_0x4e61f2-0x217);}function _0x6b07f9(_0x3389b8,_0x5a7e63,_0x59dd0b,_0x796759){return _0x816e33(_0x3389b8-_0x52f443._0x34ef9f,_0x5a7e63-_0x52f443._0x2ec3da,_0x796759,_0x5a7e63- -0x288);}for(var _0x19da5a in _0x507c29)if(_0x47bb4e[_0x6b07f9(_0x3951f6._0x398977,_0x3951f6._0x4956a3,_0x3951f6._0x260dc7,_0x3951f6._0x29f79a)][_0x597878(0x6e7,'93KN',0x4cc,0x661)+_0x6b07f9(_0x3951f6._0x593c6f,0x3f1,0x50f,_0x3951f6._0x46d9a7)][_0x597878(0xa4a,']GM1',0xe4d,_0x3951f6._0x12592f)](_0x507c29,_0x19da5a))_0x23a704[_0x23a704[_0x597878(_0x3951f6._0x58fefc,_0x3951f6._0x578540,_0x3951f6._0x187704,_0x3951f6._0x58ed0e)]]=_0x19da5a;return _0x23a704;};function _0x816e33(_0x589cd8,_0x43ee91,_0x44eb42,_0x24ee9a){return _0x4dc5d0(_0x44eb42,_0x43ee91-0x13a,_0x24ee9a- -0x26e,_0x24ee9a-0xe1);}return _0x5b12dc[_0x60c5b6(_0x228f4b._0xe05a9f,_0x228f4b._0x4cb1cc,'KDG1',0x4ad)](_0x262d49,_0x1771f1);};return function(_0x8a0b8){const _0x3c71c2={_0x1b0492:0x42b},_0x120aaa=_0x2bce81(_0x7cedc9._0x108dc0,_0x7cedc9._0x5316a3,_0x7cedc9._0x1dbe47,_0x7cedc9._0x14bad6)[_0x2bce81(_0x7cedc9._0x31304b,0x254,0x596,_0x7cedc9._0x53d9b9)]('|');let _0x48cf03=0x81a+0x1*0xae5+0x1*-0x12ff;function _0x1c0c6c(_0x2341f5,_0x3680e8,_0x58ac30,_0x3522e2){return _0xa63d89(_0x2341f5- -_0x3c71c2._0x1b0492,_0x3522e2,_0x58ac30-0x1cb,_0x3522e2-0x119);}function _0x2bce81(_0x652252,_0x460f5d,_0x5a0774,_0x3fe33e){return _0x4dc5d0(_0x652252,_0x460f5d-_0x14e4ba._0x434188,_0x460f5d- -0x5ae,_0x3fe33e-0x54);}while(!![]){switch(_0x120aaa[_0x48cf03++]){case'0':if(_0x5b12dc[_0x1c0c6c(_0x7cedc9._0x1b616d,-0x58,0x8f,_0x7cedc9._0x5ea2d0)](_0x8a0b8,null)){for(var _0x56a387=_0x5b12dc[_0x1c0c6c(_0x7cedc9._0x552df0,_0x7cedc9._0x58ba52,_0x7cedc9._0x2f6940,'GdD8')](_0x262d49,_0x8a0b8),_0x45a33b=0x149c+0x1a6b+0x3*-0xfad;_0x5b12dc[_0x2bce81('&)0b',_0x7cedc9._0xb1ab16,_0x7cedc9._0x202cf3,_0x7cedc9._0x4415b2)](_0x45a33b,_0x56a387['length']);_0x45a33b++)if(_0x5b12dc[_0x1c0c6c(0x267,_0x7cedc9._0x2f6940,0x39e,_0x7cedc9._0x175eca)](_0x56a387[_0x45a33b],_0x5b12dc['UMaeO']))_0x5b12dc[_0x1c0c6c(0xe6,0x22a,-0x1b3,'1mQU')](_0x45de5f,_0xf6b4c0,_0x8a0b8,_0x56a387[_0x45a33b]);}continue;case'1':if(_0x8a0b8&&_0x8a0b8[_0x2bce81('!7O4',0x44d,_0x7cedc9._0x3b370a,0xd2)])return _0x8a0b8;continue;case'2':var _0xf6b4c0={};continue;case'3':_0x5b12dc[_0x2bce81(_0x7cedc9._0x2a1621,0x356,_0x7cedc9._0x16be83,0x769)](_0x260c09,_0xf6b4c0,_0x8a0b8);continue;case'4':return _0xf6b4c0;}break;}};}else{const _0x53475e={};return _0x53475e[_0x4dc5d0(_0x26dbad._0x16a2b5,_0x26dbad._0x48c4eb,_0x26dbad._0x32f91d,0xde8)]=![],_0x53475e[_0x4dc5d0(_0x26dbad._0x5bdea7,0xe87,0xce8,0x8ca)]=_0x4dc5d0('#pB[',0xe24,_0x26dbad._0x3768d2,_0x26dbad._0x58931d)+_0x42ef5c+_0x4dc5d0('da@G',0xd15,_0x26dbad._0x2d3239,0x11e3),_0x53475e;}}const _0x5b4fae=(0x21d*-0x11+-0x123+0x2510*0x1,utils_1[_0xa63d89(0x6bd,_0x26dbad._0x5836f3,_0x26dbad._0x44c400,_0x26dbad._0x276666)+_0xa63d89(_0x26dbad._0x56d667,_0x26dbad._0x1b7352,0x491,0xb36)])(_0x3c3412['id']);if(!fs[_0xa63d89(_0x26dbad._0x4f375e,_0x26dbad._0x5020fa,0x8e7,0x831)](_0x5b4fae)){if(_0x5b12dc[_0x4dc5d0(_0x26dbad._0x5bdea7,0xbe6,0x7d7,_0x26dbad._0xfa173)](_0x5b12dc[_0xa63d89(_0x26dbad._0x29aa3c,'Dsi5',0xc8a,0x643)],_0x4dc5d0('Lh@)',_0x26dbad._0x341f78,_0x26dbad._0x2de151,_0x26dbad._0x352bbc))){const _0x39fe1e={};return _0x39fe1e[_0x4dc5d0(_0x26dbad._0x44ad66,0x9de,_0x26dbad._0x4eb144,0xc0b)]=![],_0x39fe1e[_0x4dc5d0(_0x26dbad._0x3502b9,_0x26dbad._0x5dec62,0x60a,_0x26dbad._0x49d180)]=_0x4dc5d0('LaEV',_0x26dbad._0x2aaeee,0x9ae,_0x26dbad._0x3b56b7)+_0x42ef5c+_0xa63d89(_0x26dbad._0x4a2bac,_0x26dbad._0x21b7ba,_0x26dbad._0x432fb5,_0x26dbad._0x3f2809),_0x39fe1e;}else{const _0x3648af={};_0x3648af[_0x4dc5d0('&)0b',_0x26dbad._0x523848,_0x26dbad._0x3a608f,_0x26dbad._0x3b4d66)]=!![],_0x3648af[_0x4dc5d0(_0x26dbad._0x22b1f5,_0x26dbad._0x197e14,_0x26dbad._0x11bf76,0x99e)]=function(){return _0x1cea8c[_0x55a132];},_0x5266dc=_0x3648af;}}_0x5b12dc[_0x4dc5d0('ECfd',_0x26dbad._0x413d6c,_0x26dbad._0x49883f,_0x26dbad._0x44746f)](createAgentFiles,_0x3c3412['id'],{'name':_0x3c3412[_0x4dc5d0(_0x26dbad._0x14cd0e,0x1092,0xc90,0x840)],'role':_0x3c3412[_0xa63d89(0xadd,'hn9d',0xed6,0x8eb)],'departmentId':_0x3c3412[_0x4dc5d0(_0x26dbad._0xa6efd8,0xc08,_0x26dbad._0x51c564,_0x26dbad._0xe5f1e6)+_0x4dc5d0('KDG1',_0x26dbad._0x3f383e,0xc0d,0xc38)]||undefined,'jobId':_0x3c3412['job_id']||undefined});const _0x42b4a6={};return _0x42b4a6[_0x4dc5d0(']))d',_0x26dbad._0xe97daa,0x696,0x633)]=!![],_0x42b4a6[_0xa63d89(0x71c,_0x26dbad._0xc6b536,0xb7a,0xa5d)]=_0xa63d89(_0x26dbad._0xa7304c,_0x26dbad._0x5f04d8,0xfe6,0xa84)+_0x42ef5c+'\x20('+_0x3c3412['name']+_0x4dc5d0('GdD8',_0x26dbad._0x2ad7a9,_0x26dbad._0x3ebb80,_0x26dbad._0x727739),_0x42b4a6;}catch(_0x415b74){return _0x5b12dc[_0xa63d89(0x4d3,_0x26dbad._0x5020fa,_0x26dbad._0x1712de,_0x26dbad._0x4b284b)](_0xa63d89(0x6d5,')$Hz',_0x26dbad._0x15739e,_0x26dbad._0x2194f9),'WxlEn')?{'success':![],'message':_0x4dc5d0(']GM1',0x6f5,0x970,_0x26dbad._0x5b1704)+(_0x5b12dc[_0xa63d89(_0x26dbad._0x54c0ab,_0x26dbad._0x4a87c0,0x595,0xe03)](_0x415b74,Error)?_0x415b74[_0x4dc5d0('Mpqc',0x4e0,0x643,0x422)]:_0x5b12dc[_0xa63d89(0x567,_0x26dbad._0xd42d08,_0x26dbad._0x2b1f1f,_0x26dbad._0x3bd752)](String,_0x415b74))}:(_0xc777bc[_0x4dc5d0(_0x26dbad._0x17552e,_0x26dbad._0x4489cf,0x5b5,0x98a)]=_0x5b12dc[_0xa63d89(_0x26dbad._0x507c37,'$6rX',_0x26dbad._0x39250b,_0x26dbad._0xb36b64)],_0x51be38);}}const _0x40f89e={};_0x40f89e[_0x259b54('N%cE',0xae1,0xcbe,0x85e)+_0x259b54('LaEV',0x5f5,0x9c1,0x730)]=getAgentSessionKey,_0x40f89e[_0x5bf319(0xece,0xb68,'V23R',0x9ba)+'rkspacePat'+'h']=getAgentWorkspacePath,_0x40f89e[_0x259b54('&)0b',0x79b,0x31d,0x6a7)+_0x5bf319(0x8f9,0xbc5,'3Y(#',0xb5a)]=prepareAgentContext,_0x40f89e[_0x259b54('dx1J',0x86c,0x1c7,0x44e)+_0x5bf319(0xa79,0x990,')$Hz',0xc4c)+'es']=createAgentDirectories,_0x40f89e[_0x5bf319(0x7e8,0xa66,'FtqP',0x7b1)+'tFiles']=createAgentFiles,_0x40f89e[_0x5bf319(0xa7c,0x7e5,'c36g',0x88c)+'awConfig']=syncOpenClawConfig,_0x40f89e[_0x259b54(')9pR',0x504,0x242,0x305)+_0x259b54('2m0$',0x23f,0x388,0x596)+'g']=removeAgentFromConfig,_0x40f89e[_0x259b54('#%z0',0xaa8,0x6f6,0x9bc)+_0x259b54('z8mf',-0x132,0x266,0x2e2)]=updateAgentAllowList,_0x40f89e[_0x5bf319(0xc07,0xd34,')$Hz',0xba7)+'tToAgentAl'+_0x5bf319(0x620,0x89a,'!7O4',0x4ba)]=updateAgentToAgentAllow,_0x40f89e[_0x259b54('Ybev',0x44a,-0x21d,0x1c4)+_0x5bf319(0xb65,0xb4a,')9pR',0xe67)+'ntConfig']=initializeAgentToAgentConfig,_0x40f89e[_0x259b54('V)bU',0x6ce,0x7c2,0x9af)+_0x5bf319(0x5e4,0x632,'93KN',0x5f8)]=syncTeamFeishuGroup,_0x40f89e['regenerate'+_0x5bf319(0xb10,0xb2a,'V23R',0xb47)]=regenerateAgentFiles,_0x40f89e[_0x259b54('*LpW',0xa87,0x22b,0x6a2)+_0x5bf319(0x10e4,0xd63,'loi5',0x10eb)+_0x259b54('93KN',0x595,0x90c,0x5c8)]=regenerateAgentFilesById,exports[_0x259b54('HQvh',0xce2,0xd6b,0xa09)+_0x5bf319(0xad5,0xcc8,')9pR',0xbad)]=_0x40f89e;
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OpenClaw Integration Helper Functions
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.openclawHelper = void 0;
|
|
40
|
+
exports.getAgentSessionKey = getAgentSessionKey;
|
|
41
|
+
exports.getAgentWorkspacePath = getAgentWorkspacePath;
|
|
42
|
+
exports.prepareAgentContext = prepareAgentContext;
|
|
43
|
+
exports.createAgentDirectories = createAgentDirectories;
|
|
44
|
+
exports.createAgentFiles = createAgentFiles;
|
|
45
|
+
exports.syncTeamMemberInfo = syncTeamMemberInfo;
|
|
46
|
+
exports.syncAssistantTeamMembers = syncAssistantTeamMembers;
|
|
47
|
+
exports.syncOpenClawConfig = syncOpenClawConfig;
|
|
48
|
+
exports.removeAgentFromConfig = removeAgentFromConfig;
|
|
49
|
+
exports.updateAgentToAgentAllow = updateAgentToAgentAllow;
|
|
50
|
+
exports.initializeAgentToAgentConfig = initializeAgentToAgentConfig;
|
|
51
|
+
exports.updateAgentAllowList = updateAgentAllowList;
|
|
52
|
+
exports.getGatewayRestartReminder = getGatewayRestartReminder;
|
|
53
|
+
exports.syncTeamFeishuGroup = syncTeamFeishuGroup;
|
|
54
|
+
exports.regenerateAgentFiles = regenerateAgentFiles;
|
|
55
|
+
exports.regenerateAgentFilesById = regenerateAgentFilesById;
|
|
56
|
+
const fs = __importStar(require("fs"));
|
|
57
|
+
const path = __importStar(require("path"));
|
|
58
|
+
const agent_repo_1 = require("../../db/repositories/agent.repo");
|
|
59
|
+
const dept_repo_1 = require("../../db/repositories/dept.repo");
|
|
60
|
+
const job_repo_1 = require("../../db/repositories/job.repo");
|
|
61
|
+
const skill_pack_repo_1 = require("../../db/repositories/skill-pack.repo");
|
|
62
|
+
const agent_template_repo_1 = require("../../db/repositories/agent-template.repo");
|
|
63
|
+
const utils_1 = require("../utils");
|
|
64
|
+
const auth_profiles_service_1 = require("../services/auth-profiles.service");
|
|
65
|
+
const configTracker = __importStar(require("../services/config-tracker.service"));
|
|
66
|
+
/**
|
|
67
|
+
* Get Agent's Session Key
|
|
68
|
+
*
|
|
69
|
+
* In OpenClaw, each Agent can have independent session
|
|
70
|
+
* Session Key format: agent:<agentId>:main
|
|
71
|
+
*/
|
|
72
|
+
function getAgentSessionKey(agentId) {
|
|
73
|
+
return `agent:${agentId}:main`;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Get Agent's workspace path
|
|
77
|
+
*/
|
|
78
|
+
function getAgentWorkspacePath(agentId) {
|
|
79
|
+
const agent = agent_repo_1.agentRepository.findById(agentId);
|
|
80
|
+
if (agent && agent.workspace_path) {
|
|
81
|
+
return agent.workspace_path;
|
|
82
|
+
}
|
|
83
|
+
return (0, utils_1.getAgentWorkspace)(agentId);
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Prepare Agent Session context
|
|
87
|
+
*
|
|
88
|
+
* Returns context info needed to start Agent Session
|
|
89
|
+
*/
|
|
90
|
+
function prepareAgentContext(agentId) {
|
|
91
|
+
const agent = agent_repo_1.agentRepository.findById(agentId);
|
|
92
|
+
if (!agent) {
|
|
93
|
+
return { success: false, message: `Agent 不存在: ${agentId}` };
|
|
94
|
+
}
|
|
95
|
+
const workspacePath = getAgentWorkspacePath(agentId);
|
|
96
|
+
const sessionKey = getAgentSessionKey(agentId);
|
|
97
|
+
return {
|
|
98
|
+
success: true,
|
|
99
|
+
agent: {
|
|
100
|
+
id: agent.id,
|
|
101
|
+
name: agent.name,
|
|
102
|
+
role: agent.role,
|
|
103
|
+
department_id: agent.department_id,
|
|
104
|
+
job_id: agent.job_id
|
|
105
|
+
},
|
|
106
|
+
workspace_path: workspacePath,
|
|
107
|
+
session_key: sessionKey
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Create Agent directory structure
|
|
112
|
+
*
|
|
113
|
+
* Follows OpenClaw official standard:
|
|
114
|
+
* - workspace-<agentId>/ workspace
|
|
115
|
+
* - agents/<agentId>/agent/ Agent directory (auth-profiles.json etc.)
|
|
116
|
+
* - agents/<agentId>/sessions/ session storage
|
|
117
|
+
*/
|
|
118
|
+
function createAgentDirectories(agentId) {
|
|
119
|
+
const workspacePath = (0, utils_1.getAgentWorkspace)(agentId);
|
|
120
|
+
const agentDir = (0, utils_1.getAgentDir)(agentId);
|
|
121
|
+
const sessionsDir = (0, utils_1.getAgentSessionsDir)(agentId);
|
|
122
|
+
// Create workspace directory
|
|
123
|
+
if (!fs.existsSync(workspacePath)) {
|
|
124
|
+
fs.mkdirSync(workspacePath, { recursive: true });
|
|
125
|
+
}
|
|
126
|
+
// Create Agent directory
|
|
127
|
+
if (!fs.existsSync(agentDir)) {
|
|
128
|
+
fs.mkdirSync(agentDir, { recursive: true });
|
|
129
|
+
}
|
|
130
|
+
// Create sessions directory
|
|
131
|
+
if (!fs.existsSync(sessionsDir)) {
|
|
132
|
+
fs.mkdirSync(sessionsDir, { recursive: true });
|
|
133
|
+
}
|
|
134
|
+
return {
|
|
135
|
+
workspace: workspacePath,
|
|
136
|
+
agentDir,
|
|
137
|
+
sessionsDir
|
|
138
|
+
};
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Get skill pack names for a job (decrypted)
|
|
142
|
+
*/
|
|
143
|
+
function getSkillPackNames(jobId) {
|
|
144
|
+
if (!jobId)
|
|
145
|
+
return '-';
|
|
146
|
+
const skillPackIds = job_repo_1.jobRepository.getSkillPackIds(jobId);
|
|
147
|
+
if (skillPackIds.length === 0)
|
|
148
|
+
return '-';
|
|
149
|
+
const names = [];
|
|
150
|
+
for (const spId of skillPackIds) {
|
|
151
|
+
// 技能包 ID 就是中文名称
|
|
152
|
+
names.push(spId);
|
|
153
|
+
}
|
|
154
|
+
return names.length > 0 ? names.join(', ') : '-';
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* Get job name (decrypted)
|
|
158
|
+
*/
|
|
159
|
+
function getJobName(jobId) {
|
|
160
|
+
if (!jobId)
|
|
161
|
+
return '-';
|
|
162
|
+
return job_repo_1.jobRepository.getName(jobId);
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* Get team info for a department
|
|
166
|
+
*/
|
|
167
|
+
function getTeamInfo(departmentId) {
|
|
168
|
+
const dept = dept_repo_1.departmentRepository.findById(departmentId);
|
|
169
|
+
if (!dept)
|
|
170
|
+
return null;
|
|
171
|
+
// 群信息
|
|
172
|
+
const feishuGroupId = dept.feishu_group_id || '未绑定';
|
|
173
|
+
const feishuGroupName = dept.feishu_group_id ? dept.name : '未绑定';
|
|
174
|
+
const feishuGroupTo = dept.feishu_group_id ? `chat:${dept.feishu_group_id}` : '未绑定';
|
|
175
|
+
// 总助理(全局)
|
|
176
|
+
const assistant = agent_repo_1.agentRepository.getAssistant();
|
|
177
|
+
// 管理者
|
|
178
|
+
const managers = agent_repo_1.agentRepository.findByDepartmentAndRole(departmentId, 'manager');
|
|
179
|
+
const manager = managers.length > 0 ? managers[0] : null;
|
|
180
|
+
// 审核者
|
|
181
|
+
const reviewers = agent_repo_1.agentRepository.findByDepartmentAndRole(departmentId, 'reviewer');
|
|
182
|
+
const reviewer = reviewers.length > 0 ? reviewers[0] : null;
|
|
183
|
+
// 执行者列表
|
|
184
|
+
const executors = agent_repo_1.agentRepository.findByDepartmentAndRole(departmentId, 'executor');
|
|
185
|
+
// 生成审核者列表(含 sessionKey)
|
|
186
|
+
const reviewersList = reviewers.length > 0
|
|
187
|
+
? reviewers.map(r => `| ${r.id} | agent:${r.id}:main | ${r.name} | ${r.status} |`).join('\n')
|
|
188
|
+
: '暂无审核者';
|
|
189
|
+
// 生成执行者列表(含 sessionKey)
|
|
190
|
+
const executorsList = executors.length > 0
|
|
191
|
+
? executors.map(e => {
|
|
192
|
+
const jobName = getJobName(e.job_id);
|
|
193
|
+
return `| ${e.id} | agent:${e.id}:main | ${jobName} | ${e.status} |`;
|
|
194
|
+
}).join('\n')
|
|
195
|
+
: '暂无执行者';
|
|
196
|
+
return {
|
|
197
|
+
assistant: assistant ? { id: assistant.id, status: assistant.status || 'active' } : null,
|
|
198
|
+
manager: manager ? { id: manager.id, status: manager.status || 'active' } : null,
|
|
199
|
+
reviewer: reviewer ? { id: reviewer.id, status: reviewer.status || 'active' } : null,
|
|
200
|
+
reviewersList,
|
|
201
|
+
executorsList,
|
|
202
|
+
feishuGroupId,
|
|
203
|
+
feishuGroupName,
|
|
204
|
+
feishuGroupTo
|
|
205
|
+
};
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* Get skill packs info for a job
|
|
209
|
+
*/
|
|
210
|
+
function getSkillPacksInfo(jobId) {
|
|
211
|
+
const skillPackIds = job_repo_1.jobRepository.getSkillPackIds(jobId);
|
|
212
|
+
if (skillPackIds.length === 0)
|
|
213
|
+
return '暂无技能包';
|
|
214
|
+
const lines = [];
|
|
215
|
+
for (let i = 0; i < skillPackIds.length; i++) {
|
|
216
|
+
const spId = skillPackIds[i];
|
|
217
|
+
const content = skill_pack_repo_1.skillPackRepository.getContent(spId);
|
|
218
|
+
if (content) {
|
|
219
|
+
// 技能包之间用分割线分隔(第一个不加)
|
|
220
|
+
if (i > 0) {
|
|
221
|
+
lines.push('');
|
|
222
|
+
lines.push('---');
|
|
223
|
+
lines.push('');
|
|
224
|
+
}
|
|
225
|
+
// 技能包标题
|
|
226
|
+
lines.push(`### ${spId}`);
|
|
227
|
+
// 描述(单行)
|
|
228
|
+
if (content.description) {
|
|
229
|
+
const desc = content.description.split('\n')[0].trim();
|
|
230
|
+
if (desc && !desc.startsWith('适用')) {
|
|
231
|
+
lines.push(`> ${desc}`);
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
// 章节内容(紧凑格式)
|
|
235
|
+
if (content.sections && content.sections.length > 0) {
|
|
236
|
+
for (const section of content.sections) {
|
|
237
|
+
lines.push('');
|
|
238
|
+
lines.push(`**${section.title}**`);
|
|
239
|
+
// 去除多余空行,紧凑显示
|
|
240
|
+
const sectionContent = section.content.trim()
|
|
241
|
+
.split('\n')
|
|
242
|
+
.map(l => l.trim())
|
|
243
|
+
.filter(l => l)
|
|
244
|
+
.join('\n');
|
|
245
|
+
lines.push(sectionContent);
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
return lines.length > 0 ? lines.join('\n') : '暂无技能包';
|
|
251
|
+
}
|
|
252
|
+
/**
|
|
253
|
+
* Generate team member detail info for manager
|
|
254
|
+
*/
|
|
255
|
+
function generateManagerTeamMembersDetail(departmentId) {
|
|
256
|
+
// Find assistant (全局角色,所有事业部共享)
|
|
257
|
+
const assistants = agent_repo_1.agentRepository.findByRole('assistant');
|
|
258
|
+
const assistantInfo = assistants.length > 0
|
|
259
|
+
? `| ${assistants[0].id} | agent:${assistants[0].id}:main | ${assistants[0].name} | ${assistants[0].status} |`
|
|
260
|
+
: '| - | - | - | - |';
|
|
261
|
+
// Find reviewers (含 sessionKey)
|
|
262
|
+
const reviewers = agent_repo_1.agentRepository.findByDepartmentAndRole(departmentId, 'reviewer');
|
|
263
|
+
const reviewersInfo = reviewers.length > 0
|
|
264
|
+
? reviewers.map(r => `| ${r.id} | agent:${r.id}:main | ${r.name} | ${r.status} |`).join('\n')
|
|
265
|
+
: '| - | - | - | - |';
|
|
266
|
+
// Find executors (含 sessionKey)
|
|
267
|
+
const executors = agent_repo_1.agentRepository.findByDepartmentAndRole(departmentId, 'executor');
|
|
268
|
+
const executorsInfo = executors.length > 0
|
|
269
|
+
? executors.map(e => {
|
|
270
|
+
const jobName = getJobName(e.job_id);
|
|
271
|
+
return `| ${e.id} | agent:${e.id}:main | ${jobName} | ${e.status} |`;
|
|
272
|
+
}).join('\n')
|
|
273
|
+
: '| - | - | - | - |';
|
|
274
|
+
return {
|
|
275
|
+
assistant: assistantInfo,
|
|
276
|
+
reviewers: reviewersInfo,
|
|
277
|
+
executors: executorsInfo
|
|
278
|
+
};
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* Generate team member detail info for reviewer
|
|
282
|
+
*/
|
|
283
|
+
function generateReviewerTeamMembersDetail(departmentId) {
|
|
284
|
+
// Find manager (含 sessionKey)
|
|
285
|
+
const managers = agent_repo_1.agentRepository.findByDepartmentAndRole(departmentId, 'manager');
|
|
286
|
+
const managerInfo = managers.length > 0
|
|
287
|
+
? `| ${managers[0].id} | agent:${managers[0].id}:main | ${managers[0].name} | ${managers[0].status} |`
|
|
288
|
+
: '| - | - | - | - |';
|
|
289
|
+
// Find executors (含 sessionKey)
|
|
290
|
+
const executors = agent_repo_1.agentRepository.findByDepartmentAndRole(departmentId, 'executor');
|
|
291
|
+
const executorsInfo = executors.length > 0
|
|
292
|
+
? executors.map(e => {
|
|
293
|
+
const jobName = getJobName(e.job_id);
|
|
294
|
+
return `| ${e.id} | agent:${e.id}:main | ${jobName} | ${e.status} |`;
|
|
295
|
+
}).join('\n')
|
|
296
|
+
: '| - | - | - | - |';
|
|
297
|
+
return {
|
|
298
|
+
manager: managerInfo,
|
|
299
|
+
executors: executorsInfo
|
|
300
|
+
};
|
|
301
|
+
}
|
|
302
|
+
/**
|
|
303
|
+
* Generate team member detail info for executor
|
|
304
|
+
*/
|
|
305
|
+
function generateExecutorTeamMembersDetail(departmentId) {
|
|
306
|
+
// Find manager (含 sessionKey)
|
|
307
|
+
const managers = agent_repo_1.agentRepository.findByDepartmentAndRole(departmentId, 'manager');
|
|
308
|
+
const managerInfo = managers.length > 0
|
|
309
|
+
? `| ${managers[0].id} | agent:${managers[0].id}:main | ${managers[0].name} | ${managers[0].status} |`
|
|
310
|
+
: '| - | - | - | - |';
|
|
311
|
+
// Find reviewer (含 sessionKey)
|
|
312
|
+
const reviewers = agent_repo_1.agentRepository.findByDepartmentAndRole(departmentId, 'reviewer');
|
|
313
|
+
const reviewerInfo = reviewers.length > 0
|
|
314
|
+
? `| ${reviewers[0].id} | agent:${reviewers[0].id}:main | ${reviewers[0].name} | ${reviewers[0].status} |`
|
|
315
|
+
: '| - | - | - | - |';
|
|
316
|
+
return {
|
|
317
|
+
manager: managerInfo,
|
|
318
|
+
reviewer: reviewerInfo
|
|
319
|
+
};
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* Generate team member detail info for assistant (all departments)
|
|
323
|
+
*/
|
|
324
|
+
function generateAssistantTeamMembersDetail() {
|
|
325
|
+
const departments = dept_repo_1.departmentRepository.findAll();
|
|
326
|
+
// Managers by department
|
|
327
|
+
const managersByDept = [];
|
|
328
|
+
const reviewersByDept = [];
|
|
329
|
+
const executorsByDept = [];
|
|
330
|
+
for (const dept of departments) {
|
|
331
|
+
// Managers
|
|
332
|
+
const managers = agent_repo_1.agentRepository.findByDepartmentAndRole(dept.id, 'manager');
|
|
333
|
+
if (managers.length > 0) {
|
|
334
|
+
managersByDept.push(`#### ${dept.name}`);
|
|
335
|
+
managersByDept.push('');
|
|
336
|
+
managersByDept.push('| Agent ID | 名称 | 状态 |');
|
|
337
|
+
managersByDept.push('|----------|------|------|');
|
|
338
|
+
for (const m of managers) {
|
|
339
|
+
managersByDept.push(`| ${m.id} | ${m.name} | ${m.status} |`);
|
|
340
|
+
}
|
|
341
|
+
managersByDept.push('');
|
|
342
|
+
}
|
|
343
|
+
// Reviewers
|
|
344
|
+
const reviewers = agent_repo_1.agentRepository.findByDepartmentAndRole(dept.id, 'reviewer');
|
|
345
|
+
if (reviewers.length > 0) {
|
|
346
|
+
reviewersByDept.push(`#### ${dept.name}`);
|
|
347
|
+
reviewersByDept.push('');
|
|
348
|
+
reviewersByDept.push('| Agent ID | 名称 | 状态 |');
|
|
349
|
+
reviewersByDept.push('|----------|------|------|');
|
|
350
|
+
for (const r of reviewers) {
|
|
351
|
+
reviewersByDept.push(`| ${r.id} | ${r.name} | ${r.status} |`);
|
|
352
|
+
}
|
|
353
|
+
reviewersByDept.push('');
|
|
354
|
+
}
|
|
355
|
+
// Executors
|
|
356
|
+
const executors = agent_repo_1.agentRepository.findByDepartmentAndRole(dept.id, 'executor');
|
|
357
|
+
if (executors.length > 0) {
|
|
358
|
+
executorsByDept.push(`#### ${dept.name}`);
|
|
359
|
+
executorsByDept.push('');
|
|
360
|
+
executorsByDept.push('| Agent ID | 名称 | 职业 | 技能包 | 状态 |');
|
|
361
|
+
executorsByDept.push('|----------|------|------|--------|------|');
|
|
362
|
+
for (const e of executors) {
|
|
363
|
+
const jobName = getJobName(e.job_id);
|
|
364
|
+
const skills = getSkillPackNames(e.job_id);
|
|
365
|
+
executorsByDept.push(`| ${e.id} | ${e.name} | ${jobName} | ${skills} | ${e.status} |`);
|
|
366
|
+
}
|
|
367
|
+
executorsByDept.push('');
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
return {
|
|
371
|
+
managers: managersByDept.length > 0 ? managersByDept.join('\n') : '暂无管理者',
|
|
372
|
+
reviewers: reviewersByDept.length > 0 ? reviewersByDept.join('\n') : '暂无审核者',
|
|
373
|
+
executors: executorsByDept.length > 0 ? executorsByDept.join('\n') : '暂无执行者'
|
|
374
|
+
};
|
|
375
|
+
}
|
|
376
|
+
/**
|
|
377
|
+
* Create Agent files
|
|
378
|
+
*
|
|
379
|
+
* Includes:
|
|
380
|
+
* - AGENTS.md
|
|
381
|
+
* - SOUL.md
|
|
382
|
+
* - USER.md
|
|
383
|
+
* - MEMORY.md
|
|
384
|
+
* - TOOLS.md
|
|
385
|
+
* - auth-profiles.json
|
|
386
|
+
*/
|
|
387
|
+
function createAgentFiles(agentId, options) {
|
|
388
|
+
const workspacePath = (0, utils_1.getAgentWorkspace)(agentId);
|
|
389
|
+
// 尝试从数据库读取模板
|
|
390
|
+
const template = agent_template_repo_1.agentTemplateRepository.findByRole(options.role);
|
|
391
|
+
if (template) {
|
|
392
|
+
// 使用数据库模板
|
|
393
|
+
createAgentFilesFromTemplate(agentId, options, workspacePath, template);
|
|
394
|
+
return;
|
|
395
|
+
}
|
|
396
|
+
// 回退:硬编码生成
|
|
397
|
+
createAgentFilesFallback(agentId, options, workspacePath);
|
|
398
|
+
}
|
|
399
|
+
/**
|
|
400
|
+
* 从数据库模板创建 Agent 文件
|
|
401
|
+
*/
|
|
402
|
+
function createAgentFilesFromTemplate(agentId, options, workspacePath, template) {
|
|
403
|
+
// 获取解密后的模板内容
|
|
404
|
+
const templateContent = agent_template_repo_1.agentTemplateRepository.getContent(template.id);
|
|
405
|
+
if (!templateContent) {
|
|
406
|
+
createAgentFilesFallback(agentId, options, workspacePath);
|
|
407
|
+
return;
|
|
408
|
+
}
|
|
409
|
+
// 解析模板内容(按 === filename.md === 分割)
|
|
410
|
+
const files = parseTemplateContent(templateContent);
|
|
411
|
+
// 获取部门名称
|
|
412
|
+
const department = options.departmentId
|
|
413
|
+
? dept_repo_1.departmentRepository.findById(options.departmentId)
|
|
414
|
+
: null;
|
|
415
|
+
const departmentName = department?.name || '全局';
|
|
416
|
+
// 获取职业名称
|
|
417
|
+
const jobName = options.jobId
|
|
418
|
+
? getJobName(options.jobId)
|
|
419
|
+
: '';
|
|
420
|
+
// 生成团队成员信息
|
|
421
|
+
const teamMembersSection = generateTeamMembersSection(options.role, options.departmentId);
|
|
422
|
+
// 对于 assistant 角色,生成详细信息占位符
|
|
423
|
+
const assistantDetail = options.role === 'assistant'
|
|
424
|
+
? generateAssistantTeamMembersDetailForTemplate()
|
|
425
|
+
: { managers: '', reviewers: '', executors: '' };
|
|
426
|
+
// 获取团队成员信息(用于管理者、审核者、执行者模板)
|
|
427
|
+
const teamInfo = options.departmentId ? getTeamInfo(options.departmentId) : null;
|
|
428
|
+
// 获取技能包信息
|
|
429
|
+
const skillPacksInfo = options.jobId ? getSkillPacksInfo(options.jobId) : '暂无技能包';
|
|
430
|
+
// 替换占位符
|
|
431
|
+
const replacements = {
|
|
432
|
+
'{name}': options.name,
|
|
433
|
+
'{agentId}': agentId,
|
|
434
|
+
'{department}': departmentName,
|
|
435
|
+
'{job}': jobName,
|
|
436
|
+
'{workspace}': workspacePath,
|
|
437
|
+
'{role}': options.role,
|
|
438
|
+
'{roleName}': getRoleName(options.role),
|
|
439
|
+
'{team_members_section}': teamMembersSection,
|
|
440
|
+
// 总助理专用占位符
|
|
441
|
+
'{managers_detail}': assistantDetail.managers,
|
|
442
|
+
'{reviewers_detail}': assistantDetail.reviewers,
|
|
443
|
+
'{executors_detail}': assistantDetail.executors,
|
|
444
|
+
// 团队成员信息
|
|
445
|
+
'{assistant_id}': teamInfo?.assistant?.id || '暂无',
|
|
446
|
+
'{assistant_status}': teamInfo?.assistant?.status || '-',
|
|
447
|
+
'{manager_id}': teamInfo?.manager?.id || '暂无',
|
|
448
|
+
'{manager_status}': teamInfo?.manager?.status || '-',
|
|
449
|
+
'{reviewer_id}': teamInfo?.reviewer?.id || '暂无',
|
|
450
|
+
'{reviewer_status}': teamInfo?.reviewer?.status || '-',
|
|
451
|
+
'{reviewers_list}': teamInfo?.reviewersList || '暂无审核者',
|
|
452
|
+
'{executors_list}': teamInfo?.executorsList || '暂无执行者',
|
|
453
|
+
// 群信息
|
|
454
|
+
'{feishu_group_id}': teamInfo?.feishuGroupId || '未绑定',
|
|
455
|
+
'{feishu_group_name}': teamInfo?.feishuGroupName || '未绑定',
|
|
456
|
+
'{feishu_group_to}': teamInfo?.feishuGroupTo || '未绑定',
|
|
457
|
+
// 技能包
|
|
458
|
+
'{skillPacks}': skillPacksInfo
|
|
459
|
+
};
|
|
460
|
+
// 写入文件
|
|
461
|
+
for (const [filename, content] of Object.entries(files)) {
|
|
462
|
+
let finalContent = content;
|
|
463
|
+
for (const [placeholder, value] of Object.entries(replacements)) {
|
|
464
|
+
finalContent = finalContent.split(placeholder).join(value);
|
|
465
|
+
}
|
|
466
|
+
const filePath = path.join(workspacePath, filename);
|
|
467
|
+
fs.writeFileSync(filePath, finalContent, 'utf-8');
|
|
468
|
+
}
|
|
469
|
+
// Initialize auth-profiles.json
|
|
470
|
+
(0, auth_profiles_service_1.initializeAuthProfiles)(agentId);
|
|
471
|
+
}
|
|
472
|
+
/**
|
|
473
|
+
* 解析模板内容
|
|
474
|
+
* 格式:=== filename.md ===\n内容
|
|
475
|
+
*/
|
|
476
|
+
function parseTemplateContent(content) {
|
|
477
|
+
const files = {};
|
|
478
|
+
const parts = content.split(/=== (\S+\.md) ===/);
|
|
479
|
+
for (let i = 1; i < parts.length; i += 2) {
|
|
480
|
+
const filename = parts[i];
|
|
481
|
+
const fileContent = parts[i + 1]?.trim() || '';
|
|
482
|
+
files[filename] = fileContent;
|
|
483
|
+
}
|
|
484
|
+
// 如果没有分割标记,尝试作为 AGENTS.md
|
|
485
|
+
if (Object.keys(files).length === 0 && content.includes('# ')) {
|
|
486
|
+
files['AGENTS.md'] = content;
|
|
487
|
+
}
|
|
488
|
+
return files;
|
|
489
|
+
}
|
|
490
|
+
/**
|
|
491
|
+
* 获取角色中文名
|
|
492
|
+
*/
|
|
493
|
+
function getRoleName(role) {
|
|
494
|
+
const roleNames = {
|
|
495
|
+
assistant: '总助理',
|
|
496
|
+
manager: '管理者',
|
|
497
|
+
executor: '执行者',
|
|
498
|
+
reviewer: '审核者'
|
|
499
|
+
};
|
|
500
|
+
return roleNames[role] || role;
|
|
501
|
+
}
|
|
502
|
+
/**
|
|
503
|
+
* 生成团队成员信息部分
|
|
504
|
+
*/
|
|
505
|
+
function generateTeamMembersSection(role, departmentId) {
|
|
506
|
+
if (role === 'assistant') {
|
|
507
|
+
// 总助理:显示所有事业部的成员
|
|
508
|
+
const teamInfo = generateAssistantTeamMembersDetail();
|
|
509
|
+
return generateTeamSectionForAssistant(teamInfo);
|
|
510
|
+
}
|
|
511
|
+
if (!departmentId) {
|
|
512
|
+
return '';
|
|
513
|
+
}
|
|
514
|
+
if (role === 'manager') {
|
|
515
|
+
const teamInfo = generateManagerTeamMembersDetail(departmentId);
|
|
516
|
+
return generateTeamSectionForManager(teamInfo);
|
|
517
|
+
}
|
|
518
|
+
else if (role === 'reviewer') {
|
|
519
|
+
const teamInfo = generateReviewerTeamMembersDetail(departmentId);
|
|
520
|
+
return generateTeamSectionForReviewer(teamInfo);
|
|
521
|
+
}
|
|
522
|
+
else if (role === 'executor') {
|
|
523
|
+
const teamInfo = generateExecutorTeamMembersDetail(departmentId);
|
|
524
|
+
return generateTeamSectionForExecutor(teamInfo);
|
|
525
|
+
}
|
|
526
|
+
return '';
|
|
527
|
+
}
|
|
528
|
+
/**
|
|
529
|
+
* 生成总助理的团队成员详情(用于模板占位符)
|
|
530
|
+
*/
|
|
531
|
+
function generateAssistantTeamMembersDetailForTemplate() {
|
|
532
|
+
const departments = dept_repo_1.departmentRepository.findAll();
|
|
533
|
+
const managersByDept = [];
|
|
534
|
+
const reviewersByDept = [];
|
|
535
|
+
const executorsByDept = [];
|
|
536
|
+
for (const dept of departments) {
|
|
537
|
+
// Managers
|
|
538
|
+
const managers = agent_repo_1.agentRepository.findByDepartmentAndRole(dept.id, 'manager');
|
|
539
|
+
if (managers.length > 0) {
|
|
540
|
+
managersByDept.push(`#### ${dept.name}`);
|
|
541
|
+
managersByDept.push('');
|
|
542
|
+
managersByDept.push('| Agent ID | 名称 | 状态 |');
|
|
543
|
+
managersByDept.push('|----------|------|------|');
|
|
544
|
+
for (const m of managers) {
|
|
545
|
+
managersByDept.push(`| ${m.id} | ${m.name} | ${m.status} |`);
|
|
546
|
+
}
|
|
547
|
+
managersByDept.push('');
|
|
548
|
+
}
|
|
549
|
+
// Reviewers
|
|
550
|
+
const reviewers = agent_repo_1.agentRepository.findByDepartmentAndRole(dept.id, 'reviewer');
|
|
551
|
+
if (reviewers.length > 0) {
|
|
552
|
+
reviewersByDept.push(`#### ${dept.name}`);
|
|
553
|
+
reviewersByDept.push('');
|
|
554
|
+
reviewersByDept.push('| Agent ID | 名称 | 状态 |');
|
|
555
|
+
reviewersByDept.push('|----------|------|------|');
|
|
556
|
+
for (const r of reviewers) {
|
|
557
|
+
reviewersByDept.push(`| ${r.id} | ${r.name} | ${r.status} |`);
|
|
558
|
+
}
|
|
559
|
+
reviewersByDept.push('');
|
|
560
|
+
}
|
|
561
|
+
// Executors
|
|
562
|
+
const executors = agent_repo_1.agentRepository.findByDepartmentAndRole(dept.id, 'executor');
|
|
563
|
+
if (executors.length > 0) {
|
|
564
|
+
executorsByDept.push(`#### ${dept.name}`);
|
|
565
|
+
executorsByDept.push('');
|
|
566
|
+
executorsByDept.push('| Agent ID | 名称 | 职业 | 技能包 | 状态 |');
|
|
567
|
+
executorsByDept.push('|----------|------|------|--------|------|');
|
|
568
|
+
for (const e of executors) {
|
|
569
|
+
const jobName = getJobName(e.job_id);
|
|
570
|
+
const skills = getSkillPackNames(e.job_id);
|
|
571
|
+
executorsByDept.push(`| ${e.id} | ${e.name} | ${jobName} | ${skills} | ${e.status} |`);
|
|
572
|
+
}
|
|
573
|
+
executorsByDept.push('');
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
return {
|
|
577
|
+
managers: managersByDept.length > 0 ? managersByDept.join('\n') : '暂无管理者',
|
|
578
|
+
reviewers: reviewersByDept.length > 0 ? reviewersByDept.join('\n') : '暂无审核者',
|
|
579
|
+
executors: executorsByDept.length > 0 ? executorsByDept.join('\n') : '暂无执行者'
|
|
580
|
+
};
|
|
581
|
+
}
|
|
582
|
+
/**
|
|
583
|
+
* 回退方案:硬编码生成
|
|
584
|
+
*/
|
|
585
|
+
function createAgentFilesFallback(agentId, options, workspacePath) {
|
|
586
|
+
console.log(`[Agent创建] 未找到模板,使用默认内容`);
|
|
587
|
+
const roleName = getRoleName(options.role);
|
|
588
|
+
const department = options.departmentId
|
|
589
|
+
? dept_repo_1.departmentRepository.findById(options.departmentId)
|
|
590
|
+
: null;
|
|
591
|
+
const departmentName = department?.name || '全局';
|
|
592
|
+
// Generate team members section based on role
|
|
593
|
+
let teamMembersSection = '';
|
|
594
|
+
if (options.role === 'assistant') {
|
|
595
|
+
const teamInfo = generateAssistantTeamMembersDetail();
|
|
596
|
+
teamMembersSection = `
|
|
597
|
+
## 团队成员
|
|
598
|
+
|
|
599
|
+
以下为当前团队成员详细信息,用于快速联系和任务分配。如需验证最新状态,请使用 \`team-manager get-agent\` 命令。
|
|
600
|
+
|
|
601
|
+
### 各事业部管理者
|
|
602
|
+
|
|
603
|
+
${teamInfo.managers}
|
|
604
|
+
|
|
605
|
+
### 各事业部审核者
|
|
606
|
+
|
|
607
|
+
${teamInfo.reviewers}
|
|
608
|
+
|
|
609
|
+
### 各事业部执行者
|
|
610
|
+
|
|
611
|
+
${teamInfo.executors}
|
|
612
|
+
|
|
613
|
+
### 消息发送方式
|
|
614
|
+
|
|
615
|
+
使用 \`sessions_send\` 工具:
|
|
616
|
+
- \`sessionKey\`:接收者的 sessionKey(或通过 Agent ID 查询)
|
|
617
|
+
- \`message\`:JSON 格式消息内容
|
|
618
|
+
`;
|
|
619
|
+
}
|
|
620
|
+
else if (options.role === 'manager' && options.departmentId) {
|
|
621
|
+
const teamInfo = generateManagerTeamMembersDetail(options.departmentId);
|
|
622
|
+
teamMembersSection = `
|
|
623
|
+
## 团队成员
|
|
624
|
+
|
|
625
|
+
以下为本事业部团队成员详细信息,用于快速联系和任务分配。如需验证最新状态,请使用 \`team-manager get-agent\` 命令。
|
|
626
|
+
|
|
627
|
+
### 总助理
|
|
628
|
+
|
|
629
|
+
| Agent ID | 名称 | 状态 |
|
|
630
|
+
|----------|------|------|
|
|
631
|
+
${teamInfo.assistant}
|
|
632
|
+
|
|
633
|
+
### 本事业部审核者
|
|
634
|
+
|
|
635
|
+
| Agent ID | 名称 | 状态 |
|
|
636
|
+
|----------|------|------|
|
|
637
|
+
${teamInfo.reviewers}
|
|
638
|
+
|
|
639
|
+
### 本事业部执行者
|
|
640
|
+
|
|
641
|
+
| Agent ID | 名称 | 职业 | 技能包 | 状态 |
|
|
642
|
+
|----------|------|------|--------|------|
|
|
643
|
+
${teamInfo.executors}
|
|
644
|
+
|
|
645
|
+
### 消息发送方式
|
|
646
|
+
|
|
647
|
+
使用 \`sessions_send\` 工具:
|
|
648
|
+
- \`sessionKey\`:接收者的 sessionKey(或通过 Agent ID 查询)
|
|
649
|
+
- \`message\`:JSON 格式消息内容
|
|
650
|
+
`;
|
|
651
|
+
}
|
|
652
|
+
else if (options.role === 'reviewer' && options.departmentId) {
|
|
653
|
+
const teamInfo = generateReviewerTeamMembersDetail(options.departmentId);
|
|
654
|
+
teamMembersSection = `
|
|
655
|
+
## 团队成员
|
|
656
|
+
|
|
657
|
+
以下为本事业部团队成员详细信息,用于快速联系和任务分配。如需验证最新状态,请使用 \`team-manager get-agent\` 命令。
|
|
658
|
+
|
|
659
|
+
### 本事业部管理者
|
|
660
|
+
|
|
661
|
+
| Agent ID | 名称 | 状态 |
|
|
662
|
+
|----------|------|------|
|
|
663
|
+
${teamInfo.manager}
|
|
664
|
+
|
|
665
|
+
### 本事业部执行者
|
|
666
|
+
|
|
667
|
+
| Agent ID | 名称 | 职业 | 状态 |
|
|
668
|
+
|----------|------|------|------|
|
|
669
|
+
${teamInfo.executors}
|
|
670
|
+
|
|
671
|
+
### 消息发送方式
|
|
672
|
+
|
|
673
|
+
使用 \`sessions_send\` 工具:
|
|
674
|
+
- \`sessionKey\`:接收者的 sessionKey(或通过 Agent ID 查询)
|
|
675
|
+
- \`message\`:JSON 格式消息内容
|
|
676
|
+
`;
|
|
677
|
+
}
|
|
678
|
+
else if (options.role === 'executor' && options.departmentId) {
|
|
679
|
+
const teamInfo = generateExecutorTeamMembersDetail(options.departmentId);
|
|
680
|
+
teamMembersSection = `
|
|
681
|
+
## 团队成员
|
|
682
|
+
|
|
683
|
+
以下为本事业部团队成员详细信息,用于快速联系和任务分配。如需验证最新状态,请使用 \`team-manager get-agent\` 命令。
|
|
684
|
+
|
|
685
|
+
### 本事业部管理者
|
|
686
|
+
|
|
687
|
+
| Agent ID | 名称 | 状态 |
|
|
688
|
+
|----------|------|------|
|
|
689
|
+
${teamInfo.manager}
|
|
690
|
+
|
|
691
|
+
### 本事业部审核者
|
|
692
|
+
|
|
693
|
+
| Agent ID | 名称 | 状态 |
|
|
694
|
+
|----------|------|------|
|
|
695
|
+
${teamInfo.reviewer}
|
|
696
|
+
|
|
697
|
+
### 消息发送方式
|
|
698
|
+
|
|
699
|
+
使用 \`sessions_send\` 工具:
|
|
700
|
+
- \`sessionKey\`:接收者的 sessionKey(或通过 Agent ID 查询)
|
|
701
|
+
- \`message\`:JSON 格式消息内容
|
|
702
|
+
`;
|
|
703
|
+
}
|
|
704
|
+
// AGENTS.md
|
|
705
|
+
const agentsContent = `# ${options.name} 引导文件
|
|
706
|
+
|
|
707
|
+
## 角色定位
|
|
708
|
+
|
|
709
|
+
你是${departmentName}的**${roleName}**。
|
|
710
|
+
|
|
711
|
+
## 角色信息
|
|
712
|
+
|
|
713
|
+
- **Agent ID**: ${agentId}
|
|
714
|
+
- **角色类型**: ${roleName}
|
|
715
|
+
- **所属事业部**: ${departmentName}
|
|
716
|
+
- **工作空间**: ${workspacePath}
|
|
717
|
+
|
|
718
|
+
${teamMembersSection}
|
|
719
|
+
## 通用规范
|
|
720
|
+
|
|
721
|
+
### 内容准确性要求
|
|
722
|
+
|
|
723
|
+
- **禁止幻觉与捏造**:不编造不存在的代码、API、文档、网址或事实
|
|
724
|
+
- **诚实面对未知**:不知道的问题直接承认,不猜测掩盖
|
|
725
|
+
- **逻辑一致性**:确保回答前后一致,发现错误主动纠正
|
|
726
|
+
- **信息可验证**:提供的信息需有明确来源或推理过程
|
|
727
|
+
|
|
728
|
+
### 执行任务规范
|
|
729
|
+
|
|
730
|
+
1. **全面理解任务**:开始前必须完全理解目标和需求
|
|
731
|
+
2. **制定执行清单**:将任务拆解为可执行步骤,形成清单
|
|
732
|
+
3. **按计划执行**:按清单逐步完成,确保高质量交付
|
|
733
|
+
4. **文件备份**:修改任何文件前必须先备份到指定目录
|
|
734
|
+
|
|
735
|
+
### 私有空间管理
|
|
736
|
+
|
|
737
|
+
- **路径**:\`${workspacePath}/temp/\`
|
|
738
|
+
- **命名规范**:\`{任务ID}-{日期}-{文档类型}.md\`
|
|
739
|
+
|
|
740
|
+
---
|
|
741
|
+
*本文档由 team-manager 自动生成*
|
|
742
|
+
`;
|
|
743
|
+
fs.writeFileSync(path.join(workspacePath, 'AGENTS.md'), agentsContent, 'utf-8');
|
|
744
|
+
// SOUL.md
|
|
745
|
+
const soulContent = `# SOUL.md - Who You Are
|
|
746
|
+
|
|
747
|
+
_你是${roleName},不是简单的传声筒。_
|
|
748
|
+
|
|
749
|
+
## Core Truths
|
|
750
|
+
|
|
751
|
+
**Be genuinely helpful, not performatively helpful.** Skip the "Great question!" and "I'd be happy to help!" — just help. Actions speak louder than filler words.
|
|
752
|
+
|
|
753
|
+
**Have opinions.** You're allowed to disagree, prefer things, find stuff amusing or boring.
|
|
754
|
+
|
|
755
|
+
**Be resourceful before asking.** Try to figure it out. Read the file. Check the context. Search for it. _Then_ ask if you're stuck.
|
|
756
|
+
|
|
757
|
+
## Boundaries
|
|
758
|
+
|
|
759
|
+
- **不越权决策**:重大变更需要用户确认
|
|
760
|
+
- **不泄露隐私**:用户的需求、任务内容不得外泄
|
|
761
|
+
- **不确定就问**:遇到模糊或异常情况,先询问澄清
|
|
762
|
+
|
|
763
|
+
## Vibe
|
|
764
|
+
|
|
765
|
+
专业、稳重、可靠。用中文沟通,技术术语可保留英文。汇报时先说结论,再说细节。
|
|
766
|
+
|
|
767
|
+
---
|
|
768
|
+
|
|
769
|
+
_这个文件定义你是谁。随着工作经验积累,可以更新。_
|
|
770
|
+
`;
|
|
771
|
+
fs.writeFileSync(path.join(workspacePath, 'SOUL.md'), soulContent, 'utf-8');
|
|
772
|
+
// USER.md
|
|
773
|
+
const userContent = `# USER.md - About Your Human
|
|
774
|
+
|
|
775
|
+
_了解你的用户,才能更好地服务。_
|
|
776
|
+
|
|
777
|
+
- **用户名称**:
|
|
778
|
+
- **称呼方式**:
|
|
779
|
+
- **时区**:Asia/Shanghai
|
|
780
|
+
- **备注**:
|
|
781
|
+
|
|
782
|
+
---
|
|
783
|
+
|
|
784
|
+
了解越多,服务越好。但记住 — 你是在了解一个人,不是在建立档案。尊重这个区别。
|
|
785
|
+
`;
|
|
786
|
+
fs.writeFileSync(path.join(workspacePath, 'USER.md'), userContent, 'utf-8');
|
|
787
|
+
// MEMORY.md
|
|
788
|
+
const memoryContent = `# MEMORY.md - 长期记忆
|
|
789
|
+
|
|
790
|
+
_记录关键决策、用户偏好、经验教训。这是提炼后的精华,不是原始日志。_
|
|
791
|
+
|
|
792
|
+
## 关键决策记录
|
|
793
|
+
|
|
794
|
+
| 日期 | 决策 | 原因 | 影响 |
|
|
795
|
+
|------|------|------|------|
|
|
796
|
+
| - | - | - | - |
|
|
797
|
+
|
|
798
|
+
## 用户偏好
|
|
799
|
+
|
|
800
|
+
_从交互中学习的用户偏好,持续更新_
|
|
801
|
+
|
|
802
|
+
-
|
|
803
|
+
|
|
804
|
+
## 经验教训
|
|
805
|
+
|
|
806
|
+
_遇到的坑和解决方案,避免重复踩坑_
|
|
807
|
+
|
|
808
|
+
-
|
|
809
|
+
|
|
810
|
+
## 待办事项
|
|
811
|
+
|
|
812
|
+
_需要跟进的事项_
|
|
813
|
+
|
|
814
|
+
- [ ]
|
|
815
|
+
|
|
816
|
+
---
|
|
817
|
+
|
|
818
|
+
*此文件会被自动注入到每次对话中,保持精简。重要交互后更新。*
|
|
819
|
+
`;
|
|
820
|
+
fs.writeFileSync(path.join(workspacePath, 'MEMORY.md'), memoryContent, 'utf-8');
|
|
821
|
+
// Initialize auth-profiles.json
|
|
822
|
+
(0, auth_profiles_service_1.initializeAuthProfiles)(agentId);
|
|
823
|
+
}
|
|
824
|
+
/**
|
|
825
|
+
* Sync team member info to all affected agents
|
|
826
|
+
*
|
|
827
|
+
* When a new agent is created or deleted, update all agents in the same department
|
|
828
|
+
* with the new team member information in their AGENTS.md files.
|
|
829
|
+
*/
|
|
830
|
+
function syncTeamMemberInfo(departmentId, excludeAgentId) {
|
|
831
|
+
try {
|
|
832
|
+
// Get all agents in the department
|
|
833
|
+
const agents = agent_repo_1.agentRepository.findByDepartment(departmentId);
|
|
834
|
+
let updatedCount = 0;
|
|
835
|
+
for (const agent of agents) {
|
|
836
|
+
// Skip the excluded agent (e.g., the one being deleted)
|
|
837
|
+
if (excludeAgentId && agent.id === excludeAgentId) {
|
|
838
|
+
continue;
|
|
839
|
+
}
|
|
840
|
+
// Regenerate AGENTS.md for this agent
|
|
841
|
+
const workspacePath = (0, utils_1.getAgentWorkspace)(agent.id);
|
|
842
|
+
const agentsPath = path.join(workspacePath, 'AGENTS.md');
|
|
843
|
+
// Check if AGENTS.md exists
|
|
844
|
+
if (!fs.existsSync(agentsPath)) {
|
|
845
|
+
continue;
|
|
846
|
+
}
|
|
847
|
+
// Read current content
|
|
848
|
+
const currentContent = fs.readFileSync(agentsPath, 'utf-8');
|
|
849
|
+
// Generate new team members section
|
|
850
|
+
let newTeamSection = '';
|
|
851
|
+
if (agent.role === 'manager') {
|
|
852
|
+
const teamInfo = generateManagerTeamMembersDetail(departmentId);
|
|
853
|
+
newTeamSection = generateTeamSectionForManager(teamInfo);
|
|
854
|
+
}
|
|
855
|
+
else if (agent.role === 'reviewer') {
|
|
856
|
+
const teamInfo = generateReviewerTeamMembersDetail(departmentId);
|
|
857
|
+
newTeamSection = generateTeamSectionForReviewer(teamInfo);
|
|
858
|
+
}
|
|
859
|
+
else if (agent.role === 'executor') {
|
|
860
|
+
const teamInfo = generateExecutorTeamMembersDetail(departmentId);
|
|
861
|
+
newTeamSection = generateTeamSectionForExecutor(teamInfo);
|
|
862
|
+
}
|
|
863
|
+
if (newTeamSection) {
|
|
864
|
+
// Find and replace the team members section
|
|
865
|
+
const startMarker = '## 团队成员';
|
|
866
|
+
const endMarker = '## 通用规范';
|
|
867
|
+
const startIndex = currentContent.indexOf(startMarker);
|
|
868
|
+
const endIndex = currentContent.indexOf(endMarker);
|
|
869
|
+
if (startIndex !== -1 && endIndex !== -1) {
|
|
870
|
+
const newContent = currentContent.substring(0, startIndex) +
|
|
871
|
+
newTeamSection +
|
|
872
|
+
'\n' +
|
|
873
|
+
currentContent.substring(endIndex);
|
|
874
|
+
fs.writeFileSync(agentsPath, newContent, 'utf-8');
|
|
875
|
+
updatedCount++;
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
}
|
|
879
|
+
return {
|
|
880
|
+
success: true,
|
|
881
|
+
updatedCount,
|
|
882
|
+
message: `已同步 ${updatedCount} 个 agent 的团队成员信息`
|
|
883
|
+
};
|
|
884
|
+
}
|
|
885
|
+
catch (error) {
|
|
886
|
+
return {
|
|
887
|
+
success: false,
|
|
888
|
+
updatedCount: 0,
|
|
889
|
+
message: `同步团队成员信息失败: ${error instanceof Error ? error.message : String(error)}`
|
|
890
|
+
};
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
/**
|
|
894
|
+
* Sync assistant's AGENTS.md with latest team member info
|
|
895
|
+
*
|
|
896
|
+
* The assistant sees all team members across all departments.
|
|
897
|
+
* This should be called when any agent is created or deleted.
|
|
898
|
+
*/
|
|
899
|
+
function syncAssistantTeamMembers() {
|
|
900
|
+
try {
|
|
901
|
+
// Find the assistant
|
|
902
|
+
const assistant = agent_repo_1.agentRepository.getAssistant();
|
|
903
|
+
if (!assistant) {
|
|
904
|
+
return { success: false, message: '未找到总助理' };
|
|
905
|
+
}
|
|
906
|
+
const workspacePath = (0, utils_1.getAgentWorkspace)(assistant.id);
|
|
907
|
+
const agentsPath = path.join(workspacePath, 'AGENTS.md');
|
|
908
|
+
if (!fs.existsSync(agentsPath)) {
|
|
909
|
+
return { success: false, message: '总助理的 AGENTS.md 不存在' };
|
|
910
|
+
}
|
|
911
|
+
const currentContent = fs.readFileSync(agentsPath, 'utf-8');
|
|
912
|
+
// Generate new team section
|
|
913
|
+
const teamInfo = generateAssistantTeamMembersDetailForTemplate();
|
|
914
|
+
const newTeamSection = generateTeamSectionForAssistant({
|
|
915
|
+
managers: teamInfo.managers,
|
|
916
|
+
reviewers: teamInfo.reviewers,
|
|
917
|
+
executors: teamInfo.executors
|
|
918
|
+
});
|
|
919
|
+
// Find and replace the team members section
|
|
920
|
+
const startMarker = '## 团队成员';
|
|
921
|
+
const endMarker = '## 通用规范';
|
|
922
|
+
const startIndex = currentContent.indexOf(startMarker);
|
|
923
|
+
const endIndex = currentContent.indexOf(endMarker);
|
|
924
|
+
if (startIndex !== -1 && endIndex !== -1) {
|
|
925
|
+
const newContent = currentContent.substring(0, startIndex) +
|
|
926
|
+
newTeamSection +
|
|
927
|
+
'\n' +
|
|
928
|
+
currentContent.substring(endIndex);
|
|
929
|
+
fs.writeFileSync(agentsPath, newContent, 'utf-8');
|
|
930
|
+
return { success: true, message: '总助理团队成员信息已同步' };
|
|
931
|
+
}
|
|
932
|
+
return { success: false, message: '未找到团队成员部分' };
|
|
933
|
+
}
|
|
934
|
+
catch (error) {
|
|
935
|
+
return {
|
|
936
|
+
success: false,
|
|
937
|
+
message: `同步总助理信息失败: ${error instanceof Error ? error.message : String(error)}`
|
|
938
|
+
};
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
/**
|
|
942
|
+
* Generate team section markdown for assistant
|
|
943
|
+
*/
|
|
944
|
+
function generateTeamSectionForAssistant(teamInfo) {
|
|
945
|
+
return `## 团队成员
|
|
946
|
+
|
|
947
|
+
以下为当前团队成员详细信息,用于快速联系和任务分配。如需验证最新状态,请使用 \`team-manager get-agent\` 命令。
|
|
948
|
+
|
|
949
|
+
### 各事业部管理者
|
|
950
|
+
|
|
951
|
+
${teamInfo.managers}
|
|
952
|
+
|
|
953
|
+
### 各事业部审核者
|
|
954
|
+
|
|
955
|
+
${teamInfo.reviewers}
|
|
956
|
+
|
|
957
|
+
### 各事业部执行者
|
|
958
|
+
|
|
959
|
+
${teamInfo.executors}
|
|
960
|
+
|
|
961
|
+
### 消息发送方式
|
|
962
|
+
|
|
963
|
+
使用 \`sessions_send\` 工具:
|
|
964
|
+
- \`sessionKey\`:接收者的 sessionKey(或通过 Agent ID 查询)
|
|
965
|
+
- \`message\`:JSON 格式消息内容`;
|
|
966
|
+
}
|
|
967
|
+
/**
|
|
968
|
+
* Generate team section markdown for manager
|
|
969
|
+
*/
|
|
970
|
+
function generateTeamSectionForManager(teamInfo) {
|
|
971
|
+
return `## 团队成员
|
|
972
|
+
|
|
973
|
+
以下为本事业部团队成员详细信息,用于快速联系和任务分配。如需验证最新状态,请使用 \`team-manager get-agent\` 命令。
|
|
974
|
+
|
|
975
|
+
### 总助理
|
|
976
|
+
|
|
977
|
+
| Agent ID | 名称 | 状态 |
|
|
978
|
+
|----------|------|------|
|
|
979
|
+
${teamInfo.assistant}
|
|
980
|
+
|
|
981
|
+
### 本事业部审核者
|
|
982
|
+
|
|
983
|
+
| Agent ID | 名称 | 状态 |
|
|
984
|
+
|----------|------|------|
|
|
985
|
+
${teamInfo.reviewers}
|
|
986
|
+
|
|
987
|
+
### 本事业部执行者
|
|
988
|
+
|
|
989
|
+
| Agent ID | 名称 | 职业 | 技能包 | 状态 |
|
|
990
|
+
|----------|------|------|--------|------|
|
|
991
|
+
${teamInfo.executors}
|
|
992
|
+
|
|
993
|
+
### 消息发送方式
|
|
994
|
+
|
|
995
|
+
使用 \`sessions_send\` 工具:
|
|
996
|
+
- \`sessionKey\`:接收者的 sessionKey(或通过 Agent ID 查询)
|
|
997
|
+
- \`message\`:JSON 格式消息内容`;
|
|
998
|
+
}
|
|
999
|
+
/**
|
|
1000
|
+
* Generate team section markdown for reviewer
|
|
1001
|
+
*/
|
|
1002
|
+
function generateTeamSectionForReviewer(teamInfo) {
|
|
1003
|
+
return `## 团队成员
|
|
1004
|
+
|
|
1005
|
+
以下为本事业部团队成员详细信息,用于快速联系和任务分配。如需验证最新状态,请使用 \`team-manager get-agent\` 命令。
|
|
1006
|
+
|
|
1007
|
+
### 本事业部管理者
|
|
1008
|
+
|
|
1009
|
+
| Agent ID | 名称 | 状态 |
|
|
1010
|
+
|----------|------|------|
|
|
1011
|
+
${teamInfo.manager}
|
|
1012
|
+
|
|
1013
|
+
### 本事业部执行者
|
|
1014
|
+
|
|
1015
|
+
| Agent ID | 名称 | 职业 | 状态 |
|
|
1016
|
+
|----------|------|------|------|
|
|
1017
|
+
${teamInfo.executors}
|
|
1018
|
+
|
|
1019
|
+
### 消息发送方式
|
|
1020
|
+
|
|
1021
|
+
使用 \`sessions_send\` 工具:
|
|
1022
|
+
- \`sessionKey\`:接收者的 sessionKey(或通过 Agent ID 查询)
|
|
1023
|
+
- \`message\`:JSON 格式消息内容`;
|
|
1024
|
+
}
|
|
1025
|
+
/**
|
|
1026
|
+
* Generate team section markdown for executor
|
|
1027
|
+
*/
|
|
1028
|
+
function generateTeamSectionForExecutor(teamInfo) {
|
|
1029
|
+
return `## 团队成员
|
|
1030
|
+
|
|
1031
|
+
以下为本事业部团队成员详细信息,用于快速联系和任务分配。如需验证最新状态,请使用 \`team-manager get-agent\` 命令。
|
|
1032
|
+
|
|
1033
|
+
### 本事业部管理者
|
|
1034
|
+
|
|
1035
|
+
| Agent ID | 名称 | 状态 |
|
|
1036
|
+
|----------|------|------|
|
|
1037
|
+
${teamInfo.manager}
|
|
1038
|
+
|
|
1039
|
+
### 本事业部审核者
|
|
1040
|
+
|
|
1041
|
+
| Agent ID | 名称 | 状态 |
|
|
1042
|
+
|----------|------|------|
|
|
1043
|
+
${teamInfo.reviewer}
|
|
1044
|
+
|
|
1045
|
+
### 消息发送方式
|
|
1046
|
+
|
|
1047
|
+
使用 \`sessions_send\` 工具:
|
|
1048
|
+
- \`sessionKey\`:接收者的 sessionKey(或通过 Agent ID 查询)
|
|
1049
|
+
- \`message\`:JSON 格式消息内容`;
|
|
1050
|
+
}
|
|
1051
|
+
/**
|
|
1052
|
+
* Sync Agent to OpenClaw config file
|
|
1053
|
+
*
|
|
1054
|
+
* After creating Agent, need to add it to openclaw.json config
|
|
1055
|
+
* Follows official standard format
|
|
1056
|
+
*
|
|
1057
|
+
* Note: Never set default=true for any agent created by team-manager
|
|
1058
|
+
* Preserve the original default agent if exists
|
|
1059
|
+
*/
|
|
1060
|
+
function syncOpenClawConfig(agent) {
|
|
1061
|
+
try {
|
|
1062
|
+
const configPath = (0, utils_1.getOpenClawJsonPath)();
|
|
1063
|
+
// If config file doesn't exist, create basic config
|
|
1064
|
+
if (!fs.existsSync(configPath)) {
|
|
1065
|
+
const defaultConfig = {
|
|
1066
|
+
gateway: {
|
|
1067
|
+
port: 28789,
|
|
1068
|
+
mode: 'local',
|
|
1069
|
+
bind: 'loopback',
|
|
1070
|
+
auth: {
|
|
1071
|
+
mode: 'token',
|
|
1072
|
+
token: 'default-token'
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
agents: {
|
|
1076
|
+
defaults: {
|
|
1077
|
+
workspace: (0, utils_1.getAgentWorkspace)('main'),
|
|
1078
|
+
model: {
|
|
1079
|
+
primary: 'doubao/doubao-seed-2-0-lite-260215',
|
|
1080
|
+
fallbacks: []
|
|
1081
|
+
}
|
|
1082
|
+
},
|
|
1083
|
+
list: []
|
|
1084
|
+
},
|
|
1085
|
+
bindings: [],
|
|
1086
|
+
models: {
|
|
1087
|
+
providers: {}
|
|
1088
|
+
},
|
|
1089
|
+
channels: {}
|
|
1090
|
+
};
|
|
1091
|
+
const configDir = path.dirname(configPath);
|
|
1092
|
+
if (!fs.existsSync(configDir)) {
|
|
1093
|
+
fs.mkdirSync(configDir, { recursive: true });
|
|
1094
|
+
}
|
|
1095
|
+
fs.writeFileSync(configPath, JSON.stringify(defaultConfig, null, 2), 'utf-8');
|
|
1096
|
+
}
|
|
1097
|
+
// Read existing config
|
|
1098
|
+
const configContent = fs.readFileSync(configPath, 'utf-8');
|
|
1099
|
+
const config = JSON.parse(configContent);
|
|
1100
|
+
// Ensure agents exists
|
|
1101
|
+
if (!config.agents) {
|
|
1102
|
+
config.agents = { defaults: {}, list: [] };
|
|
1103
|
+
}
|
|
1104
|
+
if (!config.agents.list) {
|
|
1105
|
+
config.agents.list = [];
|
|
1106
|
+
}
|
|
1107
|
+
// ========================================
|
|
1108
|
+
// Add global config for agent-to-agent communication
|
|
1109
|
+
// ========================================
|
|
1110
|
+
if (!config.tools) {
|
|
1111
|
+
config.tools = {};
|
|
1112
|
+
}
|
|
1113
|
+
// Set sessions visibility to "all" (allow seeing all sessions)
|
|
1114
|
+
if (!config.tools.sessions) {
|
|
1115
|
+
config.tools.sessions = {};
|
|
1116
|
+
}
|
|
1117
|
+
if (!config.tools.sessions.visibility) {
|
|
1118
|
+
config.tools.sessions.visibility = 'all';
|
|
1119
|
+
}
|
|
1120
|
+
// Set maxPingPongTurns to 3 (limit ping-pong loops)
|
|
1121
|
+
if (!config.session) {
|
|
1122
|
+
config.session = {};
|
|
1123
|
+
}
|
|
1124
|
+
if (!config.session.agentToAgent) {
|
|
1125
|
+
config.session.agentToAgent = {};
|
|
1126
|
+
}
|
|
1127
|
+
if (config.session.agentToAgent.maxPingPongTurns === undefined) {
|
|
1128
|
+
config.session.agentToAgent.maxPingPongTurns = 3;
|
|
1129
|
+
}
|
|
1130
|
+
// Check if already exists
|
|
1131
|
+
const existingIndex = config.agents.list.findIndex((a) => a.id === agent.id);
|
|
1132
|
+
// Create Agent config item (official standard format)
|
|
1133
|
+
// Note: Never set default=true, preserve original default agent
|
|
1134
|
+
// Note: agentToAgent communication is controlled by tools.agentToAgent.allow, not subagents.allowAgents
|
|
1135
|
+
// Note: thinkingDefault is NOT a valid field in agents.list[], only in agents.defaults
|
|
1136
|
+
const agentConfig = {
|
|
1137
|
+
id: agent.id,
|
|
1138
|
+
workspace: agent.workspace_path || (0, utils_1.getAgentWorkspace)(agent.id),
|
|
1139
|
+
agentDir: (0, utils_1.getAgentDir)(agent.id),
|
|
1140
|
+
name: agent.name,
|
|
1141
|
+
// Inherit model from agents.defaults if set
|
|
1142
|
+
model: config.agents?.defaults?.model || { primary: 'bailian/glm-5' }
|
|
1143
|
+
};
|
|
1144
|
+
if (existingIndex >= 0) {
|
|
1145
|
+
// Update existing config, but preserve default if it was set
|
|
1146
|
+
const existingDefault = config.agents.list[existingIndex].default;
|
|
1147
|
+
config.agents.list[existingIndex] = agentConfig;
|
|
1148
|
+
// Preserve default flag
|
|
1149
|
+
if (existingDefault) {
|
|
1150
|
+
config.agents.list[existingIndex].default = existingDefault;
|
|
1151
|
+
}
|
|
1152
|
+
}
|
|
1153
|
+
else {
|
|
1154
|
+
// Add new config (without default)
|
|
1155
|
+
config.agents.list.push(agentConfig);
|
|
1156
|
+
}
|
|
1157
|
+
// Write back to file
|
|
1158
|
+
fs.writeFileSync(configPath, JSON.stringify(config, null, 2), 'utf-8');
|
|
1159
|
+
return { success: true, message: 'OpenClaw 配置已同步' };
|
|
1160
|
+
}
|
|
1161
|
+
catch (error) {
|
|
1162
|
+
return {
|
|
1163
|
+
success: false,
|
|
1164
|
+
message: `同步配置失败: ${error instanceof Error ? error.message : String(error)}`
|
|
1165
|
+
};
|
|
1166
|
+
}
|
|
1167
|
+
}
|
|
1168
|
+
/**
|
|
1169
|
+
* Remove Agent from OpenClaw config
|
|
1170
|
+
*
|
|
1171
|
+
* Note: Cannot remove main/assistant agent
|
|
1172
|
+
*/
|
|
1173
|
+
function removeAgentFromConfig(agentId) {
|
|
1174
|
+
try {
|
|
1175
|
+
const configPath = (0, utils_1.getOpenClawJsonPath)();
|
|
1176
|
+
if (!fs.existsSync(configPath)) {
|
|
1177
|
+
return { success: false, message: '配置文件不存在' };
|
|
1178
|
+
}
|
|
1179
|
+
// Protect main agent
|
|
1180
|
+
if (agentId === 'main') {
|
|
1181
|
+
return { success: false, message: '不能从配置中移除默认 agent (main)' };
|
|
1182
|
+
}
|
|
1183
|
+
const configContent = fs.readFileSync(configPath, 'utf-8');
|
|
1184
|
+
const config = JSON.parse(configContent);
|
|
1185
|
+
if (!config.agents?.list) {
|
|
1186
|
+
return { success: false, message: '配置中没有 Agent 列表' };
|
|
1187
|
+
}
|
|
1188
|
+
const index = config.agents.list.findIndex((a) => a.id === agentId);
|
|
1189
|
+
if (index < 0) {
|
|
1190
|
+
return { success: false, message: 'Agent 不在配置中' };
|
|
1191
|
+
}
|
|
1192
|
+
// Double-check: don't remove agent with default=true
|
|
1193
|
+
if (config.agents.list[index].default) {
|
|
1194
|
+
return { success: false, message: '不能从配置中移除默认 agent' };
|
|
1195
|
+
}
|
|
1196
|
+
config.agents.list.splice(index, 1);
|
|
1197
|
+
fs.writeFileSync(configPath, JSON.stringify(config, null, 2), 'utf-8');
|
|
1198
|
+
return { success: true, message: 'Agent 已从配置中移除' };
|
|
1199
|
+
}
|
|
1200
|
+
catch (error) {
|
|
1201
|
+
return {
|
|
1202
|
+
success: false,
|
|
1203
|
+
message: `移除失败: ${error instanceof Error ? error.message : String(error)}`
|
|
1204
|
+
};
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1207
|
+
/**
|
|
1208
|
+
* Update Agent Allow List for team isolation
|
|
1209
|
+
*
|
|
1210
|
+
* When an agent is created or deleted, update the allowAgents list
|
|
1211
|
+
* for all agents in the same team.
|
|
1212
|
+
*
|
|
1213
|
+
* Rules:
|
|
1214
|
+
* - Team members can spawn to each other
|
|
1215
|
+
* - Assistant (main) has allowAgents: ["*"]
|
|
1216
|
+
* - Cross-team spawning is not allowed
|
|
1217
|
+
*
|
|
1218
|
+
* @param agentId - The agent that was created or will be deleted
|
|
1219
|
+
* @param departmentId - The department ID the agent belongs to
|
|
1220
|
+
* @param action - 'add' | 'remove'
|
|
1221
|
+
* @returns Result with affected agents and changes
|
|
1222
|
+
*/
|
|
1223
|
+
/**
|
|
1224
|
+
* Update Agent-to-Agent Communication Allow List
|
|
1225
|
+
*
|
|
1226
|
+
* Updates tools.agentToAgent.allow in openclaw.json
|
|
1227
|
+
* This is the official OpenClaw configuration for agent-to-agent communication control.
|
|
1228
|
+
*
|
|
1229
|
+
* Rules:
|
|
1230
|
+
* - All team members can communicate with each other
|
|
1231
|
+
* - Assistant (main) can communicate with all agents (use "*")
|
|
1232
|
+
* - Cross-team communication is allowed through this shared allow list
|
|
1233
|
+
*
|
|
1234
|
+
* @param agentId - The agent that was created or will be deleted
|
|
1235
|
+
* @param departmentId - The department ID the agent belongs to (not used in global config)
|
|
1236
|
+
* @param action - 'add' | 'remove'
|
|
1237
|
+
* @returns Result with old and new allow list values
|
|
1238
|
+
*/
|
|
1239
|
+
function updateAgentToAgentAllow(agentId, departmentId, action) {
|
|
1240
|
+
const result = {
|
|
1241
|
+
success: false,
|
|
1242
|
+
message: '',
|
|
1243
|
+
oldValue: [],
|
|
1244
|
+
newValue: []
|
|
1245
|
+
};
|
|
1246
|
+
try {
|
|
1247
|
+
const configPath = (0, utils_1.getOpenClawJsonPath)();
|
|
1248
|
+
if (!fs.existsSync(configPath)) {
|
|
1249
|
+
result.message = '配置文件不存在';
|
|
1250
|
+
return result;
|
|
1251
|
+
}
|
|
1252
|
+
const configContent = fs.readFileSync(configPath, 'utf-8');
|
|
1253
|
+
const config = JSON.parse(configContent);
|
|
1254
|
+
// Ensure tools.agentToAgent structure exists
|
|
1255
|
+
if (!config.tools) {
|
|
1256
|
+
config.tools = {};
|
|
1257
|
+
}
|
|
1258
|
+
if (!config.tools.agentToAgent) {
|
|
1259
|
+
config.tools.agentToAgent = { enabled: true, allow: [] };
|
|
1260
|
+
}
|
|
1261
|
+
if (!config.tools.agentToAgent.allow) {
|
|
1262
|
+
config.tools.agentToAgent.allow = [];
|
|
1263
|
+
}
|
|
1264
|
+
// Get current allow list
|
|
1265
|
+
const oldAllowList = [...config.tools.agentToAgent.allow];
|
|
1266
|
+
result.oldValue = oldAllowList;
|
|
1267
|
+
// Get all agents in the system (agent-to-agent is global, not per-department)
|
|
1268
|
+
const allAgents = agent_repo_1.agentRepository.findAll();
|
|
1269
|
+
// Build new allow list based on action
|
|
1270
|
+
let newAllowList;
|
|
1271
|
+
if (action === 'add') {
|
|
1272
|
+
// When adding an agent, rebuild the allow list with ALL agents (except main)
|
|
1273
|
+
// This ensures all team members can communicate with each other
|
|
1274
|
+
newAllowList = allAgents
|
|
1275
|
+
.filter(a => a.id !== 'main')
|
|
1276
|
+
.map(a => a.id);
|
|
1277
|
+
}
|
|
1278
|
+
else {
|
|
1279
|
+
// Remove the agent from the allow list
|
|
1280
|
+
newAllowList = oldAllowList.filter(id => id !== agentId);
|
|
1281
|
+
}
|
|
1282
|
+
result.newValue = newAllowList;
|
|
1283
|
+
// Skip if no change
|
|
1284
|
+
if (JSON.stringify(oldAllowList.sort()) === JSON.stringify(newAllowList.sort())) {
|
|
1285
|
+
result.success = true;
|
|
1286
|
+
result.message = '无需更新,配置已正确';
|
|
1287
|
+
return result;
|
|
1288
|
+
}
|
|
1289
|
+
// Update the config
|
|
1290
|
+
config.tools.agentToAgent.enabled = true;
|
|
1291
|
+
config.tools.agentToAgent.allow = newAllowList;
|
|
1292
|
+
// Write back to file
|
|
1293
|
+
fs.writeFileSync(configPath, JSON.stringify(config, null, 2), 'utf-8');
|
|
1294
|
+
// Record to config_changes table
|
|
1295
|
+
configTracker.recordAgentToAgentChange(oldAllowList, newAllowList, action === 'add'
|
|
1296
|
+
? `添加 Agent ${agentId} 到通信白名单`
|
|
1297
|
+
: `从通信白名单移除 Agent ${agentId}`);
|
|
1298
|
+
result.success = true;
|
|
1299
|
+
result.message = `已更新 agentToAgent.allow: [${newAllowList.slice(0, 5).join(', ')}${newAllowList.length > 5 ? '...' : ''}]`;
|
|
1300
|
+
return result;
|
|
1301
|
+
}
|
|
1302
|
+
catch (error) {
|
|
1303
|
+
result.message = `更新失败: ${error instanceof Error ? error.message : String(error)}`;
|
|
1304
|
+
return result;
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
/**
|
|
1308
|
+
* Initialize agentToAgent configuration
|
|
1309
|
+
*
|
|
1310
|
+
* Called during system initialization to set up agent-to-agent communication.
|
|
1311
|
+
* Builds the allow list from all existing agents.
|
|
1312
|
+
*/
|
|
1313
|
+
function initializeAgentToAgentConfig() {
|
|
1314
|
+
const result = {
|
|
1315
|
+
success: false,
|
|
1316
|
+
message: '',
|
|
1317
|
+
allowList: []
|
|
1318
|
+
};
|
|
1319
|
+
try {
|
|
1320
|
+
const configPath = (0, utils_1.getOpenClawJsonPath)();
|
|
1321
|
+
if (!fs.existsSync(configPath)) {
|
|
1322
|
+
result.message = '配置文件不存在';
|
|
1323
|
+
return result;
|
|
1324
|
+
}
|
|
1325
|
+
const configContent = fs.readFileSync(configPath, 'utf-8');
|
|
1326
|
+
const config = JSON.parse(configContent);
|
|
1327
|
+
// Ensure tools.agentToAgent structure exists
|
|
1328
|
+
if (!config.tools) {
|
|
1329
|
+
config.tools = {};
|
|
1330
|
+
}
|
|
1331
|
+
if (!config.tools.agentToAgent) {
|
|
1332
|
+
config.tools.agentToAgent = { enabled: true, allow: [] };
|
|
1333
|
+
}
|
|
1334
|
+
// Get all agents
|
|
1335
|
+
const allAgents = agent_repo_1.agentRepository.findAll();
|
|
1336
|
+
// Build allow list: all agents except main
|
|
1337
|
+
const allowList = allAgents
|
|
1338
|
+
.filter(a => a.id !== 'main')
|
|
1339
|
+
.map(a => a.id);
|
|
1340
|
+
config.tools.agentToAgent.enabled = true;
|
|
1341
|
+
config.tools.agentToAgent.allow = allowList;
|
|
1342
|
+
// Write back to file
|
|
1343
|
+
fs.writeFileSync(configPath, JSON.stringify(config, null, 2), 'utf-8');
|
|
1344
|
+
result.allowList = allowList;
|
|
1345
|
+
result.success = true;
|
|
1346
|
+
result.message = `已初始化 agentToAgent 配置,共 ${allowList.length} 个 Agent`;
|
|
1347
|
+
return result;
|
|
1348
|
+
}
|
|
1349
|
+
catch (error) {
|
|
1350
|
+
result.message = `初始化失败: ${error instanceof Error ? error.message : String(error)}`;
|
|
1351
|
+
return result;
|
|
1352
|
+
}
|
|
1353
|
+
}
|
|
1354
|
+
/**
|
|
1355
|
+
* Legacy function for backward compatibility
|
|
1356
|
+
* @deprecated Use updateAgentToAgentAllow instead
|
|
1357
|
+
*/
|
|
1358
|
+
function updateAgentAllowList(agentId, departmentId, action) {
|
|
1359
|
+
const result = updateAgentToAgentAllow(agentId, departmentId, action);
|
|
1360
|
+
return {
|
|
1361
|
+
success: result.success,
|
|
1362
|
+
message: result.message,
|
|
1363
|
+
affectedAgents: [agentId],
|
|
1364
|
+
changes: [{
|
|
1365
|
+
agentId: agentId,
|
|
1366
|
+
oldValue: result.oldValue,
|
|
1367
|
+
newValue: result.newValue
|
|
1368
|
+
}]
|
|
1369
|
+
};
|
|
1370
|
+
}
|
|
1371
|
+
/**
|
|
1372
|
+
* Get Gateway restart reminder message
|
|
1373
|
+
*
|
|
1374
|
+
* After deleting agents/departments, Feishu WebSocket connections
|
|
1375
|
+
* are still stored in Gateway process memory. Manual restart is required.
|
|
1376
|
+
*
|
|
1377
|
+
* @returns Reminder message for user to restart Gateway manually
|
|
1378
|
+
*/
|
|
1379
|
+
function getGatewayRestartReminder() {
|
|
1380
|
+
return '⚠️ 请重启 Gateway 使飞书长连接断开:openclaw gateway restart';
|
|
1381
|
+
}
|
|
1382
|
+
/**
|
|
1383
|
+
* Sync Feishu group info to all team members
|
|
1384
|
+
*
|
|
1385
|
+
* When a department binds/unbinds a Feishu group, update all members' AGENTS.md
|
|
1386
|
+
*
|
|
1387
|
+
* @param departmentId Department ID
|
|
1388
|
+
* @param groupId Feishu group ID (null for unbind)
|
|
1389
|
+
* @returns Sync result
|
|
1390
|
+
*/
|
|
1391
|
+
function syncTeamFeishuGroup(departmentId, groupId) {
|
|
1392
|
+
try {
|
|
1393
|
+
const agents = agent_repo_1.agentRepository.findByDepartment(departmentId);
|
|
1394
|
+
let updatedCount = 0;
|
|
1395
|
+
const displayId = groupId || '未绑定';
|
|
1396
|
+
const dept = dept_repo_1.departmentRepository.findById(departmentId);
|
|
1397
|
+
const displayName = groupId ? (dept?.name || '未知') : '未绑定';
|
|
1398
|
+
for (const agent of agents) {
|
|
1399
|
+
const workspacePath = (0, utils_1.getAgentWorkspace)(agent.id);
|
|
1400
|
+
const agentsPath = path.join(workspacePath, 'AGENTS.md');
|
|
1401
|
+
if (!fs.existsSync(agentsPath))
|
|
1402
|
+
continue;
|
|
1403
|
+
const currentContent = fs.readFileSync(agentsPath, 'utf-8');
|
|
1404
|
+
// 查找群信息章节
|
|
1405
|
+
const startMarker = '## 飞书群信息';
|
|
1406
|
+
const endMarker = '## 团队成员';
|
|
1407
|
+
const startIndex = currentContent.indexOf(startMarker);
|
|
1408
|
+
const endIndex = currentContent.indexOf(endMarker);
|
|
1409
|
+
if (startIndex !== -1 && endIndex !== -1) {
|
|
1410
|
+
const newGroupSection = `## 飞书群信息
|
|
1411
|
+
|
|
1412
|
+
### 所在群
|
|
1413
|
+
|
|
1414
|
+
- **群ID**: ${displayId}
|
|
1415
|
+
- **群名称**: ${displayName}
|
|
1416
|
+
|
|
1417
|
+
### 发送群消息
|
|
1418
|
+
|
|
1419
|
+
使用 \`message\` 工具发送群消息:
|
|
1420
|
+
|
|
1421
|
+
\`\`\`
|
|
1422
|
+
message(
|
|
1423
|
+
action="send",
|
|
1424
|
+
channel="feishu",
|
|
1425
|
+
to="${displayId}",
|
|
1426
|
+
message="消息内容"
|
|
1427
|
+
)
|
|
1428
|
+
\`\`\`
|
|
1429
|
+
|
|
1430
|
+
**参数说明:**
|
|
1431
|
+
|
|
1432
|
+
| 参数 | 说明 |
|
|
1433
|
+
|------|------|
|
|
1434
|
+
| \`action\` | 固定值 \`"send"\` |
|
|
1435
|
+
| \`channel\` | 固定值 \`"feishu"\` |
|
|
1436
|
+
| \`to\` | 群ID,从上方"所在群"获取。如为"未绑定"则无法发送 |
|
|
1437
|
+
| \`message\` | 消息内容,支持 Markdown 格式 |
|
|
1438
|
+
|
|
1439
|
+
### 发送时机
|
|
1440
|
+
|
|
1441
|
+
| 场景 | 消息内容 |
|
|
1442
|
+
|------|----------|
|
|
1443
|
+
| 任务相关通知 | 任务分配、进度汇报、审核结果等 |
|
|
1444
|
+
|
|
1445
|
+
---
|
|
1446
|
+
|
|
1447
|
+
`;
|
|
1448
|
+
const newContent = currentContent.substring(0, startIndex) +
|
|
1449
|
+
newGroupSection +
|
|
1450
|
+
currentContent.substring(endIndex);
|
|
1451
|
+
fs.writeFileSync(agentsPath, newContent, 'utf-8');
|
|
1452
|
+
updatedCount++;
|
|
1453
|
+
}
|
|
1454
|
+
}
|
|
1455
|
+
return {
|
|
1456
|
+
success: true,
|
|
1457
|
+
updatedCount,
|
|
1458
|
+
message: `已同步 ${updatedCount} 个成员的群信息`
|
|
1459
|
+
};
|
|
1460
|
+
}
|
|
1461
|
+
catch (error) {
|
|
1462
|
+
return {
|
|
1463
|
+
success: false,
|
|
1464
|
+
updatedCount: 0,
|
|
1465
|
+
message: `同步失败: ${error instanceof Error ? error.message : String(error)}`
|
|
1466
|
+
};
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
/**
|
|
1470
|
+
* Regenerate Agent Files
|
|
1471
|
+
*
|
|
1472
|
+
* Regenerates all agent files (AGENTS.md, SOUL.md, USER.md, MEMORY.md)
|
|
1473
|
+
* from the latest database templates and agent data.
|
|
1474
|
+
*
|
|
1475
|
+
* @param excludeAgentIds - Agent IDs to exclude (default: ['main', 'watchdog_main'])
|
|
1476
|
+
* @returns Result with regenerated count and any errors
|
|
1477
|
+
*/
|
|
1478
|
+
function regenerateAgentFiles(excludeAgentIds = ['main', 'watchdog_main']) {
|
|
1479
|
+
const result = {
|
|
1480
|
+
success: true,
|
|
1481
|
+
regeneratedCount: 0,
|
|
1482
|
+
errors: [],
|
|
1483
|
+
message: ''
|
|
1484
|
+
};
|
|
1485
|
+
try {
|
|
1486
|
+
// Get all agents from database
|
|
1487
|
+
const allAgents = agent_repo_1.agentRepository.findAll();
|
|
1488
|
+
// Filter out excluded agents
|
|
1489
|
+
const agentsToRegenerate = allAgents.filter(a => !excludeAgentIds.includes(a.id));
|
|
1490
|
+
console.log(`[重新生成] 找到 ${agentsToRegenerate.length} 个 Agent 需要重新生成文件`);
|
|
1491
|
+
for (const agent of agentsToRegenerate) {
|
|
1492
|
+
try {
|
|
1493
|
+
// Get workspace path
|
|
1494
|
+
const workspacePath = (0, utils_1.getAgentWorkspace)(agent.id);
|
|
1495
|
+
// Check if workspace exists
|
|
1496
|
+
if (!fs.existsSync(workspacePath)) {
|
|
1497
|
+
result.errors.push(`Agent ${agent.id} (${agent.name}): 工作空间不存在`);
|
|
1498
|
+
continue;
|
|
1499
|
+
}
|
|
1500
|
+
// Regenerate files using existing createAgentFiles function
|
|
1501
|
+
createAgentFiles(agent.id, {
|
|
1502
|
+
name: agent.name,
|
|
1503
|
+
role: agent.role,
|
|
1504
|
+
departmentId: agent.department_id || undefined,
|
|
1505
|
+
jobId: agent.job_id || undefined
|
|
1506
|
+
});
|
|
1507
|
+
result.regeneratedCount++;
|
|
1508
|
+
console.log(`[重新生成] ✓ Agent ${agent.id} (${agent.name})`);
|
|
1509
|
+
}
|
|
1510
|
+
catch (error) {
|
|
1511
|
+
const errorMsg = `Agent ${agent.id} (${agent.name}): ${error instanceof Error ? error.message : String(error)}`;
|
|
1512
|
+
result.errors.push(errorMsg);
|
|
1513
|
+
console.error(`[重新生成] ✗ ${errorMsg}`);
|
|
1514
|
+
}
|
|
1515
|
+
}
|
|
1516
|
+
// Sync assistant team members after regeneration
|
|
1517
|
+
const assistantSyncResult = syncAssistantTeamMembers();
|
|
1518
|
+
if (assistantSyncResult.success) {
|
|
1519
|
+
console.log(`[重新生成] 已同步总助理团队成员信息`);
|
|
1520
|
+
}
|
|
1521
|
+
result.message = `已重新生成 ${result.regeneratedCount}/${agentsToRegenerate.length} 个 Agent 的文件`;
|
|
1522
|
+
if (result.errors.length > 0) {
|
|
1523
|
+
result.message += `,${result.errors.length} 个失败`;
|
|
1524
|
+
result.success = false;
|
|
1525
|
+
}
|
|
1526
|
+
return result;
|
|
1527
|
+
}
|
|
1528
|
+
catch (error) {
|
|
1529
|
+
result.success = false;
|
|
1530
|
+
result.message = `重新生成失败: ${error instanceof Error ? error.message : String(error)}`;
|
|
1531
|
+
return result;
|
|
1532
|
+
}
|
|
1533
|
+
}
|
|
1534
|
+
/**
|
|
1535
|
+
* Regenerate files for a single agent
|
|
1536
|
+
*
|
|
1537
|
+
* @param agentId - Agent ID to regenerate files for
|
|
1538
|
+
* @returns Result with details
|
|
1539
|
+
*/
|
|
1540
|
+
function regenerateAgentFilesById(agentId) {
|
|
1541
|
+
try {
|
|
1542
|
+
const agent = agent_repo_1.agentRepository.findById(agentId);
|
|
1543
|
+
if (!agent) {
|
|
1544
|
+
return { success: false, message: `Agent ${agentId} 不存在` };
|
|
1545
|
+
}
|
|
1546
|
+
// Check if workspace exists
|
|
1547
|
+
const workspacePath = (0, utils_1.getAgentWorkspace)(agent.id);
|
|
1548
|
+
if (!fs.existsSync(workspacePath)) {
|
|
1549
|
+
return { success: false, message: `Agent ${agentId} 的工作空间不存在` };
|
|
1550
|
+
}
|
|
1551
|
+
// Regenerate files
|
|
1552
|
+
createAgentFiles(agent.id, {
|
|
1553
|
+
name: agent.name,
|
|
1554
|
+
role: agent.role,
|
|
1555
|
+
departmentId: agent.department_id || undefined,
|
|
1556
|
+
jobId: agent.job_id || undefined
|
|
1557
|
+
});
|
|
1558
|
+
return { success: true, message: `Agent ${agentId} (${agent.name}) 文件已重新生成` };
|
|
1559
|
+
}
|
|
1560
|
+
catch (error) {
|
|
1561
|
+
return {
|
|
1562
|
+
success: false,
|
|
1563
|
+
message: `重新生成失败: ${error instanceof Error ? error.message : String(error)}`
|
|
1564
|
+
};
|
|
1565
|
+
}
|
|
1566
|
+
}
|
|
1567
|
+
/**
|
|
1568
|
+
* OpenClaw integration helper service
|
|
1569
|
+
*/
|
|
1570
|
+
exports.openclawHelper = {
|
|
1571
|
+
getAgentSessionKey,
|
|
1572
|
+
getAgentWorkspacePath,
|
|
1573
|
+
prepareAgentContext,
|
|
1574
|
+
createAgentDirectories,
|
|
1575
|
+
createAgentFiles,
|
|
1576
|
+
syncOpenClawConfig,
|
|
1577
|
+
removeAgentFromConfig,
|
|
1578
|
+
updateAgentAllowList,
|
|
1579
|
+
updateAgentToAgentAllow,
|
|
1580
|
+
initializeAgentToAgentConfig,
|
|
1581
|
+
syncTeamFeishuGroup,
|
|
1582
|
+
regenerateAgentFiles,
|
|
1583
|
+
regenerateAgentFilesById
|
|
1584
|
+
};
|
|
1585
|
+
//# sourceMappingURL=openclaw-helper.js.map
|