@adcp/client 2.1.0 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schemas.generated.d.ts","sourceRoot":"","sources":["../../../src/lib/types/schemas.generated.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,299 @@
1
+ "use strict";
2
+ // Generated Zod schemas from official AdCP schemas v2.2.0
3
+ // Generated at: 2025-10-20T11:01:56.073Z
4
+ // These schemas provide runtime validation for AdCP data structures
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ActivateSignalResponseSchema = exports.ActivateSignalRequestSchema = exports.GetSignalsResponseSchema = exports.GetSignalsRequestSchema = exports.ProvidePerformanceFeedbackResponseSchema = exports.ProvidePerformanceFeedbackRequestSchema = exports.ListAuthorizedPropertiesResponseSchema = exports.ListAuthorizedPropertiesRequestSchema = exports.GetMediaBuyDeliveryResponseSchema = exports.GetMediaBuyDeliveryRequestSchema = exports.UpdateMediaBuyResponseSchema = exports.UpdateMediaBuyRequestSchema = exports.ListCreativesResponseSchema = exports.ListCreativesRequestSchema = exports.SyncCreativesResponseSchema = exports.SyncCreativesRequestSchema = exports.CreateMediaBuyResponseSchema = exports.CreateMediaBuyRequestSchema = exports.ListCreativeFormatsResponseSchema = exports.ListCreativeFormatsRequestSchema = exports.GetProductsResponseSchema = exports.GetProductsRequestSchema = exports.TargetingSchema = exports.ProductSchema = exports.CreativeAssetSchema = exports.MediaBuySchema = void 0;
7
+ const zod_1 = require("zod");
8
+ // MEDIA-BUY SCHEMA
9
+ exports.MediaBuySchema = zod_1.z.object({ "media_buy_id": zod_1.z.string().describe("Publisher's unique identifier for the media buy"), "buyer_ref": zod_1.z.string().describe("Buyer's reference identifier for this media buy").optional(), "status": zod_1.z.any(), "promoted_offering": zod_1.z.string().describe("Description of advertiser and what is being promoted"), "total_budget": zod_1.z.number().gte(0).describe("Total budget amount"), "packages": zod_1.z.array(zod_1.z.any()).describe("Array of packages within this media buy"), "creative_deadline": zod_1.z.string().datetime({ offset: true }).describe("ISO 8601 timestamp for creative upload deadline").optional(), "created_at": zod_1.z.string().datetime({ offset: true }).describe("Creation timestamp").optional(), "updated_at": zod_1.z.string().datetime({ offset: true }).describe("Last update timestamp").optional() }).strict().describe("Represents a purchased advertising campaign");
10
+ // CREATIVE-ASSET SCHEMA
11
+ exports.CreativeAssetSchema = zod_1.z.object({ "creative_id": zod_1.z.string().describe("Unique identifier for the creative"), "name": zod_1.z.string().describe("Human-readable creative name"), "format_id": zod_1.z.any().describe("Format identifier specifying which format this creative conforms to"), "assets": zod_1.z.record(zod_1.z.union([zod_1.z.any().superRefine((x, ctx) => {
12
+ const schemas = [zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any()];
13
+ const errors = schemas.reduce((errors, schema) => ((result) => result.error ? [...errors, result.error] : errors)(schema.safeParse(x)), []);
14
+ if (schemas.length - errors.length !== 1) {
15
+ ctx.addIssue({
16
+ path: ctx.path,
17
+ code: "invalid_union",
18
+ unionErrors: errors,
19
+ message: "Invalid input: Should pass single schema",
20
+ });
21
+ }
22
+ }), zod_1.z.never()])).superRefine((value, ctx) => {
23
+ for (const key in value) {
24
+ let evaluated = false;
25
+ if (key.match(new RegExp("^[a-zA-Z0-9_-]+$"))) {
26
+ evaluated = true;
27
+ const result = zod_1.z.any().superRefine((x, ctx) => {
28
+ const schemas = [zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any()];
29
+ const errors = schemas.reduce((errors, schema) => ((result) => result.error ? [...errors, result.error] : errors)(schema.safeParse(x)), []);
30
+ if (schemas.length - errors.length !== 1) {
31
+ ctx.addIssue({
32
+ path: ctx.path,
33
+ code: "invalid_union",
34
+ unionErrors: errors,
35
+ message: "Invalid input: Should pass single schema",
36
+ });
37
+ }
38
+ }).safeParse(value[key]);
39
+ if (!result.success) {
40
+ ctx.addIssue({
41
+ path: [...ctx.path, key],
42
+ code: 'custom',
43
+ message: `Invalid input: Key matching regex /${key}/ must match schema`,
44
+ params: {
45
+ issues: result.error.issues
46
+ }
47
+ });
48
+ }
49
+ }
50
+ if (!evaluated) {
51
+ const result = zod_1.z.never().safeParse(value[key]);
52
+ if (!result.success) {
53
+ ctx.addIssue({
54
+ path: [...ctx.path, key],
55
+ code: 'custom',
56
+ message: `Invalid input: must match catchall schema`,
57
+ params: {
58
+ issues: result.error.issues
59
+ }
60
+ });
61
+ }
62
+ }
63
+ }
64
+ }).describe("Assets required by the format, keyed by asset_role"), "inputs": zod_1.z.array(zod_1.z.object({ "name": zod_1.z.string().describe("Human-readable name for this preview variant"), "macros": zod_1.z.record(zod_1.z.string()).describe("Macro values to apply for this preview").optional(), "context_description": zod_1.z.string().describe("Natural language description of the context for AI-generated content").optional() }).strict()).describe("Preview contexts for generative formats - defines what scenarios to generate previews for").optional(), "tags": zod_1.z.array(zod_1.z.string()).describe("User-defined tags for organization and searchability").optional(), "approved": zod_1.z.boolean().describe("For generative creatives: set to true to approve and finalize, false to request regeneration with updated assets/message. Omit for non-generative creatives.").optional() }).strict().describe("Creative asset for upload to library - supports static assets, generative formats, and third-party snippets");
65
+ // PRODUCT SCHEMA
66
+ exports.ProductSchema = zod_1.z.object({ "product_id": zod_1.z.string().describe("Unique identifier for the product"), "name": zod_1.z.string().describe("Human-readable product name"), "description": zod_1.z.string().describe("Detailed description of the product and its inventory"), "properties": zod_1.z.array(zod_1.z.any()).min(1).describe("Array of advertising properties covered by this product for adagents.json validation").optional(), "property_tags": zod_1.z.array(zod_1.z.string().regex(new RegExp("^[a-z0-9_]+$")).describe("Lowercase tag with underscores (e.g., 'local_radio', 'premium_content')")).min(1).describe("Tags identifying groups of properties covered by this product (use list_authorized_properties to get full property details)").optional(), "format_ids": zod_1.z.array(zod_1.z.any()).describe("Array of supported creative format IDs - structured format_id objects with agent_url and id"), "delivery_type": zod_1.z.any(), "pricing_options": zod_1.z.array(zod_1.z.any()).min(1).describe("Available pricing models for this product"), "estimated_exposures": zod_1.z.number().int().gte(0).describe("Estimated exposures/impressions for guaranteed products").optional(), "measurement": zod_1.z.any().optional(), "delivery_measurement": zod_1.z.object({ "provider": zod_1.z.string().describe("Measurement provider(s) used for this product (e.g., 'Google Ad Manager with IAS viewability', 'Nielsen DAR', 'Geopath for DOOH impressions')"), "notes": zod_1.z.string().describe("Additional details about measurement methodology in plain language (e.g., 'MRC-accredited viewability. 50% in-view for 1s display / 2s video', 'Panel-based demographic measurement updated monthly')").optional() }).describe("Measurement provider and methodology for delivery metrics. The buyer accepts the declared provider as the source of truth for the buy. REQUIRED for all products."), "reporting_capabilities": zod_1.z.any().optional(), "creative_policy": zod_1.z.any().optional(), "is_custom": zod_1.z.boolean().describe("Whether this is a custom product").optional(), "brief_relevance": zod_1.z.string().describe("Explanation of why this product matches the brief (only included when brief is provided)").optional(), "expires_at": zod_1.z.string().datetime({ offset: true }).describe("Expiration timestamp for custom products").optional() }).strict().and(zod_1.z.any().superRefine((x, ctx) => {
67
+ const schemas = [zod_1.z.any(), zod_1.z.any()];
68
+ const errors = schemas.reduce((errors, schema) => ((result) => result.error ? [...errors, result.error] : errors)(schema.safeParse(x)), []);
69
+ if (schemas.length - errors.length !== 1) {
70
+ ctx.addIssue({
71
+ path: ctx.path,
72
+ code: "invalid_union",
73
+ unionErrors: errors,
74
+ message: "Invalid input: Should pass single schema",
75
+ });
76
+ }
77
+ })).describe("Represents available advertising inventory");
78
+ // TARGETING SCHEMA
79
+ exports.TargetingSchema = zod_1.z.object({ "geo_country_any_of": zod_1.z.array(zod_1.z.string().regex(new RegExp("^[A-Z]{2}$"))).describe("Restrict delivery to specific countries (ISO codes). Use for regulatory compliance or RCT testing.").optional(), "geo_region_any_of": zod_1.z.array(zod_1.z.string()).describe("Restrict delivery to specific regions/states. Use for regulatory compliance or RCT testing.").optional(), "geo_metro_any_of": zod_1.z.array(zod_1.z.string()).describe("Restrict delivery to specific metro areas (DMA codes). Use for regulatory compliance or RCT testing.").optional(), "geo_postal_code_any_of": zod_1.z.array(zod_1.z.string()).describe("Restrict delivery to specific postal/ZIP codes. Use for regulatory compliance or RCT testing.").optional(), "frequency_cap": zod_1.z.any().optional() }).strict().describe("Optional geographic refinements for media buys. Most targeting should be expressed in the brief and handled by the publisher. These fields are primarily for geographic restrictions (RCT testing, regulatory compliance).");
80
+ // get_products request
81
+ exports.GetProductsRequestSchema = zod_1.z.object({ "brief": zod_1.z.string().describe("Natural language description of campaign requirements").optional(), "brand_manifest": zod_1.z.any().describe("Brand information manifest providing brand context, assets, and product catalog. Can be provided inline or as a URL reference to a hosted manifest."), "filters": zod_1.z.object({ "delivery_type": zod_1.z.any().optional(), "is_fixed_price": zod_1.z.boolean().describe("Filter for fixed price vs auction products").optional(), "format_types": zod_1.z.array(zod_1.z.enum(["video", "display", "audio"])).describe("Filter by format types").optional(), "format_ids": zod_1.z.array(zod_1.z.any()).describe("Filter by specific format IDs").optional(), "standard_formats_only": zod_1.z.boolean().describe("Only return products accepting IAB standard formats").optional(), "min_exposures": zod_1.z.number().int().gte(1).describe("Minimum exposures/impressions needed for measurement validity").optional() }).strict().describe("Structured filters for product discovery").optional() }).strict().describe("Request parameters for discovering available advertising products");
82
+ // get_products response
83
+ exports.GetProductsResponseSchema = zod_1.z.object({ "products": zod_1.z.array(zod_1.z.any()).describe("Array of matching products"), "errors": zod_1.z.array(zod_1.z.any()).describe("Task-specific errors and warnings (e.g., product filtering issues)").optional() }).strict().describe("Response payload for get_products task");
84
+ // list_creative_formats request
85
+ exports.ListCreativeFormatsRequestSchema = zod_1.z.object({ "format_ids": zod_1.z.array(zod_1.z.any()).describe("Return only these specific format IDs (e.g., from get_products response)").optional(), "type": zod_1.z.enum(["audio", "video", "display", "dooh"]).describe("Filter by format type (technical categories with distinct requirements)").optional(), "asset_types": zod_1.z.array(zod_1.z.enum(["image", "video", "audio", "text", "html", "javascript", "url"])).describe("Filter to formats that include these asset types. For third-party tags, search for 'html' or 'javascript'. E.g., ['image', 'text'] returns formats with images and text, ['javascript'] returns formats accepting JavaScript tags.").optional(), "max_width": zod_1.z.number().int().describe("Maximum width in pixels (inclusive). Returns formats where ANY render has width <= this value. For multi-render formats, matches if at least one render fits.").optional(), "max_height": zod_1.z.number().int().describe("Maximum height in pixels (inclusive). Returns formats where ANY render has height <= this value. For multi-render formats, matches if at least one render fits.").optional(), "min_width": zod_1.z.number().int().describe("Minimum width in pixels (inclusive). Returns formats where ANY render has width >= this value.").optional(), "min_height": zod_1.z.number().int().describe("Minimum height in pixels (inclusive). Returns formats where ANY render has height >= this value.").optional(), "is_responsive": zod_1.z.boolean().describe("Filter for responsive formats that adapt to container size. When true, returns formats without fixed dimensions.").optional(), "name_search": zod_1.z.string().describe("Search for formats by name (case-insensitive partial match)").optional() }).strict().describe("Request parameters for discovering supported creative formats");
86
+ // list_creative_formats response
87
+ exports.ListCreativeFormatsResponseSchema = zod_1.z.object({ "formats": zod_1.z.array(zod_1.z.any()).describe("Full format definitions for all formats this agent supports. Each format's authoritative source is indicated by its agent_url field."), "creative_agents": zod_1.z.array(zod_1.z.object({ "agent_url": zod_1.z.string().url().describe("Base URL for the creative agent (e.g., 'https://reference.adcp.org', 'https://dco.example.com'). Call list_creative_formats on this URL to get its formats."), "agent_name": zod_1.z.string().describe("Human-readable name for the creative agent").optional(), "capabilities": zod_1.z.array(zod_1.z.enum(["validation", "assembly", "generation", "preview"])).describe("Capabilities this creative agent provides").optional() })).describe("Optional: Creative agents that provide additional formats. Buyers can recursively query these agents to discover more formats. No authentication required for list_creative_formats.").optional(), "errors": zod_1.z.array(zod_1.z.any()).describe("Task-specific errors and warnings (e.g., format availability issues)").optional() }).strict().describe("Response payload for list_creative_formats task");
88
+ // create_media_buy request
89
+ exports.CreateMediaBuyRequestSchema = zod_1.z.object({ "buyer_ref": zod_1.z.string().describe("Buyer's reference identifier for this media buy"), "packages": zod_1.z.array(zod_1.z.any()).describe("Array of package configurations"), "brand_manifest": zod_1.z.any().describe("Brand information manifest serving as the namespace and identity for this media buy. Provides brand context, assets, and product catalog. Can be provided inline or as a URL reference to a hosted manifest. Can be cached and reused across multiple requests."), "po_number": zod_1.z.string().describe("Purchase order number for tracking").optional(), "start_time": zod_1.z.any(), "end_time": zod_1.z.string().datetime({ offset: true }).describe("Campaign end date/time in ISO 8601 format"), "budget": zod_1.z.number().gte(0).describe("Total budget for this media buy. Currency is determined by the pricing_option_id selected in each package."), "reporting_webhook": zod_1.z.intersection(zod_1.z.any(), zod_1.z.object({ "reporting_frequency": zod_1.z.enum(["hourly", "daily", "monthly"]).describe("Frequency for automated reporting delivery. Must be supported by all products in the media buy."), "requested_metrics": zod_1.z.array(zod_1.z.enum(["impressions", "spend", "clicks", "ctr", "video_completions", "completion_rate", "conversions", "viewability", "engagement_rate"])).describe("Optional list of metrics to include in webhook notifications. If omitted, all available metrics are included. Must be subset of product's available_metrics.").optional() }).describe("Optional webhook configuration for automated reporting delivery. Uses push_notification_config structure with additional reporting-specific fields.")).optional() }).strict().describe("Request parameters for creating a media buy");
90
+ // create_media_buy response
91
+ exports.CreateMediaBuyResponseSchema = zod_1.z.object({ "media_buy_id": zod_1.z.string().describe("Publisher's unique identifier for the created media buy").optional(), "buyer_ref": zod_1.z.string().describe("Buyer's reference identifier for this media buy"), "creative_deadline": zod_1.z.string().datetime({ offset: true }).describe("ISO 8601 timestamp for creative upload deadline").optional(), "packages": zod_1.z.array(zod_1.z.object({ "package_id": zod_1.z.string().describe("Publisher's unique identifier for the package"), "buyer_ref": zod_1.z.string().describe("Buyer's reference identifier for the package") }).strict()).describe("Array of created packages").optional(), "errors": zod_1.z.array(zod_1.z.any()).describe("Task-specific errors and warnings (e.g., partial package creation failures)").optional() }).strict().describe("Response payload for create_media_buy task");
92
+ // sync_creatives request
93
+ exports.SyncCreativesRequestSchema = zod_1.z.object({ "creatives": zod_1.z.array(zod_1.z.any()).max(100).describe("Array of creative assets to sync (create or update)"), "patch": zod_1.z.boolean().describe("When true, only provided fields are updated (partial update). When false, entire creative is replaced (full upsert).").default(false), "assignments": zod_1.z.record(zod_1.z.union([zod_1.z.array(zod_1.z.string()).describe("Array of package IDs to assign this creative to"), zod_1.z.never()])).superRefine((value, ctx) => {
94
+ for (const key in value) {
95
+ let evaluated = false;
96
+ if (key.match(new RegExp("^[a-zA-Z0-9_-]+$"))) {
97
+ evaluated = true;
98
+ const result = zod_1.z.array(zod_1.z.string()).describe("Array of package IDs to assign this creative to").safeParse(value[key]);
99
+ if (!result.success) {
100
+ ctx.addIssue({
101
+ path: [...ctx.path, key],
102
+ code: 'custom',
103
+ message: `Invalid input: Key matching regex /${key}/ must match schema`,
104
+ params: {
105
+ issues: result.error.issues
106
+ }
107
+ });
108
+ }
109
+ }
110
+ if (!evaluated) {
111
+ const result = zod_1.z.never().safeParse(value[key]);
112
+ if (!result.success) {
113
+ ctx.addIssue({
114
+ path: [...ctx.path, key],
115
+ code: 'custom',
116
+ message: `Invalid input: must match catchall schema`,
117
+ params: {
118
+ issues: result.error.issues
119
+ }
120
+ });
121
+ }
122
+ }
123
+ }
124
+ }).describe("Optional bulk assignment of creatives to packages").optional(), "delete_missing": zod_1.z.boolean().describe("When true, creatives not included in this sync will be archived. Use with caution for full library replacement.").default(false), "dry_run": zod_1.z.boolean().describe("When true, preview changes without applying them. Returns what would be created/updated/deleted.").default(false), "validation_mode": zod_1.z.enum(["strict", "lenient"]).describe("Validation strictness. 'strict' fails entire sync on any validation error. 'lenient' processes valid creatives and reports errors.").default("strict"), "push_notification_config": zod_1.z.any().describe("Optional webhook configuration for async sync notifications. Publisher will send webhook when sync completes if operation takes longer than immediate response time (typically for large bulk operations or manual approval/HITL).").optional() }).strict().describe("Request parameters for syncing creative assets with upsert semantics - supports bulk operations, patch updates, and assignment management");
125
+ // sync_creatives response
126
+ exports.SyncCreativesResponseSchema = zod_1.z.object({ "dry_run": zod_1.z.boolean().describe("Whether this was a dry run (no actual changes made)").optional(), "creatives": zod_1.z.array(zod_1.z.object({ "creative_id": zod_1.z.string().describe("Creative ID from the request"), "action": zod_1.z.enum(["created", "updated", "unchanged", "failed", "deleted"]).describe("Action taken for this creative"), "platform_id": zod_1.z.string().describe("Platform-specific ID assigned to the creative").optional(), "changes": zod_1.z.array(zod_1.z.string()).describe("Field names that were modified (only present when action='updated')").optional(), "errors": zod_1.z.array(zod_1.z.string()).describe("Validation or processing errors (only present when action='failed')").optional(), "warnings": zod_1.z.array(zod_1.z.string()).describe("Non-fatal warnings about this creative").optional(), "preview_url": zod_1.z.string().url().describe("Preview URL for generative creatives (only present for generative formats)").optional(), "expires_at": zod_1.z.string().datetime({ offset: true }).describe("ISO 8601 timestamp when preview link expires (only present when preview_url exists)").optional(), "assigned_to": zod_1.z.array(zod_1.z.string()).describe("Package IDs this creative was successfully assigned to (only present when assignments were requested)").optional(), "assignment_errors": zod_1.z.record(zod_1.z.union([zod_1.z.string().describe("Error message for this package assignment"), zod_1.z.never()])).superRefine((value, ctx) => {
127
+ for (const key in value) {
128
+ let evaluated = false;
129
+ if (key.match(new RegExp("^[a-zA-Z0-9_-]+$"))) {
130
+ evaluated = true;
131
+ const result = zod_1.z.string().describe("Error message for this package assignment").safeParse(value[key]);
132
+ if (!result.success) {
133
+ ctx.addIssue({
134
+ path: [...ctx.path, key],
135
+ code: 'custom',
136
+ message: `Invalid input: Key matching regex /${key}/ must match schema`,
137
+ params: {
138
+ issues: result.error.issues
139
+ }
140
+ });
141
+ }
142
+ }
143
+ if (!evaluated) {
144
+ const result = zod_1.z.never().safeParse(value[key]);
145
+ if (!result.success) {
146
+ ctx.addIssue({
147
+ path: [...ctx.path, key],
148
+ code: 'custom',
149
+ message: `Invalid input: must match catchall schema`,
150
+ params: {
151
+ issues: result.error.issues
152
+ }
153
+ });
154
+ }
155
+ }
156
+ }
157
+ }).describe("Assignment errors by package ID (only present when assignment failures occurred)").optional() }).strict()).describe("Results for each creative processed") }).strict().describe("Response from creative sync operation with results for each creative");
158
+ // list_creatives request
159
+ exports.ListCreativesRequestSchema = zod_1.z.object({ "filters": zod_1.z.object({ "format": zod_1.z.string().describe("Filter by creative format type (e.g., video, audio, display)").optional(), "formats": zod_1.z.array(zod_1.z.string()).describe("Filter by multiple creative format types").optional(), "status": zod_1.z.any().describe("Filter by creative approval status").optional(), "statuses": zod_1.z.array(zod_1.z.any()).describe("Filter by multiple creative statuses").optional(), "tags": zod_1.z.array(zod_1.z.string()).describe("Filter by creative tags (all tags must match)").optional(), "tags_any": zod_1.z.array(zod_1.z.string()).describe("Filter by creative tags (any tag must match)").optional(), "name_contains": zod_1.z.string().describe("Filter by creative names containing this text (case-insensitive)").optional(), "creative_ids": zod_1.z.array(zod_1.z.string()).max(100).describe("Filter by specific creative IDs").optional(), "created_after": zod_1.z.string().datetime({ offset: true }).describe("Filter creatives created after this date (ISO 8601)").optional(), "created_before": zod_1.z.string().datetime({ offset: true }).describe("Filter creatives created before this date (ISO 8601)").optional(), "updated_after": zod_1.z.string().datetime({ offset: true }).describe("Filter creatives last updated after this date (ISO 8601)").optional(), "updated_before": zod_1.z.string().datetime({ offset: true }).describe("Filter creatives last updated before this date (ISO 8601)").optional(), "assigned_to_package": zod_1.z.string().describe("Filter creatives assigned to this specific package").optional(), "assigned_to_packages": zod_1.z.array(zod_1.z.string()).describe("Filter creatives assigned to any of these packages").optional(), "unassigned": zod_1.z.boolean().describe("Filter for unassigned creatives when true, assigned creatives when false").optional(), "has_performance_data": zod_1.z.boolean().describe("Filter creatives that have performance data when true").optional() }).strict().describe("Filter criteria for querying creatives").optional(), "sort": zod_1.z.object({ "field": zod_1.z.enum(["created_date", "updated_date", "name", "status", "assignment_count", "performance_score"]).describe("Field to sort by").default("created_date"), "direction": zod_1.z.enum(["asc", "desc"]).describe("Sort direction").default("desc") }).strict().describe("Sorting parameters").optional(), "pagination": zod_1.z.object({ "limit": zod_1.z.number().int().gte(1).lte(100).describe("Maximum number of creatives to return").default(50), "offset": zod_1.z.number().int().gte(0).describe("Number of creatives to skip").default(0) }).strict().describe("Pagination parameters").optional(), "include_assignments": zod_1.z.boolean().describe("Include package assignment information in response").default(true), "include_performance": zod_1.z.boolean().describe("Include aggregated performance metrics in response").default(false), "include_sub_assets": zod_1.z.boolean().describe("Include sub-assets (for carousel/native formats) in response").default(false), "fields": zod_1.z.array(zod_1.z.enum(["creative_id", "name", "format", "status", "created_date", "updated_date", "tags", "assignments", "performance", "sub_assets"])).describe("Specific fields to include in response (omit for all fields)").optional() }).strict().describe("Request parameters for querying creative assets from the centralized library with filtering, sorting, and pagination");
160
+ // list_creatives response
161
+ exports.ListCreativesResponseSchema = zod_1.z.object({ "query_summary": zod_1.z.object({ "total_matching": zod_1.z.number().int().gte(0).describe("Total number of creatives matching filters (across all pages)"), "returned": zod_1.z.number().int().gte(0).describe("Number of creatives returned in this response"), "filters_applied": zod_1.z.array(zod_1.z.string()).describe("List of filters that were applied to the query").optional(), "sort_applied": zod_1.z.object({ "field": zod_1.z.string().optional(), "direction": zod_1.z.enum(["asc", "desc"]).optional() }).describe("Sort order that was applied").optional() }).strict().describe("Summary of the query that was executed"), "pagination": zod_1.z.object({ "limit": zod_1.z.number().int().gte(1).describe("Maximum number of results requested"), "offset": zod_1.z.number().int().gte(0).describe("Number of results skipped"), "has_more": zod_1.z.boolean().describe("Whether more results are available"), "total_pages": zod_1.z.number().int().gte(0).describe("Total number of pages available").optional(), "current_page": zod_1.z.number().int().gte(1).describe("Current page number (1-based)").optional() }).strict().describe("Pagination information for navigating results"), "creatives": zod_1.z.array(zod_1.z.object({ "creative_id": zod_1.z.string().describe("Unique identifier for the creative"), "name": zod_1.z.string().describe("Human-readable creative name"), "format_id": zod_1.z.any().describe("Format identifier specifying which format this creative conforms to"), "status": zod_1.z.any().describe("Current approval status of the creative"), "created_date": zod_1.z.string().datetime({ offset: true }).describe("When the creative was uploaded to the library"), "updated_date": zod_1.z.string().datetime({ offset: true }).describe("When the creative was last modified"), "media_url": zod_1.z.string().url().describe("URL of the creative file (for hosted assets)").optional(), "assets": zod_1.z.record(zod_1.z.any().superRefine((x, ctx) => {
162
+ const schemas = [zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any()];
163
+ const errors = schemas.reduce((errors, schema) => ((result) => result.error ? [...errors, result.error] : errors)(schema.safeParse(x)), []);
164
+ if (schemas.length - errors.length !== 1) {
165
+ ctx.addIssue({
166
+ path: ctx.path,
167
+ code: "invalid_union",
168
+ unionErrors: errors,
169
+ message: "Invalid input: Should pass single schema",
170
+ });
171
+ }
172
+ })).superRefine((value, ctx) => {
173
+ for (const key in value) {
174
+ if (key.match(new RegExp("^[a-zA-Z0-9_-]+$"))) {
175
+ const result = zod_1.z.any().superRefine((x, ctx) => {
176
+ const schemas = [zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any(), zod_1.z.any()];
177
+ const errors = schemas.reduce((errors, schema) => ((result) => result.error ? [...errors, result.error] : errors)(schema.safeParse(x)), []);
178
+ if (schemas.length - errors.length !== 1) {
179
+ ctx.addIssue({
180
+ path: ctx.path,
181
+ code: "invalid_union",
182
+ unionErrors: errors,
183
+ message: "Invalid input: Should pass single schema",
184
+ });
185
+ }
186
+ }).safeParse(value[key]);
187
+ if (!result.success) {
188
+ ctx.addIssue({
189
+ path: [...ctx.path, key],
190
+ code: 'custom',
191
+ message: `Invalid input: Key matching regex /${key}/ must match schema`,
192
+ params: {
193
+ issues: result.error.issues
194
+ }
195
+ });
196
+ }
197
+ }
198
+ }
199
+ }).describe("Assets for this creative, keyed by asset_role").optional(), "click_url": zod_1.z.string().url().describe("Landing page URL for the creative").optional(), "duration": zod_1.z.number().gte(0).describe("Duration in milliseconds (for video/audio)").optional(), "width": zod_1.z.number().gte(0).describe("Width in pixels (for video/display)").optional(), "height": zod_1.z.number().gte(0).describe("Height in pixels (for video/display)").optional(), "tags": zod_1.z.array(zod_1.z.string()).describe("User-defined tags for organization and searchability").optional(), "assignments": zod_1.z.object({ "assignment_count": zod_1.z.number().int().gte(0).describe("Total number of active package assignments"), "assigned_packages": zod_1.z.array(zod_1.z.object({ "package_id": zod_1.z.string().describe("Package identifier"), "package_name": zod_1.z.string().describe("Human-readable package name").optional(), "assigned_date": zod_1.z.string().datetime({ offset: true }).describe("When this assignment was created"), "status": zod_1.z.enum(["active", "paused", "ended"]).describe("Status of this specific assignment") }).strict()).describe("List of packages this creative is assigned to").optional() }).strict().describe("Current package assignments (included when include_assignments=true)").optional(), "performance": zod_1.z.object({ "impressions": zod_1.z.number().int().gte(0).describe("Total impressions across all assignments").optional(), "clicks": zod_1.z.number().int().gte(0).describe("Total clicks across all assignments").optional(), "ctr": zod_1.z.number().gte(0).lte(1).describe("Click-through rate (clicks/impressions)").optional(), "conversion_rate": zod_1.z.number().gte(0).lte(1).describe("Conversion rate across all assignments").optional(), "performance_score": zod_1.z.number().gte(0).lte(100).describe("Aggregated performance score (0-100)").optional(), "last_updated": zod_1.z.string().datetime({ offset: true }).describe("When performance data was last updated") }).strict().describe("Aggregated performance metrics (included when include_performance=true)").optional(), "sub_assets": zod_1.z.array(zod_1.z.any()).describe("Sub-assets for multi-asset formats (included when include_sub_assets=true)").optional() }).strict()).describe("Array of creative assets matching the query"), "format_summary": zod_1.z.record(zod_1.z.union([zod_1.z.number().int().gte(0).describe("Number of creatives with this format"), zod_1.z.never()])).superRefine((value, ctx) => {
200
+ for (const key in value) {
201
+ let evaluated = false;
202
+ if (key.match(new RegExp("^[a-zA-Z0-9_-]+$"))) {
203
+ evaluated = true;
204
+ const result = zod_1.z.number().int().gte(0).describe("Number of creatives with this format").safeParse(value[key]);
205
+ if (!result.success) {
206
+ ctx.addIssue({
207
+ path: [...ctx.path, key],
208
+ code: 'custom',
209
+ message: `Invalid input: Key matching regex /${key}/ must match schema`,
210
+ params: {
211
+ issues: result.error.issues
212
+ }
213
+ });
214
+ }
215
+ }
216
+ if (!evaluated) {
217
+ const result = zod_1.z.never().safeParse(value[key]);
218
+ if (!result.success) {
219
+ ctx.addIssue({
220
+ path: [...ctx.path, key],
221
+ code: 'custom',
222
+ message: `Invalid input: must match catchall schema`,
223
+ params: {
224
+ issues: result.error.issues
225
+ }
226
+ });
227
+ }
228
+ }
229
+ }
230
+ }).describe("Breakdown of creatives by format type").optional(), "status_summary": zod_1.z.object({ "approved": zod_1.z.number().int().gte(0).describe("Number of approved creatives").optional(), "pending_review": zod_1.z.number().int().gte(0).describe("Number of creatives pending review").optional(), "rejected": zod_1.z.number().int().gte(0).describe("Number of rejected creatives").optional(), "archived": zod_1.z.number().int().gte(0).describe("Number of archived creatives").optional() }).strict().describe("Breakdown of creatives by status").optional() }).strict().describe("Response from creative library query with filtered results, metadata, and optional enriched data");
231
+ // update_media_buy request
232
+ exports.UpdateMediaBuyRequestSchema = zod_1.z.object({ "media_buy_id": zod_1.z.string().describe("Publisher's ID of the media buy to update").optional(), "buyer_ref": zod_1.z.string().describe("Buyer's reference for the media buy to update").optional(), "active": zod_1.z.boolean().describe("Pause/resume the entire media buy").optional(), "start_time": zod_1.z.any().optional(), "end_time": zod_1.z.string().datetime({ offset: true }).describe("New end date/time in ISO 8601 format").optional(), "budget": zod_1.z.number().gte(0).describe("Updated total budget for this media buy. Currency is determined by the pricing_option_id selected in each package.").optional(), "packages": zod_1.z.array(zod_1.z.object({ "package_id": zod_1.z.string().describe("Publisher's ID of package to update").optional(), "buyer_ref": zod_1.z.string().describe("Buyer's reference for the package to update").optional(), "budget": zod_1.z.number().gte(0).describe("Updated budget allocation for this package in the currency specified by the pricing option").optional(), "active": zod_1.z.boolean().describe("Pause/resume specific package").optional(), "targeting_overlay": zod_1.z.any().optional(), "creative_ids": zod_1.z.array(zod_1.z.string()).describe("Update creative assignments").optional() }).strict().and(zod_1.z.any().superRefine((x, ctx) => {
233
+ const schemas = [zod_1.z.any(), zod_1.z.any()];
234
+ const errors = schemas.reduce((errors, schema) => ((result) => result.error ? [...errors, result.error] : errors)(schema.safeParse(x)), []);
235
+ if (schemas.length - errors.length !== 1) {
236
+ ctx.addIssue({
237
+ path: ctx.path,
238
+ code: "invalid_union",
239
+ unionErrors: errors,
240
+ message: "Invalid input: Should pass single schema",
241
+ });
242
+ }
243
+ }))).describe("Package-specific updates").optional(), "push_notification_config": zod_1.z.any().describe("Optional webhook configuration for async update notifications. Publisher will send webhook when update completes if operation takes longer than immediate response time.").optional() }).strict().and(zod_1.z.any().superRefine((x, ctx) => {
244
+ const schemas = [zod_1.z.any(), zod_1.z.any()];
245
+ const errors = schemas.reduce((errors, schema) => ((result) => result.error ? [...errors, result.error] : errors)(schema.safeParse(x)), []);
246
+ if (schemas.length - errors.length !== 1) {
247
+ ctx.addIssue({
248
+ path: ctx.path,
249
+ code: "invalid_union",
250
+ unionErrors: errors,
251
+ message: "Invalid input: Should pass single schema",
252
+ });
253
+ }
254
+ })).describe("Request parameters for updating campaign and package settings");
255
+ // update_media_buy response
256
+ exports.UpdateMediaBuyResponseSchema = zod_1.z.object({ "media_buy_id": zod_1.z.string().describe("Publisher's identifier for the media buy"), "buyer_ref": zod_1.z.string().describe("Buyer's reference identifier for the media buy"), "implementation_date": zod_1.z.union([zod_1.z.string().datetime({ offset: true }).describe("ISO 8601 timestamp when changes take effect (null if pending approval)"), zod_1.z.null().describe("ISO 8601 timestamp when changes take effect (null if pending approval)")]).describe("ISO 8601 timestamp when changes take effect (null if pending approval)").optional(), "affected_packages": zod_1.z.array(zod_1.z.object({ "package_id": zod_1.z.string().describe("Publisher's package identifier"), "buyer_ref": zod_1.z.string().describe("Buyer's reference for the package") }).strict()).describe("Array of packages that were modified").optional(), "errors": zod_1.z.array(zod_1.z.any()).describe("Task-specific errors and warnings (e.g., partial update failures)").optional() }).strict().describe("Response payload for update_media_buy task");
257
+ // get_media_buy_delivery request
258
+ exports.GetMediaBuyDeliveryRequestSchema = zod_1.z.object({ "media_buy_ids": zod_1.z.array(zod_1.z.string()).describe("Array of publisher media buy IDs to get delivery data for").optional(), "buyer_refs": zod_1.z.array(zod_1.z.string()).describe("Array of buyer reference IDs to get delivery data for").optional(), "status_filter": zod_1.z.any().superRefine((x, ctx) => {
259
+ const schemas = [zod_1.z.enum(["active", "pending", "paused", "completed", "failed", "all"]), zod_1.z.array(zod_1.z.enum(["active", "pending", "paused", "completed", "failed"]))];
260
+ const errors = schemas.reduce((errors, schema) => ((result) => result.error ? [...errors, result.error] : errors)(schema.safeParse(x)), []);
261
+ if (schemas.length - errors.length !== 1) {
262
+ ctx.addIssue({
263
+ path: ctx.path,
264
+ code: "invalid_union",
265
+ unionErrors: errors,
266
+ message: "Invalid input: Should pass single schema",
267
+ });
268
+ }
269
+ }).describe("Filter by status. Can be a single status or array of statuses").optional(), "start_date": zod_1.z.string().regex(new RegExp("^\\d{4}-\\d{2}-\\d{2}$")).describe("Start date for reporting period (YYYY-MM-DD)").optional(), "end_date": zod_1.z.string().regex(new RegExp("^\\d{4}-\\d{2}-\\d{2}$")).describe("End date for reporting period (YYYY-MM-DD)").optional() }).strict().describe("Request parameters for retrieving comprehensive delivery metrics");
270
+ // get_media_buy_delivery response
271
+ exports.GetMediaBuyDeliveryResponseSchema = zod_1.z.object({ "notification_type": zod_1.z.enum(["scheduled", "final", "delayed", "adjusted"]).describe("Type of webhook notification (only present in webhook deliveries): scheduled = regular periodic update, final = campaign completed, delayed = data not yet available, adjusted = resending period with updated data").optional(), "partial_data": zod_1.z.boolean().describe("Indicates if any media buys in this webhook have missing/delayed data (only present in webhook deliveries)").optional(), "unavailable_count": zod_1.z.number().int().gte(0).describe("Number of media buys with reporting_delayed or failed status (only present in webhook deliveries when partial_data is true)").optional(), "sequence_number": zod_1.z.number().int().gte(1).describe("Sequential notification number (only present in webhook deliveries, starts at 1)").optional(), "next_expected_at": zod_1.z.string().datetime({ offset: true }).describe("ISO 8601 timestamp for next expected notification (only present in webhook deliveries when notification_type is not 'final')").optional(), "reporting_period": zod_1.z.object({ "start": zod_1.z.string().datetime({ offset: true }).describe("ISO 8601 start timestamp in UTC (e.g., 2024-02-05T00:00:00Z)"), "end": zod_1.z.string().datetime({ offset: true }).describe("ISO 8601 end timestamp in UTC (e.g., 2024-02-05T23:59:59Z)") }).strict().describe("Date range for the report. All periods use UTC timezone."), "currency": zod_1.z.string().regex(new RegExp("^[A-Z]{3}$")).describe("ISO 4217 currency code"), "aggregated_totals": zod_1.z.object({ "impressions": zod_1.z.number().gte(0).describe("Total impressions delivered across all media buys"), "spend": zod_1.z.number().gte(0).describe("Total amount spent across all media buys"), "clicks": zod_1.z.number().gte(0).describe("Total clicks across all media buys (if applicable)").optional(), "video_completions": zod_1.z.number().gte(0).describe("Total video completions across all media buys (if applicable)").optional(), "media_buy_count": zod_1.z.number().int().gte(0).describe("Number of media buys included in the response") }).strict().describe("Combined metrics across all returned media buys. Only included in API responses (get_media_buy_delivery), not in webhook notifications.").optional(), "media_buy_deliveries": zod_1.z.array(zod_1.z.object({ "media_buy_id": zod_1.z.string().describe("Publisher's media buy identifier"), "buyer_ref": zod_1.z.string().describe("Buyer's reference identifier for this media buy").optional(), "status": zod_1.z.enum(["pending", "active", "paused", "completed", "failed", "reporting_delayed"]).describe("Current media buy status. In webhook context, reporting_delayed indicates data temporarily unavailable."), "expected_availability": zod_1.z.string().datetime({ offset: true }).describe("When delayed data is expected to be available (only present when status is reporting_delayed)").optional(), "is_adjusted": zod_1.z.boolean().describe("Indicates this delivery contains updated data for a previously reported period. Buyer should replace previous period data with these totals.").optional(), "pricing_model": zod_1.z.any().describe("Pricing model used for this media buy").optional(), "totals": zod_1.z.intersection(zod_1.z.any(), zod_1.z.object({ "effective_rate": zod_1.z.number().gte(0).describe("Effective rate paid per unit based on pricing_model (e.g., actual CPM for 'cpm', actual cost per completed view for 'cpcv', actual cost per point for 'cpp')").optional() }).describe("Aggregate metrics for this media buy across all packages")), "by_package": zod_1.z.array(zod_1.z.intersection(zod_1.z.any(), zod_1.z.object({ "package_id": zod_1.z.string().describe("Publisher's package identifier"), "buyer_ref": zod_1.z.string().describe("Buyer's reference identifier for this package").optional(), "pacing_index": zod_1.z.number().gte(0).describe("Delivery pace (1.0 = on track, <1.0 = behind, >1.0 = ahead)").optional() }))).describe("Metrics broken down by package"), "daily_breakdown": zod_1.z.array(zod_1.z.object({ "date": zod_1.z.string().regex(new RegExp("^\\d{4}-\\d{2}-\\d{2}$")).describe("Date (YYYY-MM-DD)"), "impressions": zod_1.z.number().gte(0).describe("Daily impressions"), "spend": zod_1.z.number().gte(0).describe("Daily spend") }).strict()).describe("Day-by-day delivery").optional() }).strict()).describe("Array of delivery data for media buys. When used in webhook notifications, may contain multiple media buys aggregated by publisher. When used in get_media_buy_delivery API responses, typically contains requested media buys."), "errors": zod_1.z.array(zod_1.z.any()).describe("Task-specific errors and warnings (e.g., missing delivery data, reporting platform issues)").optional() }).strict().describe("Response payload for get_media_buy_delivery task");
272
+ // list_authorized_properties request
273
+ exports.ListAuthorizedPropertiesRequestSchema = zod_1.z.object({ "tags": zod_1.z.array(zod_1.z.string().regex(new RegExp("^[a-z0-9_]+$")).describe("Tag to filter by (e.g., 'local_radio', 'premium_content')")).describe("Filter properties by specific tags (optional)").optional() }).strict().describe("Request parameters for discovering all properties this agent is authorized to represent");
274
+ // list_authorized_properties response
275
+ exports.ListAuthorizedPropertiesResponseSchema = zod_1.z.object({ "properties": zod_1.z.array(zod_1.z.any()).describe("Array of all properties this agent is authorized to represent"), "tags": zod_1.z.record(zod_1.z.object({ "name": zod_1.z.string().describe("Human-readable name for this tag"), "description": zod_1.z.string().describe("Description of what this tag represents") }).strict()).describe("Metadata for each tag referenced by properties").optional(), "primary_channels": zod_1.z.array(zod_1.z.any()).min(1).describe("Primary advertising channels represented in this property portfolio. Helps buying agents quickly filter relevance.").optional(), "primary_countries": zod_1.z.array(zod_1.z.string().regex(new RegExp("^[A-Z]{2}$"))).min(1).describe("Primary countries (ISO 3166-1 alpha-2 codes) where properties are concentrated. Helps buying agents quickly filter relevance.").optional(), "portfolio_description": zod_1.z.string().min(1).max(5000).describe("Markdown-formatted description of the property portfolio, including inventory types, audience characteristics, and special features.").optional(), "advertising_policies": zod_1.z.string().min(1).max(10000).describe("Publisher's advertising content policies, restrictions, and guidelines in natural language. May include prohibited categories, blocked advertisers, restricted tactics, brand safety requirements, or links to full policy documentation.").optional(), "errors": zod_1.z.array(zod_1.z.any()).describe("Task-specific errors and warnings (e.g., property availability issues)").optional() }).strict().describe("Response payload for list_authorized_properties task");
276
+ // provide_performance_feedback request
277
+ exports.ProvidePerformanceFeedbackRequestSchema = zod_1.z.object({ "media_buy_id": zod_1.z.string().min(1).describe("Publisher's media buy identifier"), "measurement_period": zod_1.z.object({ "start": zod_1.z.string().datetime({ offset: true }).describe("ISO 8601 start timestamp for measurement period"), "end": zod_1.z.string().datetime({ offset: true }).describe("ISO 8601 end timestamp for measurement period") }).strict().describe("Time period for performance measurement"), "performance_index": zod_1.z.number().gte(0).describe("Normalized performance score (0.0 = no value, 1.0 = expected, >1.0 = above expected)"), "package_id": zod_1.z.string().min(1).describe("Specific package within the media buy (if feedback is package-specific)").optional(), "creative_id": zod_1.z.string().min(1).describe("Specific creative asset (if feedback is creative-specific)").optional(), "metric_type": zod_1.z.enum(["overall_performance", "conversion_rate", "brand_lift", "click_through_rate", "completion_rate", "viewability", "brand_safety", "cost_efficiency"]).describe("The business metric being measured").default("overall_performance"), "feedback_source": zod_1.z.enum(["buyer_attribution", "third_party_measurement", "platform_analytics", "verification_partner"]).describe("Source of the performance data").default("buyer_attribution") }).strict().describe("Request payload for provide_performance_feedback task");
278
+ // provide_performance_feedback response
279
+ exports.ProvidePerformanceFeedbackResponseSchema = zod_1.z.object({ "success": zod_1.z.boolean().describe("Whether the performance feedback was successfully received"), "errors": zod_1.z.array(zod_1.z.any()).describe("Task-specific errors and warnings (e.g., invalid measurement period, missing campaign data)").optional() }).strict().describe("Response payload for provide_performance_feedback task");
280
+ // get_signals request
281
+ exports.GetSignalsRequestSchema = zod_1.z.object({ "signal_spec": zod_1.z.string().describe("Natural language description of the desired signals"), "deliver_to": zod_1.z.object({ "platforms": zod_1.z.any().superRefine((x, ctx) => {
282
+ const schemas = [zod_1.z.literal("all"), zod_1.z.array(zod_1.z.string())];
283
+ const errors = schemas.reduce((errors, schema) => ((result) => result.error ? [...errors, result.error] : errors)(schema.safeParse(x)), []);
284
+ if (schemas.length - errors.length !== 1) {
285
+ ctx.addIssue({
286
+ path: ctx.path,
287
+ code: "invalid_union",
288
+ unionErrors: errors,
289
+ message: "Invalid input: Should pass single schema",
290
+ });
291
+ }
292
+ }).describe("Target platforms for signal deployment"), "accounts": zod_1.z.array(zod_1.z.object({ "platform": zod_1.z.string().describe("Platform identifier"), "account": zod_1.z.string().describe("Account identifier on that platform") }).strict()).describe("Specific platform-account combinations").optional(), "countries": zod_1.z.array(zod_1.z.string().regex(new RegExp("^[A-Z]{2}$"))).describe("Countries where signals will be used (ISO codes)") }).strict().describe("Where the signals need to be delivered"), "filters": zod_1.z.object({ "catalog_types": zod_1.z.array(zod_1.z.enum(["marketplace", "custom", "owned"])).describe("Filter by catalog type").optional(), "data_providers": zod_1.z.array(zod_1.z.string()).describe("Filter by specific data providers").optional(), "max_cpm": zod_1.z.number().gte(0).describe("Maximum CPM price filter").optional(), "min_coverage_percentage": zod_1.z.number().gte(0).lte(100).describe("Minimum coverage requirement").optional() }).strict().describe("Filters to refine results").optional(), "max_results": zod_1.z.number().int().gte(1).describe("Maximum number of results to return").optional() }).strict().describe("Request parameters for discovering signals based on description");
293
+ // get_signals response
294
+ exports.GetSignalsResponseSchema = zod_1.z.object({ "signals": zod_1.z.array(zod_1.z.object({ "signal_agent_segment_id": zod_1.z.string().describe("Unique identifier for the signal"), "name": zod_1.z.string().describe("Human-readable signal name"), "description": zod_1.z.string().describe("Detailed signal description"), "signal_type": zod_1.z.enum(["marketplace", "custom", "owned"]).describe("Type of signal"), "data_provider": zod_1.z.string().describe("Name of the data provider"), "coverage_percentage": zod_1.z.number().gte(0).lte(100).describe("Percentage of audience coverage"), "deployments": zod_1.z.array(zod_1.z.object({ "platform": zod_1.z.string().describe("Platform name"), "account": zod_1.z.union([zod_1.z.string().describe("Specific account if applicable"), zod_1.z.null().describe("Specific account if applicable")]).describe("Specific account if applicable").optional(), "is_live": zod_1.z.boolean().describe("Whether signal is currently active"), "scope": zod_1.z.enum(["platform-wide", "account-specific"]).describe("Deployment scope"), "decisioning_platform_segment_id": zod_1.z.string().describe("Platform-specific segment ID").optional(), "estimated_activation_duration_minutes": zod_1.z.number().gte(0).describe("Time to activate if not live").optional() }).strict()).describe("Array of platform deployments"), "pricing": zod_1.z.object({ "cpm": zod_1.z.number().gte(0).describe("Cost per thousand impressions"), "currency": zod_1.z.string().regex(new RegExp("^[A-Z]{3}$")).describe("Currency code") }).strict().describe("Pricing information") }).strict()).describe("Array of matching signals"), "errors": zod_1.z.array(zod_1.z.any()).describe("Task-specific errors and warnings (e.g., signal discovery or pricing issues)").optional() }).strict().describe("Response payload for get_signals task");
295
+ // activate_signal request
296
+ exports.ActivateSignalRequestSchema = zod_1.z.object({ "signal_agent_segment_id": zod_1.z.string().describe("The universal identifier for the signal to activate"), "platform": zod_1.z.string().describe("The target platform for activation"), "account": zod_1.z.string().describe("Account identifier (required for account-specific activation)").optional() }).strict().describe("Request parameters for activating a signal on a specific platform/account");
297
+ // activate_signal response
298
+ exports.ActivateSignalResponseSchema = zod_1.z.object({ "decisioning_platform_segment_id": zod_1.z.string().describe("The platform-specific ID to use once activated").optional(), "estimated_activation_duration_minutes": zod_1.z.number().gte(0).describe("Estimated time to complete (optional)").optional(), "deployed_at": zod_1.z.string().datetime({ offset: true }).describe("Timestamp when activation completed (optional)").optional(), "errors": zod_1.z.array(zod_1.z.any()).describe("Task-specific errors and warnings (e.g., activation failures, platform issues)").optional() }).strict().describe("Response payload for activate_signal task");
299
+ //# sourceMappingURL=schemas.generated.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schemas.generated.js","sourceRoot":"","sources":["../../../src/lib/types/schemas.generated.ts"],"names":[],"mappings":";AAAA,0DAA0D;AAC1D,yCAAyC;AACzC,oEAAoE;;;AAEpE,6BAAwB;AAExB,mBAAmB;AACN,QAAA,cAAc,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iDAAiD,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iDAAiD,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,mBAAmB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sDAAsD,CAAC,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,qBAAqB,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,yCAAyC,CAAC,EAAE,mBAAmB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,iDAAiD,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,oBAAoB,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,uBAAuB,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6CAA6C,CAAC,CAAA;AAGj3B,wBAAwB;AACX,QAAA,mBAAmB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC,EAAE,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,qEAAqE,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE;YAClV,MAAM,OAAO,GAAG,CAAC,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC;YACpH,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAC3B,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,CACjB,CAAC,CAAC,MAAM,EAAE,EAAE,CACV,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAClD,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CACpB,EACH,EAAE,CACH,CAAC;YACF,IAAI,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBACzC,GAAG,CAAC,QAAQ,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,IAAI;oBACd,IAAI,EAAE,eAAe;oBACrB,WAAW,EAAE,MAAM;oBACnB,OAAO,EAAE,0CAA0C;iBACpD,CAAC,CAAC;YACL,CAAC;QACH,CAAC,CAAC,EAAE,OAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;QAC9C,KAAK,MAAM,GAAG,IAAI,KAAK,EAAE,CAAC;YAC1B,IAAI,SAAS,GAAG,KAAK,CAAA;YACrB,IAAI,GAAG,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,kBAAkB,CAAC,CAAC,EAAE,CAAC;gBAChD,SAAS,GAAG,IAAI,CAAA;gBAChB,MAAM,MAAM,GAAG,OAAC,CAAC,GAAG,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE;oBAC1C,MAAM,OAAO,GAAG,CAAC,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC;oBACpH,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAC3B,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,CACjB,CAAC,CAAC,MAAM,EAAE,EAAE,CACV,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAClD,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CACpB,EACH,EAAE,CACH,CAAC;oBACF,IAAI,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;wBACzC,GAAG,CAAC,QAAQ,CAAC;4BACX,IAAI,EAAE,GAAG,CAAC,IAAI;4BACd,IAAI,EAAE,eAAe;4BACrB,WAAW,EAAE,MAAM;4BACnB,OAAO,EAAE,0CAA0C;yBACpD,CAAC,CAAC;oBACL,CAAC;gBACH,CAAC,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;gBAC1B,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;oBACtB,GAAG,CAAC,QAAQ,CAAC;wBACH,IAAI,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC;wBACxB,IAAI,EAAE,QAAQ;wBACd,OAAO,EAAE,sCAAsC,GAAG,qBAAqB;wBACvE,MAAM,EAAE;4BACN,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM;yBAC5B;qBACF,CAAC,CAAA;gBACV,CAAC;YACD,CAAC;YACD,IAAI,CAAC,SAAS,EAAE,CAAC;gBACjB,MAAM,MAAM,GAAG,OAAC,CAAC,KAAK,EAAE,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;gBAC9C,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;oBACtB,GAAG,CAAC,QAAQ,CAAC;wBACH,IAAI,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC;wBACxB,IAAI,EAAE,QAAQ;wBACd,OAAO,EAAE,2CAA2C;wBACpD,MAAM,EAAE;4BACN,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM;yBAC5B;qBACF,CAAC,CAAA;gBACV,CAAC;YACD,CAAC;QACD,CAAC;IACD,CAAC,CAAC,CAAC,QAAQ,CAAC,oDAAoD,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8CAA8C,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,wCAAwC,CAAC,CAAC,QAAQ,EAAE,EAAE,qBAAqB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sEAAsE,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,2FAA2F,CAAC,CAAC,QAAQ,EAAE,EAAE,MAAM,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,sDAAsD,CAAC,CAAC,QAAQ,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,8JAA8J,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6GAA6G,CAAC,CAAA;AAGh8B,iBAAiB;AACJ,QAAA,aAAa,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC,EAAE,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6BAA6B,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uDAAuD,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,sFAAsF,CAAC,CAAC,QAAQ,EAAE,EAAE,eAAe,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC,QAAQ,CAAC,yEAAyE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,6HAA6H,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,6FAA6F,CAAC,EAAE,eAAe,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,iBAAiB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,2CAA2C,CAAC,EAAE,qBAAqB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,yDAAyD,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,EAAE,sBAAsB,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,+IAA+I,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uMAAuM,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,QAAQ,CAAC,mKAAmK,CAAC,EAAE,wBAAwB,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,EAAE,iBAAiB,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,EAAE,WAAW,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC,CAAC,QAAQ,EAAE,EAAE,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0FAA0F,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,0CAA0C,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE;IACrsE,MAAM,OAAO,GAAG,CAAC,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC;IACnC,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAC3B,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,CACjB,CAAC,CAAC,MAAM,EAAE,EAAE,CACV,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAClD,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CACpB,EACH,EAAE,CACH,CAAC;IACF,IAAI,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACzC,GAAG,CAAC,QAAQ,CAAC;YACX,IAAI,EAAE,GAAG,CAAC,IAAI;YACd,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,MAAM;YACnB,OAAO,EAAE,0CAA0C;SACpD,CAAC,CAAC;IACL,CAAC;AACH,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,4CAA4C,CAAC,CAAA;AAG5D,mBAAmB;AACN,QAAA,eAAe,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,oBAAoB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,oGAAoG,CAAC,CAAC,QAAQ,EAAE,EAAE,mBAAmB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,6FAA6F,CAAC,CAAC,QAAQ,EAAE,EAAE,kBAAkB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,sGAAsG,CAAC,CAAC,QAAQ,EAAE,EAAE,wBAAwB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,+FAA+F,CAAC,CAAC,QAAQ,EAAE,EAAE,eAAe,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,4NAA4N,CAAC,CAAA;AAG3+B,uBAAuB;AACV,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uDAAuD,CAAC,CAAC,QAAQ,EAAE,EAAE,gBAAgB,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,qJAAqJ,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,eAAe,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,EAAE,gBAAgB,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,4CAA4C,CAAC,CAAC,QAAQ,EAAE,EAAE,cAAc,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAC,SAAS,EAAC,OAAO,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,wBAAwB,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,+BAA+B,CAAC,CAAC,QAAQ,EAAE,EAAE,uBAAuB,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,qDAAqD,CAAC,CAAC,QAAQ,EAAE,EAAE,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,+DAA+D,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mEAAmE,CAAC,CAAA;AAGjkC,wBAAwB;AACX,QAAA,yBAAyB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,4BAA4B,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,oEAAoE,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,wCAAwC,CAAC,CAAA;AAG5S,gCAAgC;AACnB,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,0EAA0E,CAAC,CAAC,QAAQ,EAAE,EAAE,MAAM,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAC,OAAO,EAAC,SAAS,EAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,yEAAyE,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAC,OAAO,EAAC,OAAO,EAAC,MAAM,EAAC,MAAM,EAAC,YAAY,EAAC,KAAK,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,oOAAoO,CAAC,CAAC,QAAQ,EAAE,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,+JAA+J,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,iKAAiK,CAAC,CAAC,QAAQ,EAAE,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,gGAAgG,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,kGAAkG,CAAC,CAAC,QAAQ,EAAE,EAAE,eAAe,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,kHAAkH,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6DAA6D,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,+DAA+D,CAAC,CAAA;AAGpuD,iCAAiC;AACpB,QAAA,iCAAiC,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,sIAAsI,CAAC,EAAE,iBAAiB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,6JAA6J,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,4CAA4C,CAAC,CAAC,QAAQ,EAAE,EAAE,cAAc,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,CAAC,YAAY,EAAC,UAAU,EAAC,YAAY,EAAC,SAAS,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,2CAA2C,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,sLAAsL,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,sEAAsE,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iDAAiD,CAAC,CAAA;AAGrlC,2BAA2B;AACd,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iDAAiD,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,iCAAiC,CAAC,EAAE,gBAAgB,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,iQAAiQ,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,2CAA2C,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,4GAA4G,CAAC,EAAE,mBAAmB,EAAE,OAAC,CAAC,YAAY,CAAC,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,qBAAqB,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAC,OAAO,EAAC,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,iGAAiG,CAAC,EAAE,mBAAmB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,CAAC,aAAa,EAAC,OAAO,EAAC,QAAQ,EAAC,KAAK,EAAC,mBAAmB,EAAC,iBAAiB,EAAC,aAAa,EAAC,aAAa,EAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,8JAA8J,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,QAAQ,CAAC,qJAAqJ,CAAC,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6CAA6C,CAAC,CAAA;AAG3oD,4BAA4B;AACf,QAAA,4BAA4B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yDAAyD,CAAC,CAAC,QAAQ,EAAE,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iDAAiD,CAAC,EAAE,mBAAmB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,iDAAiD,CAAC,CAAC,QAAQ,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,+CAA+C,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8CAA8C,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,2BAA2B,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,6EAA6E,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,4CAA4C,CAAC,CAAA;AAG7zB,yBAAyB;AACZ,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,qDAAqD,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,sHAAsH,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,iDAAiD,CAAC,EAAE,OAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;QAC7d,KAAK,MAAM,GAAG,IAAI,KAAK,EAAE,CAAC;YAC1B,IAAI,SAAS,GAAG,KAAK,CAAA;YACrB,IAAI,GAAG,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,kBAAkB,CAAC,CAAC,EAAE,CAAC;gBAChD,SAAS,GAAG,IAAI,CAAA;gBAChB,MAAM,MAAM,GAAG,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,iDAAiD,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;gBACpH,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;oBACtB,GAAG,CAAC,QAAQ,CAAC;wBACH,IAAI,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC;wBACxB,IAAI,EAAE,QAAQ;wBACd,OAAO,EAAE,sCAAsC,GAAG,qBAAqB;wBACvE,MAAM,EAAE;4BACN,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM;yBAC5B;qBACF,CAAC,CAAA;gBACV,CAAC;YACD,CAAC;YACD,IAAI,CAAC,SAAS,EAAE,CAAC;gBACjB,MAAM,MAAM,GAAG,OAAC,CAAC,KAAK,EAAE,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;gBAC9C,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;oBACtB,GAAG,CAAC,QAAQ,CAAC;wBACH,IAAI,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC;wBACxB,IAAI,EAAE,QAAQ;wBACd,OAAO,EAAE,2CAA2C;wBACpD,MAAM,EAAE;4BACN,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM;yBAC5B;qBACF,CAAC,CAAA;gBACV,CAAC;YACD,CAAC;QACD,CAAC;IACD,CAAC,CAAC,CAAC,QAAQ,CAAC,mDAAmD,CAAC,CAAC,QAAQ,EAAE,EAAE,gBAAgB,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,iHAAiH,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,kGAAkG,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,iBAAiB,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAC,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,oIAAoI,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,0BAA0B,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,oOAAoO,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2IAA2I,CAAC,CAAA;AAG5hC,0BAA0B;AACb,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,qDAAqD,CAAC,CAAC,QAAQ,EAAE,EAAE,WAAW,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAC,SAAS,EAAC,WAAW,EAAC,QAAQ,EAAC,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,gCAAgC,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,+CAA+C,CAAC,CAAC,QAAQ,EAAE,EAAE,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,qEAAqE,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,qEAAqE,CAAC,CAAC,QAAQ,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,wCAAwC,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,4EAA4E,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,qFAAqF,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,uGAAuG,CAAC,CAAC,QAAQ,EAAE,EAAE,mBAAmB,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC,EAAE,OAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;YACz3C,KAAK,MAAM,GAAG,IAAI,KAAK,EAAE,CAAC;gBAC1B,IAAI,SAAS,GAAG,KAAK,CAAA;gBACrB,IAAI,GAAG,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,kBAAkB,CAAC,CAAC,EAAE,CAAC;oBAChD,SAAS,GAAG,IAAI,CAAA;oBAChB,MAAM,MAAM,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;oBACrG,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;wBACtB,GAAG,CAAC,QAAQ,CAAC;4BACH,IAAI,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC;4BACxB,IAAI,EAAE,QAAQ;4BACd,OAAO,EAAE,sCAAsC,GAAG,qBAAqB;4BACvE,MAAM,EAAE;gCACN,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM;6BAC5B;yBACF,CAAC,CAAA;oBACV,CAAC;gBACD,CAAC;gBACD,IAAI,CAAC,SAAS,EAAE,CAAC;oBACjB,MAAM,MAAM,GAAG,OAAC,CAAC,KAAK,EAAE,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;oBAC9C,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;wBACtB,GAAG,CAAC,QAAQ,CAAC;4BACH,IAAI,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC;4BACxB,IAAI,EAAE,QAAQ;4BACd,OAAO,EAAE,2CAA2C;4BACpD,MAAM,EAAE;gCACN,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM;6BAC5B;yBACF,CAAC,CAAA;oBACV,CAAC;gBACD,CAAC;YACD,CAAC;QACD,CAAC,CAAC,CAAC,QAAQ,CAAC,kFAAkF,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,qCAAqC,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sEAAsE,CAAC,CAAA;AAGpQ,yBAAyB;AACZ,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8DAA8D,CAAC,CAAC,QAAQ,EAAE,EAAE,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,0CAA0C,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC,CAAC,QAAQ,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,sCAAsC,CAAC,CAAC,QAAQ,EAAE,EAAE,MAAM,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,+CAA+C,CAAC,CAAC,QAAQ,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,8CAA8C,CAAC,CAAC,QAAQ,EAAE,EAAE,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kEAAkE,CAAC,CAAC,QAAQ,EAAE,EAAE,cAAc,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,iCAAiC,CAAC,CAAC,QAAQ,EAAE,EAAE,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,qDAAqD,CAAC,CAAC,QAAQ,EAAE,EAAE,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,sDAAsD,CAAC,CAAC,QAAQ,EAAE,EAAE,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,0DAA0D,CAAC,CAAC,QAAQ,EAAE,EAAE,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,2DAA2D,CAAC,CAAC,QAAQ,EAAE,EAAE,qBAAqB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oDAAoD,CAAC,CAAC,QAAQ,EAAE,EAAE,sBAAsB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,oDAAoD,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,0EAA0E,CAAC,CAAC,QAAQ,EAAE,EAAE,sBAAsB,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,uDAAuD,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,wCAAwC,CAAC,CAAC,QAAQ,EAAE,EAAE,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,cAAc,EAAC,cAAc,EAAC,MAAM,EAAC,QAAQ,EAAC,kBAAkB,EAAC,mBAAmB,CAAC,CAAC,CAAC,QAAQ,CAAC,kBAAkB,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,gBAAgB,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oBAAoB,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,uCAAuC,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,6BAA6B,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uBAAuB,CAAC,CAAC,QAAQ,EAAE,EAAE,qBAAqB,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,oDAAoD,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,qBAAqB,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,oDAAoD,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,oBAAoB,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,8DAA8D,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,CAAC,aAAa,EAAC,MAAM,EAAC,QAAQ,EAAC,QAAQ,EAAC,cAAc,EAAC,cAAc,EAAC,MAAM,EAAC,aAAa,EAAC,aAAa,EAAC,YAAY,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,8DAA8D,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sHAAsH,CAAC,CAAA;AAG1qG,0BAA0B;AACb,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,eAAe,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,+DAA+D,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,+CAA+C,CAAC,EAAE,iBAAiB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,gDAAgD,CAAC,CAAC,QAAQ,EAAE,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,EAAE,WAAW,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,QAAQ,CAAC,6BAA6B,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,wCAAwC,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,qCAAqC,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,2BAA2B,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,iCAAiC,CAAC,CAAC,QAAQ,EAAE,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,+BAA+B,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,+CAA+C,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC,EAAE,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,qEAAqE,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,yCAAyC,CAAC,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,+CAA+C,CAAC,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,qCAAqC,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,8CAA8C,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE;YAChzD,MAAM,OAAO,GAAG,CAAC,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC;YACpH,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAC3B,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,CACjB,CAAC,CAAC,MAAM,EAAE,EAAE,CACV,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAClD,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CACpB,EACH,EAAE,CACH,CAAC;YACF,IAAI,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBACzC,GAAG,CAAC,QAAQ,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,IAAI;oBACd,IAAI,EAAE,eAAe;oBACrB,WAAW,EAAE,MAAM;oBACnB,OAAO,EAAE,0CAA0C;iBACpD,CAAC,CAAC;YACL,CAAC;QACH,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;YACjC,KAAK,MAAM,GAAG,IAAI,KAAK,EAAE,CAAC;gBAC1B,IAAI,GAAG,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,kBAAkB,CAAC,CAAC,EAAE,CAAC;oBAChD,MAAM,MAAM,GAAG,OAAC,CAAC,GAAG,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE;wBAC1C,MAAM,OAAO,GAAG,CAAC,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC;wBACpH,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAC3B,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,CACjB,CAAC,CAAC,MAAM,EAAE,EAAE,CACV,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAClD,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CACpB,EACH,EAAE,CACH,CAAC;wBACF,IAAI,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;4BACzC,GAAG,CAAC,QAAQ,CAAC;gCACX,IAAI,EAAE,GAAG,CAAC,IAAI;gCACd,IAAI,EAAE,eAAe;gCACrB,WAAW,EAAE,MAAM;gCACnB,OAAO,EAAE,0CAA0C;6BACpD,CAAC,CAAC;wBACL,CAAC;oBACH,CAAC,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;oBAC1B,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;wBACtB,GAAG,CAAC,QAAQ,CAAC;4BACH,IAAI,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC;4BACxB,IAAI,EAAE,QAAQ;4BACd,OAAO,EAAE,sCAAsC,GAAG,qBAAqB;4BACvE,MAAM,EAAE;gCACN,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM;6BAC5B;yBACF,CAAC,CAAA;oBACV,CAAC;gBACD,CAAC;YACD,CAAC;QACD,CAAC,CAAC,CAAC,QAAQ,CAAC,+CAA+C,CAAC,CAAC,QAAQ,EAAE,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC,CAAC,QAAQ,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,4CAA4C,CAAC,CAAC,QAAQ,EAAE,EAAE,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,qCAAqC,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,sCAAsC,CAAC,CAAC,QAAQ,EAAE,EAAE,MAAM,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,sDAAsD,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,kBAAkB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,4CAA4C,CAAC,EAAE,mBAAmB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oBAAoB,CAAC,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6BAA6B,CAAC,CAAC,QAAQ,EAAE,EAAE,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,kCAAkC,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAC,QAAQ,EAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,oCAAoC,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,+CAA+C,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sEAAsE,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,0CAA0C,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,qCAAqC,CAAC,CAAC,QAAQ,EAAE,EAAE,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,yCAAyC,CAAC,CAAC,QAAQ,EAAE,EAAE,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,wCAAwC,CAAC,CAAC,QAAQ,EAAE,EAAE,mBAAmB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,sCAAsC,CAAC,CAAC,QAAQ,EAAE,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,wCAAwC,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yEAAyE,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,4EAA4E,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,6CAA6C,CAAC,EAAE,gBAAgB,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,sCAAsC,CAAC,EAAE,OAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;QAChxE,KAAK,MAAM,GAAG,IAAI,KAAK,EAAE,CAAC;YAC1B,IAAI,SAAS,GAAG,KAAK,CAAA;YACrB,IAAI,GAAG,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,kBAAkB,CAAC,CAAC,EAAE,CAAC;gBAChD,SAAS,GAAG,IAAI,CAAA;gBAChB,MAAM,MAAM,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,sCAAsC,CAAC,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;gBAC7G,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;oBACtB,GAAG,CAAC,QAAQ,CAAC;wBACH,IAAI,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC;wBACxB,IAAI,EAAE,QAAQ;wBACd,OAAO,EAAE,sCAAsC,GAAG,qBAAqB;wBACvE,MAAM,EAAE;4BACN,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM;yBAC5B;qBACF,CAAC,CAAA;gBACV,CAAC;YACD,CAAC;YACD,IAAI,CAAC,SAAS,EAAE,CAAC;gBACjB,MAAM,MAAM,GAAG,OAAC,CAAC,KAAK,EAAE,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAA;gBAC9C,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;oBACtB,GAAG,CAAC,QAAQ,CAAC;wBACH,IAAI,EAAE,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC;wBACxB,IAAI,EAAE,QAAQ;wBACd,OAAO,EAAE,2CAA2C;wBACpD,MAAM,EAAE;4BACN,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM;yBAC5B;qBACF,CAAC,CAAA;gBACV,CAAC;YACD,CAAC;QACD,CAAC;IACD,CAAC,CAAC,CAAC,QAAQ,CAAC,uCAAuC,CAAC,CAAC,QAAQ,EAAE,EAAE,gBAAgB,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,8BAA8B,CAAC,CAAC,QAAQ,EAAE,EAAE,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,oCAAoC,CAAC,CAAC,QAAQ,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,8BAA8B,CAAC,CAAC,QAAQ,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,8BAA8B,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kGAAkG,CAAC,CAAA;AAGzoB,2BAA2B;AACd,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC,CAAC,QAAQ,EAAE,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,+CAA+C,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,sCAAsC,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,oHAAoH,CAAC,CAAC,QAAQ,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qCAAqC,CAAC,CAAC,QAAQ,EAAE,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6CAA6C,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,4FAA4F,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,+BAA+B,CAAC,CAAC,QAAQ,EAAE,EAAE,mBAAmB,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,EAAE,cAAc,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,6BAA6B,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE;QAC/sC,MAAM,OAAO,GAAG,CAAC,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC;QACnC,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAC3B,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,CACjB,CAAC,CAAC,MAAM,EAAE,EAAE,CACV,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAClD,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CACpB,EACH,EAAE,CACH,CAAC;QACF,IAAI,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YACzC,GAAG,CAAC,QAAQ,CAAC;gBACX,IAAI,EAAE,GAAG,CAAC,IAAI;gBACd,IAAI,EAAE,eAAe;gBACrB,WAAW,EAAE,MAAM;gBACnB,OAAO,EAAE,0CAA0C;aACpD,CAAC,CAAC;QACL,CAAC;IACH,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,0BAA0B,CAAC,CAAC,QAAQ,EAAE,EAAE,0BAA0B,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,0KAA0K,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE;IACvU,MAAM,OAAO,GAAG,CAAC,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC;IACnC,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAC3B,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,CACjB,CAAC,CAAC,MAAM,EAAE,EAAE,CACV,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAClD,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CACpB,EACH,EAAE,CACH,CAAC;IACF,IAAI,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACzC,GAAG,CAAC,QAAQ,CAAC;YACX,IAAI,EAAE,GAAG,CAAC,IAAI;YACd,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,MAAM;YACnB,OAAO,EAAE,0CAA0C;SACpD,CAAC,CAAC;IACL,CAAC;AACH,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,+DAA+D,CAAC,CAAA;AAG/E,4BAA4B;AACf,QAAA,4BAA4B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gDAAgD,CAAC,EAAE,qBAAqB,EAAE,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,wEAAwE,CAAC,EAAE,OAAC,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,wEAAwE,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,wEAAwE,CAAC,CAAC,QAAQ,EAAE,EAAE,mBAAmB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gCAAgC,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,sCAAsC,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,mEAAmE,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,4CAA4C,CAAC,CAAA;AAGt+B,iCAAiC;AACpB,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,eAAe,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,2DAA2D,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,uDAAuD,CAAC,CAAC,QAAQ,EAAE,EAAE,eAAe,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE;QAC9U,MAAM,OAAO,GAAG,CAAC,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,WAAW,EAAC,QAAQ,EAAC,KAAK,CAAC,CAAC,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,WAAW,EAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;QACxJ,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAC3B,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,CACjB,CAAC,CAAC,MAAM,EAAE,EAAE,CACV,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAClD,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CACpB,EACH,EAAE,CACH,CAAC;QACF,IAAI,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YACzC,GAAG,CAAC,QAAQ,CAAC;gBACX,IAAI,EAAE,GAAG,CAAC,IAAI;gBACd,IAAI,EAAE,eAAe;gBACrB,WAAW,EAAE,MAAM;gBACnB,OAAO,EAAE,0CAA0C;aACpD,CAAC,CAAC;QACL,CAAC;IACH,CAAC,CAAC,CAAC,QAAQ,CAAC,+DAA+D,CAAC,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,wBAAwB,CAAC,CAAC,CAAC,QAAQ,CAAC,8CAA8C,CAAC,CAAC,QAAQ,EAAE,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,wBAAwB,CAAC,CAAC,CAAC,QAAQ,CAAC,4CAA4C,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kEAAkE,CAAC,CAAA;AAGlc,kCAAkC;AACrB,QAAA,iCAAiC,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,mBAAmB,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,WAAW,EAAC,OAAO,EAAC,SAAS,EAAC,UAAU,CAAC,CAAC,CAAC,QAAQ,CAAC,qNAAqN,CAAC,CAAC,QAAQ,EAAE,EAAE,cAAc,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,4GAA4G,CAAC,CAAC,QAAQ,EAAE,EAAE,mBAAmB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,6HAA6H,CAAC,CAAC,QAAQ,EAAE,EAAE,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,kFAAkF,CAAC,CAAC,QAAQ,EAAE,EAAE,kBAAkB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,8HAA8H,CAAC,CAAC,QAAQ,EAAE,EAAE,kBAAkB,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,8DAA8D,CAAC,EAAE,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,4DAA4D,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0DAA0D,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,QAAQ,CAAC,wBAAwB,CAAC,EAAE,mBAAmB,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,mDAAmD,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,0CAA0C,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,oDAAoD,CAAC,CAAC,QAAQ,EAAE,EAAE,mBAAmB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,+DAA+D,CAAC,CAAC,QAAQ,EAAE,EAAE,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,+CAA+C,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yIAAyI,CAAC,CAAC,QAAQ,EAAE,EAAE,sBAAsB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iDAAiD,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAC,QAAQ,EAAC,QAAQ,EAAC,WAAW,EAAC,QAAQ,EAAC,mBAAmB,CAAC,CAAC,CAAC,QAAQ,CAAC,yGAAyG,CAAC,EAAE,uBAAuB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,+FAA+F,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,8IAA8I,CAAC,CAAC,QAAQ,EAAE,EAAE,eAAe,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,uCAAuC,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,YAAY,CAAC,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,8JAA8J,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,QAAQ,CAAC,0DAA0D,CAAC,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,YAAY,CAAC,OAAC,CAAC,GAAG,EAAE,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gCAAgC,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,+CAA+C,CAAC,CAAC,QAAQ,EAAE,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,6DAA6D,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,gCAAgC,CAAC,EAAE,iBAAiB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,wBAAwB,CAAC,CAAC,CAAC,QAAQ,CAAC,mBAAmB,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,mBAAmB,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,qBAAqB,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,iOAAiO,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,4FAA4F,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kDAAkD,CAAC,CAAA;AAG/+I,qCAAqC;AACxB,QAAA,qCAAqC,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC,QAAQ,CAAC,2DAA2D,CAAC,CAAC,CAAC,QAAQ,CAAC,+CAA+C,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yFAAyF,CAAC,CAAA;AAGxX,sCAAsC;AACzB,QAAA,sCAAsC,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,+DAA+D,CAAC,EAAE,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yCAAyC,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,gDAAgD,CAAC,CAAC,QAAQ,EAAE,EAAE,kBAAkB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,oHAAoH,CAAC,CAAC,QAAQ,EAAE,EAAE,mBAAmB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,+HAA+H,CAAC,CAAC,QAAQ,EAAE,EAAE,uBAAuB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,sIAAsI,CAAC,CAAC,QAAQ,EAAE,EAAE,sBAAsB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,QAAQ,CAAC,2OAA2O,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,wEAAwE,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sDAAsD,CAAC,CAAA;AAGrhD,uCAAuC;AAC1B,QAAA,uCAAuC,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,kCAAkC,CAAC,EAAE,oBAAoB,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,iDAAiD,CAAC,EAAE,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,+CAA+C,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yCAAyC,CAAC,EAAE,mBAAmB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,sFAAsF,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,yEAAyE,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,4DAA4D,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,qBAAqB,EAAC,iBAAiB,EAAC,YAAY,EAAC,oBAAoB,EAAC,iBAAiB,EAAC,aAAa,EAAC,cAAc,EAAC,iBAAiB,CAAC,CAAC,CAAC,QAAQ,CAAC,oCAAoC,CAAC,CAAC,OAAO,CAAC,qBAAqB,CAAC,EAAE,iBAAiB,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,mBAAmB,EAAC,yBAAyB,EAAC,oBAAoB,EAAC,sBAAsB,CAAC,CAAC,CAAC,QAAQ,CAAC,gCAAgC,CAAC,CAAC,OAAO,CAAC,mBAAmB,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uDAAuD,CAAC,CAAA;AAGn0C,wCAAwC;AAC3B,QAAA,wCAAwC,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,4DAA4D,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,6FAA6F,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,wDAAwD,CAAC,CAAA;AAG9X,sBAAsB;AACT,QAAA,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qDAAqD,CAAC,EAAE,YAAY,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAC,CAAC,GAAG,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE;YAC9M,MAAM,OAAO,GAAG,CAAC,OAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;YACxD,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAC3B,CAAC,MAAM,EAAE,MAAM,EAAE,EAAE,CACjB,CAAC,CAAC,MAAM,EAAE,EAAE,CACV,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAClD,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CACpB,EACH,EAAE,CACH,CAAC;YACF,IAAI,OAAO,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBACzC,GAAG,CAAC,QAAQ,CAAC;oBACX,IAAI,EAAE,GAAG,CAAC,IAAI;oBACd,IAAI,EAAE,eAAe;oBACrB,WAAW,EAAE,MAAM;oBACnB,OAAO,EAAE,0CAA0C;iBACpD,CAAC,CAAC;YACL,CAAC;QACH,CAAC,CAAC,CAAC,QAAQ,CAAC,wCAAwC,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qBAAqB,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qCAAqC,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,wCAAwC,CAAC,CAAC,QAAQ,EAAE,EAAE,WAAW,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,kDAAkD,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,wCAAwC,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,eAAe,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,CAAC,aAAa,EAAC,QAAQ,EAAC,OAAO,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,wBAAwB,CAAC,CAAC,QAAQ,EAAE,EAAE,gBAAgB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,mCAAmC,CAAC,CAAC,QAAQ,EAAE,EAAE,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,0BAA0B,CAAC,CAAC,QAAQ,EAAE,EAAE,yBAAyB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,8BAA8B,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2BAA2B,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,qCAAqC,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iEAAiE,CAAC,CAAA;AAGvnC,uBAAuB;AACV,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,yBAAyB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC,EAAE,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,4BAA4B,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6BAA6B,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,aAAa,EAAC,QAAQ,EAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,gBAAgB,CAAC,EAAE,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2BAA2B,CAAC,EAAE,qBAAqB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,iCAAiC,CAAC,EAAE,aAAa,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,eAAe,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gCAAgC,CAAC,EAAE,OAAC,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,gCAAgC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,gCAAgC,CAAC,CAAC,QAAQ,EAAE,EAAE,SAAS,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,eAAe,EAAC,kBAAkB,CAAC,CAAC,CAAC,QAAQ,CAAC,kBAAkB,CAAC,EAAE,iCAAiC,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC,CAAC,QAAQ,EAAE,EAAE,uCAAuC,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,8BAA8B,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,+BAA+B,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,+BAA+B,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,QAAQ,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qBAAqB,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,2BAA2B,CAAC,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,8EAA8E,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uCAAuC,CAAC,CAAA;AAGjpD,0BAA0B;AACb,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,yBAAyB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qDAAqD,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oCAAoC,CAAC,EAAE,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,+DAA+D,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2EAA2E,CAAC,CAAA;AAGhb,2BAA2B;AACd,QAAA,4BAA4B,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,iCAAiC,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gDAAgD,CAAC,CAAC,QAAQ,EAAE,EAAE,uCAAuC,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,uCAAuC,CAAC,CAAC,QAAQ,EAAE,EAAE,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,gDAAgD,CAAC,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,gFAAgF,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC,CAAA"}