@databricks/sdk-uc-volumes 0.34.0 → 0.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,197 +1,199 @@
1
- import { z } from 'zod';
2
- export declare const SseEncryptionAlgorithm: {
3
- readonly SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED: "SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED";
4
- readonly AWS_SSE_S3: "AWS_SSE_S3";
5
- readonly AWS_SSE_KMS: "AWS_SSE_KMS";
1
+ import { z } from "zod";
2
+
3
+ //#region src/v1/model.d.ts
4
+ declare const SseEncryptionAlgorithm: {
5
+ readonly SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED: "SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED";
6
+ readonly AWS_SSE_S3: "AWS_SSE_S3";
7
+ readonly AWS_SSE_KMS: "AWS_SSE_KMS";
6
8
  };
7
- export type SseEncryptionAlgorithm = (typeof SseEncryptionAlgorithm)[keyof typeof SseEncryptionAlgorithm] | (string & {});
8
- export declare const VolumeType: {
9
- readonly MANAGED: "MANAGED";
10
- readonly EXTERNAL: "EXTERNAL";
9
+ type SseEncryptionAlgorithm = (typeof SseEncryptionAlgorithm)[keyof typeof SseEncryptionAlgorithm] | (string & {});
10
+ declare const VolumeType: {
11
+ readonly MANAGED: "MANAGED";
12
+ readonly EXTERNAL: "EXTERNAL";
11
13
  };
12
- export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType] | (string & {});
13
- export interface CreateVolumeRequest {
14
- /** The name of the volume */
15
- name?: string | undefined;
16
- /** The name of the catalog where the schema and the volume are */
17
- catalogName?: string | undefined;
18
- /** The name of the schema where the volume is */
19
- schemaName?: string | undefined;
20
- /**
21
- * The type of the volume. An external volume is located in the specified external location.
22
- * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.
23
- * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)
24
- */
25
- volumeType?: VolumeType | undefined;
26
- /** The storage location on the cloud */
27
- storageLocation?: string | undefined;
28
- /** The identifier of the user who owns the volume */
29
- owner?: string | undefined;
30
- /** The comment attached to the volume */
31
- comment?: string | undefined;
32
- /** The three-level (fully qualified) name of the volume */
33
- fullName?: string | undefined;
34
- /** The unique identifier of the volume */
35
- volumeId?: string | undefined;
36
- /** The unique identifier of the metastore */
37
- metastoreId?: string | undefined;
38
- createdAt?: bigint | undefined;
39
- /** The identifier of the user who created the volume */
40
- createdBy?: string | undefined;
41
- updatedAt?: bigint | undefined;
42
- /** The identifier of the user who updated the volume last time */
43
- updatedBy?: string | undefined;
44
- /** The AWS access point to use when accesing s3 for this external location. */
45
- accessPoint?: string | undefined;
46
- encryptionDetails?: EncryptionDetails | undefined;
47
- /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
48
- browseOnly?: boolean | undefined;
14
+ type VolumeType = (typeof VolumeType)[keyof typeof VolumeType] | (string & {});
15
+ interface CreateVolumeRequest {
16
+ /** The name of the volume */
17
+ name?: string | undefined;
18
+ /** The name of the catalog where the schema and the volume are */
19
+ catalogName?: string | undefined;
20
+ /** The name of the schema where the volume is */
21
+ schemaName?: string | undefined;
22
+ /**
23
+ * The type of the volume. An external volume is located in the specified external location.
24
+ * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.
25
+ * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)
26
+ */
27
+ volumeType?: VolumeType | undefined;
28
+ /** The storage location on the cloud */
29
+ storageLocation?: string | undefined;
30
+ /** The identifier of the user who owns the volume */
31
+ owner?: string | undefined;
32
+ /** The comment attached to the volume */
33
+ comment?: string | undefined;
34
+ /** The three-level (fully qualified) name of the volume */
35
+ fullName?: string | undefined;
36
+ /** The unique identifier of the volume */
37
+ volumeId?: string | undefined;
38
+ /** The unique identifier of the metastore */
39
+ metastoreId?: string | undefined;
40
+ createdAt?: bigint | undefined;
41
+ /** The identifier of the user who created the volume */
42
+ createdBy?: string | undefined;
43
+ updatedAt?: bigint | undefined;
44
+ /** The identifier of the user who updated the volume last time */
45
+ updatedBy?: string | undefined;
46
+ /** The AWS access point to use when accesing s3 for this external location. */
47
+ accessPoint?: string | undefined;
48
+ encryptionDetails?: EncryptionDetails | undefined;
49
+ /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
50
+ browseOnly?: boolean | undefined;
49
51
  }
50
- export interface DeleteVolumeRequest {
51
- /** The three-level (fully qualified) name of the volume */
52
- fullNameArg?: string | undefined;
53
- }
54
- export interface DeleteVolumeResponse {
52
+ interface DeleteVolumeRequest {
53
+ /** The three-level (fully qualified) name of the volume */
54
+ fullNameArg?: string | undefined;
55
55
  }
56
+ interface DeleteVolumeResponse {}
56
57
  /** Encryption options that apply to clients connecting to cloud storage. */
57
- export interface EncryptionDetails {
58
- encryptionDetailsType?: {
59
- $case: 'sseEncryptionDetails';
60
- /** Server-Side Encryption properties for clients communicating with AWS s3. */
61
- sseEncryptionDetails: SseEncryptionDetails;
62
- } | undefined;
58
+ interface EncryptionDetails {
59
+ encryptionDetailsType?: {
60
+ $case: 'sseEncryptionDetails'; /** Server-Side Encryption properties for clients communicating with AWS s3. */
61
+ sseEncryptionDetails: SseEncryptionDetails;
62
+ } | undefined;
63
63
  }
64
- export interface GetVolumeRequest {
65
- /** The three-level (fully qualified) name of the volume */
66
- fullNameArg?: string | undefined;
67
- /** Whether to include volumes in the response for which the principal can only access selective metadata for */
68
- includeBrowse?: boolean | undefined;
64
+ interface GetVolumeRequest {
65
+ /** The three-level (fully qualified) name of the volume */
66
+ fullNameArg?: string | undefined;
67
+ /** Whether to include volumes in the response for which the principal can only access selective metadata for */
68
+ includeBrowse?: boolean | undefined;
69
69
  }
70
- export interface ListVolumesRequest {
71
- /** The identifier of the catalog */
72
- catalogName?: string | undefined;
73
- /** The identifier of the schema */
74
- schemaName?: string | undefined;
75
- /** Whether to include volumes in the response for which the principal can only access selective metadata for */
76
- includeBrowse?: boolean | undefined;
77
- /**
78
- * Maximum number of volumes to return (page length).
79
- *
80
- * If not set, the page length is set to a server configured value (10000, as of 1/29/2024).
81
- * - when set to a value greater than 0, the page length is the minimum of this value and a server configured value (10000, as of 1/29/2024);
82
- * - when set to 0, the page length is set to a server configured value (10000, as of 1/29/2024) (recommended);
83
- * - when set to a value less than 0, an invalid parameter error is returned;
84
- *
85
- * Note: this parameter controls only the maximum number of volumes to return. The actual number of volumes returned in a page
86
- * may be smaller than this value, including 0, even if there are more pages.
87
- */
88
- maxResults?: number | undefined;
89
- /** Opaque token returned by a previous request. It must be included in the request to retrieve the next page of results (pagination). */
90
- pageToken?: string | undefined;
70
+ interface ListVolumesRequest {
71
+ /** The identifier of the catalog */
72
+ catalogName?: string | undefined;
73
+ /** The identifier of the schema */
74
+ schemaName?: string | undefined;
75
+ /** Whether to include volumes in the response for which the principal can only access selective metadata for */
76
+ includeBrowse?: boolean | undefined;
77
+ /**
78
+ * Maximum number of volumes to return (page length).
79
+ *
80
+ * If not set, the page length is set to a server configured value (10000, as of 1/29/2024).
81
+ * - when set to a value greater than 0, the page length is the minimum of this value and a server configured value (10000, as of 1/29/2024);
82
+ * - when set to 0, the page length is set to a server configured value (10000, as of 1/29/2024) (recommended);
83
+ * - when set to a value less than 0, an invalid parameter error is returned;
84
+ *
85
+ * Note: this parameter controls only the maximum number of volumes to return. The actual number of volumes returned in a page
86
+ * may be smaller than this value, including 0, even if there are more pages.
87
+ */
88
+ maxResults?: number | undefined;
89
+ /** Opaque token returned by a previous request. It must be included in the request to retrieve the next page of results (pagination). */
90
+ pageToken?: string | undefined;
91
91
  }
92
- export interface ListVolumesResponse {
93
- volumes?: VolumeInfo[] | undefined;
94
- /**
95
- * Opaque token to retrieve the next page of results. Absent if there are no more pages.
96
- * __page_token__ should be set to this value for the next request to retrieve the next page of results.
97
- */
98
- nextPageToken?: string | undefined;
92
+ interface ListVolumesResponse {
93
+ volumes?: VolumeInfo[] | undefined;
94
+ /**
95
+ * Opaque token to retrieve the next page of results. Absent if there are no more pages.
96
+ * __page_token__ should be set to this value for the next request to retrieve the next page of results.
97
+ */
98
+ nextPageToken?: string | undefined;
99
99
  }
100
100
  /** Server-Side Encryption properties for clients communicating with AWS s3. */
101
- export interface SseEncryptionDetails {
102
- /** Sets the value of the 'x-amz-server-side-encryption' header in S3 request. */
103
- algorithm?: SseEncryptionAlgorithm | undefined;
104
- /**
105
- * Optional. The ARN of the SSE-KMS key used with the S3 location, when algorithm = "SSE-KMS".
106
- * Sets the value of the 'x-amz-server-side-encryption-aws-kms-key-id' header.
107
- */
108
- awsKmsKeyArn?: string | undefined;
101
+ interface SseEncryptionDetails {
102
+ /** Sets the value of the 'x-amz-server-side-encryption' header in S3 request. */
103
+ algorithm?: SseEncryptionAlgorithm | undefined;
104
+ /**
105
+ * Optional. The ARN of the SSE-KMS key used with the S3 location, when algorithm = "SSE-KMS".
106
+ * Sets the value of the 'x-amz-server-side-encryption-aws-kms-key-id' header.
107
+ */
108
+ awsKmsKeyArn?: string | undefined;
109
109
  }
110
- export interface UpdateVolumeRequest {
111
- /** The three-level (fully qualified) name of the volume */
112
- fullNameArg?: string | undefined;
113
- /** New name for the volume. */
114
- newName?: string | undefined;
115
- /** The name of the volume */
116
- name?: string | undefined;
117
- /** The name of the catalog where the schema and the volume are */
118
- catalogName?: string | undefined;
119
- /** The name of the schema where the volume is */
120
- schemaName?: string | undefined;
121
- /**
122
- * The type of the volume. An external volume is located in the specified external location.
123
- * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.
124
- * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)
125
- */
126
- volumeType?: VolumeType | undefined;
127
- /** The storage location on the cloud */
128
- storageLocation?: string | undefined;
129
- /** The identifier of the user who owns the volume */
130
- owner?: string | undefined;
131
- /** The comment attached to the volume */
132
- comment?: string | undefined;
133
- /** The three-level (fully qualified) name of the volume */
134
- fullName?: string | undefined;
135
- /** The unique identifier of the volume */
136
- volumeId?: string | undefined;
137
- /** The unique identifier of the metastore */
138
- metastoreId?: string | undefined;
139
- createdAt?: bigint | undefined;
140
- /** The identifier of the user who created the volume */
141
- createdBy?: string | undefined;
142
- updatedAt?: bigint | undefined;
143
- /** The identifier of the user who updated the volume last time */
144
- updatedBy?: string | undefined;
145
- /** The AWS access point to use when accesing s3 for this external location. */
146
- accessPoint?: string | undefined;
147
- encryptionDetails?: EncryptionDetails | undefined;
148
- /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
149
- browseOnly?: boolean | undefined;
110
+ interface UpdateVolumeRequest {
111
+ /** The three-level (fully qualified) name of the volume */
112
+ fullNameArg?: string | undefined;
113
+ /** New name for the volume. */
114
+ newName?: string | undefined;
115
+ /** The name of the volume */
116
+ name?: string | undefined;
117
+ /** The name of the catalog where the schema and the volume are */
118
+ catalogName?: string | undefined;
119
+ /** The name of the schema where the volume is */
120
+ schemaName?: string | undefined;
121
+ /**
122
+ * The type of the volume. An external volume is located in the specified external location.
123
+ * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.
124
+ * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)
125
+ */
126
+ volumeType?: VolumeType | undefined;
127
+ /** The storage location on the cloud */
128
+ storageLocation?: string | undefined;
129
+ /** The identifier of the user who owns the volume */
130
+ owner?: string | undefined;
131
+ /** The comment attached to the volume */
132
+ comment?: string | undefined;
133
+ /** The three-level (fully qualified) name of the volume */
134
+ fullName?: string | undefined;
135
+ /** The unique identifier of the volume */
136
+ volumeId?: string | undefined;
137
+ /** The unique identifier of the metastore */
138
+ metastoreId?: string | undefined;
139
+ createdAt?: bigint | undefined;
140
+ /** The identifier of the user who created the volume */
141
+ createdBy?: string | undefined;
142
+ updatedAt?: bigint | undefined;
143
+ /** The identifier of the user who updated the volume last time */
144
+ updatedBy?: string | undefined;
145
+ /** The AWS access point to use when accesing s3 for this external location. */
146
+ accessPoint?: string | undefined;
147
+ encryptionDetails?: EncryptionDetails | undefined;
148
+ /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
149
+ browseOnly?: boolean | undefined;
150
150
  }
151
- export interface VolumeInfo {
152
- /** The name of the volume */
153
- name?: string | undefined;
154
- /** The name of the catalog where the schema and the volume are */
155
- catalogName?: string | undefined;
156
- /** The name of the schema where the volume is */
157
- schemaName?: string | undefined;
158
- /**
159
- * The type of the volume. An external volume is located in the specified external location.
160
- * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.
161
- * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)
162
- */
163
- volumeType?: VolumeType | undefined;
164
- /** The storage location on the cloud */
165
- storageLocation?: string | undefined;
166
- /** The identifier of the user who owns the volume */
167
- owner?: string | undefined;
168
- /** The comment attached to the volume */
169
- comment?: string | undefined;
170
- /** The three-level (fully qualified) name of the volume */
171
- fullName?: string | undefined;
172
- /** The unique identifier of the volume */
173
- volumeId?: string | undefined;
174
- /** The unique identifier of the metastore */
175
- metastoreId?: string | undefined;
176
- createdAt?: bigint | undefined;
177
- /** The identifier of the user who created the volume */
178
- createdBy?: string | undefined;
179
- updatedAt?: bigint | undefined;
180
- /** The identifier of the user who updated the volume last time */
181
- updatedBy?: string | undefined;
182
- /** The AWS access point to use when accesing s3 for this external location. */
183
- accessPoint?: string | undefined;
184
- encryptionDetails?: EncryptionDetails | undefined;
185
- /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
186
- browseOnly?: boolean | undefined;
151
+ interface VolumeInfo {
152
+ /** The name of the volume */
153
+ name?: string | undefined;
154
+ /** The name of the catalog where the schema and the volume are */
155
+ catalogName?: string | undefined;
156
+ /** The name of the schema where the volume is */
157
+ schemaName?: string | undefined;
158
+ /**
159
+ * The type of the volume. An external volume is located in the specified external location.
160
+ * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.
161
+ * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)
162
+ */
163
+ volumeType?: VolumeType | undefined;
164
+ /** The storage location on the cloud */
165
+ storageLocation?: string | undefined;
166
+ /** The identifier of the user who owns the volume */
167
+ owner?: string | undefined;
168
+ /** The comment attached to the volume */
169
+ comment?: string | undefined;
170
+ /** The three-level (fully qualified) name of the volume */
171
+ fullName?: string | undefined;
172
+ /** The unique identifier of the volume */
173
+ volumeId?: string | undefined;
174
+ /** The unique identifier of the metastore */
175
+ metastoreId?: string | undefined;
176
+ createdAt?: bigint | undefined;
177
+ /** The identifier of the user who created the volume */
178
+ createdBy?: string | undefined;
179
+ updatedAt?: bigint | undefined;
180
+ /** The identifier of the user who updated the volume last time */
181
+ updatedBy?: string | undefined;
182
+ /** The AWS access point to use when accesing s3 for this external location. */
183
+ accessPoint?: string | undefined;
184
+ encryptionDetails?: EncryptionDetails | undefined;
185
+ /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
186
+ browseOnly?: boolean | undefined;
187
187
  }
188
- export declare const unmarshalDeleteVolumeResponseSchema: z.ZodType<DeleteVolumeResponse>;
189
- export declare const unmarshalEncryptionDetailsSchema: z.ZodType<EncryptionDetails>;
190
- export declare const unmarshalListVolumesResponseSchema: z.ZodType<ListVolumesResponse>;
191
- export declare const unmarshalSseEncryptionDetailsSchema: z.ZodType<SseEncryptionDetails>;
192
- export declare const unmarshalVolumeInfoSchema: z.ZodType<VolumeInfo>;
193
- export declare const marshalCreateVolumeRequestSchema: z.ZodType;
194
- export declare const marshalEncryptionDetailsSchema: z.ZodType;
195
- export declare const marshalSseEncryptionDetailsSchema: z.ZodType;
196
- export declare const marshalUpdateVolumeRequestSchema: z.ZodType;
188
+ declare const unmarshalDeleteVolumeResponseSchema: z.ZodType<DeleteVolumeResponse>;
189
+ declare const unmarshalEncryptionDetailsSchema: z.ZodType<EncryptionDetails>;
190
+ declare const unmarshalListVolumesResponseSchema: z.ZodType<ListVolumesResponse>;
191
+ declare const unmarshalSseEncryptionDetailsSchema: z.ZodType<SseEncryptionDetails>;
192
+ declare const unmarshalVolumeInfoSchema: z.ZodType<VolumeInfo>;
193
+ declare const marshalCreateVolumeRequestSchema: z.ZodType;
194
+ declare const marshalEncryptionDetailsSchema: z.ZodType;
195
+ declare const marshalSseEncryptionDetailsSchema: z.ZodType;
196
+ declare const marshalUpdateVolumeRequestSchema: z.ZodType;
197
+ //#endregion
198
+ export { CreateVolumeRequest, DeleteVolumeRequest, DeleteVolumeResponse, EncryptionDetails, GetVolumeRequest, ListVolumesRequest, ListVolumesResponse, SseEncryptionAlgorithm, SseEncryptionDetails, UpdateVolumeRequest, VolumeInfo, VolumeType, marshalCreateVolumeRequestSchema, marshalEncryptionDetailsSchema, marshalSseEncryptionDetailsSchema, marshalUpdateVolumeRequestSchema, unmarshalDeleteVolumeResponseSchema, unmarshalEncryptionDetailsSchema, unmarshalListVolumesResponseSchema, unmarshalSseEncryptionDetailsSchema, unmarshalVolumeInfoSchema };
197
199
  //# sourceMappingURL=model.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../src/v1/model.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"model.d.ts","names":[],"sources":["../../src/v1/model.ts"],"mappings":";;;cAKa,sBAAA;EAAA;;;;KAKD,sBAAA,WACA,sBAAA,eAAqC,sBAAA;AAAA,cAIpC,UAAA;EAAA,SAGH,OAAA;EAAA,SAAA,QAAA;AAAA;AAAA,KACE,UAAA,WACA,UAAA,eAAyB,UAAA;AAAA,UAGpB,mBAAA;EAbiB;EAehC,IAAA;EAdU;EAgBV,WAAA;EAZW;EAcX,UAAA;;;;AAVF;;EAgBE,UAAA,GAAa,UAAA;EAfH;EAiBV,eAAA;EAde;EAgBf,KAAA;;EAEA,OAAA;EAhBA;EAkBA,QAAA;EAdA;EAgBA,QAAA;EAVa;EAYb,WAAA;EACA,SAAA;EAPA;EASA,SAAA;EACA,SAAA;EAJA;EAMA,SAAA;EAHA;EAKA,WAAA;EACA,iBAAA,GAAoB,iBAAA;EADpB;EAGA,UAAA;AAAA;AAAA,UAGe,mBAAA;EAHL;EAKV,WAAA;AAAA;AAAA,UAIe,oBAAA;;UAGA,iBAAA;EACf,qBAAA;IAEM,KAAA,0BAN6B;IAQ7B,oBAAA,EAAsB,oBAAA;EAAA;AAAA;AAAA,UAKb,gBAAA;;EAEf,WAAA;EAXA;EAaA,aAAA;AAAA;AAAA,UAGe,kBAAA;EAZiC;EAchD,WAAA;EATe;EAWf,UAAA;;EAEA,aAAA;EATa;AAGf;;;;;;;;;;EAkBE,UAAA;EAKe;EAHf,SAAA;AAAA;AAAA,UAGe,mBAAA;EACf,OAAA,GAAU,UAAA;EAAA;;;;EAKV,aAAA;AAAA;;UAIe,oBAAA;EAEf;EAAA,SAAA,GAAY,sBAAA;EAKZ;;;AAGF;EAHE,YAAA;AAAA;AAAA,UAGe,mBAAA;EAEf;EAAA,WAAA;EAIA;EAFA,OAAA;EAMA;EAJA,IAAA;EAUa;EARb,WAAA;EAYA;EAVA,UAAA;EAcA;;;;;EARA,UAAA,GAAa,UAAA;EAkBb;EAhBA,eAAA;EAmBA;EAjBA,KAAA;EAmBA;EAjBA,OAAA;EAiBU;EAfV,QAAA;EAkByB;EAhBzB,QAAA;EAiDqC;EA/CrC,WAAA;EACA,SAAA;EAmBA;EAjBA,SAAA;EACA,SAAA;EAwBA;EAtBA,SAAA;EA0BA;EAxBA,WAAA;EACA,iBAAA,GAAoB,iBAAA;EA6BpB;EA3BA,UAAA;AAAA;AAAA,UAGe,UAAA;EA8Bf;EA5BA,IAAA;EA+BA;EA7BA,WAAA;EA+BA;EA7BA,UAAA;EA6BU;AAGZ;;;;EA1BE,UAAA,GAAa,UAAA;EA0BqC;EAxBlD,eAAA;EAwB8E;EAtB9E,KAAA;EAyBW;EAvBX,OAAA;;EAEA,QAAA;EAqB6C;EAnB7C,QAAA;EAmBuD;EAjBvD,WAAA;EACA,SAAA;EAgCW;EA9BX,SAAA;EACA,SAAA;EA6BwD;EA3BxD,SAAA;EA2BiD;EAzBjD,WAAA;EACA,iBAAA,GAAoB,iBAAA;EAwBwD;EAtB5E,UAAA;AAAA;AAAA,cAGW,mCAAA,EAAqC,CAAA,CAAE,OAAA,CAAQ,oBAAA;AAAA,cAG/C,gCAAA,EAAkC,CAAA,CAAE,OAAA,CAAQ,iBAAA;AAAA,cAgB5C,kCAAA,EAAoC,CAAA,CAAE,OAAA,CAAQ,mBAAA;AAAA,cAW9C,mCAAA,EAAqC,CAAA,CAAE,OAAA,CAAQ,oBAAA;AAAA,cAW/C,yBAAA,EAA2B,CAAA,CAAE,OAAA,CAAQ,UAAA;AAAA,cAgDrC,gCAAA,EAAkC,CAAA,CAAE,OAAA;AAAA,cAwCpC,8BAAA,EAAgC,CAAA,CAAE,OAAA;AAAA,cAiBlC,iCAAA,EAAmC,CAAA,CAAE,OAAA;AAAA,cAUrC,gCAAA,EAAkC,CAAA,CAAE,OAAA"}