@tangle-network/sandbox 0.4.4 → 0.6.0

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.
@@ -1,5 +1,5 @@
1
- import { F as CodeExecutionOptions, I as CodeExecutionResult, L as CodeLanguage, n as SandboxInstance, z as CodeResultPart } from "../sandbox-Dyf07Ckv.js";
2
- import { i as SandboxClient } from "../client-DMkVWoYk.js";
1
+ import { B as CodeLanguage, H as CodeResultPart, R as CodeExecutionOptions, n as SandboxInstance, z as CodeExecutionResult } from "../sandbox-BQbq1EGP.js";
2
+ import { i as SandboxClient } from "../client-DRbtd2hi.js";
3
3
  import * as _$_modelcontextprotocol_sdk_server_index_js0 from "@modelcontextprotocol/sdk/server/index.js";
4
4
 
5
5
  //#region src/agent/tools/_specs.d.ts
@@ -315,6 +315,93 @@ declare function openaiFleetTools(client: SandboxClient, options?: FleetToolPack
315
315
  declare function vercelAiFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
316
316
  declare function mastraFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
317
317
  //#endregion
318
+ //#region src/agent/tools/lifecycle/_specs.d.ts
319
+ interface LifecycleToolHandlerContext {
320
+ client: SandboxClient;
321
+ }
322
+ interface LifecycleToolSpec<TArgs = Record<string, unknown>, TResult = unknown> {
323
+ name: string;
324
+ description: string;
325
+ inputSchema: ToolJSONSchema;
326
+ makeHandler: (ctx: LifecycleToolHandlerContext) => (args: TArgs) => Promise<TResult>;
327
+ }
328
+ declare const LIFECYCLE_TOOL_SPECS: {
329
+ readonly sandbox_create: LifecycleToolSpec<{
330
+ environment?: string;
331
+ name?: string;
332
+ }, unknown>;
333
+ readonly sandbox_run_command: LifecycleToolSpec<{
334
+ sandbox_id: string;
335
+ command: string;
336
+ cwd?: string;
337
+ timeout_ms?: number;
338
+ }, unknown>;
339
+ readonly sandbox_destroy: LifecycleToolSpec<{
340
+ sandbox_id: string;
341
+ }, unknown>;
342
+ };
343
+ type LifecycleToolName = keyof typeof LIFECYCLE_TOOL_SPECS;
344
+ //#endregion
345
+ //#region src/agent/tools/lifecycle/index.d.ts
346
+ interface LifecycleToolPackOptions {
347
+ /** Which lifecycle tools to expose. Defaults to all three. */
348
+ allow?: LifecycleToolName[];
349
+ }
350
+ interface AnthropicLifecycleTool {
351
+ name: string;
352
+ description: string;
353
+ input_schema: {
354
+ type: "object";
355
+ properties: Record<string, unknown>;
356
+ required?: string[];
357
+ additionalProperties?: boolean;
358
+ };
359
+ }
360
+ interface AnthropicLifecycleToolPack {
361
+ tools: AnthropicLifecycleTool[];
362
+ handleToolUse(block: {
363
+ type: "tool_use";
364
+ id: string;
365
+ name: string;
366
+ input: Record<string, unknown>;
367
+ }): Promise<{
368
+ type: "tool_result";
369
+ tool_use_id: string;
370
+ content: string;
371
+ is_error?: boolean;
372
+ }>;
373
+ }
374
+ declare function anthropicLifecycleTools(client: SandboxClient, options?: LifecycleToolPackOptions): AnthropicLifecycleToolPack;
375
+ interface OpenAILifecycleTool {
376
+ type: "function";
377
+ function: {
378
+ name: string;
379
+ description: string;
380
+ parameters: {
381
+ type: "object";
382
+ properties: Record<string, unknown>;
383
+ required?: string[];
384
+ additionalProperties?: boolean;
385
+ };
386
+ };
387
+ }
388
+ interface OpenAILifecycleToolPack {
389
+ tools: OpenAILifecycleTool[];
390
+ handleToolCall(call: {
391
+ id: string;
392
+ type?: "function";
393
+ function: {
394
+ name: string;
395
+ arguments: string;
396
+ };
397
+ }): Promise<{
398
+ role: "tool";
399
+ tool_call_id: string;
400
+ content: string;
401
+ }>;
402
+ }
403
+ declare function openaiLifecycleTools(client: SandboxClient, options?: LifecycleToolPackOptions): OpenAILifecycleToolPack;
404
+ //#endregion
318
405
  //#region src/agent/tools/mastra.d.ts
319
406
  interface MastraToolPackOptions {
320
407
  allow?: ToolName[];
@@ -430,4 +517,4 @@ type AnyTool = unknown;
430
517
  */
431
518
  declare function vercelAiTools(box: SandboxInstance, options?: VercelAiToolPackOptions): Promise<Record<string, AnyTool>>;
432
519
  //#endregion
433
- export { type AnthropicFleetTool, type AnthropicFleetToolPack, type AnthropicTool, type AnthropicToolPack, type AnthropicToolPackOptions, type AnthropicToolResultBlock, type AnthropicToolUseBlock, type CodeExecutionOptions, type CodeExecutionResult, type CodeLanguage, type CodeResultPart, type FleetToolName, type FleetToolPackOptions, type MastraToolPackOptions, type McpServerHandle, type McpServerOptions, type OpenAIFleetTool, type OpenAIFleetToolPack, type OpenAITool, type OpenAIToolCall, type OpenAIToolPack, type OpenAIToolPackOptions, type OpenAIToolResultMessage, type ToolName, type VercelAiToolPackOptions, anthropicFleetTools, anthropicTools, createMcpServer, mastraFleetTools, mastraTools, openaiFleetTools, openaiTools, runCode, vercelAiFleetTools, vercelAiTools };
520
+ export { type AnthropicFleetTool, type AnthropicFleetToolPack, type AnthropicLifecycleTool, type AnthropicLifecycleToolPack, type AnthropicTool, type AnthropicToolPack, type AnthropicToolPackOptions, type AnthropicToolResultBlock, type AnthropicToolUseBlock, type CodeExecutionOptions, type CodeExecutionResult, type CodeLanguage, type CodeResultPart, type FleetToolName, type FleetToolPackOptions, type LifecycleToolName, type LifecycleToolPackOptions, type MastraToolPackOptions, type McpServerHandle, type McpServerOptions, type OpenAIFleetTool, type OpenAIFleetToolPack, type OpenAILifecycleTool, type OpenAILifecycleToolPack, type OpenAITool, type OpenAIToolCall, type OpenAIToolPack, type OpenAIToolPackOptions, type OpenAIToolResultMessage, type ToolName, type VercelAiToolPackOptions, anthropicFleetTools, anthropicLifecycleTools, anthropicTools, createMcpServer, mastraFleetTools, mastraTools, openaiFleetTools, openaiLifecycleTools, openaiTools, runCode, vercelAiFleetTools, vercelAiTools };
@@ -1 +1 @@
1
- const a0_0x500b58=a0_0x9341;(function(_0x1bc4b6,_0x17523f){const _0x147bfb=a0_0x9341,_0x19189a=_0x1bc4b6();while(!![]){try{const _0x1b4405=parseInt(_0x147bfb(0x21a))/0x1+-parseInt(_0x147bfb(0x22a))/0x2*(-parseInt(_0x147bfb(0x266))/0x3)+parseInt(_0x147bfb(0x261))/0x4+parseInt(_0x147bfb(0x244))/0x5*(parseInt(_0x147bfb(0x232))/0x6)+parseInt(_0x147bfb(0x21b))/0x7*(-parseInt(_0x147bfb(0x204))/0x8)+-parseInt(_0x147bfb(0x239))/0x9+-parseInt(_0x147bfb(0x24d))/0xa;if(_0x1b4405===_0x17523f)break;else _0x19189a['push'](_0x19189a['shift']());}catch(_0x53f198){_0x19189a['push'](_0x19189a['shift']());}}}(a0_0x4878,0x241e8));import{createRequire}from'\x6e\x6f\x64\x65\x3a\x6d\x6f\x64\x75\x6c\x65';const TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65':{'\x6e\x61\x6d\x65':a0_0x500b58(0x200),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x237),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x65\x6e\x75\x6d':[a0_0x500b58(0x1e2),a0_0x500b58(0x207),a0_0x500b58(0x21e),a0_0x500b58(0x24f)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1db)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1e6)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x26c)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1f6),a0_0x500b58(0x249)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x20c6a9,sessionId:_0x58f1b5})=>async _0x211884=>{const _0x1a680e=a0_0x500b58;return await _0x20c6a9['\x72\x75\x6e\x43\x6f\x64\x65'](_0x211884[_0x1a680e(0x1f6)],_0x211884[_0x1a680e(0x249)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x58f1b5,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x211884[_0x1a680e(0x25b)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63':{'\x6e\x61\x6d\x65':a0_0x500b58(0x1f5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x201),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x248)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1ee)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x500b58(0x25d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x223)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x252)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x409e91,sessionId:_0x51cd56})=>async _0x47e0c1=>{const _0x341bd2=a0_0x500b58;return await _0x409e91[_0x341bd2(0x264)](_0x47e0c1[_0x341bd2(0x252)],{'\x63\x77\x64':_0x47e0c1[_0x341bd2(0x268)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x47e0c1['\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73'],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x51cd56});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0x500b58(0x1f8),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x24a),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x500b58(0x1da)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1e7)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x2b49c7,sessionId:_0x38a393})=>async _0x5c0332=>{const _0x634751=a0_0x500b58;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x2b49c7[_0x634751(0x214)](_0x5c0332[_0x634751(0x1e7)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x38a393})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0x500b58(0x1fc),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1f7),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x500b58(0x1da)},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x46\x75\x6c\x6c\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x65\x6e\x74\x73\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1e7),'\x63\x6f\x6e\x74\x65\x6e\x74'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x52a1dd})=>async _0x7184b0=>{const _0x556f40=a0_0x500b58;return await _0x52a1dd[_0x556f40(0x20c)](_0x7184b0[_0x556f40(0x1e7)],_0x7184b0[_0x556f40(0x240)]),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1dd),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x500b58(0x1da)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x70\x61\x74\x68'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x54c555})=>async _0x49e1e0=>{return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x54c555['\x66\x73']['\x6c\x69\x73\x74'](_0x49e1e0['\x70\x61\x74\x68'])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0x500b58(0x21d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x26f),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x241)},'\x70\x61\x74\x68':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x6f\x20\x73\x65\x61\x72\x63\x68\x2e\x20\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x2e'},'\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73':{'\x74\x79\x70\x65':a0_0x500b58(0x25d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x211)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x253)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x4530c4})=>async _0x41b5a3=>{const _0x49a7fa=a0_0x500b58,_0x96f8cb={'\x6b\x51\x55\x6c\x65':function(_0x1649d8,_0x1a3cbd){return _0x1649d8>=_0x1a3cbd;}},_0x4f0694=[],_0x34c9ce=_0x41b5a3[_0x49a7fa(0x226)]??0x64;for await(const _0x44d0c5 of _0x4530c4[_0x49a7fa(0x1fe)](_0x41b5a3['\x70\x61\x74\x74\x65\x72\x6e'],{'\x63\x77\x64':_0x41b5a3[_0x49a7fa(0x1e7)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x34c9ce})){_0x4f0694[_0x49a7fa(0x229)](_0x44d0c5);if(_0x96f8cb[_0x49a7fa(0x258)](_0x4f0694[_0x49a7fa(0x1f2)],_0x34c9ce))break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x4f0694};}}},ALL_TOOL_SPECS=Object[a0_0x500b58(0x265)](TOOL_SPECS);function selectSpecs(_0xf2d321){const _0x4e0b88=a0_0x500b58;if(!_0xf2d321||_0xf2d321['\x6c\x65\x6e\x67\x74\x68']===0x0)return ALL_TOOL_SPECS;const _0x3c9ade=new Set(_0xf2d321);return Object[_0x4e0b88(0x236)](TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0x4b8d28=>_0x3c9ade[_0x4e0b88(0x22e)](_0x4b8d28))[_0x4e0b88(0x20a)](_0x11dc41=>TOOL_SPECS[_0x11dc41]);}function serializeToolResult(_0xda4fd5){const _0x25da85=a0_0x500b58;if(typeof _0xda4fd5==='\x73\x74\x72\x69\x6e\x67')return _0xda4fd5;try{return JSON[_0x25da85(0x245)](_0xda4fd5,null,0x2);}catch{return String(_0xda4fd5);}}const SDK_VERSION=((()=>{const _0x5a1687=a0_0x500b58,_0x4eed11={'\x54\x78\x51\x75\x7a':_0x5a1687(0x23c)};try{return createRequire(import.meta.url)(_0x4eed11['\x54\x78\x51\x75\x7a'])['\x76\x65\x72\x73\x69\x6f\x6e']??_0x5a1687(0x220);}catch{return'\x30\x2e\x30\x2e\x30';}})());async function createMcpServer(_0x23d484,_0x52966a={}){const _0x1ca65d=a0_0x500b58,_0xa8b559={'\x53\x47\x42\x6d\x58':_0x1ca65d(0x227),'\x59\x67\x48\x61\x64':function(_0x354a41,_0x3d3ae7){return _0x354a41 instanceof _0x3d3ae7;},'\x44\x54\x79\x75\x54':_0x1ca65d(0x242),'\x4c\x45\x66\x6b\x54':'\x63\x72\x65\x61\x74\x65\x4d\x63\x70\x53\x65\x72\x76\x65\x72\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x40\x6d\x6f\x64\x65\x6c\x63\x6f\x6e\x74\x65\x78\x74\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x2f\x73\x64\x6b\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x69\x74\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x40\x6d\x6f\x64\x65\x6c\x63\x6f\x6e\x74\x65\x78\x74\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x2f\x73\x64\x6b\x60\x2e'};let _0x173a75,_0x311f40;try{[_0x173a75,_0x311f40]=await Promise['\x61\x6c\x6c']([import(_0xa8b559[_0x1ca65d(0x250)]),import(_0x1ca65d(0x263))]);}catch{throw new Error(_0xa8b559['\x4c\x45\x66\x6b\x54']);}const _0x489add=selectSpecs(_0x52966a['\x61\x6c\x6c\x6f\x77']),_0x301bd8={'\x62\x6f\x78':_0x23d484,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x52966a[_0x1ca65d(0x259)]},_0x4a55f0=new Map();for(const _0x43346a of _0x489add)_0x4a55f0[_0x1ca65d(0x254)](_0x43346a[_0x1ca65d(0x24e)],_0x43346a[_0x1ca65d(0x1de)](_0x301bd8));const _0x541ef4=new _0x173a75[(_0x1ca65d(0x1e9))]({'\x6e\x61\x6d\x65':_0x52966a[_0x1ca65d(0x24e)]??_0x1ca65d(0x209),'\x76\x65\x72\x73\x69\x6f\x6e':_0x52966a['\x76\x65\x72\x73\x69\x6f\x6e']??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x541ef4[_0x1ca65d(0x203)](_0x311f40[_0x1ca65d(0x1f0)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x489add[_0x1ca65d(0x20a)](_0x2933fc=>({'\x6e\x61\x6d\x65':_0x2933fc[_0x1ca65d(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2933fc[_0x1ca65d(0x20e)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2933fc[_0x1ca65d(0x1ea)]}))})),_0x541ef4[_0x1ca65d(0x203)](_0x311f40['\x43\x61\x6c\x6c\x54\x6f\x6f\x6c\x52\x65\x71\x75\x65\x73\x74\x53\x63\x68\x65\x6d\x61'],async _0x1177e3=>{const _0x28e6b2=_0x1ca65d,_0x136671=_0x1177e3,_0x481d62=_0x4a55f0[_0x28e6b2(0x218)](_0x136671[_0x28e6b2(0x1d4)][_0x28e6b2(0x24e)]);if(!_0x481d62)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x28e6b2(0x227),'\x74\x65\x78\x74':_0x28e6b2(0x219)+_0x136671[_0x28e6b2(0x1d4)][_0x28e6b2(0x24e)]}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0xa8b559[_0x28e6b2(0x1e4)],'\x74\x65\x78\x74':serializeToolResult(await _0x481d62(_0x136671['\x70\x61\x72\x61\x6d\x73'][_0x28e6b2(0x23e)]??{}))}]};}catch(_0x34c1f4){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x28e6b2(0x227),'\x74\x65\x78\x74':_0xa8b559[_0x28e6b2(0x1d9)](_0x34c1f4,Error)?_0x34c1f4[_0x28e6b2(0x1eb)]:String(_0x34c1f4)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x541ef4,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x303da6=>_0x541ef4[_0x1ca65d(0x247)](_0x303da6),'\x63\x6c\x6f\x73\x65':()=>_0x541ef4[_0x1ca65d(0x1f1)]()};}function runCode(_0x372613,_0x25fbab,_0x576e87,_0x308e59){const _0x3c2a3c=a0_0x500b58;return _0x372613[_0x3c2a3c(0x20d)](_0x25fbab,_0x576e87,_0x308e59);}function anthropicTools(_0x4f6e40,_0x41885a={}){const _0x48db5d=a0_0x500b58,_0x28b254={'\x6e\x65\x4a\x6c\x45':function(_0x1d2115,_0x791314){return _0x1d2115(_0x791314);}},_0x2d41a1=selectSpecs(_0x41885a[_0x48db5d(0x22b)]),_0x318e67={'\x62\x6f\x78':_0x4f6e40,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x41885a['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']},_0x17059d=new Map();for(const _0x3b5865 of _0x2d41a1)_0x17059d[_0x48db5d(0x254)](_0x3b5865[_0x48db5d(0x24e)],_0x3b5865[_0x48db5d(0x1de)](_0x318e67));const _0x1dad2c=_0x2d41a1[_0x48db5d(0x20a)](_0x363109=>({'\x6e\x61\x6d\x65':_0x363109[_0x48db5d(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x363109[_0x48db5d(0x20e)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x363109[_0x48db5d(0x1ea)]}));async function _0x5172d0(_0x3b4912){const _0x3361df=_0x48db5d,_0xce5e6f=_0x17059d['\x67\x65\x74'](_0x3b4912[_0x3361df(0x24e)]);if(!_0xce5e6f)return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3b4912['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x3361df(0x219)+_0x3b4912[_0x3361df(0x24e)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x31bf3f=await _0xce5e6f(_0x3b4912[_0x3361df(0x1fa)]);return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3b4912['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':toAnthropicContent(_0x31bf3f)};}catch(_0x234e58){return{'\x74\x79\x70\x65':_0x3361df(0x228),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3b4912['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x234e58 instanceof Error?_0x234e58[_0x3361df(0x1eb)]:_0x28b254['\x6e\x65\x4a\x6c\x45'](String,_0x234e58),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x1068c6(_0x4f4aaa){const _0x43c60d=_0x48db5d,_0xa0d5b7=_0x4f4aaa[_0x43c60d(0x1e3)](_0x2d9f55=>typeof _0x2d9f55==='\x6f\x62\x6a\x65\x63\x74'&&_0x2d9f55!==null&&_0x2d9f55[_0x43c60d(0x233)]==='\x74\x6f\x6f\x6c\x5f\x75\x73\x65');return Promise[_0x43c60d(0x1dc)](_0xa0d5b7[_0x43c60d(0x20a)](_0x5172d0));}return{'\x74\x6f\x6f\x6c\x73':_0x1dad2c,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x5172d0,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x1068c6};}function toAnthropicContent(_0x2c6663){const _0x111645=a0_0x500b58,_0x4f1ba7={'\x4f\x71\x48\x48\x78':function(_0x55199f,_0x1d61d3){return _0x55199f(_0x1d61d3);},'\x70\x42\x43\x68\x7a':function(_0x3ee164,_0x3b6b98){return _0x3ee164(_0x3b6b98);},'\x4a\x75\x69\x46\x75':_0x111645(0x227)};if(!_0x4f1ba7[_0x111645(0x21c)](isCodeExecutionResultWithImages,_0x2c6663))return _0x4f1ba7['\x70\x42\x43\x68\x7a'](serializeToolResult,_0x2c6663);const _0x293f88=[],_0x6ee0e6={..._0x2c6663,'\x72\x65\x73\x75\x6c\x74\x73':_0x2c6663[_0x111645(0x20b)]['\x66\x69\x6c\x74\x65\x72'](_0x26f1c7=>_0x26f1c7['\x74\x79\x70\x65']!==_0x111645(0x1d6))};_0x293f88[_0x111645(0x229)]({'\x74\x79\x70\x65':_0x4f1ba7[_0x111645(0x206)],'\x74\x65\x78\x74':serializeToolResult(_0x6ee0e6)});for(const _0x5c9a8e of _0x2c6663[_0x111645(0x20b)])if(isImagePart(_0x5c9a8e))_0x293f88[_0x111645(0x229)]({'\x74\x79\x70\x65':_0x111645(0x1d6),'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x111645(0x1d8),'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0x5c9a8e['\x66\x6f\x72\x6d\x61\x74']),'\x64\x61\x74\x61':_0x5c9a8e[_0x111645(0x22c)]}});return _0x293f88;}function isImagePart(_0x5493a9){const _0x6d9acb=a0_0x500b58,_0x1fdd6b={'\x57\x50\x68\x52\x42':function(_0x5ba0c2,_0x3efeaf){return _0x5ba0c2===_0x3efeaf;},'\x52\x55\x53\x51\x46':_0x6d9acb(0x1d6)};return _0x1fdd6b['\x57\x50\x68\x52\x42'](_0x5493a9[_0x6d9acb(0x233)],_0x1fdd6b[_0x6d9acb(0x262)]);}function isCodeExecutionResultWithImages(_0x1842bf){const _0x563b9f=a0_0x500b58,_0x107442={'\x51\x42\x4a\x75\x6c':function(_0x9ad54a,_0x3e15d3){return _0x9ad54a!==_0x3e15d3;},'\x68\x55\x56\x76\x6a':_0x563b9f(0x1ec)};if(!_0x1842bf||_0x107442[_0x563b9f(0x238)](typeof _0x1842bf,_0x107442[_0x563b9f(0x1e0)]))return![];const _0x477e72=_0x1842bf[_0x563b9f(0x20b)];if(!Array[_0x563b9f(0x23f)](_0x477e72))return![];return _0x477e72[_0x563b9f(0x222)](_0x382d0a=>_0x382d0a&&typeof _0x382d0a==='\x6f\x62\x6a\x65\x63\x74'&&_0x382d0a[_0x563b9f(0x233)]===_0x563b9f(0x1d6));}function imageMediaType(_0x1cdaa8){const _0xaebf8c=a0_0x500b58,_0x436023={'\x6e\x72\x41\x4e\x59':_0xaebf8c(0x217),'\x58\x44\x43\x50\x57':'\x6a\x70\x65\x67','\x49\x75\x4d\x61\x57':_0xaebf8c(0x1ed)};switch(_0x1cdaa8){case'\x70\x6e\x67':return _0x436023['\x6e\x72\x41\x4e\x59'];case _0x436023[_0xaebf8c(0x1f9)]:return _0x436023[_0xaebf8c(0x235)];case _0xaebf8c(0x269):return _0xaebf8c(0x217);}}function a0_0x4878(){const _0x94c803=['\x6d\x4d\x44\x4b\x79\x4e\x76\x63\x76\x47','\x79\x77\x58\x53\x42\x33\x43','\x7a\x67\x66\x30\x79\x71','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x41\x67\x66\x5a','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x42\x77\x66\x5a\x44\x68\x6a\x48\x76\x67\x39\x56\x42\x68\x6d\x4f\x6b\x74\x4f\x47\x44\x67\x48\x4c\x69\x67\x62\x61\x42\x77\x66\x5a\x44\x68\x6a\x48\x6c\x32\x6e\x56\x43\x4d\x76\x47\x69\x68\x62\x48\x79\x32\x54\x48\x7a\x32\x75\x47\x41\x78\x6d\x47\x42\x4d\x39\x30\x69\x67\x4c\x55\x43\x33\x72\x48\x42\x67\x58\x4c\x7a\x63\x34\x47\x73\x77\x35\x5a\x44\x67\x66\x53\x42\x63\x62\x50\x44\x63\x62\x32\x41\x77\x65\x47\x79\x68\x62\x55\x43\x67\x30\x47\x79\x77\x72\x4b\x69\x65\x62\x54\x79\x78\x6e\x30\x43\x4d\x65\x56\x79\x32\x39\x59\x7a\x77\x61\x55','\x77\x68\x72\x6e\x44\x4c\x4f','\x6d\x74\x6a\x66\x71\x4d\x54\x65\x71\x78\x61','\x44\x68\x4c\x57\x7a\x71','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\x73\x78\x76\x6e\x79\x76\x43','\x41\x32\x76\x35\x43\x57','\x72\x78\x48\x4c\x79\x33\x76\x30\x7a\x73\x62\x4a\x42\x32\x72\x4c\x69\x67\x4c\x55\x69\x67\x65\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x44\x63\x62\x53\x79\x77\x35\x4e\x44\x77\x66\x4e\x7a\x73\x62\x52\x7a\x78\x6a\x55\x7a\x77\x57\x47\x41\x77\x35\x5a\x41\x77\x72\x4c\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x6c\x49\x62\x77\x79\x78\x6a\x50\x79\x77\x6a\x53\x7a\x78\x6d\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x63\x62\x48\x79\x33\x6a\x56\x43\x33\x6d\x47\x79\x32\x66\x53\x42\x68\x6d\x47\x44\x32\x4c\x30\x41\x63\x62\x30\x41\x67\x75\x47\x43\x32\x66\x54\x7a\x73\x62\x5a\x7a\x78\x6e\x5a\x41\x77\x39\x55\x6c\x49\x62\x73\x7a\x78\x72\x31\x43\x4d\x35\x5a\x69\x68\x6e\x30\x7a\x67\x39\x31\x44\x63\x57\x47\x43\x33\x72\x4b\x7a\x78\x6a\x59\x6c\x63\x62\x4c\x45\x67\x4c\x30\x69\x67\x6e\x56\x7a\x67\x75\x53\x69\x67\x66\x55\x7a\x63\x62\x48\x69\x68\x72\x35\x43\x67\x76\x4b\x69\x67\x62\x59\x7a\x78\x6e\x31\x42\x68\x72\x5a\x79\x63\x62\x48\x43\x4e\x6a\x48\x45\x73\x62\x4a\x42\x32\x35\x30\x79\x77\x4c\x55\x41\x77\x35\x4e\x69\x67\x31\x48\x44\x68\x62\x53\x42\x33\x72\x53\x41\x77\x69\x47\x7a\x4d\x4c\x4e\x44\x78\x6a\x4c\x43\x59\x61\x4f\x79\x4d\x66\x5a\x7a\x74\x79\x30\x69\x66\x62\x6f\x72\x59\x4b\x53\x69\x68\x62\x48\x42\x4d\x72\x48\x43\x59\x62\x65\x79\x78\x72\x48\x72\x4e\x6a\x48\x42\x77\x76\x5a\x6c\x63\x62\x6b\x75\x30\x39\x6f\x69\x68\x7a\x50\x79\x73\x62\x4b\x41\x78\x6e\x57\x42\x67\x66\x35\x6b\x63\x4b\x53\x69\x67\x39\x59\x69\x67\x76\x59\x43\x4d\x39\x59\x43\x59\x34\x47\x75\x68\x6a\x4c\x7a\x4d\x76\x59\x69\x68\x72\x4f\x41\x78\x6d\x47\x42\x33\x7a\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x32\x76\x34\x7a\x77\x6d\x47\x7a\x4d\x39\x59\x69\x67\x66\x55\x45\x73\x62\x4a\x42\x32\x72\x4c\x69\x68\x72\x4f\x79\x78\x71\x47\x42\x4d\x76\x4c\x7a\x68\x6d\x47\x43\x33\x72\x59\x44\x77\x6e\x30\x44\x78\x6a\x4c\x7a\x63\x62\x56\x44\x78\x72\x57\x44\x78\x71\x55','\x75\x75\x6a\x6b\x44\x77\x57','\x6d\x74\x61\x57\x6d\x64\x65\x33\x74\x4d\x7a\x59\x77\x4c\x44\x6f','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x74\x4e\x76\x54\x79\x4d\x76\x59\x69\x67\x39\x4d\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x7a\x78\x6d\x55\x69\x65\x76\x48\x79\x32\x47\x47\x41\x78\x6d\x47\x79\x4d\x4c\x53\x42\x67\x76\x4b\x69\x67\x4c\x55\x7a\x67\x76\x57\x7a\x77\x35\x4b\x7a\x77\x35\x30\x42\x68\x4b\x55','\x6c\x49\x34\x56\x6c\x49\x34\x56\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x35\x51\x43\x32\x39\x55','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x75\x4d\x76\x4e\x7a\x78\x47\x47\x43\x67\x66\x30\x44\x67\x76\x59\x42\x49\x34','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x5a\x7a\x78\x6a\x32\x7a\x78\x69\x56\x41\x77\x35\x4b\x7a\x78\x47\x55\x41\x4e\x6d','\x43\x33\x72\x48\x44\x68\x76\x5a','\x6f\x74\x65\x30\x6d\x5a\x76\x58\x71\x4d\x44\x35\x45\x4c\x4b','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x7a\x4d\x48\x49\x72\x65\x30','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x75\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x62\x53\x41\x77\x35\x4c\x6c\x47','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x75\x4d\x76\x48\x7a\x63\x62\x48\x69\x67\x7a\x50\x42\x67\x75\x47\x7a\x4e\x6a\x56\x42\x73\x62\x30\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x4d\x41\x77\x58\x4c\x43\x33\x4c\x5a\x44\x67\x76\x54\x6c\x49\x62\x73\x7a\x77\x58\x48\x44\x67\x4c\x32\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x78\x6e\x56\x42\x68\x7a\x4c\x69\x67\x7a\x59\x42\x32\x30\x47\x44\x67\x48\x4c\x69\x68\x44\x56\x43\x4d\x54\x5a\x43\x67\x66\x4a\x7a\x73\x62\x59\x42\x32\x39\x30\x6f\x59\x62\x48\x79\x4e\x6e\x56\x42\x68\x76\x30\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x77\x66\x4b\x69\x68\x72\x4f\x7a\x73\x62\x4a\x42\x32\x35\x30\x79\x77\x4c\x55\x7a\x78\x69\x47\x7a\x4d\x4c\x53\x7a\x78\x6e\x35\x43\x33\x72\x4c\x42\x73\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x53\x45\x73\x34','\x79\x4d\x39\x56\x42\x67\x76\x48\x42\x47','\x71\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x75\x47\x7a\x67\x76\x53\x7a\x78\x72\x50\x42\x4d\x43\x47\x43\x4d\x76\x54\x79\x77\x4c\x55\x41\x77\x35\x4e\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x76\x5a\x69\x67\x4c\x4d\x69\x67\x39\x55\x7a\x73\x62\x4d\x79\x77\x4c\x53\x43\x59\x34','\x6d\x5a\x75\x35\x6e\x4a\x43\x31\x6d\x65\x4c\x67\x7a\x75\x6a\x72\x44\x47','\x42\x4d\x66\x54\x7a\x71','\x79\x4d\x66\x5a\x41\x61','\x72\x66\x72\x35\x44\x76\x71','\x42\x78\x50\x78\x79\x77\x65','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x43\x32\x76\x30','\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\x73\x78\x66\x49\x44\x31\x4f','\x42\x67\x4c\x5a\x44\x61','\x41\x31\x66\x76\x42\x67\x75','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x75\x33\x62\x48\x44\x32\x34\x47\x79\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x56\x7a\x49\x62\x6f\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x4c\x43\x59\x62\x4d\x43\x4d\x39\x54\x69\x67\x65\x47\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x75\x53\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x4a\x42\x32\x39\x59\x7a\x67\x4c\x55\x79\x78\x72\x56\x43\x49\x62\x57\x42\x68\x76\x5a\x69\x65\x34\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x62\x5a\x41\x67\x66\x59\x41\x77\x35\x4e\x69\x67\x65\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x6c\x49\x62\x73\x7a\x78\x72\x31\x43\x4d\x35\x5a\x69\x68\x72\x4f\x7a\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x50\x7a\x63\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x41\x77\x72\x5a\x6c\x49\x62\x66\x79\x77\x6e\x4f\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x49\x62\x4f\x79\x78\x6d\x47\x41\x78\x72\x5a\x69\x67\x39\x33\x42\x49\x62\x57\x7a\x78\x6a\x5a\x41\x78\x6e\x30\x7a\x77\x35\x30\x69\x67\x6e\x56\x7a\x67\x75\x54\x7a\x78\x48\x4c\x79\x33\x76\x30\x41\x77\x39\x55\x69\x67\x54\x4c\x43\x4d\x35\x4c\x42\x64\x53\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x77\x75\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x69\x67\x4c\x5a\x69\x67\x31\x56\x44\x77\x35\x30\x7a\x77\x71\x47\x79\x77\x6e\x59\x42\x33\x6e\x5a\x69\x68\x72\x4f\x7a\x77\x30\x55\x69\x65\x6e\x70\x75\x31\x72\x74\x69\x66\x6e\x64\x71\x75\x58\x66\x69\x65\x58\x6a\x74\x4b\x76\x62\x75\x4b\x58\x7a\x69\x68\x44\x50\x44\x67\x47\x47\x79\x68\x44\x56\x43\x4d\x54\x4c\x43\x4e\x6e\x47\x6c\x49\x62\x76\x43\x32\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35\x69\x68\x44\x4f\x7a\x77\x34\x47\x7a\x67\x39\x55\x7a\x73\x34','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\x44\x32\x39\x59\x41\x32\x76\x59\x6c\x71','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x44\x4b\x72\x76\x72\x30\x75','\x79\x78\x6a\x59\x79\x78\x4b','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x6f\x74\x75\x32\x6e\x64\x43\x32\x44\x4e\x6e\x48\x77\x76\x76\x6e','\x75\x4c\x76\x74\x75\x75\x79','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x30\x45\x78\x62\x4c\x43\x59\x35\x51\x43\x57','\x7a\x78\x48\x4c\x79\x57','\x44\x4d\x66\x53\x44\x77\x76\x5a','\x6e\x4a\x6d\x57\x6f\x74\x75\x30\x43\x32\x54\x4d\x72\x67\x54\x78','\x42\x31\x72\x65\x75\x76\x6d','\x79\x33\x44\x4b','\x43\x33\x7a\x4e','\x42\x77\x66\x5a\x44\x68\x6a\x48\x72\x4d\x58\x4c\x7a\x78\x72\x75\x42\x32\x39\x53\x43\x59\x47\x50\x6f\x49\x62\x30\x41\x67\x75\x47\x79\x65\x62\x54\x79\x78\x6e\x30\x43\x4d\x65\x56\x79\x32\x39\x59\x7a\x77\x61\x47\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x62\x50\x43\x59\x62\x55\x42\x33\x71\x47\x41\x77\x35\x5a\x44\x67\x66\x53\x42\x67\x76\x4b\x6c\x49\x62\x6a\x42\x4e\x6e\x30\x79\x77\x58\x53\x69\x68\x7a\x50\x79\x73\x62\x47\x43\x67\x35\x57\x42\x73\x62\x48\x7a\x67\x71\x47\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c\x79\x63\x34','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x75\x67\x76\x59\x6c\x77\x6e\x48\x42\x67\x57\x47\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x34\x47\x6d\x63\x62\x4b\x41\x78\x6e\x48\x79\x4d\x58\x4c\x43\x59\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x43\x67\x66\x59\x43\x32\x75','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x75\x4d\x4c\x57\x7a\x33\x6a\x4c\x43\x63\x31\x5a\x44\x68\x4c\x53\x7a\x73\x62\x4a\x42\x32\x72\x4c\x69\x68\x6e\x4c\x79\x78\x6a\x4a\x41\x63\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x54\x79\x78\x72\x4a\x41\x67\x4c\x55\x7a\x59\x62\x53\x41\x77\x35\x4c\x43\x59\x62\x33\x41\x78\x72\x4f\x69\x68\x6e\x31\x43\x4e\x6a\x56\x44\x77\x35\x4b\x41\x77\x35\x4e\x69\x67\x6e\x56\x42\x4e\x72\x4c\x45\x68\x71\x55','\x43\x67\x66\x59\x79\x77\x31\x5a','\x44\x4d\x76\x59\x79\x32\x76\x53\x71\x77\x4c\x75\x42\x32\x39\x53\x43\x59\x47\x50\x6f\x49\x62\x30\x41\x67\x75\x47\x79\x67\x66\x50\x79\x63\x62\x57\x79\x77\x6e\x52\x79\x77\x44\x4c\x69\x67\x4c\x5a\x69\x67\x35\x56\x44\x63\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x7a\x77\x71\x55\x69\x65\x4c\x55\x43\x33\x72\x48\x42\x67\x57\x47\x41\x78\x71\x47\x44\x4d\x4c\x48\x69\x67\x62\x57\x42\x4e\x62\x54\x69\x67\x66\x4b\x7a\x63\x62\x48\x41\x77\x61\x47\x6b\x67\x66\x55\x7a\x63\x62\x57\x41\x77\x6e\x52\x69\x67\x66\x55\x69\x67\x62\x61\x79\x77\x4b\x54\x43\x32\x72\x52\x6c\x59\x50\x47\x69\x67\x31\x56\x7a\x67\x76\x53\x69\x67\x66\x4b\x79\x78\x62\x30\x7a\x78\x69\x50\x6c\x47','\x41\x77\x31\x48\x7a\x32\x75','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x77\x77\x44\x69\x79\x77\x71','\x43\x33\x72\x59\x41\x77\x35\x4e','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\x79\x77\x58\x53','\x74\x67\x4c\x5a\x44\x63\x62\x4c\x42\x4e\x72\x59\x41\x77\x76\x5a\x69\x67\x4c\x55\x69\x67\x65\x47\x7a\x67\x4c\x59\x7a\x77\x6e\x30\x42\x33\x6a\x35\x69\x68\x44\x50\x44\x67\x47\x47\x43\x32\x4c\x36\x7a\x73\x57\x47\x44\x68\x4c\x57\x7a\x73\x57\x47\x79\x77\x35\x4b\x69\x67\x31\x56\x7a\x67\x75\x55','\x42\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x7a\x4e\x7a\x41\x72\x67\x75','\x41\x66\x76\x77\x44\x4d\x4f','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x43\x68\x4c\x30\x41\x67\x39\x55','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x75\x30\x44\x63\x42\x76\x47','\x44\x76\x7a\x4c\x75\x30\x4b','\x75\x32\x39\x31\x43\x4d\x6e\x4c\x69\x67\x6e\x56\x7a\x67\x75\x47\x44\x67\x38\x47\x43\x4e\x76\x55\x6c\x49\x62\x6e\x44\x77\x58\x30\x41\x73\x31\x53\x41\x77\x35\x4c\x69\x68\x6e\x31\x43\x68\x62\x56\x43\x4e\x72\x4c\x7a\x63\x34','\x43\x67\x66\x30\x41\x61','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x43\x33\x76\x49\x43\x32\x76\x30\x69\x67\x39\x4d\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x41\x77\x72\x5a\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x43\x59\x62\x30\x42\x59\x62\x48\x42\x67\x57\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x34','\x75\x32\x76\x59\x44\x4d\x76\x59','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x41\x77\x31\x48\x7a\x32\x75\x56\x41\x4e\x62\x4c\x7a\x57','\x76\x32\x39\x59\x41\x32\x4c\x55\x7a\x59\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4e\x4b\x55\x69\x65\x39\x57\x44\x67\x4c\x56\x42\x4d\x66\x53\x6c\x47','\x7a\x33\x6e\x4e\x44\x77\x65','\x74\x67\x4c\x5a\x44\x66\x72\x56\x42\x32\x58\x5a\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x66\x6e\x4a\x41\x67\x76\x54\x79\x71','\x79\x32\x58\x56\x43\x32\x75','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x74\x76\x62\x51\x7a\x33\x69','\x44\x68\x66\x48\x41\x66\x75','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4c\x45\x67\x76\x4a','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\x76\x33\x6a\x50\x44\x67\x75\x47\x79\x73\x62\x4d\x41\x77\x58\x4c\x69\x67\x4c\x55\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x6c\x49\x62\x64\x43\x4d\x76\x48\x44\x67\x76\x5a\x69\x68\x62\x48\x43\x4d\x76\x55\x44\x63\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4d\x4c\x4c\x43\x59\x62\x48\x43\x59\x62\x55\x7a\x77\x76\x4b\x7a\x77\x71\x55\x69\x65\x39\x32\x7a\x78\x6a\x33\x43\x4d\x4c\x30\x7a\x78\x6d\x47\x7a\x78\x48\x50\x43\x33\x72\x50\x42\x4d\x43\x47\x7a\x4d\x4c\x53\x7a\x78\x6d\x55','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x7a\x77\x66\x4b','\x77\x65\x72\x64\x75\x66\x43','\x41\x77\x35\x57\x44\x78\x71','\x75\x68\x76\x49\x42\x67\x4c\x4a\x69\x68\x72\x4c\x42\x78\x62\x53\x79\x78\x72\x4c\x69\x68\x6e\x53\x44\x77\x43\x47\x42\x33\x69\x47\x41\x77\x71\x47\x6b\x67\x75\x55\x7a\x59\x34\x47\x6a\x33\x62\x35\x44\x67\x48\x56\x42\x49\x31\x4b\x79\x78\x72\x48\x6c\x78\x6e\x4a\x41\x77\x76\x55\x79\x32\x75\x4e\x6b\x73\x34','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x44\x67\x39\x56\x42\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x4b\x7a\x71','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x61\x4f\x42\x4d\x38\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x44\x63\x62\x5a\x44\x67\x66\x30\x7a\x73\x4b\x47\x41\x77\x34\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x55\x69\x66\x76\x5a\x7a\x73\x62\x4d\x42\x33\x69\x47\x42\x32\x35\x4c\x6c\x78\x6e\x4f\x42\x33\x71\x47\x44\x67\x66\x5a\x41\x33\x6d\x47\x42\x67\x4c\x52\x7a\x73\x61\x4e\x43\x67\x35\x57\x42\x73\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x6a\x59\x62\x56\x43\x49\x61\x4e\x42\x68\x6d\x4e\x6c\x49\x62\x67\x42\x33\x69\x47\x79\x32\x39\x4b\x7a\x73\x62\x30\x41\x67\x66\x30\x69\x68\x6e\x4f\x42\x33\x76\x53\x7a\x63\x62\x5a\x41\x67\x66\x59\x7a\x73\x62\x5a\x44\x67\x66\x30\x7a\x73\x62\x48\x79\x33\x6a\x56\x43\x33\x6d\x47\x79\x32\x66\x53\x42\x68\x6d\x53\x69\x68\x62\x59\x7a\x77\x7a\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x33\x6a\x31\x42\x4c\x39\x4a\x42\x32\x72\x4c\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x5a\x7a\x78\x6e\x5a\x41\x77\x39\x55\x73\x77\x71\x55','\x41\x77\x72\x5a','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x6d\x74\x61\x58\x6d\x64\x75\x59\x6f\x68\x44\x36\x71\x4b\x6e\x4d\x44\x57','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x73\x4e\x76\x50\x72\x4e\x75','\x42\x4d\x39\x4b\x7a\x71','\x41\x77\x58\x49\x76\x32\x4b','\x44\x67\x66\x55\x7a\x32\x58\x4c\x6c\x78\x6e\x48\x42\x4d\x72\x49\x42\x33\x47','\x42\x77\x66\x57','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x44\x33\x6a\x50\x44\x67\x75','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x74\x67\x4c\x5a\x44\x63\x62\x30\x41\x67\x75\x47\x7a\x4d\x58\x4c\x7a\x78\x71\x4e\x43\x59\x62\x54\x79\x77\x6e\x4f\x41\x77\x35\x4c\x43\x59\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x41\x78\x69\x47\x43\x67\x76\x59\x6c\x77\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x43\x33\x72\x48\x44\x67\x75\x47\x6b\x68\x6a\x31\x42\x4d\x35\x50\x42\x4d\x43\x47\x6c\x59\x62\x5a\x44\x67\x39\x57\x43\x67\x76\x4b\x69\x63\x38\x47\x7a\x4d\x66\x50\x42\x67\x76\x4b\x6b\x73\x62\x57\x42\x68\x76\x5a\x69\x67\x58\x48\x43\x33\x71\x54\x44\x78\x6e\x4c\x7a\x63\x62\x30\x41\x77\x31\x4c\x43\x33\x72\x48\x42\x78\x62\x5a\x6c\x47','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\x71\x32\x66\x57\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x64\x65\x57\x6d\x63\x34','\x77\x65\x31\x5a\x76\x4c\x4b','\x44\x4d\x76\x59\x79\x32\x76\x53\x71\x77\x4c\x67\x42\x67\x76\x4c\x44\x66\x72\x56\x42\x32\x58\x5a\x6b\x63\x4b\x36\x69\x68\x72\x4f\x7a\x73\x62\x47\x79\x77\x4c\x47\x69\x68\x62\x48\x79\x32\x54\x48\x7a\x32\x75\x47\x41\x78\x6d\x47\x42\x4d\x39\x30\x69\x67\x4c\x55\x43\x33\x72\x48\x42\x67\x58\x4c\x7a\x63\x34\x47\x73\x77\x35\x5a\x44\x67\x66\x53\x42\x63\x62\x32\x41\x77\x65\x47\x79\x68\x62\x55\x43\x67\x30\x47\x79\x77\x72\x4b\x69\x67\x66\x50\x79\x63\x34','\x43\x4d\x76\x48\x7a\x61','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x62\x56\x42\x49\x62\x48\x69\x67\x7a\x53\x7a\x77\x76\x30\x6a\x33\x6d\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x62\x50\x42\x49\x62\x57\x79\x78\x6a\x48\x42\x67\x58\x4c\x42\x63\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x68\x6d\x47\x44\x67\x38\x47\x79\x77\x58\x53\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x4e\x6d\x37\x69\x68\x62\x48\x43\x33\x6d\x47\x79\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x76\x5a\x79\x63\x62\x30\x42\x59\x62\x30\x79\x78\x6a\x4e\x7a\x78\x71\x47\x43\x33\x62\x4c\x79\x32\x4c\x4d\x41\x77\x6d\x47\x42\x32\x35\x4c\x43\x59\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x57\x7a\x78\x69\x54\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x73\x62\x37\x42\x32\x53\x53\x69\x68\x6a\x4c\x43\x33\x76\x53\x44\x64\x38\x53\x69\x67\x76\x59\x43\x4d\x39\x59\x70\x33\x30\x47\x7a\x77\x35\x30\x43\x4d\x4c\x4c\x43\x59\x34','\x75\x67\x76\x59\x6c\x77\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x41\x77\x31\x48\x7a\x32\x75\x56\x43\x67\x35\x4e','\x7a\x32\x76\x30','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x6d\x4a\x47\x31\x6d\x5a\x75\x5a\x74\x4b\x66\x62\x74\x65\x76\x67','\x6d\x74\x72\x56\x72\x32\x76\x34\x43\x75\x34','\x74\x33\x66\x69\x73\x68\x47','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\x44\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35','\x6d\x63\x34\x57\x6c\x4a\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x5a\x44\x67\x66\x30\x44\x78\x6d','\x43\x32\x39\x54\x7a\x71','\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x43\x4b\x58\x6f\x7a\x4d\x34','\x42\x77\x6e\x73\x42\x66\x65','\x42\x77\x66\x34\x78\x33\x6a\x4c\x43\x33\x76\x53\x44\x68\x6d','\x44\x67\x76\x34\x44\x61','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x43\x68\x76\x5a\x41\x61'];a0_0x4878=function(){return _0x94c803;};return a0_0x4878();}const FLEET_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x70\x61\x77\x6e':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x70\x61\x77\x6e','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x25a),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1fb)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0x500b58(0x25d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x23b)},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{},'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':!![],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x6d\x65\x74\x61\x64\x61\x74\x61\x20\x73\x74\x61\x6d\x70\x65\x64\x20\x6f\x6e\x20\x65\x76\x65\x72\x79\x20\x66\x6c\x65\x65\x74\x20\x6d\x65\x6d\x62\x65\x72\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1d7),'\x77\x6f\x72\x6b\x65\x72\x73'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x3d84e9})=>async _0x3bcccb=>{const _0x21c17c=a0_0x500b58,_0x2473c9=await _0x3d84e9[_0x21c17c(0x23a)]['\x63\x72\x65\x61\x74\x65\x57\x69\x74\x68\x43\x6f\x6f\x72\x64\x69\x6e\x61\x74\x6f\x72']({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0x3bcccb[_0x21c17c(0x1d7)]},'\x77\x6f\x72\x6b\x65\x72\x73':Array['\x66\x72\x6f\x6d']({'\x6c\x65\x6e\x67\x74\x68':_0x3bcccb[_0x21c17c(0x234)]},(_0x5877cb,_0x51e60c)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x21c17c(0x25c)+_0x51e60c})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x3bcccb[_0x21c17c(0x1fd)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x2473c9[_0x21c17c(0x26e)],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0x2473c9[_0x21c17c(0x202)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x215),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x500b58(0x1da)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x500b58(0x1da),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x248)},'\x6d\x61\x63\x68\x69\x6e\x65\x73':{'\x74\x79\x70\x65':a0_0x500b58(0x25f),'\x69\x74\x65\x6d\x73':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x1e8)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x500b58(0x25d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x216)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1e1),'\x63\x6f\x6d\x6d\x61\x6e\x64'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0xd216e6})=>async _0x3a01d8=>{const _0x429978=a0_0x500b58;return await(await _0xd216e6[_0x429978(0x23a)][_0x429978(0x257)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x3a01d8[_0x429978(0x1e1)]}))['\x64\x69\x73\x70\x61\x74\x63\x68\x45\x78\x65\x63'](_0x3a01d8[_0x429978(0x252)],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x3a01d8[_0x429978(0x255)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x3a01d8[_0x429978(0x25b)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':a0_0x500b58(0x221),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x20f),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x500b58(0x1ec),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1e1)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x35e528})=>async _0x5c119c=>{const _0x64d8ae=a0_0x500b58,_0x12b9bd=await _0x35e528[_0x64d8ae(0x23a)][_0x64d8ae(0x257)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x5c119c['\x66\x6c\x65\x65\x74\x5f\x69\x64']});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x12b9bd[_0x64d8ae(0x26e)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x12b9bd[_0x64d8ae(0x202)][_0x64d8ae(0x20a)](_0x24d6a7=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x24d6a7,'\x73\x74\x61\x74\x75\x73':_0x12b9bd[_0x64d8ae(0x218)](_0x24d6a7)[_0x64d8ae(0x243)]}))};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':a0_0x500b58(0x21f),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x44\x65\x6c\x65\x74\x65\x20\x74\x68\x65\x20\x66\x6c\x65\x65\x74\x20\x61\x6e\x64\x20\x65\x76\x65\x72\x79\x20\x6d\x61\x63\x68\x69\x6e\x65\x20\x69\x6e\x20\x69\x74\x2e\x20\x53\x74\x6f\x70\x73\x20\x62\x69\x6c\x6c\x69\x6e\x67\x20\x69\x6d\x6d\x65\x64\x69\x61\x74\x65\x6c\x79\x2e\x20\x43\x61\x6c\x6c\x20\x74\x68\x69\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x63\x61\x6d\x70\x61\x69\x67\x6e\x20\x69\x73\x20\x64\x6f\x6e\x65\x3b\x20\x6f\x72\x70\x68\x61\x6e\x65\x64\x20\x66\x6c\x65\x65\x74\x73\x20\x6b\x65\x65\x70\x20\x62\x75\x72\x6e\x69\x6e\x67\x20\x63\x72\x65\x64\x69\x74\x73\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x500b58(0x1da)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':a0_0x500b58(0x24b),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x500b58(0x24c)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x500b58(0x1e1)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x103675})=>async _0x56bf7e=>{const _0x5f1adc=a0_0x500b58;return await(await _0x103675[_0x5f1adc(0x23a)][_0x5f1adc(0x257)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x56bf7e[_0x5f1adc(0x1e1)]}))[_0x5f1adc(0x22f)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0x56bf7e['\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72']}),{'\x66\x6c\x65\x65\x74\x49\x64':_0x56bf7e[_0x5f1adc(0x1e1)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object['\x76\x61\x6c\x75\x65\x73'](FLEET_TOOL_SPECS);function selectFleetSpecs(_0xf80684){const _0x27775a=a0_0x500b58;if(!_0xf80684||_0xf80684[_0x27775a(0x1f2)]===0x0)return ALL_FLEET_TOOL_SPECS;const _0x33dbf9=new Set(_0xf80684);return Object[_0x27775a(0x236)](FLEET_TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0xd3b9c1=>_0x33dbf9['\x68\x61\x73'](_0xd3b9c1))[_0x27775a(0x20a)](_0x56f160=>FLEET_TOOL_SPECS[_0x56f160]);}function anthropicFleetTools(_0x2e8cee,_0x210789={}){const _0x437f20=a0_0x500b58,_0x4889c6={'\x69\x6c\x62\x57\x69':_0x437f20(0x228),'\x49\x71\x62\x77\x5a':function(_0x428e64,_0x3d1c9c){return _0x428e64(_0x3d1c9c);},'\x76\x44\x55\x47\x45':function(_0x326ab9,_0x9da7d4){return _0x326ab9 instanceof _0x9da7d4;},'\x6d\x63\x52\x6c\x51':function(_0x595fd9,_0x5bf9da){return _0x595fd9(_0x5bf9da);},'\x74\x71\x61\x68\x55':function(_0x33fb5b,_0x393e6a,_0x487a31){return _0x33fb5b(_0x393e6a,_0x487a31);}},_0x1e80c7=_0x4889c6[_0x437f20(0x225)](selectFleetSpecs,_0x210789[_0x437f20(0x22b)]),_0x49397f=_0x4889c6[_0x437f20(0x1f4)](buildFleetHandlers,_0x1e80c7,{'\x63\x6c\x69\x65\x6e\x74':_0x2e8cee});return{'\x74\x6f\x6f\x6c\x73':_0x1e80c7['\x6d\x61\x70'](_0x2a2b3e=>({'\x6e\x61\x6d\x65':_0x2a2b3e[_0x437f20(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2a2b3e[_0x437f20(0x20e)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x2a2b3e[_0x437f20(0x1ea)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x1288ee){const _0x584b2d=_0x437f20,_0x1af20c=_0x49397f[_0x584b2d(0x218)](_0x1288ee[_0x584b2d(0x24e)]);if(!_0x1af20c)return{'\x74\x79\x70\x65':_0x584b2d(0x228),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1288ee['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x584b2d(0x26b)+_0x1288ee[_0x584b2d(0x24e)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x2844d8=await _0x1af20c(_0x1288ee[_0x584b2d(0x1fa)]);return{'\x74\x79\x70\x65':_0x4889c6[_0x584b2d(0x208)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1288ee['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x4889c6[_0x584b2d(0x256)](serializeToolResult,_0x2844d8)};}catch(_0x4a8aa0){return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1288ee['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x4889c6[_0x584b2d(0x25e)](_0x4a8aa0,Error)?_0x4a8aa0[_0x584b2d(0x1eb)]:_0x4889c6['\x49\x71\x62\x77\x5a'](String,_0x4a8aa0),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x18e9c0,_0x39d1b4={}){const _0x344216=a0_0x500b58,_0xa347cc={'\x58\x4d\x73\x56\x59':function(_0x4694cc,_0x1b1a35){return _0x4694cc(_0x1b1a35);},'\x67\x73\x67\x75\x61':_0x344216(0x1ff),'\x6d\x7a\x57\x61\x61':function(_0x1079fb,_0x47896e){return _0x1079fb instanceof _0x47896e;}},_0x136b82=selectFleetSpecs(_0x39d1b4['\x61\x6c\x6c\x6f\x77']),_0x3ffe1a=buildFleetHandlers(_0x136b82,{'\x63\x6c\x69\x65\x6e\x74':_0x18e9c0});return{'\x74\x6f\x6f\x6c\x73':_0x136b82[_0x344216(0x20a)](_0xab7b70=>({'\x74\x79\x70\x65':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0xab7b70[_0x344216(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0xab7b70[_0x344216(0x20e)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0xab7b70[_0x344216(0x1ea)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x47ae57){const _0x2659f3=_0x344216,_0x59c88c=_0x3ffe1a['\x67\x65\x74'](_0x47ae57[_0x2659f3(0x260)][_0x2659f3(0x24e)]);if(!_0x59c88c)return{'\x72\x6f\x6c\x65':_0x2659f3(0x1ff),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x47ae57['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x47ae57[_0x2659f3(0x260)][_0x2659f3(0x24e)]})};let _0x125049={};try{const _0x5c3000=JSON[_0x2659f3(0x26d)](_0x47ae57[_0x2659f3(0x260)][_0x2659f3(0x23e)]||'\x7b\x7d');if(_0x5c3000&&typeof _0x5c3000==='\x6f\x62\x6a\x65\x63\x74')_0x125049=_0x5c3000;}catch{}try{const _0x2843a2=await _0xa347cc[_0x2659f3(0x212)](_0x59c88c,_0x125049);return{'\x72\x6f\x6c\x65':_0xa347cc[_0x2659f3(0x1ef)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x47ae57['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x2843a2)};}catch(_0x1fbd87){return{'\x72\x6f\x6c\x65':_0xa347cc[_0x2659f3(0x1ef)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x47ae57['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x2659f3(0x245)]({'\x65\x72\x72\x6f\x72':_0xa347cc[_0x2659f3(0x251)](_0x1fbd87,Error)?_0x1fbd87[_0x2659f3(0x1eb)]:_0xa347cc['\x58\x4d\x73\x56\x59'](String,_0x1fbd87)})};}}};}function a0_0x9341(_0x1d7603,_0x2a38ba){_0x1d7603=_0x1d7603-0x1d4;const _0x48784d=a0_0x4878();let _0x9341a7=_0x48784d[_0x1d7603];if(a0_0x9341['\x46\x72\x6a\x4c\x55\x53']===undefined){var _0x3c1753=function(_0x4a94bd){const _0x36eff0='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';let _0x1f4c97='',_0x4dab16='';for(let _0x3b0dc3=0x0,_0x5c1eb9,_0x516624,_0x5b30ea=0x0;_0x516624=_0x4a94bd['\x63\x68\x61\x72\x41\x74'](_0x5b30ea++);~_0x516624&&(_0x5c1eb9=_0x3b0dc3%0x4?_0x5c1eb9*0x40+_0x516624:_0x516624,_0x3b0dc3++%0x4)?_0x1f4c97+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x5c1eb9>>(-0x2*_0x3b0dc3&0x6)):0x0){_0x516624=_0x36eff0['\x69\x6e\x64\x65\x78\x4f\x66'](_0x516624);}for(let _0x400570=0x0,_0x1b578b=_0x1f4c97['\x6c\x65\x6e\x67\x74\x68'];_0x400570<_0x1b578b;_0x400570++){_0x4dab16+='\x25'+('\x30\x30'+_0x1f4c97['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x400570)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x4dab16);};a0_0x9341['\x66\x65\x74\x6f\x4f\x4e']=_0x3c1753,a0_0x9341['\x70\x4c\x41\x49\x69\x73']={},a0_0x9341['\x46\x72\x6a\x4c\x55\x53']=!![];}const _0x373f72=_0x48784d[0x0],_0x899dd7=_0x1d7603+_0x373f72,_0x3be88a=a0_0x9341['\x70\x4c\x41\x49\x69\x73'][_0x899dd7];return!_0x3be88a?(_0x9341a7=a0_0x9341['\x66\x65\x74\x6f\x4f\x4e'](_0x9341a7),a0_0x9341['\x70\x4c\x41\x49\x69\x73'][_0x899dd7]=_0x9341a7):_0x9341a7=_0x3be88a,_0x9341a7;}async function vercelAiFleetTools(_0x7ce100,_0x3b7f62={}){const _0x4ddc8f=a0_0x500b58,_0x46765c={'\x58\x74\x4d\x76\x5a':function(_0x32b79f,_0x6ac7fb){return _0x32b79f(_0x6ac7fb);},'\x6d\x46\x5a\x59\x71':_0x4ddc8f(0x213),'\x66\x68\x62\x44\x4d':function(_0x1abeec,_0x2f6a35,_0x249676){return _0x1abeec(_0x2f6a35,_0x249676);}};let _0x3f1213;try{_0x3f1213=await import('\x61\x69');}catch{throw new Error(_0x46765c['\x6d\x46\x5a\x59\x71']);}const _0x2f36bb=selectFleetSpecs(_0x3b7f62[_0x4ddc8f(0x22b)]),_0x466f73=_0x46765c[_0x4ddc8f(0x246)](buildFleetHandlers,_0x2f36bb,{'\x63\x6c\x69\x65\x6e\x74':_0x7ce100}),_0xe99737={};for(const _0x25395c of _0x2f36bb)_0xe99737[_0x25395c['\x6e\x61\x6d\x65']]=_0x3f1213[_0x4ddc8f(0x1ff)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x25395c[_0x4ddc8f(0x20e)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3f1213[_0x4ddc8f(0x205)](_0x25395c[_0x4ddc8f(0x1ea)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x35c79a=>{const _0x211599=_0x4ddc8f,_0x7339d=_0x466f73[_0x211599(0x218)](_0x25395c[_0x211599(0x24e)]);if(!_0x7339d)throw new Error('\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x25395c[_0x211599(0x24e)]);return serializeToolResult(await _0x46765c[_0x211599(0x231)](_0x7339d,_0x35c79a));}});return _0xe99737;}async function mastraFleetTools(_0x3a070a,_0xe3085c={}){const _0x56151=a0_0x500b58;let _0x5a6bbe;try{_0x5a6bbe=await import(_0x56151(0x23d));}catch{throw new Error(_0x56151(0x26a));}const _0x4d4018=selectFleetSpecs(_0xe3085c['\x61\x6c\x6c\x6f\x77']),_0x6c8e7d=buildFleetHandlers(_0x4d4018,{'\x63\x6c\x69\x65\x6e\x74':_0x3a070a}),_0x2bc463={};for(const _0x2fa2ae of _0x4d4018)_0x2bc463[_0x2fa2ae[_0x56151(0x24e)]]=_0x5a6bbe[_0x56151(0x210)]({'\x69\x64':_0x2fa2ae[_0x56151(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2fa2ae['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x5a6bbe[_0x56151(0x205)]?_0x5a6bbe[_0x56151(0x205)](_0x2fa2ae[_0x56151(0x1ea)]):_0x2fa2ae[_0x56151(0x1ea)],'\x65\x78\x65\x63\x75\x74\x65':async _0x4a150a=>{const _0x2d56cb=_0x56151,_0x46b318=_0x6c8e7d[_0x2d56cb(0x218)](_0x2fa2ae[_0x2d56cb(0x24e)]);if(!_0x46b318)throw new Error(_0x2d56cb(0x26b)+_0x2fa2ae[_0x2d56cb(0x24e)]);return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x46b318(_0x4a150a?.[_0x2d56cb(0x22d)]??{}))};}});return _0x2bc463;}function buildFleetHandlers(_0x41992c,_0x1e7f8c){const _0x437fed=a0_0x500b58,_0x21a8ef=new Map();for(const _0x384f83 of _0x41992c)_0x21a8ef[_0x437fed(0x254)](_0x384f83[_0x437fed(0x24e)],_0x384f83[_0x437fed(0x1de)](_0x1e7f8c));return _0x21a8ef;}async function mastraTools(_0x441c67,_0x59ba32={}){const _0x5bb735=a0_0x500b58,_0x58776c={'\x6f\x54\x44\x51\x53':_0x5bb735(0x23d),'\x72\x4c\x4e\x66\x6e':_0x5bb735(0x230),'\x6a\x4b\x4f\x64\x4e':function(_0x532f55,_0x8a0a7b){return _0x532f55(_0x8a0a7b);}};let _0x2b1aae;try{_0x2b1aae=await import(_0x58776c[_0x5bb735(0x267)]);}catch{throw new Error(_0x58776c[_0x5bb735(0x224)]);}const _0x233cda=_0x58776c['\x6a\x4b\x4f\x64\x4e'](selectSpecs,_0x59ba32[_0x5bb735(0x22b)]),_0x123838={'\x62\x6f\x78':_0x441c67,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x59ba32[_0x5bb735(0x259)]},_0x341ebe={};for(const _0x4f1a40 of _0x233cda){const _0x3ceaf0=_0x4f1a40['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x123838);_0x341ebe[_0x4f1a40[_0x5bb735(0x24e)]]=_0x2b1aae[_0x5bb735(0x210)]({'\x69\x64':_0x4f1a40['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4f1a40[_0x5bb735(0x20e)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2b1aae[_0x5bb735(0x205)]?_0x2b1aae[_0x5bb735(0x205)](_0x4f1a40[_0x5bb735(0x1ea)]):_0x4f1a40[_0x5bb735(0x1ea)],'\x65\x78\x65\x63\x75\x74\x65':async _0x213c13=>{const _0x6591c=_0x5bb735;return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x3ceaf0(_0x213c13?.[_0x6591c(0x22d)]??{}))};}});}return _0x341ebe;}function openaiTools(_0x4606f0,_0x5451eb={}){const _0x5827ce=a0_0x500b58,_0x1ceb63={'\x4d\x50\x6a\x67\x72':_0x5827ce(0x1ff),'\x69\x64\x44\x47\x4c':function(_0x2a53c0,_0x54a09b){return _0x2a53c0(_0x54a09b);},'\x41\x4b\x78\x47\x58':function(_0x2d63d2,_0x3de0f8){return _0x2d63d2(_0x3de0f8);},'\x66\x76\x5a\x44\x65':function(_0x5be97f,_0x40daab){return _0x5be97f instanceof _0x40daab;},'\x75\x56\x65\x53\x49':function(_0x26be44,_0x374dfa){return _0x26be44(_0x374dfa);}},_0x1b107d=_0x1ceb63[_0x5827ce(0x1e5)](selectSpecs,_0x5451eb[_0x5827ce(0x22b)]),_0x44d7f4={'\x62\x6f\x78':_0x4606f0,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x5451eb[_0x5827ce(0x259)]},_0x40e3d0=new Map();for(const _0x44bdc4 of _0x1b107d)_0x40e3d0['\x73\x65\x74'](_0x44bdc4[_0x5827ce(0x24e)],_0x44bdc4[_0x5827ce(0x1de)](_0x44d7f4));const _0xbe4c8e=_0x1b107d[_0x5827ce(0x20a)](_0x179c40=>({'\x74\x79\x70\x65':_0x5827ce(0x260),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x179c40[_0x5827ce(0x24e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x179c40[_0x5827ce(0x20e)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x179c40[_0x5827ce(0x1ea)]}}));function _0x2f514a(_0x429c4d){const _0x1c5f93=_0x5827ce;if(!_0x429c4d)return{};try{const _0x17e99d=JSON[_0x1c5f93(0x26d)](_0x429c4d);return typeof _0x17e99d==='\x6f\x62\x6a\x65\x63\x74'&&_0x17e99d!==null?_0x17e99d:{};}catch{return{};}}async function _0x5e662c(_0x280dcd){const _0x4ab097=_0x5827ce,_0x529492=_0x40e3d0[_0x4ab097(0x218)](_0x280dcd[_0x4ab097(0x260)][_0x4ab097(0x24e)]);if(!_0x529492)return{'\x72\x6f\x6c\x65':_0x1ceb63[_0x4ab097(0x1f3)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x280dcd['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x4ab097(0x245)]({'\x65\x72\x72\x6f\x72':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x280dcd[_0x4ab097(0x260)][_0x4ab097(0x24e)]})};try{const _0x4af562=await _0x1ceb63['\x69\x64\x44\x47\x4c'](_0x529492,_0x1ceb63['\x69\x64\x44\x47\x4c'](_0x2f514a,_0x280dcd[_0x4ab097(0x260)][_0x4ab097(0x23e)]));return{'\x72\x6f\x6c\x65':_0x1ceb63[_0x4ab097(0x1f3)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x280dcd['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x1ceb63['\x41\x4b\x78\x47\x58'](serializeToolResult,_0x4af562)};}catch(_0x4eb296){return{'\x72\x6f\x6c\x65':_0x4ab097(0x1ff),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x280dcd['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x1ceb63[_0x4ab097(0x1df)](_0x4eb296,Error)?_0x4eb296[_0x4ab097(0x1eb)]:String(_0x4eb296)})};}}async function _0x3e02fc(_0x45e287){const _0x50102b=_0x5827ce,_0x1ddd5e=_0x45e287['\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x73']??[];return Promise[_0x50102b(0x1dc)](_0x1ddd5e[_0x50102b(0x20a)](_0x5e662c));}return{'\x74\x6f\x6f\x6c\x73':_0xbe4c8e,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x5e662c,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x3e02fc};}async function vercelAiTools(_0x389df2,_0x5d9cb3={}){const _0x97093b=a0_0x500b58,_0x192bce={'\x4b\x42\x69\x75\x76':function(_0x856fdb,_0x48d1f8){return _0x856fdb(_0x48d1f8);}};let _0x3fc684;try{_0x3fc684=await import('\x61\x69');}catch{throw new Error(_0x97093b(0x1d5));}const _0x511494=_0x192bce['\x4b\x42\x69\x75\x76'](selectSpecs,_0x5d9cb3[_0x97093b(0x22b)]),_0x54fb74={'\x62\x6f\x78':_0x389df2,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x5d9cb3[_0x97093b(0x259)]},_0x9a18a7={};for(const _0x4c175f of _0x511494){const _0x339b1f=_0x4c175f[_0x97093b(0x1de)](_0x54fb74);_0x9a18a7[_0x4c175f[_0x97093b(0x24e)]]=_0x3fc684['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4c175f[_0x97093b(0x20e)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3fc684[_0x97093b(0x205)](_0x4c175f['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']),'\x65\x78\x65\x63\x75\x74\x65':async _0x208f19=>{return serializeToolResult(await _0x339b1f(_0x208f19));}});}return _0x9a18a7;}export{anthropicFleetTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};
1
+ const a0_0xc3bfaa=a0_0x5747;(function(_0x49e290,_0x259f14){const _0x180c5b=a0_0x5747,_0x26ea37=_0x49e290();while(!![]){try{const _0x1205d3=parseInt(_0x180c5b(0x224))/0x1+-parseInt(_0x180c5b(0x225))/0x2+-parseInt(_0x180c5b(0x19b))/0x3+-parseInt(_0x180c5b(0x190))/0x4+parseInt(_0x180c5b(0x1e7))/0x5+-parseInt(_0x180c5b(0x1cc))/0x6+parseInt(_0x180c5b(0x20f))/0x7;if(_0x1205d3===_0x259f14)break;else _0x26ea37['push'](_0x26ea37['shift']());}catch(_0x61030e){_0x26ea37['push'](_0x26ea37['shift']());}}}(a0_0x297a,0x3f49c));import{createRequire}from'\x6e\x6f\x64\x65\x3a\x6d\x6f\x64\x75\x6c\x65';const TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65':{'\x6e\x61\x6d\x65':a0_0xc3bfaa(0x1ed),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x21b),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x18d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x65\x6e\x75\x6d':[a0_0xc3bfaa(0x218),a0_0xc3bfaa(0x1b3),a0_0xc3bfaa(0x1cd),a0_0xc3bfaa(0x234)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1ad)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x211)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x50\x65\x72\x2d\x63\x61\x6c\x6c\x20\x74\x69\x6d\x65\x6f\x75\x74\x2e\x20\x30\x20\x64\x69\x73\x61\x62\x6c\x65\x73\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x36\x30\x30\x30\x30\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x6c\x61\x6e\x67\x75\x61\x67\x65',a0_0xc3bfaa(0x243)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x3e8fea,sessionId:_0x173142})=>async _0x18c396=>{const _0x43b1c0=a0_0xc3bfaa;return await _0x3e8fea['\x72\x75\x6e\x43\x6f\x64\x65'](_0x18c396[_0x43b1c0(0x21a)],_0x18c396['\x73\x6f\x75\x72\x63\x65'],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x173142,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x18c396[_0x43b1c0(0x1e8)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1fb),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x18d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x210)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x213)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1f6)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x63\x6f\x6d\x6d\x61\x6e\x64'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0xd010b2,sessionId:_0x3b8806})=>async _0x169dbc=>{const _0x9fcb69=a0_0xc3bfaa;return await _0xd010b2[_0x9fcb69(0x1ca)](_0x169dbc[_0x9fcb69(0x1f1)],{'\x63\x77\x64':_0x169dbc[_0x9fcb69(0x23f)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x169dbc[_0x9fcb69(0x1e8)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x3b8806});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0xc3bfaa(0x22f),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1bb),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x18d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xc3bfaa(0x1cb)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x562649,sessionId:_0x296f57})=>async _0x3b6851=>{const _0x55025a=a0_0xc3bfaa;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x562649[_0x55025a(0x248)](_0x3b6851['\x70\x61\x74\x68'],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x296f57})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0xc3bfaa(0x1ee),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x57\x72\x69\x74\x65\x20\x61\x20\x66\x69\x6c\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x2e\x20\x43\x72\x65\x61\x74\x65\x73\x20\x70\x61\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x73\x20\x6e\x65\x65\x64\x65\x64\x2e\x20\x4f\x76\x65\x72\x77\x72\x69\x74\x65\x73\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x66\x69\x6c\x65\x73\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x18d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae)},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x22c)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x70\x61\x74\x68',a0_0xc3bfaa(0x239)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x159230})=>async _0x4b7106=>{const _0xb51886=a0_0xc3bfaa;return await _0x159230[_0xb51886(0x1e5)](_0x4b7106[_0xb51886(0x1cb)],_0x4b7106[_0xb51886(0x239)]),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':a0_0xc3bfaa(0x1be),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4c\x69\x73\x74\x20\x65\x6e\x74\x72\x69\x65\x73\x20\x69\x6e\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x77\x69\x74\x68\x20\x73\x69\x7a\x65\x2c\x20\x74\x79\x70\x65\x2c\x20\x61\x6e\x64\x20\x6d\x6f\x64\x65\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x18d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xc3bfaa(0x1cb)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0xfa12de})=>async _0x225f3c=>{const _0x465421=a0_0xc3bfaa;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0xfa12de['\x66\x73'][_0x465421(0x1bd)](_0x225f3c[_0x465421(0x1cb)])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0xc3bfaa(0x233),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1fe),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x18d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x52\x65\x67\x65\x78\x20\x70\x61\x74\x74\x65\x72\x6e\x2e'},'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x6f\x20\x73\x65\x61\x72\x63\x68\x2e\x20\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x2e'},'\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x214),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x241)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xc3bfaa(0x235)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x47db9a})=>async _0x3c8f8c=>{const _0x26df15=a0_0xc3bfaa,_0x1a6f16=[],_0x3add48=_0x3c8f8c[_0x26df15(0x22e)]??0x64;for await(const _0x3d1bdd of _0x47db9a[_0x26df15(0x1af)](_0x3c8f8c['\x70\x61\x74\x74\x65\x72\x6e'],{'\x63\x77\x64':_0x3c8f8c[_0x26df15(0x1cb)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x3add48})){_0x1a6f16['\x70\x75\x73\x68'](_0x3d1bdd);if(_0x1a6f16[_0x26df15(0x21d)]>=_0x3add48)break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x1a6f16};}}},ALL_TOOL_SPECS=Object['\x76\x61\x6c\x75\x65\x73'](TOOL_SPECS);function selectSpecs(_0x3d3788){const _0x3633a7=a0_0xc3bfaa,_0x6ba1fd={'\x4d\x64\x6a\x66\x50':function(_0x3cebc4,_0x5a017b){return _0x3cebc4===_0x5a017b;}};if(!_0x3d3788||_0x6ba1fd[_0x3633a7(0x209)](_0x3d3788['\x6c\x65\x6e\x67\x74\x68'],0x0))return ALL_TOOL_SPECS;const _0x40b08e=new Set(_0x3d3788);return Object[_0x3633a7(0x1d3)](TOOL_SPECS)[_0x3633a7(0x1b8)](_0x1c7774=>_0x40b08e[_0x3633a7(0x1df)](_0x1c7774))[_0x3633a7(0x1f0)](_0x36bac0=>TOOL_SPECS[_0x36bac0]);}function serializeToolResult(_0x167eb2){const _0x4b46f=a0_0xc3bfaa,_0xab17fe={'\x6c\x65\x55\x4e\x69':function(_0x1de1a7,_0x33ecd0){return _0x1de1a7===_0x33ecd0;}};if(_0xab17fe['\x6c\x65\x55\x4e\x69'](typeof _0x167eb2,_0x4b46f(0x1ae)))return _0x167eb2;try{return JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](_0x167eb2,null,0x2);}catch{return String(_0x167eb2);}}function a0_0x297a(){const _0x165c46=['\x44\x68\x4c\x57\x7a\x71','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75','\x76\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x62\x50\x42\x49\x62\x54\x41\x77\x58\x53\x41\x78\x6e\x4c\x79\x32\x39\x55\x7a\x68\x6d\x55\x69\x65\x72\x4c\x7a\x4d\x66\x31\x42\x68\x71\x47\x6e\x4a\x61\x57\x6d\x64\x61\x55','\x44\x67\x76\x34\x44\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x5a\x43\x67\x66\x33\x42\x47','\x41\x67\x66\x5a','\x43\x67\x66\x59\x79\x77\x31\x5a','\x71\x4e\x6e\x5a\x45\x4b\x43','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\x41\x77\x31\x48\x7a\x32\x75','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x44\x33\x6a\x50\x44\x67\x75','\x71\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x75\x47\x7a\x67\x76\x53\x7a\x78\x72\x50\x42\x4d\x43\x47\x43\x4d\x76\x54\x79\x77\x4c\x55\x41\x77\x35\x4e\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x76\x5a\x69\x67\x4c\x4d\x69\x67\x39\x55\x7a\x73\x62\x4d\x79\x77\x4c\x53\x43\x59\x34','\x6e\x4a\x4b\x58\x6f\x64\x4b\x31\x42\x67\x4c\x79\x74\x4c\x6e\x4b','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\x71\x32\x66\x53\x42\x66\x72\x56\x42\x32\x58\x73\x7a\x78\x66\x31\x7a\x78\x6e\x30\x75\x32\x6e\x4f\x7a\x77\x31\x48','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x79\x77\x58\x53\x42\x33\x43','\x73\x75\x44\x55\x77\x75\x47','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x4b\x7a\x71','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\x79\x4d\x54\x58\x41\x75\x6d','\x42\x77\x66\x57','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x7a\x67\x4c\x5a\x43\x67\x58\x48\x45\x73\x62\x55\x79\x77\x31\x4c\x69\x67\x7a\x56\x43\x49\x62\x30\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x34','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x44\x67\x66\x55\x7a\x32\x58\x4c\x6c\x78\x6e\x48\x42\x4d\x72\x49\x42\x33\x47','\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x43\x33\x72\x48\x44\x68\x76\x5a','\x7a\x4d\x39\x59\x42\x77\x66\x30','\x41\x65\x54\x62\x75\x75\x69','\x44\x77\x35\x50\x44\x4d\x76\x59\x43\x32\x66\x53','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x61\x4f\x42\x4d\x38\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x44\x63\x62\x5a\x44\x67\x66\x30\x7a\x73\x4b\x47\x41\x77\x34\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x55\x69\x66\x76\x5a\x7a\x73\x62\x4d\x42\x33\x69\x47\x42\x32\x35\x4c\x6c\x78\x6e\x4f\x42\x33\x71\x47\x44\x67\x66\x5a\x41\x33\x6d\x47\x42\x67\x4c\x52\x7a\x73\x61\x4e\x43\x67\x35\x57\x42\x73\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x6a\x59\x62\x56\x43\x49\x61\x4e\x42\x68\x6d\x4e\x6c\x49\x62\x67\x42\x33\x69\x47\x79\x32\x39\x4b\x7a\x73\x62\x30\x41\x67\x66\x30\x69\x68\x6e\x4f\x42\x33\x76\x53\x7a\x63\x62\x5a\x41\x67\x66\x59\x7a\x73\x62\x5a\x44\x67\x66\x30\x7a\x73\x62\x48\x79\x33\x6a\x56\x43\x33\x6d\x47\x79\x32\x66\x53\x42\x68\x6d\x53\x69\x68\x62\x59\x7a\x77\x7a\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x33\x6a\x31\x42\x4c\x39\x4a\x42\x32\x72\x4c\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x5a\x7a\x78\x6e\x5a\x41\x77\x39\x55\x73\x77\x71\x55','\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x75\x4d\x4c\x57\x7a\x33\x6a\x4c\x43\x63\x31\x5a\x44\x68\x4c\x53\x7a\x73\x62\x4a\x42\x32\x72\x4c\x69\x68\x6e\x4c\x79\x78\x6a\x4a\x41\x63\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x54\x79\x78\x72\x4a\x41\x67\x4c\x55\x7a\x59\x62\x53\x41\x77\x35\x4c\x43\x59\x62\x33\x41\x78\x72\x4f\x69\x68\x6e\x31\x43\x4e\x6a\x56\x44\x77\x35\x4b\x41\x77\x35\x4e\x69\x67\x6e\x56\x42\x4e\x72\x4c\x45\x68\x71\x55','\x75\x33\x62\x48\x44\x32\x34\x47\x79\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x56\x7a\x49\x62\x6f\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x4c\x43\x59\x62\x4d\x43\x4d\x39\x54\x69\x67\x65\x47\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x75\x53\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x4a\x42\x32\x39\x59\x7a\x67\x4c\x55\x79\x78\x72\x56\x43\x49\x62\x57\x42\x68\x76\x5a\x69\x65\x34\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x62\x5a\x41\x67\x66\x59\x41\x77\x35\x4e\x69\x67\x65\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x6c\x49\x62\x73\x7a\x78\x72\x31\x43\x4d\x35\x5a\x69\x68\x72\x4f\x7a\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x50\x7a\x63\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x41\x77\x72\x5a\x6c\x49\x62\x66\x79\x77\x6e\x4f\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x49\x62\x4f\x79\x78\x6d\x47\x41\x78\x72\x5a\x69\x67\x39\x33\x42\x49\x62\x57\x7a\x78\x6a\x5a\x41\x78\x6e\x30\x7a\x77\x35\x30\x69\x67\x6e\x56\x7a\x67\x75\x54\x7a\x78\x48\x4c\x79\x33\x76\x30\x41\x77\x39\x55\x69\x67\x54\x4c\x43\x4d\x35\x4c\x42\x64\x53\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x77\x75\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x69\x67\x4c\x5a\x69\x67\x31\x56\x44\x77\x35\x30\x7a\x77\x71\x47\x79\x77\x6e\x59\x42\x33\x6e\x5a\x69\x68\x72\x4f\x7a\x77\x30\x55\x69\x65\x6e\x70\x75\x31\x72\x74\x69\x66\x6e\x64\x71\x75\x58\x66\x69\x65\x58\x6a\x74\x4b\x76\x62\x75\x4b\x58\x7a\x69\x68\x44\x50\x44\x67\x47\x47\x79\x68\x44\x56\x43\x4d\x54\x4c\x43\x4e\x6e\x47\x6c\x49\x62\x76\x43\x32\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35\x69\x68\x44\x4f\x7a\x77\x34\x47\x7a\x67\x39\x55\x7a\x73\x34','\x75\x67\x76\x59\x6c\x77\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x7a\x78\x48\x50\x44\x65\x6e\x56\x7a\x67\x75','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x6d\x63\x34\x57\x6c\x4a\x61','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\x43\x67\x66\x59\x43\x32\x75','\x75\x30\x7a\x6f\x42\x67\x30','\x44\x4c\x50\x4c\x42\x78\x79','\x74\x77\x72\x51\x7a\x4c\x61','\x75\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x61','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x77\x67\x66\x34\x73\x78\x69','\x6c\x49\x34\x56\x6c\x49\x34\x56\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x35\x51\x43\x32\x39\x55','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35','\x6d\x74\x61\x35\x6f\x64\x65\x31\x6d\x74\x7a\x55\x75\x78\x6a\x55\x73\x30\x57','\x75\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x62\x53\x41\x77\x35\x4c\x6c\x47','\x75\x32\x39\x31\x43\x4d\x6e\x4c\x69\x67\x6e\x56\x7a\x67\x75\x47\x44\x67\x38\x47\x43\x4e\x76\x55\x6c\x49\x62\x6e\x44\x77\x58\x30\x41\x73\x31\x53\x41\x77\x35\x4c\x69\x68\x6e\x31\x43\x68\x62\x56\x43\x4e\x72\x4c\x7a\x63\x34','\x43\x33\x72\x4b\x7a\x78\x6a\x59','\x76\x32\x39\x59\x41\x32\x4c\x55\x7a\x59\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4e\x4b\x55\x69\x65\x39\x57\x44\x67\x4c\x56\x42\x4d\x66\x53\x6c\x47','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x44\x32\x39\x59\x41\x32\x4c\x55\x7a\x59\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4e\x4b\x47\x7a\x4d\x39\x59\x69\x68\x72\x4f\x7a\x73\x62\x4a\x42\x32\x31\x54\x79\x77\x35\x4b\x6c\x47','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65\x47\x43\x33\x72\x48\x42\x78\x62\x4c\x7a\x63\x62\x56\x42\x49\x62\x4c\x44\x4d\x76\x59\x45\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x54\x7a\x77\x31\x49\x7a\x78\x69\x55','\x43\x68\x4c\x30\x41\x67\x39\x55','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\x72\x78\x48\x4c\x79\x33\x76\x30\x7a\x73\x62\x4a\x42\x32\x72\x4c\x69\x67\x4c\x55\x69\x67\x65\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x44\x63\x62\x53\x79\x77\x35\x4e\x44\x77\x66\x4e\x7a\x73\x62\x52\x7a\x78\x6a\x55\x7a\x77\x57\x47\x41\x77\x35\x5a\x41\x77\x72\x4c\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x6c\x49\x62\x77\x79\x78\x6a\x50\x79\x77\x6a\x53\x7a\x78\x6d\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x63\x62\x48\x79\x33\x6a\x56\x43\x33\x6d\x47\x79\x32\x66\x53\x42\x68\x6d\x47\x44\x32\x4c\x30\x41\x63\x62\x30\x41\x67\x75\x47\x43\x32\x66\x54\x7a\x73\x62\x5a\x7a\x78\x6e\x5a\x41\x77\x39\x55\x6c\x49\x62\x73\x7a\x78\x72\x31\x43\x4d\x35\x5a\x69\x68\x6e\x30\x7a\x67\x39\x31\x44\x63\x57\x47\x43\x33\x72\x4b\x7a\x78\x6a\x59\x6c\x63\x62\x4c\x45\x67\x4c\x30\x69\x67\x6e\x56\x7a\x67\x75\x53\x69\x67\x66\x55\x7a\x63\x62\x48\x69\x68\x72\x35\x43\x67\x76\x4b\x69\x67\x62\x59\x7a\x78\x6e\x31\x42\x68\x72\x5a\x79\x63\x62\x48\x43\x4e\x6a\x48\x45\x73\x62\x4a\x42\x32\x35\x30\x79\x77\x4c\x55\x41\x77\x35\x4e\x69\x67\x31\x48\x44\x68\x62\x53\x42\x33\x72\x53\x41\x77\x69\x47\x7a\x4d\x4c\x4e\x44\x78\x6a\x4c\x43\x59\x61\x4f\x79\x4d\x66\x5a\x7a\x74\x79\x30\x69\x66\x62\x6f\x72\x59\x4b\x53\x69\x68\x62\x48\x42\x4d\x72\x48\x43\x59\x62\x65\x79\x78\x72\x48\x72\x4e\x6a\x48\x42\x77\x76\x5a\x6c\x63\x62\x6b\x75\x30\x39\x6f\x69\x68\x7a\x50\x79\x73\x62\x4b\x41\x78\x6e\x57\x42\x67\x66\x35\x6b\x63\x4b\x53\x69\x67\x39\x59\x69\x67\x76\x59\x43\x4d\x39\x59\x43\x59\x34\x47\x75\x68\x6a\x4c\x7a\x4d\x76\x59\x69\x68\x72\x4f\x41\x78\x6d\x47\x42\x33\x7a\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x32\x76\x34\x7a\x77\x6d\x47\x7a\x4d\x39\x59\x69\x67\x66\x55\x45\x73\x62\x4a\x42\x32\x72\x4c\x69\x68\x72\x4f\x79\x78\x71\x47\x42\x4d\x76\x4c\x7a\x68\x6d\x47\x43\x33\x72\x59\x44\x77\x6e\x30\x44\x78\x6a\x4c\x7a\x63\x62\x56\x44\x78\x72\x57\x44\x78\x71\x55','\x79\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x76\x46\x42\x32\x35\x46\x7a\x78\x6a\x59\x42\x33\x69','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x77\x75\x48\x6c\x76\x33\x47','\x7a\x77\x35\x32\x41\x78\x6a\x56\x42\x4d\x31\x4c\x42\x4e\x71','\x74\x67\x4c\x5a\x44\x66\x72\x56\x42\x32\x58\x5a\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x66\x6e\x4a\x41\x67\x76\x54\x79\x71','\x71\x4c\x6a\x56\x44\x4d\x43','\x72\x67\x76\x4d\x41\x30\x47','\x76\x4c\x6a\x48\x45\x4c\x43','\x6d\x74\x61\x30\x6d\x5a\x48\x30\x44\x75\x66\x57\x42\x67\x38','\x6e\x4a\x43\x33\x6e\x5a\x71\x57\x43\x4c\x62\x57\x75\x68\x72\x6c','\x44\x67\x39\x56\x42\x61','\x74\x67\x4c\x5a\x44\x63\x62\x30\x41\x67\x75\x47\x7a\x4d\x58\x4c\x7a\x78\x71\x4e\x43\x59\x62\x54\x79\x77\x6e\x4f\x41\x77\x35\x4c\x43\x59\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x41\x78\x69\x47\x43\x67\x76\x59\x6c\x77\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x43\x33\x72\x48\x44\x67\x75\x47\x6b\x68\x6a\x31\x42\x4d\x35\x50\x42\x4d\x43\x47\x6c\x59\x62\x5a\x44\x67\x39\x57\x43\x67\x76\x4b\x69\x63\x38\x47\x7a\x4d\x66\x50\x42\x67\x76\x4b\x6b\x73\x62\x57\x42\x68\x76\x5a\x69\x67\x58\x48\x43\x33\x71\x54\x44\x78\x6e\x4c\x7a\x63\x62\x30\x41\x77\x31\x4c\x43\x33\x72\x48\x42\x78\x62\x5a\x6c\x47','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x76\x78\x48\x7a\x75\x31\x71','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x73\x76\x48\x7a\x75\x75\x69','\x72\x4e\x76\x53\x42\x63\x62\x4d\x41\x77\x58\x4c\x69\x67\x6e\x56\x42\x4e\x72\x4c\x42\x4e\x72\x5a\x6c\x47','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x53\x41\x77\x7a\x4c\x79\x33\x4c\x4a\x42\x67\x75\x47\x44\x67\x39\x56\x42\x64\x4f\x47','\x42\x77\x66\x34\x78\x33\x6a\x4c\x43\x33\x76\x53\x44\x68\x6d','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x7a\x77\x66\x4b','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x32\x4c\x30\x41\x65\x6e\x56\x42\x33\x6a\x4b\x41\x77\x35\x48\x44\x67\x39\x59','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x41\x78\x6e\x57\x79\x78\x72\x4a\x41\x61','\x44\x4d\x66\x53\x44\x77\x76\x5a','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x79\x4d\x66\x5a\x41\x61','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x72\x4c\x48\x56\x42\x76\x6d','\x72\x67\x76\x53\x7a\x78\x72\x4c\x69\x67\x65\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x4a\x43\x4d\x76\x48\x44\x67\x76\x4b\x69\x68\x44\x50\x44\x67\x47\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75\x55\x69\x66\x6e\x30\x42\x33\x62\x5a\x69\x67\x6a\x50\x42\x67\x58\x50\x42\x4d\x43\x47\x41\x77\x31\x54\x7a\x77\x72\x50\x79\x78\x72\x4c\x42\x68\x4b\x55\x69\x65\x6e\x48\x42\x67\x57\x47\x44\x67\x48\x50\x43\x59\x62\x56\x42\x4d\x6e\x4c\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x7a\x77\x71\x47\x44\x32\x39\x59\x41\x59\x62\x50\x43\x59\x62\x4d\x41\x77\x35\x50\x43\x32\x48\x4c\x7a\x64\x53\x47\x42\x33\x6a\x57\x41\x67\x66\x55\x7a\x77\x71\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x67\x76\x5a\x69\x67\x54\x4c\x7a\x78\x61\x47\x79\x77\x6e\x4a\x43\x4e\x76\x50\x42\x4d\x43\x47\x79\x32\x39\x5a\x44\x63\x34','\x43\x32\x48\x4b\x74\x68\x43','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x45\x4c\x76\x58\x77\x4b\x65','\x7a\x30\x44\x34\x76\x4d\x71','\x43\x33\x7a\x4e','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x41\x77\x31\x48\x7a\x32\x75\x56\x43\x67\x35\x4e','\x79\x33\x44\x4b','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x71\x32\x66\x57\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x64\x65\x57\x6d\x63\x34','\x41\x77\x35\x57\x44\x78\x71','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x50\x7a\x61','\x44\x4c\x44\x62\x41\x4c\x79','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x43\x68\x76\x5a\x41\x61','\x43\x4d\x76\x48\x7a\x61','\x43\x32\x48\x72\x75\x76\x43','\x7a\x67\x66\x30\x79\x71','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x41\x4d\x4c\x56\x72\x30\x79','\x73\x77\x71\x47\x43\x4d\x76\x30\x44\x78\x6a\x55\x7a\x77\x71\x47\x79\x4e\x4b\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75\x55','\x6f\x74\x6d\x33\x6e\x74\x47\x34\x42\x4d\x48\x64\x42\x65\x6a\x54','\x43\x68\x72\x70\x77\x4d\x71','\x77\x4d\x72\x4c\x71\x30\x30','\x43\x67\x35\x4e','\x42\x77\x66\x5a\x44\x68\x6a\x48\x76\x67\x39\x56\x42\x68\x6d\x4f\x6b\x74\x4f\x47\x44\x67\x48\x4c\x69\x67\x62\x61\x42\x77\x66\x5a\x44\x68\x6a\x48\x6c\x32\x6e\x56\x43\x4d\x76\x47\x69\x68\x62\x48\x79\x32\x54\x48\x7a\x32\x75\x47\x41\x78\x6d\x47\x42\x4d\x39\x30\x69\x67\x4c\x55\x43\x33\x72\x48\x42\x67\x58\x4c\x7a\x63\x34\x47\x73\x77\x35\x5a\x44\x67\x66\x53\x42\x63\x62\x50\x44\x63\x62\x32\x41\x77\x65\x47\x79\x68\x62\x55\x43\x67\x30\x47\x79\x77\x72\x4b\x69\x65\x62\x54\x79\x78\x6e\x30\x43\x4d\x65\x56\x79\x32\x39\x59\x7a\x77\x61\x55','\x42\x4d\x66\x54\x7a\x71','\x74\x4c\x4c\x66\x75\x4d\x47','\x44\x4d\x76\x59\x79\x32\x76\x53\x71\x77\x4c\x75\x42\x32\x39\x53\x43\x59\x47\x50\x6f\x49\x62\x30\x41\x67\x75\x47\x79\x67\x66\x50\x79\x63\x62\x57\x79\x77\x6e\x52\x79\x77\x44\x4c\x69\x67\x4c\x5a\x69\x67\x35\x56\x44\x63\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x7a\x77\x71\x55\x69\x65\x4c\x55\x43\x33\x72\x48\x42\x67\x57\x47\x41\x78\x71\x47\x44\x4d\x4c\x48\x69\x67\x62\x57\x42\x4e\x62\x54\x69\x67\x66\x4b\x7a\x63\x62\x48\x41\x77\x61\x47\x6b\x67\x66\x55\x7a\x63\x62\x57\x41\x77\x6e\x52\x69\x67\x66\x55\x69\x67\x62\x61\x79\x77\x4b\x54\x43\x32\x72\x52\x6c\x59\x50\x47\x69\x67\x31\x56\x7a\x67\x76\x53\x69\x67\x66\x4b\x79\x78\x62\x30\x7a\x78\x69\x50\x6c\x47','\x74\x4d\x58\x48\x76\x33\x43','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x7a\x4e\x6a\x56\x42\x71','\x6d\x74\x6d\x58\x6f\x74\x47\x34\x6d\x67\x44\x6a\x45\x78\x62\x72\x76\x47','\x7a\x67\x4c\x5a\x43\x67\x66\x30\x79\x32\x48\x66\x45\x67\x76\x4a','\x73\x31\x50\x4e\x41\x32\x69','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\x72\x78\x48\x4c\x79\x33\x76\x30\x7a\x73\x62\x48\x69\x68\x6e\x4f\x7a\x77\x58\x53\x69\x67\x6e\x56\x42\x77\x31\x48\x42\x4d\x71\x47\x41\x77\x34\x47\x79\x73\x62\x57\x43\x4d\x76\x32\x41\x77\x39\x31\x43\x32\x58\x35\x69\x67\x6e\x59\x7a\x77\x66\x30\x7a\x77\x71\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x48\x42\x4d\x71\x47\x43\x4d\x76\x30\x44\x78\x6a\x55\x69\x68\x54\x5a\x44\x67\x72\x56\x44\x78\x71\x53\x69\x68\x6e\x30\x7a\x67\x76\x59\x43\x49\x57\x47\x7a\x78\x48\x50\x44\x65\x6e\x56\x7a\x67\x76\x39\x6c\x49\x62\x75\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x54\x44\x78\x6e\x30\x69\x67\x76\x34\x41\x78\x6e\x30\x69\x6f\x6b\x61\x4c\x63\x62\x4a\x43\x4d\x76\x48\x44\x67\x75\x47\x41\x78\x71\x47\x7a\x4d\x4c\x59\x43\x33\x71\x47\x44\x32\x4c\x30\x41\x63\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x32\x6e\x59\x7a\x77\x66\x30\x7a\x73\x34','\x43\x32\x39\x54\x7a\x71','\x44\x32\x44\x50\x7a\x77\x30','\x41\x4e\x62\x4c\x7a\x57','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x44\x67\x39\x56\x42\x66\x39\x31\x43\x32\x75','\x43\x67\x6e\x66\x71\x77\x43','\x74\x4e\x76\x54\x79\x4d\x76\x59\x69\x67\x39\x4d\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x7a\x78\x6d\x55\x69\x65\x76\x48\x79\x32\x47\x47\x41\x78\x6d\x47\x79\x4d\x4c\x53\x42\x67\x76\x4b\x69\x67\x4c\x55\x7a\x67\x76\x57\x7a\x77\x35\x4b\x7a\x77\x35\x30\x42\x68\x4b\x55','\x7a\x32\x66\x73\x74\x75\x38','\x41\x4e\x6a\x6c\x75\x30\x38','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x44\x67\x39\x56\x42\x66\x39\x4a\x79\x77\x58\x53\x43\x57','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\x43\x33\x72\x59\x41\x77\x35\x4e','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x42\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x69\x67\x35\x56\x44\x63\x62\x4d\x42\x33\x76\x55\x7a\x63\x34\x47\x71\x33\x6a\x4c\x79\x78\x72\x4c\x69\x67\x4c\x30\x69\x67\x7a\x50\x43\x4e\x6e\x30\x69\x68\x44\x50\x44\x67\x47\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75\x55','\x77\x68\x72\x4f\x45\x76\x65','\x42\x4d\x39\x4b\x7a\x71','\x41\x77\x72\x5a','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x7a\x32\x76\x30','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x45\x4d\x39\x76\x75\x76\x71','\x75\x4d\x76\x48\x7a\x63\x62\x48\x69\x67\x7a\x50\x42\x67\x75\x47\x7a\x4e\x6a\x56\x42\x73\x62\x30\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x4d\x41\x77\x58\x4c\x43\x33\x4c\x5a\x44\x67\x76\x54\x6c\x49\x62\x73\x7a\x77\x58\x48\x44\x67\x4c\x32\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x78\x6e\x56\x42\x68\x7a\x4c\x69\x67\x7a\x59\x42\x32\x30\x47\x44\x67\x48\x4c\x69\x68\x44\x56\x43\x4d\x54\x5a\x43\x67\x66\x4a\x7a\x73\x62\x59\x42\x32\x39\x30\x6f\x59\x62\x48\x79\x4e\x6e\x56\x42\x68\x76\x30\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x77\x66\x4b\x69\x68\x72\x4f\x7a\x73\x62\x4a\x42\x32\x35\x30\x79\x77\x4c\x55\x7a\x78\x69\x47\x7a\x4d\x4c\x53\x7a\x78\x6e\x35\x43\x33\x72\x4c\x42\x73\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x53\x45\x73\x34','\x71\x33\x6a\x4c\x79\x78\x72\x4c\x69\x67\x66\x55\x69\x67\x4c\x5a\x42\x32\x58\x48\x44\x67\x76\x4b\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x47\x7a\x77\x35\x32\x41\x78\x6a\x56\x42\x4d\x31\x4c\x42\x4e\x71\x47\x79\x77\x35\x4b\x69\x68\x6a\x4c\x44\x68\x76\x59\x42\x49\x62\x50\x44\x68\x6d\x47\x41\x77\x71\x47\x7a\x4d\x39\x59\x69\x68\x76\x5a\x7a\x73\x62\x33\x41\x78\x72\x4f\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x46\x43\x4e\x76\x55\x78\x32\x6e\x56\x42\x77\x31\x48\x42\x4d\x71\x55\x69\x66\x76\x5a\x7a\x73\x62\x30\x41\x67\x4c\x5a\x69\x68\x44\x4f\x7a\x77\x34\x47\x44\x67\x48\x4c\x69\x68\x76\x5a\x7a\x78\x69\x47\x42\x4d\x76\x4c\x7a\x68\x6d\x47\x79\x32\x39\x4b\x7a\x73\x62\x4c\x45\x67\x76\x4a\x44\x78\x72\x4c\x7a\x63\x57\x47\x7a\x4d\x4c\x53\x7a\x78\x6d\x47\x79\x77\x35\x48\x42\x68\x4c\x36\x7a\x77\x71\x53\x69\x67\x39\x59\x69\x67\x6e\x56\x42\x77\x31\x48\x42\x4d\x72\x5a\x69\x68\x6a\x31\x42\x49\x62\x50\x42\x49\x62\x48\x69\x68\x6e\x4c\x79\x33\x76\x59\x7a\x73\x62\x4c\x42\x4e\x7a\x50\x43\x4d\x39\x55\x42\x77\x76\x55\x44\x63\x34\x47\x76\x67\x48\x4c\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x47\x71\x4b\x4c\x6d\x74\x66\x6d\x47\x44\x77\x35\x30\x41\x77\x57\x47\x7a\x67\x76\x5a\x44\x68\x6a\x56\x45\x77\x76\x4b\x69\x6f\x6b\x61\x4c\x63\x62\x4a\x79\x77\x58\x53\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x46\x7a\x67\x76\x5a\x44\x68\x6a\x56\x45\x73\x62\x33\x41\x67\x76\x55\x69\x68\x72\x4f\x7a\x73\x62\x33\x42\x33\x6a\x52\x69\x67\x4c\x5a\x69\x67\x72\x56\x42\x4d\x75\x55','\x42\x67\x4c\x5a\x44\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x53\x41\x78\x6e\x30','\x43\x32\x76\x30','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x43\x33\x76\x49\x43\x32\x76\x30\x69\x67\x39\x4d\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x41\x77\x72\x5a\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x43\x59\x62\x30\x42\x59\x62\x48\x42\x67\x57\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x34','\x75\x4b\x44\x4a\x76\x68\x71','\x73\x30\x35\x55\x76\x4c\x6d','\x71\x4c\x76\x4e\x7a\x4b\x47','\x45\x4c\x72\x72\x77\x67\x79','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x72\x67\x76\x53\x7a\x78\x72\x4c\x69\x68\x72\x4f\x7a\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x48\x42\x4d\x71\x47\x7a\x78\x7a\x4c\x43\x4e\x4b\x47\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x73\x62\x50\x42\x49\x62\x50\x44\x63\x34\x47\x75\x33\x72\x56\x43\x68\x6d\x47\x79\x4d\x4c\x53\x42\x67\x4c\x55\x7a\x59\x62\x50\x42\x77\x31\x4c\x7a\x67\x4c\x48\x44\x67\x76\x53\x45\x73\x34\x47\x71\x32\x66\x53\x42\x63\x62\x30\x41\x67\x4c\x5a\x69\x68\x44\x4f\x7a\x77\x34\x47\x44\x67\x48\x4c\x69\x67\x6e\x48\x42\x78\x62\x48\x41\x77\x44\x55\x69\x67\x4c\x5a\x69\x67\x72\x56\x42\x4d\x75\x37\x69\x67\x39\x59\x43\x67\x48\x48\x42\x4d\x76\x4b\x69\x67\x7a\x53\x7a\x77\x76\x30\x43\x59\x62\x52\x7a\x77\x76\x57\x69\x67\x6a\x31\x43\x4d\x35\x50\x42\x4d\x43\x47\x79\x33\x6a\x4c\x7a\x67\x4c\x30\x43\x59\x34','\x79\x77\x58\x53','\x7a\x4b\x4c\x6a\x45\x4c\x75','\x79\x32\x58\x56\x43\x32\x75','\x7a\x78\x48\x4c\x79\x57','\x43\x67\x66\x30\x41\x61','\x6d\x4a\x79\x33\x6d\x64\x4b\x57\x6d\x68\x48\x34\x76\x65\x6a\x72\x74\x57','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\x44\x61','\x77\x4b\x7a\x6d\x74\x76\x4f','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x5a\x7a\x78\x6a\x32\x7a\x78\x69\x56\x41\x77\x35\x4b\x7a\x78\x47\x55\x41\x4e\x6d','\x74\x68\x6a\x56\x45\x77\x53','\x44\x32\x39\x59\x41\x32\x76\x59\x6c\x71','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x41\x32\x76\x35\x43\x57','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x74\x77\x6e\x57\x75\x32\x76\x59\x44\x4d\x76\x59\x6b\x63\x4b\x36\x69\x68\x72\x4f\x7a\x73\x62\x47\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x32\x61\x47\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x62\x50\x43\x59\x62\x55\x42\x33\x71\x47\x41\x77\x35\x5a\x44\x67\x66\x53\x42\x67\x76\x4b\x6c\x49\x62\x6a\x42\x4e\x6e\x30\x79\x77\x58\x53\x69\x67\x4c\x30\x69\x68\x7a\x50\x79\x73\x62\x47\x43\x67\x35\x57\x42\x73\x62\x48\x7a\x67\x71\x47\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x32\x61\x55','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x5a\x44\x67\x66\x30\x44\x78\x6d','\x73\x66\x62\x4c\x44\x32\x71','\x43\x33\x72\x4b\x42\x33\x76\x30','\x79\x4d\x39\x56\x42\x67\x76\x48\x42\x47','\x77\x4d\x31\x72\x72\x4e\x43'];a0_0x297a=function(){return _0x165c46;};return a0_0x297a();}const SDK_VERSION=((()=>{const _0x323d76=a0_0xc3bfaa,_0x4c48cc={'\x4b\x5a\x67\x6b\x62':_0x323d76(0x20d)};try{return createRequire(import.meta.url)(_0x4c48cc[_0x323d76(0x19d)])[_0x323d76(0x1fc)]??'\x30\x2e\x30\x2e\x30';}catch{return _0x323d76(0x204);}})());async function createMcpServer(_0x338165,_0x50709c={}){const _0x3a1382=a0_0xc3bfaa,_0x2bf7d0={'\x68\x4b\x41\x51\x42':_0x3a1382(0x1dd),'\x52\x47\x63\x54\x74':function(_0x3d7eed,_0x145898){return _0x3d7eed instanceof _0x145898;},'\x77\x67\x69\x65\x6d':_0x3a1382(0x1cf),'\x56\x52\x61\x7a\x57':'\x40\x6d\x6f\x64\x65\x6c\x63\x6f\x6e\x74\x65\x78\x74\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x2f\x73\x64\x6b\x2f\x74\x79\x70\x65\x73\x2e\x6a\x73','\x6d\x6d\x43\x6e\x78':_0x3a1382(0x1d4)};let _0x1618bc,_0x1d6a51;try{[_0x1618bc,_0x1d6a51]=await Promise['\x61\x6c\x6c']([import(_0x2bf7d0[_0x3a1382(0x1a1)]),import(_0x2bf7d0[_0x3a1382(0x223)])]);}catch{throw new Error(_0x2bf7d0['\x6d\x6d\x43\x6e\x78']);}const _0x4a643e=selectSpecs(_0x50709c[_0x3a1382(0x1eb)]),_0x3f2a19={'\x62\x6f\x78':_0x338165,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x50709c[_0x3a1382(0x1ac)]},_0x2fd08a=new Map();for(const _0x5e9201 of _0x4a643e)_0x2fd08a['\x73\x65\x74'](_0x5e9201['\x6e\x61\x6d\x65'],_0x5e9201['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x3f2a19));const _0x93057b=new _0x1618bc['\x53\x65\x72\x76\x65\x72']({'\x6e\x61\x6d\x65':_0x50709c[_0x3a1382(0x195)]??_0x3a1382(0x1f5),'\x76\x65\x72\x73\x69\x6f\x6e':_0x50709c[_0x3a1382(0x1fc)]??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x93057b[_0x3a1382(0x1e4)](_0x1d6a51[_0x3a1382(0x220)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x4a643e[_0x3a1382(0x1f0)](_0x216a7a=>({'\x6e\x61\x6d\x65':_0x216a7a[_0x3a1382(0x195)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x216a7a['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x216a7a[_0x3a1382(0x228)]}))})),_0x93057b[_0x3a1382(0x1e4)](_0x1d6a51[_0x3a1382(0x1e9)],async _0x736b1b=>{const _0xbc634=_0x3a1382,_0x4969c6=_0x736b1b,_0xd84de6=_0x2fd08a[_0xbc634(0x1b6)](_0x4969c6[_0xbc634(0x1e0)][_0xbc634(0x195)]);if(!_0xd84de6)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':'\x74\x65\x78\x74','\x74\x65\x78\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x4969c6[_0xbc634(0x1e0)][_0xbc634(0x195)]}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x2bf7d0[_0xbc634(0x1f9)],'\x74\x65\x78\x74':serializeToolResult(await _0xd84de6(_0x4969c6['\x70\x61\x72\x61\x6d\x73']['\x61\x72\x67\x75\x6d\x65\x6e\x74\x73']??{}))}]};}catch(_0x56e4eb){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0xbc634(0x1dd),'\x74\x65\x78\x74':_0x2bf7d0[_0xbc634(0x1c1)](_0x56e4eb,Error)?_0x56e4eb['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x56e4eb)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x93057b,'\x63\x6f\x6e\x6e\x65\x63\x74':_0xe4010c=>_0x93057b[_0x3a1382(0x1a3)](_0xe4010c),'\x63\x6c\x6f\x73\x65':()=>_0x93057b[_0x3a1382(0x1c9)]()};}function runCode(_0x1b6380,_0x288aec,_0x112649,_0x23f399){const _0xa3589b=a0_0xc3bfaa;return _0x1b6380[_0xa3589b(0x246)](_0x288aec,_0x112649,_0x23f399);}function anthropicTools(_0x55b7be,_0xdeb6b6={}){const _0x27943e=a0_0xc3bfaa,_0x25cc28={'\x5a\x64\x65\x43\x4d':function(_0x35951d,_0x38abde){return _0x35951d(_0x38abde);},'\x4e\x6c\x61\x57\x77':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x48\x4e\x75\x70\x50':function(_0x5b756d,_0x4e5dd1){return _0x5b756d(_0x4e5dd1);},'\x53\x46\x4e\x6c\x6d':function(_0x1fea54,_0x44cc5b){return _0x1fea54(_0x44cc5b);}},_0x5c470f=_0x25cc28[_0x27943e(0x207)](selectSpecs,_0xdeb6b6[_0x27943e(0x1eb)]),_0x1426f6={'\x62\x6f\x78':_0x55b7be,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0xdeb6b6[_0x27943e(0x1ac)]},_0x249c0d=new Map();for(const _0x3dead0 of _0x5c470f)_0x249c0d[_0x27943e(0x1bf)](_0x3dead0[_0x27943e(0x195)],_0x3dead0['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x1426f6));const _0x20fb82=_0x5c470f['\x6d\x61\x70'](_0x5513c7=>({'\x6e\x61\x6d\x65':_0x5513c7[_0x27943e(0x195)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x5513c7['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x5513c7['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}));async function _0x369904(_0x2c9c0f){const _0x17d52d=_0x27943e,_0x590d8c=_0x249c0d[_0x17d52d(0x1b6)](_0x2c9c0f[_0x17d52d(0x195)]);if(!_0x590d8c)return{'\x74\x79\x70\x65':_0x17d52d(0x1ab),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x2c9c0f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x17d52d(0x219)+_0x2c9c0f[_0x17d52d(0x195)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x31a168=await _0x25cc28[_0x17d52d(0x192)](_0x590d8c,_0x2c9c0f[_0x17d52d(0x242)]);return{'\x74\x79\x70\x65':_0x17d52d(0x1ab),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x2c9c0f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x25cc28[_0x17d52d(0x192)](toAnthropicContent,_0x31a168)};}catch(_0x338cf7){return{'\x74\x79\x70\x65':_0x25cc28[_0x17d52d(0x198)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x2c9c0f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x338cf7 instanceof Error?_0x338cf7[_0x17d52d(0x1a9)]:_0x25cc28['\x48\x4e\x75\x70\x50'](String,_0x338cf7),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x46e94e(_0x13a118){const _0x12f9ae=_0x27943e,_0x5f13f7=_0x13a118['\x66\x69\x6c\x74\x65\x72'](_0x20c240=>typeof _0x20c240==='\x6f\x62\x6a\x65\x63\x74'&&_0x20c240!==null&&_0x20c240[_0x12f9ae(0x1da)]===_0x12f9ae(0x1a4));return Promise[_0x12f9ae(0x1c7)](_0x5f13f7[_0x12f9ae(0x1f0)](_0x369904));}return{'\x74\x6f\x6f\x6c\x73':_0x20fb82,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x369904,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x46e94e};}function toAnthropicContent(_0x4b629f){const _0x1edb06=a0_0xc3bfaa,_0x5f2e78={'\x70\x74\x4f\x5a\x64':function(_0x48f09b,_0xe3fed6){return _0x48f09b(_0xe3fed6);},'\x6a\x72\x4b\x53\x4f':_0x1edb06(0x1fd)};if(!isCodeExecutionResultWithImages(_0x4b629f))return serializeToolResult(_0x4b629f);const _0x84087c=[],_0x16ec61={..._0x4b629f,'\x72\x65\x73\x75\x6c\x74\x73':_0x4b629f[_0x1edb06(0x22a)]['\x66\x69\x6c\x74\x65\x72'](_0xe72adf=>_0xe72adf['\x74\x79\x70\x65']!==_0x1edb06(0x1e3))};_0x84087c[_0x1edb06(0x247)]({'\x74\x79\x70\x65':_0x1edb06(0x1dd),'\x74\x65\x78\x74':_0x5f2e78[_0x1edb06(0x191)](serializeToolResult,_0x16ec61)});for(const _0xe3a860 of _0x4b629f['\x72\x65\x73\x75\x6c\x74\x73'])if(isImagePart(_0xe3a860))_0x84087c['\x70\x75\x73\x68']({'\x74\x79\x70\x65':_0x1edb06(0x1e3),'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x5f2e78[_0x1edb06(0x1a8)],'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0xe3a860[_0x1edb06(0x1f8)]),'\x64\x61\x74\x61':_0xe3a860[_0x1edb06(0x24a)]}});return _0x84087c;}function isImagePart(_0x521edc){const _0x1e4106=a0_0xc3bfaa,_0x1811e8={'\x6a\x69\x6f\x47\x46':function(_0x15a140,_0x1a03bc){return _0x15a140===_0x1a03bc;}};return _0x1811e8[_0x1e4106(0x18e)](_0x521edc[_0x1e4106(0x1da)],_0x1e4106(0x1e3));}function isCodeExecutionResultWithImages(_0x260dc9){const _0x22ff1f=a0_0xc3bfaa,_0x3bd864={'\x4b\x4e\x6e\x56\x53':function(_0x25d367,_0x48fd10){return _0x25d367!==_0x48fd10;},'\x46\x58\x6f\x6d\x53':_0x22ff1f(0x18d)};if(!_0x260dc9||_0x3bd864[_0x22ff1f(0x1c2)](typeof _0x260dc9,_0x3bd864[_0x22ff1f(0x236)]))return![];const _0x296c82=_0x260dc9[_0x22ff1f(0x22a)];if(!Array[_0x22ff1f(0x20b)](_0x296c82))return![];return _0x296c82[_0x22ff1f(0x1a0)](_0x5d0593=>_0x5d0593&&typeof _0x5d0593===_0x22ff1f(0x18d)&&_0x5d0593[_0x22ff1f(0x1da)]===_0x22ff1f(0x1e3));}function imageMediaType(_0x37f043){const _0x59d296=a0_0xc3bfaa,_0x167cdf={'\x58\x61\x78\x49\x72':_0x59d296(0x23e),'\x59\x54\x48\x6b\x78':_0x59d296(0x1a2),'\x49\x47\x6e\x59\x48':'\x69\x6d\x61\x67\x65\x2f\x6a\x70\x65\x67','\x67\x61\x52\x4d\x4f':_0x59d296(0x23c)};switch(_0x37f043){case _0x59d296(0x193):return _0x167cdf[_0x59d296(0x20c)];case _0x167cdf['\x59\x54\x48\x6b\x78']:return _0x167cdf[_0x59d296(0x1ec)];case _0x167cdf[_0x59d296(0x1a7)]:return _0x59d296(0x23e);}}const FLEET_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x70\x61\x77\x6e':{'\x6e\x61\x6d\x65':a0_0xc3bfaa(0x1de),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1ff),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x50\x75\x62\x6c\x69\x63\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x6c\x75\x67\x20\x6f\x72\x20\x69\x64\x20\x28\x65\x2e\x67\x2e\x20\x27\x70\x79\x74\x68\x6f\x6e\x2d\x64\x61\x74\x61\x2d\x73\x63\x69\x65\x6e\x63\x65\x27\x29\x2e'},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x214),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1a6)},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x18d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{},'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':!![],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x217)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64',a0_0xc3bfaa(0x202)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x1cda82})=>async _0x1b116b=>{const _0x3bb6e1=a0_0xc3bfaa,_0x56c678=await _0x1cda82[_0x3bb6e1(0x1c5)][_0x3bb6e1(0x230)]({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0x1b116b[_0x3bb6e1(0x205)]},'\x77\x6f\x72\x6b\x65\x72\x73':Array[_0x3bb6e1(0x19a)]({'\x6c\x65\x6e\x67\x74\x68':_0x1b116b[_0x3bb6e1(0x202)]},(_0x3010ce,_0x2ceeb5)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x3bb6e1(0x1d1)+_0x2ceeb5})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x1b116b[_0x3bb6e1(0x1f3)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x56c678['\x66\x6c\x65\x65\x74\x49\x64'],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0x56c678[_0x3bb6e1(0x1b4)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68':{'\x6e\x61\x6d\x65':a0_0xc3bfaa(0x231),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x52\x75\x6e\x20\x61\x20\x73\x68\x65\x6c\x6c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x6f\x6e\x20\x61\x20\x66\x6c\x65\x65\x74\x27\x73\x20\x77\x6f\x72\x6b\x65\x72\x73\x20\x69\x6e\x20\x70\x61\x72\x61\x6c\x6c\x65\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x73\x20\x74\x6f\x20\x61\x6c\x6c\x20\x77\x6f\x72\x6b\x65\x72\x73\x3b\x20\x70\x61\x73\x73\x20\x60\x6d\x61\x63\x68\x69\x6e\x65\x73\x60\x20\x74\x6f\x20\x74\x61\x72\x67\x65\x74\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x6f\x6e\x65\x73\x2e\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x70\x65\x72\x2d\x6d\x61\x63\x68\x69\x6e\x65\x20\x7b\x6f\x6b\x2c\x20\x72\x65\x73\x75\x6c\x74\x3f\x2c\x20\x65\x72\x72\x6f\x72\x3f\x7d\x20\x65\x6e\x74\x72\x69\x65\x73\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x18d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x210)},'\x6d\x61\x63\x68\x69\x6e\x65\x73':{'\x74\x79\x70\x65':'\x61\x72\x72\x61\x79','\x69\x74\x65\x6d\x73':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae)},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1c0)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x214),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x200)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xc3bfaa(0x199),a0_0xc3bfaa(0x1f1)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x22a33c})=>async _0x14f0cc=>{const _0x189b9d=a0_0xc3bfaa;return await(await _0x22a33c[_0x189b9d(0x1c5)]['\x6c\x69\x73\x74']({'\x66\x6c\x65\x65\x74\x49\x64':_0x14f0cc[_0x189b9d(0x199)]}))[_0x189b9d(0x19c)](_0x14f0cc[_0x189b9d(0x1f1)],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x14f0cc['\x6d\x61\x63\x68\x69\x6e\x65\x73'],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x14f0cc[_0x189b9d(0x1e8)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':a0_0xc3bfaa(0x1d5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x227),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x66\x6c\x65\x65\x74\x5f\x69\x64'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x328a86})=>async _0x46a1e2=>{const _0x2f9122=a0_0xc3bfaa,_0x35ede5=await _0x328a86[_0x2f9122(0x1c5)][_0x2f9122(0x1bd)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x46a1e2[_0x2f9122(0x199)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x35ede5[_0x2f9122(0x1b5)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x35ede5[_0x2f9122(0x1b4)][_0x2f9122(0x1f0)](_0x4c8145=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x4c8145,'\x73\x74\x61\x74\x75\x73':_0x35ede5[_0x2f9122(0x1b6)](_0x4c8145)[_0x2f9122(0x1f7)]}))};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':a0_0xc3bfaa(0x20e),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1c6),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x18d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1d8),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1e6)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x66\x6c\x65\x65\x74\x5f\x69\x64'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x5d7fce})=>async _0xa31dc4=>{const _0x517a17=a0_0xc3bfaa;return await(await _0x5d7fce[_0x517a17(0x1c5)]['\x6c\x69\x73\x74']({'\x66\x6c\x65\x65\x74\x49\x64':_0xa31dc4['\x66\x6c\x65\x65\x74\x5f\x69\x64']}))[_0x517a17(0x1b7)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0xa31dc4[_0x517a17(0x21c)]}),{'\x66\x6c\x65\x65\x74\x49\x64':_0xa31dc4[_0x517a17(0x199)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object[a0_0xc3bfaa(0x232)](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x38f63){const _0x4a8772=a0_0xc3bfaa,_0x10a939={'\x4c\x72\x6f\x79\x6b':function(_0x1a25ee,_0x352d23){return _0x1a25ee===_0x352d23;}};if(!_0x38f63||_0x10a939[_0x4a8772(0x1d0)](_0x38f63[_0x4a8772(0x21d)],0x0))return ALL_FLEET_TOOL_SPECS;const _0x14259e=new Set(_0x38f63);return Object[_0x4a8772(0x1d3)](FLEET_TOOL_SPECS)[_0x4a8772(0x1b8)](_0x4c51b8=>_0x14259e[_0x4a8772(0x1df)](_0x4c51b8))[_0x4a8772(0x1f0)](_0x48e841=>FLEET_TOOL_SPECS[_0x48e841]);}function anthropicFleetTools(_0x5a7605,_0x5a8a18={}){const _0x473fca=a0_0xc3bfaa,_0x59914d={'\x73\x68\x64\x4c\x77':function(_0x239395,_0x3e2286){return _0x239395(_0x3e2286);},'\x7a\x54\x51\x58\x66':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x71\x56\x65\x6e\x69':function(_0x58b7a8,_0x2f21d5){return _0x58b7a8 instanceof _0x2f21d5;},'\x58\x74\x68\x79\x51':function(_0x591950,_0x427683,_0x5ead72){return _0x591950(_0x427683,_0x5ead72);}},_0x2a46b4=selectFleetSpecs(_0x5a8a18[_0x473fca(0x1eb)]),_0x4b46dd=_0x59914d[_0x473fca(0x1b2)](buildFleetHandlers,_0x2a46b4,{'\x63\x6c\x69\x65\x6e\x74':_0x5a7605});return{'\x74\x6f\x6f\x6c\x73':_0x2a46b4[_0x473fca(0x1f0)](_0x502190=>({'\x6e\x61\x6d\x65':_0x502190[_0x473fca(0x195)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x502190[_0x473fca(0x23d)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x502190[_0x473fca(0x228)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x35cc3e){const _0xc390b2=_0x473fca,_0x39a230=_0x4b46dd[_0xc390b2(0x1b6)](_0x35cc3e[_0xc390b2(0x195)]);if(!_0x39a230)return{'\x74\x79\x70\x65':_0xc390b2(0x1ab),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x35cc3e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x35cc3e[_0xc390b2(0x195)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x15ad47=await _0x39a230(_0x35cc3e[_0xc390b2(0x242)]);return{'\x74\x79\x70\x65':_0xc390b2(0x1ab),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x35cc3e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x59914d[_0xc390b2(0x238)](serializeToolResult,_0x15ad47)};}catch(_0x44c730){return{'\x74\x79\x70\x65':_0x59914d[_0xc390b2(0x1c4)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x35cc3e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x59914d['\x71\x56\x65\x6e\x69'](_0x44c730,Error)?_0x44c730[_0xc390b2(0x1a9)]:String(_0x44c730),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x1fc53b,_0x549c5a={}){const _0x3b6ba3=a0_0xc3bfaa,_0x40e342={'\x49\x58\x59\x51\x42':'\x74\x6f\x6f\x6c','\x55\x78\x59\x53\x54':'\x6f\x62\x6a\x65\x63\x74','\x42\x73\x73\x7a\x47':function(_0xc00c03,_0x735b29){return _0xc00c03(_0x735b29);},'\x42\x55\x67\x66\x48':function(_0x4d57c6,_0x9d2469){return _0x4d57c6(_0x9d2469);}},_0x466b1e=_0x40e342[_0x3b6ba3(0x1c3)](selectFleetSpecs,_0x549c5a[_0x3b6ba3(0x1eb)]),_0x4114cb=buildFleetHandlers(_0x466b1e,{'\x63\x6c\x69\x65\x6e\x74':_0x1fc53b});return{'\x74\x6f\x6f\x6c\x73':_0x466b1e[_0x3b6ba3(0x1f0)](_0xe43a3c=>({'\x74\x79\x70\x65':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0xe43a3c[_0x3b6ba3(0x195)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0xe43a3c[_0x3b6ba3(0x23d)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0xe43a3c[_0x3b6ba3(0x228)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x3e4fb7){const _0x2868c4=_0x3b6ba3,_0x1a59e9=_0x4114cb['\x67\x65\x74'](_0x3e4fb7[_0x2868c4(0x1f4)]['\x6e\x61\x6d\x65']);if(!_0x1a59e9)return{'\x72\x6f\x6c\x65':_0x40e342[_0x2868c4(0x22b)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x3e4fb7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x2868c4(0x1b9)]({'\x65\x72\x72\x6f\x72':_0x2868c4(0x1ea)+_0x3e4fb7[_0x2868c4(0x1f4)]['\x6e\x61\x6d\x65']})};let _0x3ee633={};try{const _0x136f91=JSON[_0x2868c4(0x206)](_0x3e4fb7[_0x2868c4(0x1f4)][_0x2868c4(0x19e)]||'\x7b\x7d');if(_0x136f91&&typeof _0x136f91===_0x40e342[_0x2868c4(0x229)])_0x3ee633=_0x136f91;}catch{}try{const _0x36db2b=await _0x40e342[_0x2868c4(0x1e1)](_0x1a59e9,_0x3ee633);return{'\x72\x6f\x6c\x65':_0x40e342[_0x2868c4(0x22b)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x3e4fb7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x40e342[_0x2868c4(0x1e1)](serializeToolResult,_0x36db2b)};}catch(_0x2254da){return{'\x72\x6f\x6c\x65':_0x40e342[_0x2868c4(0x22b)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x3e4fb7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x2868c4(0x1b9)]({'\x65\x72\x72\x6f\x72':_0x2254da instanceof Error?_0x2254da[_0x2868c4(0x1a9)]:String(_0x2254da)})};}}};}async function vercelAiFleetTools(_0x365dac,_0x118420={}){const _0x2b40a1=a0_0xc3bfaa,_0x23dbef={'\x42\x52\x6f\x76\x67':function(_0x2d1b9b,_0x43a5c6){return _0x2d1b9b(_0x43a5c6);},'\x4e\x59\x45\x52\x68':'\x76\x65\x72\x63\x65\x6c\x41\x69\x46\x6c\x65\x65\x74\x54\x6f\x6f\x6c\x73\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x61\x69\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x61\x69\x60\x2e'};let _0x4982c6;try{_0x4982c6=await import('\x61\x69');}catch{throw new Error(_0x23dbef[_0x2b40a1(0x196)]);}const _0x72aef3=_0x23dbef[_0x2b40a1(0x221)](selectFleetSpecs,_0x118420[_0x2b40a1(0x1eb)]),_0x4d013c=buildFleetHandlers(_0x72aef3,{'\x63\x6c\x69\x65\x6e\x74':_0x365dac}),_0x5093b7={};for(const _0x3936ea of _0x72aef3)_0x5093b7[_0x3936ea[_0x2b40a1(0x195)]]=_0x4982c6['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3936ea[_0x2b40a1(0x23d)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x4982c6[_0x2b40a1(0x203)](_0x3936ea[_0x2b40a1(0x228)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x368b8c=>{const _0x278b3a=_0x2b40a1,_0x3d6ff3=_0x4d013c['\x67\x65\x74'](_0x3936ea['\x6e\x61\x6d\x65']);if(!_0x3d6ff3)throw new Error(_0x278b3a(0x1ea)+_0x3936ea[_0x278b3a(0x195)]);return _0x23dbef[_0x278b3a(0x221)](serializeToolResult,await _0x3d6ff3(_0x368b8c));}});return _0x5093b7;}async function mastraFleetTools(_0x306837,_0x5605ae={}){const _0x11dcb9=a0_0xc3bfaa,_0x4bcab4={'\x66\x49\x49\x7a\x55':function(_0x10572e,_0x3bfc50){return _0x10572e(_0x3bfc50);},'\x67\x47\x78\x56\x64':_0x11dcb9(0x240),'\x44\x65\x66\x6b\x48':'\x6d\x61\x73\x74\x72\x61\x46\x6c\x65\x65\x74\x54\x6f\x6f\x6c\x73\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65\x60\x2e','\x50\x4a\x63\x54\x4e':function(_0x4ae0c8,_0x19e0be){return _0x4ae0c8(_0x19e0be);}};let _0x2ec8f6;try{_0x2ec8f6=await import(_0x4bcab4[_0x11dcb9(0x23b)]);}catch{throw new Error(_0x4bcab4[_0x11dcb9(0x222)]);}const _0x3d60ad=_0x4bcab4['\x50\x4a\x63\x54\x4e'](selectFleetSpecs,_0x5605ae[_0x11dcb9(0x1eb)]),_0x47f749=buildFleetHandlers(_0x3d60ad,{'\x63\x6c\x69\x65\x6e\x74':_0x306837}),_0x5d88de={};for(const _0x598570 of _0x3d60ad)_0x5d88de[_0x598570[_0x11dcb9(0x195)]]=_0x2ec8f6[_0x11dcb9(0x1e2)]({'\x69\x64':_0x598570['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x598570[_0x11dcb9(0x23d)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2ec8f6[_0x11dcb9(0x203)]?_0x2ec8f6['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61'](_0x598570[_0x11dcb9(0x228)]):_0x598570['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61'],'\x65\x78\x65\x63\x75\x74\x65':async _0x57be7b=>{const _0x51e5df=_0x11dcb9,_0x11393a=_0x47f749[_0x51e5df(0x1b6)](_0x598570[_0x51e5df(0x195)]);if(!_0x11393a)throw new Error(_0x51e5df(0x1ea)+_0x598570[_0x51e5df(0x195)]);return{'\x72\x65\x73\x75\x6c\x74':_0x4bcab4[_0x51e5df(0x1c8)](serializeToolResult,await _0x4bcab4[_0x51e5df(0x1c8)](_0x11393a,_0x57be7b?.[_0x51e5df(0x215)]??{}))};}});return _0x5d88de;}function buildFleetHandlers(_0x59fec7,_0x580790){const _0xb25571=a0_0xc3bfaa,_0x39a7f6=new Map();for(const _0x279a7f of _0x59fec7)_0x39a7f6['\x73\x65\x74'](_0x279a7f[_0xb25571(0x195)],_0x279a7f[_0xb25571(0x1b0)](_0x580790));return _0x39a7f6;}const LIFECYCLE_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65':{'\x6e\x61\x6d\x65':a0_0xc3bfaa(0x1db),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1bc),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x45\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x6e\x61\x6d\x65\x20\x28\x65\x2e\x67\x2e\x20\x27\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x27\x20\x66\x6f\x72\x20\x6d\x75\x6c\x74\x69\x2d\x6c\x61\x6e\x67\x75\x61\x67\x65\x20\x4e\x6f\x64\x65\x2f\x50\x79\x74\x68\x6f\x6e\x29\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x27\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x27\x2e'},'\x6e\x61\x6d\x65':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1f2)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x1fa649})=>async _0x5da650=>{const _0x1f12c2=a0_0xc3bfaa,_0x3d66e2=await _0x1fa649['\x63\x72\x65\x61\x74\x65']({'\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74':_0x5da650[_0x1f12c2(0x21f)]??_0x1f12c2(0x1fa),'\x6e\x61\x6d\x65':_0x5da650[_0x1f12c2(0x195)]});return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x3d66e2['\x69\x64'],'\x73\x74\x61\x74\x75\x73':_0x3d66e2[_0x1f12c2(0x1f7)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x6e\x61\x6d\x65':a0_0xc3bfaa(0x1d2),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x19f),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x18d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x18f)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x210)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x216)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x214),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x1dc)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xc3bfaa(0x244),a0_0xc3bfaa(0x1f1)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x26e673})=>async _0x1c4354=>{const _0x41dc28=a0_0xc3bfaa,_0x2982e3=await _0x26e673[_0x41dc28(0x1b6)](_0x1c4354['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64']);if(!_0x2982e3)throw new Error(_0x41dc28(0x20a)+_0x1c4354['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64']+_0x41dc28(0x1b1));const _0x53400a=await _0x2982e3[_0x41dc28(0x1ca)](_0x1c4354[_0x41dc28(0x1f1)],{'\x63\x77\x64':_0x1c4354['\x63\x77\x64'],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x1c4354['\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73']??0xea60});return{'\x73\x74\x64\x6f\x75\x74':_0x53400a[_0x41dc28(0x1d7)],'\x73\x74\x64\x65\x72\x72':_0x53400a[_0x41dc28(0x212)],'\x65\x78\x69\x74\x43\x6f\x64\x65':_0x53400a[_0x41dc28(0x201)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x64\x65\x73\x74\x72\x6f\x79','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xc3bfaa(0x237),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0xc3bfaa(0x1ae),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x49\x64\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x62\x79\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xc3bfaa(0x244)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x3caa6a})=>async _0x420927=>{const _0x3703f7=a0_0xc3bfaa,_0x2fa17c=await _0x3caa6a[_0x3703f7(0x1b6)](_0x420927[_0x3703f7(0x244)]);if(!_0x2fa17c)return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x420927[_0x3703f7(0x244)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};return await _0x2fa17c[_0x3703f7(0x1b7)](),{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x420927[_0x3703f7(0x244)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_LIFECYCLE_TOOL_SPECS=Object[a0_0xc3bfaa(0x232)](LIFECYCLE_TOOL_SPECS);function selectLifecycleSpecs(_0x12ee1a){const _0x5e37a9=a0_0xc3bfaa,_0x29c200={'\x5a\x46\x4c\x4d\x5a':function(_0x3b7112,_0x1c790f){return _0x3b7112===_0x1c790f;}};if(!_0x12ee1a||_0x29c200[_0x5e37a9(0x1ce)](_0x12ee1a[_0x5e37a9(0x21d)],0x0))return ALL_LIFECYCLE_TOOL_SPECS;const _0xf76700=new Set(_0x12ee1a);return Object[_0x5e37a9(0x1d3)](LIFECYCLE_TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0x428221=>_0xf76700[_0x5e37a9(0x1df)](_0x428221))['\x6d\x61\x70'](_0x2aa470=>LIFECYCLE_TOOL_SPECS[_0x2aa470]);}function anthropicLifecycleTools(_0x119598,_0x1a2d81={}){const _0x40434d=a0_0xc3bfaa,_0x1c91c8={'\x5a\x6d\x51\x46\x77':_0x40434d(0x1ab),'\x7a\x6f\x55\x51\x54':function(_0x3d759d,_0x2b4acd){return _0x3d759d(_0x2b4acd);},'\x6a\x67\x51\x4d\x69':function(_0x160613,_0x48afe8,_0x9dea2e){return _0x160613(_0x48afe8,_0x9dea2e);}},_0x22b3f5=selectLifecycleSpecs(_0x1a2d81[_0x40434d(0x1eb)]),_0x405313=_0x1c91c8['\x6a\x67\x51\x4d\x69'](buildLifecycleHandlers,_0x22b3f5,{'\x63\x6c\x69\x65\x6e\x74':_0x119598});return{'\x74\x6f\x6f\x6c\x73':_0x22b3f5['\x6d\x61\x70'](_0x1e61c5=>({'\x6e\x61\x6d\x65':_0x1e61c5[_0x40434d(0x195)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1e61c5[_0x40434d(0x23d)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x1e61c5[_0x40434d(0x228)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x452971){const _0xbb6381=_0x40434d,_0x583d4f=_0x405313[_0xbb6381(0x1b6)](_0x452971[_0xbb6381(0x195)]);if(!_0x583d4f)return{'\x74\x79\x70\x65':_0x1c91c8[_0xbb6381(0x1d9)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x452971['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xbb6381(0x22d)+_0x452971[_0xbb6381(0x195)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x2f34e9=await _0x583d4f(_0x452971[_0xbb6381(0x242)]);return{'\x74\x79\x70\x65':_0xbb6381(0x1ab),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x452971['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x1c91c8[_0xbb6381(0x1ba)](serializeToolResult,_0x2f34e9)};}catch(_0x528fb0){return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x452971['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x528fb0 instanceof Error?_0x528fb0['\x6d\x65\x73\x73\x61\x67\x65']:_0x1c91c8['\x7a\x6f\x55\x51\x54'](String,_0x528fb0),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiLifecycleTools(_0x24947c,_0x314cd2={}){const _0x68d7e4=a0_0xc3bfaa,_0x56ddc3={'\x76\x5a\x65\x6d\x76':'\x6f\x62\x6a\x65\x63\x74','\x76\x57\x41\x6a\x56':function(_0x81de35,_0x1c873f){return _0x81de35(_0x1c873f);},'\x7a\x55\x71\x5a\x41':'\x74\x6f\x6f\x6c','\x73\x68\x51\x51\x57':function(_0x574936,_0x5dd8b9){return _0x574936(_0x5dd8b9);}},_0x29dec1=_0x56ddc3[_0x68d7e4(0x249)](selectLifecycleSpecs,_0x314cd2[_0x68d7e4(0x1eb)]),_0x3a1f88=buildLifecycleHandlers(_0x29dec1,{'\x63\x6c\x69\x65\x6e\x74':_0x24947c});return{'\x74\x6f\x6f\x6c\x73':_0x29dec1['\x6d\x61\x70'](_0x33054d=>({'\x74\x79\x70\x65':_0x68d7e4(0x1f4),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x33054d[_0x68d7e4(0x195)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x33054d['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x33054d[_0x68d7e4(0x228)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x3aed85){const _0xe1f865=_0x68d7e4,_0x5a1360=_0x3a1f88[_0xe1f865(0x1b6)](_0x3aed85[_0xe1f865(0x1f4)][_0xe1f865(0x195)]);if(!_0x5a1360)return{'\x72\x6f\x6c\x65':_0xe1f865(0x226),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x3aed85['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0xe1f865(0x1b9)]({'\x65\x72\x72\x6f\x72':_0xe1f865(0x22d)+_0x3aed85[_0xe1f865(0x1f4)][_0xe1f865(0x195)]})};let _0xf40111={};try{const _0xd4a870=JSON[_0xe1f865(0x206)](_0x3aed85[_0xe1f865(0x1f4)][_0xe1f865(0x19e)]||'\x7b\x7d');if(_0xd4a870&&typeof _0xd4a870===_0x56ddc3[_0xe1f865(0x208)])_0xf40111=_0xd4a870;}catch{}try{const _0x413603=await _0x56ddc3[_0xe1f865(0x245)](_0x5a1360,_0xf40111);return{'\x72\x6f\x6c\x65':_0xe1f865(0x226),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x3aed85['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x56ddc3['\x76\x57\x41\x6a\x56'](serializeToolResult,_0x413603)};}catch(_0x32e859){return{'\x72\x6f\x6c\x65':_0x56ddc3[_0xe1f865(0x23a)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x3aed85['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x32e859 instanceof Error?_0x32e859[_0xe1f865(0x1a9)]:_0x56ddc3['\x76\x57\x41\x6a\x56'](String,_0x32e859)})};}}};}function buildLifecycleHandlers(_0x54f03f,_0x23c4fd){const _0x58d169=a0_0xc3bfaa,_0xf855e2=new Map();for(const _0x4f0431 of _0x54f03f)_0xf855e2[_0x58d169(0x1bf)](_0x4f0431[_0x58d169(0x195)],_0x4f0431[_0x58d169(0x1b0)](_0x23c4fd));return _0xf855e2;}function a0_0x5747(_0x53bcc1,_0x1cade0){_0x53bcc1=_0x53bcc1-0x18d;const _0x297a20=a0_0x297a();let _0x574725=_0x297a20[_0x53bcc1];if(a0_0x5747['\x62\x4d\x67\x4e\x65\x57']===undefined){var _0x51920a=function(_0x3d170d){const _0x536210='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';let _0x27037d='',_0x16635f='';for(let _0x411af1=0x0,_0x26b919,_0x4c7ad0,_0x5d9476=0x0;_0x4c7ad0=_0x3d170d['\x63\x68\x61\x72\x41\x74'](_0x5d9476++);~_0x4c7ad0&&(_0x26b919=_0x411af1%0x4?_0x26b919*0x40+_0x4c7ad0:_0x4c7ad0,_0x411af1++%0x4)?_0x27037d+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x26b919>>(-0x2*_0x411af1&0x6)):0x0){_0x4c7ad0=_0x536210['\x69\x6e\x64\x65\x78\x4f\x66'](_0x4c7ad0);}for(let _0x5cf52a=0x0,_0x259613=_0x27037d['\x6c\x65\x6e\x67\x74\x68'];_0x5cf52a<_0x259613;_0x5cf52a++){_0x16635f+='\x25'+('\x30\x30'+_0x27037d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5cf52a)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x16635f);};a0_0x5747['\x70\x6d\x4a\x64\x71\x58']=_0x51920a,a0_0x5747['\x66\x53\x51\x76\x77\x79']={},a0_0x5747['\x62\x4d\x67\x4e\x65\x57']=!![];}const _0x5cb5e2=_0x297a20[0x0],_0x236528=_0x53bcc1+_0x5cb5e2,_0x94e783=a0_0x5747['\x66\x53\x51\x76\x77\x79'][_0x236528];return!_0x94e783?(_0x574725=a0_0x5747['\x70\x6d\x4a\x64\x71\x58'](_0x574725),a0_0x5747['\x66\x53\x51\x76\x77\x79'][_0x236528]=_0x574725):_0x574725=_0x94e783,_0x574725;}async function mastraTools(_0x3f6fde,_0x2a419d={}){const _0x3ec9ac=a0_0xc3bfaa,_0x54971a={'\x59\x48\x4b\x57\x78':function(_0x2d381d,_0x221f2d){return _0x2d381d(_0x221f2d);},'\x62\x6b\x71\x69\x43':'\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65'};let _0x3108b5;try{_0x3108b5=await import(_0x54971a[_0x3ec9ac(0x1ef)]);}catch{throw new Error(_0x3ec9ac(0x194));}const _0x507b27=selectSpecs(_0x2a419d[_0x3ec9ac(0x1eb)]),_0x511b95={'\x62\x6f\x78':_0x3f6fde,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x2a419d[_0x3ec9ac(0x1ac)]},_0x50aeaa={};for(const _0x2fa40b of _0x507b27){const _0x3c3170=_0x2fa40b[_0x3ec9ac(0x1b0)](_0x511b95);_0x50aeaa[_0x2fa40b[_0x3ec9ac(0x195)]]=_0x3108b5[_0x3ec9ac(0x1e2)]({'\x69\x64':_0x2fa40b[_0x3ec9ac(0x195)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2fa40b[_0x3ec9ac(0x23d)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3108b5['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61']?_0x3108b5[_0x3ec9ac(0x203)](_0x2fa40b[_0x3ec9ac(0x228)]):_0x2fa40b[_0x3ec9ac(0x228)],'\x65\x78\x65\x63\x75\x74\x65':async _0x1006a4=>{const _0x5db7b3=_0x3ec9ac;return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x54971a[_0x5db7b3(0x21e)](_0x3c3170,_0x1006a4?.[_0x5db7b3(0x215)]??{}))};}});}return _0x50aeaa;}function openaiTools(_0xed8ab,_0x4f543c={}){const _0x119494=a0_0xc3bfaa,_0x3ebf69={'\x48\x50\x65\x77\x64':function(_0x28e435,_0x456584){return _0x28e435(_0x456584);},'\x70\x63\x45\x41\x67':function(_0x1563af,_0x1dd0be){return _0x1563af instanceof _0x1dd0be;},'\x43\x53\x55\x78\x6a':function(_0x2358c7,_0x53e161){return _0x2358c7(_0x53e161);}},_0x3e00c0=_0x3ebf69['\x43\x53\x55\x78\x6a'](selectSpecs,_0x4f543c[_0x119494(0x1eb)]),_0x342524={'\x62\x6f\x78':_0xed8ab,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4f543c['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']},_0x9c8f0b=new Map();for(const _0x174d5c of _0x3e00c0)_0x9c8f0b[_0x119494(0x1bf)](_0x174d5c[_0x119494(0x195)],_0x174d5c[_0x119494(0x1b0)](_0x342524));const _0x18bec6=_0x3e00c0[_0x119494(0x1f0)](_0x5a9e25=>({'\x74\x79\x70\x65':_0x119494(0x1f4),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x5a9e25[_0x119494(0x195)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x5a9e25[_0x119494(0x23d)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x5a9e25[_0x119494(0x228)]}}));function _0x1b72ec(_0x17863a){const _0x2c87e3=_0x119494;if(!_0x17863a)return{};try{const _0x1a73a3=JSON[_0x2c87e3(0x206)](_0x17863a);return typeof _0x1a73a3===_0x2c87e3(0x18d)&&_0x1a73a3!==null?_0x1a73a3:{};}catch{return{};}}async function _0x1c972c(_0x55e36c){const _0x24cbe4=_0x119494,_0x473249=_0x9c8f0b[_0x24cbe4(0x1b6)](_0x55e36c['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x24cbe4(0x195)]);if(!_0x473249)return{'\x72\x6f\x6c\x65':_0x24cbe4(0x226),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x55e36c['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x24cbe4(0x1b9)]({'\x65\x72\x72\x6f\x72':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x55e36c[_0x24cbe4(0x1f4)][_0x24cbe4(0x195)]})};try{const _0x3bb371=await _0x473249(_0x1b72ec(_0x55e36c[_0x24cbe4(0x1f4)][_0x24cbe4(0x19e)]));return{'\x72\x6f\x6c\x65':_0x24cbe4(0x226),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x55e36c['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x3ebf69[_0x24cbe4(0x1d6)](serializeToolResult,_0x3bb371)};}catch(_0x3870c0){return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x55e36c['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x24cbe4(0x1b9)]({'\x65\x72\x72\x6f\x72':_0x3ebf69[_0x24cbe4(0x1a5)](_0x3870c0,Error)?_0x3870c0[_0x24cbe4(0x1a9)]:String(_0x3870c0)})};}}async function _0x5ac52f(_0x17543c){const _0x1cb746=_0x119494,_0x204bb2=_0x17543c[_0x1cb746(0x1aa)]??[];return Promise[_0x1cb746(0x1c7)](_0x204bb2['\x6d\x61\x70'](_0x1c972c));}return{'\x74\x6f\x6f\x6c\x73':_0x18bec6,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x1c972c,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x5ac52f};}async function vercelAiTools(_0x448ab3,_0x19b2e5={}){const _0x2b45b6=a0_0xc3bfaa,_0x531f5c={'\x59\x64\x79\x56\x49':function(_0x5392c2,_0x4c774a){return _0x5392c2(_0x4c774a);}};let _0x3bc2fe;try{_0x3bc2fe=await import('\x61\x69');}catch{throw new Error(_0x2b45b6(0x197));}const _0x2b1c49=_0x531f5c['\x59\x64\x79\x56\x49'](selectSpecs,_0x19b2e5[_0x2b45b6(0x1eb)]),_0x123796={'\x62\x6f\x78':_0x448ab3,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x19b2e5[_0x2b45b6(0x1ac)]},_0x1b00a9={};for(const _0x568c2f of _0x2b1c49){const _0x12d72c=_0x568c2f[_0x2b45b6(0x1b0)](_0x123796);_0x1b00a9[_0x568c2f['\x6e\x61\x6d\x65']]=_0x3bc2fe[_0x2b45b6(0x226)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x568c2f[_0x2b45b6(0x23d)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3bc2fe[_0x2b45b6(0x203)](_0x568c2f[_0x2b45b6(0x228)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x484122=>{return serializeToolResult(await _0x12d72c(_0x484122));}});}return _0x1b00a9;}export{anthropicFleetTools,anthropicLifecycleTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiLifecycleTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};
@@ -1 +1 @@
1
- const a0_0x5d0dfe=a0_0x3248;(function(_0x3c6d84,_0x4d947a){const _0x17d424=a0_0x3248,_0x511532=_0x3c6d84();while(!![]){try{const _0x458c13=parseInt(_0x17d424(0x185))/0x1*(parseInt(_0x17d424(0x16b))/0x2)+-parseInt(_0x17d424(0x186))/0x3+parseInt(_0x17d424(0x19e))/0x4*(parseInt(_0x17d424(0x182))/0x5)+parseInt(_0x17d424(0x19a))/0x6*(-parseInt(_0x17d424(0x193))/0x7)+-parseInt(_0x17d424(0x181))/0x8+-parseInt(_0x17d424(0x183))/0x9+-parseInt(_0x17d424(0x164))/0xa*(-parseInt(_0x17d424(0x160))/0xb);if(_0x458c13===_0x4d947a)break;else _0x511532['push'](_0x511532['shift']());}catch(_0x35df32){_0x511532['push'](_0x511532['shift']());}}}(a0_0x1480,0x53f19));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function base64UrlEncode(_0x404a39){const _0x8f72fb=a0_0x3248,_0x5a72af={'\x59\x57\x52\x68\x49':'\x73\x74\x72\x69\x6e\x67'};return(typeof _0x404a39===_0x5a72af[_0x8f72fb(0x16a)]?Buffer['\x66\x72\x6f\x6d'](_0x404a39):_0x404a39)[_0x8f72fb(0x18f)]('\x62\x61\x73\x65\x36\x34')['\x72\x65\x70\x6c\x61\x63\x65'](/\+/g,'\x2d')[_0x8f72fb(0x167)](/\//g,'\x5f')[_0x8f72fb(0x167)](/=+$/,'');}function decodeBase64UrlToBuffer(_0x2ca587){const _0x1c4d91=a0_0x3248;if(!/^[A-Za-z0-9_-]*$/[_0x1c4d91(0x163)](_0x2ca587))return null;const _0x53a9cd=_0x2ca587+'\x3d'[_0x1c4d91(0x170)]((0x4-_0x2ca587[_0x1c4d91(0x19f)]%0x4)%0x4);return Buffer['\x66\x72\x6f\x6d'](_0x53a9cd[_0x1c4d91(0x167)](/-/g,'\x2b')[_0x1c4d91(0x167)](/_/g,'\x2f'),_0x1c4d91(0x19c));}function createSignature(_0x4dfbd6,_0xd7ea3){const _0x32d57c=a0_0x3248,_0x1a8c5c={'\x42\x77\x53\x58\x68':function(_0x11511f,_0x35a907){return _0x11511f(_0x35a907);}};return _0x1a8c5c['\x42\x77\x53\x58\x68'](base64UrlEncode,createHmac(_0x32d57c(0x17d),_0xd7ea3)[_0x32d57c(0x195)](_0x4dfbd6)['\x64\x69\x67\x65\x73\x74']());}const JWT_HEADER=base64UrlEncode(JSON[a0_0x5d0dfe(0x191)]({'\x61\x6c\x67':a0_0x5d0dfe(0x17f),'\x74\x79\x70':a0_0x5d0dfe(0x199)}));function issueToken(_0x36c0f1,_0x522661,_0x547ff2){const _0x4f19ef=a0_0x5d0dfe,_0x30d47c={'\x58\x62\x67\x69\x4d':function(_0x44d007,_0x1b03ef){return _0x44d007/_0x1b03ef;},'\x45\x55\x4d\x6b\x73':function(_0x5ba949,_0x471829){return _0x5ba949+_0x471829;},'\x71\x6e\x63\x50\x75':function(_0x122d3d,_0x27d05c){return _0x122d3d*_0x27d05c;}},_0x410a7a=Math[_0x4f19ef(0x180)](_0x30d47c[_0x4f19ef(0x194)](Date[_0x4f19ef(0x177)](),0x3e8)),_0x4aa5dd={..._0x522661,'\x69\x61\x74':_0x410a7a,'\x65\x78\x70':_0x30d47c[_0x4f19ef(0x198)](_0x410a7a,_0x30d47c[_0x4f19ef(0x18e)](_0x547ff2,0x3c))},_0x457b7b=JWT_HEADER+'\x2e'+base64UrlEncode(JSON[_0x4f19ef(0x191)](_0x4aa5dd));return _0x457b7b+'\x2e'+createSignature(_0x457b7b,_0x36c0f1);}function issueReadToken(_0x4107cd,_0x22a9f1,_0x4df090){const _0x19da2c=a0_0x5d0dfe,_0x4cac00={'\x64\x79\x77\x58\x4e':function(_0x5315d7,_0x5b82b2,_0x35bc22,_0x8f4285){return _0x5315d7(_0x5b82b2,_0x35bc22,_0x8f4285);},'\x68\x54\x68\x76\x79':_0x19da2c(0x165)};return _0x4cac00[_0x19da2c(0x16d)](issueToken,_0x4107cd,{..._0x22a9f1,'\x74\x79\x70':_0x4cac00['\x68\x54\x68\x76\x79']},_0x4df090);}function issueSessionScopedToken(_0x58c31d,_0x114d0b,_0x2bcc90){const _0x1fcffe={'\x70\x67\x66\x4d\x64':function(_0x299d41,_0x5db34a,_0x5bf20f,_0x2b2c40){return _0x299d41(_0x5db34a,_0x5bf20f,_0x2b2c40);}};return _0x1fcffe['\x70\x67\x66\x4d\x64'](issueReadToken,_0x58c31d,_0x114d0b,_0x2bcc90);}function a0_0x1480(){const _0x550aa2=['\x77\x67\x6a\x4e\x41\x75\x30','\x44\x78\x62\x4b\x79\x78\x72\x4c','\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x7a\x4e\x6a\x4c\x7a\x71','\x72\x76\x76\x6e\x41\x33\x6d','\x73\x4c\x44\x75','\x6f\x64\x72\x65\x42\x4d\x7a\x41\x42\x66\x71','\x41\x30\x35\x53\x7a\x76\x69','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x42\x77\x66\x34','\x6d\x4a\x79\x30\x6e\x74\x7a\x6c\x77\x4c\x50\x59\x72\x68\x6d','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x43\x4b\x7a\x35\x42\x68\x79','\x7a\x32\x76\x30\x76\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x6d\x4a\x61\x57\x6f\x64\x69\x57\x6e\x5a\x6e\x58\x75\x65\x7a\x5a\x76\x66\x43','\x43\x77\x6a\x4b\x72\x33\x47','\x79\x33\x72\x58\x45\x4c\x71','\x44\x67\x76\x5a\x44\x61','\x6d\x74\x62\x4a\x42\x65\x35\x50\x45\x75\x38','\x43\x4d\x76\x48\x7a\x61','\x73\x33\x66\x30\x72\x75\x6d','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x72\x67\x44\x67\x75\x76\x75','\x43\x67\x66\x59\x43\x32\x75','\x77\x76\x44\x73\x41\x65\x4b','\x6d\x74\x79\x35\x6f\x64\x6a\x4c\x76\x4d\x66\x62\x76\x4c\x69','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x7a\x68\x4c\x33\x77\x65\x34','\x44\x67\x4c\x4c\x43\x47','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x43\x4d\x76\x57\x7a\x77\x66\x30','\x75\x4b\x35\x56\x73\x75\x43','\x7a\x78\x48\x57','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x45\x4b\x76\x55\x43\x77\x53','\x79\x4b\x58\x58\x74\x30\x4f','\x43\x30\x72\x76\x7a\x77\x69','\x42\x4d\x39\x33','\x45\x76\x4c\x4f\x73\x4d\x65','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x7a\x77\x35\x30\x7a\x78\x6a\x57\x43\x4d\x4c\x5a\x7a\x71','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x74\x68\x48\x78\x41\x4e\x65','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x42\x76\x6a\x59\x7a\x31\x79','\x73\x66\x6d\x59\x6e\x74\x79','\x7a\x4d\x58\x56\x42\x33\x69','\x6d\x4a\x47\x57\x6e\x5a\x61\x57\x6f\x65\x6e\x4b\x44\x78\x4c\x72\x43\x71','\x6d\x74\x71\x31\x74\x32\x54\x55\x42\x68\x62\x72','\x6e\x64\x47\x57\x6e\x64\x43\x31\x6f\x66\x50\x59\x73\x4e\x66\x65\x43\x47','\x79\x32\x66\x30\x7a\x4b\x79','\x6d\x74\x72\x75\x74\x66\x50\x49\x42\x65\x71','\x6d\x74\x61\x30\x6e\x64\x65\x5a\x6f\x66\x50\x4c\x75\x31\x44\x68\x44\x47','\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x79\x77\x58\x4e','\x43\x68\x6a\x56','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x43\x33\x62\x53\x41\x78\x71','\x79\x32\x58\x56\x79\x32\x54\x74\x41\x32\x76\x33\x75\x32\x76\x4a\x42\x32\x35\x4b\x43\x57','\x7a\x4e\x6a\x56\x42\x71','\x43\x77\x35\x4a\x75\x68\x75','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x43\x68\x6a\x56\x41\x4d\x76\x4a\x44\x65\x4c\x4b','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x79\x32\x39\x53\x42\x67\x66\x49\x42\x33\x6a\x48\x44\x67\x4c\x56\x42\x47','\x6d\x4a\x43\x35\x6f\x64\x75\x5a\x74\x31\x7a\x54\x74\x76\x6a\x76'];a0_0x1480=function(){return _0x550aa2;};return a0_0x1480();}function issueProjectScopedToken(_0x416e95,_0x40ba4a,_0xd786e6){return issueReadToken(_0x416e95,_0x40ba4a,_0xd786e6);}function issueBatchScopedToken(_0x29917b,_0x567d12,_0x110cbf){const _0x1474a9=a0_0x5d0dfe,_0xdfb641={'\x72\x46\x79\x6c\x76':function(_0x59ca44,_0x34df4b,_0x54b44a,_0x17d8d4){return _0x59ca44(_0x34df4b,_0x54b44a,_0x17d8d4);}};return _0xdfb641[_0x1474a9(0x1a0)](issueReadToken,_0x29917b,_0x567d12,_0x110cbf);}function issueCollaborationToken(_0x379fba,_0x47e7ad,_0x187fae){const _0x354d6e=a0_0x5d0dfe,_0x33805b={'\x63\x61\x74\x66\x46':_0x354d6e(0x192)};return issueToken(_0x379fba,{'\x73\x75\x62':_0x47e7ad['\x75\x73\x65\x72\x49\x64'],'\x73\x69\x64':_0x47e7ad['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x69\x64':_0x47e7ad['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'],'\x63\x69\x64':_0x47e7ad[_0x354d6e(0x18a)],'\x74\x79\x70':_0x33805b[_0x354d6e(0x184)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x47e7ad[_0x354d6e(0x190)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x47e7ad[_0x354d6e(0x179)],'\x61\x63\x63\x65\x73\x73':_0x47e7ad[_0x354d6e(0x16f)]},_0x187fae);}function a0_0x3248(_0x4cb851,_0xca6fcd){_0x4cb851=_0x4cb851-0x160;const _0x148052=a0_0x1480();let _0x324847=_0x148052[_0x4cb851];if(a0_0x3248['\x67\x6a\x56\x4d\x57\x50']===undefined){var _0x261167=function(_0x1d8f32){const _0xe6f517='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';let _0x3a02f9='',_0x47b016='';for(let _0x18d744=0x0,_0x12d24f,_0x321940,_0x5a4fb5=0x0;_0x321940=_0x1d8f32['\x63\x68\x61\x72\x41\x74'](_0x5a4fb5++);~_0x321940&&(_0x12d24f=_0x18d744%0x4?_0x12d24f*0x40+_0x321940:_0x321940,_0x18d744++%0x4)?_0x3a02f9+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x12d24f>>(-0x2*_0x18d744&0x6)):0x0){_0x321940=_0xe6f517['\x69\x6e\x64\x65\x78\x4f\x66'](_0x321940);}for(let _0x5b4d05=0x0,_0xd89bbb=_0x3a02f9['\x6c\x65\x6e\x67\x74\x68'];_0x5b4d05<_0xd89bbb;_0x5b4d05++){_0x47b016+='\x25'+('\x30\x30'+_0x3a02f9['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5b4d05)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x47b016);};a0_0x3248['\x63\x48\x75\x61\x53\x61']=_0x261167,a0_0x3248['\x53\x67\x47\x53\x66\x41']={},a0_0x3248['\x67\x6a\x56\x4d\x57\x50']=!![];}const _0x12d0ba=_0x148052[0x0],_0x116fca=_0x4cb851+_0x12d0ba,_0x5c1e34=a0_0x3248['\x53\x67\x47\x53\x66\x41'][_0x116fca];return!_0x5c1e34?(_0x324847=a0_0x3248['\x63\x48\x75\x61\x53\x61'](_0x324847),a0_0x3248['\x53\x67\x47\x53\x66\x41'][_0x116fca]=_0x324847):_0x324847=_0x5c1e34,_0x324847;}function unsafeDecodeToken(_0x3c472b){const _0x454dec=a0_0x5d0dfe,_0x2e73a3={'\x44\x67\x46\x51\x55':function(_0x550a8d,_0x506046){return _0x550a8d+_0x506046;},'\x52\x4e\x6f\x49\x47':function(_0x1363ac,_0xe59987){return _0x1363ac%_0xe59987;}};try{const _0x518659=_0x3c472b[_0x454dec(0x18b)]('\x2e');if(_0x518659[_0x454dec(0x19f)]!==0x3)return null;const _0x25c901=_0x2e73a3[_0x454dec(0x168)](_0x518659[0x1],'\x3d'['\x72\x65\x70\x65\x61\x74'](_0x2e73a3[_0x454dec(0x171)](0x4-_0x2e73a3[_0x454dec(0x171)](_0x518659[0x1][_0x454dec(0x19f)],0x4),0x4))),_0x3c338f=Buffer['\x66\x72\x6f\x6d'](_0x25c901[_0x454dec(0x167)](/-/g,'\x2b')[_0x454dec(0x167)](/_/g,'\x2f'),_0x454dec(0x19c))['\x74\x6f\x53\x74\x72\x69\x6e\x67']();return JSON['\x70\x61\x72\x73\x65'](_0x3c338f);}catch{return null;}}function verifyToken(_0x5adc1b,_0x5d5b90,_0x3e23ea={}){const _0x51f145=a0_0x5d0dfe,_0x5e7a35={'\x79\x59\x68\x4a\x61':function(_0x5ebb21,_0x494ad6){return _0x5ebb21||_0x494ad6;},'\x7a\x45\x6e\x71\x6b':function(_0x2a71b3,_0x38b8a2){return _0x2a71b3+_0x38b8a2;},'\x6d\x52\x72\x67\x56':function(_0x40921d,_0x27ee7b){return _0x40921d(_0x27ee7b);},'\x4b\x71\x74\x45\x43':function(_0x40ba82,_0x37e1a2,_0x350773){return _0x40ba82(_0x37e1a2,_0x350773);},'\x63\x74\x71\x7a\x54':'\x6e\x75\x6d\x62\x65\x72'};try{const _0x208a74=_0x5adc1b[_0x51f145(0x18b)]('\x2e');if(_0x208a74[_0x51f145(0x19f)]!==0x3)return null;const [_0x56e4df,_0x3cf6c3,_0x2d3d3f]=_0x208a74;if(_0x5e7a35[_0x51f145(0x178)](!_0x56e4df,!_0x3cf6c3)||!_0x2d3d3f)return null;let _0x19acac;try{const _0x3083a3=_0x5e7a35[_0x51f145(0x174)](_0x56e4df,'\x3d'[_0x51f145(0x170)]((0x4-_0x56e4df[_0x51f145(0x19f)]%0x4)%0x4)),_0x3ed2df=Buffer[_0x51f145(0x18d)](_0x3083a3[_0x51f145(0x167)](/-/g,'\x2b')[_0x51f145(0x167)](/_/g,'\x2f'),'\x62\x61\x73\x65\x36\x34')[_0x51f145(0x18f)]();_0x19acac=JSON[_0x51f145(0x169)](_0x3ed2df);}catch{return null;}if(_0x19acac[_0x51f145(0x188)]!=='\x48\x53\x32\x35\x36')return null;const _0x17c387=createSignature(_0x56e4df+'\x2e'+_0x3cf6c3,_0x5d5b90),_0x49db79=decodeBase64UrlToBuffer(_0x2d3d3f),_0x5cb7eb=_0x5e7a35[_0x51f145(0x17e)](decodeBase64UrlToBuffer,_0x17c387);if(!_0x49db79||!_0x5cb7eb)return null;if(_0x49db79[_0x51f145(0x19f)]!==_0x5cb7eb[_0x51f145(0x19f)])return null;if(!_0x5e7a35[_0x51f145(0x166)](timingSafeEqual,_0x49db79,_0x5cb7eb))return null;const _0x1bcce4=unsafeDecodeToken(_0x5adc1b);if(!_0x1bcce4)return null;const _0x3a6815=Math[_0x51f145(0x180)](Date[_0x51f145(0x177)]()/0x3e8),_0x37152c=Math[_0x51f145(0x19d)](0x0,_0x3e23ea[_0x51f145(0x18c)]??0x0);if(typeof _0x1bcce4[_0x51f145(0x172)]!==_0x5e7a35[_0x51f145(0x162)]||_0x1bcce4['\x65\x78\x70']+_0x37152c<_0x3a6815)return null;return _0x1bcce4;}catch{return null;}}function getTokenTTL(_0x3dfd75){const _0x58efea=a0_0x5d0dfe,_0x32351f={'\x44\x5a\x6e\x63\x67':function(_0x507282,_0x526bf6){return _0x507282/_0x526bf6;}},_0x339002=Math[_0x58efea(0x180)](_0x32351f['\x44\x5a\x6e\x63\x67'](Date['\x6e\x6f\x77'](),0x3e8));return _0x3dfd75[_0x58efea(0x172)]-_0x339002;}function isTokenExpiringSoon(_0xd883f7,_0x45a34b=0x3c){return getTokenTTL(_0xd883f7)<=_0x45a34b;}var ProductTokenIssuer=class{[a0_0x5d0dfe(0x17b)];[a0_0x5d0dfe(0x196)];[a0_0x5d0dfe(0x187)];constructor(_0x433e18){const _0x343914=a0_0x5d0dfe;this[_0x343914(0x17b)]=_0x433e18[_0x343914(0x17b)],this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74']=_0x433e18[_0x343914(0x196)],this[_0x343914(0x187)]={'\x66\x72\x65\x65':_0x433e18[_0x343914(0x187)]?.[_0x343914(0x197)]??0xf,'\x70\x72\x6f':_0x433e18[_0x343914(0x187)]?.[_0x343914(0x189)]??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x433e18['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0x343914(0x17a)]??0x1e0};}['\x69\x73\x73\x75\x65'](_0x2c44d3){const _0x28dca2=a0_0x5d0dfe,_0x4a82b1={'\x71\x62\x64\x47\x78':function(_0x405408,_0x482b5e){return _0x405408+_0x482b5e;},'\x62\x4c\x71\x4f\x4a':function(_0x3a7945,_0x185515){return _0x3a7945/_0x185515;},'\x63\x4b\x77\x77\x65':function(_0x3adc6a,_0x3c88b4){return _0x3adc6a*_0x3c88b4;}},_0x10269c=_0x2c44d3['\x74\x69\x65\x72']??_0x28dca2(0x197),_0x2f6872=this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x10269c]??this[_0x28dca2(0x187)]['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x28dca2(0x196)],{'\x73\x75\x62':_0x2c44d3[_0x28dca2(0x173)],'\x73\x69\x64':_0x2c44d3[_0x28dca2(0x16c)],'\x70\x69\x64':this[_0x28dca2(0x17b)],'\x63\x69\x64':_0x2c44d3[_0x28dca2(0x18a)]},_0x2f6872),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x4a82b1[_0x28dca2(0x161)](Math[_0x28dca2(0x180)](_0x4a82b1[_0x28dca2(0x175)](Date[_0x28dca2(0x177)](),0x3e8)),_0x4a82b1['\x63\x4b\x77\x77\x65'](_0x2f6872,0x3c))};}['\x69\x73\x73\x75\x65\x43\x6f\x6c\x6c\x61\x62\x6f\x72\x61\x74\x69\x6f\x6e'](_0x4ac669){const _0x1330c5=a0_0x5d0dfe,_0x135409={'\x4c\x78\x57\x6a\x71':function(_0x3034ff,_0x1d7ec5,_0x404e3a,_0x11e286){return _0x3034ff(_0x1d7ec5,_0x404e3a,_0x11e286);},'\x73\x44\x55\x65\x62':function(_0x56d77b,_0x442efd){return _0x56d77b+_0x442efd;},'\x6b\x4e\x6c\x65\x52':function(_0x21a3e,_0x45d8e0){return _0x21a3e/_0x45d8e0;}},_0x743505=_0x4ac669[_0x1330c5(0x16e)]??'\x66\x72\x65\x65',_0x31357b=this[_0x1330c5(0x187)][_0x743505]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x1330c5(0x197)];return{'\x74\x6f\x6b\x65\x6e':_0x135409[_0x1330c5(0x17c)](issueCollaborationToken,this[_0x1330c5(0x196)],{'\x75\x73\x65\x72\x49\x64':_0x4ac669[_0x1330c5(0x173)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4ac669[_0x1330c5(0x16c)],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this[_0x1330c5(0x17b)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x4ac669[_0x1330c5(0x190)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x4ac669[_0x1330c5(0x179)],'\x61\x63\x63\x65\x73\x73':_0x4ac669[_0x1330c5(0x16f)],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x4ac669['\x73\x61\x6e\x64\x62\x6f\x78\x49\x64']},_0x31357b),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x135409[_0x1330c5(0x176)](Math['\x66\x6c\x6f\x6f\x72'](_0x135409[_0x1330c5(0x19b)](Date[_0x1330c5(0x177)](),0x3e8)),_0x31357b*0x3c)};}[a0_0x5d0dfe(0x1a1)](_0x355c57=a0_0x5d0dfe(0x197)){const _0x5b9893=a0_0x5d0dfe;return this[_0x5b9893(0x187)][_0x355c57]??this[_0x5b9893(0x187)]['\x66\x72\x65\x65'];}};export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};
1
+ const a0_0x175655=a0_0x224c;function a0_0x224c(_0x5457bf,_0x438e07){_0x5457bf=_0x5457bf-0x8f;const _0x1b431e=a0_0x1b43();let _0x224c8b=_0x1b431e[_0x5457bf];if(a0_0x224c['\x61\x77\x58\x4d\x75\x59']===undefined){var _0x491dd0=function(_0x4f35af){const _0x525eca='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';let _0x1127b7='',_0x2d4b87='';for(let _0x41b0b0=0x0,_0x542cee,_0x5234ec,_0x402d0d=0x0;_0x5234ec=_0x4f35af['\x63\x68\x61\x72\x41\x74'](_0x402d0d++);~_0x5234ec&&(_0x542cee=_0x41b0b0%0x4?_0x542cee*0x40+_0x5234ec:_0x5234ec,_0x41b0b0++%0x4)?_0x1127b7+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x542cee>>(-0x2*_0x41b0b0&0x6)):0x0){_0x5234ec=_0x525eca['\x69\x6e\x64\x65\x78\x4f\x66'](_0x5234ec);}for(let _0x4550da=0x0,_0x3765fe=_0x1127b7['\x6c\x65\x6e\x67\x74\x68'];_0x4550da<_0x3765fe;_0x4550da++){_0x2d4b87+='\x25'+('\x30\x30'+_0x1127b7['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4550da)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x2d4b87);};a0_0x224c['\x77\x55\x6e\x41\x79\x5a']=_0x491dd0,a0_0x224c['\x6a\x6f\x73\x4d\x44\x67']={},a0_0x224c['\x61\x77\x58\x4d\x75\x59']=!![];}const _0x3beaff=_0x1b431e[0x0],_0xe3f7a1=_0x5457bf+_0x3beaff,_0x5181cc=a0_0x224c['\x6a\x6f\x73\x4d\x44\x67'][_0xe3f7a1];return!_0x5181cc?(_0x224c8b=a0_0x224c['\x77\x55\x6e\x41\x79\x5a'](_0x224c8b),a0_0x224c['\x6a\x6f\x73\x4d\x44\x67'][_0xe3f7a1]=_0x224c8b):_0x224c8b=_0x5181cc,_0x224c8b;}(function(_0x1ebf45,_0x4d6814){const _0x655d3a=a0_0x224c,_0x4fbf63=_0x1ebf45();while(!![]){try{const _0x1b5b97=parseInt(_0x655d3a(0xbe))/0x1*(parseInt(_0x655d3a(0xa7))/0x2)+parseInt(_0x655d3a(0xbc))/0x3+-parseInt(_0x655d3a(0x96))/0x4+-parseInt(_0x655d3a(0xc4))/0x5*(parseInt(_0x655d3a(0x99))/0x6)+parseInt(_0x655d3a(0xc8))/0x7+-parseInt(_0x655d3a(0xc1))/0x8*(parseInt(_0x655d3a(0x92))/0x9)+parseInt(_0x655d3a(0xd3))/0xa;if(_0x1b5b97===_0x4d6814)break;else _0x4fbf63['push'](_0x4fbf63['shift']());}catch(_0x4c8aa7){_0x4fbf63['push'](_0x4fbf63['shift']());}}}(a0_0x1b43,0xd5cce));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function base64UrlEncode(_0x8d14d5){const _0x16fe50=a0_0x224c,_0x453dd3={'\x77\x78\x69\x63\x56':function(_0x204971,_0x30f1ca){return _0x204971===_0x30f1ca;}};return(_0x453dd3['\x77\x78\x69\x63\x56'](typeof _0x8d14d5,_0x16fe50(0x8f))?Buffer[_0x16fe50(0xaa)](_0x8d14d5):_0x8d14d5)[_0x16fe50(0xca)](_0x16fe50(0xcd))[_0x16fe50(0xad)](/\+/g,'\x2d')[_0x16fe50(0xad)](/\//g,'\x5f')[_0x16fe50(0xad)](/=+$/,'');}function decodeBase64UrlToBuffer(_0x41a56b){const _0x7df508=a0_0x224c,_0x2fbf68={'\x51\x6d\x71\x69\x68':function(_0x28e714,_0x1820db){return _0x28e714+_0x1820db;},'\x67\x63\x49\x77\x6c':function(_0x2fb4f3,_0x25b111){return _0x2fb4f3%_0x25b111;}};if(!/^[A-Za-z0-9_-]*$/[_0x7df508(0xd1)](_0x41a56b))return null;const _0x1247e7=_0x2fbf68[_0x7df508(0x9f)](_0x41a56b,'\x3d'[_0x7df508(0xba)](_0x2fbf68[_0x7df508(0xcb)](0x4-_0x2fbf68[_0x7df508(0xcb)](_0x41a56b[_0x7df508(0xb9)],0x4),0x4)));return Buffer[_0x7df508(0xaa)](_0x1247e7['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')[_0x7df508(0xad)](/_/g,'\x2f'),_0x7df508(0xcd));}function createSignature(_0x336a3f,_0x20fec7){const _0x41c7cd=a0_0x224c,_0x2a217e={'\x68\x43\x70\x6a\x4b':function(_0x10fbc2,_0x422f11){return _0x10fbc2(_0x422f11);},'\x41\x71\x70\x48\x59':_0x41c7cd(0x97)};return _0x2a217e[_0x41c7cd(0xae)](base64UrlEncode,createHmac(_0x2a217e['\x41\x71\x70\x48\x59'],_0x20fec7)[_0x41c7cd(0xc7)](_0x336a3f)[_0x41c7cd(0xb8)]());}const JWT_HEADER=base64UrlEncode(JSON[a0_0x175655(0xb1)]({'\x61\x6c\x67':'\x48\x53\x32\x35\x36','\x74\x79\x70':a0_0x175655(0x9e)}));function issueToken(_0x42d0be,_0x5778b0,_0x44d21d){const _0x4c3607=a0_0x175655,_0x169945={'\x65\x52\x54\x75\x4a':function(_0xcd1f49,_0x2bf22e){return _0xcd1f49/_0x2bf22e;},'\x6c\x7a\x4b\x76\x78':function(_0x339ce5,_0xc7a138){return _0x339ce5*_0xc7a138;},'\x55\x4c\x63\x49\x4e':function(_0x5ded8b,_0x95c07f,_0x383f05){return _0x5ded8b(_0x95c07f,_0x383f05);}},_0x32b4c2=Math[_0x4c3607(0xb6)](_0x169945[_0x4c3607(0xab)](Date[_0x4c3607(0xcf)](),0x3e8)),_0x1e42bb={..._0x5778b0,'\x69\x61\x74':_0x32b4c2,'\x65\x78\x70':_0x32b4c2+_0x169945[_0x4c3607(0x9a)](_0x44d21d,0x3c)},_0xadf14b=JWT_HEADER+'\x2e'+base64UrlEncode(JSON[_0x4c3607(0xb1)](_0x1e42bb));return _0xadf14b+'\x2e'+_0x169945[_0x4c3607(0xa0)](createSignature,_0xadf14b,_0x42d0be);}function issueReadToken(_0x14e842,_0x436746,_0x4f9f3a){const _0x5cfdbc=a0_0x175655,_0x2abcb5={'\x74\x7a\x62\x43\x44':function(_0xdb68fc,_0x344a2e,_0x43e714,_0xaf67cb){return _0xdb68fc(_0x344a2e,_0x43e714,_0xaf67cb);}};return _0x2abcb5[_0x5cfdbc(0xb3)](issueToken,_0x14e842,{..._0x436746,'\x74\x79\x70':_0x5cfdbc(0xbd)},_0x4f9f3a);}function a0_0x1b43(){const _0x220d2e=['\x6d\x74\x43\x34\x6e\x4a\x4c\x54\x42\x4d\x48\x4b\x7a\x4e\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x6f\x67\x35\x56\x42\x4d\x58\x41\x79\x71','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x43\x33\x62\x53\x41\x78\x71','\x6d\x5a\x61\x58\x6e\x4a\x61\x31\x76\x4e\x6e\x79\x74\x66\x6e\x56','\x73\x65\x72\x5a\x44\x65\x75','\x75\x78\x4c\x4c\x76\x66\x61','\x44\x78\x62\x4b\x79\x78\x72\x4c','\x6e\x64\x79\x35\x6d\x74\x79\x34\x6e\x31\x66\x33\x75\x4d\x6a\x49\x42\x47','\x7a\x32\x76\x30\x76\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x7a\x32\x6e\x6a\x44\x32\x57','\x75\x78\x62\x6a\x42\x32\x4f','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x79\x32\x39\x53\x42\x67\x66\x49\x42\x33\x6a\x48\x44\x67\x4c\x56\x42\x47','\x42\x4d\x39\x33','\x43\x68\x6a\x56\x41\x4d\x76\x4a\x44\x65\x4c\x4b','\x44\x67\x76\x5a\x44\x61','\x44\x77\x44\x78\x76\x75\x71','\x6d\x4a\x71\x57\x6d\x5a\x79\x5a\x6f\x74\x62\x53\x43\x65\x44\x75\x77\x76\x69','\x43\x67\x66\x59\x43\x32\x75','\x77\x4e\x4c\x57\x43\x77\x65','\x43\x33\x72\x59\x41\x77\x35\x4e','\x43\x68\x6a\x56','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x6d\x74\x65\x35\x6e\x4a\x6d\x34\x6e\x74\x6e\x58\x73\x32\x4c\x35\x41\x4d\x69','\x7a\x67\x66\x4e\x7a\x66\x47','\x7a\x4e\x6a\x4c\x7a\x71','\x42\x30\x6a\x6d\x45\x68\x4f','\x6d\x4a\x75\x34\x6d\x64\x69\x30\x6f\x65\x48\x6d\x42\x77\x35\x32\x75\x61','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x42\x77\x66\x34','\x6d\x74\x79\x59\x7a\x76\x66\x53\x76\x31\x44\x6d','\x42\x68\x50\x6c\x44\x4e\x47','\x73\x66\x6d\x59\x6e\x74\x79','\x45\x76\x6e\x6d\x74\x65\x69','\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x73\x4c\x44\x75','\x75\x77\x31\x58\x41\x77\x47','\x76\x75\x58\x4a\x73\x75\x34','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x79\x32\x58\x56\x79\x32\x54\x74\x41\x32\x76\x33\x75\x32\x76\x4a\x42\x32\x35\x4b\x43\x57','\x7a\x77\x35\x30\x7a\x78\x6a\x57\x43\x4d\x4c\x5a\x7a\x71','\x77\x68\x62\x7a\x73\x68\x79','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x43\x75\x54\x7a\x71\x32\x34','\x6d\x74\x6d\x57\x71\x30\x4c\x75\x7a\x30\x58\x48','\x7a\x4b\x58\x52\x73\x4c\x71','\x41\x78\x6e\x5a\x44\x77\x76\x64\x42\x32\x58\x53\x79\x77\x6a\x56\x43\x4d\x66\x30\x41\x77\x39\x55','\x7a\x4e\x6a\x56\x42\x71','\x7a\x76\x6a\x75\x44\x75\x4f','\x79\x77\x58\x4e','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x41\x65\x6e\x57\x41\x4b\x53','\x75\x78\x6a\x36\x76\x77\x34','\x75\x4c\x76\x30\x73\x75\x69','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x44\x68\x50\x49\x71\x30\x71','\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x7a\x78\x48\x57','\x7a\x4d\x58\x56\x42\x33\x69','\x79\x32\x48\x6f\x43\x4c\x75','\x7a\x67\x4c\x4e\x7a\x78\x6e\x30','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x43\x4d\x76\x57\x7a\x77\x66\x30','\x44\x67\x4c\x4c\x43\x47','\x6e\x5a\x6d\x57\x6d\x4a\x69\x58\x76\x65\x6e\x36\x7a\x32\x44\x41','\x43\x4d\x76\x48\x7a\x61'];a0_0x1b43=function(){return _0x220d2e;};return a0_0x1b43();}function issueSessionScopedToken(_0x320839,_0x3c16a4,_0x167967){const _0x232093=a0_0x175655,_0x4e5296={'\x51\x79\x65\x54\x50':function(_0x11ee7e,_0x2d779e,_0x5c5ec1,_0x45ba6f){return _0x11ee7e(_0x2d779e,_0x5c5ec1,_0x45ba6f);}};return _0x4e5296[_0x232093(0xc6)](issueReadToken,_0x320839,_0x3c16a4,_0x167967);}function issueProjectScopedToken(_0x28f8a2,_0x279a43,_0x28046e){const _0x221afa=a0_0x175655,_0x5cba29={'\x63\x68\x4e\x72\x55':function(_0x4f7e1e,_0x1a9cb4,_0x205300,_0x33da05){return _0x4f7e1e(_0x1a9cb4,_0x205300,_0x33da05);}};return _0x5cba29[_0x221afa(0xb7)](issueReadToken,_0x28f8a2,_0x279a43,_0x28046e);}function issueBatchScopedToken(_0x1bbf52,_0x38dacb,_0x4c9016){return issueReadToken(_0x1bbf52,_0x38dacb,_0x4c9016);}function issueCollaborationToken(_0x439c91,_0x260b79,_0x20938f){const _0x3cd024=a0_0x175655;return issueToken(_0x439c91,{'\x73\x75\x62':_0x260b79[_0x3cd024(0xa1)],'\x73\x69\x64':_0x260b79[_0x3cd024(0xc2)],'\x70\x69\x64':_0x260b79[_0x3cd024(0xa5)],'\x63\x69\x64':_0x260b79[_0x3cd024(0xbf)],'\x74\x79\x70':_0x3cd024(0xce),'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x260b79[_0x3cd024(0xd0)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x260b79[_0x3cd024(0xc0)],'\x61\x63\x63\x65\x73\x73':_0x260b79[_0x3cd024(0xb2)]},_0x20938f);}function unsafeDecodeToken(_0x5e394d){const _0x1590c7=a0_0x175655,_0x569226={'\x51\x72\x7a\x55\x6e':function(_0x5325c8,_0x3b6b4b){return _0x5325c8!==_0x3b6b4b;},'\x58\x70\x59\x48\x76':function(_0x48cee5,_0x46327d){return _0x48cee5-_0x46327d;},'\x44\x54\x75\x64\x65':function(_0x4b6ece,_0x31b7ee){return _0x4b6ece%_0x31b7ee;}};try{const _0x2969d8=_0x5e394d[_0x1590c7(0xc3)]('\x2e');if(_0x569226[_0x1590c7(0xaf)](_0x2969d8[_0x1590c7(0xb9)],0x3))return null;const _0x142346=_0x2969d8[0x1]+'\x3d'[_0x1590c7(0xba)](_0x569226[_0x1590c7(0xa4)](0x4,_0x569226['\x44\x54\x75\x64\x65'](_0x2969d8[0x1][_0x1590c7(0xb9)],0x4))%0x4),_0x45a65c=Buffer[_0x1590c7(0xaa)](_0x142346[_0x1590c7(0xad)](/-/g,'\x2b')['\x72\x65\x70\x6c\x61\x63\x65'](/_/g,'\x2f'),_0x1590c7(0xcd))[_0x1590c7(0xca)]();return JSON[_0x1590c7(0xd4)](_0x45a65c);}catch{return null;}}function verifyToken(_0x4be020,_0x12d45a,_0x19d01f={}){const _0x232bb9=a0_0x175655,_0x66d3a4={'\x71\x4b\x59\x43\x6e':function(_0x3c62aa,_0x30f6bc){return _0x3c62aa||_0x30f6bc;},'\x52\x55\x74\x49\x42':function(_0xaf4150,_0x2e6256){return _0xaf4150%_0x2e6256;},'\x75\x67\x57\x55\x44':function(_0x30930d,_0x596ac2){return _0x30930d(_0x596ac2);},'\x64\x61\x67\x64\x58':function(_0x35511f,_0x2dd4be){return _0x35511f||_0x2dd4be;},'\x79\x53\x4c\x4c\x42':function(_0x342b99,_0x45b18e){return _0x342b99!==_0x45b18e;},'\x54\x6d\x50\x75\x54':function(_0xd3ab69,_0x3ef205,_0x42be2e){return _0xd3ab69(_0x3ef205,_0x42be2e);},'\x51\x70\x49\x6f\x6a':function(_0x33c7b4,_0x4b3e96){return _0x33c7b4(_0x4b3e96);},'\x48\x44\x73\x74\x45':_0x232bb9(0x91)};try{const _0x18c0f6=_0x4be020[_0x232bb9(0xc3)]('\x2e');if(_0x18c0f6[_0x232bb9(0xb9)]!==0x3)return null;const [_0x321dd4,_0x198c79,_0x39ebb2]=_0x18c0f6;if(_0x66d3a4[_0x232bb9(0xa6)](!_0x321dd4,!_0x198c79)||!_0x39ebb2)return null;let _0x52440e;try{const _0x5a08a2=_0x321dd4+'\x3d'['\x72\x65\x70\x65\x61\x74']((0x4-_0x66d3a4[_0x232bb9(0xb0)](_0x321dd4[_0x232bb9(0xb9)],0x4))%0x4),_0x425ec8=Buffer[_0x232bb9(0xaa)](_0x5a08a2[_0x232bb9(0xad)](/-/g,'\x2b')[_0x232bb9(0xad)](/_/g,'\x2f'),'\x62\x61\x73\x65\x36\x34')[_0x232bb9(0xca)]();_0x52440e=JSON[_0x232bb9(0xd4)](_0x425ec8);}catch{return null;}if(_0x52440e[_0x232bb9(0xac)]!==_0x232bb9(0x9b))return null;const _0x1a7a79=createSignature(_0x321dd4+'\x2e'+_0x198c79,_0x12d45a),_0x44ebed=_0x66d3a4['\x75\x67\x57\x55\x44'](decodeBase64UrlToBuffer,_0x39ebb2),_0xa8841b=_0x66d3a4[_0x232bb9(0xd2)](decodeBase64UrlToBuffer,_0x1a7a79);if(_0x66d3a4[_0x232bb9(0x93)](!_0x44ebed,!_0xa8841b))return null;if(_0x66d3a4['\x79\x53\x4c\x4c\x42'](_0x44ebed[_0x232bb9(0xb9)],_0xa8841b[_0x232bb9(0xb9)]))return null;if(!_0x66d3a4['\x54\x6d\x50\x75\x54'](timingSafeEqual,_0x44ebed,_0xa8841b))return null;const _0x49cbf1=_0x66d3a4[_0x232bb9(0xcc)](unsafeDecodeToken,_0x4be020);if(!_0x49cbf1)return null;const _0x32a4e5=Math['\x66\x6c\x6f\x6f\x72'](Date['\x6e\x6f\x77']()/0x3e8),_0x1fea6b=Math[_0x232bb9(0x98)](0x0,_0x19d01f[_0x232bb9(0xa2)]??0x0);if(_0x66d3a4[_0x232bb9(0x9c)](typeof _0x49cbf1[_0x232bb9(0xb5)],_0x66d3a4[_0x232bb9(0xc5)])||_0x49cbf1[_0x232bb9(0xb5)]+_0x1fea6b<_0x32a4e5)return null;return _0x49cbf1;}catch{return null;}}function getTokenTTL(_0x470078){const _0x58fd13=a0_0x175655,_0x3d43d5={'\x57\x78\x68\x43\x71':function(_0xb0402,_0x474311){return _0xb0402-_0x474311;}},_0x360b8a=Math['\x66\x6c\x6f\x6f\x72'](Date[_0x58fd13(0xcf)]()/0x3e8);return _0x3d43d5['\x57\x78\x68\x43\x71'](_0x470078[_0x58fd13(0xb5)],_0x360b8a);}function isTokenExpiringSoon(_0x31bfcc,_0x2c1c56=0x3c){const _0x8c11e4=a0_0x175655,_0x3f07b8={'\x5a\x79\x70\x71\x61':function(_0x3127fa,_0x5ca6fc){return _0x3127fa<=_0x5ca6fc;}};return _0x3f07b8[_0x8c11e4(0xd5)](getTokenTTL(_0x31bfcc),_0x2c1c56);}var ProductTokenIssuer=class{[a0_0x175655(0xa5)];[a0_0x175655(0x9d)];[a0_0x175655(0xb4)];constructor(_0x28c3e8){const _0x349270=a0_0x175655;this[_0x349270(0xa5)]=_0x28c3e8[_0x349270(0xa5)],this[_0x349270(0x9d)]=_0x28c3e8[_0x349270(0x9d)],this[_0x349270(0xb4)]={'\x66\x72\x65\x65':_0x28c3e8[_0x349270(0xb4)]?.[_0x349270(0x94)]??0xf,'\x70\x72\x6f':_0x28c3e8[_0x349270(0xb4)]?.[_0x349270(0x90)]??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x28c3e8[_0x349270(0xb4)]?.[_0x349270(0xa3)]??0x1e0};}['\x69\x73\x73\x75\x65'](_0x2c9610){const _0x35340d=a0_0x175655,_0x3f10a6={'\x6f\x42\x4c\x78\x7a':function(_0x2fecb7,_0x2c9668){return _0x2fecb7+_0x2c9668;}},_0x474df0=_0x2c9610[_0x35340d(0xbb)]??_0x35340d(0x94),_0x4b0c0c=this[_0x35340d(0xb4)][_0x474df0]??this[_0x35340d(0xb4)]['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74'],{'\x73\x75\x62':_0x2c9610['\x75\x73\x65\x72\x49\x64'],'\x73\x69\x64':_0x2c9610[_0x35340d(0xc2)],'\x70\x69\x64':this[_0x35340d(0xa5)],'\x63\x69\x64':_0x2c9610[_0x35340d(0xbf)]},_0x4b0c0c),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x3f10a6[_0x35340d(0x95)](Math['\x66\x6c\x6f\x6f\x72'](Date['\x6e\x6f\x77']()/0x3e8),_0x4b0c0c*0x3c)};}[a0_0x175655(0xa9)](_0x529324){const _0x45f1af=a0_0x175655,_0x535bda={'\x66\x4c\x6b\x4a\x54':function(_0x4d74d5,_0x167b0d){return _0x4d74d5*_0x167b0d;}},_0x5db06f=_0x529324[_0x45f1af(0xbb)]??_0x45f1af(0x94),_0x53ff66=this[_0x45f1af(0xb4)][_0x5db06f]??this[_0x45f1af(0xb4)][_0x45f1af(0x94)];return{'\x74\x6f\x6b\x65\x6e':issueCollaborationToken(this[_0x45f1af(0x9d)],{'\x75\x73\x65\x72\x49\x64':_0x529324[_0x45f1af(0xa1)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x529324[_0x45f1af(0xc2)],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this[_0x45f1af(0xa5)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x529324[_0x45f1af(0xd0)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x529324[_0x45f1af(0xc0)],'\x61\x63\x63\x65\x73\x73':_0x529324[_0x45f1af(0xb2)],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x529324[_0x45f1af(0xbf)]},_0x53ff66),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math[_0x45f1af(0xb6)](Date[_0x45f1af(0xcf)]()/0x3e8)+_0x535bda[_0x45f1af(0xa8)](_0x53ff66,0x3c)};}[a0_0x175655(0xc9)](_0x242110='\x66\x72\x65\x65'){const _0x4f773e=a0_0x175655;return this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x242110]??this[_0x4f773e(0xb4)][_0x4f773e(0x94)];}};export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};