@tangle-network/sandbox 0.0.0-develop.20260519182220.e7047bf → 0.0.0-develop.20260530132002.87cf9f6

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.
@@ -0,0 +1,433 @@
1
+ import { F as CodeExecutionOptions, I as CodeExecutionResult, L as CodeLanguage, n as SandboxInstance, z as CodeResultPart } from "../sandbox-CBmfYqMQ.js";
2
+ import { i as SandboxClient } from "../client-DM2pIli7.js";
3
+ import * as _$_modelcontextprotocol_sdk_server_index_js0 from "@modelcontextprotocol/sdk/server/index.js";
4
+
5
+ //#region src/agent/tools/_specs.d.ts
6
+ /** JSON-schema-ish object describing tool inputs. Plain object literal — no Zod required. */
7
+ type ToolJSONSchema = {
8
+ type: "object";
9
+ properties: Record<string, unknown>;
10
+ required?: string[];
11
+ additionalProperties?: boolean;
12
+ };
13
+ interface ToolHandlerContext {
14
+ box: SandboxInstance;
15
+ /**
16
+ * Session scope passed through to code-kernel and session-aware methods.
17
+ * When unset, the bare-session kernel and the sandbox root workspace are used.
18
+ */
19
+ sessionId?: string;
20
+ }
21
+ /**
22
+ * Pack-agnostic tool definition. The handler returns whatever the underlying
23
+ * SDK method returns; each pack is responsible for serializing it into a
24
+ * framework-appropriate tool-result payload.
25
+ */
26
+ interface ToolSpec<TArgs = Record<string, unknown>, TResult = unknown> {
27
+ name: string;
28
+ description: string;
29
+ inputSchema: ToolJSONSchema;
30
+ makeHandler: (ctx: ToolHandlerContext) => (args: TArgs) => Promise<TResult>;
31
+ }
32
+ /** All canonical tool names — derived from the keyed registry below. */
33
+ type ToolName = keyof typeof TOOL_SPECS;
34
+ /**
35
+ * Keyed registry. `as const` preserves per-tool TArgs/TResult through the
36
+ * type system — `TOOL_SPECS.sandbox_run_code.makeHandler` returns a handler
37
+ * whose args parameter is the runCodeSpec's typed `{language, source, ...}`,
38
+ * not the erased `Record<string, unknown>` that an array-of-ToolSpec loses.
39
+ *
40
+ * Iteration order matches the order entries are declared here (V8 preserves
41
+ * string-key insertion order), so the public surface is stable.
42
+ */
43
+ declare const TOOL_SPECS: {
44
+ readonly sandbox_run_code: ToolSpec<{
45
+ language: "python" | "node" | "typescript" | "bash";
46
+ source: string;
47
+ timeout_ms?: number;
48
+ }, unknown>;
49
+ readonly sandbox_exec: ToolSpec<{
50
+ command: string;
51
+ cwd?: string;
52
+ timeout_ms?: number;
53
+ }, unknown>;
54
+ readonly sandbox_read: ToolSpec<{
55
+ path: string;
56
+ }, unknown>;
57
+ readonly sandbox_write: ToolSpec<{
58
+ path: string;
59
+ content: string;
60
+ }, unknown>;
61
+ readonly sandbox_list: ToolSpec<{
62
+ path: string;
63
+ }, unknown>;
64
+ readonly sandbox_search: ToolSpec<{
65
+ pattern: string;
66
+ path?: string;
67
+ max_results?: number;
68
+ }, unknown>;
69
+ };
70
+ //#endregion
71
+ //#region src/agent/mcp-local.d.ts
72
+ interface McpServerOptions {
73
+ /** Which tools to expose. Defaults to all. */
74
+ allow?: ToolName[];
75
+ /** Session scope passed to handlers. */
76
+ sessionId?: string;
77
+ /** Override the MCP server's reported name. Defaults to "tangle-sandbox". */
78
+ name?: string;
79
+ /** Override the reported version string. Defaults to the SDK package version. */
80
+ version?: string;
81
+ }
82
+ type McpSdkServerModule = typeof _$_modelcontextprotocol_sdk_server_index_js0;
83
+ type AnyMcpServer = InstanceType<McpSdkServerModule["Server"]>;
84
+ interface McpServerHandle {
85
+ /** The underlying MCP Server instance (typed loosely to avoid a hard dep). */
86
+ server: AnyMcpServer;
87
+ /** Connect over a transport (typically StdioServerTransport). */
88
+ connect: (transport: unknown) => Promise<void>;
89
+ /** Shut the server down. */
90
+ close: () => Promise<void>;
91
+ }
92
+ /**
93
+ * Build an MCP server backed by one sandbox. The server registers
94
+ * `tools/list` and `tools/call` handlers populated from the same registry
95
+ * the framework packs use.
96
+ *
97
+ * @example
98
+ * ```ts
99
+ * // tangle-mcp-server.ts — used as the command in your MCP client config.
100
+ * import { Sandbox } from "@tangle-network/sandbox";
101
+ * import { createMcpServer } from "@tangle-network/sandbox/agent";
102
+ * import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
103
+ *
104
+ * const client = new Sandbox({ apiKey: process.env.TANGLE_API_KEY });
105
+ * const box = await client.get(process.env.SANDBOX_ID!);
106
+ * const { connect } = await createMcpServer(box, { sessionId: "claude-desktop" });
107
+ * await connect(new StdioServerTransport());
108
+ * ```
109
+ *
110
+ * Claude Desktop config snippet:
111
+ * ```json
112
+ * {
113
+ * "mcpServers": {
114
+ * "tangle-sandbox": {
115
+ * "command": "node",
116
+ * "args": ["./tangle-mcp-server.js"],
117
+ * "env": { "TANGLE_API_KEY": "...", "SANDBOX_ID": "..." }
118
+ * }
119
+ * }
120
+ * }
121
+ * ```
122
+ */
123
+ declare function createMcpServer(box: SandboxInstance, options?: McpServerOptions): Promise<McpServerHandle>;
124
+ //#endregion
125
+ //#region src/agent/run-code.d.ts
126
+ /**
127
+ * Functional form of `box.runCode(...)`. Useful when only the function is in
128
+ * scope (e.g., when wiring into a framework tool definition that captures
129
+ * the callable but not the surrounding instance).
130
+ *
131
+ * Identical semantics to {@link SandboxInstance.runCode}.
132
+ */
133
+ declare function runCode(box: SandboxInstance, language: CodeLanguage, source: string, options?: CodeExecutionOptions): Promise<CodeExecutionResult>;
134
+ //#endregion
135
+ //#region src/agent/tools/anthropic.d.ts
136
+ interface AnthropicTool {
137
+ name: string;
138
+ description: string;
139
+ input_schema: {
140
+ type: "object";
141
+ properties: Record<string, unknown>;
142
+ required?: string[];
143
+ additionalProperties?: boolean;
144
+ };
145
+ }
146
+ interface AnthropicToolUseBlock {
147
+ type: "tool_use";
148
+ id: string;
149
+ name: string;
150
+ input: Record<string, unknown>;
151
+ }
152
+ /**
153
+ * Multi-block content payload for tool_result. The Anthropic Messages API
154
+ * accepts both a plain string and an array of content blocks; using the
155
+ * array form lets us hand images back as native `image` blocks instead of
156
+ * stuffing base64 into a JSON string the model has to re-parse.
157
+ */
158
+ type AnthropicToolResultContentBlock = {
159
+ type: "text";
160
+ text: string;
161
+ } | {
162
+ type: "image";
163
+ source: {
164
+ type: "base64";
165
+ media_type: "image/png" | "image/jpeg" | "image/webp" | "image/gif";
166
+ data: string;
167
+ };
168
+ };
169
+ interface AnthropicToolResultBlock {
170
+ type: "tool_result";
171
+ tool_use_id: string;
172
+ content: string | AnthropicToolResultContentBlock[];
173
+ is_error?: boolean;
174
+ }
175
+ interface AnthropicToolPackOptions {
176
+ /** Which tools to expose. Defaults to all. */
177
+ allow?: ToolName[];
178
+ /** Session scope passed to handlers (kernel persistence, file routing). */
179
+ sessionId?: string;
180
+ }
181
+ interface AnthropicToolPack {
182
+ /** Tools array — pass directly to `messages.create({ tools })`. */
183
+ tools: AnthropicTool[];
184
+ /**
185
+ * Dispatch a single `tool_use` block. The returned `tool_result` block
186
+ * goes into the next assistant turn's `messages` array.
187
+ */
188
+ handleToolUse(block: AnthropicToolUseBlock): Promise<AnthropicToolResultBlock>;
189
+ /**
190
+ * Convenience for batch handling: filters the assistant message's content
191
+ * for tool_use blocks, dispatches them in parallel, and returns the
192
+ * matching tool_result blocks ready to attach to the next user turn.
193
+ */
194
+ handleAssistantMessage(content: unknown[]): Promise<AnthropicToolResultBlock[]>;
195
+ }
196
+ /**
197
+ * Build an Anthropic tool pack bound to one sandbox.
198
+ *
199
+ * @example
200
+ * ```ts
201
+ * import Anthropic from "@anthropic-ai/sdk";
202
+ * import { anthropicTools } from "@tangle-network/sandbox/agent";
203
+ *
204
+ * const claude = new Anthropic();
205
+ * const { tools, handleAssistantMessage } = anthropicTools(box, { sessionId: "s1" });
206
+ *
207
+ * const messages = [{ role: "user", content: "Plot sin(x) for x in [0, 2π]." }];
208
+ * for (let i = 0; i < 6; i++) {
209
+ * const r = await claude.messages.create({
210
+ * model: "claude-opus-4-7",
211
+ * max_tokens: 4096,
212
+ * tools,
213
+ * messages,
214
+ * });
215
+ * messages.push({ role: "assistant", content: r.content });
216
+ * if (r.stop_reason !== "tool_use") break;
217
+ * const results = await handleAssistantMessage(r.content);
218
+ * messages.push({ role: "user", content: results });
219
+ * }
220
+ * ```
221
+ */
222
+ declare function anthropicTools(box: SandboxInstance, options?: AnthropicToolPackOptions): AnthropicToolPack;
223
+ //#endregion
224
+ //#region src/agent/tools/fleet/_specs.d.ts
225
+ interface FleetToolHandlerContext {
226
+ client: SandboxClient;
227
+ }
228
+ interface FleetToolSpec<TArgs = Record<string, unknown>, TResult = unknown> {
229
+ name: string;
230
+ description: string;
231
+ inputSchema: ToolJSONSchema;
232
+ makeHandler: (ctx: FleetToolHandlerContext) => (args: TArgs) => Promise<TResult>;
233
+ }
234
+ declare const FLEET_TOOL_SPECS: {
235
+ readonly sandbox_fleet_spawn: FleetToolSpec<{
236
+ template_id: string;
237
+ workers: number;
238
+ metadata?: Record<string, string>;
239
+ }, unknown>;
240
+ readonly sandbox_fleet_dispatch: FleetToolSpec<{
241
+ fleet_id: string;
242
+ command: string;
243
+ machines?: string[];
244
+ timeout_ms?: number;
245
+ }, unknown>;
246
+ readonly sandbox_fleet_status: FleetToolSpec<{
247
+ fleet_id: string;
248
+ }, unknown>;
249
+ readonly sandbox_fleet_destroy: FleetToolSpec<{
250
+ fleet_id: string;
251
+ continue_on_error?: boolean;
252
+ }, unknown>;
253
+ };
254
+ type FleetToolName = keyof typeof FLEET_TOOL_SPECS;
255
+ //#endregion
256
+ //#region src/agent/tools/fleet/index.d.ts
257
+ interface FleetToolPackOptions {
258
+ /** Which fleet tools to expose. Defaults to all four. */
259
+ allow?: FleetToolName[];
260
+ }
261
+ interface AnthropicFleetTool {
262
+ name: string;
263
+ description: string;
264
+ input_schema: {
265
+ type: "object";
266
+ properties: Record<string, unknown>;
267
+ required?: string[];
268
+ additionalProperties?: boolean;
269
+ };
270
+ }
271
+ interface AnthropicFleetToolPack {
272
+ tools: AnthropicFleetTool[];
273
+ handleToolUse(block: {
274
+ type: "tool_use";
275
+ id: string;
276
+ name: string;
277
+ input: Record<string, unknown>;
278
+ }): Promise<{
279
+ type: "tool_result";
280
+ tool_use_id: string;
281
+ content: string;
282
+ is_error?: boolean;
283
+ }>;
284
+ }
285
+ declare function anthropicFleetTools(client: SandboxClient, options?: FleetToolPackOptions): AnthropicFleetToolPack;
286
+ interface OpenAIFleetTool {
287
+ type: "function";
288
+ function: {
289
+ name: string;
290
+ description: string;
291
+ parameters: {
292
+ type: "object";
293
+ properties: Record<string, unknown>;
294
+ required?: string[];
295
+ additionalProperties?: boolean;
296
+ };
297
+ };
298
+ }
299
+ interface OpenAIFleetToolPack {
300
+ tools: OpenAIFleetTool[];
301
+ handleToolCall(call: {
302
+ id: string;
303
+ type?: "function";
304
+ function: {
305
+ name: string;
306
+ arguments: string;
307
+ };
308
+ }): Promise<{
309
+ role: "tool";
310
+ tool_call_id: string;
311
+ content: string;
312
+ }>;
313
+ }
314
+ declare function openaiFleetTools(client: SandboxClient, options?: FleetToolPackOptions): OpenAIFleetToolPack;
315
+ declare function vercelAiFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
316
+ declare function mastraFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
317
+ //#endregion
318
+ //#region src/agent/tools/mastra.d.ts
319
+ interface MastraToolPackOptions {
320
+ allow?: ToolName[];
321
+ sessionId?: string;
322
+ }
323
+ type AnyTool$1 = unknown;
324
+ /**
325
+ * Build a Mastra tool pack bound to one sandbox.
326
+ *
327
+ * @example
328
+ * ```ts
329
+ * import { Agent } from "@mastra/core/agent";
330
+ * import { mastraTools } from "@tangle-network/sandbox/agent";
331
+ *
332
+ * const tools = await mastraTools(box, { sessionId: "s1" });
333
+ * const agent = new Agent({ name: "coder", instructions: "...", tools });
334
+ * await agent.generate("Plot sin(x).");
335
+ * ```
336
+ */
337
+ declare function mastraTools(box: SandboxInstance, options?: MastraToolPackOptions): Promise<Record<string, AnyTool$1>>;
338
+ //#endregion
339
+ //#region src/agent/tools/openai.d.ts
340
+ interface OpenAITool {
341
+ type: "function";
342
+ function: {
343
+ name: string;
344
+ description: string;
345
+ parameters: {
346
+ type: "object";
347
+ properties: Record<string, unknown>;
348
+ required?: string[];
349
+ additionalProperties?: boolean;
350
+ };
351
+ };
352
+ }
353
+ interface OpenAIToolCall {
354
+ id: string;
355
+ type?: "function";
356
+ function: {
357
+ name: string;
358
+ arguments: string;
359
+ };
360
+ }
361
+ interface OpenAIToolResultMessage {
362
+ role: "tool";
363
+ tool_call_id: string;
364
+ content: string;
365
+ }
366
+ interface OpenAIToolPackOptions {
367
+ allow?: ToolName[];
368
+ sessionId?: string;
369
+ }
370
+ interface OpenAIToolPack {
371
+ tools: OpenAITool[];
372
+ /** Dispatch a single tool call into a Chat Completions tool message. */
373
+ handleToolCall(call: OpenAIToolCall): Promise<OpenAIToolResultMessage>;
374
+ /**
375
+ * Convenience: dispatch every tool_call on an assistant message in parallel.
376
+ */
377
+ handleAssistantMessage(message: {
378
+ tool_calls?: OpenAIToolCall[];
379
+ }): Promise<OpenAIToolResultMessage[]>;
380
+ }
381
+ /**
382
+ * Build an OpenAI tool pack bound to one sandbox.
383
+ *
384
+ * @example
385
+ * ```ts
386
+ * import OpenAI from "openai";
387
+ * import { openaiTools } from "@tangle-network/sandbox/agent";
388
+ *
389
+ * const openai = new OpenAI();
390
+ * const { tools, handleAssistantMessage } = openaiTools(box, { sessionId: "s1" });
391
+ *
392
+ * const messages: any[] = [{ role: "user", content: "Plot sin(x) for x in [0, 2π]." }];
393
+ * for (let i = 0; i < 6; i++) {
394
+ * const r = await openai.chat.completions.create({
395
+ * model: "gpt-5.4", tools, messages,
396
+ * });
397
+ * const m = r.choices[0].message;
398
+ * messages.push(m);
399
+ * if (!m.tool_calls?.length) break;
400
+ * messages.push(...(await handleAssistantMessage(m)));
401
+ * }
402
+ * ```
403
+ */
404
+ declare function openaiTools(box: SandboxInstance, options?: OpenAIToolPackOptions): OpenAIToolPack;
405
+ //#endregion
406
+ //#region src/agent/tools/vercel-ai.d.ts
407
+ interface VercelAiToolPackOptions {
408
+ allow?: ToolName[];
409
+ sessionId?: string;
410
+ }
411
+ type AnyTool = unknown;
412
+ /**
413
+ * Build a Vercel AI SDK tool pack bound to one sandbox. The returned object
414
+ * is a `Record<toolName, ai.Tool>` ready for `generateText({ tools })`.
415
+ *
416
+ * @example
417
+ * ```ts
418
+ * import { generateText } from "ai";
419
+ * import { anthropic } from "@ai-sdk/anthropic";
420
+ * import { vercelAiTools } from "@tangle-network/sandbox/agent";
421
+ *
422
+ * const tools = await vercelAiTools(box, { sessionId: "s1" });
423
+ * const { text } = await generateText({
424
+ * model: anthropic("claude-opus-4-7"),
425
+ * tools,
426
+ * prompt: "Plot sin(x) for x in [0, 2π].",
427
+ * maxSteps: 6,
428
+ * });
429
+ * ```
430
+ */
431
+ declare function vercelAiTools(box: SandboxInstance, options?: VercelAiToolPackOptions): Promise<Record<string, AnyTool>>;
432
+ //#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 };
@@ -0,0 +1 @@
1
+ const a0_0x42a5c4=a0_0x21c3;(function(_0x192a7a,_0x4b12d9){const _0x2d7951=a0_0x21c3,_0x25a589=_0x192a7a();while(!![]){try{const _0x115844=parseInt(_0x2d7951(0xc3))/0x1*(parseInt(_0x2d7951(0xe2))/0x2)+-parseInt(_0x2d7951(0xa2))/0x3+parseInt(_0x2d7951(0xdb))/0x4+parseInt(_0x2d7951(0xae))/0x5+-parseInt(_0x2d7951(0x78))/0x6*(parseInt(_0x2d7951(0xa4))/0x7)+parseInt(_0x2d7951(0x98))/0x8+-parseInt(_0x2d7951(0x79))/0x9*(parseInt(_0x2d7951(0xdc))/0xa);if(_0x115844===_0x4b12d9)break;else _0x25a589['push'](_0x25a589['shift']());}catch(_0x4dd58c){_0x25a589['push'](_0x25a589['shift']());}}}(a0_0x199f,0x42392));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_0x42a5c4(0xee),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0x9c),'\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':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x65\x6e\x75\x6d':[a0_0x42a5c4(0xab),a0_0x42a5c4(0xcb),'\x74\x79\x70\x65\x73\x63\x72\x69\x70\x74',a0_0x42a5c4(0x87)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0x9d)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0x42a5c4(0xbe),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0xd8)},'\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_0x42a5c4(0xe5)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x42a5c4(0xaa),'\x73\x6f\x75\x72\x63\x65'],'\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:_0x1fb625,sessionId:_0x3a3244})=>async _0xadb223=>{const _0x1d1e91=a0_0x42a5c4;return await _0x1fb625[_0x1d1e91(0xf5)](_0xadb223['\x6c\x61\x6e\x67\x75\x61\x67\x65'],_0xadb223[_0x1d1e91(0x77)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x3a3244,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0xadb223['\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73']});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0x7d),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0x6b)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x42a5c4(0xbe),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x57\x6f\x72\x6b\x69\x6e\x67\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x20\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x2e'},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x42a5c4(0xa0),'\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_0x42a5c4(0xec)],'\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:_0x35ac04,sessionId:_0xce9687})=>async _0x30f224=>{const _0x5a5f2c=a0_0x42a5c4;return await _0x35ac04[_0x5a5f2c(0xc6)](_0x30f224[_0x5a5f2c(0xec)],{'\x63\x77\x64':_0x30f224[_0x5a5f2c(0xd9)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x30f224[_0x5a5f2c(0x76)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0xce9687});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0x42a5c4(0x8b),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0xb5),'\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\x68':{'\x74\x79\x70\x65':a0_0x42a5c4(0xbe)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x42a5c4(0xf7)],'\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:_0x265af7,sessionId:_0x2b7c6b})=>async _0x1edfa0=>{const _0x53399b=a0_0x42a5c4;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x265af7[_0x53399b(0xd6)](_0x1edfa0[_0x53399b(0xf7)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x2b7c6b})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65','\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_0x42a5c4(0xe0),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x42a5c4(0xbe)},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0x42a5c4(0xbe),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x46\x75\x6c\x6c\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x65\x6e\x74\x73\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x42a5c4(0xf7),'\x63\x6f\x6e\x74\x65\x6e\x74'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x5cc70d})=>async _0x54db8c=>{const _0x5f592e=a0_0x42a5c4;return await _0x5cc70d['\x77\x72\x69\x74\x65'](_0x54db8c['\x70\x61\x74\x68'],_0x54db8c[_0x5f592e(0xc7)]),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':a0_0x42a5c4(0xed),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0x91),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x42a5c4(0xe0),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x42a5c4(0xbe)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x42a5c4(0xf7)],'\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:_0x192aca})=>async _0x48ad17=>{const _0x57fd18=a0_0x42a5c4;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x192aca['\x66\x73']['\x6c\x69\x73\x74'](_0x48ad17[_0x57fd18(0xf7)])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0x42a5c4(0xce),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0xad),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x42a5c4(0xe0),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x42a5c4(0xbe),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0x81)},'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x42a5c4(0xbe),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0x96)},'\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73':{'\x74\x79\x70\x65':a0_0x42a5c4(0xa0),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x43\x61\x70\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x31\x30\x30\x2e'}},'\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:_0x42be33})=>async _0x7c83f3=>{const _0x3b86e6=a0_0x42a5c4,_0x2175e2=[],_0x442146=_0x7c83f3[_0x3b86e6(0xf3)]??0x64;for await(const _0x425126 of _0x42be33[_0x3b86e6(0xdd)](_0x7c83f3['\x70\x61\x74\x74\x65\x72\x6e'],{'\x63\x77\x64':_0x7c83f3[_0x3b86e6(0xf7)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x442146})){_0x2175e2['\x70\x75\x73\x68'](_0x425126);if(_0x2175e2[_0x3b86e6(0x72)]>=_0x442146)break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x2175e2};}}},ALL_TOOL_SPECS=Object[a0_0x42a5c4(0x102)](TOOL_SPECS);function selectSpecs(_0x41759e){const _0x6d4f9a=a0_0x42a5c4;if(!_0x41759e||_0x41759e['\x6c\x65\x6e\x67\x74\x68']===0x0)return ALL_TOOL_SPECS;const _0x39993a=new Set(_0x41759e);return Object['\x6b\x65\x79\x73'](TOOL_SPECS)[_0x6d4f9a(0x82)](_0xf15c79=>_0x39993a[_0x6d4f9a(0xf8)](_0xf15c79))[_0x6d4f9a(0x101)](_0x4718ca=>TOOL_SPECS[_0x4718ca]);}function serializeToolResult(_0x52f198){const _0x3c2a49=a0_0x42a5c4,_0x2ea401={'\x64\x74\x4b\x70\x76':function(_0x374926,_0x1845d7){return _0x374926(_0x1845d7);}};if(typeof _0x52f198===_0x3c2a49(0xbe))return _0x52f198;try{return JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](_0x52f198,null,0x2);}catch{return _0x2ea401[_0x3c2a49(0x9f)](String,_0x52f198);}}const SDK_VERSION=((()=>{const _0x5c6225=a0_0x42a5c4,_0x2382ce={'\x4f\x58\x48\x77\x67':function(_0x108ccd,_0x3cab26){return _0x108ccd(_0x3cab26);},'\x76\x4a\x74\x6c\x6e':_0x5c6225(0xf1)};try{return _0x2382ce['\x4f\x58\x48\x77\x67'](createRequire,import.meta.url)(_0x5c6225(0x71))[_0x5c6225(0xf9)]??_0x2382ce[_0x5c6225(0x8a)];}catch{return'\x30\x2e\x30\x2e\x30';}})());async function createMcpServer(_0x4bbf83,_0x143150={}){const _0x54982b=a0_0x42a5c4,_0xc46f84={'\x76\x5a\x63\x78\x4f':'\x74\x65\x78\x74','\x65\x49\x56\x41\x76':function(_0x5a7a3c,_0xd8ef51){return _0x5a7a3c(_0xd8ef51);},'\x48\x76\x4a\x65\x4a':function(_0x4b96f4,_0x3f6479){return _0x4b96f4 instanceof _0x3f6479;},'\x57\x5a\x44\x61\x58':_0x54982b(0x88),'\x6b\x7a\x59\x63\x70':_0x54982b(0x70)};let _0x743a9,_0x4bc007;try{[_0x743a9,_0x4bc007]=await Promise[_0x54982b(0xd7)]([import(_0xc46f84['\x57\x5a\x44\x61\x58']),import(_0x54982b(0xc0))]);}catch{throw new Error(_0x54982b(0xfe));}const _0x3fd268=selectSpecs(_0x143150['\x61\x6c\x6c\x6f\x77']),_0x3d7f3b={'\x62\x6f\x78':_0x4bbf83,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x143150[_0x54982b(0x7f)]},_0x29a7ac=new Map();for(const _0x39a13d of _0x3fd268)_0x29a7ac[_0x54982b(0xbc)](_0x39a13d[_0x54982b(0x89)],_0x39a13d[_0x54982b(0x8c)](_0x3d7f3b));const _0x240935=new _0x743a9[(_0x54982b(0x9e))]({'\x6e\x61\x6d\x65':_0x143150[_0x54982b(0x89)]??_0xc46f84[_0x54982b(0x7c)],'\x76\x65\x72\x73\x69\x6f\x6e':_0x143150[_0x54982b(0xf9)]??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x240935[_0x54982b(0x69)](_0x4bc007[_0x54982b(0xfc)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x3fd268['\x6d\x61\x70'](_0x5bd4a3=>({'\x6e\x61\x6d\x65':_0x5bd4a3[_0x54982b(0x89)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x5bd4a3[_0x54982b(0x95)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x5bd4a3[_0x54982b(0xc2)]}))})),_0x240935['\x73\x65\x74\x52\x65\x71\x75\x65\x73\x74\x48\x61\x6e\x64\x6c\x65\x72'](_0x4bc007[_0x54982b(0xd4)],async _0x1d924e=>{const _0x32feba=_0x54982b,_0x1034d0=_0x1d924e,_0x3c3731=_0x29a7ac[_0x32feba(0xbb)](_0x1034d0['\x70\x61\x72\x61\x6d\x73'][_0x32feba(0x89)]);if(!_0x3c3731)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x32feba(0xcf),'\x74\x65\x78\x74':_0x32feba(0xac)+_0x1034d0[_0x32feba(0xc8)][_0x32feba(0x89)]}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0xc46f84[_0x32feba(0xe4)],'\x74\x65\x78\x74':_0xc46f84[_0x32feba(0xc4)](serializeToolResult,await _0x3c3731(_0x1034d0[_0x32feba(0xc8)]['\x61\x72\x67\x75\x6d\x65\x6e\x74\x73']??{}))}]};}catch(_0x5d4a0e){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0xc46f84[_0x32feba(0xe4)],'\x74\x65\x78\x74':_0xc46f84[_0x32feba(0xb4)](_0x5d4a0e,Error)?_0x5d4a0e[_0x32feba(0xcd)]:_0xc46f84[_0x32feba(0xc4)](String,_0x5d4a0e)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x240935,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x59ec2f=>_0x240935[_0x54982b(0x83)](_0x59ec2f),'\x63\x6c\x6f\x73\x65':()=>_0x240935[_0x54982b(0xb6)]()};}function runCode(_0x5b89ab,_0x22ce98,_0x5611b2,_0xf072d2){const _0x347bab=a0_0x42a5c4;return _0x5b89ab[_0x347bab(0xf5)](_0x22ce98,_0x5611b2,_0xf072d2);}function anthropicTools(_0x219f84,_0x27345c={}){const _0x5cb3bb=a0_0x42a5c4,_0x5a2945={'\x63\x4e\x4e\x77\x44':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74'},_0x3bd2dc=selectSpecs(_0x27345c[_0x5cb3bb(0x93)]),_0x1fb0a2={'\x62\x6f\x78':_0x219f84,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x27345c[_0x5cb3bb(0x7f)]},_0x463f12=new Map();for(const _0x475c73 of _0x3bd2dc)_0x463f12['\x73\x65\x74'](_0x475c73['\x6e\x61\x6d\x65'],_0x475c73[_0x5cb3bb(0x8c)](_0x1fb0a2));const _0x20e9da=_0x3bd2dc[_0x5cb3bb(0x101)](_0x34861f=>({'\x6e\x61\x6d\x65':_0x34861f['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x34861f['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x34861f[_0x5cb3bb(0xc2)]}));async function _0x3957ca(_0x8a5bb4){const _0xf4d501=_0x5cb3bb,_0x18a13a=_0x463f12[_0xf4d501(0xbb)](_0x8a5bb4[_0xf4d501(0x89)]);if(!_0x18a13a)return{'\x74\x79\x70\x65':_0xf4d501(0x97),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x8a5bb4['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xf4d501(0xac)+_0x8a5bb4[_0xf4d501(0x89)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0xa798a0=await _0x18a13a(_0x8a5bb4[_0xf4d501(0xa5)]);return{'\x74\x79\x70\x65':_0x5a2945[_0xf4d501(0xde)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x8a5bb4['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':toAnthropicContent(_0xa798a0)};}catch(_0x506f01){return{'\x74\x79\x70\x65':_0x5a2945[_0xf4d501(0xde)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x8a5bb4['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x506f01 instanceof Error?_0x506f01[_0xf4d501(0xcd)]:String(_0x506f01),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x4ced37(_0x29cfbb){const _0x4056e1=_0x5cb3bb,_0x37f1e6=_0x29cfbb[_0x4056e1(0x82)](_0x215f8a=>typeof _0x215f8a==='\x6f\x62\x6a\x65\x63\x74'&&_0x215f8a!==null&&_0x215f8a['\x74\x79\x70\x65']===_0x4056e1(0x75));return Promise[_0x4056e1(0xd7)](_0x37f1e6[_0x4056e1(0x101)](_0x3957ca));}return{'\x74\x6f\x6f\x6c\x73':_0x20e9da,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x3957ca,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x4ced37};}function toAnthropicContent(_0x4bb623){const _0x586ebb=a0_0x42a5c4,_0x54f3d7={'\x72\x6c\x77\x41\x4d':_0x586ebb(0xcf),'\x4b\x74\x67\x6f\x4a':_0x586ebb(0xf6),'\x6e\x78\x6b\x4b\x6f':_0x586ebb(0xba),'\x74\x79\x4f\x6e\x75':function(_0x2b35c4,_0x1a228e){return _0x2b35c4(_0x1a228e);}};if(!isCodeExecutionResultWithImages(_0x4bb623))return serializeToolResult(_0x4bb623);const _0x47fc20=[],_0x2a6534={..._0x4bb623,'\x72\x65\x73\x75\x6c\x74\x73':_0x4bb623['\x72\x65\x73\x75\x6c\x74\x73'][_0x586ebb(0x82)](_0x57bcb5=>_0x57bcb5['\x74\x79\x70\x65']!=='\x69\x6d\x61\x67\x65')};_0x47fc20[_0x586ebb(0x7b)]({'\x74\x79\x70\x65':_0x54f3d7[_0x586ebb(0x99)],'\x74\x65\x78\x74':serializeToolResult(_0x2a6534)});for(const _0x445f74 of _0x4bb623['\x72\x65\x73\x75\x6c\x74\x73'])if(isImagePart(_0x445f74))_0x47fc20[_0x586ebb(0x7b)]({'\x74\x79\x70\x65':_0x54f3d7[_0x586ebb(0xd1)],'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x54f3d7[_0x586ebb(0xe9)],'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':_0x54f3d7[_0x586ebb(0xeb)](imageMediaType,_0x445f74[_0x586ebb(0x6f)]),'\x64\x61\x74\x61':_0x445f74[_0x586ebb(0x6d)]}});return _0x47fc20;}function isImagePart(_0xdd44a4){const _0x5a3440=a0_0x42a5c4;return _0xdd44a4[_0x5a3440(0xbf)]==='\x69\x6d\x61\x67\x65';}function isCodeExecutionResultWithImages(_0x27a071){const _0x16d69c=a0_0x42a5c4;if(!_0x27a071||typeof _0x27a071!==_0x16d69c(0xe0))return![];const _0x7714de=_0x27a071[_0x16d69c(0xa8)];if(!Array[_0x16d69c(0xc5)](_0x7714de))return![];return _0x7714de[_0x16d69c(0x8f)](_0x7d35d2=>_0x7d35d2&&typeof _0x7d35d2===_0x16d69c(0xe0)&&_0x7d35d2[_0x16d69c(0xbf)]===_0x16d69c(0xf6));}function imageMediaType(_0x5d4635){const _0x2b1081=a0_0x42a5c4,_0x3ce22b={'\x6d\x46\x4d\x68\x6b':_0x2b1081(0x94),'\x4f\x65\x48\x4b\x79':_0x2b1081(0x9a)};switch(_0x5d4635){case _0x3ce22b[_0x2b1081(0xb7)]:return _0x3ce22b['\x4f\x65\x48\x4b\x79'];case _0x2b1081(0xe6):return _0x2b1081(0xb8);case'\x73\x76\x67':return'\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67';}}const FLEET_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x70\x61\x77\x6e':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x70\x61\x77\x6e','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x70\x61\x77\x6e\x20\x61\x20\x66\x6c\x65\x65\x74\x20\x6f\x66\x20\x4e\x20\x73\x61\x6e\x64\x62\x6f\x78\x65\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x2c\x20\x77\x69\x74\x68\x20\x61\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x6f\x72\x20\x70\x6c\x75\x73\x20\x4e\x20\x77\x6f\x72\x6b\x65\x72\x73\x20\x73\x68\x61\x72\x69\x6e\x67\x20\x61\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x2e\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x66\x6c\x65\x65\x74\x20\x69\x64\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x6d\x61\x63\x68\x69\x6e\x65\x20\x69\x64\x73\x2e\x20\x45\x61\x63\x68\x20\x77\x6f\x72\x6b\x65\x72\x20\x68\x61\x73\x20\x69\x74\x73\x20\x6f\x77\x6e\x20\x70\x65\x72\x73\x69\x73\x74\x65\x6e\x74\x20\x63\x6f\x64\x65\x2d\x65\x78\x65\x63\x75\x74\x69\x6f\x6e\x20\x6b\x65\x72\x6e\x65\x6c\x3b\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x20\x69\x73\x20\x6d\x6f\x75\x6e\x74\x65\x64\x20\x61\x63\x72\x6f\x73\x73\x20\x74\x68\x65\x6d\x2e\x20\x43\x4f\x53\x54\x53\x20\x53\x43\x41\x4c\x45\x20\x4c\x49\x4e\x45\x41\x52\x4c\x59\x20\x77\x69\x74\x68\x20\x60\x77\x6f\x72\x6b\x65\x72\x73\x60\x2e\x20\x55\x73\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x65\x73\x74\x72\x6f\x79\x20\x77\x68\x65\x6e\x20\x64\x6f\x6e\x65\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x42a5c4(0xe0),'\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_0x42a5c4(0xbe),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x50\x75\x62\x6c\x69\x63\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x6c\x75\x67\x20\x6f\x72\x20\x69\x64\x20\x28\x65\x2e\x67\x2e\x20\x27\x70\x79\x74\x68\x6f\x6e\x2d\x64\x61\x74\x61\x2d\x73\x63\x69\x65\x6e\x63\x65\x27\x29\x2e'},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0x42a5c4(0xa0),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0x6a)},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{},'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':!![],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x6d\x65\x74\x61\x64\x61\x74\x61\x20\x73\x74\x61\x6d\x70\x65\x64\x20\x6f\x6e\x20\x65\x76\x65\x72\x79\x20\x66\x6c\x65\x65\x74\x20\x6d\x65\x6d\x62\x65\x72\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64',a0_0x42a5c4(0xa7)],'\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:_0x46209a})=>async _0x4f8a57=>{const _0x438257=a0_0x42a5c4,_0x4ff637=await _0x46209a[_0x438257(0x74)][_0x438257(0x8d)]({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0x4f8a57[_0x438257(0x8e)]},'\x77\x6f\x72\x6b\x65\x72\x73':Array[_0x438257(0x100)]({'\x6c\x65\x6e\x67\x74\x68':_0x4f8a57[_0x438257(0xa7)]},(_0x301b43,_0x14f5fc)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x438257(0xdf)+_0x14f5fc})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x4f8a57[_0x438257(0xd5)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x4ff637[_0x438257(0xe7)],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0x4ff637[_0x438257(0xa6)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x52\x75\x6e\x20\x61\x20\x73\x68\x65\x6c\x6c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x6f\x6e\x20\x61\x20\x66\x6c\x65\x65\x74\x27\x73\x20\x77\x6f\x72\x6b\x65\x72\x73\x20\x69\x6e\x20\x70\x61\x72\x61\x6c\x6c\x65\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x73\x20\x74\x6f\x20\x61\x6c\x6c\x20\x77\x6f\x72\x6b\x65\x72\x73\x3b\x20\x70\x61\x73\x73\x20\x60\x6d\x61\x63\x68\x69\x6e\x65\x73\x60\x20\x74\x6f\x20\x74\x61\x72\x67\x65\x74\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x6f\x6e\x65\x73\x2e\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x70\x65\x72\x2d\x6d\x61\x63\x68\x69\x6e\x65\x20\x7b\x6f\x6b\x2c\x20\x72\x65\x73\x75\x6c\x74\x3f\x2c\x20\x65\x72\x72\x6f\x72\x3f\x7d\x20\x65\x6e\x74\x72\x69\x65\x73\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x42a5c4(0xe0),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x42a5c4(0xbe)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x42a5c4(0xbe),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0x6b)},'\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_0x42a5c4(0xbe)},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0xca)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x42a5c4(0xa0),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0xf4)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x42a5c4(0x7e),a0_0x42a5c4(0xec)],'\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:_0x16df6f})=>async _0x3a4c58=>{const _0x59966c=a0_0x42a5c4;return await(await _0x16df6f['\x66\x6c\x65\x65\x74\x73']['\x6c\x69\x73\x74']({'\x66\x6c\x65\x65\x74\x49\x64':_0x3a4c58['\x66\x6c\x65\x65\x74\x5f\x69\x64']}))['\x64\x69\x73\x70\x61\x74\x63\x68\x45\x78\x65\x63'](_0x3a4c58[_0x59966c(0xec)],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x3a4c58[_0x59966c(0xa9)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x3a4c58[_0x59966c(0x76)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':a0_0x42a5c4(0xb9),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0xcc),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x42a5c4(0xe0),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x42a5c4(0xbe)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x42a5c4(0x7e)],'\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:_0x56ea0f})=>async _0x2ccea9=>{const _0x1c7dac=a0_0x42a5c4,_0x5090f9=await _0x56ea0f[_0x1c7dac(0x74)][_0x1c7dac(0xb1)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x2ccea9[_0x1c7dac(0x7e)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x5090f9['\x66\x6c\x65\x65\x74\x49\x64'],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x5090f9[_0x1c7dac(0xa6)][_0x1c7dac(0x101)](_0x3ec098=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x3ec098,'\x73\x74\x61\x74\x75\x73':_0x5090f9[_0x1c7dac(0xbb)](_0x3ec098)[_0x1c7dac(0xd0)]}))};}},'\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_0x42a5c4(0xc9),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x42a5c4(0xef),'\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':'\x73\x74\x72\x69\x6e\x67'},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':a0_0x42a5c4(0xe3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x43\x6f\x6e\x74\x69\x6e\x75\x65\x20\x64\x65\x6c\x65\x74\x69\x6e\x67\x20\x72\x65\x6d\x61\x69\x6e\x69\x6e\x67\x20\x6d\x61\x63\x68\x69\x6e\x65\x73\x20\x69\x66\x20\x6f\x6e\x65\x20\x66\x61\x69\x6c\x73\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x42a5c4(0x7e)],'\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:_0x1e34c4})=>async _0x12cf7c=>{const _0x87f23a=a0_0x42a5c4;return await(await _0x1e34c4[_0x87f23a(0x74)][_0x87f23a(0xb1)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x12cf7c['\x66\x6c\x65\x65\x74\x5f\x69\x64']}))[_0x87f23a(0xe8)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0x12cf7c[_0x87f23a(0x6e)]}),{'\x66\x6c\x65\x65\x74\x49\x64':_0x12cf7c['\x66\x6c\x65\x65\x74\x5f\x69\x64'],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object[a0_0x42a5c4(0x102)](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x2774f0){const _0x270526=a0_0x42a5c4,_0x1eeb19={'\x66\x4a\x75\x41\x46':function(_0x43f86a,_0x242d02){return _0x43f86a===_0x242d02;}};if(!_0x2774f0||_0x1eeb19['\x66\x4a\x75\x41\x46'](_0x2774f0[_0x270526(0x72)],0x0))return ALL_FLEET_TOOL_SPECS;const _0x186fd1=new Set(_0x2774f0);return Object[_0x270526(0xb2)](FLEET_TOOL_SPECS)[_0x270526(0x82)](_0x14ac82=>_0x186fd1[_0x270526(0xf8)](_0x14ac82))[_0x270526(0x101)](_0x1659a4=>FLEET_TOOL_SPECS[_0x1659a4]);}function a0_0x199f(){const _0x3799ca=['\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x77\x77\x58\x30\x42\x4b\x4b','\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','\x73\x32\x31\x75\x43\x68\x69','\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\x67\x4c\x49\x73\x75\x47','\x7a\x4e\x6a\x56\x42\x71','\x42\x77\x66\x57','\x44\x4d\x66\x53\x44\x77\x76\x5a','\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\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\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','\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','\x72\x33\x7a\x4b\x76\x67\x53','\x7a\x67\x66\x30\x79\x71','\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\x39\x59\x42\x77\x66\x30','\x44\x67\x66\x55\x7a\x32\x58\x4c\x6c\x78\x6e\x48\x42\x4d\x72\x49\x42\x33\x47','\x6c\x49\x34\x56\x6c\x49\x34\x56\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x35\x51\x43\x32\x39\x55','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x44\x67\x39\x56\x42\x66\x39\x31\x43\x32\x75','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x6e\x64\x71\x30\x6d\x65\x72\x58\x41\x78\x4c\x68\x75\x57','\x6f\x76\x6e\x6c\x76\x33\x4c\x72\x75\x71','\x45\x4b\x6a\x36\x43\x32\x79','\x43\x68\x76\x5a\x41\x61','\x41\x33\x50\x7a\x79\x33\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','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x42\x77\x66\x5a\x44\x68\x6a\x48\x76\x67\x39\x56\x42\x68\x6d\x4f\x6b\x74\x4f\x47\x44\x67\x48\x4c\x69\x67\x62\x61\x42\x77\x66\x5a\x44\x68\x6a\x48\x6c\x32\x6e\x56\x43\x4d\x76\x47\x69\x68\x62\x48\x79\x32\x54\x48\x7a\x32\x75\x47\x41\x78\x6d\x47\x42\x4d\x39\x30\x69\x67\x4c\x55\x43\x33\x72\x48\x42\x67\x58\x4c\x7a\x63\x34\x47\x73\x77\x35\x5a\x44\x67\x66\x53\x42\x63\x62\x50\x44\x63\x62\x32\x41\x77\x65\x47\x79\x68\x62\x55\x43\x67\x30\x47\x79\x77\x72\x4b\x69\x65\x62\x54\x79\x78\x6e\x30\x43\x4d\x65\x56\x79\x32\x39\x59\x7a\x77\x61\x55','\x75\x4d\x76\x4e\x7a\x78\x47\x47\x43\x67\x66\x30\x44\x67\x76\x59\x42\x49\x34','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x7a\x66\x44\x55\x75\x65\x71','\x76\x4d\x4c\x6b\x74\x31\x4b','\x79\x4d\x66\x5a\x41\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','\x42\x4d\x66\x54\x7a\x71','\x44\x4b\x50\x30\x42\x67\x34','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x7a\x77\x66\x4b','\x42\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\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','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\x43\x32\x39\x54\x7a\x71','\x72\x67\x6a\x62\x79\x77\x57','\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','\x79\x33\x48\x58\x73\x33\x4f','\x79\x77\x58\x53\x42\x33\x43','\x43\x67\x35\x4e','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x75\x33\x76\x49\x7a\x67\x4c\x59\x7a\x77\x6e\x30\x42\x33\x6a\x35\x69\x68\x72\x56\x69\x68\x6e\x4c\x79\x78\x6a\x4a\x41\x63\x34\x47\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x55','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x6d\x4a\x6d\x5a\x6d\x5a\x61\x32\x6e\x67\x7a\x58\x43\x77\x7a\x68\x7a\x57','\x43\x4d\x58\x33\x71\x75\x30','\x41\x77\x31\x48\x7a\x32\x75\x56\x43\x67\x35\x4e','\x41\x67\x4c\x55\x79\x4d\x6d','\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','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\x75\x32\x76\x59\x44\x4d\x76\x59','\x7a\x68\x72\x6c\x43\x68\x79','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x76\x68\x4c\x7a\x42\x4b\x38','\x6d\x74\x79\x57\x6e\x5a\x61\x32\x6e\x32\x6e\x69\x73\x30\x72\x59\x44\x57','\x76\x68\x66\x41\x41\x32\x75','\x6d\x74\x69\x35\x6e\x76\x72\x6b\x7a\x30\x44\x41\x41\x71','\x41\x77\x35\x57\x44\x78\x71','\x41\x77\x72\x5a','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\x43\x68\x4c\x30\x41\x67\x39\x55','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\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','\x6d\x4a\x75\x35\x6e\x4a\x69\x34\x6d\x65\x39\x68\x44\x30\x39\x69\x42\x61','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\x45\x68\x7a\x69\x43\x76\x47','\x42\x67\x4c\x5a\x44\x61','\x41\x32\x76\x35\x43\x57','\x42\x67\x54\x33\x43\x75\x69','\x73\x68\x7a\x6b\x7a\x75\x4f','\x75\x4d\x76\x48\x7a\x63\x62\x48\x69\x67\x7a\x50\x42\x67\x75\x47\x7a\x4e\x6a\x56\x42\x73\x62\x30\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x4d\x41\x77\x58\x4c\x43\x33\x4c\x5a\x44\x67\x76\x54\x6c\x49\x62\x73\x7a\x77\x58\x48\x44\x67\x4c\x32\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x78\x6e\x56\x42\x68\x7a\x4c\x69\x67\x7a\x59\x42\x32\x30\x47\x44\x67\x48\x4c\x69\x68\x44\x56\x43\x4d\x54\x5a\x43\x67\x66\x4a\x7a\x73\x62\x59\x42\x32\x39\x30\x6f\x59\x62\x48\x79\x4e\x6e\x56\x42\x68\x76\x30\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x77\x66\x4b\x69\x68\x72\x4f\x7a\x73\x62\x4a\x42\x32\x35\x30\x79\x77\x4c\x55\x7a\x78\x69\x47\x7a\x4d\x4c\x53\x7a\x78\x6e\x35\x43\x33\x72\x4c\x42\x73\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x53\x45\x73\x34','\x79\x32\x58\x56\x43\x32\x75','\x42\x75\x7a\x6e\x41\x67\x53','\x41\x77\x31\x48\x7a\x32\x75\x56\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\x5a\x44\x67\x66\x30\x44\x78\x6d','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x7a\x32\x76\x30','\x43\x32\x76\x30','\x75\x32\x4c\x36\x75\x4c\x71','\x43\x33\x72\x59\x41\x77\x35\x4e','\x44\x68\x4c\x57\x7a\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','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x6d\x74\x75\x30\x6e\x32\x50\x6e\x75\x75\x48\x31\x7a\x47','\x7a\x75\x4c\x77\x71\x78\x79','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x7a\x78\x48\x4c\x79\x57','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x43\x67\x66\x59\x79\x77\x31\x5a','\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','\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','\x42\x4d\x39\x4b\x7a\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','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x44\x67\x76\x34\x44\x61','\x43\x33\x72\x48\x44\x68\x76\x5a','\x73\x33\x72\x4e\x42\x30\x4f','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x44\x67\x39\x56\x42\x61','\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','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\x43\x4d\x76\x48\x7a\x61','\x79\x77\x58\x53','\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','\x79\x33\x44\x4b','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x6d\x74\x43\x57\x6f\x64\x71\x30\x6f\x67\x58\x6c\x73\x4e\x76\x67\x7a\x71','\x6e\x4a\x43\x32\x6d\x4a\x43\x58\x6d\x65\x76\x36\x71\x4c\x50\x63\x44\x57','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x79\x30\x35\x6f\x44\x30\x71','\x44\x32\x39\x59\x41\x32\x76\x59\x6c\x71','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x44\x78\x4c\x33\x73\x76\x69','\x6e\x64\x4b\x30\x72\x77\x48\x50\x77\x4d\x39\x35','\x79\x4d\x39\x56\x42\x67\x76\x48\x42\x47','\x44\x4c\x50\x4a\x45\x65\x38','\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','\x41\x4e\x62\x4c\x7a\x57','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x42\x4e\x48\x52\x73\x32\x38','\x43\x67\x66\x59\x43\x32\x75','\x44\x68\x4c\x70\x42\x4e\x75','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x53\x41\x78\x6e\x30','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x4b\x7a\x71','\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','\x7a\x68\x48\x7a\x79\x32\x71','\x6d\x63\x34\x57\x6c\x4a\x61','\x73\x76\x6a\x33\x77\x4d\x75','\x42\x77\x66\x34\x78\x33\x6a\x4c\x43\x33\x76\x53\x44\x68\x6d','\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\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x41\x77\x31\x48\x7a\x32\x75','\x43\x67\x66\x30\x41\x61','\x41\x67\x66\x5a'];a0_0x199f=function(){return _0x3799ca;};return a0_0x199f();}function anthropicFleetTools(_0x1fc977,_0x1c21f8={}){const _0x52cf2a=a0_0x42a5c4,_0x28edbf={'\x59\x6c\x74\x6e\x49':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x65\x73\x7a\x4c\x65':function(_0x864032,_0x4a19bf){return _0x864032(_0x4a19bf);},'\x49\x52\x77\x5a\x65':function(_0x55eb87,_0x194fab){return _0x55eb87(_0x194fab);},'\x44\x62\x41\x61\x6c':function(_0x3ae918,_0x2100a5){return _0x3ae918 instanceof _0x2100a5;},'\x63\x78\x71\x4b\x7a':function(_0x5a9c8f,_0x3bdc5a){return _0x5a9c8f(_0x3bdc5a);}},_0x156565=_0x28edbf[_0x52cf2a(0x92)](selectFleetSpecs,_0x1c21f8[_0x52cf2a(0x93)]),_0x206c96=buildFleetHandlers(_0x156565,{'\x63\x6c\x69\x65\x6e\x74':_0x1fc977});return{'\x74\x6f\x6f\x6c\x73':_0x156565[_0x52cf2a(0x101)](_0x4a50a8=>({'\x6e\x61\x6d\x65':_0x4a50a8['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4a50a8['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x4a50a8[_0x52cf2a(0xc2)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x51425d){const _0x415578=_0x52cf2a,_0x18c73f=_0x206c96['\x67\x65\x74'](_0x51425d[_0x415578(0x89)]);if(!_0x18c73f)return{'\x74\x79\x70\x65':_0x28edbf[_0x415578(0xfb)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x51425d['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x415578(0x68)+_0x51425d[_0x415578(0x89)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0xc8913c=await _0x28edbf['\x65\x73\x7a\x4c\x65'](_0x18c73f,_0x51425d[_0x415578(0xa5)]);return{'\x74\x79\x70\x65':_0x415578(0x97),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x51425d['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x28edbf[_0x415578(0xf2)](serializeToolResult,_0xc8913c)};}catch(_0x4bd57d){return{'\x74\x79\x70\x65':_0x28edbf[_0x415578(0xfb)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x51425d['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x28edbf[_0x415578(0x90)](_0x4bd57d,Error)?_0x4bd57d[_0x415578(0xcd)]:_0x28edbf['\x63\x78\x71\x4b\x7a'](String,_0x4bd57d),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x35ad35,_0xa86034={}){const _0x4fad89=a0_0x42a5c4,_0x48053f={'\x64\x78\x59\x63\x64':_0x4fad89(0xd3),'\x56\x69\x4a\x4f\x59':_0x4fad89(0xe0),'\x54\x71\x5a\x6b\x65':function(_0x3dffca,_0x2ee406){return _0x3dffca instanceof _0x2ee406;},'\x56\x62\x52\x77\x6e':function(_0x559065,_0x5d0d6e){return _0x559065(_0x5d0d6e);},'\x71\x72\x69\x58\x59':function(_0x2e3dab,_0x685664){return _0x2e3dab(_0x685664);},'\x6c\x6b\x77\x71\x42':function(_0x36fff4,_0x41bc65,_0x2806f7){return _0x36fff4(_0x41bc65,_0x2806f7);}},_0x33fe39=_0x48053f['\x71\x72\x69\x58\x59'](selectFleetSpecs,_0xa86034[_0x4fad89(0x93)]),_0x1e73b2=_0x48053f[_0x4fad89(0xb3)](buildFleetHandlers,_0x33fe39,{'\x63\x6c\x69\x65\x6e\x74':_0x35ad35});return{'\x74\x6f\x6f\x6c\x73':_0x33fe39[_0x4fad89(0x101)](_0x287421=>({'\x74\x79\x70\x65':_0x4fad89(0x73),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x287421[_0x4fad89(0x89)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x287421[_0x4fad89(0x95)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x287421['\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'(_0x59cadf){const _0x447e2b=_0x4fad89,_0x7d65b2=_0x1e73b2[_0x447e2b(0xbb)](_0x59cadf[_0x447e2b(0x73)][_0x447e2b(0x89)]);if(!_0x7d65b2)return{'\x72\x6f\x6c\x65':_0x48053f[_0x447e2b(0xf0)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x59cadf['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x447e2b(0x84)]({'\x65\x72\x72\x6f\x72':_0x447e2b(0x68)+_0x59cadf[_0x447e2b(0x73)][_0x447e2b(0x89)]})};let _0x29342b={};try{const _0x474927=JSON[_0x447e2b(0xea)](_0x59cadf[_0x447e2b(0x73)][_0x447e2b(0xc1)]||'\x7b\x7d');if(_0x474927&&typeof _0x474927===_0x48053f[_0x447e2b(0x86)])_0x29342b=_0x474927;}catch{}try{const _0x24ed36=await _0x7d65b2(_0x29342b);return{'\x72\x6f\x6c\x65':_0x48053f[_0x447e2b(0xf0)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x59cadf['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x24ed36)};}catch(_0x479951){return{'\x72\x6f\x6c\x65':_0x48053f['\x64\x78\x59\x63\x64'],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x59cadf['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x447e2b(0x84)]({'\x65\x72\x72\x6f\x72':_0x48053f[_0x447e2b(0xa3)](_0x479951,Error)?_0x479951[_0x447e2b(0xcd)]:_0x48053f['\x56\x62\x52\x77\x6e'](String,_0x479951)})};}}};}async function vercelAiFleetTools(_0x2b9afe,_0x3c51c3={}){const _0x19f57f=a0_0x42a5c4,_0x3b567d={'\x47\x76\x64\x54\x6b':function(_0x252b9d,_0x220fe6){return _0x252b9d(_0x220fe6);}};let _0xea1bf;try{_0xea1bf=await import('\x61\x69');}catch{throw new Error('\x76\x65\x72\x63\x65\x6c\x41\x69\x46\x6c\x65\x65\x74\x54\x6f\x6f\x6c\x73\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x61\x69\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x61\x69\x60\x2e');}const _0x45faa6=_0x3b567d[_0x19f57f(0x6c)](selectFleetSpecs,_0x3c51c3['\x61\x6c\x6c\x6f\x77']),_0x469ce8=buildFleetHandlers(_0x45faa6,{'\x63\x6c\x69\x65\x6e\x74':_0x2b9afe}),_0x99cef={};for(const _0x423888 of _0x45faa6)_0x99cef[_0x423888[_0x19f57f(0x89)]]=_0xea1bf['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x423888[_0x19f57f(0x95)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0xea1bf[_0x19f57f(0xfa)](_0x423888[_0x19f57f(0xc2)]),'\x65\x78\x65\x63\x75\x74\x65':async _0xe9026e=>{const _0x4cffe1=_0x19f57f,_0x2d7efe=_0x469ce8[_0x4cffe1(0xbb)](_0x423888[_0x4cffe1(0x89)]);if(!_0x2d7efe)throw new Error(_0x4cffe1(0x68)+_0x423888[_0x4cffe1(0x89)]);return _0x3b567d[_0x4cffe1(0x6c)](serializeToolResult,await _0x3b567d[_0x4cffe1(0x6c)](_0x2d7efe,_0xe9026e));}});return _0x99cef;}async function mastraFleetTools(_0x2ce27c,_0xdee9b0={}){const _0x3d80da=a0_0x42a5c4,_0x1084d3={'\x68\x69\x6e\x62\x63':function(_0x146d9e,_0x41e861){return _0x146d9e(_0x41e861);},'\x78\x76\x48\x71\x58':_0x3d80da(0xda),'\x7a\x42\x7a\x73\x66':function(_0x44a072,_0x2c45af,_0xbce756){return _0x44a072(_0x2c45af,_0xbce756);}};let _0xdcc83f;try{_0xdcc83f=await import(_0x1084d3[_0x3d80da(0xb0)]);}catch{throw new Error('\x6d\x61\x73\x74\x72\x61\x46\x6c\x65\x65\x74\x54\x6f\x6f\x6c\x73\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65\x60\x2e');}const _0x132a50=selectFleetSpecs(_0xdee9b0[_0x3d80da(0x93)]),_0x4362f9=_0x1084d3[_0x3d80da(0x7a)](buildFleetHandlers,_0x132a50,{'\x63\x6c\x69\x65\x6e\x74':_0x2ce27c}),_0x3e4154={};for(const _0x4897aa of _0x132a50)_0x3e4154[_0x4897aa[_0x3d80da(0x89)]]=_0xdcc83f['\x63\x72\x65\x61\x74\x65\x54\x6f\x6f\x6c']({'\x69\x64':_0x4897aa['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4897aa[_0x3d80da(0x95)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0xdcc83f[_0x3d80da(0xfa)]?_0xdcc83f['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61'](_0x4897aa[_0x3d80da(0xc2)]):_0x4897aa[_0x3d80da(0xc2)],'\x65\x78\x65\x63\x75\x74\x65':async _0x3242b8=>{const _0x3c7f84=_0x3d80da,_0x492914=_0x4362f9[_0x3c7f84(0xbb)](_0x4897aa[_0x3c7f84(0x89)]);if(!_0x492914)throw new Error(_0x3c7f84(0x68)+_0x4897aa[_0x3c7f84(0x89)]);return{'\x72\x65\x73\x75\x6c\x74':_0x1084d3[_0x3c7f84(0x9b)](serializeToolResult,await _0x492914(_0x3242b8?.['\x63\x6f\x6e\x74\x65\x78\x74']??{}))};}});return _0x3e4154;}function a0_0x21c3(_0x4c970c,_0x2c716b){_0x4c970c=_0x4c970c-0x68;const _0x199f32=a0_0x199f();let _0x21c3be=_0x199f32[_0x4c970c];if(a0_0x21c3['\x7a\x55\x6e\x70\x68\x53']===undefined){var _0x733f6f=function(_0x32916d){const _0x54cae2='\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 _0x4a6aea='',_0x27e2a8='';for(let _0x5c1052=0x0,_0xfa05b2,_0x1fa26c,_0x3f5345=0x0;_0x1fa26c=_0x32916d['\x63\x68\x61\x72\x41\x74'](_0x3f5345++);~_0x1fa26c&&(_0xfa05b2=_0x5c1052%0x4?_0xfa05b2*0x40+_0x1fa26c:_0x1fa26c,_0x5c1052++%0x4)?_0x4a6aea+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0xfa05b2>>(-0x2*_0x5c1052&0x6)):0x0){_0x1fa26c=_0x54cae2['\x69\x6e\x64\x65\x78\x4f\x66'](_0x1fa26c);}for(let _0x7e65b6=0x0,_0x3a7bbd=_0x4a6aea['\x6c\x65\x6e\x67\x74\x68'];_0x7e65b6<_0x3a7bbd;_0x7e65b6++){_0x27e2a8+='\x25'+('\x30\x30'+_0x4a6aea['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x7e65b6)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x27e2a8);};a0_0x21c3['\x76\x46\x64\x79\x50\x59']=_0x733f6f,a0_0x21c3['\x46\x57\x79\x67\x54\x44']={},a0_0x21c3['\x7a\x55\x6e\x70\x68\x53']=!![];}const _0x24b99b=_0x199f32[0x0],_0x5eb0d7=_0x4c970c+_0x24b99b,_0x42dde1=a0_0x21c3['\x46\x57\x79\x67\x54\x44'][_0x5eb0d7];return!_0x42dde1?(_0x21c3be=a0_0x21c3['\x76\x46\x64\x79\x50\x59'](_0x21c3be),a0_0x21c3['\x46\x57\x79\x67\x54\x44'][_0x5eb0d7]=_0x21c3be):_0x21c3be=_0x42dde1,_0x21c3be;}function buildFleetHandlers(_0x240216,_0x37d6ea){const _0x13c641=a0_0x42a5c4,_0x54ea8a=new Map();for(const _0x44989c of _0x240216)_0x54ea8a[_0x13c641(0xbc)](_0x44989c[_0x13c641(0x89)],_0x44989c[_0x13c641(0x8c)](_0x37d6ea));return _0x54ea8a;}async function mastraTools(_0x33a456,_0x468a56={}){const _0x3217c2=a0_0x42a5c4,_0x287a82={'\x6c\x69\x62\x49\x48':function(_0x245b48,_0x531c87){return _0x245b48(_0x531c87);}};let _0x39d4e6;try{_0x39d4e6=await import(_0x3217c2(0xda));}catch{throw new Error(_0x3217c2(0x80));}const _0x498d58=selectSpecs(_0x468a56[_0x3217c2(0x93)]),_0x35eff9={'\x62\x6f\x78':_0x33a456,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x468a56[_0x3217c2(0x7f)]},_0x3a5602={};for(const _0x18ce15 of _0x498d58){const _0x160aa8=_0x18ce15[_0x3217c2(0x8c)](_0x35eff9);_0x3a5602[_0x18ce15['\x6e\x61\x6d\x65']]=_0x39d4e6[_0x3217c2(0xaf)]({'\x69\x64':_0x18ce15['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x18ce15[_0x3217c2(0x95)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x39d4e6[_0x3217c2(0xfa)]?_0x39d4e6[_0x3217c2(0xfa)](_0x18ce15['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']):_0x18ce15[_0x3217c2(0xc2)],'\x65\x78\x65\x63\x75\x74\x65':async _0x19458c=>{const _0x291f95=_0x3217c2;return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x287a82[_0x291f95(0xff)](_0x160aa8,_0x19458c?.[_0x291f95(0xd2)]??{}))};}});}return _0x3a5602;}function openaiTools(_0x42ca4c,_0x4ad6cd={}){const _0xe493f2=a0_0x42a5c4,_0x5adcf9={'\x64\x57\x6e\x50\x44':function(_0x1c4d05,_0x3ad6e5){return _0x1c4d05===_0x3ad6e5;},'\x53\x69\x7a\x52\x54':_0xe493f2(0xe0),'\x55\x6b\x54\x6f\x73':function(_0x173e41,_0x556b81){return _0x173e41!==_0x556b81;},'\x75\x79\x77\x49\x52':function(_0x5e962d,_0x3afaf4){return _0x5e962d(_0x3afaf4);},'\x54\x79\x59\x6e\x4f':function(_0x528dbc,_0x32f89f){return _0x528dbc(_0x32f89f);}},_0x159306=selectSpecs(_0x4ad6cd[_0xe493f2(0x93)]),_0x112b90={'\x62\x6f\x78':_0x42ca4c,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4ad6cd[_0xe493f2(0x7f)]},_0x42641b=new Map();for(const _0x502f54 of _0x159306)_0x42641b[_0xe493f2(0xbc)](_0x502f54[_0xe493f2(0x89)],_0x502f54[_0xe493f2(0x8c)](_0x112b90));const _0x580794=_0x159306['\x6d\x61\x70'](_0x4ed9f9=>({'\x74\x79\x70\x65':_0xe493f2(0x73),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x4ed9f9[_0xe493f2(0x89)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4ed9f9[_0xe493f2(0x95)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x4ed9f9[_0xe493f2(0xc2)]}}));function _0xb18ccb(_0x154c07){const _0x29c4db=_0xe493f2;if(!_0x154c07)return{};try{const _0x5cfca6=JSON[_0x29c4db(0xea)](_0x154c07);return _0x5adcf9[_0x29c4db(0x85)](typeof _0x5cfca6,_0x5adcf9[_0x29c4db(0xbd)])&&_0x5adcf9['\x55\x6b\x54\x6f\x73'](_0x5cfca6,null)?_0x5cfca6:{};}catch{return{};}}async function _0x174b12(_0x5ad58a){const _0x5f3e33=_0xe493f2,_0x564d2b=_0x42641b[_0x5f3e33(0xbb)](_0x5ad58a[_0x5f3e33(0x73)][_0x5f3e33(0x89)]);if(!_0x564d2b)return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x5ad58a['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x5f3e33(0x84)]({'\x65\x72\x72\x6f\x72':_0x5f3e33(0xac)+_0x5ad58a[_0x5f3e33(0x73)][_0x5f3e33(0x89)]})};try{const _0x27d6a2=await _0x564d2b(_0x5adcf9[_0x5f3e33(0xe1)](_0xb18ccb,_0x5ad58a['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x5f3e33(0xc1)]));return{'\x72\x6f\x6c\x65':_0x5f3e33(0xd3),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x5ad58a['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x5adcf9[_0x5f3e33(0xa1)](serializeToolResult,_0x27d6a2)};}catch(_0x33de8){return{'\x72\x6f\x6c\x65':_0x5f3e33(0xd3),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x5ad58a['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x5f3e33(0x84)]({'\x65\x72\x72\x6f\x72':_0x33de8 instanceof Error?_0x33de8[_0x5f3e33(0xcd)]:String(_0x33de8)})};}}async function _0x2b5ec1(_0xde6766){const _0x41a923=_0xe493f2,_0x33d0a6=_0xde6766['\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x73']??[];return Promise['\x61\x6c\x6c'](_0x33d0a6[_0x41a923(0x101)](_0x174b12));}return{'\x74\x6f\x6f\x6c\x73':_0x580794,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x174b12,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x2b5ec1};}async function vercelAiTools(_0x3ba070,_0x501962={}){const _0x150bac=a0_0x42a5c4,_0xdb5cad={'\x4b\x6d\x54\x70\x72':function(_0x58aa48,_0x30be41){return _0x58aa48(_0x30be41);}};let _0x5ec132;try{_0x5ec132=await import('\x61\x69');}catch{throw new Error('\x76\x65\x72\x63\x65\x6c\x41\x69\x54\x6f\x6f\x6c\x73\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x61\x69\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x69\x74\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x61\x69\x60\x20\x28\x61\x6e\x64\x20\x70\x69\x63\x6b\x20\x61\x6e\x20\x60\x40\x61\x69\x2d\x73\x64\x6b\x2f\x2a\x60\x20\x6d\x6f\x64\x65\x6c\x20\x61\x64\x61\x70\x74\x65\x72\x29\x2e');}const _0x3573a5=_0xdb5cad[_0x150bac(0xfd)](selectSpecs,_0x501962[_0x150bac(0x93)]),_0xf58950={'\x62\x6f\x78':_0x3ba070,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x501962[_0x150bac(0x7f)]},_0x3a386d={};for(const _0x47a1ff of _0x3573a5){const _0x2592a1=_0x47a1ff['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0xf58950);_0x3a386d[_0x47a1ff[_0x150bac(0x89)]]=_0x5ec132['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x47a1ff[_0x150bac(0x95)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x5ec132[_0x150bac(0xfa)](_0x47a1ff[_0x150bac(0xc2)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x56def5=>{return serializeToolResult(await _0x2592a1(_0x56def5));}});}return _0x3a386d;}export{anthropicFleetTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};
@@ -1,2 +1,2 @@
1
- import { _ as ReadTokenPayload, a as issueCollaborationToken, c as issueSessionScopedToken, d as AnyTokenPayload, f as BatchScopedTokenPayload, g as ProjectScopedTokenPayload, h as IssueCollaborationTokenOptions, i as issueBatchScopedToken, l as unsafeDecodeToken, m as CollaborationTokenPayload, n as getTokenTTL, o as issueProjectScopedToken, p as CollaborationAccess, r as isTokenExpiringSoon, s as issueReadToken, t as ProductTokenIssuer, u as verifyToken, v as SessionScopedTokenPayload, y as TokenScope } from "../index-Dpj1oB5i.js";
1
+ import { _ as ReadTokenPayload, a as issueCollaborationToken, c as issueSessionScopedToken, d as AnyTokenPayload, f as BatchScopedTokenPayload, g as ProjectScopedTokenPayload, h as IssueCollaborationTokenOptions, i as issueBatchScopedToken, l as unsafeDecodeToken, m as CollaborationTokenPayload, n as getTokenTTL, o as issueProjectScopedToken, p as CollaborationAccess, r as isTokenExpiringSoon, s as issueReadToken, t as ProductTokenIssuer, u as verifyToken, v as SessionScopedTokenPayload, y as TokenScope } from "../index-D-2pH_70.js";
2
2
  export { AnyTokenPayload, BatchScopedTokenPayload, CollaborationAccess, CollaborationTokenPayload, IssueCollaborationTokenOptions, ProductTokenIssuer, ProjectScopedTokenPayload, ReadTokenPayload, SessionScopedTokenPayload, TokenScope, getTokenTTL, isTokenExpiringSoon, issueBatchScopedToken, issueCollaborationToken, issueProjectScopedToken, issueReadToken, issueSessionScopedToken, unsafeDecodeToken, verifyToken };