@layerzerolabs/lz-v2-stellar-sdk 0.2.8 → 0.2.10
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/dist/generated/bml.d.ts +88 -17
- package/dist/generated/bml.js +62 -16
- package/dist/generated/counter.d.ts +281 -102
- package/dist/generated/counter.js +93 -41
- package/dist/generated/endpoint.d.ts +128 -105
- package/dist/generated/endpoint.js +47 -45
- package/dist/generated/sml.d.ts +212 -69
- package/dist/generated/sml.js +103 -53
- package/dist/generated/uln302.d.ts +270 -173
- package/dist/generated/uln302.js +112 -64
- package/package.json +15 -15
- package/src/generated/bml.ts +87 -21
- package/src/generated/counter.ts +268 -91
- package/src/generated/endpoint.ts +133 -105
- package/src/generated/executor.ts +1816 -0
- package/src/generated/executor_helper.ts +843 -0
- package/src/generated/sml.ts +241 -85
- package/src/generated/uln302.ts +285 -191
- package/test/index.test.ts +147 -42
- package/test/suites/constants.ts +7 -3
- package/test/suites/deploy.ts +65 -42
- package/test/suites/localnet.ts +2 -2
- package/test/suites/scan.ts +28 -25
- package/test/utils.ts +199 -0
- package/tsconfig.json +93 -95
|
@@ -0,0 +1,1816 @@
|
|
|
1
|
+
import { Buffer } from "buffer";
|
|
2
|
+
import { Address } from '@stellar/stellar-sdk';
|
|
3
|
+
import {
|
|
4
|
+
AssembledTransaction,
|
|
5
|
+
Client as ContractClient,
|
|
6
|
+
ClientOptions as ContractClientOptions,
|
|
7
|
+
MethodOptions,
|
|
8
|
+
Result,
|
|
9
|
+
Spec as ContractSpec,
|
|
10
|
+
} from '@stellar/stellar-sdk/contract';
|
|
11
|
+
import type {
|
|
12
|
+
u32,
|
|
13
|
+
i32,
|
|
14
|
+
u64,
|
|
15
|
+
i64,
|
|
16
|
+
u128,
|
|
17
|
+
i128,
|
|
18
|
+
u256,
|
|
19
|
+
i256,
|
|
20
|
+
Option,
|
|
21
|
+
Typepoint,
|
|
22
|
+
Duration,
|
|
23
|
+
} from '@stellar/stellar-sdk/contract';
|
|
24
|
+
export * from '@stellar/stellar-sdk'
|
|
25
|
+
export * as contract from '@stellar/stellar-sdk/contract'
|
|
26
|
+
export * as rpc from '@stellar/stellar-sdk/rpc'
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Destination chain configuration for executor fee calculation.
|
|
32
|
+
*
|
|
33
|
+
* Contains gas costs and fee parameters specific to each destination chain.
|
|
34
|
+
* These parameters are used by the fee library to calculate accurate execution fees.
|
|
35
|
+
*/
|
|
36
|
+
export interface DstConfig {
|
|
37
|
+
/**
|
|
38
|
+
* Minimum fee margin in USD (scaled) to ensure profitability.
|
|
39
|
+
*/
|
|
40
|
+
floor_margin_usd: u128;
|
|
41
|
+
/**
|
|
42
|
+
* Base gas cost per lzCompose call on the destination chain.
|
|
43
|
+
*/
|
|
44
|
+
lz_compose_base_gas: u64;
|
|
45
|
+
/**
|
|
46
|
+
* Base gas cost for lzReceive execution on the destination chain.
|
|
47
|
+
*/
|
|
48
|
+
lz_receive_base_gas: u64;
|
|
49
|
+
/**
|
|
50
|
+
* Fee multiplier in basis points for this destination (0 = use default multiplier).
|
|
51
|
+
*/
|
|
52
|
+
multiplier_bps: u32;
|
|
53
|
+
/**
|
|
54
|
+
* Maximum native token value that can be transferred to the destination.
|
|
55
|
+
*/
|
|
56
|
+
native_cap: u128;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Parameters for setting destination configuration.
|
|
62
|
+
*
|
|
63
|
+
* Used when configuring executor settings for a specific destination chain.
|
|
64
|
+
*/
|
|
65
|
+
export interface SetDstConfigParam {
|
|
66
|
+
/**
|
|
67
|
+
* Configuration for the destination chain.
|
|
68
|
+
*/
|
|
69
|
+
dst_config: DstConfig;
|
|
70
|
+
/**
|
|
71
|
+
* Destination endpoint ID (chain identifier).
|
|
72
|
+
*/
|
|
73
|
+
dst_eid: u32;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Parameters for a native token drop.
|
|
79
|
+
*
|
|
80
|
+
* Used to specify native token transfers as part of executor options.
|
|
81
|
+
*/
|
|
82
|
+
export interface NativeDropParams {
|
|
83
|
+
/**
|
|
84
|
+
* Amount of native tokens to transfer.
|
|
85
|
+
*/
|
|
86
|
+
amount: i128;
|
|
87
|
+
/**
|
|
88
|
+
* Receiver address for the native token transfer.
|
|
89
|
+
*/
|
|
90
|
+
receiver: string;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Whitelist entry for authorized (contract, function) pairs.
|
|
96
|
+
*
|
|
97
|
+
* Used to configure which contracts and functions can trigger Executor authorization.
|
|
98
|
+
*/
|
|
99
|
+
export interface WhitelistEntry {
|
|
100
|
+
/**
|
|
101
|
+
* Contract address that is allowed to call the function.
|
|
102
|
+
*/
|
|
103
|
+
contract: string;
|
|
104
|
+
/**
|
|
105
|
+
* Function name that is whitelisted for this contract.
|
|
106
|
+
*/
|
|
107
|
+
fn_name: string;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Signature data for Custom Account authorization.
|
|
113
|
+
* Contains the admin's public key and their Ed25519 signature over the authorization payload.
|
|
114
|
+
*/
|
|
115
|
+
export interface ExecutorSignature {
|
|
116
|
+
/**
|
|
117
|
+
* Admin's Ed25519 public key (32 bytes) - must correspond to a registered admin
|
|
118
|
+
*/
|
|
119
|
+
public_key: Buffer;
|
|
120
|
+
/**
|
|
121
|
+
* Ed25519 signature (64 bytes) over the signature_payload
|
|
122
|
+
*/
|
|
123
|
+
signature: Buffer;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export type ExecutorStorage = {tag: "DstConfig", values: readonly [u32]} | {tag: "Endpoint", values: void} | {tag: "WhitelistedFn", values: readonly [string, string]};
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
export const ExecutorError = {
|
|
131
|
+
1: {message:"EidNotSupported"},
|
|
132
|
+
2: {message:"Unauthorized"},
|
|
133
|
+
3: {message:"UnauthorizedContext"}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
export const EndpointError = {
|
|
137
|
+
1: {message:"AlreadyRegistered"},
|
|
138
|
+
2: {message:"ComposeExists"},
|
|
139
|
+
3: {message:"ComposeNotFound"},
|
|
140
|
+
4: {message:"DefaultReceiveLibUnavailable"},
|
|
141
|
+
5: {message:"DefaultSendLibUnavailable"},
|
|
142
|
+
6: {message:"InsufficientNativeFee"},
|
|
143
|
+
7: {message:"InsufficientZROFee"},
|
|
144
|
+
8: {message:"InvalidExpiry"},
|
|
145
|
+
9: {message:"InvalidIndex"},
|
|
146
|
+
10: {message:"InvalidNonce"},
|
|
147
|
+
11: {message:"InvalidPayloadHash"},
|
|
148
|
+
12: {message:"InvalidReceiveLibrary"},
|
|
149
|
+
13: {message:"OnlyNonDefaultLib"},
|
|
150
|
+
14: {message:"OnlyReceiveLib"},
|
|
151
|
+
15: {message:"OnlyRegisteredLib"},
|
|
152
|
+
16: {message:"OnlySendLib"},
|
|
153
|
+
17: {message:"PathNotInitializable"},
|
|
154
|
+
18: {message:"PathNotVerifiable"},
|
|
155
|
+
19: {message:"PayloadHashNotFound"},
|
|
156
|
+
20: {message:"SameValue"},
|
|
157
|
+
21: {message:"Unauthorized"},
|
|
158
|
+
22: {message:"UnsupportedEid"},
|
|
159
|
+
23: {message:"ZeroZROFee"},
|
|
160
|
+
24: {message:"ZROUnavailable"}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Parameters for sending a cross-chain message.
|
|
185
|
+
*/
|
|
186
|
+
export interface MessagingParams {
|
|
187
|
+
/**
|
|
188
|
+
* Destination endpoint ID (chain identifier).
|
|
189
|
+
*/
|
|
190
|
+
dst_eid: u32;
|
|
191
|
+
/**
|
|
192
|
+
* The message payload to send.
|
|
193
|
+
*/
|
|
194
|
+
message: Buffer;
|
|
195
|
+
/**
|
|
196
|
+
* Encoded executor and DVN options.
|
|
197
|
+
*/
|
|
198
|
+
options: Buffer;
|
|
199
|
+
/**
|
|
200
|
+
* Whether to pay fees in ZRO token instead of native token.
|
|
201
|
+
*/
|
|
202
|
+
pay_in_zro: boolean;
|
|
203
|
+
/**
|
|
204
|
+
* Receiver address on the destination chain (32 bytes).
|
|
205
|
+
*/
|
|
206
|
+
receiver: Buffer;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Source message information identifying where a cross-chain message came from.
|
|
212
|
+
*/
|
|
213
|
+
export interface Origin {
|
|
214
|
+
/**
|
|
215
|
+
* Nonce for this pathway.
|
|
216
|
+
*/
|
|
217
|
+
nonce: u64;
|
|
218
|
+
/**
|
|
219
|
+
* Sender address on the source chain (32 bytes).
|
|
220
|
+
*/
|
|
221
|
+
sender: Buffer;
|
|
222
|
+
/**
|
|
223
|
+
* Source endpoint ID (chain identifier).
|
|
224
|
+
*/
|
|
225
|
+
src_eid: u32;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* Fee structure for cross-chain messaging.
|
|
231
|
+
*/
|
|
232
|
+
export interface MessagingFee {
|
|
233
|
+
/**
|
|
234
|
+
* Fee paid in native token (XLM).
|
|
235
|
+
*/
|
|
236
|
+
native_fee: i128;
|
|
237
|
+
/**
|
|
238
|
+
* Fee paid in ZRO token (LayerZero token).
|
|
239
|
+
*/
|
|
240
|
+
zro_fee: i128;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* Receipt returned after successfully sending a cross-chain message.
|
|
246
|
+
*/
|
|
247
|
+
export interface MessagingReceipt {
|
|
248
|
+
/**
|
|
249
|
+
* The fees charged for sending the message.
|
|
250
|
+
*/
|
|
251
|
+
fee: MessagingFee;
|
|
252
|
+
/**
|
|
253
|
+
* Globally unique identifier for the message.
|
|
254
|
+
*/
|
|
255
|
+
guid: Buffer;
|
|
256
|
+
/**
|
|
257
|
+
* The outbound nonce for this pathway.
|
|
258
|
+
*/
|
|
259
|
+
nonce: u64;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Type of message library indicating supported operations.
|
|
264
|
+
*/
|
|
265
|
+
export type MessageLibType = {tag: "Send", values: void} | {tag: "Receive", values: void} | {tag: "SendAndReceive", values: void};
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* Version information for a message library.
|
|
270
|
+
*
|
|
271
|
+
* Note: `minor` and `endpoint_version` use `u32` instead of `u8` because Stellar does not
|
|
272
|
+
* support `u8` types in contract interface functions.
|
|
273
|
+
*/
|
|
274
|
+
export interface MessageLibVersion {
|
|
275
|
+
/**
|
|
276
|
+
* Endpoint version (should not exceed u8::MAX = 255).
|
|
277
|
+
*/
|
|
278
|
+
endpoint_version: u32;
|
|
279
|
+
/**
|
|
280
|
+
* Major version number.
|
|
281
|
+
*/
|
|
282
|
+
major: u64;
|
|
283
|
+
/**
|
|
284
|
+
* Minor version number (should not exceed u8::MAX = 255).
|
|
285
|
+
*/
|
|
286
|
+
minor: u32;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* Timeout configuration for receive library transitions.
|
|
292
|
+
*/
|
|
293
|
+
export interface Timeout {
|
|
294
|
+
/**
|
|
295
|
+
* Unix timestamp when the timeout expires.
|
|
296
|
+
*/
|
|
297
|
+
expiry: u64;
|
|
298
|
+
/**
|
|
299
|
+
* The new library address to transition to.
|
|
300
|
+
*/
|
|
301
|
+
lib: string;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
/**
|
|
306
|
+
* Parameters for setting message library configuration.
|
|
307
|
+
*/
|
|
308
|
+
export interface SetConfigParam {
|
|
309
|
+
/**
|
|
310
|
+
* XDR-encoded configuration data.
|
|
311
|
+
*/
|
|
312
|
+
config: Buffer;
|
|
313
|
+
/**
|
|
314
|
+
* The type of configuration (e.g., executor, ULN).
|
|
315
|
+
*/
|
|
316
|
+
config_type: u32;
|
|
317
|
+
/**
|
|
318
|
+
* The endpoint ID this config applies to.
|
|
319
|
+
*/
|
|
320
|
+
eid: u32;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* Resolved library information with default status.
|
|
326
|
+
*/
|
|
327
|
+
export interface ResolvedLibrary {
|
|
328
|
+
/**
|
|
329
|
+
* Whether this is the default library (true) or OApp-specific (false).
|
|
330
|
+
*/
|
|
331
|
+
is_default: boolean;
|
|
332
|
+
/**
|
|
333
|
+
* The resolved library address.
|
|
334
|
+
*/
|
|
335
|
+
lib: string;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* Outbound packet containing all information for cross-chain transmission.
|
|
341
|
+
*/
|
|
342
|
+
export interface OutboundPacket {
|
|
343
|
+
/**
|
|
344
|
+
* Destination endpoint ID.
|
|
345
|
+
*/
|
|
346
|
+
dst_eid: u32;
|
|
347
|
+
/**
|
|
348
|
+
* Globally unique identifier for this message.
|
|
349
|
+
*/
|
|
350
|
+
guid: Buffer;
|
|
351
|
+
/**
|
|
352
|
+
* The message payload.
|
|
353
|
+
*/
|
|
354
|
+
message: Buffer;
|
|
355
|
+
/**
|
|
356
|
+
* Outbound nonce for this pathway.
|
|
357
|
+
*/
|
|
358
|
+
nonce: u64;
|
|
359
|
+
/**
|
|
360
|
+
* Receiver address on destination chain (32 bytes).
|
|
361
|
+
*/
|
|
362
|
+
receiver: Buffer;
|
|
363
|
+
/**
|
|
364
|
+
* Sender address on source chain.
|
|
365
|
+
*/
|
|
366
|
+
sender: string;
|
|
367
|
+
/**
|
|
368
|
+
* Source endpoint ID.
|
|
369
|
+
*/
|
|
370
|
+
src_eid: u32;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* A fee recipient with the amount to be paid.
|
|
376
|
+
*/
|
|
377
|
+
export interface FeeRecipient {
|
|
378
|
+
/**
|
|
379
|
+
* Amount of fee to pay.
|
|
380
|
+
*/
|
|
381
|
+
amount: i128;
|
|
382
|
+
/**
|
|
383
|
+
* The address to send the fee to.
|
|
384
|
+
*/
|
|
385
|
+
to: string;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* Result of send operation containing fees and encoded packet.
|
|
391
|
+
*/
|
|
392
|
+
export interface FeesAndPacket {
|
|
393
|
+
/**
|
|
394
|
+
* The encoded packet ready for transmission.
|
|
395
|
+
*/
|
|
396
|
+
encoded_packet: Buffer;
|
|
397
|
+
/**
|
|
398
|
+
* List of native token fee recipients (executor, DVNs, treasury).
|
|
399
|
+
*/
|
|
400
|
+
native_fee_recipients: Array<FeeRecipient>;
|
|
401
|
+
/**
|
|
402
|
+
* List of ZRO token fee recipients (treasury).
|
|
403
|
+
*/
|
|
404
|
+
zro_fee_recipients: Array<FeeRecipient>;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
export const PacketCodecV1Error = {
|
|
408
|
+
1001: {message:"InvalidPacketHeader"},
|
|
409
|
+
1002: {message:"InvalidPacketVersion"}
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
export const WorkerOptionsError = {
|
|
413
|
+
1101: {message:"InvalidBytesLength"},
|
|
414
|
+
1102: {message:"InvalidLegacyOptionsType1"},
|
|
415
|
+
1103: {message:"InvalidLegacyOptionsType2"},
|
|
416
|
+
1104: {message:"InvalidOptionType"},
|
|
417
|
+
1105: {message:"InvalidOptions"},
|
|
418
|
+
1106: {message:"InvalidWorkerId"},
|
|
419
|
+
1107: {message:"LegacyOptionsType1GasOverflow"},
|
|
420
|
+
1108: {message:"LegacyOptionsType2AmountOverflow"},
|
|
421
|
+
1109: {message:"LegacyOptionsType2GasOverflow"}
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
export const BufferReaderError = {
|
|
425
|
+
1000: {message:"InvalidLength"},
|
|
426
|
+
1001: {message:"InvalidAddressPayload"}
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
export const BufferWriterError = {
|
|
430
|
+
1100: {message:"InvalidAddressPayload"}
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
export const TtlError = {
|
|
434
|
+
1200: {message:"InvalidTtlConfig"},
|
|
435
|
+
1201: {message:"TtlConfigFrozen"},
|
|
436
|
+
1202: {message:"TtlConfigAlreadyFrozen"}
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
export const OwnableError = {
|
|
440
|
+
1300: {message:"OwnerAlreadySet"},
|
|
441
|
+
1301: {message:"OwnerNotSet"}
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
export const BytesExtError = {
|
|
445
|
+
1400: {message:"LengthMismatch"}
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
export type DefaultOwnableStorage = {tag: "Owner", values: void};
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* A pair of TTL values: threshold (when to trigger extension) and extend_to (target TTL).
|
|
455
|
+
*/
|
|
456
|
+
export interface TtlConfig {
|
|
457
|
+
/**
|
|
458
|
+
* Target TTL after extension (in ledgers).
|
|
459
|
+
*/
|
|
460
|
+
extend_to: u32;
|
|
461
|
+
/**
|
|
462
|
+
* TTL threshold that triggers extension (in ledgers).
|
|
463
|
+
*/
|
|
464
|
+
threshold: u32;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
export type TtlConfigStorage = {tag: "Frozen", values: void} | {tag: "Instance", values: void} | {tag: "Persistent", values: void};
|
|
468
|
+
|
|
469
|
+
export const WorkerError = {
|
|
470
|
+
1200: {message:"AdminAlreadyExists"},
|
|
471
|
+
1201: {message:"AdminNotFound"},
|
|
472
|
+
1202: {message:"AlreadyOnAllowlist"},
|
|
473
|
+
1203: {message:"AlreadyOnDenylist"},
|
|
474
|
+
1204: {message:"AttemptingToRemoveOnlyAdmin"},
|
|
475
|
+
1205: {message:"DepositAddressNotSet"},
|
|
476
|
+
1206: {message:"MessageLibAlreadySupported"},
|
|
477
|
+
1207: {message:"MessageLibNotSupported"},
|
|
478
|
+
1208: {message:"NoAdminsProvided"},
|
|
479
|
+
1209: {message:"NotAllowed"},
|
|
480
|
+
1210: {message:"NotOnAllowlist"},
|
|
481
|
+
1211: {message:"NotOnDenylist"},
|
|
482
|
+
1212: {message:"PauseStatusUnchanged"},
|
|
483
|
+
1213: {message:"PriceFeedNotSet"},
|
|
484
|
+
1214: {message:"ReInitialize"},
|
|
485
|
+
1215: {message:"Unauthorized"},
|
|
486
|
+
1216: {message:"UnsupportedMessageLib"},
|
|
487
|
+
1217: {message:"WorkerFeeLibNotSet"},
|
|
488
|
+
1218: {message:"WorkerIsPaused"}
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
/**
|
|
504
|
+
* Parameters for DVN fee calculation.
|
|
505
|
+
*
|
|
506
|
+
* Contains all inputs needed by the fee library to calculate verification fees
|
|
507
|
+
* for cross-chain messages. Includes message parameters, common configuration,
|
|
508
|
+
* and destination-specific settings.
|
|
509
|
+
*/
|
|
510
|
+
export interface DvnFeeParams {
|
|
511
|
+
/**
|
|
512
|
+
* Number of block confirmations required.
|
|
513
|
+
*/
|
|
514
|
+
confirmations: u64;
|
|
515
|
+
/**
|
|
516
|
+
* Default fee multiplier in basis points (used if no dst-specific multiplier).
|
|
517
|
+
*/
|
|
518
|
+
default_multiplier_bps: u32;
|
|
519
|
+
/**
|
|
520
|
+
* Destination endpoint ID (chain identifier).
|
|
521
|
+
*/
|
|
522
|
+
dst_eid: u32;
|
|
523
|
+
/**
|
|
524
|
+
* Minimum fee margin in USD (scaled).
|
|
525
|
+
*/
|
|
526
|
+
floor_margin_usd: u128;
|
|
527
|
+
/**
|
|
528
|
+
* ============================================================================================
|
|
529
|
+
* Destination-Specific Configuration
|
|
530
|
+
* ============================================================================================
|
|
531
|
+
* Gas estimate for verification on destination chain.
|
|
532
|
+
*/
|
|
533
|
+
gas: u128;
|
|
534
|
+
/**
|
|
535
|
+
* Destination-specific fee multiplier in basis points (0 = use default).
|
|
536
|
+
*/
|
|
537
|
+
multiplier_bps: u32;
|
|
538
|
+
/**
|
|
539
|
+
* DVN options
|
|
540
|
+
*/
|
|
541
|
+
options: Buffer;
|
|
542
|
+
/**
|
|
543
|
+
* ============================================================================================
|
|
544
|
+
* Common Configuration
|
|
545
|
+
* ============================================================================================
|
|
546
|
+
* Price feed contract address for gas price and exchange rate data.
|
|
547
|
+
*/
|
|
548
|
+
price_feed: string;
|
|
549
|
+
/**
|
|
550
|
+
* Number of required signatures (quorum).
|
|
551
|
+
*/
|
|
552
|
+
quorum: u32;
|
|
553
|
+
/**
|
|
554
|
+
* ============================================================================================
|
|
555
|
+
* Message Parameters
|
|
556
|
+
* ============================================================================================
|
|
557
|
+
* The OApp sender address.
|
|
558
|
+
*/
|
|
559
|
+
sender: string;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
/**
|
|
564
|
+
* Parameters for executor fee calculation.
|
|
565
|
+
*
|
|
566
|
+
* Contains all inputs needed by the fee library to calculate execution fees
|
|
567
|
+
* for cross-chain messages. Includes message parameters, common configuration,
|
|
568
|
+
* and destination-specific settings.
|
|
569
|
+
*/
|
|
570
|
+
export interface FeeParams {
|
|
571
|
+
/**
|
|
572
|
+
* Size of the message calldata in bytes.
|
|
573
|
+
*/
|
|
574
|
+
calldata_size: u32;
|
|
575
|
+
/**
|
|
576
|
+
* Default fee multiplier in basis points (used if no dst-specific multiplier).
|
|
577
|
+
*/
|
|
578
|
+
default_multiplier_bps: u32;
|
|
579
|
+
/**
|
|
580
|
+
* Destination endpoint ID (chain identifier).
|
|
581
|
+
*/
|
|
582
|
+
dst_eid: u32;
|
|
583
|
+
/**
|
|
584
|
+
* Minimum fee margin in USD (scaled).
|
|
585
|
+
*/
|
|
586
|
+
floor_margin_usd: u128;
|
|
587
|
+
/**
|
|
588
|
+
* Base gas for each lzCompose call on destination chain.
|
|
589
|
+
*/
|
|
590
|
+
lz_compose_base_gas: u64;
|
|
591
|
+
/**
|
|
592
|
+
* ============================================================================================
|
|
593
|
+
* Destination-Specific Configuration
|
|
594
|
+
* ============================================================================================
|
|
595
|
+
* Base gas for lzReceive execution on destination chain.
|
|
596
|
+
*/
|
|
597
|
+
lz_receive_base_gas: u64;
|
|
598
|
+
/**
|
|
599
|
+
* Destination-specific fee multiplier in basis points (0 = use default).
|
|
600
|
+
*/
|
|
601
|
+
multiplier_bps: u32;
|
|
602
|
+
/**
|
|
603
|
+
* Maximum native token value that can be sent.
|
|
604
|
+
*/
|
|
605
|
+
native_cap: u128;
|
|
606
|
+
/**
|
|
607
|
+
* Encoded executor options (lzReceive gas, lzCompose, nativeDrop, etc.).
|
|
608
|
+
*/
|
|
609
|
+
options: Buffer;
|
|
610
|
+
/**
|
|
611
|
+
* ============================================================================================
|
|
612
|
+
* Common Configuration
|
|
613
|
+
* ============================================================================================
|
|
614
|
+
* Price feed contract address for gas price and exchange rate data.
|
|
615
|
+
*/
|
|
616
|
+
price_feed: string;
|
|
617
|
+
/**
|
|
618
|
+
* ============================================================================================
|
|
619
|
+
* Message Parameters
|
|
620
|
+
* ============================================================================================
|
|
621
|
+
* The OApp sender address.
|
|
622
|
+
*/
|
|
623
|
+
sender: string;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
/**
|
|
628
|
+
* Gas price information for a destination endpoint.
|
|
629
|
+
*
|
|
630
|
+
* Contains the exchange rate and gas costs needed for cross-chain fee calculations.
|
|
631
|
+
*/
|
|
632
|
+
export interface Price {
|
|
633
|
+
/**
|
|
634
|
+
* Gas cost per byte of calldata on the destination chain.
|
|
635
|
+
*/
|
|
636
|
+
gas_per_byte: u32;
|
|
637
|
+
/**
|
|
638
|
+
* Gas price in the smallest unit (wei for EVM, stroops for Stellar).
|
|
639
|
+
*/
|
|
640
|
+
gas_price_in_unit: u64;
|
|
641
|
+
/**
|
|
642
|
+
* Price ratio = (remote native token price / local native token price) * PRICE_RATIO_DENOMINATOR.
|
|
643
|
+
* Used to convert destination chain gas costs to source chain native token.
|
|
644
|
+
*/
|
|
645
|
+
price_ratio: u128;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
/**
|
|
650
|
+
* Fee estimation result with detailed breakdown.
|
|
651
|
+
*
|
|
652
|
+
* Contains the calculated fee and all intermediate values used in the calculation.
|
|
653
|
+
*/
|
|
654
|
+
export interface FeeEstimate {
|
|
655
|
+
/**
|
|
656
|
+
* Source chain native token price in USD (scaled).
|
|
657
|
+
*/
|
|
658
|
+
native_price_usd: u128;
|
|
659
|
+
/**
|
|
660
|
+
* Price ratio used for the calculation.
|
|
661
|
+
*/
|
|
662
|
+
price_ratio: u128;
|
|
663
|
+
/**
|
|
664
|
+
* Denominator for the price ratio (typically 10^20).
|
|
665
|
+
*/
|
|
666
|
+
price_ratio_denominator: u128;
|
|
667
|
+
/**
|
|
668
|
+
* Total gas fee in source chain native token units.
|
|
669
|
+
*/
|
|
670
|
+
total_gas_fee: i128;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
export type WorkerStorage = {tag: "Paused", values: void} | {tag: "DepositAddress", values: void} | {tag: "PriceFeed", values: void} | {tag: "WorkerFeeLib", values: void} | {tag: "DefaultMultiplierBps", values: void} | {tag: "SupportedOptionTypes", values: readonly [u32]} | {tag: "MessageLibs", values: void} | {tag: "Allowlist", values: readonly [string]} | {tag: "Denylist", values: readonly [string]} | {tag: "AllowlistSize", values: void} | {tag: "Admins", values: void};
|
|
674
|
+
|
|
675
|
+
export interface Client {
|
|
676
|
+
/**
|
|
677
|
+
* Construct and simulate a set_paused transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
678
|
+
* Sets the paused state of the worker.
|
|
679
|
+
*
|
|
680
|
+
* When paused, the worker will reject new job assignments (e.g., assign_job, get_fee).
|
|
681
|
+
* Existing jobs in progress are not affected.
|
|
682
|
+
*
|
|
683
|
+
* # Arguments
|
|
684
|
+
* * `paused` - `true` to pause, `false` to unpause
|
|
685
|
+
*/
|
|
686
|
+
set_paused: ({paused}: {paused: boolean}, txnOptions?: {
|
|
687
|
+
/**
|
|
688
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
689
|
+
*/
|
|
690
|
+
fee?: number;
|
|
691
|
+
|
|
692
|
+
/**
|
|
693
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
694
|
+
*/
|
|
695
|
+
timeoutInSeconds?: number;
|
|
696
|
+
|
|
697
|
+
/**
|
|
698
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
699
|
+
*/
|
|
700
|
+
simulate?: boolean;
|
|
701
|
+
}) => Promise<AssembledTransaction<null>>
|
|
702
|
+
|
|
703
|
+
/**
|
|
704
|
+
* Construct and simulate a set_supported_message_lib transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
705
|
+
* Sets whether a message library is supported by this worker.
|
|
706
|
+
*
|
|
707
|
+
* Message libraries (e.g., ULN302) call workers to assign jobs. Only supported
|
|
708
|
+
* libraries can interact with this worker.
|
|
709
|
+
*
|
|
710
|
+
* # Arguments
|
|
711
|
+
* * `message_lib` - The message library contract address
|
|
712
|
+
* * `supported` - `true` to add support, `false` to remove support
|
|
713
|
+
*/
|
|
714
|
+
set_supported_message_lib: ({message_lib, supported}: {message_lib: string, supported: boolean}, txnOptions?: {
|
|
715
|
+
/**
|
|
716
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
717
|
+
*/
|
|
718
|
+
fee?: number;
|
|
719
|
+
|
|
720
|
+
/**
|
|
721
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
722
|
+
*/
|
|
723
|
+
timeoutInSeconds?: number;
|
|
724
|
+
|
|
725
|
+
/**
|
|
726
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
727
|
+
*/
|
|
728
|
+
simulate?: boolean;
|
|
729
|
+
}) => Promise<AssembledTransaction<null>>
|
|
730
|
+
|
|
731
|
+
/**
|
|
732
|
+
* Construct and simulate a set_allowlist transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
733
|
+
* Sets allowlist status for an OApp address.
|
|
734
|
+
*
|
|
735
|
+
* When the allowlist is empty, all OApps are allowed (unless on denylist).
|
|
736
|
+
* When the allowlist is not empty, only allowlisted OApps are allowed.
|
|
737
|
+
* Denylist always takes precedence over allowlist.
|
|
738
|
+
*
|
|
739
|
+
* # Arguments
|
|
740
|
+
* * `oapp` - The OApp contract address
|
|
741
|
+
* * `allowed` - `true` to add to allowlist, `false` to remove
|
|
742
|
+
*/
|
|
743
|
+
set_allowlist: ({oapp, allowed}: {oapp: string, allowed: boolean}, txnOptions?: {
|
|
744
|
+
/**
|
|
745
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
746
|
+
*/
|
|
747
|
+
fee?: number;
|
|
748
|
+
|
|
749
|
+
/**
|
|
750
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
751
|
+
*/
|
|
752
|
+
timeoutInSeconds?: number;
|
|
753
|
+
|
|
754
|
+
/**
|
|
755
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
756
|
+
*/
|
|
757
|
+
simulate?: boolean;
|
|
758
|
+
}) => Promise<AssembledTransaction<null>>
|
|
759
|
+
|
|
760
|
+
/**
|
|
761
|
+
* Construct and simulate a set_denylist transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
762
|
+
* Sets denylist status for an OApp address.
|
|
763
|
+
*
|
|
764
|
+
* Denylisted OApps are blocked from using this worker, even if they're on
|
|
765
|
+
* the allowlist (denylist takes precedence).
|
|
766
|
+
*
|
|
767
|
+
* # Arguments
|
|
768
|
+
* * `oapp` - The OApp contract address
|
|
769
|
+
* * `denied` - `true` to add to denylist, `false` to remove
|
|
770
|
+
*/
|
|
771
|
+
set_denylist: ({oapp, denied}: {oapp: string, denied: boolean}, txnOptions?: {
|
|
772
|
+
/**
|
|
773
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
774
|
+
*/
|
|
775
|
+
fee?: number;
|
|
776
|
+
|
|
777
|
+
/**
|
|
778
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
779
|
+
*/
|
|
780
|
+
timeoutInSeconds?: number;
|
|
781
|
+
|
|
782
|
+
/**
|
|
783
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
784
|
+
*/
|
|
785
|
+
simulate?: boolean;
|
|
786
|
+
}) => Promise<AssembledTransaction<null>>
|
|
787
|
+
|
|
788
|
+
/**
|
|
789
|
+
* Construct and simulate a set_default_multiplier_bps transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
790
|
+
* Sets the default fee multiplier in basis points.
|
|
791
|
+
*
|
|
792
|
+
* The multiplier is applied to base fees during fee calculation. Used when
|
|
793
|
+
* no destination-specific multiplier is configured.
|
|
794
|
+
*
|
|
795
|
+
* # Arguments
|
|
796
|
+
* * `admin` - Admin address (must provide authorization)
|
|
797
|
+
* * `multiplier_bps` - Multiplier in basis points (10000 = 1x, 12000 = 1.2x)
|
|
798
|
+
*/
|
|
799
|
+
set_default_multiplier_bps: ({admin, multiplier_bps}: {admin: string, multiplier_bps: u32}, txnOptions?: {
|
|
800
|
+
/**
|
|
801
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
802
|
+
*/
|
|
803
|
+
fee?: number;
|
|
804
|
+
|
|
805
|
+
/**
|
|
806
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
807
|
+
*/
|
|
808
|
+
timeoutInSeconds?: number;
|
|
809
|
+
|
|
810
|
+
/**
|
|
811
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
812
|
+
*/
|
|
813
|
+
simulate?: boolean;
|
|
814
|
+
}) => Promise<AssembledTransaction<null>>
|
|
815
|
+
|
|
816
|
+
/**
|
|
817
|
+
* Construct and simulate a set_deposit_address transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
818
|
+
* Sets the deposit address where worker fees are collected.
|
|
819
|
+
*
|
|
820
|
+
* When jobs are assigned, fees are directed to this address.
|
|
821
|
+
*
|
|
822
|
+
* # Arguments
|
|
823
|
+
* * `admin` - Admin address (must provide authorization)
|
|
824
|
+
* * `deposit_address` - Address to receive collected fees
|
|
825
|
+
*/
|
|
826
|
+
set_deposit_address: ({admin, deposit_address}: {admin: string, deposit_address: string}, txnOptions?: {
|
|
827
|
+
/**
|
|
828
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
829
|
+
*/
|
|
830
|
+
fee?: number;
|
|
831
|
+
|
|
832
|
+
/**
|
|
833
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
834
|
+
*/
|
|
835
|
+
timeoutInSeconds?: number;
|
|
836
|
+
|
|
837
|
+
/**
|
|
838
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
839
|
+
*/
|
|
840
|
+
simulate?: boolean;
|
|
841
|
+
}) => Promise<AssembledTransaction<null>>
|
|
842
|
+
|
|
843
|
+
/**
|
|
844
|
+
* Construct and simulate a set_supported_option_types transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
845
|
+
* Sets supported executor option types for a destination endpoint.
|
|
846
|
+
*
|
|
847
|
+
* # Arguments
|
|
848
|
+
* * `admin` - Admin address (must provide authorization)
|
|
849
|
+
* * `eid` - Destination endpoint ID (chain identifier)
|
|
850
|
+
* * `option_types` - Encoded supported option types
|
|
851
|
+
*/
|
|
852
|
+
set_supported_option_types: ({admin, eid, option_types}: {admin: string, eid: u32, option_types: Buffer}, txnOptions?: {
|
|
853
|
+
/**
|
|
854
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
855
|
+
*/
|
|
856
|
+
fee?: number;
|
|
857
|
+
|
|
858
|
+
/**
|
|
859
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
860
|
+
*/
|
|
861
|
+
timeoutInSeconds?: number;
|
|
862
|
+
|
|
863
|
+
/**
|
|
864
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
865
|
+
*/
|
|
866
|
+
simulate?: boolean;
|
|
867
|
+
}) => Promise<AssembledTransaction<null>>
|
|
868
|
+
|
|
869
|
+
/**
|
|
870
|
+
* Construct and simulate a set_worker_fee_lib transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
871
|
+
* Sets the worker fee library contract address.
|
|
872
|
+
*
|
|
873
|
+
* The fee library calculates fees based on executor options and price feed data.
|
|
874
|
+
*
|
|
875
|
+
* # Arguments
|
|
876
|
+
* * `admin` - Admin address (must provide authorization)
|
|
877
|
+
* * `worker_fee_lib` - Fee library contract address implementing `IExecutorFeeLib`
|
|
878
|
+
*/
|
|
879
|
+
set_worker_fee_lib: ({admin, worker_fee_lib}: {admin: string, worker_fee_lib: string}, txnOptions?: {
|
|
880
|
+
/**
|
|
881
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
882
|
+
*/
|
|
883
|
+
fee?: number;
|
|
884
|
+
|
|
885
|
+
/**
|
|
886
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
887
|
+
*/
|
|
888
|
+
timeoutInSeconds?: number;
|
|
889
|
+
|
|
890
|
+
/**
|
|
891
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
892
|
+
*/
|
|
893
|
+
simulate?: boolean;
|
|
894
|
+
}) => Promise<AssembledTransaction<null>>
|
|
895
|
+
|
|
896
|
+
/**
|
|
897
|
+
* Construct and simulate a set_price_feed transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
898
|
+
* Sets the price feed contract address.
|
|
899
|
+
*
|
|
900
|
+
* The price feed provides gas prices and exchange rates for cross-chain
|
|
901
|
+
* fee calculations.
|
|
902
|
+
*
|
|
903
|
+
* # Arguments
|
|
904
|
+
* * `admin` - Admin address (must provide authorization)
|
|
905
|
+
* * `price_feed` - Price feed contract address implementing `ILayerZeroPriceFeed`
|
|
906
|
+
*/
|
|
907
|
+
set_price_feed: ({admin, price_feed}: {admin: string, price_feed: string}, txnOptions?: {
|
|
908
|
+
/**
|
|
909
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
910
|
+
*/
|
|
911
|
+
fee?: number;
|
|
912
|
+
|
|
913
|
+
/**
|
|
914
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
915
|
+
*/
|
|
916
|
+
timeoutInSeconds?: number;
|
|
917
|
+
|
|
918
|
+
/**
|
|
919
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
920
|
+
*/
|
|
921
|
+
simulate?: boolean;
|
|
922
|
+
}) => Promise<AssembledTransaction<null>>
|
|
923
|
+
|
|
924
|
+
/**
|
|
925
|
+
* Construct and simulate a is_admin transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
926
|
+
* Returns whether an address is an admin.
|
|
927
|
+
*
|
|
928
|
+
* # Arguments
|
|
929
|
+
* * `admin` - The address to check
|
|
930
|
+
*/
|
|
931
|
+
is_admin: ({admin}: {admin: string}, txnOptions?: {
|
|
932
|
+
/**
|
|
933
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
934
|
+
*/
|
|
935
|
+
fee?: number;
|
|
936
|
+
|
|
937
|
+
/**
|
|
938
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
939
|
+
*/
|
|
940
|
+
timeoutInSeconds?: number;
|
|
941
|
+
|
|
942
|
+
/**
|
|
943
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
944
|
+
*/
|
|
945
|
+
simulate?: boolean;
|
|
946
|
+
}) => Promise<AssembledTransaction<boolean>>
|
|
947
|
+
|
|
948
|
+
/**
|
|
949
|
+
* Construct and simulate a admins transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
950
|
+
* Returns all admin addresses.
|
|
951
|
+
*/
|
|
952
|
+
admins: (txnOptions?: {
|
|
953
|
+
/**
|
|
954
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
955
|
+
*/
|
|
956
|
+
fee?: number;
|
|
957
|
+
|
|
958
|
+
/**
|
|
959
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
960
|
+
*/
|
|
961
|
+
timeoutInSeconds?: number;
|
|
962
|
+
|
|
963
|
+
/**
|
|
964
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
965
|
+
*/
|
|
966
|
+
simulate?: boolean;
|
|
967
|
+
}) => Promise<AssembledTransaction<Array<string>>>
|
|
968
|
+
|
|
969
|
+
/**
|
|
970
|
+
* Construct and simulate a paused transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
971
|
+
* Returns whether the worker is paused.
|
|
972
|
+
*/
|
|
973
|
+
paused: (txnOptions?: {
|
|
974
|
+
/**
|
|
975
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
976
|
+
*/
|
|
977
|
+
fee?: number;
|
|
978
|
+
|
|
979
|
+
/**
|
|
980
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
981
|
+
*/
|
|
982
|
+
timeoutInSeconds?: number;
|
|
983
|
+
|
|
984
|
+
/**
|
|
985
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
986
|
+
*/
|
|
987
|
+
simulate?: boolean;
|
|
988
|
+
}) => Promise<AssembledTransaction<boolean>>
|
|
989
|
+
|
|
990
|
+
/**
|
|
991
|
+
* Construct and simulate a is_supported_message_lib transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
992
|
+
* Returns whether a message library is supported.
|
|
993
|
+
*
|
|
994
|
+
* # Arguments
|
|
995
|
+
* * `message_lib` - Message library contract address
|
|
996
|
+
*/
|
|
997
|
+
is_supported_message_lib: ({message_lib}: {message_lib: string}, txnOptions?: {
|
|
998
|
+
/**
|
|
999
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1000
|
+
*/
|
|
1001
|
+
fee?: number;
|
|
1002
|
+
|
|
1003
|
+
/**
|
|
1004
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1005
|
+
*/
|
|
1006
|
+
timeoutInSeconds?: number;
|
|
1007
|
+
|
|
1008
|
+
/**
|
|
1009
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1010
|
+
*/
|
|
1011
|
+
simulate?: boolean;
|
|
1012
|
+
}) => Promise<AssembledTransaction<boolean>>
|
|
1013
|
+
|
|
1014
|
+
/**
|
|
1015
|
+
* Construct and simulate a message_libs transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1016
|
+
* Returns all supported message library addresses.
|
|
1017
|
+
*
|
|
1018
|
+
* # Returns
|
|
1019
|
+
* Vector of supported message library contract addresses.
|
|
1020
|
+
*/
|
|
1021
|
+
message_libs: (txnOptions?: {
|
|
1022
|
+
/**
|
|
1023
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1024
|
+
*/
|
|
1025
|
+
fee?: number;
|
|
1026
|
+
|
|
1027
|
+
/**
|
|
1028
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1029
|
+
*/
|
|
1030
|
+
timeoutInSeconds?: number;
|
|
1031
|
+
|
|
1032
|
+
/**
|
|
1033
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1034
|
+
*/
|
|
1035
|
+
simulate?: boolean;
|
|
1036
|
+
}) => Promise<AssembledTransaction<Array<string>>>
|
|
1037
|
+
|
|
1038
|
+
/**
|
|
1039
|
+
* Construct and simulate a is_on_allowlist transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1040
|
+
* Returns whether an OApp is on the allowlist.
|
|
1041
|
+
*
|
|
1042
|
+
* # Arguments
|
|
1043
|
+
* * `oapp` - OApp contract address
|
|
1044
|
+
*/
|
|
1045
|
+
is_on_allowlist: ({oapp}: {oapp: string}, txnOptions?: {
|
|
1046
|
+
/**
|
|
1047
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1048
|
+
*/
|
|
1049
|
+
fee?: number;
|
|
1050
|
+
|
|
1051
|
+
/**
|
|
1052
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1053
|
+
*/
|
|
1054
|
+
timeoutInSeconds?: number;
|
|
1055
|
+
|
|
1056
|
+
/**
|
|
1057
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1058
|
+
*/
|
|
1059
|
+
simulate?: boolean;
|
|
1060
|
+
}) => Promise<AssembledTransaction<boolean>>
|
|
1061
|
+
|
|
1062
|
+
/**
|
|
1063
|
+
* Construct and simulate a is_on_denylist transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1064
|
+
* Returns whether an OApp is on the denylist.
|
|
1065
|
+
*
|
|
1066
|
+
* # Arguments
|
|
1067
|
+
* * `oapp` - OApp contract address
|
|
1068
|
+
*/
|
|
1069
|
+
is_on_denylist: ({oapp}: {oapp: string}, txnOptions?: {
|
|
1070
|
+
/**
|
|
1071
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1072
|
+
*/
|
|
1073
|
+
fee?: number;
|
|
1074
|
+
|
|
1075
|
+
/**
|
|
1076
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1077
|
+
*/
|
|
1078
|
+
timeoutInSeconds?: number;
|
|
1079
|
+
|
|
1080
|
+
/**
|
|
1081
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1082
|
+
*/
|
|
1083
|
+
simulate?: boolean;
|
|
1084
|
+
}) => Promise<AssembledTransaction<boolean>>
|
|
1085
|
+
|
|
1086
|
+
/**
|
|
1087
|
+
* Construct and simulate a has_acl transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1088
|
+
* Returns whether an OApp has access control list (ACL) permission.
|
|
1089
|
+
*
|
|
1090
|
+
* ACL evaluation order:
|
|
1091
|
+
* 1. If on denylist → denied
|
|
1092
|
+
* 2. If allowlist is empty OR on allowlist → allowed
|
|
1093
|
+
* 3. Otherwise → denied
|
|
1094
|
+
*
|
|
1095
|
+
* # Arguments
|
|
1096
|
+
* * `sender` - OApp contract address to check
|
|
1097
|
+
*/
|
|
1098
|
+
has_acl: ({sender}: {sender: string}, txnOptions?: {
|
|
1099
|
+
/**
|
|
1100
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1101
|
+
*/
|
|
1102
|
+
fee?: number;
|
|
1103
|
+
|
|
1104
|
+
/**
|
|
1105
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1106
|
+
*/
|
|
1107
|
+
timeoutInSeconds?: number;
|
|
1108
|
+
|
|
1109
|
+
/**
|
|
1110
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1111
|
+
*/
|
|
1112
|
+
simulate?: boolean;
|
|
1113
|
+
}) => Promise<AssembledTransaction<boolean>>
|
|
1114
|
+
|
|
1115
|
+
/**
|
|
1116
|
+
* Construct and simulate a allowlist_size transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1117
|
+
* Returns the number of addresses on the allowlist.
|
|
1118
|
+
*/
|
|
1119
|
+
allowlist_size: (txnOptions?: {
|
|
1120
|
+
/**
|
|
1121
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1122
|
+
*/
|
|
1123
|
+
fee?: number;
|
|
1124
|
+
|
|
1125
|
+
/**
|
|
1126
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1127
|
+
*/
|
|
1128
|
+
timeoutInSeconds?: number;
|
|
1129
|
+
|
|
1130
|
+
/**
|
|
1131
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1132
|
+
*/
|
|
1133
|
+
simulate?: boolean;
|
|
1134
|
+
}) => Promise<AssembledTransaction<u32>>
|
|
1135
|
+
|
|
1136
|
+
/**
|
|
1137
|
+
* Construct and simulate a default_multiplier_bps transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1138
|
+
* Returns the default fee multiplier in basis points.
|
|
1139
|
+
*/
|
|
1140
|
+
default_multiplier_bps: (txnOptions?: {
|
|
1141
|
+
/**
|
|
1142
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1143
|
+
*/
|
|
1144
|
+
fee?: number;
|
|
1145
|
+
|
|
1146
|
+
/**
|
|
1147
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1148
|
+
*/
|
|
1149
|
+
timeoutInSeconds?: number;
|
|
1150
|
+
|
|
1151
|
+
/**
|
|
1152
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1153
|
+
*/
|
|
1154
|
+
simulate?: boolean;
|
|
1155
|
+
}) => Promise<AssembledTransaction<u32>>
|
|
1156
|
+
|
|
1157
|
+
/**
|
|
1158
|
+
* Construct and simulate a deposit_address transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1159
|
+
* Returns the deposit address where fees are collected.
|
|
1160
|
+
*/
|
|
1161
|
+
deposit_address: (txnOptions?: {
|
|
1162
|
+
/**
|
|
1163
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1164
|
+
*/
|
|
1165
|
+
fee?: number;
|
|
1166
|
+
|
|
1167
|
+
/**
|
|
1168
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1169
|
+
*/
|
|
1170
|
+
timeoutInSeconds?: number;
|
|
1171
|
+
|
|
1172
|
+
/**
|
|
1173
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1174
|
+
*/
|
|
1175
|
+
simulate?: boolean;
|
|
1176
|
+
}) => Promise<AssembledTransaction<string>>
|
|
1177
|
+
|
|
1178
|
+
/**
|
|
1179
|
+
* Construct and simulate a price_feed transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1180
|
+
* Returns the price feed contract address.
|
|
1181
|
+
*/
|
|
1182
|
+
price_feed: (txnOptions?: {
|
|
1183
|
+
/**
|
|
1184
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1185
|
+
*/
|
|
1186
|
+
fee?: number;
|
|
1187
|
+
|
|
1188
|
+
/**
|
|
1189
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1190
|
+
*/
|
|
1191
|
+
timeoutInSeconds?: number;
|
|
1192
|
+
|
|
1193
|
+
/**
|
|
1194
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1195
|
+
*/
|
|
1196
|
+
simulate?: boolean;
|
|
1197
|
+
}) => Promise<AssembledTransaction<string>>
|
|
1198
|
+
|
|
1199
|
+
/**
|
|
1200
|
+
* Construct and simulate a get_supported_option_types transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1201
|
+
* Returns supported option types for a destination endpoint.
|
|
1202
|
+
*
|
|
1203
|
+
* # Arguments
|
|
1204
|
+
* * `eid` - Destination endpoint ID (chain identifier)
|
|
1205
|
+
*/
|
|
1206
|
+
get_supported_option_types: ({eid}: {eid: u32}, txnOptions?: {
|
|
1207
|
+
/**
|
|
1208
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1209
|
+
*/
|
|
1210
|
+
fee?: number;
|
|
1211
|
+
|
|
1212
|
+
/**
|
|
1213
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1214
|
+
*/
|
|
1215
|
+
timeoutInSeconds?: number;
|
|
1216
|
+
|
|
1217
|
+
/**
|
|
1218
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1219
|
+
*/
|
|
1220
|
+
simulate?: boolean;
|
|
1221
|
+
}) => Promise<AssembledTransaction<Option<Buffer>>>
|
|
1222
|
+
|
|
1223
|
+
/**
|
|
1224
|
+
* Construct and simulate a worker_fee_lib transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1225
|
+
* Returns the worker fee library contract address.
|
|
1226
|
+
*/
|
|
1227
|
+
worker_fee_lib: (txnOptions?: {
|
|
1228
|
+
/**
|
|
1229
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1230
|
+
*/
|
|
1231
|
+
fee?: number;
|
|
1232
|
+
|
|
1233
|
+
/**
|
|
1234
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1235
|
+
*/
|
|
1236
|
+
timeoutInSeconds?: number;
|
|
1237
|
+
|
|
1238
|
+
/**
|
|
1239
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1240
|
+
*/
|
|
1241
|
+
simulate?: boolean;
|
|
1242
|
+
}) => Promise<AssembledTransaction<string>>
|
|
1243
|
+
|
|
1244
|
+
/**
|
|
1245
|
+
* Construct and simulate a assign_job transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1246
|
+
* Assigns a job to the executor and returns fee recipient information.
|
|
1247
|
+
*/
|
|
1248
|
+
assign_job: ({send_lib, sender, dst_eid, calldata_size, options}: {send_lib: string, sender: string, dst_eid: u32, calldata_size: u32, options: Buffer}, txnOptions?: {
|
|
1249
|
+
/**
|
|
1250
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1251
|
+
*/
|
|
1252
|
+
fee?: number;
|
|
1253
|
+
|
|
1254
|
+
/**
|
|
1255
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1256
|
+
*/
|
|
1257
|
+
timeoutInSeconds?: number;
|
|
1258
|
+
|
|
1259
|
+
/**
|
|
1260
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1261
|
+
*/
|
|
1262
|
+
simulate?: boolean;
|
|
1263
|
+
}) => Promise<AssembledTransaction<FeeRecipient>>
|
|
1264
|
+
|
|
1265
|
+
/**
|
|
1266
|
+
* Construct and simulate a get_fee transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1267
|
+
* Calculates the execution fee for a cross-chain message.
|
|
1268
|
+
*/
|
|
1269
|
+
get_fee: ({send_lib, sender, dst_eid, calldata_size, options}: {send_lib: string, sender: string, dst_eid: u32, calldata_size: u32, options: Buffer}, txnOptions?: {
|
|
1270
|
+
/**
|
|
1271
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1272
|
+
*/
|
|
1273
|
+
fee?: number;
|
|
1274
|
+
|
|
1275
|
+
/**
|
|
1276
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1277
|
+
*/
|
|
1278
|
+
timeoutInSeconds?: number;
|
|
1279
|
+
|
|
1280
|
+
/**
|
|
1281
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1282
|
+
*/
|
|
1283
|
+
simulate?: boolean;
|
|
1284
|
+
}) => Promise<AssembledTransaction<i128>>
|
|
1285
|
+
|
|
1286
|
+
/**
|
|
1287
|
+
* Construct and simulate a set_dst_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1288
|
+
* Sets destination-specific configurations for multiple endpoints.
|
|
1289
|
+
*/
|
|
1290
|
+
set_dst_config: ({admin, params}: {admin: string, params: Array<SetDstConfigParam>}, txnOptions?: {
|
|
1291
|
+
/**
|
|
1292
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1293
|
+
*/
|
|
1294
|
+
fee?: number;
|
|
1295
|
+
|
|
1296
|
+
/**
|
|
1297
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1298
|
+
*/
|
|
1299
|
+
timeoutInSeconds?: number;
|
|
1300
|
+
|
|
1301
|
+
/**
|
|
1302
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1303
|
+
*/
|
|
1304
|
+
simulate?: boolean;
|
|
1305
|
+
}) => Promise<AssembledTransaction<null>>
|
|
1306
|
+
|
|
1307
|
+
/**
|
|
1308
|
+
* Construct and simulate a dst_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1309
|
+
* Returns the destination configuration for a specific endpoint.
|
|
1310
|
+
*/
|
|
1311
|
+
dst_config: ({dst_eid}: {dst_eid: u32}, txnOptions?: {
|
|
1312
|
+
/**
|
|
1313
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1314
|
+
*/
|
|
1315
|
+
fee?: number;
|
|
1316
|
+
|
|
1317
|
+
/**
|
|
1318
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1319
|
+
*/
|
|
1320
|
+
timeoutInSeconds?: number;
|
|
1321
|
+
|
|
1322
|
+
/**
|
|
1323
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1324
|
+
*/
|
|
1325
|
+
simulate?: boolean;
|
|
1326
|
+
}) => Promise<AssembledTransaction<DstConfig>>
|
|
1327
|
+
|
|
1328
|
+
/**
|
|
1329
|
+
* Construct and simulate a native_drop transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1330
|
+
* Native token drops.
|
|
1331
|
+
*
|
|
1332
|
+
* Transfers native tokens to each receiver specified in the parameters and
|
|
1333
|
+
* tracks the success/failure status of each transfer.
|
|
1334
|
+
*/
|
|
1335
|
+
native_drop: ({admin, origin, dst_eid, oapp, native_drop_params}: {admin: string, origin: Origin, dst_eid: u32, oapp: string, native_drop_params: Array<NativeDropParams>}, txnOptions?: {
|
|
1336
|
+
/**
|
|
1337
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1338
|
+
*/
|
|
1339
|
+
fee?: number;
|
|
1340
|
+
|
|
1341
|
+
/**
|
|
1342
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1343
|
+
*/
|
|
1344
|
+
timeoutInSeconds?: number;
|
|
1345
|
+
|
|
1346
|
+
/**
|
|
1347
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1348
|
+
*/
|
|
1349
|
+
simulate?: boolean;
|
|
1350
|
+
}) => Promise<AssembledTransaction<null>>
|
|
1351
|
+
|
|
1352
|
+
/**
|
|
1353
|
+
* Construct and simulate a endpoint transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1354
|
+
* Returns the endpoint address from storage.
|
|
1355
|
+
*/
|
|
1356
|
+
endpoint: (txnOptions?: {
|
|
1357
|
+
/**
|
|
1358
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1359
|
+
*/
|
|
1360
|
+
fee?: number;
|
|
1361
|
+
|
|
1362
|
+
/**
|
|
1363
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1364
|
+
*/
|
|
1365
|
+
timeoutInSeconds?: number;
|
|
1366
|
+
|
|
1367
|
+
/**
|
|
1368
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1369
|
+
*/
|
|
1370
|
+
simulate?: boolean;
|
|
1371
|
+
}) => Promise<AssembledTransaction<string>>
|
|
1372
|
+
|
|
1373
|
+
/**
|
|
1374
|
+
* Construct and simulate a set_whitelisted_fn transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1375
|
+
* Sets whether a (contract, function) pair is whitelisted.
|
|
1376
|
+
* When `allowed` is false, the entry is removed from storage to save space.
|
|
1377
|
+
*
|
|
1378
|
+
* Only the contract owner can call this function.
|
|
1379
|
+
*/
|
|
1380
|
+
set_whitelisted_fn: ({contract, fn_name, allowed}: {contract: string, fn_name: string, allowed: boolean}, txnOptions?: {
|
|
1381
|
+
/**
|
|
1382
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1383
|
+
*/
|
|
1384
|
+
fee?: number;
|
|
1385
|
+
|
|
1386
|
+
/**
|
|
1387
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1388
|
+
*/
|
|
1389
|
+
timeoutInSeconds?: number;
|
|
1390
|
+
|
|
1391
|
+
/**
|
|
1392
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1393
|
+
*/
|
|
1394
|
+
simulate?: boolean;
|
|
1395
|
+
}) => Promise<AssembledTransaction<null>>
|
|
1396
|
+
|
|
1397
|
+
/**
|
|
1398
|
+
* Construct and simulate a is_whitelisted_fn transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1399
|
+
* Returns whether a (contract, function) pair is whitelisted.
|
|
1400
|
+
*/
|
|
1401
|
+
is_whitelisted_fn: ({contract, fn_name}: {contract: string, fn_name: string}, txnOptions?: {
|
|
1402
|
+
/**
|
|
1403
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1404
|
+
*/
|
|
1405
|
+
fee?: number;
|
|
1406
|
+
|
|
1407
|
+
/**
|
|
1408
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1409
|
+
*/
|
|
1410
|
+
timeoutInSeconds?: number;
|
|
1411
|
+
|
|
1412
|
+
/**
|
|
1413
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1414
|
+
*/
|
|
1415
|
+
simulate?: boolean;
|
|
1416
|
+
}) => Promise<AssembledTransaction<boolean>>
|
|
1417
|
+
|
|
1418
|
+
/**
|
|
1419
|
+
* Construct and simulate a withdraw_token transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1420
|
+
* Withdraws a token from the contract to a specified address.
|
|
1421
|
+
*
|
|
1422
|
+
* # Arguments
|
|
1423
|
+
* * `token` - The token contract address
|
|
1424
|
+
* * `to` - The recipient address
|
|
1425
|
+
* * `amount` - The amount to withdraw
|
|
1426
|
+
*/
|
|
1427
|
+
withdraw_token: ({admin, token, to, amount}: {admin: string, token: string, to: string, amount: i128}, txnOptions?: {
|
|
1428
|
+
/**
|
|
1429
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1430
|
+
*/
|
|
1431
|
+
fee?: number;
|
|
1432
|
+
|
|
1433
|
+
/**
|
|
1434
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1435
|
+
*/
|
|
1436
|
+
timeoutInSeconds?: number;
|
|
1437
|
+
|
|
1438
|
+
/**
|
|
1439
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1440
|
+
*/
|
|
1441
|
+
simulate?: boolean;
|
|
1442
|
+
}) => Promise<AssembledTransaction<null>>
|
|
1443
|
+
|
|
1444
|
+
/**
|
|
1445
|
+
* Construct and simulate a set_admin transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1446
|
+
* Sets admin status for an address. Requires owner authorization.
|
|
1447
|
+
*
|
|
1448
|
+
* This is the multisig/quorum path for admin management.
|
|
1449
|
+
*
|
|
1450
|
+
* # Arguments
|
|
1451
|
+
* * `admin` - The address to set admin status for
|
|
1452
|
+
* * `active` - Whether the address should be an admin
|
|
1453
|
+
*/
|
|
1454
|
+
set_admin: ({admin, active}: {admin: string, active: boolean}, txnOptions?: {
|
|
1455
|
+
/**
|
|
1456
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1457
|
+
*/
|
|
1458
|
+
fee?: number;
|
|
1459
|
+
|
|
1460
|
+
/**
|
|
1461
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1462
|
+
*/
|
|
1463
|
+
timeoutInSeconds?: number;
|
|
1464
|
+
|
|
1465
|
+
/**
|
|
1466
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1467
|
+
*/
|
|
1468
|
+
simulate?: boolean;
|
|
1469
|
+
}) => Promise<AssembledTransaction<null>>
|
|
1470
|
+
|
|
1471
|
+
/**
|
|
1472
|
+
* Construct and simulate a owner transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1473
|
+
*/
|
|
1474
|
+
owner: (txnOptions?: {
|
|
1475
|
+
/**
|
|
1476
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1477
|
+
*/
|
|
1478
|
+
fee?: number;
|
|
1479
|
+
|
|
1480
|
+
/**
|
|
1481
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1482
|
+
*/
|
|
1483
|
+
timeoutInSeconds?: number;
|
|
1484
|
+
|
|
1485
|
+
/**
|
|
1486
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1487
|
+
*/
|
|
1488
|
+
simulate?: boolean;
|
|
1489
|
+
}) => Promise<AssembledTransaction<Option<string>>>
|
|
1490
|
+
|
|
1491
|
+
/**
|
|
1492
|
+
* Construct and simulate a transfer_ownership transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1493
|
+
*/
|
|
1494
|
+
transfer_ownership: ({new_owner}: {new_owner: string}, txnOptions?: {
|
|
1495
|
+
/**
|
|
1496
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1497
|
+
*/
|
|
1498
|
+
fee?: number;
|
|
1499
|
+
|
|
1500
|
+
/**
|
|
1501
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1502
|
+
*/
|
|
1503
|
+
timeoutInSeconds?: number;
|
|
1504
|
+
|
|
1505
|
+
/**
|
|
1506
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1507
|
+
*/
|
|
1508
|
+
simulate?: boolean;
|
|
1509
|
+
}) => Promise<AssembledTransaction<null>>
|
|
1510
|
+
|
|
1511
|
+
/**
|
|
1512
|
+
* Construct and simulate a renounce_ownership transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1513
|
+
*/
|
|
1514
|
+
renounce_ownership: (txnOptions?: {
|
|
1515
|
+
/**
|
|
1516
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1517
|
+
*/
|
|
1518
|
+
fee?: number;
|
|
1519
|
+
|
|
1520
|
+
/**
|
|
1521
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1522
|
+
*/
|
|
1523
|
+
timeoutInSeconds?: number;
|
|
1524
|
+
|
|
1525
|
+
/**
|
|
1526
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1527
|
+
*/
|
|
1528
|
+
simulate?: boolean;
|
|
1529
|
+
}) => Promise<AssembledTransaction<null>>
|
|
1530
|
+
|
|
1531
|
+
/**
|
|
1532
|
+
* Construct and simulate a set_ttl_configs transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1533
|
+
*/
|
|
1534
|
+
set_ttl_configs: ({instance, persistent}: {instance: Option<TtlConfig>, persistent: Option<TtlConfig>}, txnOptions?: {
|
|
1535
|
+
/**
|
|
1536
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1537
|
+
*/
|
|
1538
|
+
fee?: number;
|
|
1539
|
+
|
|
1540
|
+
/**
|
|
1541
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1542
|
+
*/
|
|
1543
|
+
timeoutInSeconds?: number;
|
|
1544
|
+
|
|
1545
|
+
/**
|
|
1546
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1547
|
+
*/
|
|
1548
|
+
simulate?: boolean;
|
|
1549
|
+
}) => Promise<AssembledTransaction<null>>
|
|
1550
|
+
|
|
1551
|
+
/**
|
|
1552
|
+
* Construct and simulate a ttl_configs transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1553
|
+
*/
|
|
1554
|
+
ttl_configs: (txnOptions?: {
|
|
1555
|
+
/**
|
|
1556
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1557
|
+
*/
|
|
1558
|
+
fee?: number;
|
|
1559
|
+
|
|
1560
|
+
/**
|
|
1561
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1562
|
+
*/
|
|
1563
|
+
timeoutInSeconds?: number;
|
|
1564
|
+
|
|
1565
|
+
/**
|
|
1566
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1567
|
+
*/
|
|
1568
|
+
simulate?: boolean;
|
|
1569
|
+
}) => Promise<AssembledTransaction<readonly [Option<TtlConfig>, Option<TtlConfig>]>>
|
|
1570
|
+
|
|
1571
|
+
/**
|
|
1572
|
+
* Construct and simulate a freeze_ttl_configs transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1573
|
+
*/
|
|
1574
|
+
freeze_ttl_configs: (txnOptions?: {
|
|
1575
|
+
/**
|
|
1576
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1577
|
+
*/
|
|
1578
|
+
fee?: number;
|
|
1579
|
+
|
|
1580
|
+
/**
|
|
1581
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1582
|
+
*/
|
|
1583
|
+
timeoutInSeconds?: number;
|
|
1584
|
+
|
|
1585
|
+
/**
|
|
1586
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1587
|
+
*/
|
|
1588
|
+
simulate?: boolean;
|
|
1589
|
+
}) => Promise<AssembledTransaction<null>>
|
|
1590
|
+
|
|
1591
|
+
/**
|
|
1592
|
+
* Construct and simulate a is_ttl_configs_frozen transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1593
|
+
*/
|
|
1594
|
+
is_ttl_configs_frozen: (txnOptions?: {
|
|
1595
|
+
/**
|
|
1596
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1597
|
+
*/
|
|
1598
|
+
fee?: number;
|
|
1599
|
+
|
|
1600
|
+
/**
|
|
1601
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1602
|
+
*/
|
|
1603
|
+
timeoutInSeconds?: number;
|
|
1604
|
+
|
|
1605
|
+
/**
|
|
1606
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1607
|
+
*/
|
|
1608
|
+
simulate?: boolean;
|
|
1609
|
+
}) => Promise<AssembledTransaction<boolean>>
|
|
1610
|
+
|
|
1611
|
+
/**
|
|
1612
|
+
* Construct and simulate a extend_instance_ttl transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
|
|
1613
|
+
* Extends the instance TTL.
|
|
1614
|
+
*
|
|
1615
|
+
* # Arguments
|
|
1616
|
+
*
|
|
1617
|
+
* * `threshold` - The threshold to extend the TTL.
|
|
1618
|
+
* * `extend_to` - The TTL to extend to.
|
|
1619
|
+
*/
|
|
1620
|
+
extend_instance_ttl: ({threshold, extend_to}: {threshold: u32, extend_to: u32}, txnOptions?: {
|
|
1621
|
+
/**
|
|
1622
|
+
* The fee to pay for the transaction. Default: BASE_FEE
|
|
1623
|
+
*/
|
|
1624
|
+
fee?: number;
|
|
1625
|
+
|
|
1626
|
+
/**
|
|
1627
|
+
* The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
|
|
1628
|
+
*/
|
|
1629
|
+
timeoutInSeconds?: number;
|
|
1630
|
+
|
|
1631
|
+
/**
|
|
1632
|
+
* Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
|
|
1633
|
+
*/
|
|
1634
|
+
simulate?: boolean;
|
|
1635
|
+
}) => Promise<AssembledTransaction<null>>
|
|
1636
|
+
|
|
1637
|
+
}
|
|
1638
|
+
export class Client extends ContractClient {
|
|
1639
|
+
static async deploy<T = Client>(
|
|
1640
|
+
/** Constructor/Initialization Args for the contract's `__constructor` method */
|
|
1641
|
+
{endpoint, owner, admins, message_libs, price_feed, default_multiplier_bps, whitelist}: {endpoint: string, owner: string, admins: Array<string>, message_libs: Array<string>, price_feed: string, default_multiplier_bps: u32, whitelist: Array<WhitelistEntry>},
|
|
1642
|
+
/** Options for initializing a Client as well as for calling a method, with extras specific to deploying. */
|
|
1643
|
+
options: MethodOptions &
|
|
1644
|
+
Omit<ContractClientOptions, "contractId"> & {
|
|
1645
|
+
/** The hash of the Wasm blob, which must already be installed on-chain. */
|
|
1646
|
+
wasmHash: Buffer | string;
|
|
1647
|
+
/** Salt used to generate the contract's ID. Passed through to {@link Operation.createCustomContract}. Default: random. */
|
|
1648
|
+
salt?: Buffer | Uint8Array;
|
|
1649
|
+
/** The format used to decode `wasmHash`, if it's provided as a string. */
|
|
1650
|
+
format?: "hex" | "base64";
|
|
1651
|
+
}
|
|
1652
|
+
): Promise<AssembledTransaction<T>> {
|
|
1653
|
+
return ContractClient.deploy({endpoint, owner, admins, message_libs, price_feed, default_multiplier_bps, whitelist}, options)
|
|
1654
|
+
}
|
|
1655
|
+
constructor(public readonly options: ContractClientOptions) {
|
|
1656
|
+
super(
|
|
1657
|
+
new ContractSpec([ "AAAAAQAAANtEZXN0aW5hdGlvbiBjaGFpbiBjb25maWd1cmF0aW9uIGZvciBleGVjdXRvciBmZWUgY2FsY3VsYXRpb24uCgpDb250YWlucyBnYXMgY29zdHMgYW5kIGZlZSBwYXJhbWV0ZXJzIHNwZWNpZmljIHRvIGVhY2ggZGVzdGluYXRpb24gY2hhaW4uClRoZXNlIHBhcmFtZXRlcnMgYXJlIHVzZWQgYnkgdGhlIGZlZSBsaWJyYXJ5IHRvIGNhbGN1bGF0ZSBhY2N1cmF0ZSBleGVjdXRpb24gZmVlcy4AAAAAAAAAAAlEc3RDb25maWcAAAAAAAAFAAAAO01pbmltdW0gZmVlIG1hcmdpbiBpbiBVU0QgKHNjYWxlZCkgdG8gZW5zdXJlIHByb2ZpdGFiaWxpdHkuAAAAABBmbG9vcl9tYXJnaW5fdXNkAAAACgAAADpCYXNlIGdhcyBjb3N0IHBlciBsekNvbXBvc2UgY2FsbCBvbiB0aGUgZGVzdGluYXRpb24gY2hhaW4uAAAAAAATbHpfY29tcG9zZV9iYXNlX2dhcwAAAAAGAAAAP0Jhc2UgZ2FzIGNvc3QgZm9yIGx6UmVjZWl2ZSBleGVjdXRpb24gb24gdGhlIGRlc3RpbmF0aW9uIGNoYWluLgAAAAATbHpfcmVjZWl2ZV9iYXNlX2dhcwAAAAAGAAAAUUZlZSBtdWx0aXBsaWVyIGluIGJhc2lzIHBvaW50cyBmb3IgdGhpcyBkZXN0aW5hdGlvbiAoMCA9IHVzZSBkZWZhdWx0IG11bHRpcGxpZXIpLgAAAAAAAA5tdWx0aXBsaWVyX2JwcwAAAAAABAAAAEZNYXhpbXVtIG5hdGl2ZSB0b2tlbiB2YWx1ZSB0aGF0IGNhbiBiZSB0cmFuc2ZlcnJlZCB0byB0aGUgZGVzdGluYXRpb24uAAAAAAAKbmF0aXZlX2NhcAAAAAAACg==",
|
|
1658
|
+
"AAAAAQAAAHxQYXJhbWV0ZXJzIGZvciBzZXR0aW5nIGRlc3RpbmF0aW9uIGNvbmZpZ3VyYXRpb24uCgpVc2VkIHdoZW4gY29uZmlndXJpbmcgZXhlY3V0b3Igc2V0dGluZ3MgZm9yIGEgc3BlY2lmaWMgZGVzdGluYXRpb24gY2hhaW4uAAAAAAAAABFTZXREc3RDb25maWdQYXJhbQAAAAAAAAIAAAAoQ29uZmlndXJhdGlvbiBmb3IgdGhlIGRlc3RpbmF0aW9uIGNoYWluLgAAAApkc3RfY29uZmlnAAAAAAfQAAAACURzdENvbmZpZwAAAAAAACtEZXN0aW5hdGlvbiBlbmRwb2ludCBJRCAoY2hhaW4gaWRlbnRpZmllcikuAAAAAAdkc3RfZWlkAAAAAAQ=",
|
|
1659
|
+
"AAAAAQAAAGhQYXJhbWV0ZXJzIGZvciBhIG5hdGl2ZSB0b2tlbiBkcm9wLgoKVXNlZCB0byBzcGVjaWZ5IG5hdGl2ZSB0b2tlbiB0cmFuc2ZlcnMgYXMgcGFydCBvZiBleGVjdXRvciBvcHRpb25zLgAAAAAAAAAQTmF0aXZlRHJvcFBhcmFtcwAAAAIAAAAkQW1vdW50IG9mIG5hdGl2ZSB0b2tlbnMgdG8gdHJhbnNmZXIuAAAABmFtb3VudAAAAAAACwAAAC9SZWNlaXZlciBhZGRyZXNzIGZvciB0aGUgbmF0aXZlIHRva2VuIHRyYW5zZmVyLgAAAAAIcmVjZWl2ZXIAAAAT",
|
|
1660
|
+
"AAAAAAAAAORTZXRzIHRoZSBwYXVzZWQgc3RhdGUgb2YgdGhlIHdvcmtlci4KCldoZW4gcGF1c2VkLCB0aGUgd29ya2VyIHdpbGwgcmVqZWN0IG5ldyBqb2IgYXNzaWdubWVudHMgKGUuZy4sIGFzc2lnbl9qb2IsIGdldF9mZWUpLgpFeGlzdGluZyBqb2JzIGluIHByb2dyZXNzIGFyZSBub3QgYWZmZWN0ZWQuCgojIEFyZ3VtZW50cwoqIGBwYXVzZWRgIC0gYHRydWVgIHRvIHBhdXNlLCBgZmFsc2VgIHRvIHVucGF1c2UAAAAKc2V0X3BhdXNlZAAAAAAAAQAAAAAAAAAGcGF1c2VkAAAAAAABAAAAAA==",
|
|
1661
|
+
"AAAAAAAAATdTZXRzIHdoZXRoZXIgYSBtZXNzYWdlIGxpYnJhcnkgaXMgc3VwcG9ydGVkIGJ5IHRoaXMgd29ya2VyLgoKTWVzc2FnZSBsaWJyYXJpZXMgKGUuZy4sIFVMTjMwMikgY2FsbCB3b3JrZXJzIHRvIGFzc2lnbiBqb2JzLiBPbmx5IHN1cHBvcnRlZApsaWJyYXJpZXMgY2FuIGludGVyYWN0IHdpdGggdGhpcyB3b3JrZXIuCgojIEFyZ3VtZW50cwoqIGBtZXNzYWdlX2xpYmAgLSBUaGUgbWVzc2FnZSBsaWJyYXJ5IGNvbnRyYWN0IGFkZHJlc3MKKiBgc3VwcG9ydGVkYCAtIGB0cnVlYCB0byBhZGQgc3VwcG9ydCwgYGZhbHNlYCB0byByZW1vdmUgc3VwcG9ydAAAAAAZc2V0X3N1cHBvcnRlZF9tZXNzYWdlX2xpYgAAAAAAAAIAAAAAAAAAC21lc3NhZ2VfbGliAAAAABMAAAAAAAAACXN1cHBvcnRlZAAAAAAAAAEAAAAA",
|
|
1662
|
+
"AAAAAAAAAVhTZXRzIGFsbG93bGlzdCBzdGF0dXMgZm9yIGFuIE9BcHAgYWRkcmVzcy4KCldoZW4gdGhlIGFsbG93bGlzdCBpcyBlbXB0eSwgYWxsIE9BcHBzIGFyZSBhbGxvd2VkICh1bmxlc3Mgb24gZGVueWxpc3QpLgpXaGVuIHRoZSBhbGxvd2xpc3QgaXMgbm90IGVtcHR5LCBvbmx5IGFsbG93bGlzdGVkIE9BcHBzIGFyZSBhbGxvd2VkLgpEZW55bGlzdCBhbHdheXMgdGFrZXMgcHJlY2VkZW5jZSBvdmVyIGFsbG93bGlzdC4KCiMgQXJndW1lbnRzCiogYG9hcHBgIC0gVGhlIE9BcHAgY29udHJhY3QgYWRkcmVzcwoqIGBhbGxvd2VkYCAtIGB0cnVlYCB0byBhZGQgdG8gYWxsb3dsaXN0LCBgZmFsc2VgIHRvIHJlbW92ZQAAAA1zZXRfYWxsb3dsaXN0AAAAAAAAAgAAAAAAAAAEb2FwcAAAABMAAAAAAAAAB2FsbG93ZWQAAAAAAQAAAAA=",
|
|
1663
|
+
"AAAAAAAAAQlTZXRzIGRlbnlsaXN0IHN0YXR1cyBmb3IgYW4gT0FwcCBhZGRyZXNzLgoKRGVueWxpc3RlZCBPQXBwcyBhcmUgYmxvY2tlZCBmcm9tIHVzaW5nIHRoaXMgd29ya2VyLCBldmVuIGlmIHRoZXkncmUgb24KdGhlIGFsbG93bGlzdCAoZGVueWxpc3QgdGFrZXMgcHJlY2VkZW5jZSkuCgojIEFyZ3VtZW50cwoqIGBvYXBwYCAtIFRoZSBPQXBwIGNvbnRyYWN0IGFkZHJlc3MKKiBgZGVuaWVkYCAtIGB0cnVlYCB0byBhZGQgdG8gZGVueWxpc3QsIGBmYWxzZWAgdG8gcmVtb3ZlAAAAAAAADHNldF9kZW55bGlzdAAAAAIAAAAAAAAABG9hcHAAAAATAAAAAAAAAAZkZW5pZWQAAAAAAAEAAAAA",
|
|
1664
|
+
"AAAAAAAAATtTZXRzIHRoZSBkZWZhdWx0IGZlZSBtdWx0aXBsaWVyIGluIGJhc2lzIHBvaW50cy4KClRoZSBtdWx0aXBsaWVyIGlzIGFwcGxpZWQgdG8gYmFzZSBmZWVzIGR1cmluZyBmZWUgY2FsY3VsYXRpb24uIFVzZWQgd2hlbgpubyBkZXN0aW5hdGlvbi1zcGVjaWZpYyBtdWx0aXBsaWVyIGlzIGNvbmZpZ3VyZWQuCgojIEFyZ3VtZW50cwoqIGBhZG1pbmAgLSBBZG1pbiBhZGRyZXNzIChtdXN0IHByb3ZpZGUgYXV0aG9yaXphdGlvbikKKiBgbXVsdGlwbGllcl9icHNgIC0gTXVsdGlwbGllciBpbiBiYXNpcyBwb2ludHMgKDEwMDAwID0gMXgsIDEyMDAwID0gMS4yeCkAAAAAGnNldF9kZWZhdWx0X211bHRpcGxpZXJfYnBzAAAAAAACAAAAAAAAAAVhZG1pbgAAAAAAABMAAAAAAAAADm11bHRpcGxpZXJfYnBzAAAAAAAEAAAAAA==",
|
|
1665
|
+
"AAAAAAAAAPFTZXRzIHRoZSBkZXBvc2l0IGFkZHJlc3Mgd2hlcmUgd29ya2VyIGZlZXMgYXJlIGNvbGxlY3RlZC4KCldoZW4gam9icyBhcmUgYXNzaWduZWQsIGZlZXMgYXJlIGRpcmVjdGVkIHRvIHRoaXMgYWRkcmVzcy4KCiMgQXJndW1lbnRzCiogYGFkbWluYCAtIEFkbWluIGFkZHJlc3MgKG11c3QgcHJvdmlkZSBhdXRob3JpemF0aW9uKQoqIGBkZXBvc2l0X2FkZHJlc3NgIC0gQWRkcmVzcyB0byByZWNlaXZlIGNvbGxlY3RlZCBmZWVzAAAAAAAAE3NldF9kZXBvc2l0X2FkZHJlc3MAAAAAAgAAAAAAAAAFYWRtaW4AAAAAAAATAAAAAAAAAA9kZXBvc2l0X2FkZHJlc3MAAAAAEwAAAAA=",
|
|
1666
|
+
"AAAAAAAAAOtTZXRzIHN1cHBvcnRlZCBleGVjdXRvciBvcHRpb24gdHlwZXMgZm9yIGEgZGVzdGluYXRpb24gZW5kcG9pbnQuCgojIEFyZ3VtZW50cwoqIGBhZG1pbmAgLSBBZG1pbiBhZGRyZXNzIChtdXN0IHByb3ZpZGUgYXV0aG9yaXphdGlvbikKKiBgZWlkYCAtIERlc3RpbmF0aW9uIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKQoqIGBvcHRpb25fdHlwZXNgIC0gRW5jb2RlZCBzdXBwb3J0ZWQgb3B0aW9uIHR5cGVzAAAAABpzZXRfc3VwcG9ydGVkX29wdGlvbl90eXBlcwAAAAAAAwAAAAAAAAAFYWRtaW4AAAAAAAATAAAAAAAAAANlaWQAAAAABAAAAAAAAAAMb3B0aW9uX3R5cGVzAAAADgAAAAA=",
|
|
1667
|
+
"AAAAAAAAARJTZXRzIHRoZSB3b3JrZXIgZmVlIGxpYnJhcnkgY29udHJhY3QgYWRkcmVzcy4KClRoZSBmZWUgbGlicmFyeSBjYWxjdWxhdGVzIGZlZXMgYmFzZWQgb24gZXhlY3V0b3Igb3B0aW9ucyBhbmQgcHJpY2UgZmVlZCBkYXRhLgoKIyBBcmd1bWVudHMKKiBgYWRtaW5gIC0gQWRtaW4gYWRkcmVzcyAobXVzdCBwcm92aWRlIGF1dGhvcml6YXRpb24pCiogYHdvcmtlcl9mZWVfbGliYCAtIEZlZSBsaWJyYXJ5IGNvbnRyYWN0IGFkZHJlc3MgaW1wbGVtZW50aW5nIGBJRXhlY3V0b3JGZWVMaWJgAAAAAAASc2V0X3dvcmtlcl9mZWVfbGliAAAAAAACAAAAAAAAAAVhZG1pbgAAAAAAABMAAAAAAAAADndvcmtlcl9mZWVfbGliAAAAAAATAAAAAA==",
|
|
1668
|
+
"AAAAAAAAARJTZXRzIHRoZSBwcmljZSBmZWVkIGNvbnRyYWN0IGFkZHJlc3MuCgpUaGUgcHJpY2UgZmVlZCBwcm92aWRlcyBnYXMgcHJpY2VzIGFuZCBleGNoYW5nZSByYXRlcyBmb3IgY3Jvc3MtY2hhaW4KZmVlIGNhbGN1bGF0aW9ucy4KCiMgQXJndW1lbnRzCiogYGFkbWluYCAtIEFkbWluIGFkZHJlc3MgKG11c3QgcHJvdmlkZSBhdXRob3JpemF0aW9uKQoqIGBwcmljZV9mZWVkYCAtIFByaWNlIGZlZWQgY29udHJhY3QgYWRkcmVzcyBpbXBsZW1lbnRpbmcgYElMYXllclplcm9QcmljZUZlZWRgAAAAAAAOc2V0X3ByaWNlX2ZlZWQAAAAAAAIAAAAAAAAABWFkbWluAAAAAAAAEwAAAAAAAAAKcHJpY2VfZmVlZAAAAAAAEwAAAAA=",
|
|
1669
|
+
"AAAAAAAAAFVSZXR1cm5zIHdoZXRoZXIgYW4gYWRkcmVzcyBpcyBhbiBhZG1pbi4KCiMgQXJndW1lbnRzCiogYGFkbWluYCAtIFRoZSBhZGRyZXNzIHRvIGNoZWNrAAAAAAAACGlzX2FkbWluAAAAAQAAAAAAAAAFYWRtaW4AAAAAAAATAAAAAQAAAAE=",
|
|
1670
|
+
"AAAAAAAAABxSZXR1cm5zIGFsbCBhZG1pbiBhZGRyZXNzZXMuAAAABmFkbWlucwAAAAAAAAAAAAEAAAPqAAAAEw==",
|
|
1671
|
+
"AAAAAAAAACVSZXR1cm5zIHdoZXRoZXIgdGhlIHdvcmtlciBpcyBwYXVzZWQuAAAAAAAABnBhdXNlZAAAAAAAAAAAAAEAAAAB",
|
|
1672
|
+
"AAAAAAAAAG9SZXR1cm5zIHdoZXRoZXIgYSBtZXNzYWdlIGxpYnJhcnkgaXMgc3VwcG9ydGVkLgoKIyBBcmd1bWVudHMKKiBgbWVzc2FnZV9saWJgIC0gTWVzc2FnZSBsaWJyYXJ5IGNvbnRyYWN0IGFkZHJlc3MAAAAAGGlzX3N1cHBvcnRlZF9tZXNzYWdlX2xpYgAAAAEAAAAAAAAAC21lc3NhZ2VfbGliAAAAABMAAAABAAAAAQ==",
|
|
1673
|
+
"AAAAAAAAAHNSZXR1cm5zIGFsbCBzdXBwb3J0ZWQgbWVzc2FnZSBsaWJyYXJ5IGFkZHJlc3Nlcy4KCiMgUmV0dXJucwpWZWN0b3Igb2Ygc3VwcG9ydGVkIG1lc3NhZ2UgbGlicmFyeSBjb250cmFjdCBhZGRyZXNzZXMuAAAAAAxtZXNzYWdlX2xpYnMAAAAAAAAAAQAAA+oAAAAT",
|
|
1674
|
+
"AAAAAAAAAFpSZXR1cm5zIHdoZXRoZXIgYW4gT0FwcCBpcyBvbiB0aGUgYWxsb3dsaXN0LgoKIyBBcmd1bWVudHMKKiBgb2FwcGAgLSBPQXBwIGNvbnRyYWN0IGFkZHJlc3MAAAAAAA9pc19vbl9hbGxvd2xpc3QAAAAAAQAAAAAAAAAEb2FwcAAAABMAAAABAAAAAQ==",
|
|
1675
|
+
"AAAAAAAAAFlSZXR1cm5zIHdoZXRoZXIgYW4gT0FwcCBpcyBvbiB0aGUgZGVueWxpc3QuCgojIEFyZ3VtZW50cwoqIGBvYXBwYCAtIE9BcHAgY29udHJhY3QgYWRkcmVzcwAAAAAAAA5pc19vbl9kZW55bGlzdAAAAAAAAQAAAAAAAAAEb2FwcAAAABMAAAABAAAAAQ==",
|
|
1676
|
+
"AAAAAAAAAPtSZXR1cm5zIHdoZXRoZXIgYW4gT0FwcCBoYXMgYWNjZXNzIGNvbnRyb2wgbGlzdCAoQUNMKSBwZXJtaXNzaW9uLgoKQUNMIGV2YWx1YXRpb24gb3JkZXI6CjEuIElmIG9uIGRlbnlsaXN0IOKGkiBkZW5pZWQKMi4gSWYgYWxsb3dsaXN0IGlzIGVtcHR5IE9SIG9uIGFsbG93bGlzdCDihpIgYWxsb3dlZAozLiBPdGhlcndpc2Ug4oaSIGRlbmllZAoKIyBBcmd1bWVudHMKKiBgc2VuZGVyYCAtIE9BcHAgY29udHJhY3QgYWRkcmVzcyB0byBjaGVjawAAAAAHaGFzX2FjbAAAAAABAAAAAAAAAAZzZW5kZXIAAAAAABMAAAABAAAAAQ==",
|
|
1677
|
+
"AAAAAAAAADFSZXR1cm5zIHRoZSBudW1iZXIgb2YgYWRkcmVzc2VzIG9uIHRoZSBhbGxvd2xpc3QuAAAAAAAADmFsbG93bGlzdF9zaXplAAAAAAAAAAAAAQAAAAQ=",
|
|
1678
|
+
"AAAAAAAAADNSZXR1cm5zIHRoZSBkZWZhdWx0IGZlZSBtdWx0aXBsaWVyIGluIGJhc2lzIHBvaW50cy4AAAAAFmRlZmF1bHRfbXVsdGlwbGllcl9icHMAAAAAAAAAAAABAAAABA==",
|
|
1679
|
+
"AAAAAAAAADVSZXR1cm5zIHRoZSBkZXBvc2l0IGFkZHJlc3Mgd2hlcmUgZmVlcyBhcmUgY29sbGVjdGVkLgAAAAAAAA9kZXBvc2l0X2FkZHJlc3MAAAAAAAAAAAEAAAAT",
|
|
1680
|
+
"AAAAAAAAAChSZXR1cm5zIHRoZSBwcmljZSBmZWVkIGNvbnRyYWN0IGFkZHJlc3MuAAAACnByaWNlX2ZlZWQAAAAAAAAAAAABAAAAEw==",
|
|
1681
|
+
"AAAAAAAAAHxSZXR1cm5zIHN1cHBvcnRlZCBvcHRpb24gdHlwZXMgZm9yIGEgZGVzdGluYXRpb24gZW5kcG9pbnQuCgojIEFyZ3VtZW50cwoqIGBlaWRgIC0gRGVzdGluYXRpb24gZW5kcG9pbnQgSUQgKGNoYWluIGlkZW50aWZpZXIpAAAAGmdldF9zdXBwb3J0ZWRfb3B0aW9uX3R5cGVzAAAAAAABAAAAAAAAAANlaWQAAAAABAAAAAEAAAPoAAAADg==",
|
|
1682
|
+
"AAAAAAAAADBSZXR1cm5zIHRoZSB3b3JrZXIgZmVlIGxpYnJhcnkgY29udHJhY3QgYWRkcmVzcy4AAAAOd29ya2VyX2ZlZV9saWIAAAAAAAAAAAABAAAAEw==",
|
|
1683
|
+
"AAAAAAAAAOhWZXJpZmllcyBhdXRob3JpemF0aW9uIGZvciB0aGUgZXhlY3V0b3IgY29udHJhY3QuCgpUaGUgcHVibGljIGtleSBtdXN0IGNvcnJlc3BvbmQgdG8gYSByZWdpc3RlcmVkIGFkbWluIGFuZCBtdXN0IGhhdmUgc2lnbmVkIHRoZSBzaWduYXR1cmVfcGF5bG9hZC4KVXNlcyBFZDI1NTE5IHNpZ25hdHVyZSB2ZXJpZmljYXRpb24uCk9ubHkgd2hpdGVsaXN0ZWQgZnVuY3Rpb24gY2FsbHMgYXJlIGF1dGhvcml6ZWQuAAAADF9fY2hlY2tfYXV0aAAAAAMAAAAAAAAAEXNpZ25hdHVyZV9wYXlsb2FkAAAAAAAD7gAAACAAAAAAAAAACWF1dGhfZGF0YQAAAAAAB9AAAAARRXhlY3V0b3JTaWduYXR1cmUAAAAAAAAAAAAADWF1dGhfY29udGV4dHMAAAAAAAPqAAAH0AAAAAdDb250ZXh0AAAAAAEAAAPpAAAD7QAAAAAAAAAD",
|
|
1684
|
+
"AAAAAAAAAERBc3NpZ25zIGEgam9iIHRvIHRoZSBleGVjdXRvciBhbmQgcmV0dXJucyBmZWUgcmVjaXBpZW50IGluZm9ybWF0aW9uLgAAAAphc3NpZ25fam9iAAAAAAAFAAAAAAAAAAhzZW5kX2xpYgAAABMAAAAAAAAABnNlbmRlcgAAAAAAEwAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAAAAAA1jYWxsZGF0YV9zaXplAAAAAAAABAAAAAAAAAAHb3B0aW9ucwAAAAAOAAAAAQAAB9AAAAAMRmVlUmVjaXBpZW50",
|
|
1685
|
+
"AAAAAAAAADdDYWxjdWxhdGVzIHRoZSBleGVjdXRpb24gZmVlIGZvciBhIGNyb3NzLWNoYWluIG1lc3NhZ2UuAAAAAAdnZXRfZmVlAAAAAAUAAAAAAAAACHNlbmRfbGliAAAAEwAAAAAAAAAGc2VuZGVyAAAAAAATAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAAAAAAADWNhbGxkYXRhX3NpemUAAAAAAAAEAAAAAAAAAAdvcHRpb25zAAAAAA4AAAABAAAACw==",
|
|
1686
|
+
"AAAAAAAAAEBTZXRzIGRlc3RpbmF0aW9uLXNwZWNpZmljIGNvbmZpZ3VyYXRpb25zIGZvciBtdWx0aXBsZSBlbmRwb2ludHMuAAAADnNldF9kc3RfY29uZmlnAAAAAAACAAAAAAAAAAVhZG1pbgAAAAAAABMAAAAAAAAABnBhcmFtcwAAAAAD6gAAB9AAAAARU2V0RHN0Q29uZmlnUGFyYW0AAAAAAAAA",
|
|
1687
|
+
"AAAAAAAAAD5SZXR1cm5zIHRoZSBkZXN0aW5hdGlvbiBjb25maWd1cmF0aW9uIGZvciBhIHNwZWNpZmljIGVuZHBvaW50LgAAAAAACmRzdF9jb25maWcAAAAAAAEAAAAAAAAAB2RzdF9laWQAAAAABAAAAAEAAAfQAAAACURzdENvbmZpZwAAAA==",
|
|
1688
|
+
"AAAAAAAAAJFOYXRpdmUgdG9rZW4gZHJvcHMuCgpUcmFuc2ZlcnMgbmF0aXZlIHRva2VucyB0byBlYWNoIHJlY2VpdmVyIHNwZWNpZmllZCBpbiB0aGUgcGFyYW1ldGVycyBhbmQKdHJhY2tzIHRoZSBzdWNjZXNzL2ZhaWx1cmUgc3RhdHVzIG9mIGVhY2ggdHJhbnNmZXIuAAAAAAAAC25hdGl2ZV9kcm9wAAAAAAUAAAAAAAAABWFkbWluAAAAAAAAEwAAAAAAAAAGb3JpZ2luAAAAAAfQAAAABk9yaWdpbgAAAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAAAAAAABG9hcHAAAAATAAAAAAAAABJuYXRpdmVfZHJvcF9wYXJhbXMAAAAAA+oAAAfQAAAAEE5hdGl2ZURyb3BQYXJhbXMAAAAA",
|
|
1689
|
+
"AAAAAAAAACpSZXR1cm5zIHRoZSBlbmRwb2ludCBhZGRyZXNzIGZyb20gc3RvcmFnZS4AAAAAAAhlbmRwb2ludAAAAAAAAAABAAAAEw==",
|
|
1690
|
+
"AAAAAAAAAkJJbml0aWFsaXplcyB0aGUgZXhlY3V0b3IgY29udHJhY3QuCgpTZXRzIHVwIG93bmVyc2hpcCwgd29ya2VyIGNvbmZpZ3VyYXRpb24sIGVuZHBvaW50IGFkZHJlc3MsIGFuZCB3aGl0ZWxpc3RlZCBmdW5jdGlvbnMuCgojIEFyZ3VtZW50cwoqIGBlbmRwb2ludGAgLSBMYXllclplcm8gRW5kcG9pbnQgVjIgY29udHJhY3QgYWRkcmVzcwoqIGBvd25lcmAgLSBDb250cmFjdCBvd25lciBhZGRyZXNzCiogYGFkbWluc2AgLSBJbml0aWFsIGFkbWluIGFkZHJlc3NlcyAobXVzdCBub3QgYmUgZW1wdHkpCiogYG1lc3NhZ2VfbGlic2AgLSBTdXBwb3J0ZWQgbWVzc2FnZSBsaWJyYXJ5IGFkZHJlc3NlcyAoZS5nLiwgVUxOMzAyKQoqIGBwcmljZV9mZWVkYCAtIFByaWNlIGZlZWQgY29udHJhY3QgYWRkcmVzcyBmb3IgZmVlIGNhbGN1bGF0aW9ucwoqIGBkZWZhdWx0X211bHRpcGxpZXJfYnBzYCAtIERlZmF1bHQgZmVlIG11bHRpcGxpZXIgaW4gYmFzaXMgcG9pbnRzICgxMDAwMCA9IDF4KQoqIGB3aGl0ZWxpc3RgIC0gSW5pdGlhbCB3aGl0ZWxpc3RlZCAoY29udHJhY3QsIGZ1bmN0aW9uKSBwYWlycyBmb3IgYXV0aG9yaXphdGlvbgAAAAAADV9fY29uc3RydWN0b3IAAAAAAAAHAAAAAAAAAAhlbmRwb2ludAAAABMAAAAAAAAABW93bmVyAAAAAAAAEwAAAAAAAAAGYWRtaW5zAAAAAAPqAAAAEwAAAAAAAAAMbWVzc2FnZV9saWJzAAAD6gAAABMAAAAAAAAACnByaWNlX2ZlZWQAAAAAABMAAAAAAAAAFmRlZmF1bHRfbXVsdGlwbGllcl9icHMAAAAAAAQAAAAAAAAACXdoaXRlbGlzdAAAAAAAA+oAAAfQAAAADldoaXRlbGlzdEVudHJ5AAAAAAAA",
|
|
1691
|
+
"AAAAAAAAALNTZXRzIHdoZXRoZXIgYSAoY29udHJhY3QsIGZ1bmN0aW9uKSBwYWlyIGlzIHdoaXRlbGlzdGVkLgpXaGVuIGBhbGxvd2VkYCBpcyBmYWxzZSwgdGhlIGVudHJ5IGlzIHJlbW92ZWQgZnJvbSBzdG9yYWdlIHRvIHNhdmUgc3BhY2UuCgpPbmx5IHRoZSBjb250cmFjdCBvd25lciBjYW4gY2FsbCB0aGlzIGZ1bmN0aW9uLgAAAAASc2V0X3doaXRlbGlzdGVkX2ZuAAAAAAADAAAAAAAAAAhjb250cmFjdAAAABMAAAAAAAAAB2ZuX25hbWUAAAAAEQAAAAAAAAAHYWxsb3dlZAAAAAABAAAAAA==",
|
|
1692
|
+
"AAAAAAAAADtSZXR1cm5zIHdoZXRoZXIgYSAoY29udHJhY3QsIGZ1bmN0aW9uKSBwYWlyIGlzIHdoaXRlbGlzdGVkLgAAAAARaXNfd2hpdGVsaXN0ZWRfZm4AAAAAAAACAAAAAAAAAAhjb250cmFjdAAAABMAAAAAAAAAB2ZuX25hbWUAAAAAEQAAAAEAAAAB",
|
|
1693
|
+
"AAAAAAAAALJXaXRoZHJhd3MgYSB0b2tlbiBmcm9tIHRoZSBjb250cmFjdCB0byBhIHNwZWNpZmllZCBhZGRyZXNzLgoKIyBBcmd1bWVudHMKKiBgdG9rZW5gIC0gVGhlIHRva2VuIGNvbnRyYWN0IGFkZHJlc3MKKiBgdG9gIC0gVGhlIHJlY2lwaWVudCBhZGRyZXNzCiogYGFtb3VudGAgLSBUaGUgYW1vdW50IHRvIHdpdGhkcmF3AAAAAAAOd2l0aGRyYXdfdG9rZW4AAAAAAAQAAAAAAAAABWFkbWluAAAAAAAAEwAAAAAAAAAFdG9rZW4AAAAAAAATAAAAAAAAAAJ0bwAAAAAAEwAAAAAAAAAGYW1vdW50AAAAAAALAAAAAA==",
|
|
1694
|
+
"AAAAAAAAAOhTZXRzIGFkbWluIHN0YXR1cyBmb3IgYW4gYWRkcmVzcy4gUmVxdWlyZXMgb3duZXIgYXV0aG9yaXphdGlvbi4KClRoaXMgaXMgdGhlIG11bHRpc2lnL3F1b3J1bSBwYXRoIGZvciBhZG1pbiBtYW5hZ2VtZW50LgoKIyBBcmd1bWVudHMKKiBgYWRtaW5gIC0gVGhlIGFkZHJlc3MgdG8gc2V0IGFkbWluIHN0YXR1cyBmb3IKKiBgYWN0aXZlYCAtIFdoZXRoZXIgdGhlIGFkZHJlc3Mgc2hvdWxkIGJlIGFuIGFkbWluAAAACXNldF9hZG1pbgAAAAAAAAIAAAAAAAAABWFkbWluAAAAAAAAEwAAAAAAAAAGYWN0aXZlAAAAAAABAAAAAA==",
|
|
1695
|
+
"AAAAAAAAAAAAAAAFb3duZXIAAAAAAAAAAAAAAQAAA+gAAAAT",
|
|
1696
|
+
"AAAAAAAAAAAAAAASdHJhbnNmZXJfb3duZXJzaGlwAAAAAAABAAAAAAAAAAluZXdfb3duZXIAAAAAAAATAAAAAA==",
|
|
1697
|
+
"AAAAAAAAAAAAAAAScmVub3VuY2Vfb3duZXJzaGlwAAAAAAAAAAAAAA==",
|
|
1698
|
+
"AAAAAAAAAAAAAAAPc2V0X3R0bF9jb25maWdzAAAAAAIAAAAAAAAACGluc3RhbmNlAAAD6AAAB9AAAAAJVHRsQ29uZmlnAAAAAAAAAAAAAApwZXJzaXN0ZW50AAAAAAPoAAAH0AAAAAlUdGxDb25maWcAAAAAAAAA",
|
|
1699
|
+
"AAAAAAAAAAAAAAALdHRsX2NvbmZpZ3MAAAAAAAAAAAEAAAPtAAAAAgAAA+gAAAfQAAAACVR0bENvbmZpZwAAAAAAA+gAAAfQAAAACVR0bENvbmZpZwAAAA==",
|
|
1700
|
+
"AAAAAAAAAAAAAAASZnJlZXplX3R0bF9jb25maWdzAAAAAAAAAAAAAA==",
|
|
1701
|
+
"AAAAAAAAAAAAAAAVaXNfdHRsX2NvbmZpZ3NfZnJvemVuAAAAAAAAAAAAAAEAAAAB",
|
|
1702
|
+
"AAAAAAAAAH5FeHRlbmRzIHRoZSBpbnN0YW5jZSBUVEwuCgojIEFyZ3VtZW50cwoKKiBgdGhyZXNob2xkYCAtIFRoZSB0aHJlc2hvbGQgdG8gZXh0ZW5kIHRoZSBUVEwuCiogYGV4dGVuZF90b2AgLSBUaGUgVFRMIHRvIGV4dGVuZCB0by4AAAAAABNleHRlbmRfaW5zdGFuY2VfdHRsAAAAAAIAAAAAAAAACXRocmVzaG9sZAAAAAAAAAQAAAAAAAAACWV4dGVuZF90bwAAAAAAAAQAAAAA",
|
|
1703
|
+
"AAAAAQAAAI9XaGl0ZWxpc3QgZW50cnkgZm9yIGF1dGhvcml6ZWQgKGNvbnRyYWN0LCBmdW5jdGlvbikgcGFpcnMuCgpVc2VkIHRvIGNvbmZpZ3VyZSB3aGljaCBjb250cmFjdHMgYW5kIGZ1bmN0aW9ucyBjYW4gdHJpZ2dlciBFeGVjdXRvciBhdXRob3JpemF0aW9uLgAAAAAAAAAADldoaXRlbGlzdEVudHJ5AAAAAAACAAAANkNvbnRyYWN0IGFkZHJlc3MgdGhhdCBpcyBhbGxvd2VkIHRvIGNhbGwgdGhlIGZ1bmN0aW9uLgAAAAAACGNvbnRyYWN0AAAAEwAAADRGdW5jdGlvbiBuYW1lIHRoYXQgaXMgd2hpdGVsaXN0ZWQgZm9yIHRoaXMgY29udHJhY3QuAAAAB2ZuX25hbWUAAAAAEQ==",
|
|
1704
|
+
"AAAAAQAAAIxTaWduYXR1cmUgZGF0YSBmb3IgQ3VzdG9tIEFjY291bnQgYXV0aG9yaXphdGlvbi4KQ29udGFpbnMgdGhlIGFkbWluJ3MgcHVibGljIGtleSBhbmQgdGhlaXIgRWQyNTUxOSBzaWduYXR1cmUgb3ZlciB0aGUgYXV0aG9yaXphdGlvbiBwYXlsb2FkLgAAAAAAAAARRXhlY3V0b3JTaWduYXR1cmUAAAAAAAACAAAATUFkbWluJ3MgRWQyNTUxOSBwdWJsaWMga2V5ICgzMiBieXRlcykgLSBtdXN0IGNvcnJlc3BvbmQgdG8gYSByZWdpc3RlcmVkIGFkbWluAAAAAAAACnB1YmxpY19rZXkAAAAAA+4AAAAgAAAAN0VkMjU1MTkgc2lnbmF0dXJlICg2NCBieXRlcykgb3ZlciB0aGUgc2lnbmF0dXJlX3BheWxvYWQAAAAACXNpZ25hdHVyZQAAAAAAA+4AAABA",
|
|
1705
|
+
"AAAAAgAAAAAAAAAAAAAAD0V4ZWN1dG9yU3RvcmFnZQAAAAADAAAAAQAAAAAAAAAJRHN0Q29uZmlnAAAAAAAAAQAAAAQAAAAAAAAAAAAAAAhFbmRwb2ludAAAAAEAAAAAAAAADVdoaXRlbGlzdGVkRm4AAAAAAAACAAAAEwAAABE=",
|
|
1706
|
+
"AAAABQAAAAAAAAAAAAAAEU5hdGl2ZURyb3BBcHBsaWVkAAAAAAAAAQAAABFOYXRpdmVEcm9wQXBwbGllZAAAAAAAAAUAAAAAAAAABm9yaWdpbgAAAAAH0AAAAAZPcmlnaW4AAAAAAAAAAAAAAAAAB2RzdF9laWQAAAAABAAAAAAAAAAAAAAABG9hcHAAAAATAAAAAAAAAAAAAAASbmF0aXZlX2Ryb3BfcGFyYW1zAAAAAAPqAAAH0AAAABBOYXRpdmVEcm9wUGFyYW1zAAAAAAAAAAAAAAAHc3VjY2VzcwAAAAPqAAAAAQAAAAAAAAAC",
|
|
1707
|
+
"AAAABQAAAAAAAAAAAAAADERzdENvbmZpZ1NldAAAAAEAAAAMRHN0Q29uZmlnU2V0AAAAAQAAAAAAAAAGcGFyYW1zAAAAAAPqAAAH0AAAABFTZXREc3RDb25maWdQYXJhbQAAAAAAAAAAAAAC",
|
|
1708
|
+
"AAAABAAAAAAAAAAAAAAADUV4ZWN1dG9yRXJyb3IAAAAAAAADAAAAAAAAAA9FaWROb3RTdXBwb3J0ZWQAAAAAAQAAAAAAAAAMVW5hdXRob3JpemVkAAAAAgAAAAAAAAATVW5hdXRob3JpemVkQ29udGV4dAAAAAAD",
|
|
1709
|
+
"AAAABAAAAAAAAAAAAAAADUVuZHBvaW50RXJyb3IAAAAAAAAYAAAAAAAAABFBbHJlYWR5UmVnaXN0ZXJlZAAAAAAAAAEAAAAAAAAADUNvbXBvc2VFeGlzdHMAAAAAAAACAAAAAAAAAA9Db21wb3NlTm90Rm91bmQAAAAAAwAAAAAAAAAcRGVmYXVsdFJlY2VpdmVMaWJVbmF2YWlsYWJsZQAAAAQAAAAAAAAAGURlZmF1bHRTZW5kTGliVW5hdmFpbGFibGUAAAAAAAAFAAAAAAAAABVJbnN1ZmZpY2llbnROYXRpdmVGZWUAAAAAAAAGAAAAAAAAABJJbnN1ZmZpY2llbnRaUk9GZWUAAAAAAAcAAAAAAAAADUludmFsaWRFeHBpcnkAAAAAAAAIAAAAAAAAAAxJbnZhbGlkSW5kZXgAAAAJAAAAAAAAAAxJbnZhbGlkTm9uY2UAAAAKAAAAAAAAABJJbnZhbGlkUGF5bG9hZEhhc2gAAAAAAAsAAAAAAAAAFUludmFsaWRSZWNlaXZlTGlicmFyeQAAAAAAAAwAAAAAAAAAEU9ubHlOb25EZWZhdWx0TGliAAAAAAAADQAAAAAAAAAOT25seVJlY2VpdmVMaWIAAAAAAA4AAAAAAAAAEU9ubHlSZWdpc3RlcmVkTGliAAAAAAAADwAAAAAAAAALT25seVNlbmRMaWIAAAAAEAAAAAAAAAAUUGF0aE5vdEluaXRpYWxpemFibGUAAAARAAAAAAAAABFQYXRoTm90VmVyaWZpYWJsZQAAAAAAABIAAAAAAAAAE1BheWxvYWRIYXNoTm90Rm91bmQAAAAAEwAAAAAAAAAJU2FtZVZhbHVlAAAAAAAAFAAAAAAAAAAMVW5hdXRob3JpemVkAAAAFQAAAAAAAAAOVW5zdXBwb3J0ZWRFaWQAAAAAABYAAAAAAAAAClplcm9aUk9GZWUAAAAAABcAAAAAAAAADlpST1VuYXZhaWxhYmxlAAAAAAAY",
|
|
1710
|
+
"AAAABQAAAAAAAAAAAAAAClBhY2tldFNlbnQAAAAAAAEAAAAKUGFja2V0U2VudAAAAAAAAwAAAAAAAAAOZW5jb2RlZF9wYWNrZXQAAAAAAA4AAAAAAAAAAAAAAAdvcHRpb25zAAAAAA4AAAAAAAAAAAAAAAxzZW5kX2xpYnJhcnkAAAATAAAAAAAAAAI=",
|
|
1711
|
+
"AAAABQAAAAAAAAAAAAAADlBhY2tldFZlcmlmaWVkAAAAAAABAAAADlBhY2tldFZlcmlmaWVkAAAAAAADAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAAAAAAxwYXlsb2FkX2hhc2gAAAPuAAAAIAAAAAAAAAAC",
|
|
1712
|
+
"AAAABQAAAAAAAAAAAAAAD1BhY2tldERlbGl2ZXJlZAAAAAABAAAAD1BhY2tldERlbGl2ZXJlZAAAAAACAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAg==",
|
|
1713
|
+
"AAAABQAAAAAAAAAAAAAADkx6UmVjZWl2ZUFsZXJ0AAAAAAABAAAADkx6UmVjZWl2ZUFsZXJ0AAAAAAAJAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAAAAAAhleGVjdXRvcgAAABMAAAABAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAARndWlkAAAD7gAAACAAAAABAAAAAAAAAANnYXMAAAAACwAAAAAAAAAAAAAABXZhbHVlAAAAAAAACwAAAAAAAAAAAAAAB21lc3NhZ2UAAAAADgAAAAAAAAAAAAAACmV4dHJhX2RhdGEAAAAAAA4AAAAAAAAAAAAAAAZyZWFzb24AAAAAAA4AAAAAAAAAAg==",
|
|
1714
|
+
"AAAABQAAAAAAAAAAAAAABlpST1NldAAAAAAAAQAAAAZaUk9TZXQAAAAAAAEAAAAAAAAAA3pybwAAAAATAAAAAAAAAAI=",
|
|
1715
|
+
"AAAABQAAAAAAAAAAAAAAC0RlbGVnYXRlU2V0AAAAAAEAAAALRGVsZWdhdGVTZXQAAAAAAgAAAAAAAAAEb2FwcAAAABMAAAABAAAAAAAAAAhkZWxlZ2F0ZQAAA+gAAAATAAAAAAAAAAI=",
|
|
1716
|
+
"AAAABQAAAAAAAAAAAAAAE0luYm91bmROb25jZVNraXBwZWQAAAAAAQAAABNJbmJvdW5kTm9uY2VTa2lwcGVkAAAAAAQAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAABnNlbmRlcgAAAAAD7gAAACAAAAABAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAAAAAAVub25jZQAAAAAAAAYAAAABAAAAAg==",
|
|
1717
|
+
"AAAABQAAAAAAAAAAAAAADlBhY2tldE5pbGlmaWVkAAAAAAABAAAADlBhY2tldE5pbGlmaWVkAAAAAAAFAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAABAAAAAAAAAAZzZW5kZXIAAAAAA+4AAAAgAAAAAQAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAQAAAAAAAAAFbm9uY2UAAAAAAAAGAAAAAQAAAAAAAAAMcGF5bG9hZF9oYXNoAAAD6AAAA+4AAAAgAAAAAAAAAAI=",
|
|
1718
|
+
"AAAABQAAAAAAAAAAAAAAC1BhY2tldEJ1cm50AAAAAAEAAAALUGFja2V0QnVybnQAAAAABQAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAAAAAAAAGc2VuZGVyAAAAAAPuAAAAIAAAAAEAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAEAAAAAAAAABW5vbmNlAAAAAAAABgAAAAEAAAAAAAAADHBheWxvYWRfaGFzaAAAA+4AAAAgAAAAAAAAAAI=",
|
|
1719
|
+
"AAAABQAAAAAAAAAAAAAAEUxpYnJhcnlSZWdpc3RlcmVkAAAAAAAAAQAAABFMaWJyYXJ5UmVnaXN0ZXJlZAAAAAAAAAEAAAAAAAAAB25ld19saWIAAAAAEwAAAAAAAAAC",
|
|
1720
|
+
"AAAABQAAAAAAAAAAAAAAFURlZmF1bHRTZW5kTGlicmFyeVNldAAAAAAAAAEAAAAVRGVmYXVsdFNlbmRMaWJyYXJ5U2V0AAAAAAAAAgAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAQAAAAAAAAAHbmV3X2xpYgAAAAATAAAAAAAAAAI=",
|
|
1721
|
+
"AAAABQAAAAAAAAAAAAAAGERlZmF1bHRSZWNlaXZlTGlicmFyeVNldAAAAAEAAAAYRGVmYXVsdFJlY2VpdmVMaWJyYXJ5U2V0AAAAAgAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAAAAAAAAHbmV3X2xpYgAAAAATAAAAAAAAAAI=",
|
|
1722
|
+
"AAAABQAAAAAAAAAAAAAAH0RlZmF1bHRSZWNlaXZlTGlicmFyeVRpbWVvdXRTZXQAAAAAAQAAAB9EZWZhdWx0UmVjZWl2ZUxpYnJhcnlUaW1lb3V0U2V0AAAAAAIAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAAB3RpbWVvdXQAAAAD6AAAB9AAAAAHVGltZW91dAAAAAAAAAAAAg==",
|
|
1723
|
+
"AAAABQAAAAAAAAAAAAAADlNlbmRMaWJyYXJ5U2V0AAAAAAABAAAADlNlbmRMaWJyYXJ5U2V0AAAAAAADAAAAAAAAAAZzZW5kZXIAAAAAABMAAAABAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAABAAAAAAAAAAduZXdfbGliAAAAA+gAAAATAAAAAAAAAAI=",
|
|
1724
|
+
"AAAABQAAAAAAAAAAAAAAEVJlY2VpdmVMaWJyYXJ5U2V0AAAAAAAAAQAAABFSZWNlaXZlTGlicmFyeVNldAAAAAAAAAMAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAEAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAAB25ld19saWIAAAAD6AAAABMAAAAAAAAAAg==",
|
|
1725
|
+
"AAAABQAAAAAAAAAAAAAAGFJlY2VpdmVMaWJyYXJ5VGltZW91dFNldAAAAAEAAAAYUmVjZWl2ZUxpYnJhcnlUaW1lb3V0U2V0AAAAAwAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAQAAAAAAAAADZWlkAAAAAAQAAAABAAAAAAAAAAd0aW1lb3V0AAAAA+gAAAfQAAAAB1RpbWVvdXQAAAAAAAAAAAI=",
|
|
1726
|
+
"AAAABQAAAAAAAAAAAAAAC0NvbXBvc2VTZW50AAAAAAEAAAALQ29tcG9zZVNlbnQAAAAABQAAAAAAAAAEZnJvbQAAABMAAAABAAAAAAAAAAJ0bwAAAAAAEwAAAAEAAAAAAAAABGd1aWQAAAPuAAAAIAAAAAEAAAAAAAAABWluZGV4AAAAAAAABAAAAAEAAAAAAAAAB21lc3NhZ2UAAAAADgAAAAAAAAAC",
|
|
1727
|
+
"AAAABQAAAAAAAAAAAAAAEENvbXBvc2VEZWxpdmVyZWQAAAABAAAAEENvbXBvc2VEZWxpdmVyZWQAAAAEAAAAAAAAAARmcm9tAAAAEwAAAAEAAAAAAAAAAnRvAAAAAAATAAAAAQAAAAAAAAAEZ3VpZAAAA+4AAAAgAAAAAQAAAAAAAAAFaW5kZXgAAAAAAAAEAAAAAQAAAAI=",
|
|
1728
|
+
"AAAABQAAAAAAAAAAAAAADkx6Q29tcG9zZUFsZXJ0AAAAAAABAAAADkx6Q29tcG9zZUFsZXJ0AAAAAAAKAAAAAAAAAARmcm9tAAAAEwAAAAEAAAAAAAAAAnRvAAAAAAATAAAAAQAAAAAAAAAIZXhlY3V0b3IAAAATAAAAAQAAAAAAAAAEZ3VpZAAAA+4AAAAgAAAAAQAAAAAAAAAFaW5kZXgAAAAAAAAEAAAAAQAAAAAAAAADZ2FzAAAAAAsAAAAAAAAAAAAAAAV2YWx1ZQAAAAAAAAsAAAAAAAAAAAAAAAdtZXNzYWdlAAAAAA4AAAAAAAAAAAAAAApleHRyYV9kYXRhAAAAAAAOAAAAAAAAAAAAAAAGcmVhc29uAAAAAAAOAAAAAAAAAAI=",
|
|
1729
|
+
"AAAAAQAAAC1QYXJhbWV0ZXJzIGZvciBzZW5kaW5nIGEgY3Jvc3MtY2hhaW4gbWVzc2FnZS4AAAAAAAAAAAAAD01lc3NhZ2luZ1BhcmFtcwAAAAAFAAAAK0Rlc3RpbmF0aW9uIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKS4AAAAAB2RzdF9laWQAAAAABAAAABxUaGUgbWVzc2FnZSBwYXlsb2FkIHRvIHNlbmQuAAAAB21lc3NhZ2UAAAAADgAAACFFbmNvZGVkIGV4ZWN1dG9yIGFuZCBEVk4gb3B0aW9ucy4AAAAAAAAHb3B0aW9ucwAAAAAOAAAAOVdoZXRoZXIgdG8gcGF5IGZlZXMgaW4gWlJPIHRva2VuIGluc3RlYWQgb2YgbmF0aXZlIHRva2VuLgAAAAAAAApwYXlfaW5fenJvAAAAAAABAAAANVJlY2VpdmVyIGFkZHJlc3Mgb24gdGhlIGRlc3RpbmF0aW9uIGNoYWluICgzMiBieXRlcykuAAAAAAAACHJlY2VpdmVyAAAD7gAAACA=",
|
|
1730
|
+
"AAAAAQAAAE1Tb3VyY2UgbWVzc2FnZSBpbmZvcm1hdGlvbiBpZGVudGlmeWluZyB3aGVyZSBhIGNyb3NzLWNoYWluIG1lc3NhZ2UgY2FtZSBmcm9tLgAAAAAAAAAAAAAGT3JpZ2luAAAAAAADAAAAF05vbmNlIGZvciB0aGlzIHBhdGh3YXkuAAAAAAVub25jZQAAAAAAAAYAAAAuU2VuZGVyIGFkZHJlc3Mgb24gdGhlIHNvdXJjZSBjaGFpbiAoMzIgYnl0ZXMpLgAAAAAABnNlbmRlcgAAAAAD7gAAACAAAAAmU291cmNlIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKS4AAAAAAAdzcmNfZWlkAAAAAAQ=",
|
|
1731
|
+
"AAAAAQAAAChGZWUgc3RydWN0dXJlIGZvciBjcm9zcy1jaGFpbiBtZXNzYWdpbmcuAAAAAAAAAAxNZXNzYWdpbmdGZWUAAAACAAAAH0ZlZSBwYWlkIGluIG5hdGl2ZSB0b2tlbiAoWExNKS4AAAAACm5hdGl2ZV9mZWUAAAAAAAsAAAAoRmVlIHBhaWQgaW4gWlJPIHRva2VuIChMYXllclplcm8gdG9rZW4pLgAAAAd6cm9fZmVlAAAAAAs=",
|
|
1732
|
+
"AAAAAQAAAEJSZWNlaXB0IHJldHVybmVkIGFmdGVyIHN1Y2Nlc3NmdWxseSBzZW5kaW5nIGEgY3Jvc3MtY2hhaW4gbWVzc2FnZS4AAAAAAAAAAAAQTWVzc2FnaW5nUmVjZWlwdAAAAAMAAAApVGhlIGZlZXMgY2hhcmdlZCBmb3Igc2VuZGluZyB0aGUgbWVzc2FnZS4AAAAAAAADZmVlAAAAB9AAAAAMTWVzc2FnaW5nRmVlAAAAK0dsb2JhbGx5IHVuaXF1ZSBpZGVudGlmaWVyIGZvciB0aGUgbWVzc2FnZS4AAAAABGd1aWQAAAPuAAAAIAAAACRUaGUgb3V0Ym91bmQgbm9uY2UgZm9yIHRoaXMgcGF0aHdheS4AAAAFbm9uY2UAAAAAAAAG",
|
|
1733
|
+
"AAAAAgAAADhUeXBlIG9mIG1lc3NhZ2UgbGlicmFyeSBpbmRpY2F0aW5nIHN1cHBvcnRlZCBvcGVyYXRpb25zLgAAAAAAAAAOTWVzc2FnZUxpYlR5cGUAAAAAAAMAAAAAAAAAH1N1cHBvcnRzIG9ubHkgc2VuZGluZyBtZXNzYWdlcy4AAAAABFNlbmQAAAAAAAAAIVN1cHBvcnRzIG9ubHkgcmVjZWl2aW5nIG1lc3NhZ2VzLgAAAAAAAAdSZWNlaXZlAAAAAAAAAAAtU3VwcG9ydHMgYm90aCBzZW5kaW5nIGFuZCByZWNlaXZpbmcgbWVzc2FnZXMuAAAAAAAADlNlbmRBbmRSZWNlaXZlAAA=",
|
|
1734
|
+
"AAAAAQAAALdWZXJzaW9uIGluZm9ybWF0aW9uIGZvciBhIG1lc3NhZ2UgbGlicmFyeS4KCk5vdGU6IGBtaW5vcmAgYW5kIGBlbmRwb2ludF92ZXJzaW9uYCB1c2UgYHUzMmAgaW5zdGVhZCBvZiBgdThgIGJlY2F1c2UgU3RlbGxhciBkb2VzIG5vdApzdXBwb3J0IGB1OGAgdHlwZXMgaW4gY29udHJhY3QgaW50ZXJmYWNlIGZ1bmN0aW9ucy4AAAAAAAAAABFNZXNzYWdlTGliVmVyc2lvbgAAAAAAAAMAAAAzRW5kcG9pbnQgdmVyc2lvbiAoc2hvdWxkIG5vdCBleGNlZWQgdTg6Ok1BWCA9IDI1NSkuAAAAABBlbmRwb2ludF92ZXJzaW9uAAAABAAAABVNYWpvciB2ZXJzaW9uIG51bWJlci4AAAAAAAAFbWFqb3IAAAAAAAAGAAAAN01pbm9yIHZlcnNpb24gbnVtYmVyIChzaG91bGQgbm90IGV4Y2VlZCB1ODo6TUFYID0gMjU1KS4AAAAABW1pbm9yAAAAAAAABA==",
|
|
1735
|
+
"AAAAAQAAADZUaW1lb3V0IGNvbmZpZ3VyYXRpb24gZm9yIHJlY2VpdmUgbGlicmFyeSB0cmFuc2l0aW9ucy4AAAAAAAAAAAAHVGltZW91dAAAAAACAAAAKFVuaXggdGltZXN0YW1wIHdoZW4gdGhlIHRpbWVvdXQgZXhwaXJlcy4AAAAGZXhwaXJ5AAAAAAAGAAAAKVRoZSBuZXcgbGlicmFyeSBhZGRyZXNzIHRvIHRyYW5zaXRpb24gdG8uAAAAAAAAA2xpYgAAAAAT",
|
|
1736
|
+
"AAAAAQAAADVQYXJhbWV0ZXJzIGZvciBzZXR0aW5nIG1lc3NhZ2UgbGlicmFyeSBjb25maWd1cmF0aW9uLgAAAAAAAAAAAAAOU2V0Q29uZmlnUGFyYW0AAAAAAAMAAAAfWERSLWVuY29kZWQgY29uZmlndXJhdGlvbiBkYXRhLgAAAAAGY29uZmlnAAAAAAAOAAAAMFRoZSB0eXBlIG9mIGNvbmZpZ3VyYXRpb24gKGUuZy4sIGV4ZWN1dG9yLCBVTE4pLgAAAAtjb25maWdfdHlwZQAAAAAEAAAAJ1RoZSBlbmRwb2ludCBJRCB0aGlzIGNvbmZpZyBhcHBsaWVzIHRvLgAAAAADZWlkAAAAAAQ=",
|
|
1737
|
+
"AAAAAQAAADFSZXNvbHZlZCBsaWJyYXJ5IGluZm9ybWF0aW9uIHdpdGggZGVmYXVsdCBzdGF0dXMuAAAAAAAAAAAAAA9SZXNvbHZlZExpYnJhcnkAAAAAAgAAAERXaGV0aGVyIHRoaXMgaXMgdGhlIGRlZmF1bHQgbGlicmFyeSAodHJ1ZSkgb3IgT0FwcC1zcGVjaWZpYyAoZmFsc2UpLgAAAAppc19kZWZhdWx0AAAAAAABAAAAHVRoZSByZXNvbHZlZCBsaWJyYXJ5IGFkZHJlc3MuAAAAAAAAA2xpYgAAAAAT",
|
|
1738
|
+
"AAAAAQAAAEhPdXRib3VuZCBwYWNrZXQgY29udGFpbmluZyBhbGwgaW5mb3JtYXRpb24gZm9yIGNyb3NzLWNoYWluIHRyYW5zbWlzc2lvbi4AAAAAAAAADk91dGJvdW5kUGFja2V0AAAAAAAHAAAAGERlc3RpbmF0aW9uIGVuZHBvaW50IElELgAAAAdkc3RfZWlkAAAAAAQAAAAsR2xvYmFsbHkgdW5pcXVlIGlkZW50aWZpZXIgZm9yIHRoaXMgbWVzc2FnZS4AAAAEZ3VpZAAAA+4AAAAgAAAAFFRoZSBtZXNzYWdlIHBheWxvYWQuAAAAB21lc3NhZ2UAAAAADgAAACBPdXRib3VuZCBub25jZSBmb3IgdGhpcyBwYXRod2F5LgAAAAVub25jZQAAAAAAAAYAAAAxUmVjZWl2ZXIgYWRkcmVzcyBvbiBkZXN0aW5hdGlvbiBjaGFpbiAoMzIgYnl0ZXMpLgAAAAAAAAhyZWNlaXZlcgAAA+4AAAAgAAAAH1NlbmRlciBhZGRyZXNzIG9uIHNvdXJjZSBjaGFpbi4AAAAABnNlbmRlcgAAAAAAEwAAABNTb3VyY2UgZW5kcG9pbnQgSUQuAAAAAAdzcmNfZWlkAAAAAAQ=",
|
|
1739
|
+
"AAAAAQAAACtBIGZlZSByZWNpcGllbnQgd2l0aCB0aGUgYW1vdW50IHRvIGJlIHBhaWQuAAAAAAAAAAAMRmVlUmVjaXBpZW50AAAAAgAAABVBbW91bnQgb2YgZmVlIHRvIHBheS4AAAAAAAAGYW1vdW50AAAAAAALAAAAH1RoZSBhZGRyZXNzIHRvIHNlbmQgdGhlIGZlZSB0by4AAAAAAnRvAAAAAAAT",
|
|
1740
|
+
"AAAAAQAAADxSZXN1bHQgb2Ygc2VuZCBvcGVyYXRpb24gY29udGFpbmluZyBmZWVzIGFuZCBlbmNvZGVkIHBhY2tldC4AAAAAAAAADUZlZXNBbmRQYWNrZXQAAAAAAAADAAAAKlRoZSBlbmNvZGVkIHBhY2tldCByZWFkeSBmb3IgdHJhbnNtaXNzaW9uLgAAAAAADmVuY29kZWRfcGFja2V0AAAAAAAOAAAAP0xpc3Qgb2YgbmF0aXZlIHRva2VuIGZlZSByZWNpcGllbnRzIChleGVjdXRvciwgRFZOcywgdHJlYXN1cnkpLgAAAAAVbmF0aXZlX2ZlZV9yZWNpcGllbnRzAAAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50AAAALExpc3Qgb2YgWlJPIHRva2VuIGZlZSByZWNpcGllbnRzICh0cmVhc3VyeSkuAAAAEnpyb19mZWVfcmVjaXBpZW50cwAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50",
|
|
1741
|
+
"AAAABAAAAAAAAAAAAAAAElBhY2tldENvZGVjVjFFcnJvcgAAAAAAAgAAAAAAAAATSW52YWxpZFBhY2tldEhlYWRlcgAAAAPpAAAAAAAAABRJbnZhbGlkUGFja2V0VmVyc2lvbgAAA+o=",
|
|
1742
|
+
"AAAABAAAAAAAAAAAAAAAEldvcmtlck9wdGlvbnNFcnJvcgAAAAAACQAAAAAAAAASSW52YWxpZEJ5dGVzTGVuZ3RoAAAAAARNAAAAAAAAABlJbnZhbGlkTGVnYWN5T3B0aW9uc1R5cGUxAAAAAAAETgAAAAAAAAAZSW52YWxpZExlZ2FjeU9wdGlvbnNUeXBlMgAAAAAABE8AAAAAAAAAEUludmFsaWRPcHRpb25UeXBlAAAAAAAEUAAAAAAAAAAOSW52YWxpZE9wdGlvbnMAAAAABFEAAAAAAAAAD0ludmFsaWRXb3JrZXJJZAAAAARSAAAAAAAAAB1MZWdhY3lPcHRpb25zVHlwZTFHYXNPdmVyZmxvdwAAAAAABFMAAAAAAAAAIExlZ2FjeU9wdGlvbnNUeXBlMkFtb3VudE92ZXJmbG93AAAEVAAAAAAAAAAdTGVnYWN5T3B0aW9uc1R5cGUyR2FzT3ZlcmZsb3cAAAAAAARV",
|
|
1743
|
+
"AAAABAAAAAAAAAAAAAAAEUJ1ZmZlclJlYWRlckVycm9yAAAAAAAAAgAAAAAAAAANSW52YWxpZExlbmd0aAAAAAAAA+gAAAAAAAAAFUludmFsaWRBZGRyZXNzUGF5bG9hZAAAAAAAA+k=",
|
|
1744
|
+
"AAAABAAAAAAAAAAAAAAAEUJ1ZmZlcldyaXRlckVycm9yAAAAAAAAAQAAAAAAAAAVSW52YWxpZEFkZHJlc3NQYXlsb2FkAAAAAAAETA==",
|
|
1745
|
+
"AAAABAAAAAAAAAAAAAAACFR0bEVycm9yAAAAAwAAAAAAAAAQSW52YWxpZFR0bENvbmZpZwAABLAAAAAAAAAAD1R0bENvbmZpZ0Zyb3plbgAAAASxAAAAAAAAABZUdGxDb25maWdBbHJlYWR5RnJvemVuAAAAAASy",
|
|
1746
|
+
"AAAABAAAAAAAAAAAAAAADE93bmFibGVFcnJvcgAAAAIAAAAAAAAAD093bmVyQWxyZWFkeVNldAAAAAUUAAAAAAAAAAtPd25lck5vdFNldAAAAAUV",
|
|
1747
|
+
"AAAABAAAAAAAAAAAAAAADUJ5dGVzRXh0RXJyb3IAAAAAAAABAAAAAAAAAA5MZW5ndGhNaXNtYXRjaAAAAAAFeA==",
|
|
1748
|
+
"AAAABQAAACxFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHRyYW5zZmVycmVkLgAAAAAAAAAUT3duZXJzaGlwVHJhbnNmZXJyZWQAAAABAAAAFE93bmVyc2hpcFRyYW5zZmVycmVkAAAAAgAAAAAAAAAJb2xkX293bmVyAAAAAAAAEwAAAAAAAAAAAAAACW5ld19vd25lcgAAAAAAABMAAAAAAAAAAg==",
|
|
1749
|
+
"AAAABQAAACpFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHJlbm91bmNlZC4AAAAAAAAAAAAST3duZXJzaGlwUmVub3VuY2VkAAAAAAABAAAAEk93bmVyc2hpcFJlbm91bmNlZAAAAAAAAQAAAAAAAAAJb2xkX293bmVyAAAAAAAAEwAAAAAAAAAC",
|
|
1750
|
+
"AAAAAgAAAAAAAAAAAAAAFURlZmF1bHRPd25hYmxlU3RvcmFnZQAAAAAAAAEAAAAAAAAAAAAAAAVPd25lcgAAAA==",
|
|
1751
|
+
"AAAAAQAAAFdBIHBhaXIgb2YgVFRMIHZhbHVlczogdGhyZXNob2xkICh3aGVuIHRvIHRyaWdnZXIgZXh0ZW5zaW9uKSBhbmQgZXh0ZW5kX3RvICh0YXJnZXQgVFRMKS4AAAAAAAAAAAlUdGxDb25maWcAAAAAAAACAAAAKFRhcmdldCBUVEwgYWZ0ZXIgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAJZXh0ZW5kX3RvAAAAAAAABAAAADNUVEwgdGhyZXNob2xkIHRoYXQgdHJpZ2dlcnMgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAACXRocmVzaG9sZAAAAAAAAAQ=",
|
|
1752
|
+
"AAAAAgAAAAAAAAAAAAAAEFR0bENvbmZpZ1N0b3JhZ2UAAAADAAAAAAAAAAAAAAAGRnJvemVuAAAAAAAAAAAAAAAAAAhJbnN0YW5jZQAAAAAAAAAAAAAAClBlcnNpc3RlbnQAAA==",
|
|
1753
|
+
"AAAABAAAAAAAAAAAAAAAC1dvcmtlckVycm9yAAAAABMAAAAAAAAAEkFkbWluQWxyZWFkeUV4aXN0cwAAAAAEsAAAAAAAAAANQWRtaW5Ob3RGb3VuZAAAAAAABLEAAAAAAAAAEkFscmVhZHlPbkFsbG93bGlzdAAAAAAEsgAAAAAAAAARQWxyZWFkeU9uRGVueWxpc3QAAAAAAASzAAAAAAAAABtBdHRlbXB0aW5nVG9SZW1vdmVPbmx5QWRtaW4AAAAEtAAAAAAAAAAURGVwb3NpdEFkZHJlc3NOb3RTZXQAAAS1AAAAAAAAABpNZXNzYWdlTGliQWxyZWFkeVN1cHBvcnRlZAAAAAAEtgAAAAAAAAAWTWVzc2FnZUxpYk5vdFN1cHBvcnRlZAAAAAAEtwAAAAAAAAAQTm9BZG1pbnNQcm92aWRlZAAABLgAAAAAAAAACk5vdEFsbG93ZWQAAAAABLkAAAAAAAAADk5vdE9uQWxsb3dsaXN0AAAAAAS6AAAAAAAAAA1Ob3RPbkRlbnlsaXN0AAAAAAAEuwAAAAAAAAAUUGF1c2VTdGF0dXNVbmNoYW5nZWQAAAS8AAAAAAAAAA9QcmljZUZlZWROb3RTZXQAAAAEvQAAAAAAAAAMUmVJbml0aWFsaXplAAAEvgAAAAAAAAAMVW5hdXRob3JpemVkAAAEvwAAAAAAAAAVVW5zdXBwb3J0ZWRNZXNzYWdlTGliAAAAAAAEwAAAAAAAAAASV29ya2VyRmVlTGliTm90U2V0AAAAAATBAAAAAAAAAA5Xb3JrZXJJc1BhdXNlZAAAAAAEwg==",
|
|
1754
|
+
"AAAABQAAAAAAAAAAAAAACFNldEFkbWluAAAAAQAAAAhTZXRBZG1pbgAAAAIAAAAAAAAABWFkbWluAAAAAAAAEwAAAAAAAAAAAAAABmFjdGl2ZQAAAAAAAQAAAAAAAAAC",
|
|
1755
|
+
"AAAABQAAAAAAAAAAAAAAFlNldFN1cHBvcnRlZE1lc3NhZ2VMaWIAAAAAAAEAAAAWU2V0U3VwcG9ydGVkTWVzc2FnZUxpYgAAAAAAAgAAAAAAAAALbWVzc2FnZV9saWIAAAAAEwAAAAAAAAAAAAAACXN1cHBvcnRlZAAAAAAAAAEAAAAAAAAAAg==",
|
|
1756
|
+
"AAAABQAAAAAAAAAAAAAADFNldEFsbG93bGlzdAAAAAEAAAAMU2V0QWxsb3dsaXN0AAAAAgAAAAAAAAAEb2FwcAAAABMAAAAAAAAAAAAAAAdhbGxvd2VkAAAAAAEAAAAAAAAAAg==",
|
|
1757
|
+
"AAAABQAAAAAAAAAAAAAAC1NldERlbnlsaXN0AAAAAAEAAAALU2V0RGVueWxpc3QAAAAAAgAAAAAAAAAEb2FwcAAAABMAAAAAAAAAAAAAAAZkZW5pZWQAAAAAAAEAAAAAAAAAAg==",
|
|
1758
|
+
"AAAABQAAAAAAAAAAAAAABlBhdXNlZAAAAAAAAQAAAAZQYXVzZWQAAAAAAAEAAAAAAAAABnBhdXNlcgAAAAAAEwAAAAAAAAAC",
|
|
1759
|
+
"AAAABQAAAAAAAAAAAAAACFVucGF1c2VkAAAAAQAAAAhVbnBhdXNlZAAAAAEAAAAAAAAACHVucGF1c2VyAAAAEwAAAAAAAAAC",
|
|
1760
|
+
"AAAABQAAAAAAAAAAAAAAF1NldERlZmF1bHRNdWx0aXBsaWVyQnBzAAAAAAEAAAAXU2V0RGVmYXVsdE11bHRpcGxpZXJCcHMAAAAAAQAAAAAAAAAObXVsdGlwbGllcl9icHMAAAAAAAQAAAAAAAAAAg==",
|
|
1761
|
+
"AAAABQAAAAAAAAAAAAAAEVNldERlcG9zaXRBZGRyZXNzAAAAAAAAAQAAABFTZXREZXBvc2l0QWRkcmVzcwAAAAAAAAEAAAAAAAAAD2RlcG9zaXRfYWRkcmVzcwAAAAATAAAAAAAAAAI=",
|
|
1762
|
+
"AAAABQAAAAAAAAAAAAAADFNldFByaWNlRmVlZAAAAAEAAAAMU2V0UHJpY2VGZWVkAAAAAQAAAAAAAAAKcHJpY2VfZmVlZAAAAAAAEwAAAAAAAAAC",
|
|
1763
|
+
"AAAABQAAAAAAAAAAAAAAF1NldFN1cHBvcnRlZE9wdGlvblR5cGVzAAAAAAEAAAAXU2V0U3VwcG9ydGVkT3B0aW9uVHlwZXMAAAAAAgAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAAAAAAAAAAAMb3B0aW9uX3R5cGVzAAAADgAAAAAAAAAC",
|
|
1764
|
+
"AAAABQAAAAAAAAAAAAAAD1NldFdvcmtlckZlZUxpYgAAAAABAAAAD1NldFdvcmtlckZlZUxpYgAAAAABAAAAAAAAAAdmZWVfbGliAAAAABMAAAAAAAAAAg==",
|
|
1765
|
+
"AAAAAQAAAOFQYXJhbWV0ZXJzIGZvciBEVk4gZmVlIGNhbGN1bGF0aW9uLgoKQ29udGFpbnMgYWxsIGlucHV0cyBuZWVkZWQgYnkgdGhlIGZlZSBsaWJyYXJ5IHRvIGNhbGN1bGF0ZSB2ZXJpZmljYXRpb24gZmVlcwpmb3IgY3Jvc3MtY2hhaW4gbWVzc2FnZXMuIEluY2x1ZGVzIG1lc3NhZ2UgcGFyYW1ldGVycywgY29tbW9uIGNvbmZpZ3VyYXRpb24sCmFuZCBkZXN0aW5hdGlvbi1zcGVjaWZpYyBzZXR0aW5ncy4AAAAAAAAAAAAADER2bkZlZVBhcmFtcwAAAAoAAAAnTnVtYmVyIG9mIGJsb2NrIGNvbmZpcm1hdGlvbnMgcmVxdWlyZWQuAAAAAA1jb25maXJtYXRpb25zAAAAAAAABgAAAExEZWZhdWx0IGZlZSBtdWx0aXBsaWVyIGluIGJhc2lzIHBvaW50cyAodXNlZCBpZiBubyBkc3Qtc3BlY2lmaWMgbXVsdGlwbGllcikuAAAAFmRlZmF1bHRfbXVsdGlwbGllcl9icHMAAAAAAAQAAAArRGVzdGluYXRpb24gZW5kcG9pbnQgSUQgKGNoYWluIGlkZW50aWZpZXIpLgAAAAAHZHN0X2VpZAAAAAAEAAAAI01pbmltdW0gZmVlIG1hcmdpbiBpbiBVU0QgKHNjYWxlZCkuAAAAABBmbG9vcl9tYXJnaW5fdXNkAAAACgAAARA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpEZXN0aW5hdGlvbi1TcGVjaWZpYyBDb25maWd1cmF0aW9uCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09CkdhcyBlc3RpbWF0ZSBmb3IgdmVyaWZpY2F0aW9uIG9uIGRlc3RpbmF0aW9uIGNoYWluLgAAAANnYXMAAAAACgAAAEZEZXN0aW5hdGlvbi1zcGVjaWZpYyBmZWUgbXVsdGlwbGllciBpbiBiYXNpcyBwb2ludHMgKDAgPSB1c2UgZGVmYXVsdCkuAAAAAAAObXVsdGlwbGllcl9icHMAAAAAAAQAAAALRFZOIG9wdGlvbnMAAAAAB29wdGlvbnMAAAAADgAAARA9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpDb21tb24gQ29uZmlndXJhdGlvbgo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpQcmljZSBmZWVkIGNvbnRyYWN0IGFkZHJlc3MgZm9yIGdhcyBwcmljZSBhbmQgZXhjaGFuZ2UgcmF0ZSBkYXRhLgAAAApwcmljZV9mZWVkAAAAAAATAAAAJ051bWJlciBvZiByZXF1aXJlZCBzaWduYXR1cmVzIChxdW9ydW0pLgAAAAAGcXVvcnVtAAAAAAAEAAAA5T09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ck1lc3NhZ2UgUGFyYW1ldGVycwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpUaGUgT0FwcCBzZW5kZXIgYWRkcmVzcy4AAAAAAAAGc2VuZGVyAAAAAAAT",
|
|
1766
|
+
"AAAAAQAAAONQYXJhbWV0ZXJzIGZvciBleGVjdXRvciBmZWUgY2FsY3VsYXRpb24uCgpDb250YWlucyBhbGwgaW5wdXRzIG5lZWRlZCBieSB0aGUgZmVlIGxpYnJhcnkgdG8gY2FsY3VsYXRlIGV4ZWN1dGlvbiBmZWVzCmZvciBjcm9zcy1jaGFpbiBtZXNzYWdlcy4gSW5jbHVkZXMgbWVzc2FnZSBwYXJhbWV0ZXJzLCBjb21tb24gY29uZmlndXJhdGlvbiwKYW5kIGRlc3RpbmF0aW9uLXNwZWNpZmljIHNldHRpbmdzLgAAAAAAAAAACUZlZVBhcmFtcwAAAAAAAAsAAAAmU2l6ZSBvZiB0aGUgbWVzc2FnZSBjYWxsZGF0YSBpbiBieXRlcy4AAAAAAA1jYWxsZGF0YV9zaXplAAAAAAAABAAAAExEZWZhdWx0IGZlZSBtdWx0aXBsaWVyIGluIGJhc2lzIHBvaW50cyAodXNlZCBpZiBubyBkc3Qtc3BlY2lmaWMgbXVsdGlwbGllcikuAAAAFmRlZmF1bHRfbXVsdGlwbGllcl9icHMAAAAAAAQAAAArRGVzdGluYXRpb24gZW5kcG9pbnQgSUQgKGNoYWluIGlkZW50aWZpZXIpLgAAAAAHZHN0X2VpZAAAAAAEAAAAI01pbmltdW0gZmVlIG1hcmdpbiBpbiBVU0QgKHNjYWxlZCkuAAAAABBmbG9vcl9tYXJnaW5fdXNkAAAACgAAADZCYXNlIGdhcyBmb3IgZWFjaCBsekNvbXBvc2UgY2FsbCBvbiBkZXN0aW5hdGlvbiBjaGFpbi4AAAAAABNsel9jb21wb3NlX2Jhc2VfZ2FzAAAAAAYAAAETPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KRGVzdGluYXRpb24tU3BlY2lmaWMgQ29uZmlndXJhdGlvbgo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpCYXNlIGdhcyBmb3IgbHpSZWNlaXZlIGV4ZWN1dGlvbiBvbiBkZXN0aW5hdGlvbiBjaGFpbi4AAAAAE2x6X3JlY2VpdmVfYmFzZV9nYXMAAAAABgAAAEZEZXN0aW5hdGlvbi1zcGVjaWZpYyBmZWUgbXVsdGlwbGllciBpbiBiYXNpcyBwb2ludHMgKDAgPSB1c2UgZGVmYXVsdCkuAAAAAAAObXVsdGlwbGllcl9icHMAAAAAAAQAAAAsTWF4aW11bSBuYXRpdmUgdG9rZW4gdmFsdWUgdGhhdCBjYW4gYmUgc2VudC4AAAAKbmF0aXZlX2NhcAAAAAAACgAAAEZFbmNvZGVkIGV4ZWN1dG9yIG9wdGlvbnMgKGx6UmVjZWl2ZSBnYXMsIGx6Q29tcG9zZSwgbmF0aXZlRHJvcCwgZXRjLikuAAAAAAAHb3B0aW9ucwAAAAAOAAABED09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09CkNvbW1vbiBDb25maWd1cmF0aW9uCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09ClByaWNlIGZlZWQgY29udHJhY3QgYWRkcmVzcyBmb3IgZ2FzIHByaWNlIGFuZCBleGNoYW5nZSByYXRlIGRhdGEuAAAACnByaWNlX2ZlZWQAAAAAABMAAADlPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KTWVzc2FnZSBQYXJhbWV0ZXJzCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09ClRoZSBPQXBwIHNlbmRlciBhZGRyZXNzLgAAAAAAAAZzZW5kZXIAAAAAABM=",
|
|
1767
|
+
"AAAAAQAAAIRHYXMgcHJpY2UgaW5mb3JtYXRpb24gZm9yIGEgZGVzdGluYXRpb24gZW5kcG9pbnQuCgpDb250YWlucyB0aGUgZXhjaGFuZ2UgcmF0ZSBhbmQgZ2FzIGNvc3RzIG5lZWRlZCBmb3IgY3Jvc3MtY2hhaW4gZmVlIGNhbGN1bGF0aW9ucy4AAAAAAAAABVByaWNlAAAAAAAAAwAAADdHYXMgY29zdCBwZXIgYnl0ZSBvZiBjYWxsZGF0YSBvbiB0aGUgZGVzdGluYXRpb24gY2hhaW4uAAAAAAxnYXNfcGVyX2J5dGUAAAAEAAAAQkdhcyBwcmljZSBpbiB0aGUgc21hbGxlc3QgdW5pdCAod2VpIGZvciBFVk0sIHN0cm9vcHMgZm9yIFN0ZWxsYXIpLgAAAAAAEWdhc19wcmljZV9pbl91bml0AAAAAAAABgAAAKlQcmljZSByYXRpbyA9IChyZW1vdGUgbmF0aXZlIHRva2VuIHByaWNlIC8gbG9jYWwgbmF0aXZlIHRva2VuIHByaWNlKSAqIFBSSUNFX1JBVElPX0RFTk9NSU5BVE9SLgpVc2VkIHRvIGNvbnZlcnQgZGVzdGluYXRpb24gY2hhaW4gZ2FzIGNvc3RzIHRvIHNvdXJjZSBjaGFpbiBuYXRpdmUgdG9rZW4uAAAAAAAAC3ByaWNlX3JhdGlvAAAAAAo=",
|
|
1768
|
+
"AAAAAQAAAIBGZWUgZXN0aW1hdGlvbiByZXN1bHQgd2l0aCBkZXRhaWxlZCBicmVha2Rvd24uCgpDb250YWlucyB0aGUgY2FsY3VsYXRlZCBmZWUgYW5kIGFsbCBpbnRlcm1lZGlhdGUgdmFsdWVzIHVzZWQgaW4gdGhlIGNhbGN1bGF0aW9uLgAAAAAAAAALRmVlRXN0aW1hdGUAAAAABAAAADBTb3VyY2UgY2hhaW4gbmF0aXZlIHRva2VuIHByaWNlIGluIFVTRCAoc2NhbGVkKS4AAAAQbmF0aXZlX3ByaWNlX3VzZAAAAAoAAAAlUHJpY2UgcmF0aW8gdXNlZCBmb3IgdGhlIGNhbGN1bGF0aW9uLgAAAAAAAAtwcmljZV9yYXRpbwAAAAAKAAAAMkRlbm9taW5hdG9yIGZvciB0aGUgcHJpY2UgcmF0aW8gKHR5cGljYWxseSAxMF4yMCkuAAAAAAAXcHJpY2VfcmF0aW9fZGVub21pbmF0b3IAAAAACgAAADFUb3RhbCBnYXMgZmVlIGluIHNvdXJjZSBjaGFpbiBuYXRpdmUgdG9rZW4gdW5pdHMuAAAAAAAADXRvdGFsX2dhc19mZWUAAAAAAAAL",
|
|
1769
|
+
"AAAAAgAAAAAAAAAAAAAADVdvcmtlclN0b3JhZ2UAAAAAAAALAAAAAAAAAAAAAAAGUGF1c2VkAAAAAAAAAAAAAAAAAA5EZXBvc2l0QWRkcmVzcwAAAAAAAAAAAAAAAAAJUHJpY2VGZWVkAAAAAAAAAAAAAAAAAAAMV29ya2VyRmVlTGliAAAAAAAAAAAAAAAURGVmYXVsdE11bHRpcGxpZXJCcHMAAAABAAAAAAAAABRTdXBwb3J0ZWRPcHRpb25UeXBlcwAAAAEAAAAEAAAAAAAAAAAAAAALTWVzc2FnZUxpYnMAAAAAAQAAAAAAAAAJQWxsb3dsaXN0AAAAAAAAAQAAABMAAAABAAAAAAAAAAhEZW55bGlzdAAAAAEAAAATAAAAAAAAAAAAAAANQWxsb3dsaXN0U2l6ZQAAAAAAAAAAAAAAAAAABkFkbWlucwAA" ]),
|
|
1770
|
+
options
|
|
1771
|
+
)
|
|
1772
|
+
}
|
|
1773
|
+
public readonly fromJSON = {
|
|
1774
|
+
set_paused: this.txFromJSON<null>,
|
|
1775
|
+
set_supported_message_lib: this.txFromJSON<null>,
|
|
1776
|
+
set_allowlist: this.txFromJSON<null>,
|
|
1777
|
+
set_denylist: this.txFromJSON<null>,
|
|
1778
|
+
set_default_multiplier_bps: this.txFromJSON<null>,
|
|
1779
|
+
set_deposit_address: this.txFromJSON<null>,
|
|
1780
|
+
set_supported_option_types: this.txFromJSON<null>,
|
|
1781
|
+
set_worker_fee_lib: this.txFromJSON<null>,
|
|
1782
|
+
set_price_feed: this.txFromJSON<null>,
|
|
1783
|
+
is_admin: this.txFromJSON<boolean>,
|
|
1784
|
+
admins: this.txFromJSON<Array<string>>,
|
|
1785
|
+
paused: this.txFromJSON<boolean>,
|
|
1786
|
+
is_supported_message_lib: this.txFromJSON<boolean>,
|
|
1787
|
+
message_libs: this.txFromJSON<Array<string>>,
|
|
1788
|
+
is_on_allowlist: this.txFromJSON<boolean>,
|
|
1789
|
+
is_on_denylist: this.txFromJSON<boolean>,
|
|
1790
|
+
has_acl: this.txFromJSON<boolean>,
|
|
1791
|
+
allowlist_size: this.txFromJSON<u32>,
|
|
1792
|
+
default_multiplier_bps: this.txFromJSON<u32>,
|
|
1793
|
+
deposit_address: this.txFromJSON<string>,
|
|
1794
|
+
price_feed: this.txFromJSON<string>,
|
|
1795
|
+
get_supported_option_types: this.txFromJSON<Option<Buffer>>,
|
|
1796
|
+
worker_fee_lib: this.txFromJSON<string>,
|
|
1797
|
+
assign_job: this.txFromJSON<FeeRecipient>,
|
|
1798
|
+
get_fee: this.txFromJSON<i128>,
|
|
1799
|
+
set_dst_config: this.txFromJSON<null>,
|
|
1800
|
+
dst_config: this.txFromJSON<DstConfig>,
|
|
1801
|
+
native_drop: this.txFromJSON<null>,
|
|
1802
|
+
endpoint: this.txFromJSON<string>,
|
|
1803
|
+
set_whitelisted_fn: this.txFromJSON<null>,
|
|
1804
|
+
is_whitelisted_fn: this.txFromJSON<boolean>,
|
|
1805
|
+
withdraw_token: this.txFromJSON<null>,
|
|
1806
|
+
set_admin: this.txFromJSON<null>,
|
|
1807
|
+
owner: this.txFromJSON<Option<string>>,
|
|
1808
|
+
transfer_ownership: this.txFromJSON<null>,
|
|
1809
|
+
renounce_ownership: this.txFromJSON<null>,
|
|
1810
|
+
set_ttl_configs: this.txFromJSON<null>,
|
|
1811
|
+
ttl_configs: this.txFromJSON<readonly [Option<TtlConfig>, Option<TtlConfig>]>,
|
|
1812
|
+
freeze_ttl_configs: this.txFromJSON<null>,
|
|
1813
|
+
is_ttl_configs_frozen: this.txFromJSON<boolean>,
|
|
1814
|
+
extend_instance_ttl: this.txFromJSON<null>
|
|
1815
|
+
}
|
|
1816
|
+
}
|