@rlvt/datasources-query-openapi-client 1.0.354 → 1.0.355
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/build/api.d.ts +46 -72
- package/build/api.js +15 -15
- package/build/definitions.d.ts +622 -4455
- package/build/definitions.js +2 -5
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -1,44 +1,52 @@
|
|
|
1
1
|
import { AxiosInstance, AxiosRequestConfig } from "axios";
|
|
2
|
-
import type {
|
|
2
|
+
import type { ProxyFetcherQueryOpts, InternalResponse_entries_Array_distance_Union_undefined_number_rlvt_lat_Union_undefined_number_rlvt_lng_Union_undefined_number_count_number, InternalResponse_Array_string, PerUserFetcherFetchOpts, ProxyFetcherFetchOpts, WorkerFetcherFetchOpts, IngesterFetcherFetchOpts, InternalResponse_entries_Array_distance_Union_undefined_number_rlvt_lat_Union_undefined_number_rlvt_lng_Union_undefined_number, InternalResponse, PerUserFetcherFetchOpts_Without_DatasourceId, DatasourceLocation, DatasourceGeneric, DatasourceProduct, DatasourceCRM, DatasourcePush, GenericProxyLockFetcherFetchOpts_Without_DatasourceId, ProxyFetcherFetchOpts_Without_DatasourceId, WorkerFetcherFetchOpts_Without_DatasourceId, IngesterFetcherFetchOpts_Without_DatasourceId, TrackingFetcherFetchOpts_Without_DatasourceId, FdjBetsFetcherFetchOpts_Without_DatasourceId, RenaultPricesFetcherFetchOpts_Without_DatasourceId, DecathlonProductFallbackFetcherFetchOpts_Without_DatasourceId, GenericUnwindRowsFetcherFetchOpts_Without_DatasourceId, WorkflowEventsFetcherFetchOpts_Without_DatasourceId, ExpiredProductLifetimeFetcherFetchOpts_Without_DatasourceId, GenericProxyAggregationFetcherFetchOpts_Without_DatasourceId } from "./definitions";
|
|
3
3
|
export * from "./definitions";
|
|
4
4
|
export default class {
|
|
5
5
|
axios: AxiosInstance;
|
|
6
6
|
constructor(configOrInstance: AxiosRequestConfig | AxiosInstance);
|
|
7
|
+
private query;
|
|
8
|
+
private queryValues;
|
|
7
9
|
private fetch;
|
|
8
10
|
private count;
|
|
9
11
|
private findAndFetch;
|
|
10
|
-
private query;
|
|
11
|
-
private queryValues;
|
|
12
12
|
get Data(): {
|
|
13
|
+
query: (params: {
|
|
14
|
+
page?: number | undefined;
|
|
15
|
+
perPage?: number | undefined;
|
|
16
|
+
'x-rlvt-no-cache'?: boolean | undefined;
|
|
17
|
+
}, data: import("./definitions").WorkerFetcherOpts | import("./definitions").IngesterFetcherOpts | ProxyFetcherQueryOpts | import("./definitions").WorkerFetcherFetchOpts_With_Query_DatasourceId | import("./definitions").WorkerFetcherFetchOpts_With_Query_DatasourceId_Sort_Filters | PerUserFetcherFetchOpts | ProxyFetcherFetchOpts, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
18
|
+
paginationCount: number;
|
|
19
|
+
paginationPage: number;
|
|
20
|
+
paginationLimit: number;
|
|
21
|
+
} & {
|
|
22
|
+
status: "success";
|
|
23
|
+
} & InternalResponse_entries_Array_distance_Union_undefined_number_rlvt_lat_Union_undefined_number_rlvt_lng_Union_undefined_number_count_number, any, {}>>;
|
|
24
|
+
queryValues: (params: {
|
|
25
|
+
'x-rlvt-no-cache'?: boolean | undefined;
|
|
26
|
+
}, data: {
|
|
27
|
+
datasourceId: string;
|
|
28
|
+
field: string;
|
|
29
|
+
query?: string | undefined;
|
|
30
|
+
limit?: number | undefined;
|
|
31
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
32
|
+
status: "success";
|
|
33
|
+
} & InternalResponse_Array_string, any, {}>>;
|
|
13
34
|
fetch: (params: {
|
|
14
35
|
'x-rlvt-no-cache'?: boolean | undefined;
|
|
15
|
-
}, data:
|
|
36
|
+
}, data: import("./definitions").WorkerFetcherFetchOpts_With_Query_DatasourceId | import("./definitions").WorkerFetcherFetchOpts_With_Query_DatasourceId_Sort_Filters | PerUserFetcherFetchOpts | ProxyFetcherFetchOpts | WorkerFetcherFetchOpts | IngesterFetcherFetchOpts | import("./definitions").TrackingFetcherOpts, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
16
37
|
status: "success";
|
|
17
38
|
} & InternalResponse_entries_Array_distance_Union_undefined_number_rlvt_lat_Union_undefined_number_rlvt_lng_Union_undefined_number, any, {}>>;
|
|
18
39
|
count: (params: {
|
|
19
40
|
'x-rlvt-no-cache'?: boolean | undefined;
|
|
20
|
-
}, data:
|
|
41
|
+
}, data: import("./definitions").ProxyFetcherOpts | import("./definitions").WorkerFetcherFetchOpts_With_Query_DatasourceId | import("./definitions").WorkerFetcherFetchOpts_With_Query_DatasourceId_Sort_Filters | PerUserFetcherFetchOpts | ProxyFetcherFetchOpts | import("./definitions").WorkerFetcherOpts_Without_Sort | import("./definitions").IngesterFetcherOpts_Without_Sort, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
21
42
|
status: "success";
|
|
22
43
|
} & InternalResponse, any, {}>>;
|
|
23
44
|
findAndFetch: (params: {
|
|
24
45
|
'x-rlvt-no-cache'?: boolean | undefined;
|
|
25
|
-
}, data: (
|
|
26
|
-
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
27
|
-
name: "analytics";
|
|
28
|
-
subtype: "reelevant" | "google_tag_manager" | "shopify" | "workflow_events" | "user" | "mutable";
|
|
29
|
-
} | {
|
|
30
|
-
name: "analytics";
|
|
31
|
-
subtype: "purchases";
|
|
32
|
-
options: {
|
|
33
|
-
autoExclusions?: boolean | undefined;
|
|
34
|
-
noStats?: boolean | undefined;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
companyId: string | null;
|
|
38
|
-
}) | (IngesterFetcherFetchOpts_Without_DatasourceId & {
|
|
46
|
+
}, data: (PerUserFetcherFetchOpts_Without_DatasourceId & {
|
|
39
47
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
40
48
|
name: "analytics";
|
|
41
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
49
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
42
50
|
} | {
|
|
43
51
|
name: "analytics";
|
|
44
52
|
subtype: "purchases";
|
|
@@ -48,10 +56,10 @@ export default class {
|
|
|
48
56
|
};
|
|
49
57
|
};
|
|
50
58
|
companyId: string | null;
|
|
51
|
-
}) | (
|
|
59
|
+
}) | (GenericProxyLockFetcherFetchOpts_Without_DatasourceId & {
|
|
52
60
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
53
61
|
name: "analytics";
|
|
54
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
62
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
55
63
|
} | {
|
|
56
64
|
name: "analytics";
|
|
57
65
|
subtype: "purchases";
|
|
@@ -64,7 +72,7 @@ export default class {
|
|
|
64
72
|
}) | (ProxyFetcherFetchOpts_Without_DatasourceId & {
|
|
65
73
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
66
74
|
name: "analytics";
|
|
67
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
75
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
68
76
|
} | {
|
|
69
77
|
name: "analytics";
|
|
70
78
|
subtype: "purchases";
|
|
@@ -74,10 +82,10 @@ export default class {
|
|
|
74
82
|
};
|
|
75
83
|
};
|
|
76
84
|
companyId: string | null;
|
|
77
|
-
}) | (
|
|
85
|
+
}) | (WorkerFetcherFetchOpts_Without_DatasourceId & {
|
|
78
86
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
79
87
|
name: "analytics";
|
|
80
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
88
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
81
89
|
} | {
|
|
82
90
|
name: "analytics";
|
|
83
91
|
subtype: "purchases";
|
|
@@ -87,10 +95,10 @@ export default class {
|
|
|
87
95
|
};
|
|
88
96
|
};
|
|
89
97
|
companyId: string | null;
|
|
90
|
-
}) | (
|
|
98
|
+
}) | (IngesterFetcherFetchOpts_Without_DatasourceId & {
|
|
91
99
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
92
100
|
name: "analytics";
|
|
93
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
101
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
94
102
|
} | {
|
|
95
103
|
name: "analytics";
|
|
96
104
|
subtype: "purchases";
|
|
@@ -100,10 +108,10 @@ export default class {
|
|
|
100
108
|
};
|
|
101
109
|
};
|
|
102
110
|
companyId: string | null;
|
|
103
|
-
}) | (
|
|
111
|
+
}) | (TrackingFetcherFetchOpts_Without_DatasourceId & {
|
|
104
112
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
105
113
|
name: "analytics";
|
|
106
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
114
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
107
115
|
} | {
|
|
108
116
|
name: "analytics";
|
|
109
117
|
subtype: "purchases";
|
|
@@ -113,10 +121,10 @@ export default class {
|
|
|
113
121
|
};
|
|
114
122
|
};
|
|
115
123
|
companyId: string | null;
|
|
116
|
-
}) | (
|
|
124
|
+
}) | (FdjBetsFetcherFetchOpts_Without_DatasourceId & {
|
|
117
125
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
118
126
|
name: "analytics";
|
|
119
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
127
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
120
128
|
} | {
|
|
121
129
|
name: "analytics";
|
|
122
130
|
subtype: "purchases";
|
|
@@ -129,7 +137,7 @@ export default class {
|
|
|
129
137
|
}) | (RenaultPricesFetcherFetchOpts_Without_DatasourceId & {
|
|
130
138
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
131
139
|
name: "analytics";
|
|
132
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
140
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
133
141
|
} | {
|
|
134
142
|
name: "analytics";
|
|
135
143
|
subtype: "purchases";
|
|
@@ -142,7 +150,7 @@ export default class {
|
|
|
142
150
|
}) | (DecathlonProductFallbackFetcherFetchOpts_Without_DatasourceId & {
|
|
143
151
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
144
152
|
name: "analytics";
|
|
145
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
153
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
146
154
|
} | {
|
|
147
155
|
name: "analytics";
|
|
148
156
|
subtype: "purchases";
|
|
@@ -155,7 +163,7 @@ export default class {
|
|
|
155
163
|
}) | (GenericUnwindRowsFetcherFetchOpts_Without_DatasourceId & {
|
|
156
164
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
157
165
|
name: "analytics";
|
|
158
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
166
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
159
167
|
} | {
|
|
160
168
|
name: "analytics";
|
|
161
169
|
subtype: "purchases";
|
|
@@ -168,7 +176,7 @@ export default class {
|
|
|
168
176
|
}) | (WorkflowEventsFetcherFetchOpts_Without_DatasourceId & {
|
|
169
177
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
170
178
|
name: "analytics";
|
|
171
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
179
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
172
180
|
} | {
|
|
173
181
|
name: "analytics";
|
|
174
182
|
subtype: "purchases";
|
|
@@ -181,7 +189,7 @@ export default class {
|
|
|
181
189
|
}) | (ExpiredProductLifetimeFetcherFetchOpts_Without_DatasourceId & {
|
|
182
190
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
183
191
|
name: "analytics";
|
|
184
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
192
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
185
193
|
} | {
|
|
186
194
|
name: "analytics";
|
|
187
195
|
subtype: "purchases";
|
|
@@ -191,23 +199,10 @@ export default class {
|
|
|
191
199
|
};
|
|
192
200
|
};
|
|
193
201
|
companyId: string | null;
|
|
194
|
-
}) | (
|
|
202
|
+
}) | (GenericProxyAggregationFetcherFetchOpts_Without_DatasourceId & {
|
|
195
203
|
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
196
204
|
name: "analytics";
|
|
197
|
-
subtype: "reelevant" | "google_tag_manager" | "
|
|
198
|
-
} | {
|
|
199
|
-
name: "analytics";
|
|
200
|
-
subtype: "purchases";
|
|
201
|
-
options: {
|
|
202
|
-
autoExclusions?: boolean | undefined;
|
|
203
|
-
noStats?: boolean | undefined;
|
|
204
|
-
};
|
|
205
|
-
};
|
|
206
|
-
companyId: string | null;
|
|
207
|
-
}) | (GenericProxyLockFetcherFetchOpts_Without_DatasourceId & {
|
|
208
|
-
type: DatasourceLocation | DatasourceGeneric | DatasourceProduct | DatasourceCRM | DatasourcePush | {
|
|
209
|
-
name: "analytics";
|
|
210
|
-
subtype: "reelevant" | "google_tag_manager" | "shopify" | "workflow_events" | "user" | "mutable";
|
|
205
|
+
subtype: "reelevant" | "google_tag_manager" | "workflow_events" | "user" | "mutable";
|
|
211
206
|
} | {
|
|
212
207
|
name: "analytics";
|
|
213
208
|
subtype: "purchases";
|
|
@@ -220,26 +215,5 @@ export default class {
|
|
|
220
215
|
}), options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
221
216
|
status: "success";
|
|
222
217
|
} & InternalResponse_entries_Array_distance_Union_undefined_number_rlvt_lat_Union_undefined_number_rlvt_lng_Union_undefined_number, any, {}>>;
|
|
223
|
-
query: (params: {
|
|
224
|
-
page?: number | undefined;
|
|
225
|
-
perPage?: number | undefined;
|
|
226
|
-
'x-rlvt-no-cache'?: boolean | undefined;
|
|
227
|
-
}, data: WorkerFetcherQueryOpts | IngesterFetcherQueryOpts | TrackingFetcherQueryOpts | ProxyFetcherQueryOpts | CarrefourStoresWithDriveSlotsFetcherQueryOpts | BestWesternHotelsFetcherQueryOpts | FdjBetsFetcherQueryOpts | SarenzaSizesFetcherQueryOpts | RenaultPricesFetcherQueryOpts | DecathlonProductFallbackFetcherQueryOpts | GenericUnwindRowsFetcherQueryOpts | WorkflowEventsFetcherQueryOpts | ExpiredProductLifetimeFetcherQueryOpts | PerUserFetcherQueryOpts | GenericProxyLockFetcherQueryOpts, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
228
|
-
paginationCount: number;
|
|
229
|
-
paginationPage: number;
|
|
230
|
-
paginationLimit: number;
|
|
231
|
-
} & {
|
|
232
|
-
status: "success";
|
|
233
|
-
} & InternalResponse_entries_Array_distance_Union_undefined_number_rlvt_lat_Union_undefined_number_rlvt_lng_Union_undefined_number_count_number, any, {}>>;
|
|
234
|
-
queryValues: (params: {
|
|
235
|
-
'x-rlvt-no-cache'?: boolean | undefined;
|
|
236
|
-
}, data: {
|
|
237
|
-
datasourceId: string;
|
|
238
|
-
field: string;
|
|
239
|
-
query?: string | undefined;
|
|
240
|
-
limit?: number | undefined;
|
|
241
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
242
|
-
status: "success";
|
|
243
|
-
} & InternalResponse_Array_string, any, {}>>;
|
|
244
218
|
};
|
|
245
219
|
}
|
package/build/api.js
CHANGED
|
@@ -27,39 +27,39 @@ class default_1 {
|
|
|
27
27
|
? configOrInstance
|
|
28
28
|
: axios_1.default.create(configOrInstance);
|
|
29
29
|
}
|
|
30
|
-
|
|
31
|
-
return this.axios.post("/
|
|
30
|
+
query(params, data, options) {
|
|
31
|
+
return this.axios.post("/query", data, Object.assign({}, {
|
|
32
32
|
headers: pick(params, "x-rlvt-no-cache"),
|
|
33
|
+
params: pick(params, "page", "perPage"),
|
|
33
34
|
}, options));
|
|
34
35
|
}
|
|
35
|
-
|
|
36
|
-
return this.axios.post("/
|
|
36
|
+
queryValues(params, data, options) {
|
|
37
|
+
return this.axios.post("/query-values", data, Object.assign({}, {
|
|
37
38
|
headers: pick(params, "x-rlvt-no-cache"),
|
|
38
39
|
}, options));
|
|
39
40
|
}
|
|
40
|
-
|
|
41
|
-
return this.axios.post("/
|
|
41
|
+
fetch(params, data, options) {
|
|
42
|
+
return this.axios.post("/fetch", data, Object.assign({}, {
|
|
42
43
|
headers: pick(params, "x-rlvt-no-cache"),
|
|
43
44
|
}, options));
|
|
44
45
|
}
|
|
45
|
-
|
|
46
|
-
return this.axios.post("/
|
|
46
|
+
count(params, data, options) {
|
|
47
|
+
return this.axios.post("/count", data, Object.assign({}, {
|
|
47
48
|
headers: pick(params, "x-rlvt-no-cache"),
|
|
48
|
-
params: pick(params, "page", "perPage"),
|
|
49
49
|
}, options));
|
|
50
50
|
}
|
|
51
|
-
|
|
52
|
-
return this.axios.post("/
|
|
51
|
+
findAndFetch(params, data, options) {
|
|
52
|
+
return this.axios.post("/find-and-fetch", data, Object.assign({}, {
|
|
53
53
|
headers: pick(params, "x-rlvt-no-cache"),
|
|
54
54
|
}, options));
|
|
55
55
|
}
|
|
56
56
|
get Data() {
|
|
57
57
|
return {
|
|
58
|
+
query: this.query.bind(this),
|
|
59
|
+
queryValues: this.queryValues.bind(this),
|
|
58
60
|
fetch: this.fetch.bind(this),
|
|
59
61
|
count: this.count.bind(this),
|
|
60
|
-
findAndFetch: this.findAndFetch.bind(this)
|
|
61
|
-
query: this.query.bind(this),
|
|
62
|
-
queryValues: this.queryValues.bind(this)
|
|
62
|
+
findAndFetch: this.findAndFetch.bind(this)
|
|
63
63
|
};
|
|
64
64
|
}
|
|
65
65
|
}
|
|
@@ -72,4 +72,4 @@ function pick(obj, ...keys) {
|
|
|
72
72
|
});
|
|
73
73
|
return ret;
|
|
74
74
|
}
|
|
75
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
75
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxvQkFBb0I7QUFDcEIsb0JBQW9COzs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXBCLGtEQUFpRTtBQUdqRSxnREFBOEI7QUFFOUI7SUFHSSxZQUFZLGdCQUFvRDtRQUM1RCxJQUFJLENBQUMsS0FBSyxHQUFHLGNBQWMsSUFBSSxnQkFBZ0I7WUFDM0MsQ0FBQyxDQUFDLGdCQUFnQjtZQUNsQixDQUFDLENBQUMsZUFBSyxDQUFDLE1BQU0sQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFBO0lBQ3hDLENBQUM7SUFFTyxLQUFLLENBQUMsTUFJYixFQUFFLElBQW9hLEVBQUUsT0FBNEI7UUFDamMsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FPbEIsUUFBUSxFQUFFLElBQUksRUFDZCxNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE9BQU8sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLGlCQUFpQixDQUFDO1lBQ3hDLE1BQU0sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLE1BQU0sRUFBRSxTQUFTLENBQUM7U0FDMUMsRUFDRCxPQUFPLENBQ1YsQ0FDSixDQUFDO0lBQ04sQ0FBQztJQUVPLFdBQVcsQ0FBQyxNQUVuQixFQUFFLElBS0YsRUFBRSxPQUE0QjtRQUMzQixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUdsQixlQUFlLEVBQUUsSUFBSSxFQUNyQixNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE9BQU8sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLGlCQUFpQixDQUFDO1NBQzNDLEVBQ0QsT0FBTyxDQUNWLENBQ0osQ0FBQztJQUNOLENBQUM7SUFFTyxLQUFLLENBQUMsTUFFYixFQUFFLElBQW9hLEVBQUUsT0FBNEI7UUFDamMsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FHbEIsUUFBUSxFQUFFLElBQUksRUFDZCxNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE9BQU8sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLGlCQUFpQixDQUFDO1NBQzNDLEVBQ0QsT0FBTyxDQUNWLENBQ0osQ0FBQztJQUNOLENBQUM7SUFFTyxLQUFLLENBQUMsTUFFYixFQUFFLElBQW9hLEVBQUUsT0FBNEI7UUFDamMsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FHbEIsUUFBUSxFQUFFLElBQUksRUFDZCxNQUFNLENBQUMsTUFBTSxDQUNULEVBQUUsRUFDRjtZQUNJLE9BQU8sRUFBRSxJQUFJLENBQUMsTUFBTSxFQUFFLGlCQUFpQixDQUFDO1NBQzNDLEVBQ0QsT0FBTyxDQUNWLENBQ0osQ0FBQztJQUNOLENBQUM7SUFFTyxZQUFZLENBQUMsTUFFcEIsRUFBRSxJQXlLRCxFQUFFLE9BQTRCO1FBQzVCLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBR2xCLGlCQUFpQixFQUFFLElBQUksRUFDdkIsTUFBTSxDQUFDLE1BQU0sQ0FDVCxFQUFFLEVBQ0Y7WUFDSSxPQUFPLEVBQUUsSUFBSSxDQUFDLE1BQU0sRUFBRSxpQkFBaUIsQ0FBQztTQUMzQyxFQUNELE9BQU8sQ0FDVixDQUNKLENBQUM7SUFDTixDQUFDO0lBRUQsSUFBSSxJQUFJO1FBQ0osT0FBTztZQUNILEtBQUssRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUM7WUFDNUIsV0FBVyxFQUFFLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQztZQUN4QyxLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDO1lBQzVCLEtBQUssRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUM7WUFDNUIsWUFBWSxFQUFFLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQztTQUM3QyxDQUFDO0lBQ04sQ0FBQztDQUNKO0FBNVJELDRCQTRSQztBQUVELFNBQVMsSUFBSSxDQUF1QixHQUFNLEVBQUUsR0FBRyxJQUFTO0lBQ3BELE1BQU0sR0FBRyxHQUFlLEVBQWdCLENBQUM7SUFDekMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsRUFBRTtRQUNmLElBQUksR0FBRyxJQUFJLE1BQU0sQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsUUFBUSxDQUFDLEdBQWEsQ0FBQztZQUMvQyxHQUFHLENBQUMsR0FBRyxDQUFDLEdBQUcsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQzVCLENBQUMsQ0FBQyxDQUFDO0lBQ0gsT0FBTyxHQUFHLENBQUM7QUFDZixDQUFDIn0=
|