@tangle-network/sandbox 0.0.0-develop.20260610142542.1e07a05 → 0.0.0-develop.20260610202809.ba67aba

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 { B as CodeLanguage, H as CodeResultPart, R as CodeExecutionOptions, n as SandboxInstance, z as CodeExecutionResult } from "../sandbox-CqlT4WnD.js";
2
- import { i as SandboxClient } from "../client-jw5nS9p9.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
@@ -67,6 +67,8 @@ declare const TOOL_SPECS: {
67
67
  max_results?: number;
68
68
  }, unknown>;
69
69
  };
70
+ /** Canonical ordered list. Packs use this to emit tools in a stable order. */
71
+ declare const ALL_TOOL_SPECS: ToolSpec[];
70
72
  //#endregion
71
73
  //#region src/agent/mcp-local.d.ts
72
74
  interface McpServerOptions {
@@ -252,6 +254,7 @@ declare const FLEET_TOOL_SPECS: {
252
254
  }, unknown>;
253
255
  };
254
256
  type FleetToolName = keyof typeof FLEET_TOOL_SPECS;
257
+ declare const ALL_FLEET_TOOL_SPECS: FleetToolSpec[];
255
258
  //#endregion
256
259
  //#region src/agent/tools/fleet/index.d.ts
257
260
  interface FleetToolPackOptions {
@@ -315,6 +318,94 @@ declare function openaiFleetTools(client: SandboxClient, options?: FleetToolPack
315
318
  declare function vercelAiFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
316
319
  declare function mastraFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
317
320
  //#endregion
321
+ //#region src/agent/tools/lifecycle/_specs.d.ts
322
+ interface LifecycleToolHandlerContext {
323
+ client: SandboxClient;
324
+ }
325
+ interface LifecycleToolSpec<TArgs = Record<string, unknown>, TResult = unknown> {
326
+ name: string;
327
+ description: string;
328
+ inputSchema: ToolJSONSchema;
329
+ makeHandler: (ctx: LifecycleToolHandlerContext) => (args: TArgs) => Promise<TResult>;
330
+ }
331
+ declare const LIFECYCLE_TOOL_SPECS: {
332
+ readonly sandbox_create: LifecycleToolSpec<{
333
+ environment?: string;
334
+ name?: string;
335
+ }, unknown>;
336
+ readonly sandbox_run_command: LifecycleToolSpec<{
337
+ sandbox_id: string;
338
+ command: string;
339
+ cwd?: string;
340
+ timeout_ms?: number;
341
+ }, unknown>;
342
+ readonly sandbox_destroy: LifecycleToolSpec<{
343
+ sandbox_id: string;
344
+ }, unknown>;
345
+ };
346
+ type LifecycleToolName = keyof typeof LIFECYCLE_TOOL_SPECS;
347
+ declare const ALL_LIFECYCLE_TOOL_SPECS: LifecycleToolSpec[];
348
+ //#endregion
349
+ //#region src/agent/tools/lifecycle/index.d.ts
350
+ interface LifecycleToolPackOptions {
351
+ /** Which lifecycle tools to expose. Defaults to all three. */
352
+ allow?: LifecycleToolName[];
353
+ }
354
+ interface AnthropicLifecycleTool {
355
+ name: string;
356
+ description: string;
357
+ input_schema: {
358
+ type: "object";
359
+ properties: Record<string, unknown>;
360
+ required?: string[];
361
+ additionalProperties?: boolean;
362
+ };
363
+ }
364
+ interface AnthropicLifecycleToolPack {
365
+ tools: AnthropicLifecycleTool[];
366
+ handleToolUse(block: {
367
+ type: "tool_use";
368
+ id: string;
369
+ name: string;
370
+ input: Record<string, unknown>;
371
+ }): Promise<{
372
+ type: "tool_result";
373
+ tool_use_id: string;
374
+ content: string;
375
+ is_error?: boolean;
376
+ }>;
377
+ }
378
+ declare function anthropicLifecycleTools(client: SandboxClient, options?: LifecycleToolPackOptions): AnthropicLifecycleToolPack;
379
+ interface OpenAILifecycleTool {
380
+ type: "function";
381
+ function: {
382
+ name: string;
383
+ description: string;
384
+ parameters: {
385
+ type: "object";
386
+ properties: Record<string, unknown>;
387
+ required?: string[];
388
+ additionalProperties?: boolean;
389
+ };
390
+ };
391
+ }
392
+ interface OpenAILifecycleToolPack {
393
+ tools: OpenAILifecycleTool[];
394
+ handleToolCall(call: {
395
+ id: string;
396
+ type?: "function";
397
+ function: {
398
+ name: string;
399
+ arguments: string;
400
+ };
401
+ }): Promise<{
402
+ role: "tool";
403
+ tool_call_id: string;
404
+ content: string;
405
+ }>;
406
+ }
407
+ declare function openaiLifecycleTools(client: SandboxClient, options?: LifecycleToolPackOptions): OpenAILifecycleToolPack;
408
+ //#endregion
318
409
  //#region src/agent/tools/mastra.d.ts
319
410
  interface MastraToolPackOptions {
320
411
  allow?: ToolName[];
@@ -430,4 +521,4 @@ type AnyTool = unknown;
430
521
  */
431
522
  declare function vercelAiTools(box: SandboxInstance, options?: VercelAiToolPackOptions): Promise<Record<string, AnyTool>>;
432
523
  //#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 };
524
+ export { ALL_FLEET_TOOL_SPECS, ALL_LIFECYCLE_TOOL_SPECS, ALL_TOOL_SPECS, 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, FLEET_TOOL_SPECS, type FleetToolHandlerContext, type FleetToolName, type FleetToolPackOptions, type FleetToolSpec, LIFECYCLE_TOOL_SPECS, type LifecycleToolHandlerContext, type LifecycleToolName, type LifecycleToolPackOptions, type LifecycleToolSpec, type MastraToolPackOptions, type McpServerHandle, type McpServerOptions, type OpenAIFleetTool, type OpenAIFleetToolPack, type OpenAILifecycleTool, type OpenAILifecycleToolPack, type OpenAITool, type OpenAIToolCall, type OpenAIToolPack, type OpenAIToolPackOptions, type OpenAIToolResultMessage, TOOL_SPECS, type ToolHandlerContext, type ToolName, type ToolSpec, type VercelAiToolPackOptions, anthropicFleetTools, anthropicLifecycleTools, anthropicTools, createMcpServer, mastraFleetTools, mastraTools, openaiFleetTools, openaiLifecycleTools, openaiTools, runCode, vercelAiFleetTools, vercelAiTools };
@@ -1 +1 @@
1
- const a0_0x3f0607=a0_0x2459;(function(_0xe44400,_0x8c520e){const _0x201ab7=a0_0x2459,_0x252686=_0xe44400();while(!![]){try{const _0x192e72=parseInt(_0x201ab7(0x224))/0x1+parseInt(_0x201ab7(0x1b2))/0x2*(-parseInt(_0x201ab7(0x222))/0x3)+-parseInt(_0x201ab7(0x192))/0x4*(parseInt(_0x201ab7(0x190))/0x5)+parseInt(_0x201ab7(0x1c1))/0x6*(-parseInt(_0x201ab7(0x1ef))/0x7)+parseInt(_0x201ab7(0x1ea))/0x8*(parseInt(_0x201ab7(0x1fc))/0x9)+-parseInt(_0x201ab7(0x1f1))/0xa+-parseInt(_0x201ab7(0x1f9))/0xb*(-parseInt(_0x201ab7(0x1cc))/0xc);if(_0x192e72===_0x8c520e)break;else _0x252686['push'](_0x252686['shift']());}catch(_0x33926a){_0x252686['push'](_0x252686['shift']());}}}(a0_0x1ecd,0x1fe56));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':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1d8),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x65\x6e\x75\x6d':[a0_0x3f0607(0x20e),a0_0x3f0607(0x18f),a0_0x3f0607(0x1b8),'\x62\x61\x73\x68'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1af)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x20c)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x3f0607(0x1f4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1e3)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x6c\x61\x6e\x67\x75\x61\x67\x65',a0_0x3f0607(0x1d3)],'\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:_0x32a177,sessionId:_0x4ffab8})=>async _0x3e2c32=>{const _0x2907ba=a0_0x3f0607;return await _0x32a177['\x72\x75\x6e\x43\x6f\x64\x65'](_0x3e2c32['\x6c\x61\x6e\x67\x75\x61\x67\x65'],_0x3e2c32[_0x2907ba(0x1d3)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4ffab8,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x3e2c32[_0x2907ba(0x208)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x207),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1c6),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\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_0x3f0607(0x1a2)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1dd)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x3f0607(0x1f4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1d5)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3f0607(0x205)],'\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:_0x238922,sessionId:_0x290f92})=>async _0x55973d=>{const _0xe33bca=a0_0x3f0607;return await _0x238922[_0xe33bca(0x21a)](_0x55973d[_0xe33bca(0x205)],{'\x63\x77\x64':_0x55973d[_0xe33bca(0x1cb)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x55973d[_0xe33bca(0x208)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x290f92});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x1ba),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x193),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3f0607(0x19c)],'\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:_0x2a7b85,sessionId:_0x12b2ba})=>async _0x153b8f=>{const _0x35432c=a0_0x3f0607;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x2a7b85['\x72\x65\x61\x64'](_0x153b8f[_0x35432c(0x19c)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x12b2ba})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x20a),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1f3),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3)},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x201)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x70\x61\x74\x68',a0_0x3f0607(0x1ad)],'\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:_0x1e1e9d})=>async _0x378891=>{const _0x2683a4=a0_0x3f0607;return await _0x1e1e9d[_0x2683a4(0x1a5)](_0x378891[_0x2683a4(0x19c)],_0x378891[_0x2683a4(0x1ad)]),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x223),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x200),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3f0607(0x19c)],'\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:_0x5139f3})=>async _0x361ac2=>{const _0x447dc6=a0_0x3f0607;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x5139f3['\x66\x73'][_0x447dc6(0x1e5)](_0x361ac2[_0x447dc6(0x19c)])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x1d6),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x202),'\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':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1a0)},'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\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':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1ce)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x70\x61\x74\x74\x65\x72\x6e'],'\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:_0x3b1aaf})=>async _0x5ac7c4=>{const _0x4cd54c=a0_0x3f0607,_0x426e62=[],_0x2fde32=_0x5ac7c4[_0x4cd54c(0x1d2)]??0x64;for await(const _0x4be6cd of _0x3b1aaf[_0x4cd54c(0x1f8)](_0x5ac7c4[_0x4cd54c(0x1e4)],{'\x63\x77\x64':_0x5ac7c4[_0x4cd54c(0x19c)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x2fde32})){_0x426e62[_0x4cd54c(0x18e)](_0x4be6cd);if(_0x426e62[_0x4cd54c(0x1f5)]>=_0x2fde32)break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x426e62};}}},ALL_TOOL_SPECS=Object[a0_0x3f0607(0x18c)](TOOL_SPECS);function selectSpecs(_0xcace4e){const _0x5b0546=a0_0x3f0607;if(!_0xcace4e||_0xcace4e[_0x5b0546(0x1f5)]===0x0)return ALL_TOOL_SPECS;const _0x2901e1=new Set(_0xcace4e);return Object[_0x5b0546(0x225)](TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0x15c832=>_0x2901e1[_0x5b0546(0x1bc)](_0x15c832))[_0x5b0546(0x1c3)](_0x417aee=>TOOL_SPECS[_0x417aee]);}function serializeToolResult(_0x1f95c2){const _0x5cec23=a0_0x3f0607;if(typeof _0x1f95c2===_0x5cec23(0x1a3))return _0x1f95c2;try{return JSON[_0x5cec23(0x1b5)](_0x1f95c2,null,0x2);}catch{return String(_0x1f95c2);}}const SDK_VERSION=((()=>{const _0xce4143=a0_0x3f0607,_0x21d025={'\x52\x77\x73\x48\x70':function(_0x375089,_0x56cec7){return _0x375089(_0x56cec7);},'\x75\x68\x70\x72\x69':'\x2e\x2e\x2f\x2e\x2e\x2f\x70\x61\x63\x6b\x61\x67\x65\x2e\x6a\x73\x6f\x6e'};try{return _0x21d025[_0xce4143(0x216)](createRequire,import.meta.url)(_0x21d025[_0xce4143(0x221)])[_0xce4143(0x18a)]??_0xce4143(0x19a);}catch{return _0xce4143(0x19a);}})());async function createMcpServer(_0x263f4d,_0x5c63d4={}){const _0x5202f6=a0_0x3f0607,_0x515da6={'\x47\x56\x4f\x62\x45':'\x74\x65\x78\x74','\x78\x73\x4f\x67\x6d':_0x5202f6(0x1e6),'\x4c\x7a\x63\x58\x74':'\x74\x61\x6e\x67\x6c\x65\x2d\x73\x61\x6e\x64\x62\x6f\x78'};let _0xe7c290,_0x5df06e;try{[_0xe7c290,_0x5df06e]=await Promise[_0x5202f6(0x1fe)]([import(_0x515da6[_0x5202f6(0x1d7)]),import(_0x5202f6(0x1f6))]);}catch{throw new Error(_0x5202f6(0x211));}const _0x660251=selectSpecs(_0x5c63d4[_0x5202f6(0x20f)]),_0x4a652a={'\x62\x6f\x78':_0x263f4d,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x5c63d4[_0x5202f6(0x219)]},_0xb94556=new Map();for(const _0xaacc39 of _0x660251)_0xb94556[_0x5202f6(0x1e1)](_0xaacc39[_0x5202f6(0x1a1)],_0xaacc39['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x4a652a));const _0x48fa0d=new _0xe7c290[(_0x5202f6(0x1f0))]({'\x6e\x61\x6d\x65':_0x5c63d4['\x6e\x61\x6d\x65']??_0x515da6[_0x5202f6(0x21f)],'\x76\x65\x72\x73\x69\x6f\x6e':_0x5c63d4[_0x5202f6(0x18a)]??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x48fa0d[_0x5202f6(0x20b)](_0x5df06e[_0x5202f6(0x209)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x660251[_0x5202f6(0x1c3)](_0x3d1d30=>({'\x6e\x61\x6d\x65':_0x3d1d30[_0x5202f6(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3d1d30[_0x5202f6(0x197)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3d1d30[_0x5202f6(0x1e9)]}))})),_0x48fa0d[_0x5202f6(0x20b)](_0x5df06e[_0x5202f6(0x1c4)],async _0x1ded75=>{const _0x3cdf0f=_0x5202f6,_0x2a0e67=_0x1ded75,_0x1fb924=_0xb94556[_0x3cdf0f(0x1fb)](_0x2a0e67['\x70\x61\x72\x61\x6d\x73'][_0x3cdf0f(0x1a1)]);if(!_0x1fb924)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x515da6[_0x3cdf0f(0x191)],'\x74\x65\x78\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x2a0e67['\x70\x61\x72\x61\x6d\x73']['\x6e\x61\x6d\x65']}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x515da6[_0x3cdf0f(0x191)],'\x74\x65\x78\x74':serializeToolResult(await _0x1fb924(_0x2a0e67[_0x3cdf0f(0x226)][_0x3cdf0f(0x21c)]??{}))}]};}catch(_0x51ff55){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x3cdf0f(0x1d9),'\x74\x65\x78\x74':_0x51ff55 instanceof Error?_0x51ff55[_0x3cdf0f(0x1d4)]:String(_0x51ff55)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x48fa0d,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x4ec31b=>_0x48fa0d[_0x5202f6(0x1b3)](_0x4ec31b),'\x63\x6c\x6f\x73\x65':()=>_0x48fa0d[_0x5202f6(0x214)]()};}function runCode(_0x4873a1,_0x1a08e2,_0x589d2c,_0xa1f950){const _0x39ca44=a0_0x3f0607;return _0x4873a1[_0x39ca44(0x1e7)](_0x1a08e2,_0x589d2c,_0xa1f950);}function a0_0x2459(_0x1c7efe,_0x1c4ec3){_0x1c7efe=_0x1c7efe-0x18a;const _0x1ecde3=a0_0x1ecd();let _0x2459fb=_0x1ecde3[_0x1c7efe];if(a0_0x2459['\x42\x47\x52\x59\x66\x75']===undefined){var _0x142087=function(_0x940c71){const _0x2e09ed='\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 _0x32c289='',_0x53168d='';for(let _0x184578=0x0,_0x5f4fba,_0x93db3e,_0x5a0202=0x0;_0x93db3e=_0x940c71['\x63\x68\x61\x72\x41\x74'](_0x5a0202++);~_0x93db3e&&(_0x5f4fba=_0x184578%0x4?_0x5f4fba*0x40+_0x93db3e:_0x93db3e,_0x184578++%0x4)?_0x32c289+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x5f4fba>>(-0x2*_0x184578&0x6)):0x0){_0x93db3e=_0x2e09ed['\x69\x6e\x64\x65\x78\x4f\x66'](_0x93db3e);}for(let _0x234831=0x0,_0x1d9c8d=_0x32c289['\x6c\x65\x6e\x67\x74\x68'];_0x234831<_0x1d9c8d;_0x234831++){_0x53168d+='\x25'+('\x30\x30'+_0x32c289['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x234831)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x53168d);};a0_0x2459['\x61\x6b\x69\x4c\x7a\x69']=_0x142087,a0_0x2459['\x46\x75\x74\x4c\x44\x78']={},a0_0x2459['\x42\x47\x52\x59\x66\x75']=!![];}const _0x5868a9=_0x1ecde3[0x0],_0x5a844f=_0x1c7efe+_0x5868a9,_0x5833bf=a0_0x2459['\x46\x75\x74\x4c\x44\x78'][_0x5a844f];return!_0x5833bf?(_0x2459fb=a0_0x2459['\x61\x6b\x69\x4c\x7a\x69'](_0x2459fb),a0_0x2459['\x46\x75\x74\x4c\x44\x78'][_0x5a844f]=_0x2459fb):_0x2459fb=_0x5833bf,_0x2459fb;}function anthropicTools(_0x4038be,_0x36013a={}){const _0x506056=a0_0x3f0607,_0x149454={'\x5a\x6a\x55\x62\x6b':_0x506056(0x1a9),'\x58\x68\x63\x68\x59':function(_0x313bab,_0x3a28db){return _0x313bab(_0x3a28db);},'\x70\x56\x78\x41\x4f':function(_0x4cafbc,_0x34f503){return _0x4cafbc(_0x34f503);}},_0x37e5a3=_0x149454[_0x506056(0x1db)](selectSpecs,_0x36013a[_0x506056(0x20f)]),_0x5238a5={'\x62\x6f\x78':_0x4038be,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x36013a[_0x506056(0x219)]},_0x221d87=new Map();for(const _0x2a8ae7 of _0x37e5a3)_0x221d87['\x73\x65\x74'](_0x2a8ae7[_0x506056(0x1a1)],_0x2a8ae7['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x5238a5));const _0x3cb22d=_0x37e5a3['\x6d\x61\x70'](_0x2b72f6=>({'\x6e\x61\x6d\x65':_0x2b72f6[_0x506056(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2b72f6[_0x506056(0x197)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x2b72f6['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}));async function _0x16e830(_0x13df07){const _0x50b3b1=_0x506056,_0x4e0e56=_0x221d87[_0x50b3b1(0x1fb)](_0x13df07['\x6e\x61\x6d\x65']);if(!_0x4e0e56)return{'\x74\x79\x70\x65':_0x149454['\x5a\x6a\x55\x62\x6b'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x13df07['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x13df07[_0x50b3b1(0x1a1)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x1c4a08=await _0x4e0e56(_0x13df07['\x69\x6e\x70\x75\x74']);return{'\x74\x79\x70\x65':_0x50b3b1(0x1a9),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x13df07['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':toAnthropicContent(_0x1c4a08)};}catch(_0x2732fc){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':_0x13df07['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x2732fc instanceof Error?_0x2732fc[_0x50b3b1(0x1d4)]:_0x149454['\x58\x68\x63\x68\x59'](String,_0x2732fc),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x114abe(_0x192f69){const _0x25912f=_0x506056,_0x12f624=_0x192f69[_0x25912f(0x1d1)](_0x4c658f=>typeof _0x4c658f===_0x25912f(0x18b)&&_0x4c658f!==null&&_0x4c658f[_0x25912f(0x213)]===_0x25912f(0x220));return Promise['\x61\x6c\x6c'](_0x12f624[_0x25912f(0x1c3)](_0x16e830));}return{'\x74\x6f\x6f\x6c\x73':_0x3cb22d,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x16e830,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x114abe};}function a0_0x1ecd(){const _0x8b9be4=['\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','\x45\x67\x72\x41\x75\x33\x79','\x74\x68\x50\x4a\x77\x68\x71','\x44\x67\x39\x56\x42\x66\x39\x31\x43\x32\x75','\x44\x77\x48\x57\x43\x4d\x4b','\x6e\x4a\x71\x33\x6d\x5a\x66\x71\x45\x76\x6a\x54\x43\x75\x47','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x53\x41\x78\x6e\x30','\x6d\x4a\x75\x57\x6e\x74\x62\x6a\x7a\x33\x62\x52\x43\x33\x47','\x41\x32\x76\x35\x43\x57','\x43\x67\x66\x59\x79\x77\x31\x5a','\x7a\x4e\x6a\x56\x42\x71','\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x44\x4d\x66\x53\x44\x77\x76\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','\x43\x68\x76\x5a\x41\x61','\x42\x4d\x39\x4b\x7a\x71','\x6e\x78\x50\x32\x75\x67\x31\x7a\x72\x71','\x72\x31\x7a\x70\x79\x4b\x75','\x6d\x74\x65\x58\x6e\x4a\x4b\x32\x7a\x75\x72\x32\x43\x32\x76\x74','\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','\x7a\x65\x76\x75\x79\x4e\x79','\x7a\x67\x4c\x5a\x43\x67\x66\x30\x79\x32\x48\x66\x45\x67\x76\x4a','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\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','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x6d\x63\x34\x57\x6c\x4a\x61','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x43\x67\x66\x30\x41\x61','\x42\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x7a\x4d\x39\x59\x42\x77\x66\x30','\x44\x67\x39\x56\x42\x61','\x75\x4d\x76\x4e\x7a\x78\x47\x47\x43\x67\x66\x30\x44\x67\x76\x59\x42\x49\x34','\x42\x4d\x66\x54\x7a\x71','\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\x33\x72\x59\x41\x77\x35\x4e','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x44\x33\x6a\x50\x44\x67\x75','\x79\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x76\x46\x42\x32\x35\x46\x7a\x78\x6a\x59\x42\x33\x69','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x79\x4d\x39\x56\x42\x67\x76\x48\x42\x47','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\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','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x44\x76\x44\x67\x44\x30\x47','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\x43\x78\x62\x4b\x77\x65\x4b','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x6d\x4e\x6e\x4a\x45\x76\x62\x6d\x75\x57','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x74\x30\x58\x4a\x73\x4e\x47','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x77\x4c\x48\x7a\x74\x31\x43','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\x44\x61','\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\x59\x7a\x77\x66\x4b','\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','\x41\x67\x66\x5a','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x41\x77\x31\x48\x7a\x32\x75\x56\x43\x67\x35\x4e','\x41\x77\x31\x48\x7a\x32\x75','\x79\x78\x6a\x59\x79\x78\x4b','\x6d\x74\x48\x74\x71\x78\x44\x4b\x44\x4b\x47','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x42\x77\x66\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','\x45\x66\x62\x6f\x43\x31\x6d','\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','\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','\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','\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','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x79\x33\x44\x4b','\x6d\x4a\x65\x34\x6e\x66\x50\x4f\x75\x4d\x76\x6f\x79\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','\x43\x67\x35\x4e','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x42\x77\x66\x34\x78\x33\x6a\x4c\x43\x33\x76\x53\x44\x68\x6d','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x45\x68\x6e\x70\x7a\x32\x30','\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','\x44\x67\x76\x34\x44\x61','\x43\x67\x66\x59\x43\x32\x75','\x43\x66\x7a\x34\x71\x75\x38','\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','\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','\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','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\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','\x43\x32\x76\x30','\x71\x77\x72\x65\x76\x30\x71','\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\x30\x44\x67\x76\x59\x42\x47','\x42\x67\x4c\x5a\x44\x61','\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\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x75\x31\x76\x64\x71\x30\x47','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x6d\x74\x43\x30\x6d\x74\x75\x57\x6e\x67\x54\x56\x79\x77\x50\x49\x44\x57','\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\x4e\x62\x4c\x7a\x57','\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','\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','\x6d\x5a\x69\x34\x6e\x64\x6d\x5a\x41\x31\x44\x66\x74\x30\x58\x76','\x75\x32\x76\x59\x44\x4d\x76\x59','\x6f\x74\x65\x34\x6d\x4a\x69\x57\x74\x75\x66\x6f\x72\x65\x39\x4c','\x41\x77\x35\x57\x44\x78\x71','\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','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x42\x67\x76\x55\x7a\x33\x72\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\x30\x45\x78\x62\x4c\x43\x59\x35\x51\x43\x57','\x79\x4d\x58\x4e\x79\x76\x47','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x6d\x74\x61\x59\x6e\x5a\x72\x6b\x7a\x68\x4c\x4f\x44\x75\x4b','\x43\x32\x39\x54\x7a\x71','\x7a\x32\x76\x30','\x6f\x75\x6e\x4a\x79\x75\x44\x5a\x43\x71','\x74\x4b\x72\x6e\x42\x68\x4b','\x79\x77\x58\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\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','\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','\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','\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','\x41\x30\x6e\x53\x43\x76\x4b','\x74\x30\x48\x4f\x7a\x4d\x71','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\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','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4c\x45\x67\x76\x4a','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\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','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\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\x7a\x4e','\x43\x68\x4c\x30\x41\x67\x39\x55','\x79\x77\x58\x53\x42\x33\x43','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\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','\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\x44\x68\x4c\x57\x7a\x71','\x79\x32\x58\x56\x43\x32\x75','\x43\x33\x72\x48\x44\x68\x76\x5a','\x75\x4e\x44\x5a\x73\x68\x61','\x41\x77\x54\x34\x43\x32\x69','\x44\x32\x39\x59\x41\x32\x76\x59\x6c\x71','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x7a\x78\x48\x4c\x79\x57','\x41\x77\x31\x48\x7a\x32\x75\x56\x41\x4e\x62\x4c\x7a\x57','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a'];a0_0x1ecd=function(){return _0x8b9be4;};return a0_0x1ecd();}function toAnthropicContent(_0x1bcf6e){const _0x5c1dac=a0_0x3f0607,_0xc8d584={'\x5a\x49\x64\x45\x72':function(_0x435e65,_0x2d8946){return _0x435e65(_0x2d8946);}};if(!isCodeExecutionResultWithImages(_0x1bcf6e))return serializeToolResult(_0x1bcf6e);const _0x59c97b=[],_0x547f9f={..._0x1bcf6e,'\x72\x65\x73\x75\x6c\x74\x73':_0x1bcf6e['\x72\x65\x73\x75\x6c\x74\x73']['\x66\x69\x6c\x74\x65\x72'](_0x12c24f=>_0x12c24f[_0x5c1dac(0x213)]!==_0x5c1dac(0x1bf))};_0x59c97b[_0x5c1dac(0x18e)]({'\x74\x79\x70\x65':'\x74\x65\x78\x74','\x74\x65\x78\x74':serializeToolResult(_0x547f9f)});for(const _0x205526 of _0x1bcf6e[_0x5c1dac(0x1ca)])if(_0xc8d584['\x5a\x49\x64\x45\x72'](isImagePart,_0x205526))_0x59c97b[_0x5c1dac(0x18e)]({'\x74\x79\x70\x65':_0x5c1dac(0x1bf),'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x5c1dac(0x210),'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0x205526[_0x5c1dac(0x19e)]),'\x64\x61\x74\x61':_0x205526['\x64\x61\x74\x61']}});return _0x59c97b;}function isImagePart(_0x54a111){const _0x427473=a0_0x3f0607,_0x4954d2={'\x49\x6e\x6d\x62\x78':'\x69\x6d\x61\x67\x65'};return _0x54a111[_0x427473(0x213)]===_0x4954d2['\x49\x6e\x6d\x62\x78'];}function isCodeExecutionResultWithImages(_0x3633d6){const _0x139a31=a0_0x3f0607,_0x2efaa4={'\x71\x70\x64\x58\x49':function(_0x2d9bea,_0xed0a8){return _0x2d9bea!==_0xed0a8;},'\x6b\x70\x52\x75\x76':'\x6f\x62\x6a\x65\x63\x74'};if(!_0x3633d6||_0x2efaa4[_0x139a31(0x1b0)](typeof _0x3633d6,_0x2efaa4['\x6b\x70\x52\x75\x76']))return![];const _0x1322c4=_0x3633d6[_0x139a31(0x1ca)];if(!Array[_0x139a31(0x1bd)](_0x1322c4))return![];return _0x1322c4[_0x139a31(0x1fa)](_0x1996ad=>_0x1996ad&&typeof _0x1996ad==='\x6f\x62\x6a\x65\x63\x74'&&_0x1996ad[_0x139a31(0x213)]===_0x139a31(0x1bf));}function imageMediaType(_0x393e89){const _0x2e9a8a=a0_0x3f0607,_0x36e8fe={'\x53\x55\x43\x43\x48':_0x2e9a8a(0x21b),'\x4f\x48\x68\x66\x64':_0x2e9a8a(0x1be)};switch(_0x393e89){case _0x2e9a8a(0x1cf):return _0x2e9a8a(0x1be);case _0x2e9a8a(0x1ec):return _0x36e8fe[_0x2e9a8a(0x1e8)];case _0x2e9a8a(0x20d):return _0x36e8fe[_0x2e9a8a(0x204)];}}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_0x3f0607(0x1eb),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1c8),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\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_0x3f0607(0x1a3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1b9)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0x3f0607(0x1f4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x18d)},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\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_0x3f0607(0x1ee)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64',a0_0x3f0607(0x1ab)],'\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:_0x374326})=>async _0xba1fee=>{const _0x25a850=a0_0x3f0607,_0x5df3cb=await _0x374326[_0x25a850(0x1a7)]['\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':_0xba1fee[_0x25a850(0x1d0)]},'\x77\x6f\x72\x6b\x65\x72\x73':Array[_0x25a850(0x227)]({'\x6c\x65\x6e\x67\x74\x68':_0xba1fee[_0x25a850(0x1ab)]},(_0x23c544,_0x2af01b)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x25a850(0x218)+_0x2af01b})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0xba1fee[_0x25a850(0x196)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x5df3cb[_0x25a850(0x199)],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0x5df3cb['\x69\x64\x73']};}},'\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_0x3f0607(0x1ed),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1ff),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1a2)},'\x6d\x61\x63\x68\x69\x6e\x65\x73':{'\x74\x79\x70\x65':a0_0x3f0607(0x1c0),'\x69\x74\x65\x6d\x73':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3)},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x21d)},'\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_0x3f0607(0x206)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3f0607(0x19b),a0_0x3f0607(0x205)],'\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:_0x3d1d84})=>async _0xe999a9=>{const _0x19a384=a0_0x3f0607;return await(await _0x3d1d84[_0x19a384(0x1a7)]['\x6c\x69\x73\x74']({'\x66\x6c\x65\x65\x74\x49\x64':_0xe999a9['\x66\x6c\x65\x65\x74\x5f\x69\x64']}))[_0x19a384(0x195)](_0xe999a9['\x63\x6f\x6d\x6d\x61\x6e\x64'],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0xe999a9[_0x19a384(0x212)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0xe999a9[_0x19a384(0x208)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1e0),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\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_0x3f0607(0x19b)],'\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:_0xe79e1b})=>async _0x44e01c=>{const _0x261898=a0_0x3f0607,_0xd028e6=await _0xe79e1b[_0x261898(0x1a7)][_0x261898(0x1e5)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x44e01c[_0x261898(0x19b)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0xd028e6[_0x261898(0x199)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0xd028e6['\x69\x64\x73']['\x6d\x61\x70'](_0x2fe948=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x2fe948,'\x73\x74\x61\x74\x75\x73':_0xd028e6[_0x261898(0x1fb)](_0x2fe948)[_0x261898(0x215)]}))};}},'\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_0x3f0607(0x1bb),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1c7),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':a0_0x3f0607(0x1aa),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1de)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3f0607(0x19b)],'\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:_0x46473e})=>async _0x3d17ae=>{const _0x5e1260=a0_0x3f0607;return await(await _0x46473e[_0x5e1260(0x1a7)][_0x5e1260(0x1e5)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x3d17ae[_0x5e1260(0x19b)]}))[_0x5e1260(0x1b1)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0x3d17ae[_0x5e1260(0x1a6)]}),{'\x66\x6c\x65\x65\x74\x49\x64':_0x3d17ae[_0x5e1260(0x19b)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object[a0_0x3f0607(0x18c)](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x5bebd0){const _0x60a9e5=a0_0x3f0607;if(!_0x5bebd0||_0x5bebd0['\x6c\x65\x6e\x67\x74\x68']===0x0)return ALL_FLEET_TOOL_SPECS;const _0x5295d4=new Set(_0x5bebd0);return Object[_0x60a9e5(0x225)](FLEET_TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0x17d9e7=>_0x5295d4[_0x60a9e5(0x1bc)](_0x17d9e7))[_0x60a9e5(0x1c3)](_0x4806d9=>FLEET_TOOL_SPECS[_0x4806d9]);}function anthropicFleetTools(_0x2e68e3,_0x330ef9={}){const _0x328a45=a0_0x3f0607,_0x2bb5c6={'\x5a\x58\x59\x4f\x57':function(_0x3f3d6c,_0x11f3a4){return _0x3f3d6c(_0x11f3a4);}},_0x40d008=selectFleetSpecs(_0x330ef9['\x61\x6c\x6c\x6f\x77']),_0x3b12ae=buildFleetHandlers(_0x40d008,{'\x63\x6c\x69\x65\x6e\x74':_0x2e68e3});return{'\x74\x6f\x6f\x6c\x73':_0x40d008['\x6d\x61\x70'](_0x2f963b=>({'\x6e\x61\x6d\x65':_0x2f963b[_0x328a45(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2f963b[_0x328a45(0x197)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x2f963b['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x1f7bf7){const _0x1b8225=_0x328a45,_0x4a8f50=_0x3b12ae[_0x1b8225(0x1fb)](_0x1f7bf7[_0x1b8225(0x1a1)]);if(!_0x4a8f50)return{'\x74\x79\x70\x65':_0x1b8225(0x1a9),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1f7bf7['\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'+_0x1f7bf7['\x6e\x61\x6d\x65'],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x47f1b4=await _0x2bb5c6[_0x1b8225(0x1b7)](_0x4a8f50,_0x1f7bf7[_0x1b8225(0x1f2)]);return{'\x74\x79\x70\x65':_0x1b8225(0x1a9),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1f7bf7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x2bb5c6[_0x1b8225(0x1b7)](serializeToolResult,_0x47f1b4)};}catch(_0x45df3f){return{'\x74\x79\x70\x65':_0x1b8225(0x1a9),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1f7bf7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x45df3f instanceof Error?_0x45df3f[_0x1b8225(0x1d4)]:String(_0x45df3f),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x3d3d52,_0x198182={}){const _0x5beedb=a0_0x3f0607,_0x2255ac={'\x62\x6c\x67\x61\x58':_0x5beedb(0x18b),'\x6b\x43\x6c\x71\x59':function(_0x30af1e,_0x19918b){return _0x30af1e(_0x19918b);},'\x69\x6b\x78\x73\x62':function(_0x4b95e3,_0x5f1d0a){return _0x4b95e3(_0x5f1d0a);}},_0x3323f5=_0x2255ac[_0x5beedb(0x217)](selectFleetSpecs,_0x198182[_0x5beedb(0x20f)]),_0xcb40=buildFleetHandlers(_0x3323f5,{'\x63\x6c\x69\x65\x6e\x74':_0x3d3d52});return{'\x74\x6f\x6f\x6c\x73':_0x3323f5[_0x5beedb(0x1c3)](_0x23ae0e=>({'\x74\x79\x70\x65':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x23ae0e[_0x5beedb(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x23ae0e[_0x5beedb(0x197)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x23ae0e[_0x5beedb(0x1e9)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0xcf2c88){const _0x3b66e8=_0x5beedb,_0x254d50=_0xcb40['\x67\x65\x74'](_0xcf2c88[_0x3b66e8(0x1b6)][_0x3b66e8(0x1a1)]);if(!_0x254d50)return{'\x72\x6f\x6c\x65':_0x3b66e8(0x19f),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0xcf2c88['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x3b66e8(0x1b5)]({'\x65\x72\x72\x6f\x72':_0x3b66e8(0x1c9)+_0xcf2c88[_0x3b66e8(0x1b6)][_0x3b66e8(0x1a1)]})};let _0x4a3fa3={};try{const _0x32ae50=JSON[_0x3b66e8(0x1da)](_0xcf2c88[_0x3b66e8(0x1b6)][_0x3b66e8(0x21c)]||'\x7b\x7d');if(_0x32ae50&&typeof _0x32ae50===_0x2255ac[_0x3b66e8(0x1f7)])_0x4a3fa3=_0x32ae50;}catch{}try{const _0x34b649=await _0x254d50(_0x4a3fa3);return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0xcf2c88['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x34b649)};}catch(_0x48ea0e){return{'\x72\x6f\x6c\x65':_0x3b66e8(0x19f),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0xcf2c88['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x3b66e8(0x1b5)]({'\x65\x72\x72\x6f\x72':_0x48ea0e instanceof Error?_0x48ea0e[_0x3b66e8(0x1d4)]:_0x2255ac[_0x3b66e8(0x203)](String,_0x48ea0e)})};}}};}async function vercelAiFleetTools(_0x22dc95,_0xe878a7={}){const _0x4e29f5=a0_0x3f0607,_0x505b33={'\x6b\x75\x44\x77\x66':function(_0x12773b,_0x4889f6,_0x1d6d2f){return _0x12773b(_0x4889f6,_0x1d6d2f);}};let _0x34d3bb;try{_0x34d3bb=await import('\x61\x69');}catch{throw new Error(_0x4e29f5(0x198));}const _0x2ba49c=selectFleetSpecs(_0xe878a7[_0x4e29f5(0x20f)]),_0x17c3f5=_0x505b33['\x6b\x75\x44\x77\x66'](buildFleetHandlers,_0x2ba49c,{'\x63\x6c\x69\x65\x6e\x74':_0x22dc95}),_0x55ba63={};for(const _0x227b52 of _0x2ba49c)_0x55ba63[_0x227b52[_0x4e29f5(0x1a1)]]=_0x34d3bb[_0x4e29f5(0x19f)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x227b52[_0x4e29f5(0x197)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x34d3bb[_0x4e29f5(0x1df)](_0x227b52['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']),'\x65\x78\x65\x63\x75\x74\x65':async _0x4e037d=>{const _0x85abfb=_0x4e29f5,_0x1b5f99=_0x17c3f5[_0x85abfb(0x1fb)](_0x227b52['\x6e\x61\x6d\x65']);if(!_0x1b5f99)throw new Error(_0x85abfb(0x1c9)+_0x227b52['\x6e\x61\x6d\x65']);return serializeToolResult(await _0x1b5f99(_0x4e037d));}});return _0x55ba63;}async function mastraFleetTools(_0x488b27,_0x4bfd4e={}){const _0x380c07=a0_0x3f0607,_0x3b2927={'\x78\x64\x5a\x53\x76':function(_0x6ae001,_0x2e5a7c){return _0x6ae001(_0x2e5a7c);}};let _0x2466ac;try{_0x2466ac=await import('\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65');}catch{throw new Error(_0x380c07(0x1ac));}const _0x2321e4=_0x3b2927[_0x380c07(0x21e)](selectFleetSpecs,_0x4bfd4e['\x61\x6c\x6c\x6f\x77']),_0x5c0d87=buildFleetHandlers(_0x2321e4,{'\x63\x6c\x69\x65\x6e\x74':_0x488b27}),_0xaa7110={};for(const _0x42298a of _0x2321e4)_0xaa7110[_0x42298a[_0x380c07(0x1a1)]]=_0x2466ac[_0x380c07(0x1cd)]({'\x69\x64':_0x42298a[_0x380c07(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x42298a['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2466ac['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61']?_0x2466ac[_0x380c07(0x1df)](_0x42298a['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']):_0x42298a[_0x380c07(0x1e9)],'\x65\x78\x65\x63\x75\x74\x65':async _0x33aade=>{const _0x508384=_0x380c07,_0x5b7f4b=_0x5c0d87[_0x508384(0x1fb)](_0x42298a[_0x508384(0x1a1)]);if(!_0x5b7f4b)throw new Error(_0x508384(0x1c9)+_0x42298a['\x6e\x61\x6d\x65']);return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x5b7f4b(_0x33aade?.['\x63\x6f\x6e\x74\x65\x78\x74']??{}))};}});return _0xaa7110;}function buildFleetHandlers(_0x3d71d6,_0x487c52){const _0x395f6f=a0_0x3f0607,_0x5f3550=new Map();for(const _0x34ec4d of _0x3d71d6)_0x5f3550[_0x395f6f(0x1e1)](_0x34ec4d['\x6e\x61\x6d\x65'],_0x34ec4d[_0x395f6f(0x19d)](_0x487c52));return _0x5f3550;}async function mastraTools(_0x1826ad,_0x463018={}){const _0x562ba9=a0_0x3f0607,_0x3532b4={'\x41\x64\x44\x57\x44':function(_0x456a43,_0x1556a1){return _0x456a43(_0x1556a1);},'\x4e\x44\x4d\x6c\x79':_0x562ba9(0x1a8),'\x4d\x71\x62\x43\x77':'\x6d\x61\x73\x74\x72\x61\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\x69\x74\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'};let _0x4042da;try{_0x4042da=await import(_0x3532b4[_0x562ba9(0x1fd)]);}catch{throw new Error(_0x3532b4['\x4d\x71\x62\x43\x77']);}const _0xb084b4=selectSpecs(_0x463018[_0x562ba9(0x20f)]),_0x46717a={'\x62\x6f\x78':_0x1826ad,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x463018[_0x562ba9(0x219)]},_0x31730d={};for(const _0x1ed0b1 of _0xb084b4){const _0x22de80=_0x1ed0b1[_0x562ba9(0x19d)](_0x46717a);_0x31730d[_0x1ed0b1['\x6e\x61\x6d\x65']]=_0x4042da[_0x562ba9(0x1cd)]({'\x69\x64':_0x1ed0b1[_0x562ba9(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1ed0b1[_0x562ba9(0x197)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x4042da[_0x562ba9(0x1df)]?_0x4042da[_0x562ba9(0x1df)](_0x1ed0b1[_0x562ba9(0x1e9)]):_0x1ed0b1[_0x562ba9(0x1e9)],'\x65\x78\x65\x63\x75\x74\x65':async _0xc50d2b=>{const _0x480de2=_0x562ba9;return{'\x72\x65\x73\x75\x6c\x74':_0x3532b4[_0x480de2(0x1e2)](serializeToolResult,await _0x22de80(_0xc50d2b?.[_0x480de2(0x1a4)]??{}))};}});}return _0x31730d;}function openaiTools(_0x4d2ce4,_0x5eb147={}){const _0xf54681=a0_0x3f0607,_0x4e44dd={'\x75\x57\x46\x77\x48':function(_0x49a300,_0x37a654){return _0x49a300===_0x37a654;},'\x4f\x4c\x63\x4a\x78':_0xf54681(0x18b),'\x78\x50\x4e\x73\x53':function(_0x498645,_0x348b77){return _0x498645!==_0x348b77;},'\x64\x45\x54\x62\x76':_0xf54681(0x19f)},_0xe5276f=selectSpecs(_0x5eb147[_0xf54681(0x20f)]),_0x3c6808={'\x62\x6f\x78':_0x4d2ce4,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x5eb147[_0xf54681(0x219)]},_0x140770=new Map();for(const _0x277f46 of _0xe5276f)_0x140770['\x73\x65\x74'](_0x277f46[_0xf54681(0x1a1)],_0x277f46[_0xf54681(0x19d)](_0x3c6808));const _0x17352c=_0xe5276f[_0xf54681(0x1c3)](_0x4a032b=>({'\x74\x79\x70\x65':_0xf54681(0x1b6),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x4a032b[_0xf54681(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4a032b[_0xf54681(0x197)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x4a032b[_0xf54681(0x1e9)]}}));function _0x4909c4(_0xc08054){const _0x53a748=_0xf54681;if(!_0xc08054)return{};try{const _0x4669bf=JSON['\x70\x61\x72\x73\x65'](_0xc08054);return _0x4e44dd[_0x53a748(0x1ae)](typeof _0x4669bf,_0x4e44dd[_0x53a748(0x1b4)])&&_0x4e44dd[_0x53a748(0x1c5)](_0x4669bf,null)?_0x4669bf:{};}catch{return{};}}async function _0x187c13(_0x10cd28){const _0x366d86=_0xf54681,_0x17e311=_0x140770[_0x366d86(0x1fb)](_0x10cd28[_0x366d86(0x1b6)][_0x366d86(0x1a1)]);if(!_0x17e311)return{'\x72\x6f\x6c\x65':_0x4e44dd[_0x366d86(0x194)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x10cd28['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x366d86(0x1b5)]({'\x65\x72\x72\x6f\x72':_0x366d86(0x1c2)+_0x10cd28[_0x366d86(0x1b6)][_0x366d86(0x1a1)]})};try{const _0x3e8438=await _0x17e311(_0x4909c4(_0x10cd28['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x366d86(0x21c)]));return{'\x72\x6f\x6c\x65':_0x366d86(0x19f),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x10cd28['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x3e8438)};}catch(_0x3b91a9){return{'\x72\x6f\x6c\x65':_0x4e44dd[_0x366d86(0x194)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x10cd28['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x366d86(0x1b5)]({'\x65\x72\x72\x6f\x72':_0x3b91a9 instanceof Error?_0x3b91a9['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x3b91a9)})};}}async function _0x37e2d9(_0x51999b){const _0x4f2b9a=_0xf54681,_0xb32f4e=_0x51999b['\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x73']??[];return Promise[_0x4f2b9a(0x1fe)](_0xb32f4e[_0x4f2b9a(0x1c3)](_0x187c13));}return{'\x74\x6f\x6f\x6c\x73':_0x17352c,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x187c13,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x37e2d9};}async function vercelAiTools(_0xa13bd0,_0x1727c9={}){const _0x123e05=a0_0x3f0607;let _0x2ab1d2;try{_0x2ab1d2=await import('\x61\x69');}catch{throw new Error(_0x123e05(0x1dc));}const _0x152d65=selectSpecs(_0x1727c9['\x61\x6c\x6c\x6f\x77']),_0x469336={'\x62\x6f\x78':_0xa13bd0,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x1727c9[_0x123e05(0x219)]},_0x56b0a5={};for(const _0x16f90a of _0x152d65){const _0x4e9791=_0x16f90a[_0x123e05(0x19d)](_0x469336);_0x56b0a5[_0x16f90a[_0x123e05(0x1a1)]]=_0x2ab1d2[_0x123e05(0x19f)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x16f90a[_0x123e05(0x197)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2ab1d2[_0x123e05(0x1df)](_0x16f90a[_0x123e05(0x1e9)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x56bd7e=>{return serializeToolResult(await _0x4e9791(_0x56bd7e));}});}return _0x56b0a5;}export{anthropicFleetTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};
1
+ const a0_0x111e74=a0_0x4f20;(function(_0x34ff96,_0x44b2db){const _0x2c704f=a0_0x4f20,_0x237c55=_0x34ff96();while(!![]){try{const _0x4bb08b=-parseInt(_0x2c704f(0x192))/0x1*(parseInt(_0x2c704f(0x19e))/0x2)+parseInt(_0x2c704f(0x1b0))/0x3+parseInt(_0x2c704f(0x15f))/0x4*(-parseInt(_0x2c704f(0x149))/0x5)+-parseInt(_0x2c704f(0x1e1))/0x6+parseInt(_0x2c704f(0x14c))/0x7+-parseInt(_0x2c704f(0x183))/0x8*(-parseInt(_0x2c704f(0x170))/0x9)+parseInt(_0x2c704f(0x1ee))/0xa*(parseInt(_0x2c704f(0x158))/0xb);if(_0x4bb08b===_0x44b2db)break;else _0x237c55['push'](_0x237c55['shift']());}catch(_0x47e93f){_0x237c55['push'](_0x237c55['shift']());}}}(a0_0x3d40,0x70408));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_0x111e74(0x161),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x16f),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x111e74(0x15d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':a0_0x111e74(0x15c),'\x65\x6e\x75\x6d':[a0_0x111e74(0x1a6),'\x6e\x6f\x64\x65',a0_0x111e74(0x1c8),a0_0x111e74(0x14e)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1d0)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0x111e74(0x15c),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1df)},'\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_0x111e74(0x18c)],'\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:_0x18013e,sessionId:_0x258676})=>async _0x2dab01=>{const _0x46c04c=a0_0x111e74;return await _0x18013e[_0x46c04c(0x1c4)](_0x2dab01[_0x46c04c(0x1dc)],_0x2dab01['\x73\x6f\x75\x72\x63\x65'],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x258676,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x2dab01[_0x46c04c(0x195)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63':{'\x6e\x61\x6d\x65':a0_0x111e74(0x166),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x14f),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x111e74(0x15d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x111e74(0x15c),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1b4)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x111e74(0x15c),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x148)},'\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':'\x44\x65\x66\x61\x75\x6c\x74\x20\x36\x30\x30\x30\x30\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x111e74(0x1f0)],'\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:_0x13d0ae,sessionId:_0x32ea3a})=>async _0x34f6bf=>{const _0x19c6a9=a0_0x111e74;return await _0x13d0ae[_0x19c6a9(0x1a2)](_0x34f6bf[_0x19c6a9(0x1f0)],{'\x63\x77\x64':_0x34f6bf['\x63\x77\x64'],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x34f6bf[_0x19c6a9(0x195)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x32ea3a});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1d4),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x111e74(0x15d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x111e74(0x15c)}},'\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:_0x33e249,sessionId:_0x15b678})=>async _0x3cf24f=>{const _0x432eab=a0_0x111e74;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x33e249[_0x432eab(0x1a7)](_0x3cf24f[_0x432eab(0x198)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x15b678})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0x111e74(0x1f1),'\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_0x111e74(0x15d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1c6)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x70\x61\x74\x68',a0_0x111e74(0x155)],'\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:_0x238416})=>async _0x396bfd=>{const _0x48a584=a0_0x111e74;return await _0x238416['\x77\x72\x69\x74\x65'](_0x396bfd[_0x48a584(0x198)],_0x396bfd['\x63\x6f\x6e\x74\x65\x6e\x74']),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':a0_0x111e74(0x147),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x15a),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x111e74(0x15d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x111e74(0x15c)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x111e74(0x198)],'\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:_0xaa6eb8})=>async _0x4e7c23=>{const _0x266fe7=a0_0x111e74;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0xaa6eb8['\x66\x73'][_0x266fe7(0x19f)](_0x4e7c23[_0x266fe7(0x198)])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0x111e74(0x1cf),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x175),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x111e74(0x15d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x111e74(0x15c),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x15e)},'\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':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1bf)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x111e74(0x18e)],'\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:_0x4344fe})=>async _0x587488=>{const _0x270f88=a0_0x111e74,_0x8c04ea={'\x77\x69\x4f\x46\x66':function(_0x2af497,_0x59de26){return _0x2af497>=_0x59de26;}},_0x53aeff=[],_0x4e7eda=_0x587488[_0x270f88(0x176)]??0x64;for await(const _0x3c371f of _0x4344fe[_0x270f88(0x1ac)](_0x587488[_0x270f88(0x18e)],{'\x63\x77\x64':_0x587488[_0x270f88(0x198)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x4e7eda})){_0x53aeff[_0x270f88(0x15b)](_0x3c371f);if(_0x8c04ea[_0x270f88(0x14a)](_0x53aeff[_0x270f88(0x151)],_0x4e7eda))break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x53aeff};}}},ALL_TOOL_SPECS=Object['\x76\x61\x6c\x75\x65\x73'](TOOL_SPECS);function selectSpecs(_0x38f9da){const _0x28b388=a0_0x111e74;if(!_0x38f9da||_0x38f9da[_0x28b388(0x151)]===0x0)return ALL_TOOL_SPECS;const _0x5cd8c3=new Set(_0x38f9da);return Object[_0x28b388(0x1af)](TOOL_SPECS)[_0x28b388(0x17b)](_0x31aaa3=>_0x5cd8c3[_0x28b388(0x1a0)](_0x31aaa3))[_0x28b388(0x1db)](_0x4867ba=>TOOL_SPECS[_0x4867ba]);}function serializeToolResult(_0x991081){const _0x2bd2d4=a0_0x111e74;if(typeof _0x991081==='\x73\x74\x72\x69\x6e\x67')return _0x991081;try{return JSON[_0x2bd2d4(0x150)](_0x991081,null,0x2);}catch{return String(_0x991081);}}function a0_0x3d40(){const _0x15f626=['\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x53\x41\x78\x6e\x30','\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','\x6e\x74\x43\x31\x75\x4b\x6e\x55\x77\x78\x66\x56','\x44\x32\x4c\x70\x72\x4d\x79','\x41\x4d\x58\x51\x77\x68\x43','\x6d\x5a\x75\x57\x6d\x64\x71\x32\x6d\x4e\x72\x6d\x79\x4b\x54\x7a\x72\x61','\x44\x77\x35\x50\x44\x4d\x76\x59\x43\x32\x66\x53','\x79\x4d\x66\x5a\x41\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\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','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x41\x77\x31\x48\x7a\x32\x75','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x44\x75\x72\x51\x79\x77\x71','\x79\x32\x39\x55\x44\x67\x76\x55\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','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x50\x7a\x61','\x6e\x5a\x61\x30\x73\x65\x50\x62\x44\x32\x39\x4d','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35','\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','\x43\x68\x76\x5a\x41\x61','\x43\x33\x72\x59\x41\x77\x35\x4e','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x75\x4d\x76\x4e\x7a\x78\x47\x47\x43\x67\x66\x30\x44\x67\x76\x59\x42\x49\x34','\x6d\x4a\x79\x30\x6e\x4a\x48\x66\x74\x66\x48\x7a\x71\x77\x38','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x4b\x7a\x71','\x7a\x30\x50\x74\x7a\x4d\x47','\x79\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x76\x46\x42\x32\x35\x46\x7a\x78\x6a\x59\x42\x33\x69','\x72\x68\x7a\x49\x72\x30\x4b','\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\x4c\x45\x67\x76\x4a','\x79\x33\x72\x79\x74\x4c\x79','\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\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\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','\x7a\x4e\x6a\x56\x42\x71','\x44\x67\x66\x55\x7a\x32\x58\x4c\x6c\x78\x6e\x48\x42\x4d\x72\x49\x42\x33\x47','\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','\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','\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','\x6d\x5a\x43\x33\x6d\x4a\x47\x35\x43\x30\x58\x59\x71\x33\x7a\x62','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\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','\x43\x30\x58\x62\x71\x4d\x79','\x41\x77\x31\x48\x7a\x32\x75\x56\x41\x4e\x62\x4c\x7a\x57','\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','\x42\x77\x66\x34\x78\x33\x6a\x4c\x43\x33\x76\x53\x44\x68\x6d','\x74\x4e\x62\x32\x45\x77\x4b','\x43\x67\x66\x59\x79\x77\x31\x5a','\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','\x44\x68\x4c\x57\x7a\x71','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\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','\x44\x32\x39\x59\x41\x32\x76\x59\x6c\x71','\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','\x7a\x32\x76\x30','\x43\x67\x66\x59\x43\x32\x75','\x75\x32\x76\x59\x44\x4d\x76\x59','\x6e\x64\x48\x53\x71\x76\x44\x4e\x43\x75\x79','\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','\x79\x4d\x39\x56\x42\x67\x76\x48\x42\x47','\x43\x32\x76\x30','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75','\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','\x6d\x63\x34\x57\x6c\x4a\x61','\x75\x78\x6a\x64\x74\x4d\x4f','\x7a\x67\x66\x30\x79\x71','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x72\x77\x39\x4b\x73\x30\x69','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x73\x4d\x6e\x70\x42\x4d\x53','\x7a\x67\x4c\x5a\x43\x67\x66\x30\x79\x32\x48\x66\x45\x67\x76\x4a','\x6e\x4a\x79\x57\x6d\x74\x65\x35\x45\x76\x62\x54\x42\x30\x39\x6a','\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','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\x44\x66\x4c\x49\x41\x75\x71','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x43\x67\x66\x30\x41\x61','\x7a\x77\x39\x70\x42\x33\x47','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x76\x33\x62\x4f\x41\x4c\x6d','\x43\x33\x7a\x4e','\x7a\x78\x48\x50\x44\x65\x6e\x56\x7a\x67\x75','\x6d\x4c\x66\x4b\x77\x4e\x66\x78\x42\x57','\x42\x67\x4c\x5a\x44\x61','\x41\x67\x66\x5a','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x7a\x78\x48\x4c\x79\x57','\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','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x79\x33\x6a\x4c\x79\x78\x72\x4c','\x43\x68\x4c\x30\x41\x67\x39\x55','\x43\x4d\x76\x48\x7a\x61','\x44\x67\x76\x34\x44\x61','\x44\x30\x48\x6d\x71\x33\x65','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\x75\x65\x6a\x77\x73\x30\x71','\x41\x32\x76\x35\x43\x57','\x6d\x4a\x71\x5a\x6d\x64\x71\x58\x6e\x31\x7a\x71\x73\x4b\x7a\x6e\x73\x57','\x41\x4e\x62\x4c\x7a\x57','\x7a\x66\x62\x69\x74\x33\x4b','\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\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','\x79\x33\x44\x4b','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x72\x77\x35\x32\x41\x78\x6a\x56\x42\x4d\x31\x4c\x42\x4e\x71\x47\x42\x4d\x66\x54\x7a\x73\x61\x4f\x7a\x73\x35\x4e\x6c\x49\x61\x4e\x44\x77\x35\x50\x44\x4d\x76\x59\x43\x32\x66\x53\x6a\x59\x62\x4d\x42\x33\x69\x47\x42\x78\x76\x53\x44\x67\x4b\x54\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75\x47\x74\x4d\x39\x4b\x7a\x73\x39\x71\x45\x78\x72\x4f\x42\x32\x34\x50\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x63\x44\x31\x42\x4d\x4c\x32\x7a\x78\x6a\x5a\x79\x77\x57\x4e\x6c\x47','\x44\x67\x39\x56\x42\x66\x39\x4a\x79\x77\x58\x53\x43\x57','\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','\x41\x77\x31\x48\x7a\x32\x75\x56\x43\x67\x35\x4e','\x75\x30\x35\x62\x74\x31\x6d','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x79\x77\x48\x59\x76\x4e\x47','\x41\x77\x31\x62\x72\x4d\x34','\x71\x32\x66\x57\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x64\x65\x57\x6d\x63\x34','\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','\x75\x67\x72\x66\x76\x75\x6d','\x42\x4d\x66\x54\x7a\x71','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\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','\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','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\x44\x61','\x43\x33\x72\x48\x44\x68\x76\x5a','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\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','\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','\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','\x79\x4c\x48\x58\x45\x4d\x53','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\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','\x72\x32\x4c\x71\x74\x4c\x6d','\x41\x4b\x48\x58\x77\x67\x30','\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','\x41\x77\x72\x5a','\x42\x30\x39\x76\x73\x32\x34','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\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','\x76\x67\x76\x49\x7a\x78\x65','\x42\x77\x66\x57','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\x76\x30\x35\x6b\x74\x78\x65','\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','\x73\x75\x48\x71\x41\x66\x75','\x6e\x64\x6d\x35\x6e\x74\x65\x59\x6e\x4b\x48\x77\x7a\x78\x62\x52\x7a\x47','\x42\x4d\x35\x69\x73\x4d\x53','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x45\x4b\x58\x71\x71\x4c\x43','\x43\x76\x7a\x54\x75\x68\x6d','\x76\x67\x44\x76\x7a\x4b\x43','\x41\x31\x6e\x75\x72\x4e\x71','\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','\x42\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x44\x67\x39\x56\x42\x61','\x79\x4c\x7a\x6d\x77\x68\x6d','\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','\x72\x32\x35\x4f\x72\x4e\x4b','\x6d\x74\x79\x30\x6d\x5a\x69\x57\x7a\x66\x48\x74\x79\x32\x4c\x72','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\x44\x4d\x50\x4e\x72\x65\x79','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x79\x77\x58\x53\x42\x33\x43','\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\x7a\x77\x35\x32\x41\x78\x6a\x56\x42\x4d\x31\x4c\x42\x4e\x71','\x41\x77\x35\x57\x44\x78\x71','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x79\x30\x76\x4f\x74\x76\x4f','\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','\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'];a0_0x3d40=function(){return _0x15f626;};return a0_0x3d40();}const SDK_VERSION=((()=>{const _0x2be741=a0_0x111e74,_0x50e195={'\x54\x67\x55\x66\x47':function(_0xc1c3f4,_0x432bce){return _0xc1c3f4(_0x432bce);},'\x6b\x53\x54\x46\x74':_0x2be741(0x165)};try{return _0x50e195[_0x2be741(0x1e6)](createRequire,import.meta.url)(_0x50e195[_0x2be741(0x1e7)])[_0x2be741(0x1f5)]??_0x2be741(0x189);}catch{return _0x2be741(0x189);}})());async function createMcpServer(_0x14b754,_0x4571c6={}){const _0x494e3d=a0_0x111e74,_0x13a69e={'\x75\x44\x6a\x61\x64':_0x494e3d(0x1a8),'\x73\x4c\x41\x42\x66':function(_0xce4d3b,_0x39701f){return _0xce4d3b(_0x39701f);},'\x76\x4d\x79\x6d\x70':_0x494e3d(0x1e8),'\x62\x58\x71\x7a\x6b':_0x494e3d(0x179)};let _0x16c68f,_0x446539;try{[_0x16c68f,_0x446539]=await Promise['\x61\x6c\x6c']([import('\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\x73\x65\x72\x76\x65\x72\x2f\x69\x6e\x64\x65\x78\x2e\x6a\x73'),import(_0x13a69e['\x76\x4d\x79\x6d\x70'])]);}catch{throw new Error(_0x13a69e[_0x494e3d(0x1ce)]);}const _0x38f887=selectSpecs(_0x4571c6[_0x494e3d(0x1f4)]),_0x33857d={'\x62\x6f\x78':_0x14b754,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4571c6['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']},_0xf137df=new Map();for(const _0x137908 of _0x38f887)_0xf137df['\x73\x65\x74'](_0x137908['\x6e\x61\x6d\x65'],_0x137908[_0x494e3d(0x1e9)](_0x33857d));const _0xf85fac=new _0x16c68f[(_0x494e3d(0x182))]({'\x6e\x61\x6d\x65':_0x4571c6[_0x494e3d(0x1c3)]??_0x494e3d(0x16c),'\x76\x65\x72\x73\x69\x6f\x6e':_0x4571c6['\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 _0xf85fac[_0x494e3d(0x17c)](_0x446539['\x4c\x69\x73\x74\x54\x6f\x6f\x6c\x73\x52\x65\x71\x75\x65\x73\x74\x53\x63\x68\x65\x6d\x61'],async()=>({'\x74\x6f\x6f\x6c\x73':_0x38f887[_0x494e3d(0x1db)](_0x334e7d=>({'\x6e\x61\x6d\x65':_0x334e7d[_0x494e3d(0x1c3)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x334e7d[_0x494e3d(0x1ab)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x334e7d[_0x494e3d(0x1d8)]}))})),_0xf85fac['\x73\x65\x74\x52\x65\x71\x75\x65\x73\x74\x48\x61\x6e\x64\x6c\x65\x72'](_0x446539[_0x494e3d(0x188)],async _0x113cc6=>{const _0x4c7cab=_0x494e3d,_0x2fad3d=_0x113cc6,_0x4eb823=_0xf137df['\x67\x65\x74'](_0x2fad3d[_0x4c7cab(0x178)][_0x4c7cab(0x1c3)]);if(!_0x4eb823)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x4c7cab(0x1a8),'\x74\x65\x78\x74':_0x4c7cab(0x1a1)+_0x2fad3d[_0x4c7cab(0x178)][_0x4c7cab(0x1c3)]}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x13a69e[_0x4c7cab(0x154)],'\x74\x65\x78\x74':_0x13a69e['\x73\x4c\x41\x42\x66'](serializeToolResult,await _0x4eb823(_0x2fad3d[_0x4c7cab(0x178)][_0x4c7cab(0x1ef)]??{}))}]};}catch(_0x6ade75){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x4c7cab(0x1a8),'\x74\x65\x78\x74':_0x6ade75 instanceof Error?_0x6ade75['\x6d\x65\x73\x73\x61\x67\x65']:_0x13a69e[_0x4c7cab(0x173)](String,_0x6ade75)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0xf85fac,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x414ee5=>_0xf85fac[_0x494e3d(0x1f8)](_0x414ee5),'\x63\x6c\x6f\x73\x65':()=>_0xf85fac['\x63\x6c\x6f\x73\x65']()};}function runCode(_0x4e1cde,_0x15ae8f,_0x19129a,_0x40b96c){const _0x2f34c6=a0_0x111e74;return _0x4e1cde[_0x2f34c6(0x1c4)](_0x15ae8f,_0x19129a,_0x40b96c);}function anthropicTools(_0x1f75bb,_0x522017={}){const _0x155602=a0_0x111e74,_0xae9383={'\x51\x72\x43\x4e\x6a':_0x155602(0x19a),'\x54\x65\x62\x65\x71':function(_0x3766bb,_0x58e476){return _0x3766bb(_0x58e476);},'\x54\x7a\x44\x54\x42':function(_0x35aa27,_0x180c88){return _0x35aa27(_0x180c88);}},_0x3bf0d2=_0xae9383['\x54\x7a\x44\x54\x42'](selectSpecs,_0x522017[_0x155602(0x1f4)]),_0xc7fd3={'\x62\x6f\x78':_0x1f75bb,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x522017[_0x155602(0x171)]},_0x115988=new Map();for(const _0x1c94dd of _0x3bf0d2)_0x115988[_0x155602(0x186)](_0x1c94dd[_0x155602(0x1c3)],_0x1c94dd[_0x155602(0x1e9)](_0xc7fd3));const _0xf9ea91=_0x3bf0d2[_0x155602(0x1db)](_0x1dabda=>({'\x6e\x61\x6d\x65':_0x1dabda[_0x155602(0x1c3)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1dabda[_0x155602(0x1ab)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x1dabda[_0x155602(0x1d8)]}));async function _0x1fdf97(_0x26dfd7){const _0x11668d=_0x155602,_0x34f800=_0x115988[_0x11668d(0x180)](_0x26dfd7[_0x11668d(0x1c3)]);if(!_0x34f800)return{'\x74\x79\x70\x65':_0xae9383[_0x11668d(0x18a)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x26dfd7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x26dfd7['\x6e\x61\x6d\x65'],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x42b2f8=await _0xae9383[_0x11668d(0x1da)](_0x34f800,_0x26dfd7[_0x11668d(0x1f7)]);return{'\x74\x79\x70\x65':_0xae9383[_0x11668d(0x18a)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x26dfd7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xae9383[_0x11668d(0x1da)](toAnthropicContent,_0x42b2f8)};}catch(_0x2baf11){return{'\x74\x79\x70\x65':_0xae9383[_0x11668d(0x18a)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x26dfd7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x2baf11 instanceof Error?_0x2baf11[_0x11668d(0x1f3)]:String(_0x2baf11),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x9de34e(_0x3166b1){const _0x464b83=_0x155602,_0x5ede6f=_0x3166b1['\x66\x69\x6c\x74\x65\x72'](_0x275082=>typeof _0x275082===_0x464b83(0x15d)&&_0x275082!==null&&_0x275082[_0x464b83(0x17a)]==='\x74\x6f\x6f\x6c\x5f\x75\x73\x65');return Promise['\x61\x6c\x6c'](_0x5ede6f[_0x464b83(0x1db)](_0x1fdf97));}return{'\x74\x6f\x6f\x6c\x73':_0xf9ea91,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x1fdf97,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x9de34e};}function toAnthropicContent(_0xcaff60){const _0x1fa730=a0_0x111e74;if(!isCodeExecutionResultWithImages(_0xcaff60))return serializeToolResult(_0xcaff60);const _0xeadab0=[],_0x172d98={..._0xcaff60,'\x72\x65\x73\x75\x6c\x74\x73':_0xcaff60[_0x1fa730(0x1e3)][_0x1fa730(0x17b)](_0x26b0b4=>_0x26b0b4[_0x1fa730(0x17a)]!=='\x69\x6d\x61\x67\x65')};_0xeadab0[_0x1fa730(0x15b)]({'\x74\x79\x70\x65':_0x1fa730(0x1a8),'\x74\x65\x78\x74':serializeToolResult(_0x172d98)});for(const _0x5b0ae8 of _0xcaff60['\x72\x65\x73\x75\x6c\x74\x73'])if(isImagePart(_0x5b0ae8))_0xeadab0['\x70\x75\x73\x68']({'\x74\x79\x70\x65':_0x1fa730(0x152),'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x1fa730(0x1bc),'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0x5b0ae8['\x66\x6f\x72\x6d\x61\x74']),'\x64\x61\x74\x61':_0x5b0ae8[_0x1fa730(0x18b)]}});return _0xeadab0;}function isImagePart(_0x155648){const _0x22633a=a0_0x111e74,_0x2386f7={'\x6a\x6c\x6a\x58\x77':_0x22633a(0x152)};return _0x155648[_0x22633a(0x17a)]===_0x2386f7[_0x22633a(0x14b)];}function isCodeExecutionResultWithImages(_0x389c33){const _0x5bd208=a0_0x111e74,_0x17bd68={'\x65\x6f\x4f\x6f\x78':function(_0x58525a,_0x464e57){return _0x58525a!==_0x464e57;}};if(!_0x389c33||_0x17bd68[_0x5bd208(0x199)](typeof _0x389c33,_0x5bd208(0x15d)))return![];const _0x4cc78f=_0x389c33[_0x5bd208(0x1e3)];if(!Array[_0x5bd208(0x18f)](_0x4cc78f))return![];return _0x4cc78f['\x73\x6f\x6d\x65'](_0x33a4ec=>_0x33a4ec&&typeof _0x33a4ec===_0x5bd208(0x15d)&&_0x33a4ec[_0x5bd208(0x17a)]==='\x69\x6d\x61\x67\x65');}function imageMediaType(_0x21e93e){const _0x2c13a8=a0_0x111e74,_0x434ec0={'\x45\x6f\x64\x4b\x42':_0x2c13a8(0x174)};switch(_0x21e93e){case'\x70\x6e\x67':return'\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67';case _0x2c13a8(0x1b1):return _0x434ec0[_0x2c13a8(0x18d)];case _0x2c13a8(0x19c):return _0x2c13a8(0x1ba);}}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_0x111e74(0x16d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1b9),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x111e74(0x15d),'\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':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1cc)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0x111e74(0x197),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x172)},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':a0_0x111e74(0x15d),'\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_0x111e74(0x193)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x111e74(0x1dd),a0_0x111e74(0x1d7)],'\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:_0x50eba8})=>async _0x9faf30=>{const _0x3010d3=a0_0x111e74,_0xe161c0=await _0x50eba8[_0x3010d3(0x1a4)][_0x3010d3(0x1c0)]({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0x9faf30['\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64']},'\x77\x6f\x72\x6b\x65\x72\x73':Array[_0x3010d3(0x16b)]({'\x6c\x65\x6e\x67\x74\x68':_0x9faf30[_0x3010d3(0x1d7)]},(_0x3f4428,_0x113575)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x3010d3(0x17e)+_0x113575})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x9faf30[_0x3010d3(0x1ca)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0xe161c0[_0x3010d3(0x153)],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0xe161c0['\x69\x64\x73']};}},'\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_0x111e74(0x1c1),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1ec),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x111e74(0x15d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x111e74(0x15c)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x111e74(0x15c),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1b4)},'\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_0x111e74(0x15c)},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x16a)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x111e74(0x197),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1cd)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x111e74(0x194),a0_0x111e74(0x1f0)],'\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:_0x296ec4})=>async _0x2094af=>{const _0x23043b=a0_0x111e74;return await(await _0x296ec4['\x66\x6c\x65\x65\x74\x73'][_0x23043b(0x19f)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x2094af[_0x23043b(0x194)]}))[_0x23043b(0x191)](_0x2094af[_0x23043b(0x1f0)],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x2094af[_0x23043b(0x169)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x2094af['\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73']});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4c\x69\x73\x74\x20\x74\x68\x65\x20\x66\x6c\x65\x65\x74\x27\x73\x20\x6d\x61\x63\x68\x69\x6e\x65\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x70\x65\x72\x2d\x6d\x61\x63\x68\x69\x6e\x65\x20\x73\x74\x61\x74\x65\x20\x28\x72\x75\x6e\x6e\x69\x6e\x67\x20\x2f\x20\x73\x74\x6f\x70\x70\x65\x64\x20\x2f\x20\x66\x61\x69\x6c\x65\x64\x29\x20\x70\x6c\x75\x73\x20\x6c\x61\x73\x74\x2d\x75\x73\x65\x64\x20\x74\x69\x6d\x65\x73\x74\x61\x6d\x70\x73\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x111e74(0x15d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x111e74(0x15c)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x111e74(0x194)],'\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:_0x21efb4})=>async _0x3c8e16=>{const _0x35c643=a0_0x111e74,_0x30b113=await _0x21efb4[_0x35c643(0x1a4)][_0x35c643(0x19f)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x3c8e16[_0x35c643(0x194)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x30b113[_0x35c643(0x153)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x30b113[_0x35c643(0x1d5)][_0x35c643(0x1db)](_0x9336db=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x9336db,'\x73\x74\x61\x74\x75\x73':_0x30b113[_0x35c643(0x180)](_0x9336db)['\x73\x74\x61\x74\x75\x73']}))};}},'\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_0x111e74(0x156),'\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_0x111e74(0x15c)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':a0_0x111e74(0x185),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1d1)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x111e74(0x194)],'\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:_0x47cd06})=>async _0x2502f2=>{const _0x4de24c=a0_0x111e74;return await(await _0x47cd06[_0x4de24c(0x1a4)][_0x4de24c(0x19f)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x2502f2[_0x4de24c(0x194)]}))[_0x4de24c(0x160)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0x2502f2[_0x4de24c(0x163)]}),{'\x66\x6c\x65\x65\x74\x49\x64':_0x2502f2['\x66\x6c\x65\x65\x74\x5f\x69\x64'],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object['\x76\x61\x6c\x75\x65\x73'](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x56a45a){const _0x214dd1=a0_0x111e74;if(!_0x56a45a||_0x56a45a[_0x214dd1(0x151)]===0x0)return ALL_FLEET_TOOL_SPECS;const _0x273c38=new Set(_0x56a45a);return Object[_0x214dd1(0x1af)](FLEET_TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0x52c2e7=>_0x273c38[_0x214dd1(0x1a0)](_0x52c2e7))[_0x214dd1(0x1db)](_0x1f860e=>FLEET_TOOL_SPECS[_0x1f860e]);}function anthropicFleetTools(_0x56556d,_0x30e52f={}){const _0x4de7a3=a0_0x111e74,_0x5f591a={'\x50\x42\x56\x4b\x44':function(_0x2afd73,_0x41b89b){return _0x2afd73(_0x41b89b);},'\x57\x4e\x4a\x4d\x71':_0x4de7a3(0x19a),'\x46\x46\x74\x69\x72':function(_0x2d2390,_0x42a475){return _0x2d2390 instanceof _0x42a475;},'\x7a\x4c\x50\x42\x57':function(_0x77d4a3,_0x31732d,_0x3657a4){return _0x77d4a3(_0x31732d,_0x3657a4);}},_0x553b5b=_0x5f591a[_0x4de7a3(0x1ae)](selectFleetSpecs,_0x30e52f[_0x4de7a3(0x1f4)]),_0x39c0a2=_0x5f591a[_0x4de7a3(0x1e4)](buildFleetHandlers,_0x553b5b,{'\x63\x6c\x69\x65\x6e\x74':_0x56556d});return{'\x74\x6f\x6f\x6c\x73':_0x553b5b['\x6d\x61\x70'](_0x501282=>({'\x6e\x61\x6d\x65':_0x501282['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x501282[_0x4de7a3(0x1ab)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x501282[_0x4de7a3(0x1d8)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x5d87a0){const _0x2bd0e1=_0x4de7a3,_0x11e7ff=_0x39c0a2['\x67\x65\x74'](_0x5d87a0[_0x2bd0e1(0x1c3)]);if(!_0x11e7ff)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':_0x5d87a0['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x2bd0e1(0x1b3)+_0x5d87a0[_0x2bd0e1(0x1c3)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x3aa81b=await _0x11e7ff(_0x5d87a0['\x69\x6e\x70\x75\x74']);return{'\x74\x79\x70\x65':_0x2bd0e1(0x19a),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5d87a0['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x5f591a[_0x2bd0e1(0x1ae)](serializeToolResult,_0x3aa81b)};}catch(_0x5955ce){return{'\x74\x79\x70\x65':_0x5f591a[_0x2bd0e1(0x1de)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5d87a0['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x5f591a['\x46\x46\x74\x69\x72'](_0x5955ce,Error)?_0x5955ce[_0x2bd0e1(0x1f3)]:String(_0x5955ce),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x5ddb58,_0x3ca442={}){const _0x2b1c58=a0_0x111e74,_0x56b5d9={'\x6a\x48\x71\x58\x6d':_0x2b1c58(0x1ea),'\x47\x6e\x68\x46\x79':function(_0x1b3d43,_0x3824ce){return _0x1b3d43===_0x3824ce;},'\x53\x62\x46\x4d\x53':'\x6f\x62\x6a\x65\x63\x74','\x67\x4a\x53\x66\x68':function(_0x29f3ed,_0x2580a4,_0x4e98e3){return _0x29f3ed(_0x2580a4,_0x4e98e3);}},_0x580364=selectFleetSpecs(_0x3ca442[_0x2b1c58(0x1f4)]),_0x4f3da3=_0x56b5d9[_0x2b1c58(0x162)](buildFleetHandlers,_0x580364,{'\x63\x6c\x69\x65\x6e\x74':_0x5ddb58});return{'\x74\x6f\x6f\x6c\x73':_0x580364[_0x2b1c58(0x1db)](_0x349cd4=>({'\x74\x79\x70\x65':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x349cd4[_0x2b1c58(0x1c3)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x349cd4[_0x2b1c58(0x1ab)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x349cd4[_0x2b1c58(0x1d8)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x5608be){const _0x1cafe0=_0x2b1c58,_0xca6c41=_0x4f3da3[_0x1cafe0(0x180)](_0x5608be[_0x1cafe0(0x146)][_0x1cafe0(0x1c3)]);if(!_0xca6c41)return{'\x72\x6f\x6c\x65':_0x56b5d9[_0x1cafe0(0x1d3)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x5608be['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x1cafe0(0x150)]({'\x65\x72\x72\x6f\x72':_0x1cafe0(0x1b3)+_0x5608be['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x1cafe0(0x1c3)]})};let _0x4564ba={};try{const _0x483def=JSON[_0x1cafe0(0x181)](_0x5608be[_0x1cafe0(0x146)][_0x1cafe0(0x1ef)]||'\x7b\x7d');if(_0x483def&&_0x56b5d9[_0x1cafe0(0x1ed)](typeof _0x483def,_0x56b5d9['\x53\x62\x46\x4d\x53']))_0x4564ba=_0x483def;}catch{}try{const _0x4bd6c0=await _0xca6c41(_0x4564ba);return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x5608be['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x4bd6c0)};}catch(_0x5f42e0){return{'\x72\x6f\x6c\x65':_0x1cafe0(0x1ea),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x5608be['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x1cafe0(0x150)]({'\x65\x72\x72\x6f\x72':_0x5f42e0 instanceof Error?_0x5f42e0['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x5f42e0)})};}}};}async function vercelAiFleetTools(_0x7e85ab,_0x2d52d7={}){const _0x30b463=a0_0x111e74,_0x20a3b1={'\x63\x45\x68\x4d\x5a':_0x30b463(0x184)};let _0x569d80;try{_0x569d80=await import('\x61\x69');}catch{throw new Error(_0x20a3b1[_0x30b463(0x1f9)]);}const _0x1dfc0f=selectFleetSpecs(_0x2d52d7[_0x30b463(0x1f4)]),_0x2f7331=buildFleetHandlers(_0x1dfc0f,{'\x63\x6c\x69\x65\x6e\x74':_0x7e85ab}),_0x5080ef={};for(const _0x2b2c55 of _0x1dfc0f)_0x5080ef[_0x2b2c55[_0x30b463(0x1c3)]]=_0x569d80[_0x30b463(0x1ea)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2b2c55[_0x30b463(0x1ab)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x569d80[_0x30b463(0x1b6)](_0x2b2c55[_0x30b463(0x1d8)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x1e6a20=>{const _0x10b755=_0x30b463,_0x2a58fc=_0x2f7331[_0x10b755(0x180)](_0x2b2c55[_0x10b755(0x1c3)]);if(!_0x2a58fc)throw new Error('\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x2b2c55[_0x10b755(0x1c3)]);return serializeToolResult(await _0x2a58fc(_0x1e6a20));}});return _0x5080ef;}async function mastraFleetTools(_0x3ed3db,_0x33a847={}){const _0x42a449=a0_0x111e74,_0x3f17a0={'\x6e\x6e\x48\x4a\x6b':function(_0x28e371,_0x562c80){return _0x28e371(_0x562c80);},'\x49\x48\x50\x68\x55':function(_0x504510,_0x1bfaaf){return _0x504510(_0x1bfaaf);},'\x53\x4e\x41\x4f\x53':function(_0x88d7a8,_0x2837b0,_0x30ca77){return _0x88d7a8(_0x2837b0,_0x30ca77);}};let _0x3e27bd;try{_0x3e27bd=await import('\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65');}catch{throw new Error(_0x42a449(0x1fb));}const _0xca71be=selectFleetSpecs(_0x33a847['\x61\x6c\x6c\x6f\x77']),_0x6fe9be=_0x3f17a0[_0x42a449(0x1bb)](buildFleetHandlers,_0xca71be,{'\x63\x6c\x69\x65\x6e\x74':_0x3ed3db}),_0x591595={};for(const _0xda5076 of _0xca71be)_0x591595[_0xda5076[_0x42a449(0x1c3)]]=_0x3e27bd[_0x42a449(0x1ad)]({'\x69\x64':_0xda5076[_0x42a449(0x1c3)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0xda5076[_0x42a449(0x1ab)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3e27bd['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61']?_0x3e27bd[_0x42a449(0x1b6)](_0xda5076[_0x42a449(0x1d8)]):_0xda5076[_0x42a449(0x1d8)],'\x65\x78\x65\x63\x75\x74\x65':async _0x1e44b7=>{const _0x36dddc=_0x42a449,_0x2449e9=_0x6fe9be[_0x36dddc(0x180)](_0xda5076[_0x36dddc(0x1c3)]);if(!_0x2449e9)throw new Error(_0x36dddc(0x1b3)+_0xda5076[_0x36dddc(0x1c3)]);return{'\x72\x65\x73\x75\x6c\x74':_0x3f17a0[_0x36dddc(0x1e2)](serializeToolResult,await _0x3f17a0[_0x36dddc(0x1e0)](_0x2449e9,_0x1e44b7?.['\x63\x6f\x6e\x74\x65\x78\x74']??{}))};}});return _0x591595;}function a0_0x4f20(_0x31d3e0,_0x347778){_0x31d3e0=_0x31d3e0-0x146;const _0x3d4000=a0_0x3d40();let _0x4f20ef=_0x3d4000[_0x31d3e0];if(a0_0x4f20['\x79\x7a\x4f\x48\x67\x70']===undefined){var _0x488807=function(_0x6d7329){const _0x52fad8='\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 _0x52c133='',_0x2a2666='';for(let _0x4aa217=0x0,_0x306ff7,_0x48871b,_0x4c9720=0x0;_0x48871b=_0x6d7329['\x63\x68\x61\x72\x41\x74'](_0x4c9720++);~_0x48871b&&(_0x306ff7=_0x4aa217%0x4?_0x306ff7*0x40+_0x48871b:_0x48871b,_0x4aa217++%0x4)?_0x52c133+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x306ff7>>(-0x2*_0x4aa217&0x6)):0x0){_0x48871b=_0x52fad8['\x69\x6e\x64\x65\x78\x4f\x66'](_0x48871b);}for(let _0x23e9fc=0x0,_0xbbe605=_0x52c133['\x6c\x65\x6e\x67\x74\x68'];_0x23e9fc<_0xbbe605;_0x23e9fc++){_0x2a2666+='\x25'+('\x30\x30'+_0x52c133['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x23e9fc)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x2a2666);};a0_0x4f20['\x48\x42\x67\x66\x7a\x50']=_0x488807,a0_0x4f20['\x54\x77\x72\x55\x64\x59']={},a0_0x4f20['\x79\x7a\x4f\x48\x67\x70']=!![];}const _0xa6b24b=_0x3d4000[0x0],_0x42cc75=_0x31d3e0+_0xa6b24b,_0x400702=a0_0x4f20['\x54\x77\x72\x55\x64\x59'][_0x42cc75];return!_0x400702?(_0x4f20ef=a0_0x4f20['\x48\x42\x67\x66\x7a\x50'](_0x4f20ef),a0_0x4f20['\x54\x77\x72\x55\x64\x59'][_0x42cc75]=_0x4f20ef):_0x4f20ef=_0x400702,_0x4f20ef;}function buildFleetHandlers(_0x5c9e84,_0x1cd86b){const _0x48fde3=a0_0x111e74,_0x5928e2=new Map();for(const _0x49f8fa of _0x5c9e84)_0x5928e2[_0x48fde3(0x186)](_0x49f8fa[_0x48fde3(0x1c3)],_0x49f8fa[_0x48fde3(0x1e9)](_0x1cd86b));return _0x5928e2;}const LIFECYCLE_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65':{'\x6e\x61\x6d\x65':a0_0x111e74(0x187),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1a3),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x111e74(0x15d),'\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_0x111e74(0x15c),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1b7)},'\x6e\x61\x6d\x65':{'\x74\x79\x70\x65':a0_0x111e74(0x15c),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x2e'}},'\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:_0x4484aa})=>async _0x3e1868=>{const _0x127ff6=a0_0x111e74,_0x268f71={'\x57\x70\x68\x6a\x53':_0x127ff6(0x14d)},_0x5b2996=await _0x4484aa[_0x127ff6(0x1a5)]({'\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74':_0x3e1868[_0x127ff6(0x1f6)]??_0x268f71[_0x127ff6(0x19b)],'\x6e\x61\x6d\x65':_0x3e1868[_0x127ff6(0x1c3)]});return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x5b2996['\x69\x64'],'\x73\x74\x61\x74\x75\x73':_0x5b2996[_0x127ff6(0x1c9)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x6e\x61\x6d\x65':a0_0x111e74(0x17d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1d9),'\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_0x111e74(0x15c),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1fa)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x111e74(0x15c),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x1b4)},'\x63\x77\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x16e)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x111e74(0x197),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x111e74(0x17f)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x111e74(0x157),a0_0x111e74(0x1f0)],'\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:_0x289183})=>async _0x29975e=>{const _0x3ae6eb=a0_0x111e74,_0x442029=await _0x289183['\x67\x65\x74'](_0x29975e[_0x3ae6eb(0x157)]);if(!_0x442029)throw new Error('\x53\x61\x6e\x64\x62\x6f\x78\x20'+_0x29975e['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64']+_0x3ae6eb(0x1c5));const _0x26e2ae=await _0x442029['\x65\x78\x65\x63'](_0x29975e[_0x3ae6eb(0x1f0)],{'\x63\x77\x64':_0x29975e[_0x3ae6eb(0x1b5)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x29975e[_0x3ae6eb(0x195)]??0xea60});return{'\x73\x74\x64\x6f\x75\x74':_0x26e2ae['\x73\x74\x64\x6f\x75\x74'],'\x73\x74\x64\x65\x72\x72':_0x26e2ae['\x73\x74\x64\x65\x72\x72'],'\x65\x78\x69\x74\x43\x6f\x64\x65':_0x26e2ae[_0x3ae6eb(0x19d)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':a0_0x111e74(0x159),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x44\x65\x6c\x65\x74\x65\x20\x61\x20\x73\x61\x6e\x64\x62\x6f\x78\x20\x63\x72\x65\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65\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\x6f\x6e\x63\x65\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x65\x64\x20\x77\x6f\x72\x6b\x20\x69\x73\x20\x66\x69\x6e\x69\x73\x68\x65\x64\x3b\x20\x6f\x72\x70\x68\x61\x6e\x65\x64\x20\x73\x61\x6e\x64\x62\x6f\x78\x65\x73\x20\x6b\x65\x65\x70\x20\x61\x63\x63\x72\x75\x69\x6e\x67\x20\x63\x6f\x73\x74\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x111e74(0x15d),'\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_0x111e74(0x15c),'\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_0x111e74(0x157)],'\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:_0x529388})=>async _0x2f368f=>{const _0x3b844c=a0_0x111e74,_0x40ec28=await _0x529388['\x67\x65\x74'](_0x2f368f[_0x3b844c(0x157)]);if(!_0x40ec28)return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x2f368f['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64'],'\x64\x65\x6c\x65\x74\x65\x64':!![]};return await _0x40ec28['\x64\x65\x6c\x65\x74\x65'](),{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x2f368f[_0x3b844c(0x157)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_LIFECYCLE_TOOL_SPECS=Object['\x76\x61\x6c\x75\x65\x73'](LIFECYCLE_TOOL_SPECS);function selectLifecycleSpecs(_0x5af80b){const _0x4dde24=a0_0x111e74;if(!_0x5af80b||_0x5af80b[_0x4dde24(0x151)]===0x0)return ALL_LIFECYCLE_TOOL_SPECS;const _0x3125fc=new Set(_0x5af80b);return Object[_0x4dde24(0x1af)](LIFECYCLE_TOOL_SPECS)[_0x4dde24(0x17b)](_0x36c7f4=>_0x3125fc[_0x4dde24(0x1a0)](_0x36c7f4))[_0x4dde24(0x1db)](_0x1e0c60=>LIFECYCLE_TOOL_SPECS[_0x1e0c60]);}function anthropicLifecycleTools(_0x1b130c,_0x3dbaa3={}){const _0x36655d=a0_0x111e74,_0x41f672={'\x47\x69\x50\x4e\x53':function(_0x42abb5,_0x1b6272){return _0x42abb5 instanceof _0x1b6272;},'\x77\x48\x4c\x43\x71':function(_0x531fbf,_0x17e594){return _0x531fbf(_0x17e594);},'\x71\x61\x6a\x57\x65':function(_0x26f3b8,_0x2f1e30,_0x54bc2b){return _0x26f3b8(_0x2f1e30,_0x54bc2b);}},_0x573ac6=selectLifecycleSpecs(_0x3dbaa3['\x61\x6c\x6c\x6f\x77']),_0x4780a0=_0x41f672['\x71\x61\x6a\x57\x65'](buildLifecycleHandlers,_0x573ac6,{'\x63\x6c\x69\x65\x6e\x74':_0x1b130c});return{'\x74\x6f\x6f\x6c\x73':_0x573ac6[_0x36655d(0x1db)](_0x3bc2bc=>({'\x6e\x61\x6d\x65':_0x3bc2bc[_0x36655d(0x1c3)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3bc2bc['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x3bc2bc[_0x36655d(0x1d8)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x4335bd){const _0x360e78=_0x36655d,_0x1bea0d=_0x4780a0['\x67\x65\x74'](_0x4335bd[_0x360e78(0x1c3)]);if(!_0x1bea0d)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':_0x4335bd['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x360e78(0x168)+_0x4335bd[_0x360e78(0x1c3)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x341d7e=await _0x1bea0d(_0x4335bd['\x69\x6e\x70\x75\x74']);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':_0x4335bd['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x341d7e)};}catch(_0x459a1c){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':_0x4335bd['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x41f672[_0x360e78(0x1d2)](_0x459a1c,Error)?_0x459a1c[_0x360e78(0x1f3)]:_0x41f672[_0x360e78(0x1a9)](String,_0x459a1c),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiLifecycleTools(_0x36dc49,_0x346219={}){const _0x43d9bf=a0_0x111e74,_0x4ca64c={'\x74\x59\x62\x69\x44':function(_0x4ebf93,_0x447983){return _0x4ebf93===_0x447983;},'\x6f\x4f\x55\x4b\x6e':function(_0x33cd95,_0x4bfe76){return _0x33cd95(_0x4bfe76);},'\x71\x56\x6d\x50\x73':_0x43d9bf(0x1ea),'\x74\x6a\x44\x48\x4e':function(_0x317e5e,_0xf959b3){return _0x317e5e instanceof _0xf959b3;},'\x64\x50\x48\x4f\x79':function(_0x5e8128,_0xe2f7ea){return _0x5e8128(_0xe2f7ea);},'\x4a\x63\x4f\x6e\x6b':function(_0x17fc89,_0x64ee70,_0x2f373a){return _0x17fc89(_0x64ee70,_0x2f373a);}},_0x29dbb0=_0x4ca64c[_0x43d9bf(0x1b2)](selectLifecycleSpecs,_0x346219[_0x43d9bf(0x1f4)]),_0x2faa92=_0x4ca64c[_0x43d9bf(0x190)](buildLifecycleHandlers,_0x29dbb0,{'\x63\x6c\x69\x65\x6e\x74':_0x36dc49});return{'\x74\x6f\x6f\x6c\x73':_0x29dbb0['\x6d\x61\x70'](_0x145971=>({'\x74\x79\x70\x65':_0x43d9bf(0x146),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x145971[_0x43d9bf(0x1c3)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x145971[_0x43d9bf(0x1ab)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x145971['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x56e2f6){const _0x5c5fe1=_0x43d9bf,_0x197e21=_0x2faa92['\x67\x65\x74'](_0x56e2f6[_0x5c5fe1(0x146)][_0x5c5fe1(0x1c3)]);if(!_0x197e21)return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x56e2f6['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x5c5fe1(0x150)]({'\x65\x72\x72\x6f\x72':_0x5c5fe1(0x168)+_0x56e2f6['\x66\x75\x6e\x63\x74\x69\x6f\x6e']['\x6e\x61\x6d\x65']})};let _0x8911f5={};try{const _0x5c5e7b=JSON[_0x5c5fe1(0x181)](_0x56e2f6[_0x5c5fe1(0x146)][_0x5c5fe1(0x1ef)]||'\x7b\x7d');if(_0x5c5e7b&&_0x4ca64c[_0x5c5fe1(0x196)](typeof _0x5c5e7b,_0x5c5fe1(0x15d)))_0x8911f5=_0x5c5e7b;}catch{}try{const _0x3cc395=await _0x4ca64c[_0x5c5fe1(0x1d6)](_0x197e21,_0x8911f5);return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x56e2f6['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x3cc395)};}catch(_0x4c5a09){return{'\x72\x6f\x6c\x65':_0x4ca64c[_0x5c5fe1(0x1e5)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x56e2f6['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x5c5fe1(0x150)]({'\x65\x72\x72\x6f\x72':_0x4ca64c['\x74\x6a\x44\x48\x4e'](_0x4c5a09,Error)?_0x4c5a09[_0x5c5fe1(0x1f3)]:String(_0x4c5a09)})};}}};}function buildLifecycleHandlers(_0x4d4d63,_0x41c04d){const _0x21bc62=a0_0x111e74,_0x551998=new Map();for(const _0xd13c32 of _0x4d4d63)_0x551998[_0x21bc62(0x186)](_0xd13c32[_0x21bc62(0x1c3)],_0xd13c32[_0x21bc62(0x1e9)](_0x41c04d));return _0x551998;}async function mastraTools(_0x36932b,_0x7ba7ce={}){const _0x3eb0b6=a0_0x111e74,_0x3967b7={'\x4e\x70\x76\x79\x69':function(_0x35eaf8,_0x4023e7){return _0x35eaf8(_0x4023e7);},'\x62\x56\x4c\x58\x73':'\x6d\x61\x73\x74\x72\x61\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\x69\x74\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','\x69\x6d\x41\x46\x6e':function(_0x5adadc,_0x133f44){return _0x5adadc(_0x133f44);}};let _0x5cc187;try{_0x5cc187=await import(_0x3eb0b6(0x1aa));}catch{throw new Error(_0x3967b7[_0x3eb0b6(0x1eb)]);}const _0x1cbae5=_0x3967b7[_0x3eb0b6(0x1be)](selectSpecs,_0x7ba7ce['\x61\x6c\x6c\x6f\x77']),_0x111472={'\x62\x6f\x78':_0x36932b,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x7ba7ce['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']},_0x517a8f={};for(const _0x559e80 of _0x1cbae5){const _0x1c0cf1=_0x559e80[_0x3eb0b6(0x1e9)](_0x111472);_0x517a8f[_0x559e80['\x6e\x61\x6d\x65']]=_0x5cc187[_0x3eb0b6(0x1ad)]({'\x69\x64':_0x559e80[_0x3eb0b6(0x1c3)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x559e80[_0x3eb0b6(0x1ab)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x5cc187[_0x3eb0b6(0x1b6)]?_0x5cc187['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61'](_0x559e80['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']):_0x559e80[_0x3eb0b6(0x1d8)],'\x65\x78\x65\x63\x75\x74\x65':async _0x4d6cb8=>{const _0x451a90=_0x3eb0b6;return{'\x72\x65\x73\x75\x6c\x74':_0x3967b7[_0x451a90(0x177)](serializeToolResult,await _0x1c0cf1(_0x4d6cb8?.[_0x451a90(0x1c7)]??{}))};}});}return _0x517a8f;}function openaiTools(_0x5066b5,_0x1f5263={}){const _0x2ebef8=a0_0x111e74,_0x211323={'\x47\x71\x78\x58\x75':_0x2ebef8(0x15d),'\x61\x68\x72\x56\x78':function(_0x18d4a,_0xa3e465){return _0x18d4a!==_0xa3e465;},'\x76\x6a\x67\x44\x46':function(_0x9ec00,_0x2b397f){return _0x9ec00(_0x2b397f);},'\x6d\x6c\x69\x76\x77':_0x2ebef8(0x1ea),'\x49\x59\x74\x45\x62':function(_0x4a4fb7,_0x264b05){return _0x4a4fb7 instanceof _0x264b05;},'\x44\x76\x62\x47\x49':function(_0x16025b,_0x4f142e){return _0x16025b(_0x4f142e);}},_0x8620e2=selectSpecs(_0x1f5263[_0x2ebef8(0x1f4)]),_0x566252={'\x62\x6f\x78':_0x5066b5,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x1f5263[_0x2ebef8(0x171)]},_0x5aec21=new Map();for(const _0x16aa02 of _0x8620e2)_0x5aec21[_0x2ebef8(0x186)](_0x16aa02['\x6e\x61\x6d\x65'],_0x16aa02[_0x2ebef8(0x1e9)](_0x566252));const _0x4bf3a7=_0x8620e2[_0x2ebef8(0x1db)](_0x3310a7=>({'\x74\x79\x70\x65':_0x2ebef8(0x146),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x3310a7[_0x2ebef8(0x1c3)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3310a7[_0x2ebef8(0x1ab)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x3310a7[_0x2ebef8(0x1d8)]}}));function _0x38882b(_0x50a054){const _0x2da2b9=_0x2ebef8;if(!_0x50a054)return{};try{const _0x5edb75=JSON['\x70\x61\x72\x73\x65'](_0x50a054);return typeof _0x5edb75===_0x211323['\x47\x71\x78\x58\x75']&&_0x211323[_0x2da2b9(0x1bd)](_0x5edb75,null)?_0x5edb75:{};}catch{return{};}}async function _0x179187(_0x27d5ec){const _0x11e333=_0x2ebef8,_0x197d83=_0x5aec21[_0x11e333(0x180)](_0x27d5ec[_0x11e333(0x146)]['\x6e\x61\x6d\x65']);if(!_0x197d83)return{'\x72\x6f\x6c\x65':_0x11e333(0x1ea),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x27d5ec['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x11e333(0x150)]({'\x65\x72\x72\x6f\x72':_0x11e333(0x1a1)+_0x27d5ec[_0x11e333(0x146)][_0x11e333(0x1c3)]})};try{const _0x315d2e=await _0x211323[_0x11e333(0x1f2)](_0x197d83,_0x38882b(_0x27d5ec[_0x11e333(0x146)][_0x11e333(0x1ef)]));return{'\x72\x6f\x6c\x65':_0x11e333(0x1ea),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x27d5ec['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x315d2e)};}catch(_0x2d2c31){return{'\x72\x6f\x6c\x65':_0x211323['\x6d\x6c\x69\x76\x77'],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x27d5ec['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x211323['\x49\x59\x74\x45\x62'](_0x2d2c31,Error)?_0x2d2c31[_0x11e333(0x1f3)]:_0x211323[_0x11e333(0x164)](String,_0x2d2c31)})};}}async function _0x3c538f(_0x34c05d){const _0x5a5a94=_0x2ebef8,_0x5c64c4=_0x34c05d[_0x5a5a94(0x1b8)]??[];return Promise['\x61\x6c\x6c'](_0x5c64c4[_0x5a5a94(0x1db)](_0x179187));}return{'\x74\x6f\x6f\x6c\x73':_0x4bf3a7,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x179187,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x3c538f};}async function vercelAiTools(_0x5db041,_0x37a6e8={}){const _0x213459=a0_0x111e74,_0x59e351={'\x50\x64\x45\x55\x43':function(_0x3fc7b1,_0x538a6e){return _0x3fc7b1(_0x538a6e);},'\x63\x74\x58\x4e\x56':_0x213459(0x1cb),'\x47\x61\x57\x65\x4c':function(_0x2e7fd1,_0xff6c63){return _0x2e7fd1(_0xff6c63);}};let _0x31f20c;try{_0x31f20c=await import('\x61\x69');}catch{throw new Error(_0x59e351[_0x213459(0x167)]);}const _0x5c49a1=_0x59e351['\x47\x61\x57\x65\x4c'](selectSpecs,_0x37a6e8['\x61\x6c\x6c\x6f\x77']),_0x6eb382={'\x62\x6f\x78':_0x5db041,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x37a6e8[_0x213459(0x171)]},_0x2d0ba5={};for(const _0x3fea56 of _0x5c49a1){const _0x5adb9b=_0x3fea56['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x6eb382);_0x2d0ba5[_0x3fea56[_0x213459(0x1c3)]]=_0x31f20c[_0x213459(0x1ea)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3fea56['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x31f20c[_0x213459(0x1b6)](_0x3fea56['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']),'\x65\x78\x65\x63\x75\x74\x65':async _0x315372=>{const _0x3b21a9=_0x213459;return serializeToolResult(await _0x59e351[_0x3b21a9(0x1c2)](_0x5adb9b,_0x315372));}});}return _0x2d0ba5;}export{ALL_FLEET_TOOL_SPECS,ALL_LIFECYCLE_TOOL_SPECS,ALL_TOOL_SPECS,FLEET_TOOL_SPECS,LIFECYCLE_TOOL_SPECS,TOOL_SPECS,anthropicFleetTools,anthropicLifecycleTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiLifecycleTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};
@@ -1 +1 @@
1
- const a0_0x38aa5d=a0_0x12ad;function a0_0x40c2(){const _0x537cce=['\x6e\x74\x61\x31\x7a\x4d\x72\x48\x76\x4b\x4c\x49','\x6d\x4a\x69\x32\x6d\x78\x4c\x7a\x72\x77\x39\x75\x76\x57','\x41\x33\x44\x30\x44\x4b\x6d','\x73\x66\x6d\x59\x6e\x74\x79','\x43\x4d\x76\x57\x7a\x77\x66\x30','\x6d\x4a\x69\x58\x6f\x64\x72\x48\x75\x78\x48\x6a\x44\x4c\x47','\x73\x77\x35\x6b\x45\x78\x6d','\x79\x32\x35\x67\x45\x77\x47','\x73\x4b\x35\x70\x45\x65\x30','\x6d\x5a\x75\x59\x6d\x64\x43\x58\x43\x66\x62\x34\x71\x4d\x4c\x31','\x42\x4d\x39\x33','\x41\x68\x4c\x4a\x76\x78\x69','\x71\x30\x54\x6a\x42\x65\x34','\x73\x4c\x44\x75','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x6d\x74\x65\x32\x6d\x5a\x71\x31\x6d\x4b\x44\x58\x7a\x67\x48\x52\x79\x71','\x79\x77\x58\x4e','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x76\x67\x39\x50\x76\x75\x69','\x43\x4d\x76\x48\x7a\x61','\x6e\x64\x79\x34\x6e\x74\x75\x59\x6e\x33\x4c\x41\x42\x30\x66\x6e\x41\x47','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x43\x33\x62\x53\x41\x78\x71','\x6e\x4b\x66\x51\x72\x65\x54\x64\x76\x57','\x43\x4d\x35\x49\x7a\x67\x57','\x44\x67\x4c\x4c\x43\x47','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x44\x78\x62\x4b\x79\x78\x72\x4c','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x7a\x4e\x6a\x56\x42\x71','\x41\x78\x6e\x5a\x44\x77\x75','\x7a\x4e\x6a\x4c\x7a\x71','\x41\x4d\x6a\x54\x41\x4d\x4f','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x79\x4d\x48\x77\x44\x77\x4b','\x6d\x5a\x79\x58\x6e\x5a\x72\x41\x71\x4c\x6e\x69\x45\x4d\x65','\x42\x65\x4c\x4d\x43\x78\x69','\x75\x67\x4c\x71\x73\x4b\x4b','\x7a\x78\x48\x57','\x6d\x74\x69\x57\x43\x76\x66\x54\x44\x33\x6a\x30','\x7a\x4d\x58\x56\x42\x33\x69','\x45\x76\x66\x6d\x7a\x78\x65','\x43\x33\x72\x59\x41\x77\x35\x4e','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x6d\x74\x61\x5a\x6d\x64\x6d\x57\x6e\x78\x6a\x76\x74\x32\x39\x62\x7a\x71','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x7a\x77\x35\x30\x7a\x78\x6a\x57\x43\x4d\x4c\x5a\x7a\x71','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x6d\x74\x4b\x33\x6d\x74\x4b\x32\x79\x76\x72\x63\x41\x4b\x31\x33','\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x7a\x67\x4c\x4e\x7a\x78\x6e\x30','\x79\x4c\x44\x63\x77\x4d\x47','\x75\x4e\x4c\x4f\x76\x65\x38','\x75\x4c\x4c\x34\x77\x67\x69','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x43\x67\x66\x59\x43\x32\x75','\x42\x77\x66\x34','\x7a\x32\x76\x30\x76\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x79\x32\x39\x53\x42\x67\x66\x49\x42\x33\x6a\x48\x44\x67\x4c\x56\x42\x47','\x45\x75\x76\x64\x45\x4d\x57','\x79\x32\x58\x56\x79\x32\x54\x74\x41\x32\x76\x33\x75\x32\x76\x4a\x42\x32\x35\x4b\x43\x57','\x41\x78\x6e\x5a\x44\x77\x76\x64\x42\x32\x58\x53\x79\x77\x6a\x56\x43\x4d\x66\x30\x41\x77\x39\x55','\x72\x4c\x6a\x6b\x42\x30\x71'];a0_0x40c2=function(){return _0x537cce;};return a0_0x40c2();}(function(_0x485503,_0x523913){const _0x27908a=a0_0x12ad,_0x510c85=_0x485503();while(!![]){try{const _0xbb02b1=parseInt(_0x27908a(0x7b))/0x1*(parseInt(_0x27908a(0x95))/0x2)+-parseInt(_0x27908a(0x90))/0x3+-parseInt(_0x27908a(0x73))/0x4+-parseInt(_0x27908a(0xa7))/0x5*(-parseInt(_0x27908a(0x87))/0x6)+parseInt(_0x27908a(0xa8))/0x7*(parseInt(_0x27908a(0xac))/0x8)+-parseInt(_0x27908a(0xb0))/0x9*(parseInt(_0x27908a(0x8b))/0xa)+-parseInt(_0x27908a(0x78))/0xb;if(_0xbb02b1===_0x523913)break;else _0x510c85['push'](_0x510c85['shift']());}catch(_0x48d11b){_0x510c85['push'](_0x510c85['shift']());}}}(a0_0x40c2,0x8a4f1));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function base64UrlEncode(_0x5877ef){const _0x23d4ae=a0_0x12ad,_0xdad3e={'\x79\x51\x4c\x65\x71':function(_0x17a3a6,_0x477c86){return _0x17a3a6===_0x477c86;}};return(_0xdad3e[_0x23d4ae(0x8d)](typeof _0x5877ef,_0x23d4ae(0x8e))?Buffer[_0x23d4ae(0x81)](_0x5877ef):_0x5877ef)[_0x23d4ae(0x85)](_0x23d4ae(0x97))[_0x23d4ae(0x94)](/\+/g,'\x2d')[_0x23d4ae(0x94)](/\//g,'\x5f')[_0x23d4ae(0x94)](/=+$/,'');}function decodeBase64UrlToBuffer(_0xd84f25){const _0x5217cc=a0_0x12ad,_0x2a4562={'\x4b\x4f\x61\x73\x64':function(_0x44075e,_0x128a9b){return _0x44075e-_0x128a9b;}};if(!/^[A-Za-z0-9_-]*$/['\x74\x65\x73\x74'](_0xd84f25))return null;const _0x608345=_0xd84f25+'\x3d'['\x72\x65\x70\x65\x61\x74'](_0x2a4562['\x4b\x4f\x61\x73\x64'](0x4,_0xd84f25[_0x5217cc(0x9d)]%0x4)%0x4);return Buffer['\x66\x72\x6f\x6d'](_0x608345['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')['\x72\x65\x70\x6c\x61\x63\x65'](/_/g,'\x2f'),_0x5217cc(0x97));}function createSignature(_0x37f2dd,_0x58409c){const _0x3f0ae2=a0_0x12ad,_0x322751={'\x54\x6f\x69\x55\x42':function(_0x3092de,_0x53f2f0,_0x11fa2a){return _0x3092de(_0x53f2f0,_0x11fa2a);},'\x43\x4b\x49\x6c\x4e':_0x3f0ae2(0x91)};return base64UrlEncode(_0x322751[_0x3f0ae2(0x76)](createHmac,_0x322751[_0x3f0ae2(0xb3)],_0x58409c)[_0x3f0ae2(0x7f)](_0x37f2dd)[_0x3f0ae2(0x99)]());}const JWT_HEADER=base64UrlEncode(JSON[a0_0x38aa5d(0xb5)]({'\x61\x6c\x67':a0_0x38aa5d(0xaa),'\x74\x79\x70':a0_0x38aa5d(0xb4)}));function issueToken(_0x3359d3,_0x377efc,_0x362e75){const _0x68a414=a0_0x38aa5d,_0x254ce5={'\x63\x6e\x46\x79\x68':function(_0x43389c,_0xc6c23e){return _0x43389c(_0xc6c23e);},'\x50\x69\x50\x4a\x49':function(_0x29dbba,_0x2b913d,_0x16073b){return _0x29dbba(_0x2b913d,_0x16073b);}},_0x35bb98=Math[_0x68a414(0x8c)](Date['\x6e\x6f\x77']()/0x3e8),_0x296c1b={..._0x377efc,'\x69\x61\x74':_0x35bb98,'\x65\x78\x70':_0x35bb98+_0x362e75*0x3c},_0x1a2ed4=JWT_HEADER+'\x2e'+_0x254ce5[_0x68a414(0xae)](base64UrlEncode,JSON[_0x68a414(0xb5)](_0x296c1b));return _0x1a2ed4+'\x2e'+_0x254ce5[_0x68a414(0x89)](createSignature,_0x1a2ed4,_0x3359d3);}function issueReadToken(_0x5a5ce0,_0x2f0dba,_0x2c75d8){const _0x4a42f3=a0_0x38aa5d;return issueToken(_0x5a5ce0,{..._0x2f0dba,'\x74\x79\x70':_0x4a42f3(0x77)},_0x2c75d8);}function issueSessionScopedToken(_0x314957,_0x21b565,_0x75d0e2){return issueReadToken(_0x314957,_0x21b565,_0x75d0e2);}function issueProjectScopedToken(_0x35feb9,_0xd59ae2,_0x19c1c7){return issueReadToken(_0x35feb9,_0xd59ae2,_0x19c1c7);}function issueBatchScopedToken(_0x4db1a9,_0x27d9d7,_0x2446e9){return issueReadToken(_0x4db1a9,_0x27d9d7,_0x2446e9);}function issueCollaborationToken(_0x40794b,_0x4b00d5,_0xb14f08){const _0x4596bf=a0_0x38aa5d,_0x11dcbf={'\x52\x79\x68\x54\x4f':function(_0x15a735,_0x26e539,_0x458ff9,_0x2819dc){return _0x15a735(_0x26e539,_0x458ff9,_0x2819dc);},'\x49\x6e\x4a\x79\x73':_0x4596bf(0xa2)};return _0x11dcbf[_0x4596bf(0x9b)](issueToken,_0x40794b,{'\x73\x75\x62':_0x4b00d5[_0x4596bf(0x79)],'\x73\x69\x64':_0x4b00d5['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x69\x64':_0x4b00d5['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'],'\x63\x69\x64':_0x4b00d5[_0x4596bf(0x92)],'\x74\x79\x70':_0x11dcbf[_0x4596bf(0xad)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x4b00d5['\x70\x72\x6f\x6a\x65\x63\x74\x49\x64'],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x4b00d5['\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64'],'\x61\x63\x63\x65\x73\x73':_0x4b00d5[_0x4596bf(0x7e)]},_0xb14f08);}function unsafeDecodeToken(_0xa9a512){const _0xbc550f=a0_0x38aa5d;try{const _0x28aef6=_0xa9a512['\x73\x70\x6c\x69\x74']('\x2e');if(_0x28aef6[_0xbc550f(0x9d)]!==0x3)return null;const _0x18ab3c=_0x28aef6[0x1]+'\x3d'[_0xbc550f(0xab)]((0x4-_0x28aef6[0x1]['\x6c\x65\x6e\x67\x74\x68']%0x4)%0x4),_0x3e6f22=Buffer[_0xbc550f(0x81)](_0x18ab3c['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')[_0xbc550f(0x94)](/_/g,'\x2f'),_0xbc550f(0x97))[_0xbc550f(0x85)]();return JSON[_0xbc550f(0x9f)](_0x3e6f22);}catch{return null;}}function verifyToken(_0x28d569,_0x538aea,_0x35bfab={}){const _0x315cfc=a0_0x38aa5d,_0x2706c9={'\x6b\x77\x74\x76\x43':_0x315cfc(0xaa),'\x68\x79\x63\x55\x72':function(_0x1a6484,_0x339aa2,_0x10d163){return _0x1a6484(_0x339aa2,_0x10d163);},'\x6a\x62\x6d\x6a\x6a':function(_0x185a7c,_0x5d3703){return _0x185a7c(_0x5d3703);},'\x6b\x67\x78\x68\x63':function(_0x1aa051,_0x46b726){return _0x1aa051(_0x46b726);},'\x46\x52\x4a\x6f\x44':function(_0x39c548,_0x50a9ae){return _0x39c548||_0x50a9ae;},'\x72\x6e\x62\x64\x6c':function(_0x5033e6,_0x867d7){return _0x5033e6/_0x867d7;},'\x52\x59\x78\x58\x62':function(_0x4bd6bf,_0x4d7188){return _0x4bd6bf<_0x4d7188;}};try{const _0x2938b6=_0x28d569[_0x315cfc(0x7a)]('\x2e');if(_0x2938b6[_0x315cfc(0x9d)]!==0x3)return null;const [_0x465aee,_0x5e45d5,_0x5026ec]=_0x2938b6;if(!_0x465aee||!_0x5e45d5||!_0x5026ec)return null;let _0x5a5e3b;try{const _0x5baf44=_0x465aee+'\x3d'[_0x315cfc(0xab)]((0x4-_0x465aee['\x6c\x65\x6e\x67\x74\x68']%0x4)%0x4),_0xae9d84=Buffer[_0x315cfc(0x81)](_0x5baf44[_0x315cfc(0x94)](/-/g,'\x2b')['\x72\x65\x70\x6c\x61\x63\x65'](/_/g,'\x2f'),_0x315cfc(0x97))['\x74\x6f\x53\x74\x72\x69\x6e\x67']();_0x5a5e3b=JSON[_0x315cfc(0x9f)](_0xae9d84);}catch{return null;}if(_0x5a5e3b[_0x315cfc(0x74)]!==_0x2706c9[_0x315cfc(0xa9)])return null;const _0x4ff260=_0x2706c9[_0x315cfc(0xb2)](createSignature,_0x465aee+'\x2e'+_0x5e45d5,_0x538aea),_0x511ee1=_0x2706c9[_0x315cfc(0x84)](decodeBase64UrlToBuffer,_0x5026ec),_0x51b407=_0x2706c9['\x6b\x67\x78\x68\x63'](decodeBase64UrlToBuffer,_0x4ff260);if(_0x2706c9[_0x315cfc(0xa6)](!_0x511ee1,!_0x51b407))return null;if(_0x511ee1['\x6c\x65\x6e\x67\x74\x68']!==_0x51b407['\x6c\x65\x6e\x67\x74\x68'])return null;if(!timingSafeEqual(_0x511ee1,_0x51b407))return null;const _0xfc237c=unsafeDecodeToken(_0x28d569);if(!_0xfc237c)return null;const _0x1b424b=Math[_0x315cfc(0x8c)](_0x2706c9[_0x315cfc(0x7c)](Date[_0x315cfc(0xb1)](),0x3e8)),_0x52108e=Math[_0x315cfc(0xa0)](0x0,_0x35bfab[_0x315cfc(0xa4)]??0x0);if(typeof _0xfc237c[_0x315cfc(0x8a)]!==_0x315cfc(0x8f)||_0x2706c9[_0x315cfc(0x9c)](_0xfc237c[_0x315cfc(0x8a)]+_0x52108e,_0x1b424b))return null;return _0xfc237c;}catch{return null;}}function a0_0x12ad(_0x32385f,_0x174446){_0x32385f=_0x32385f-0x73;const _0x40c285=a0_0x40c2();let _0x12adef=_0x40c285[_0x32385f];if(a0_0x12ad['\x75\x66\x6d\x4a\x58\x44']===undefined){var _0x322c9a=function(_0x2f7368){const _0x5e5c07='\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 _0x3da3f5='',_0x80171f='';for(let _0x34b527=0x0,_0xb682c4,_0x2aa8b8,_0x51ac16=0x0;_0x2aa8b8=_0x2f7368['\x63\x68\x61\x72\x41\x74'](_0x51ac16++);~_0x2aa8b8&&(_0xb682c4=_0x34b527%0x4?_0xb682c4*0x40+_0x2aa8b8:_0x2aa8b8,_0x34b527++%0x4)?_0x3da3f5+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0xb682c4>>(-0x2*_0x34b527&0x6)):0x0){_0x2aa8b8=_0x5e5c07['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2aa8b8);}for(let _0x5a0a7a=0x0,_0x1439d9=_0x3da3f5['\x6c\x65\x6e\x67\x74\x68'];_0x5a0a7a<_0x1439d9;_0x5a0a7a++){_0x80171f+='\x25'+('\x30\x30'+_0x3da3f5['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5a0a7a)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x80171f);};a0_0x12ad['\x56\x75\x59\x46\x49\x6c']=_0x322c9a,a0_0x12ad['\x50\x58\x77\x44\x53\x50']={},a0_0x12ad['\x75\x66\x6d\x4a\x58\x44']=!![];}const _0x4bfd4c=_0x40c285[0x0],_0x19aad4=_0x32385f+_0x4bfd4c,_0x4b60b0=a0_0x12ad['\x50\x58\x77\x44\x53\x50'][_0x19aad4];return!_0x4b60b0?(_0x12adef=a0_0x12ad['\x56\x75\x59\x46\x49\x6c'](_0x12adef),a0_0x12ad['\x50\x58\x77\x44\x53\x50'][_0x19aad4]=_0x12adef):_0x12adef=_0x4b60b0,_0x12adef;}function getTokenTTL(_0x597e5e){const _0x24523c=a0_0x38aa5d,_0x17ec7b=Math[_0x24523c(0x8c)](Date[_0x24523c(0xb1)]()/0x3e8);return _0x597e5e[_0x24523c(0x8a)]-_0x17ec7b;}function isTokenExpiringSoon(_0x34da4a,_0x2abffa=0x3c){const _0x4a93ee=a0_0x38aa5d,_0x200fe8={'\x4a\x4e\x4f\x78\x4d':function(_0x30fff1,_0x3965d9){return _0x30fff1<=_0x3965d9;}};return _0x200fe8[_0x4a93ee(0xaf)](getTokenTTL(_0x34da4a),_0x2abffa);}var ProductTokenIssuer=class{['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'];[a0_0x38aa5d(0x96)];['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'];constructor(_0x3882e6){const _0x3a0bab=a0_0x38aa5d;this['\x70\x72\x6f\x64\x75\x63\x74\x49\x64']=_0x3882e6[_0x3a0bab(0x9e)],this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74']=_0x3882e6['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74'],this[_0x3a0bab(0x98)]={'\x66\x72\x65\x65':_0x3882e6['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0x3a0bab(0x83)]??0xf,'\x70\x72\x6f':_0x3882e6[_0x3a0bab(0x98)]?.['\x70\x72\x6f']??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x3882e6[_0x3a0bab(0x98)]?.[_0x3a0bab(0x93)]??0x1e0};}[a0_0x38aa5d(0x82)](_0x333c32){const _0x5b04bb=a0_0x38aa5d,_0x10f3b3={'\x79\x45\x43\x7a\x6c':function(_0xf76ad6,_0x28f9a8){return _0xf76ad6+_0x28f9a8;},'\x7a\x4d\x6c\x6f\x7a':function(_0x33b124,_0x270beb){return _0x33b124/_0x270beb;},'\x62\x57\x42\x5a\x68':function(_0x5f333e,_0x5a21f8){return _0x5f333e*_0x5a21f8;}},_0x1beeab=_0x333c32[_0x5b04bb(0x7d)]??_0x5b04bb(0x83),_0x52300b=this[_0x5b04bb(0x98)][_0x1beeab]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x5b04bb(0x83)];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x5b04bb(0x96)],{'\x73\x75\x62':_0x333c32[_0x5b04bb(0x79)],'\x73\x69\x64':_0x333c32[_0x5b04bb(0x75)],'\x70\x69\x64':this[_0x5b04bb(0x9e)],'\x63\x69\x64':_0x333c32[_0x5b04bb(0x92)]},_0x52300b),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x10f3b3[_0x5b04bb(0xa3)](Math[_0x5b04bb(0x8c)](_0x10f3b3['\x7a\x4d\x6c\x6f\x7a'](Date['\x6e\x6f\x77'](),0x3e8)),_0x10f3b3[_0x5b04bb(0x9a)](_0x52300b,0x3c))};}[a0_0x38aa5d(0xa5)](_0x4b31a7){const _0x4d5c8a=a0_0x38aa5d,_0x2daa43={'\x62\x68\x56\x75\x69':function(_0x93369d,_0x3d329b,_0x915ae2,_0x11dfef){return _0x93369d(_0x3d329b,_0x915ae2,_0x11dfef);},'\x6c\x49\x66\x71\x72':function(_0x15e250,_0x183310){return _0x15e250+_0x183310;}},_0x19d586=_0x4b31a7['\x74\x69\x65\x72']??'\x66\x72\x65\x65',_0x862d39=this[_0x4d5c8a(0x98)][_0x19d586]??this[_0x4d5c8a(0x98)]['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':_0x2daa43[_0x4d5c8a(0x86)](issueCollaborationToken,this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74'],{'\x75\x73\x65\x72\x49\x64':_0x4b31a7[_0x4d5c8a(0x79)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4b31a7[_0x4d5c8a(0x75)],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x4b31a7['\x70\x72\x6f\x6a\x65\x63\x74\x49\x64'],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x4b31a7[_0x4d5c8a(0x80)],'\x61\x63\x63\x65\x73\x73':_0x4b31a7[_0x4d5c8a(0x7e)],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x4b31a7[_0x4d5c8a(0x92)]},_0x862d39),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x2daa43[_0x4d5c8a(0x88)](Math[_0x4d5c8a(0x8c)](Date[_0x4d5c8a(0xb1)]()/0x3e8),_0x862d39*0x3c)};}[a0_0x38aa5d(0xa1)](_0x31e3c5='\x66\x72\x65\x65'){const _0x139f25=a0_0x38aa5d;return this[_0x139f25(0x98)][_0x31e3c5]??this[_0x139f25(0x98)]['\x66\x72\x65\x65'];}};export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};
1
+ const a0_0x7cd266=a0_0x38fa;(function(_0x426918,_0x2162ab){const _0x4a153f=a0_0x38fa,_0x47134e=_0x426918();while(!![]){try{const _0x2d4c0e=-parseInt(_0x4a153f(0xe2))/0x1*(parseInt(_0x4a153f(0xb3))/0x2)+parseInt(_0x4a153f(0xd2))/0x3*(-parseInt(_0x4a153f(0xdd))/0x4)+-parseInt(_0x4a153f(0xe3))/0x5+-parseInt(_0x4a153f(0xd7))/0x6*(parseInt(_0x4a153f(0xc9))/0x7)+-parseInt(_0x4a153f(0xe0))/0x8+parseInt(_0x4a153f(0xd3))/0x9*(parseInt(_0x4a153f(0xc5))/0xa)+parseInt(_0x4a153f(0xd6))/0xb;if(_0x2d4c0e===_0x2162ab)break;else _0x47134e['push'](_0x47134e['shift']());}catch(_0x4fbe2b){_0x47134e['push'](_0x47134e['shift']());}}}(a0_0x5b31,0x7b1d9));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function a0_0x38fa(_0x1c97ac,_0x333fea){_0x1c97ac=_0x1c97ac-0xa4;const _0x5b31a6=a0_0x5b31();let _0x38fa88=_0x5b31a6[_0x1c97ac];if(a0_0x38fa['\x62\x6d\x70\x64\x48\x5a']===undefined){var _0x34b759=function(_0x1442cc){const _0x241beb='\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 _0x1cf083='',_0x36c96a='';for(let _0x3d2707=0x0,_0x361c15,_0x469329,_0x4b1825=0x0;_0x469329=_0x1442cc['\x63\x68\x61\x72\x41\x74'](_0x4b1825++);~_0x469329&&(_0x361c15=_0x3d2707%0x4?_0x361c15*0x40+_0x469329:_0x469329,_0x3d2707++%0x4)?_0x1cf083+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x361c15>>(-0x2*_0x3d2707&0x6)):0x0){_0x469329=_0x241beb['\x69\x6e\x64\x65\x78\x4f\x66'](_0x469329);}for(let _0x4017fd=0x0,_0x2df80e=_0x1cf083['\x6c\x65\x6e\x67\x74\x68'];_0x4017fd<_0x2df80e;_0x4017fd++){_0x36c96a+='\x25'+('\x30\x30'+_0x1cf083['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4017fd)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x36c96a);};a0_0x38fa['\x70\x44\x52\x42\x58\x4d']=_0x34b759,a0_0x38fa['\x77\x51\x7a\x78\x69\x63']={},a0_0x38fa['\x62\x6d\x70\x64\x48\x5a']=!![];}const _0x37d635=_0x5b31a6[0x0],_0x31a469=_0x1c97ac+_0x37d635,_0x72255d=a0_0x38fa['\x77\x51\x7a\x78\x69\x63'][_0x31a469];return!_0x72255d?(_0x38fa88=a0_0x38fa['\x70\x44\x52\x42\x58\x4d'](_0x38fa88),a0_0x38fa['\x77\x51\x7a\x78\x69\x63'][_0x31a469]=_0x38fa88):_0x38fa88=_0x72255d,_0x38fa88;}function base64UrlEncode(_0xd8a80c){const _0x10ec96=a0_0x38fa,_0x288101={'\x52\x4a\x5a\x50\x57':_0x10ec96(0xeb)};return(typeof _0xd8a80c===_0x288101['\x52\x4a\x5a\x50\x57']?Buffer[_0x10ec96(0xbf)](_0xd8a80c):_0xd8a80c)[_0x10ec96(0xbc)]('\x62\x61\x73\x65\x36\x34')['\x72\x65\x70\x6c\x61\x63\x65'](/\+/g,'\x2d')[_0x10ec96(0xc8)](/\//g,'\x5f')['\x72\x65\x70\x6c\x61\x63\x65'](/=+$/,'');}function decodeBase64UrlToBuffer(_0x3b0da7){const _0x25d7df=a0_0x38fa,_0x50fcb4={'\x62\x48\x42\x4e\x68':function(_0xfa5b7,_0x3aa599){return _0xfa5b7+_0x3aa599;},'\x6c\x76\x63\x4e\x69':_0x25d7df(0xc6)};if(!/^[A-Za-z0-9_-]*$/[_0x25d7df(0xc0)](_0x3b0da7))return null;const _0x6118ee=_0x50fcb4[_0x25d7df(0xae)](_0x3b0da7,'\x3d'[_0x25d7df(0xd8)]((0x4-_0x3b0da7[_0x25d7df(0xd9)]%0x4)%0x4));return Buffer['\x66\x72\x6f\x6d'](_0x6118ee[_0x25d7df(0xc8)](/-/g,'\x2b')[_0x25d7df(0xc8)](/_/g,'\x2f'),_0x50fcb4[_0x25d7df(0xaf)]);}function createSignature(_0x4cf999,_0x54877a){const _0x42dc86=a0_0x38fa,_0x573831={'\x4e\x5a\x6d\x47\x74':function(_0x5c5fbb,_0x49d489,_0x4c9dca){return _0x5c5fbb(_0x49d489,_0x4c9dca);}};return base64UrlEncode(_0x573831[_0x42dc86(0xe5)](createHmac,_0x42dc86(0xad),_0x54877a)[_0x42dc86(0xb4)](_0x4cf999)[_0x42dc86(0xd5)]());}const JWT_HEADER=base64UrlEncode(JSON[a0_0x7cd266(0xd1)]({'\x61\x6c\x67':a0_0x7cd266(0xcd),'\x74\x79\x70':a0_0x7cd266(0xe4)}));function issueToken(_0xbe3584,_0x757872,_0x28b4b9){const _0xad047c=a0_0x7cd266,_0x39270e={'\x6c\x6b\x79\x75\x77':function(_0x41aa12,_0x167c68){return _0x41aa12(_0x167c68);},'\x41\x61\x50\x71\x73':function(_0x4d795e,_0x3951aa,_0x223d73){return _0x4d795e(_0x3951aa,_0x223d73);}},_0xff0da3=Math['\x66\x6c\x6f\x6f\x72'](Date[_0xad047c(0xba)]()/0x3e8),_0x2aeef7={..._0x757872,'\x69\x61\x74':_0xff0da3,'\x65\x78\x70':_0xff0da3+_0x28b4b9*0x3c},_0x5a7497=JWT_HEADER+'\x2e'+_0x39270e[_0xad047c(0xa5)](base64UrlEncode,JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](_0x2aeef7));return _0x5a7497+'\x2e'+_0x39270e['\x41\x61\x50\x71\x73'](createSignature,_0x5a7497,_0xbe3584);}function issueReadToken(_0x517ae2,_0x5be651,_0x34f57e){const _0x2dfea6=a0_0x7cd266;return issueToken(_0x517ae2,{..._0x5be651,'\x74\x79\x70':_0x2dfea6(0xdb)},_0x34f57e);}function issueSessionScopedToken(_0x22dd78,_0x533cf8,_0x5777ea){return issueReadToken(_0x22dd78,_0x533cf8,_0x5777ea);}function a0_0x5b31(){const _0x38f672=['\x6d\x74\x6a\x75\x7a\x31\x76\x74\x73\x4b\x38','\x6d\x4a\x69\x33\x6f\x64\x79\x59\x7a\x67\x6e\x6b\x75\x4b\x72\x6b','\x7a\x77\x35\x30\x7a\x78\x6a\x57\x43\x4d\x4c\x5a\x7a\x71','\x7a\x67\x4c\x4e\x7a\x78\x6e\x30','\x6d\x4a\x43\x59\x6f\x74\x61\x34\x6f\x74\x62\x59\x41\x33\x6e\x75\x41\x4e\x4b','\x6e\x64\x48\x5a\x75\x33\x4c\x72\x42\x32\x75','\x43\x4d\x76\x57\x7a\x77\x66\x30','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x44\x67\x4c\x4c\x43\x47','\x43\x4d\x76\x48\x7a\x61','\x43\x4b\x50\x30\x73\x4e\x79','\x6d\x74\x69\x32\x6e\x74\x75\x32\x44\x68\x6e\x72\x73\x32\x4c\x67','\x43\x4c\x50\x35\x79\x32\x75','\x71\x30\x31\x41\x75\x77\x79','\x6e\x74\x65\x31\x6e\x4a\x69\x34\x6f\x68\x66\x34\x44\x4b\x54\x52\x43\x47','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x6e\x5a\x43\x33\x6e\x64\x72\x52\x42\x32\x48\x72\x74\x78\x65','\x6e\x64\x61\x33\x6d\x5a\x47\x33\x6e\x78\x66\x4e\x7a\x75\x54\x77\x41\x61','\x73\x4c\x44\x75','\x74\x4c\x50\x54\x72\x33\x71','\x7a\x78\x48\x57','\x41\x77\x66\x4a\x76\x77\x71','\x79\x30\x6e\x78\x77\x4b\x38','\x79\x77\x58\x4e','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x43\x33\x72\x59\x41\x77\x35\x4e','\x41\x78\x6e\x5a\x44\x77\x76\x64\x42\x32\x58\x53\x79\x77\x6a\x56\x43\x4d\x66\x30\x41\x77\x39\x55','\x42\x67\x54\x35\x44\x78\x43','\x73\x65\x6e\x32\x79\x31\x65','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x7a\x4d\x58\x56\x42\x33\x69','\x43\x33\x62\x53\x41\x78\x71','\x7a\x77\x6e\x50\x44\x78\x71','\x7a\x32\x76\x30\x76\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x79\x4b\x48\x63\x74\x4d\x47','\x42\x68\x7a\x4a\x74\x4d\x4b','\x42\x4e\x72\x50\x44\x4b\x30','\x73\x77\x39\x51\x79\x4c\x65','\x7a\x4e\x6a\x4c\x7a\x71','\x6d\x74\x6a\x58\x41\x32\x58\x51\x75\x75\x75','\x44\x78\x62\x4b\x79\x78\x72\x4c','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x45\x77\x72\x57\x73\x32\x34','\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x43\x68\x6a\x56\x41\x4d\x76\x4a\x44\x65\x4c\x4b','\x71\x4e\x76\x77\x72\x31\x6d','\x42\x4d\x39\x33','\x44\x32\x76\x59\x7a\x31\x4b','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x7a\x4e\x6a\x56\x42\x71','\x44\x67\x76\x5a\x44\x61','\x43\x67\x66\x59\x43\x32\x75','\x43\x68\x6a\x56','\x74\x4c\x62\x30\x79\x75\x4b','\x76\x76\x6a\x77\x76\x76\x71','\x6d\x4a\x65\x57\x7a\x77\x6e\x50\x77\x76\x6a\x6c','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x6d\x5a\x4b\x35\x6d\x64\x71\x35\x42\x4d\x54\x52\x41\x4b\x35\x6f','\x73\x4b\x31\x41\x74\x75\x4f','\x41\x78\x6e\x5a\x44\x77\x75','\x42\x76\x66\x6d\x74\x76\x4f','\x73\x66\x6d\x59\x6e\x74\x79','\x75\x33\x48\x57\x77\x67\x65','\x79\x32\x39\x53\x42\x67\x66\x49\x42\x33\x6a\x48\x44\x67\x4c\x56\x42\x47','\x42\x4c\x7a\x77\x77\x4d\x38','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35'];a0_0x5b31=function(){return _0x38f672;};return a0_0x5b31();}function issueProjectScopedToken(_0xa0c080,_0x162c96,_0x2a26d9){const _0x40c7a5=a0_0x7cd266,_0x29bd52={'\x4e\x50\x74\x61\x49':function(_0x4afec4,_0xf59bc,_0x18afb1,_0x438cad){return _0x4afec4(_0xf59bc,_0x18afb1,_0x438cad);}};return _0x29bd52[_0x40c7a5(0xc3)](issueReadToken,_0xa0c080,_0x162c96,_0x2a26d9);}function issueBatchScopedToken(_0xa32986,_0x156b20,_0x139b5d){const _0x239f84={'\x59\x68\x53\x66\x6b':function(_0x7589da,_0x1d1635,_0x16932a,_0x3f862e){return _0x7589da(_0x1d1635,_0x16932a,_0x3f862e);}};return _0x239f84['\x59\x68\x53\x66\x6b'](issueReadToken,_0xa32986,_0x156b20,_0x139b5d);}function issueCollaborationToken(_0x2c0f9b,_0x7022ca,_0xac9be7){const _0x289bff=a0_0x7cd266;return issueToken(_0x2c0f9b,{'\x73\x75\x62':_0x7022ca[_0x289bff(0xea)],'\x73\x69\x64':_0x7022ca[_0x289bff(0xa7)],'\x70\x69\x64':_0x7022ca[_0x289bff(0xac)],'\x63\x69\x64':_0x7022ca[_0x289bff(0xb5)],'\x74\x79\x70':_0x289bff(0xcf),'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x7022ca[_0x289bff(0xb8)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x7022ca[_0x289bff(0xbd)],'\x61\x63\x63\x65\x73\x73':_0x7022ca[_0x289bff(0xbe)]},_0xac9be7);}function unsafeDecodeToken(_0x1d8e50){const _0x1c1b8f=a0_0x7cd266,_0xabccc7={'\x43\x4d\x5a\x51\x66':function(_0x28033c,_0x11887b){return _0x28033c!==_0x11887b;},'\x53\x78\x70\x58\x61':function(_0x5217cf,_0x1dee9f){return _0x5217cf%_0x1dee9f;},'\x42\x62\x52\x77\x50':function(_0x54b19f,_0x5b66d4){return _0x54b19f-_0x5b66d4;},'\x63\x43\x57\x5a\x4f':'\x62\x61\x73\x65\x36\x34'};try{const _0x4e49ca=_0x1d8e50['\x73\x70\x6c\x69\x74']('\x2e');if(_0xabccc7[_0x1c1b8f(0xdf)](_0x4e49ca['\x6c\x65\x6e\x67\x74\x68'],0x3))return null;const _0x44dee4=_0x4e49ca[0x1]+'\x3d'[_0x1c1b8f(0xd8)](_0xabccc7[_0x1c1b8f(0xce)](_0xabccc7['\x42\x62\x52\x77\x50'](0x4,_0x4e49ca[0x1][_0x1c1b8f(0xd9)]%0x4),0x4)),_0x30e7a0=Buffer[_0x1c1b8f(0xbf)](_0x44dee4[_0x1c1b8f(0xc8)](/-/g,'\x2b')[_0x1c1b8f(0xc8)](/_/g,'\x2f'),_0xabccc7[_0x1c1b8f(0xe8)])[_0x1c1b8f(0xbc)]();return JSON[_0x1c1b8f(0xc1)](_0x30e7a0);}catch{return null;}}function verifyToken(_0x34a86b,_0x82d2b8,_0x481e84={}){const _0x335a8a=a0_0x7cd266,_0x227c46={'\x42\x65\x4d\x61\x4e':function(_0x44536a,_0x10db10){return _0x44536a!==_0x10db10;},'\x55\x52\x56\x55\x54':function(_0x452850,_0x140b80){return _0x452850+_0x140b80;},'\x4a\x4d\x5a\x4d\x4a':function(_0x21fe0c,_0x1bbf35){return _0x21fe0c%_0x1bbf35;},'\x49\x6f\x6a\x62\x51':function(_0x3e7c8a,_0xfda4d6){return _0x3e7c8a%_0xfda4d6;},'\x65\x63\x69\x75\x74':function(_0x20f71a,_0x5cb19d){return _0x20f71a!==_0x5cb19d;},'\x6e\x56\x56\x5a\x6f':function(_0x5f58b1,_0x4fcb1a,_0x5798c2){return _0x5f58b1(_0x4fcb1a,_0x5798c2);},'\x6d\x45\x52\x68\x70':function(_0x14b342,_0xc92495){return _0x14b342||_0xc92495;},'\x69\x61\x63\x55\x64':function(_0x29e6d3,_0x1d313c){return _0x29e6d3/_0x1d313c;},'\x72\x4a\x74\x4a\x76':function(_0x5eecaa,_0x3712ed){return _0x5eecaa<_0x3712ed;},'\x42\x75\x56\x47\x53':function(_0x426aee,_0x2784c2){return _0x426aee+_0x2784c2;}};try{const _0x325f0c=_0x34a86b[_0x335a8a(0xa9)]('\x2e');if(_0x227c46['\x42\x65\x4d\x61\x4e'](_0x325f0c[_0x335a8a(0xd9)],0x3))return null;const [_0x5bbe61,_0x5d92bb,_0xcfa20c]=_0x325f0c;if(!_0x5bbe61||!_0x5d92bb||!_0xcfa20c)return null;let _0x39a728;try{const _0x1a7c34=_0x227c46[_0x335a8a(0xc4)](_0x5bbe61,'\x3d'[_0x335a8a(0xd8)](_0x227c46[_0x335a8a(0xca)](0x4-_0x227c46[_0x335a8a(0xb1)](_0x5bbe61[_0x335a8a(0xd9)],0x4),0x4))),_0x150a6d=Buffer[_0x335a8a(0xbf)](_0x1a7c34['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')[_0x335a8a(0xc8)](/_/g,'\x2f'),_0x335a8a(0xc6))[_0x335a8a(0xbc)]();_0x39a728=JSON['\x70\x61\x72\x73\x65'](_0x150a6d);}catch{return null;}if(_0x227c46[_0x335a8a(0xaa)](_0x39a728[_0x335a8a(0xe9)],_0x335a8a(0xcd)))return null;const _0x52c1bd=_0x227c46[_0x335a8a(0xd0)](createSignature,_0x5bbe61+'\x2e'+_0x5d92bb,_0x82d2b8),_0x2afd57=decodeBase64UrlToBuffer(_0xcfa20c),_0x4f4392=decodeBase64UrlToBuffer(_0x52c1bd);if(_0x227c46['\x6d\x45\x52\x68\x70'](!_0x2afd57,!_0x4f4392))return null;if(_0x227c46['\x42\x65\x4d\x61\x4e'](_0x2afd57[_0x335a8a(0xd9)],_0x4f4392['\x6c\x65\x6e\x67\x74\x68']))return null;if(!_0x227c46[_0x335a8a(0xd0)](timingSafeEqual,_0x2afd57,_0x4f4392))return null;const _0x6425c8=unsafeDecodeToken(_0x34a86b);if(!_0x6425c8)return null;const _0x14ce3b=Math[_0x335a8a(0xa8)](_0x227c46[_0x335a8a(0xe7)](Date['\x6e\x6f\x77'](),0x3e8)),_0xebfd48=Math['\x6d\x61\x78'](0x0,_0x481e84['\x63\x6c\x6f\x63\x6b\x53\x6b\x65\x77\x53\x65\x63\x6f\x6e\x64\x73']??0x0);if(typeof _0x6425c8['\x65\x78\x70']!==_0x335a8a(0xe1)||_0x227c46[_0x335a8a(0xdc)](_0x227c46[_0x335a8a(0xb9)](_0x6425c8[_0x335a8a(0xe6)],_0xebfd48),_0x14ce3b))return null;return _0x6425c8;}catch{return null;}}function getTokenTTL(_0x1ce882){const _0x3f7ee6=a0_0x7cd266,_0x5a1198={'\x79\x64\x70\x4b\x6e':function(_0xb7773a,_0x163305){return _0xb7773a/_0x163305;}},_0x3745a9=Math[_0x3f7ee6(0xa8)](_0x5a1198[_0x3f7ee6(0xb6)](Date[_0x3f7ee6(0xba)](),0x3e8));return _0x1ce882[_0x3f7ee6(0xe6)]-_0x3745a9;}function isTokenExpiringSoon(_0x2d9d29,_0x4c7fe8=0x3c){const _0x9e3ad1=a0_0x7cd266,_0x40be21={'\x77\x65\x72\x67\x59':function(_0x48f557,_0x488f69){return _0x48f557<=_0x488f69;},'\x61\x4c\x42\x43\x73':function(_0x231183,_0xbd36f6){return _0x231183(_0xbd36f6);}};return _0x40be21[_0x9e3ad1(0xbb)](_0x40be21['\x61\x4c\x42\x43\x73'](getTokenTTL,_0x2d9d29),_0x4c7fe8);}var ProductTokenIssuer=class{[a0_0x7cd266(0xac)];[a0_0x7cd266(0xc7)];['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'];constructor(_0x4c422d){const _0xa38070=a0_0x7cd266;this[_0xa38070(0xac)]=_0x4c422d[_0xa38070(0xac)],this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74']=_0x4c422d['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74'],this[_0xa38070(0xb7)]={'\x66\x72\x65\x65':_0x4c422d['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.['\x66\x72\x65\x65']??0xf,'\x70\x72\x6f':_0x4c422d['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0xa38070(0xc2)]??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x4c422d['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0xa38070(0xd4)]??0x1e0};}[a0_0x7cd266(0xcb)](_0x288e28){const _0x166d92=a0_0x7cd266,_0x1829ea={'\x48\x43\x76\x63\x51':_0x166d92(0xb2),'\x6d\x51\x4c\x4d\x5a':function(_0x54165b,_0x3242da){return _0x54165b*_0x3242da;}},_0x47fb2a=_0x288e28[_0x166d92(0xda)]??_0x1829ea[_0x166d92(0xa6)],_0x3c244b=this[_0x166d92(0xb7)][_0x47fb2a]??this[_0x166d92(0xb7)][_0x166d92(0xb2)];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x166d92(0xc7)],{'\x73\x75\x62':_0x288e28[_0x166d92(0xea)],'\x73\x69\x64':_0x288e28['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x69\x64':this[_0x166d92(0xac)],'\x63\x69\x64':_0x288e28['\x73\x61\x6e\x64\x62\x6f\x78\x49\x64']},_0x3c244b),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math[_0x166d92(0xa8)](Date['\x6e\x6f\x77']()/0x3e8)+_0x1829ea[_0x166d92(0xcc)](_0x3c244b,0x3c)};}[a0_0x7cd266(0xa4)](_0xce2fec){const _0xb990e1=a0_0x7cd266,_0x3eecc8={'\x6e\x74\x69\x76\x4d':function(_0x2b32a5,_0x173a7f,_0x4fed3d,_0x2de7d4){return _0x2b32a5(_0x173a7f,_0x4fed3d,_0x2de7d4);},'\x72\x5a\x79\x63\x65':function(_0x1b013b,_0x3a2e87){return _0x1b013b*_0x3a2e87;}},_0x1d1875=_0xce2fec[_0xb990e1(0xda)]??_0xb990e1(0xb2),_0x740199=this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x1d1875]??this[_0xb990e1(0xb7)]['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':_0x3eecc8[_0xb990e1(0xb0)](issueCollaborationToken,this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74'],{'\x75\x73\x65\x72\x49\x64':_0xce2fec['\x75\x73\x65\x72\x49\x64'],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0xce2fec[_0xb990e1(0xa7)],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this[_0xb990e1(0xac)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0xce2fec[_0xb990e1(0xb8)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0xce2fec[_0xb990e1(0xbd)],'\x61\x63\x63\x65\x73\x73':_0xce2fec['\x61\x63\x63\x65\x73\x73'],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0xce2fec[_0xb990e1(0xb5)]},_0x740199),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math[_0xb990e1(0xa8)](Date[_0xb990e1(0xba)]()/0x3e8)+_0x3eecc8[_0xb990e1(0xde)](_0x740199,0x3c)};}[a0_0x7cd266(0xab)](_0x4831ae=a0_0x7cd266(0xb2)){const _0x55613b=a0_0x7cd266;return this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x4831ae]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x55613b(0xb2)];}};export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};