ch-api-client-typescript2 5.46.0 → 5.46.2
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.
- package/lib/models/deal-document-model.d.ts +101 -101
- package/lib/models/deal-document-model.d.ts.map +1 -1
- package/lib/models/deal-service-sub-document-model.d.ts +95 -95
- package/lib/models/deal-service-sub-document-model.d.ts.map +1 -1
- package/lib/models/deal-service-translation-item-document-model.d.ts +37 -0
- package/lib/models/deal-service-translation-item-document-model.d.ts.map +1 -0
- package/lib/models/deal-service-translation-item-document-model.js +15 -0
- package/lib/models/deal-translation-document-model.d.ts +37 -0
- package/lib/models/deal-translation-document-model.d.ts.map +1 -0
- package/lib/models/deal-translation-document-model.js +15 -0
- package/lib/models/index.d.ts +2 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +2 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +2 -0
- package/src/models/deal-document-model.ts +103 -103
- package/src/models/deal-service-sub-document-model.ts +95 -95
- package/src/models/deal-service-translation-item-document-model.ts +42 -0
- package/src/models/deal-translation-document-model.ts +42 -0
- package/src/models/index.ts +2 -0
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { AuditableEntityDocumentModel } from './auditable-entity-document-model';
|
|
13
13
|
import { DealServiceSubDocumentModel } from './deal-service-sub-document-model';
|
|
14
|
+
import { DealTranslationDocumentModel } from './deal-translation-document-model';
|
|
14
15
|
import { HospitalContactDocumentModel } from './hospital-contact-document-model';
|
|
15
16
|
import { HospitalSubDocumentModel } from './hospital-sub-document-model';
|
|
16
17
|
import { LocationDocumentModel } from './location-document-model';
|
|
17
18
|
import { PackageSubDocumentModel } from './package-sub-document-model';
|
|
18
|
-
import { TranslationDocumentModel } from './translation-document-model';
|
|
19
19
|
/**
|
|
20
20
|
*
|
|
21
21
|
* @export
|
|
@@ -30,286 +30,292 @@ export interface DealDocumentModel {
|
|
|
30
30
|
'uploadedDate'?: Date;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {DealTranslationDocumentModel}
|
|
34
34
|
* @memberof DealDocumentModel
|
|
35
35
|
*/
|
|
36
|
-
'en'?:
|
|
36
|
+
'en'?: DealTranslationDocumentModel;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {DealTranslationDocumentModel}
|
|
40
40
|
* @memberof DealDocumentModel
|
|
41
41
|
*/
|
|
42
|
-
'ru'?:
|
|
42
|
+
'ru'?: DealTranslationDocumentModel;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {DealTranslationDocumentModel}
|
|
46
46
|
* @memberof DealDocumentModel
|
|
47
47
|
*/
|
|
48
|
-
'zh'?:
|
|
48
|
+
'zh'?: DealTranslationDocumentModel;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
|
-
* @type {
|
|
51
|
+
* @type {DealTranslationDocumentModel}
|
|
52
52
|
* @memberof DealDocumentModel
|
|
53
53
|
*/
|
|
54
|
-
'es'?:
|
|
54
|
+
'es'?: DealTranslationDocumentModel;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
|
-
* @type {
|
|
57
|
+
* @type {DealTranslationDocumentModel}
|
|
58
58
|
* @memberof DealDocumentModel
|
|
59
59
|
*/
|
|
60
|
-
'id'?:
|
|
60
|
+
'id'?: DealTranslationDocumentModel;
|
|
61
61
|
/**
|
|
62
62
|
*
|
|
63
|
-
* @type {
|
|
63
|
+
* @type {DealTranslationDocumentModel}
|
|
64
64
|
* @memberof DealDocumentModel
|
|
65
65
|
*/
|
|
66
|
-
'pt'?:
|
|
66
|
+
'pt'?: DealTranslationDocumentModel;
|
|
67
67
|
/**
|
|
68
68
|
*
|
|
69
|
-
* @type {
|
|
69
|
+
* @type {DealTranslationDocumentModel}
|
|
70
70
|
* @memberof DealDocumentModel
|
|
71
71
|
*/
|
|
72
|
-
'fr'?:
|
|
72
|
+
'fr'?: DealTranslationDocumentModel;
|
|
73
73
|
/**
|
|
74
74
|
*
|
|
75
|
-
* @type {
|
|
75
|
+
* @type {DealTranslationDocumentModel}
|
|
76
76
|
* @memberof DealDocumentModel
|
|
77
77
|
*/
|
|
78
|
-
'vi'?:
|
|
78
|
+
'vi'?: DealTranslationDocumentModel;
|
|
79
79
|
/**
|
|
80
80
|
*
|
|
81
|
-
* @type {
|
|
81
|
+
* @type {DealTranslationDocumentModel}
|
|
82
82
|
* @memberof DealDocumentModel
|
|
83
83
|
*/
|
|
84
|
-
'th'?:
|
|
84
|
+
'th'?: DealTranslationDocumentModel;
|
|
85
85
|
/**
|
|
86
86
|
*
|
|
87
|
-
* @type {
|
|
87
|
+
* @type {DealTranslationDocumentModel}
|
|
88
88
|
* @memberof DealDocumentModel
|
|
89
89
|
*/
|
|
90
|
-
'ar'?:
|
|
90
|
+
'ar'?: DealTranslationDocumentModel;
|
|
91
91
|
/**
|
|
92
92
|
*
|
|
93
|
-
* @type {
|
|
93
|
+
* @type {DealTranslationDocumentModel}
|
|
94
94
|
* @memberof DealDocumentModel
|
|
95
95
|
*/
|
|
96
|
-
'ko'?:
|
|
96
|
+
'ko'?: DealTranslationDocumentModel;
|
|
97
97
|
/**
|
|
98
98
|
*
|
|
99
|
-
* @type {
|
|
99
|
+
* @type {DealTranslationDocumentModel}
|
|
100
100
|
* @memberof DealDocumentModel
|
|
101
101
|
*/
|
|
102
|
-
'bg'?:
|
|
102
|
+
'bg'?: DealTranslationDocumentModel;
|
|
103
103
|
/**
|
|
104
104
|
*
|
|
105
|
-
* @type {
|
|
105
|
+
* @type {DealTranslationDocumentModel}
|
|
106
106
|
* @memberof DealDocumentModel
|
|
107
107
|
*/
|
|
108
|
-
'cs'?:
|
|
108
|
+
'cs'?: DealTranslationDocumentModel;
|
|
109
109
|
/**
|
|
110
110
|
*
|
|
111
|
-
* @type {
|
|
111
|
+
* @type {DealTranslationDocumentModel}
|
|
112
112
|
* @memberof DealDocumentModel
|
|
113
113
|
*/
|
|
114
|
-
'de'?:
|
|
114
|
+
'de'?: DealTranslationDocumentModel;
|
|
115
115
|
/**
|
|
116
116
|
*
|
|
117
|
-
* @type {
|
|
117
|
+
* @type {DealTranslationDocumentModel}
|
|
118
118
|
* @memberof DealDocumentModel
|
|
119
119
|
*/
|
|
120
|
-
'hi'?:
|
|
120
|
+
'hi'?: DealTranslationDocumentModel;
|
|
121
121
|
/**
|
|
122
122
|
*
|
|
123
|
-
* @type {
|
|
123
|
+
* @type {DealTranslationDocumentModel}
|
|
124
124
|
* @memberof DealDocumentModel
|
|
125
125
|
*/
|
|
126
|
-
'hr'?:
|
|
126
|
+
'hr'?: DealTranslationDocumentModel;
|
|
127
127
|
/**
|
|
128
128
|
*
|
|
129
|
-
* @type {
|
|
129
|
+
* @type {DealTranslationDocumentModel}
|
|
130
130
|
* @memberof DealDocumentModel
|
|
131
131
|
*/
|
|
132
|
-
'hu'?:
|
|
132
|
+
'hu'?: DealTranslationDocumentModel;
|
|
133
133
|
/**
|
|
134
134
|
*
|
|
135
|
-
* @type {
|
|
135
|
+
* @type {DealTranslationDocumentModel}
|
|
136
136
|
* @memberof DealDocumentModel
|
|
137
137
|
*/
|
|
138
|
-
'it'?:
|
|
138
|
+
'it'?: DealTranslationDocumentModel;
|
|
139
139
|
/**
|
|
140
140
|
*
|
|
141
|
-
* @type {
|
|
141
|
+
* @type {DealTranslationDocumentModel}
|
|
142
142
|
* @memberof DealDocumentModel
|
|
143
143
|
*/
|
|
144
|
-
'ja'?:
|
|
144
|
+
'ja'?: DealTranslationDocumentModel;
|
|
145
145
|
/**
|
|
146
146
|
*
|
|
147
|
-
* @type {
|
|
147
|
+
* @type {DealTranslationDocumentModel}
|
|
148
148
|
* @memberof DealDocumentModel
|
|
149
149
|
*/
|
|
150
|
-
'kk'?:
|
|
150
|
+
'kk'?: DealTranslationDocumentModel;
|
|
151
151
|
/**
|
|
152
152
|
*
|
|
153
|
-
* @type {
|
|
153
|
+
* @type {DealTranslationDocumentModel}
|
|
154
154
|
* @memberof DealDocumentModel
|
|
155
155
|
*/
|
|
156
|
-
'ky'?:
|
|
156
|
+
'ky'?: DealTranslationDocumentModel;
|
|
157
157
|
/**
|
|
158
158
|
*
|
|
159
|
-
* @type {
|
|
159
|
+
* @type {DealTranslationDocumentModel}
|
|
160
160
|
* @memberof DealDocumentModel
|
|
161
161
|
*/
|
|
162
|
-
'lo'?:
|
|
162
|
+
'lo'?: DealTranslationDocumentModel;
|
|
163
163
|
/**
|
|
164
164
|
*
|
|
165
|
-
* @type {
|
|
165
|
+
* @type {DealTranslationDocumentModel}
|
|
166
166
|
* @memberof DealDocumentModel
|
|
167
167
|
*/
|
|
168
|
-
'lt'?:
|
|
168
|
+
'lt'?: DealTranslationDocumentModel;
|
|
169
169
|
/**
|
|
170
170
|
*
|
|
171
|
-
* @type {
|
|
171
|
+
* @type {DealTranslationDocumentModel}
|
|
172
172
|
* @memberof DealDocumentModel
|
|
173
173
|
*/
|
|
174
|
-
'lv'?:
|
|
174
|
+
'lv'?: DealTranslationDocumentModel;
|
|
175
175
|
/**
|
|
176
176
|
*
|
|
177
|
-
* @type {
|
|
177
|
+
* @type {DealTranslationDocumentModel}
|
|
178
178
|
* @memberof DealDocumentModel
|
|
179
179
|
*/
|
|
180
|
-
'my'?:
|
|
180
|
+
'my'?: DealTranslationDocumentModel;
|
|
181
181
|
/**
|
|
182
182
|
*
|
|
183
|
-
* @type {
|
|
183
|
+
* @type {DealTranslationDocumentModel}
|
|
184
184
|
* @memberof DealDocumentModel
|
|
185
185
|
*/
|
|
186
|
-
'nl'?:
|
|
186
|
+
'nl'?: DealTranslationDocumentModel;
|
|
187
187
|
/**
|
|
188
188
|
*
|
|
189
|
-
* @type {
|
|
189
|
+
* @type {DealTranslationDocumentModel}
|
|
190
190
|
* @memberof DealDocumentModel
|
|
191
191
|
*/
|
|
192
|
-
'pl'?:
|
|
192
|
+
'pl'?: DealTranslationDocumentModel;
|
|
193
193
|
/**
|
|
194
194
|
*
|
|
195
|
-
* @type {
|
|
195
|
+
* @type {DealTranslationDocumentModel}
|
|
196
196
|
* @memberof DealDocumentModel
|
|
197
197
|
*/
|
|
198
|
-
'ro'?:
|
|
198
|
+
'ro'?: DealTranslationDocumentModel;
|
|
199
199
|
/**
|
|
200
200
|
*
|
|
201
|
-
* @type {
|
|
201
|
+
* @type {DealTranslationDocumentModel}
|
|
202
202
|
* @memberof DealDocumentModel
|
|
203
203
|
*/
|
|
204
|
-
'sl'?:
|
|
204
|
+
'sl'?: DealTranslationDocumentModel;
|
|
205
205
|
/**
|
|
206
206
|
*
|
|
207
|
-
* @type {
|
|
207
|
+
* @type {DealTranslationDocumentModel}
|
|
208
208
|
* @memberof DealDocumentModel
|
|
209
209
|
*/
|
|
210
|
-
'sv'?:
|
|
210
|
+
'sv'?: DealTranslationDocumentModel;
|
|
211
211
|
/**
|
|
212
212
|
*
|
|
213
|
-
* @type {
|
|
213
|
+
* @type {DealTranslationDocumentModel}
|
|
214
214
|
* @memberof DealDocumentModel
|
|
215
215
|
*/
|
|
216
|
-
'sw'?:
|
|
216
|
+
'sw'?: DealTranslationDocumentModel;
|
|
217
217
|
/**
|
|
218
218
|
*
|
|
219
|
-
* @type {
|
|
219
|
+
* @type {DealTranslationDocumentModel}
|
|
220
220
|
* @memberof DealDocumentModel
|
|
221
221
|
*/
|
|
222
|
-
'tr'?:
|
|
222
|
+
'tr'?: DealTranslationDocumentModel;
|
|
223
223
|
/**
|
|
224
224
|
*
|
|
225
|
-
* @type {
|
|
225
|
+
* @type {DealTranslationDocumentModel}
|
|
226
226
|
* @memberof DealDocumentModel
|
|
227
227
|
*/
|
|
228
|
-
'uk'?:
|
|
228
|
+
'uk'?: DealTranslationDocumentModel;
|
|
229
229
|
/**
|
|
230
230
|
*
|
|
231
|
-
* @type {
|
|
231
|
+
* @type {DealTranslationDocumentModel}
|
|
232
232
|
* @memberof DealDocumentModel
|
|
233
233
|
*/
|
|
234
|
-
'uz'?:
|
|
234
|
+
'uz'?: DealTranslationDocumentModel;
|
|
235
235
|
/**
|
|
236
236
|
*
|
|
237
|
-
* @type {
|
|
237
|
+
* @type {DealTranslationDocumentModel}
|
|
238
238
|
* @memberof DealDocumentModel
|
|
239
239
|
*/
|
|
240
|
-
'bn'?:
|
|
240
|
+
'bn'?: DealTranslationDocumentModel;
|
|
241
241
|
/**
|
|
242
242
|
*
|
|
243
|
-
* @type {
|
|
243
|
+
* @type {DealTranslationDocumentModel}
|
|
244
244
|
* @memberof DealDocumentModel
|
|
245
245
|
*/
|
|
246
|
-
'az'?:
|
|
246
|
+
'az'?: DealTranslationDocumentModel;
|
|
247
247
|
/**
|
|
248
248
|
*
|
|
249
|
-
* @type {
|
|
249
|
+
* @type {DealTranslationDocumentModel}
|
|
250
250
|
* @memberof DealDocumentModel
|
|
251
251
|
*/
|
|
252
|
-
'ka'?:
|
|
252
|
+
'ka'?: DealTranslationDocumentModel;
|
|
253
253
|
/**
|
|
254
254
|
*
|
|
255
|
-
* @type {
|
|
255
|
+
* @type {DealTranslationDocumentModel}
|
|
256
256
|
* @memberof DealDocumentModel
|
|
257
257
|
*/
|
|
258
|
-
'mn'?:
|
|
258
|
+
'mn'?: DealTranslationDocumentModel;
|
|
259
259
|
/**
|
|
260
260
|
*
|
|
261
|
-
* @type {
|
|
261
|
+
* @type {DealTranslationDocumentModel}
|
|
262
262
|
* @memberof DealDocumentModel
|
|
263
263
|
*/
|
|
264
|
-
'te'?:
|
|
264
|
+
'te'?: DealTranslationDocumentModel;
|
|
265
265
|
/**
|
|
266
266
|
*
|
|
267
|
-
* @type {
|
|
267
|
+
* @type {DealTranslationDocumentModel}
|
|
268
268
|
* @memberof DealDocumentModel
|
|
269
269
|
*/
|
|
270
|
-
'kn'?:
|
|
270
|
+
'kn'?: DealTranslationDocumentModel;
|
|
271
271
|
/**
|
|
272
272
|
*
|
|
273
|
-
* @type {
|
|
273
|
+
* @type {DealTranslationDocumentModel}
|
|
274
274
|
* @memberof DealDocumentModel
|
|
275
275
|
*/
|
|
276
|
-
'ta'?:
|
|
276
|
+
'ta'?: DealTranslationDocumentModel;
|
|
277
277
|
/**
|
|
278
278
|
*
|
|
279
|
-
* @type {
|
|
279
|
+
* @type {DealTranslationDocumentModel}
|
|
280
280
|
* @memberof DealDocumentModel
|
|
281
281
|
*/
|
|
282
|
-
'ml'?:
|
|
282
|
+
'ml'?: DealTranslationDocumentModel;
|
|
283
283
|
/**
|
|
284
284
|
*
|
|
285
|
-
* @type {
|
|
285
|
+
* @type {DealTranslationDocumentModel}
|
|
286
286
|
* @memberof DealDocumentModel
|
|
287
287
|
*/
|
|
288
|
-
'mr'?:
|
|
288
|
+
'mr'?: DealTranslationDocumentModel;
|
|
289
289
|
/**
|
|
290
290
|
*
|
|
291
|
-
* @type {
|
|
291
|
+
* @type {DealTranslationDocumentModel}
|
|
292
292
|
* @memberof DealDocumentModel
|
|
293
293
|
*/
|
|
294
|
-
'pa'?:
|
|
294
|
+
'pa'?: DealTranslationDocumentModel;
|
|
295
295
|
/**
|
|
296
296
|
*
|
|
297
|
-
* @type {
|
|
297
|
+
* @type {DealTranslationDocumentModel}
|
|
298
298
|
* @memberof DealDocumentModel
|
|
299
299
|
*/
|
|
300
|
-
'gu'?:
|
|
300
|
+
'gu'?: DealTranslationDocumentModel;
|
|
301
301
|
/**
|
|
302
302
|
*
|
|
303
|
-
* @type {
|
|
303
|
+
* @type {DealTranslationDocumentModel}
|
|
304
304
|
* @memberof DealDocumentModel
|
|
305
305
|
*/
|
|
306
|
-
'ur'?:
|
|
306
|
+
'ur'?: DealTranslationDocumentModel;
|
|
307
307
|
/**
|
|
308
308
|
*
|
|
309
|
-
* @type {
|
|
309
|
+
* @type {DealTranslationDocumentModel}
|
|
310
310
|
* @memberof DealDocumentModel
|
|
311
311
|
*/
|
|
312
|
-
'or'?:
|
|
312
|
+
'or'?: DealTranslationDocumentModel;
|
|
313
|
+
/**
|
|
314
|
+
*
|
|
315
|
+
* @type {Array<DealServiceSubDocumentModel>}
|
|
316
|
+
* @memberof DealDocumentModel
|
|
317
|
+
*/
|
|
318
|
+
'Services'?: Array<DealServiceSubDocumentModel> | null;
|
|
313
319
|
/**
|
|
314
320
|
*
|
|
315
321
|
* @type {string}
|
|
@@ -412,12 +418,6 @@ export interface DealDocumentModel {
|
|
|
412
418
|
* @memberof DealDocumentModel
|
|
413
419
|
*/
|
|
414
420
|
'Packages'?: Array<PackageSubDocumentModel> | null;
|
|
415
|
-
/**
|
|
416
|
-
*
|
|
417
|
-
* @type {Array<DealServiceSubDocumentModel>}
|
|
418
|
-
* @memberof DealDocumentModel
|
|
419
|
-
*/
|
|
420
|
-
'Services'?: Array<DealServiceSubDocumentModel> | null;
|
|
421
421
|
/**
|
|
422
422
|
*
|
|
423
423
|
* @type {AuditableEntityDocumentModel}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deal-document-model.d.ts","sourceRoot":"","sources":["../../src/models/deal-document-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AAGjF,OAAO,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAC;AAGhF,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AAGjF,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"deal-document-model.d.ts","sourceRoot":"","sources":["../../src/models/deal-document-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AAGjF,OAAO,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAC;AAGhF,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AAGjF,OAAO,EAAE,4BAA4B,EAAE,MAAM,mCAAmC,CAAC;AAGjF,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAGzE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAGlE,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAEvE;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,IAAI,CAAC;IACtB;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,4BAA4B,CAAC;IACpC;;;;OAIG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC;IACvD;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,UAAU,CAAC,EAAE,wBAAwB,CAAC;IACtC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,2BAA2B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5C;;;;OAIG;IACH,wBAAwB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzC;;;;OAIG;IACH,2BAA2B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5C;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,qBAAqB,CAAC;IAC3C;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,KAAK,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC;IAChE;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC;IACnD;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,4BAA4B,CAAC;CACpD"}
|