@layerzerolabs/lz-evm-oapp-v2 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/contracts/oapp/OApp.sol/OApp.json +332 -0
- package/artifacts/contracts/oapp/OAppCore.sol/OAppCore.json +195 -0
- package/artifacts/contracts/oapp/OAppReceiver.sol/OAppReceiver.json +316 -0
- package/artifacts/contracts/oapp/OAppSender.sol/OAppSender.json +211 -0
- package/artifacts/contracts/oapp/examples/OmniCounter.sol/MsgCodec.json +10 -0
- package/artifacts/contracts/oapp/examples/OmniCounter.sol/OmniCounter.json +874 -0
- package/artifacts/contracts/oapp/examples/OmniCounterPreCrime.sol/OmniCounterPreCrime.json +373 -0
- package/artifacts/contracts/oapp/interfaces/IOAppComposer.sol/IOAppComposer.json +44 -0
- package/artifacts/contracts/oapp/interfaces/IOAppCore.sol/IOAppCore.json +143 -0
- package/artifacts/contracts/oapp/interfaces/IOAppMsgInspector.sol/IOAppMsgInspector.json +51 -0
- package/artifacts/contracts/oapp/interfaces/IOAppOptionsType3.sol/IOAppOptionsType3.json +111 -0
- package/artifacts/contracts/oapp/libs/OAppOptionsType3.sol/OAppOptionsType3.json +187 -0
- package/artifacts/contracts/oapp/libs/OptionsBuilder.sol/OptionsBuilder.json +38 -0
- package/artifacts/contracts/oft/OFT.sol/OFT.json +1466 -0
- package/artifacts/contracts/oft/OFTAdapter.sol/OFTAdapter.json +1204 -0
- package/artifacts/contracts/oft/OFTCore.sol/OFTCore.json +1170 -0
- package/artifacts/contracts/oft/interfaces/IOFT.sol/IOFT.json +472 -0
- package/artifacts/contracts/oft/libs/OFTComposeMsgCodec.sol/OFTComposeMsgCodec.json +10 -0
- package/artifacts/contracts/oft/libs/OFTMsgCodec.sol/OFTMsgCodec.json +10 -0
- package/artifacts/contracts/precrime/OAppPreCrimeSimulator.sol/OAppPreCrimeSimulator.json +277 -0
- package/artifacts/contracts/precrime/PreCrime.sol/PreCrime.json +352 -0
- package/artifacts/contracts/precrime/extensions/PreCrimeE1.sol/PreCrimeE1.json +352 -0
- package/artifacts/contracts/precrime/interfaces/IOAppPreCrimeSimulator.sol/IOAppPreCrimeSimulator.json +175 -0
- package/artifacts/contracts/precrime/interfaces/IPreCrime.sol/IPreCrime.json +188 -0
- package/artifacts/contracts/precrime/libs/Packet.sol/PacketDecoder.json +10 -0
- package/contracts/oapp/OApp.sol +39 -0
- package/contracts/oapp/OAppCore.sol +68 -0
- package/contracts/oapp/OAppReceiver.sol +101 -0
- package/contracts/oapp/OAppSender.sol +124 -0
- package/contracts/oapp/examples/OmniCounter.sol +283 -0
- package/contracts/oapp/examples/OmniCounterPreCrime.sol +102 -0
- package/contracts/oapp/interfaces/IOAppComposer.sol +12 -0
- package/contracts/oapp/interfaces/IOAppCore.sol +51 -0
- package/contracts/oapp/interfaces/IOAppMsgInspector.sol +22 -0
- package/contracts/oapp/interfaces/IOAppOptionsType3.sol +43 -0
- package/contracts/oapp/libs/OAppOptionsType3.sol +82 -0
- package/contracts/oapp/libs/OptionsBuilder.sol +200 -0
- package/contracts/oft/OFT.sol +116 -0
- package/contracts/oft/OFTAdapter.sol +131 -0
- package/contracts/oft/OFTCore.sol +456 -0
- package/contracts/oft/OFTPrecrime.sol +99 -0
- package/contracts/oft/interfaces/IOFT.sol +168 -0
- package/contracts/oft/libs/OFTComposeMsgCodec.sol +91 -0
- package/contracts/oft/libs/OFTMsgCodec.sol +83 -0
- package/contracts/precrime/OAppPreCrimeSimulator.sol +125 -0
- package/contracts/precrime/PreCrime.sol +208 -0
- package/contracts/precrime/extensions/PreCrimeE1.sol +30 -0
- package/contracts/precrime/interfaces/IOAppPreCrimeSimulator.sol +55 -0
- package/contracts/precrime/interfaces/IPreCrime.sol +40 -0
- package/contracts/precrime/libs/Packet.sol +61 -0
- package/package.json +35 -0
|
@@ -0,0 +1,1466 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "OFT",
|
|
4
|
+
"sourceName": "contracts/oft/OFT.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "string",
|
|
10
|
+
"name": "_name",
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "string",
|
|
15
|
+
"name": "_symbol",
|
|
16
|
+
"type": "string"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"internalType": "address",
|
|
20
|
+
"name": "_lzEndpoint",
|
|
21
|
+
"type": "address"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"internalType": "address",
|
|
25
|
+
"name": "_owner",
|
|
26
|
+
"type": "address"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"stateMutability": "nonpayable",
|
|
30
|
+
"type": "constructor"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs": [],
|
|
34
|
+
"name": "InvalidEndpointCall",
|
|
35
|
+
"type": "error"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"inputs": [],
|
|
39
|
+
"name": "InvalidLocalDecimals",
|
|
40
|
+
"type": "error"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"inputs": [
|
|
44
|
+
{
|
|
45
|
+
"internalType": "bytes",
|
|
46
|
+
"name": "options",
|
|
47
|
+
"type": "bytes"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"name": "InvalidOptions",
|
|
51
|
+
"type": "error"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"inputs": [],
|
|
55
|
+
"name": "LzTokenUnavailable",
|
|
56
|
+
"type": "error"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"inputs": [
|
|
60
|
+
{
|
|
61
|
+
"internalType": "uint32",
|
|
62
|
+
"name": "eid",
|
|
63
|
+
"type": "uint32"
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"name": "NoPeer",
|
|
67
|
+
"type": "error"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"inputs": [
|
|
71
|
+
{
|
|
72
|
+
"internalType": "uint256",
|
|
73
|
+
"name": "msgValue",
|
|
74
|
+
"type": "uint256"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"name": "NotEnoughNative",
|
|
78
|
+
"type": "error"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"inputs": [
|
|
82
|
+
{
|
|
83
|
+
"internalType": "address",
|
|
84
|
+
"name": "addr",
|
|
85
|
+
"type": "address"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"name": "OnlyEndpoint",
|
|
89
|
+
"type": "error"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"inputs": [
|
|
93
|
+
{
|
|
94
|
+
"internalType": "uint32",
|
|
95
|
+
"name": "eid",
|
|
96
|
+
"type": "uint32"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"internalType": "bytes32",
|
|
100
|
+
"name": "sender",
|
|
101
|
+
"type": "bytes32"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"name": "OnlyPeer",
|
|
105
|
+
"type": "error"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"inputs": [],
|
|
109
|
+
"name": "OnlySelf",
|
|
110
|
+
"type": "error"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"inputs": [
|
|
114
|
+
{
|
|
115
|
+
"internalType": "bytes",
|
|
116
|
+
"name": "result",
|
|
117
|
+
"type": "bytes"
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
"name": "SimulationResult",
|
|
121
|
+
"type": "error"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"inputs": [
|
|
125
|
+
{
|
|
126
|
+
"internalType": "uint256",
|
|
127
|
+
"name": "amountToCreditLD",
|
|
128
|
+
"type": "uint256"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"internalType": "uint256",
|
|
132
|
+
"name": "minAmountToCreditLD",
|
|
133
|
+
"type": "uint256"
|
|
134
|
+
}
|
|
135
|
+
],
|
|
136
|
+
"name": "SlippageExceeded",
|
|
137
|
+
"type": "error"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"anonymous": false,
|
|
141
|
+
"inputs": [
|
|
142
|
+
{
|
|
143
|
+
"indexed": true,
|
|
144
|
+
"internalType": "address",
|
|
145
|
+
"name": "owner",
|
|
146
|
+
"type": "address"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"indexed": true,
|
|
150
|
+
"internalType": "address",
|
|
151
|
+
"name": "spender",
|
|
152
|
+
"type": "address"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"indexed": false,
|
|
156
|
+
"internalType": "uint256",
|
|
157
|
+
"name": "value",
|
|
158
|
+
"type": "uint256"
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"name": "Approval",
|
|
162
|
+
"type": "event"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"anonymous": false,
|
|
166
|
+
"inputs": [
|
|
167
|
+
{
|
|
168
|
+
"components": [
|
|
169
|
+
{
|
|
170
|
+
"internalType": "uint32",
|
|
171
|
+
"name": "eid",
|
|
172
|
+
"type": "uint32"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"internalType": "uint16",
|
|
176
|
+
"name": "msgType",
|
|
177
|
+
"type": "uint16"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"internalType": "bytes",
|
|
181
|
+
"name": "options",
|
|
182
|
+
"type": "bytes"
|
|
183
|
+
}
|
|
184
|
+
],
|
|
185
|
+
"indexed": false,
|
|
186
|
+
"internalType": "struct EnforcedOptionParam[]",
|
|
187
|
+
"name": "_enforcedOptions",
|
|
188
|
+
"type": "tuple[]"
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"name": "EnforcedOptionSet",
|
|
192
|
+
"type": "event"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"anonymous": false,
|
|
196
|
+
"inputs": [
|
|
197
|
+
{
|
|
198
|
+
"indexed": false,
|
|
199
|
+
"internalType": "address",
|
|
200
|
+
"name": "inspector",
|
|
201
|
+
"type": "address"
|
|
202
|
+
}
|
|
203
|
+
],
|
|
204
|
+
"name": "MsgInspectorSet",
|
|
205
|
+
"type": "event"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"anonymous": false,
|
|
209
|
+
"inputs": [
|
|
210
|
+
{
|
|
211
|
+
"indexed": true,
|
|
212
|
+
"internalType": "bytes32",
|
|
213
|
+
"name": "guid",
|
|
214
|
+
"type": "bytes32"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"indexed": true,
|
|
218
|
+
"internalType": "address",
|
|
219
|
+
"name": "toAddress",
|
|
220
|
+
"type": "address"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"indexed": false,
|
|
224
|
+
"internalType": "uint256",
|
|
225
|
+
"name": "amountToCreditLD",
|
|
226
|
+
"type": "uint256"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"indexed": false,
|
|
230
|
+
"internalType": "uint256",
|
|
231
|
+
"name": "amountReceivedLD",
|
|
232
|
+
"type": "uint256"
|
|
233
|
+
}
|
|
234
|
+
],
|
|
235
|
+
"name": "OFTReceived",
|
|
236
|
+
"type": "event"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"anonymous": false,
|
|
240
|
+
"inputs": [
|
|
241
|
+
{
|
|
242
|
+
"indexed": true,
|
|
243
|
+
"internalType": "bytes32",
|
|
244
|
+
"name": "guid",
|
|
245
|
+
"type": "bytes32"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"indexed": true,
|
|
249
|
+
"internalType": "address",
|
|
250
|
+
"name": "fromAddress",
|
|
251
|
+
"type": "address"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"indexed": false,
|
|
255
|
+
"internalType": "uint256",
|
|
256
|
+
"name": "amountDebitedLD",
|
|
257
|
+
"type": "uint256"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"indexed": false,
|
|
261
|
+
"internalType": "uint256",
|
|
262
|
+
"name": "amountToCreditLD",
|
|
263
|
+
"type": "uint256"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"indexed": false,
|
|
267
|
+
"internalType": "bytes",
|
|
268
|
+
"name": "composeMsg",
|
|
269
|
+
"type": "bytes"
|
|
270
|
+
}
|
|
271
|
+
],
|
|
272
|
+
"name": "OFTSent",
|
|
273
|
+
"type": "event"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"anonymous": false,
|
|
277
|
+
"inputs": [
|
|
278
|
+
{
|
|
279
|
+
"indexed": true,
|
|
280
|
+
"internalType": "address",
|
|
281
|
+
"name": "previousOwner",
|
|
282
|
+
"type": "address"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"indexed": true,
|
|
286
|
+
"internalType": "address",
|
|
287
|
+
"name": "newOwner",
|
|
288
|
+
"type": "address"
|
|
289
|
+
}
|
|
290
|
+
],
|
|
291
|
+
"name": "OwnershipTransferred",
|
|
292
|
+
"type": "event"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"anonymous": false,
|
|
296
|
+
"inputs": [
|
|
297
|
+
{
|
|
298
|
+
"indexed": false,
|
|
299
|
+
"internalType": "uint32",
|
|
300
|
+
"name": "eid",
|
|
301
|
+
"type": "uint32"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"indexed": false,
|
|
305
|
+
"internalType": "bytes32",
|
|
306
|
+
"name": "peer",
|
|
307
|
+
"type": "bytes32"
|
|
308
|
+
}
|
|
309
|
+
],
|
|
310
|
+
"name": "PeerSet",
|
|
311
|
+
"type": "event"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"anonymous": false,
|
|
315
|
+
"inputs": [
|
|
316
|
+
{
|
|
317
|
+
"indexed": false,
|
|
318
|
+
"internalType": "address",
|
|
319
|
+
"name": "preCrimeAddress",
|
|
320
|
+
"type": "address"
|
|
321
|
+
}
|
|
322
|
+
],
|
|
323
|
+
"name": "PreCrimeSet",
|
|
324
|
+
"type": "event"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"anonymous": false,
|
|
328
|
+
"inputs": [
|
|
329
|
+
{
|
|
330
|
+
"indexed": true,
|
|
331
|
+
"internalType": "address",
|
|
332
|
+
"name": "from",
|
|
333
|
+
"type": "address"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"indexed": true,
|
|
337
|
+
"internalType": "address",
|
|
338
|
+
"name": "to",
|
|
339
|
+
"type": "address"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"indexed": false,
|
|
343
|
+
"internalType": "uint256",
|
|
344
|
+
"name": "value",
|
|
345
|
+
"type": "uint256"
|
|
346
|
+
}
|
|
347
|
+
],
|
|
348
|
+
"name": "Transfer",
|
|
349
|
+
"type": "event"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"inputs": [],
|
|
353
|
+
"name": "SEND",
|
|
354
|
+
"outputs": [
|
|
355
|
+
{
|
|
356
|
+
"internalType": "uint16",
|
|
357
|
+
"name": "",
|
|
358
|
+
"type": "uint16"
|
|
359
|
+
}
|
|
360
|
+
],
|
|
361
|
+
"stateMutability": "view",
|
|
362
|
+
"type": "function"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"inputs": [],
|
|
366
|
+
"name": "SEND_AND_CALL",
|
|
367
|
+
"outputs": [
|
|
368
|
+
{
|
|
369
|
+
"internalType": "uint16",
|
|
370
|
+
"name": "",
|
|
371
|
+
"type": "uint16"
|
|
372
|
+
}
|
|
373
|
+
],
|
|
374
|
+
"stateMutability": "view",
|
|
375
|
+
"type": "function"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"inputs": [
|
|
379
|
+
{
|
|
380
|
+
"components": [
|
|
381
|
+
{
|
|
382
|
+
"internalType": "uint32",
|
|
383
|
+
"name": "srcEid",
|
|
384
|
+
"type": "uint32"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"internalType": "bytes32",
|
|
388
|
+
"name": "sender",
|
|
389
|
+
"type": "bytes32"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"internalType": "uint64",
|
|
393
|
+
"name": "nonce",
|
|
394
|
+
"type": "uint64"
|
|
395
|
+
}
|
|
396
|
+
],
|
|
397
|
+
"internalType": "struct Origin",
|
|
398
|
+
"name": "origin",
|
|
399
|
+
"type": "tuple"
|
|
400
|
+
}
|
|
401
|
+
],
|
|
402
|
+
"name": "allowInitializePath",
|
|
403
|
+
"outputs": [
|
|
404
|
+
{
|
|
405
|
+
"internalType": "bool",
|
|
406
|
+
"name": "",
|
|
407
|
+
"type": "bool"
|
|
408
|
+
}
|
|
409
|
+
],
|
|
410
|
+
"stateMutability": "view",
|
|
411
|
+
"type": "function"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"inputs": [
|
|
415
|
+
{
|
|
416
|
+
"internalType": "address",
|
|
417
|
+
"name": "owner",
|
|
418
|
+
"type": "address"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"internalType": "address",
|
|
422
|
+
"name": "spender",
|
|
423
|
+
"type": "address"
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
"name": "allowance",
|
|
427
|
+
"outputs": [
|
|
428
|
+
{
|
|
429
|
+
"internalType": "uint256",
|
|
430
|
+
"name": "",
|
|
431
|
+
"type": "uint256"
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
"stateMutability": "view",
|
|
435
|
+
"type": "function"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"inputs": [
|
|
439
|
+
{
|
|
440
|
+
"internalType": "address",
|
|
441
|
+
"name": "spender",
|
|
442
|
+
"type": "address"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"internalType": "uint256",
|
|
446
|
+
"name": "amount",
|
|
447
|
+
"type": "uint256"
|
|
448
|
+
}
|
|
449
|
+
],
|
|
450
|
+
"name": "approve",
|
|
451
|
+
"outputs": [
|
|
452
|
+
{
|
|
453
|
+
"internalType": "bool",
|
|
454
|
+
"name": "",
|
|
455
|
+
"type": "bool"
|
|
456
|
+
}
|
|
457
|
+
],
|
|
458
|
+
"stateMutability": "nonpayable",
|
|
459
|
+
"type": "function"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"inputs": [
|
|
463
|
+
{
|
|
464
|
+
"internalType": "address",
|
|
465
|
+
"name": "account",
|
|
466
|
+
"type": "address"
|
|
467
|
+
}
|
|
468
|
+
],
|
|
469
|
+
"name": "balanceOf",
|
|
470
|
+
"outputs": [
|
|
471
|
+
{
|
|
472
|
+
"internalType": "uint256",
|
|
473
|
+
"name": "",
|
|
474
|
+
"type": "uint256"
|
|
475
|
+
}
|
|
476
|
+
],
|
|
477
|
+
"stateMutability": "view",
|
|
478
|
+
"type": "function"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"inputs": [
|
|
482
|
+
{
|
|
483
|
+
"internalType": "uint32",
|
|
484
|
+
"name": "_eid",
|
|
485
|
+
"type": "uint32"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"internalType": "uint16",
|
|
489
|
+
"name": "_msgType",
|
|
490
|
+
"type": "uint16"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"internalType": "bytes",
|
|
494
|
+
"name": "_extraOptions",
|
|
495
|
+
"type": "bytes"
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
"name": "combineOptions",
|
|
499
|
+
"outputs": [
|
|
500
|
+
{
|
|
501
|
+
"internalType": "bytes",
|
|
502
|
+
"name": "",
|
|
503
|
+
"type": "bytes"
|
|
504
|
+
}
|
|
505
|
+
],
|
|
506
|
+
"stateMutability": "view",
|
|
507
|
+
"type": "function"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"inputs": [],
|
|
511
|
+
"name": "decimalConversionRate",
|
|
512
|
+
"outputs": [
|
|
513
|
+
{
|
|
514
|
+
"internalType": "uint256",
|
|
515
|
+
"name": "",
|
|
516
|
+
"type": "uint256"
|
|
517
|
+
}
|
|
518
|
+
],
|
|
519
|
+
"stateMutability": "view",
|
|
520
|
+
"type": "function"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"inputs": [],
|
|
524
|
+
"name": "decimals",
|
|
525
|
+
"outputs": [
|
|
526
|
+
{
|
|
527
|
+
"internalType": "uint8",
|
|
528
|
+
"name": "",
|
|
529
|
+
"type": "uint8"
|
|
530
|
+
}
|
|
531
|
+
],
|
|
532
|
+
"stateMutability": "view",
|
|
533
|
+
"type": "function"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"inputs": [
|
|
537
|
+
{
|
|
538
|
+
"internalType": "address",
|
|
539
|
+
"name": "spender",
|
|
540
|
+
"type": "address"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"internalType": "uint256",
|
|
544
|
+
"name": "subtractedValue",
|
|
545
|
+
"type": "uint256"
|
|
546
|
+
}
|
|
547
|
+
],
|
|
548
|
+
"name": "decreaseAllowance",
|
|
549
|
+
"outputs": [
|
|
550
|
+
{
|
|
551
|
+
"internalType": "bool",
|
|
552
|
+
"name": "",
|
|
553
|
+
"type": "bool"
|
|
554
|
+
}
|
|
555
|
+
],
|
|
556
|
+
"stateMutability": "nonpayable",
|
|
557
|
+
"type": "function"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"inputs": [],
|
|
561
|
+
"name": "endpoint",
|
|
562
|
+
"outputs": [
|
|
563
|
+
{
|
|
564
|
+
"internalType": "contract ILayerZeroEndpointV2",
|
|
565
|
+
"name": "",
|
|
566
|
+
"type": "address"
|
|
567
|
+
}
|
|
568
|
+
],
|
|
569
|
+
"stateMutability": "view",
|
|
570
|
+
"type": "function"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"inputs": [
|
|
574
|
+
{
|
|
575
|
+
"internalType": "uint32",
|
|
576
|
+
"name": "eid",
|
|
577
|
+
"type": "uint32"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"internalType": "uint16",
|
|
581
|
+
"name": "msgType",
|
|
582
|
+
"type": "uint16"
|
|
583
|
+
}
|
|
584
|
+
],
|
|
585
|
+
"name": "enforcedOptions",
|
|
586
|
+
"outputs": [
|
|
587
|
+
{
|
|
588
|
+
"internalType": "bytes",
|
|
589
|
+
"name": "enforcedOption",
|
|
590
|
+
"type": "bytes"
|
|
591
|
+
}
|
|
592
|
+
],
|
|
593
|
+
"stateMutability": "view",
|
|
594
|
+
"type": "function"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"inputs": [
|
|
598
|
+
{
|
|
599
|
+
"internalType": "address",
|
|
600
|
+
"name": "spender",
|
|
601
|
+
"type": "address"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"internalType": "uint256",
|
|
605
|
+
"name": "addedValue",
|
|
606
|
+
"type": "uint256"
|
|
607
|
+
}
|
|
608
|
+
],
|
|
609
|
+
"name": "increaseAllowance",
|
|
610
|
+
"outputs": [
|
|
611
|
+
{
|
|
612
|
+
"internalType": "bool",
|
|
613
|
+
"name": "",
|
|
614
|
+
"type": "bool"
|
|
615
|
+
}
|
|
616
|
+
],
|
|
617
|
+
"stateMutability": "nonpayable",
|
|
618
|
+
"type": "function"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"inputs": [
|
|
622
|
+
{
|
|
623
|
+
"internalType": "uint32",
|
|
624
|
+
"name": "_eid",
|
|
625
|
+
"type": "uint32"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"internalType": "bytes32",
|
|
629
|
+
"name": "_peer",
|
|
630
|
+
"type": "bytes32"
|
|
631
|
+
}
|
|
632
|
+
],
|
|
633
|
+
"name": "isPeer",
|
|
634
|
+
"outputs": [
|
|
635
|
+
{
|
|
636
|
+
"internalType": "bool",
|
|
637
|
+
"name": "",
|
|
638
|
+
"type": "bool"
|
|
639
|
+
}
|
|
640
|
+
],
|
|
641
|
+
"stateMutability": "view",
|
|
642
|
+
"type": "function"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"inputs": [
|
|
646
|
+
{
|
|
647
|
+
"components": [
|
|
648
|
+
{
|
|
649
|
+
"internalType": "uint32",
|
|
650
|
+
"name": "srcEid",
|
|
651
|
+
"type": "uint32"
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"internalType": "bytes32",
|
|
655
|
+
"name": "sender",
|
|
656
|
+
"type": "bytes32"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"internalType": "uint64",
|
|
660
|
+
"name": "nonce",
|
|
661
|
+
"type": "uint64"
|
|
662
|
+
}
|
|
663
|
+
],
|
|
664
|
+
"internalType": "struct Origin",
|
|
665
|
+
"name": "_origin",
|
|
666
|
+
"type": "tuple"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"internalType": "bytes32",
|
|
670
|
+
"name": "_guid",
|
|
671
|
+
"type": "bytes32"
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"internalType": "bytes",
|
|
675
|
+
"name": "_message",
|
|
676
|
+
"type": "bytes"
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"internalType": "address",
|
|
680
|
+
"name": "_executor",
|
|
681
|
+
"type": "address"
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"internalType": "bytes",
|
|
685
|
+
"name": "_extraData",
|
|
686
|
+
"type": "bytes"
|
|
687
|
+
}
|
|
688
|
+
],
|
|
689
|
+
"name": "lzReceive",
|
|
690
|
+
"outputs": [],
|
|
691
|
+
"stateMutability": "payable",
|
|
692
|
+
"type": "function"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"inputs": [
|
|
696
|
+
{
|
|
697
|
+
"components": [
|
|
698
|
+
{
|
|
699
|
+
"components": [
|
|
700
|
+
{
|
|
701
|
+
"internalType": "uint32",
|
|
702
|
+
"name": "srcEid",
|
|
703
|
+
"type": "uint32"
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"internalType": "bytes32",
|
|
707
|
+
"name": "sender",
|
|
708
|
+
"type": "bytes32"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"internalType": "uint64",
|
|
712
|
+
"name": "nonce",
|
|
713
|
+
"type": "uint64"
|
|
714
|
+
}
|
|
715
|
+
],
|
|
716
|
+
"internalType": "struct Origin",
|
|
717
|
+
"name": "origin",
|
|
718
|
+
"type": "tuple"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"internalType": "uint32",
|
|
722
|
+
"name": "dstEid",
|
|
723
|
+
"type": "uint32"
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"internalType": "address",
|
|
727
|
+
"name": "receiver",
|
|
728
|
+
"type": "address"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"internalType": "bytes32",
|
|
732
|
+
"name": "guid",
|
|
733
|
+
"type": "bytes32"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"internalType": "uint256",
|
|
737
|
+
"name": "value",
|
|
738
|
+
"type": "uint256"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"internalType": "address",
|
|
742
|
+
"name": "executor",
|
|
743
|
+
"type": "address"
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"internalType": "bytes",
|
|
747
|
+
"name": "message",
|
|
748
|
+
"type": "bytes"
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"internalType": "bytes",
|
|
752
|
+
"name": "extraData",
|
|
753
|
+
"type": "bytes"
|
|
754
|
+
}
|
|
755
|
+
],
|
|
756
|
+
"internalType": "struct InboundPacket[]",
|
|
757
|
+
"name": "_packets",
|
|
758
|
+
"type": "tuple[]"
|
|
759
|
+
}
|
|
760
|
+
],
|
|
761
|
+
"name": "lzReceiveAndRevert",
|
|
762
|
+
"outputs": [],
|
|
763
|
+
"stateMutability": "payable",
|
|
764
|
+
"type": "function"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"inputs": [
|
|
768
|
+
{
|
|
769
|
+
"components": [
|
|
770
|
+
{
|
|
771
|
+
"internalType": "uint32",
|
|
772
|
+
"name": "srcEid",
|
|
773
|
+
"type": "uint32"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"internalType": "bytes32",
|
|
777
|
+
"name": "sender",
|
|
778
|
+
"type": "bytes32"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"internalType": "uint64",
|
|
782
|
+
"name": "nonce",
|
|
783
|
+
"type": "uint64"
|
|
784
|
+
}
|
|
785
|
+
],
|
|
786
|
+
"internalType": "struct Origin",
|
|
787
|
+
"name": "_origin",
|
|
788
|
+
"type": "tuple"
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"internalType": "bytes32",
|
|
792
|
+
"name": "_guid",
|
|
793
|
+
"type": "bytes32"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"internalType": "bytes",
|
|
797
|
+
"name": "_message",
|
|
798
|
+
"type": "bytes"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"internalType": "address",
|
|
802
|
+
"name": "_executor",
|
|
803
|
+
"type": "address"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"internalType": "bytes",
|
|
807
|
+
"name": "_extraData",
|
|
808
|
+
"type": "bytes"
|
|
809
|
+
}
|
|
810
|
+
],
|
|
811
|
+
"name": "lzReceiveSimulate",
|
|
812
|
+
"outputs": [],
|
|
813
|
+
"stateMutability": "payable",
|
|
814
|
+
"type": "function"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"inputs": [],
|
|
818
|
+
"name": "msgInspector",
|
|
819
|
+
"outputs": [
|
|
820
|
+
{
|
|
821
|
+
"internalType": "address",
|
|
822
|
+
"name": "",
|
|
823
|
+
"type": "address"
|
|
824
|
+
}
|
|
825
|
+
],
|
|
826
|
+
"stateMutability": "view",
|
|
827
|
+
"type": "function"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"inputs": [],
|
|
831
|
+
"name": "name",
|
|
832
|
+
"outputs": [
|
|
833
|
+
{
|
|
834
|
+
"internalType": "string",
|
|
835
|
+
"name": "",
|
|
836
|
+
"type": "string"
|
|
837
|
+
}
|
|
838
|
+
],
|
|
839
|
+
"stateMutability": "view",
|
|
840
|
+
"type": "function"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"inputs": [
|
|
844
|
+
{
|
|
845
|
+
"internalType": "uint32",
|
|
846
|
+
"name": "",
|
|
847
|
+
"type": "uint32"
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"internalType": "bytes32",
|
|
851
|
+
"name": "",
|
|
852
|
+
"type": "bytes32"
|
|
853
|
+
}
|
|
854
|
+
],
|
|
855
|
+
"name": "nextNonce",
|
|
856
|
+
"outputs": [
|
|
857
|
+
{
|
|
858
|
+
"internalType": "uint64",
|
|
859
|
+
"name": "nonce",
|
|
860
|
+
"type": "uint64"
|
|
861
|
+
}
|
|
862
|
+
],
|
|
863
|
+
"stateMutability": "view",
|
|
864
|
+
"type": "function"
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"inputs": [],
|
|
868
|
+
"name": "oApp",
|
|
869
|
+
"outputs": [
|
|
870
|
+
{
|
|
871
|
+
"internalType": "address",
|
|
872
|
+
"name": "",
|
|
873
|
+
"type": "address"
|
|
874
|
+
}
|
|
875
|
+
],
|
|
876
|
+
"stateMutability": "view",
|
|
877
|
+
"type": "function"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"inputs": [],
|
|
881
|
+
"name": "oAppVersion",
|
|
882
|
+
"outputs": [
|
|
883
|
+
{
|
|
884
|
+
"internalType": "uint64",
|
|
885
|
+
"name": "senderVersion",
|
|
886
|
+
"type": "uint64"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"internalType": "uint64",
|
|
890
|
+
"name": "receiverVersion",
|
|
891
|
+
"type": "uint64"
|
|
892
|
+
}
|
|
893
|
+
],
|
|
894
|
+
"stateMutability": "pure",
|
|
895
|
+
"type": "function"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"inputs": [],
|
|
899
|
+
"name": "oftVersion",
|
|
900
|
+
"outputs": [
|
|
901
|
+
{
|
|
902
|
+
"internalType": "uint64",
|
|
903
|
+
"name": "major",
|
|
904
|
+
"type": "uint64"
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"internalType": "uint64",
|
|
908
|
+
"name": "minor",
|
|
909
|
+
"type": "uint64"
|
|
910
|
+
}
|
|
911
|
+
],
|
|
912
|
+
"stateMutability": "pure",
|
|
913
|
+
"type": "function"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"inputs": [],
|
|
917
|
+
"name": "owner",
|
|
918
|
+
"outputs": [
|
|
919
|
+
{
|
|
920
|
+
"internalType": "address",
|
|
921
|
+
"name": "",
|
|
922
|
+
"type": "address"
|
|
923
|
+
}
|
|
924
|
+
],
|
|
925
|
+
"stateMutability": "view",
|
|
926
|
+
"type": "function"
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"inputs": [
|
|
930
|
+
{
|
|
931
|
+
"internalType": "uint32",
|
|
932
|
+
"name": "eid",
|
|
933
|
+
"type": "uint32"
|
|
934
|
+
}
|
|
935
|
+
],
|
|
936
|
+
"name": "peers",
|
|
937
|
+
"outputs": [
|
|
938
|
+
{
|
|
939
|
+
"internalType": "bytes32",
|
|
940
|
+
"name": "peer",
|
|
941
|
+
"type": "bytes32"
|
|
942
|
+
}
|
|
943
|
+
],
|
|
944
|
+
"stateMutability": "view",
|
|
945
|
+
"type": "function"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"inputs": [],
|
|
949
|
+
"name": "preCrime",
|
|
950
|
+
"outputs": [
|
|
951
|
+
{
|
|
952
|
+
"internalType": "address",
|
|
953
|
+
"name": "",
|
|
954
|
+
"type": "address"
|
|
955
|
+
}
|
|
956
|
+
],
|
|
957
|
+
"stateMutability": "view",
|
|
958
|
+
"type": "function"
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"inputs": [
|
|
962
|
+
{
|
|
963
|
+
"components": [
|
|
964
|
+
{
|
|
965
|
+
"internalType": "uint32",
|
|
966
|
+
"name": "dstEid",
|
|
967
|
+
"type": "uint32"
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"internalType": "bytes32",
|
|
971
|
+
"name": "to",
|
|
972
|
+
"type": "bytes32"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"internalType": "uint256",
|
|
976
|
+
"name": "amountToSendLD",
|
|
977
|
+
"type": "uint256"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"internalType": "uint256",
|
|
981
|
+
"name": "minAmountToCreditLD",
|
|
982
|
+
"type": "uint256"
|
|
983
|
+
}
|
|
984
|
+
],
|
|
985
|
+
"internalType": "struct SendParam",
|
|
986
|
+
"name": "_sendParam",
|
|
987
|
+
"type": "tuple"
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"internalType": "bytes",
|
|
991
|
+
"name": "",
|
|
992
|
+
"type": "bytes"
|
|
993
|
+
}
|
|
994
|
+
],
|
|
995
|
+
"name": "quoteOFT",
|
|
996
|
+
"outputs": [
|
|
997
|
+
{
|
|
998
|
+
"components": [
|
|
999
|
+
{
|
|
1000
|
+
"internalType": "uint256",
|
|
1001
|
+
"name": "minAmountLD",
|
|
1002
|
+
"type": "uint256"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"internalType": "uint256",
|
|
1006
|
+
"name": "maxAmountLD",
|
|
1007
|
+
"type": "uint256"
|
|
1008
|
+
}
|
|
1009
|
+
],
|
|
1010
|
+
"internalType": "struct OFTLimit",
|
|
1011
|
+
"name": "oftLimit",
|
|
1012
|
+
"type": "tuple"
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"components": [
|
|
1016
|
+
{
|
|
1017
|
+
"internalType": "uint256",
|
|
1018
|
+
"name": "feeAmountLD",
|
|
1019
|
+
"type": "uint256"
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
"internalType": "string",
|
|
1023
|
+
"name": "description",
|
|
1024
|
+
"type": "string"
|
|
1025
|
+
}
|
|
1026
|
+
],
|
|
1027
|
+
"internalType": "struct OFTFeeDetail[]",
|
|
1028
|
+
"name": "oftFeeDetails",
|
|
1029
|
+
"type": "tuple[]"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"components": [
|
|
1033
|
+
{
|
|
1034
|
+
"internalType": "uint256",
|
|
1035
|
+
"name": "amountDebitLD",
|
|
1036
|
+
"type": "uint256"
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"internalType": "uint256",
|
|
1040
|
+
"name": "amountCreditLD",
|
|
1041
|
+
"type": "uint256"
|
|
1042
|
+
}
|
|
1043
|
+
],
|
|
1044
|
+
"internalType": "struct OFTReceipt",
|
|
1045
|
+
"name": "oftReceipt",
|
|
1046
|
+
"type": "tuple"
|
|
1047
|
+
}
|
|
1048
|
+
],
|
|
1049
|
+
"stateMutability": "view",
|
|
1050
|
+
"type": "function"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"inputs": [
|
|
1054
|
+
{
|
|
1055
|
+
"components": [
|
|
1056
|
+
{
|
|
1057
|
+
"internalType": "uint32",
|
|
1058
|
+
"name": "dstEid",
|
|
1059
|
+
"type": "uint32"
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"internalType": "bytes32",
|
|
1063
|
+
"name": "to",
|
|
1064
|
+
"type": "bytes32"
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"internalType": "uint256",
|
|
1068
|
+
"name": "amountToSendLD",
|
|
1069
|
+
"type": "uint256"
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"internalType": "uint256",
|
|
1073
|
+
"name": "minAmountToCreditLD",
|
|
1074
|
+
"type": "uint256"
|
|
1075
|
+
}
|
|
1076
|
+
],
|
|
1077
|
+
"internalType": "struct SendParam",
|
|
1078
|
+
"name": "_sendParam",
|
|
1079
|
+
"type": "tuple"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"internalType": "bytes",
|
|
1083
|
+
"name": "_extraOptions",
|
|
1084
|
+
"type": "bytes"
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
"internalType": "bool",
|
|
1088
|
+
"name": "_payInLzToken",
|
|
1089
|
+
"type": "bool"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"internalType": "bytes",
|
|
1093
|
+
"name": "_composeMsg",
|
|
1094
|
+
"type": "bytes"
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"internalType": "bytes",
|
|
1098
|
+
"name": "",
|
|
1099
|
+
"type": "bytes"
|
|
1100
|
+
}
|
|
1101
|
+
],
|
|
1102
|
+
"name": "quoteSend",
|
|
1103
|
+
"outputs": [
|
|
1104
|
+
{
|
|
1105
|
+
"components": [
|
|
1106
|
+
{
|
|
1107
|
+
"internalType": "uint256",
|
|
1108
|
+
"name": "nativeFee",
|
|
1109
|
+
"type": "uint256"
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"internalType": "uint256",
|
|
1113
|
+
"name": "lzTokenFee",
|
|
1114
|
+
"type": "uint256"
|
|
1115
|
+
}
|
|
1116
|
+
],
|
|
1117
|
+
"internalType": "struct MessagingFee",
|
|
1118
|
+
"name": "msgFee",
|
|
1119
|
+
"type": "tuple"
|
|
1120
|
+
}
|
|
1121
|
+
],
|
|
1122
|
+
"stateMutability": "view",
|
|
1123
|
+
"type": "function"
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"inputs": [],
|
|
1127
|
+
"name": "renounceOwnership",
|
|
1128
|
+
"outputs": [],
|
|
1129
|
+
"stateMutability": "nonpayable",
|
|
1130
|
+
"type": "function"
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"inputs": [
|
|
1134
|
+
{
|
|
1135
|
+
"components": [
|
|
1136
|
+
{
|
|
1137
|
+
"internalType": "uint32",
|
|
1138
|
+
"name": "dstEid",
|
|
1139
|
+
"type": "uint32"
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
"internalType": "bytes32",
|
|
1143
|
+
"name": "to",
|
|
1144
|
+
"type": "bytes32"
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"internalType": "uint256",
|
|
1148
|
+
"name": "amountToSendLD",
|
|
1149
|
+
"type": "uint256"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"internalType": "uint256",
|
|
1153
|
+
"name": "minAmountToCreditLD",
|
|
1154
|
+
"type": "uint256"
|
|
1155
|
+
}
|
|
1156
|
+
],
|
|
1157
|
+
"internalType": "struct SendParam",
|
|
1158
|
+
"name": "_sendParam",
|
|
1159
|
+
"type": "tuple"
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
"internalType": "bytes",
|
|
1163
|
+
"name": "_extraOptions",
|
|
1164
|
+
"type": "bytes"
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
"components": [
|
|
1168
|
+
{
|
|
1169
|
+
"internalType": "uint256",
|
|
1170
|
+
"name": "nativeFee",
|
|
1171
|
+
"type": "uint256"
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"internalType": "uint256",
|
|
1175
|
+
"name": "lzTokenFee",
|
|
1176
|
+
"type": "uint256"
|
|
1177
|
+
}
|
|
1178
|
+
],
|
|
1179
|
+
"internalType": "struct MessagingFee",
|
|
1180
|
+
"name": "_fee",
|
|
1181
|
+
"type": "tuple"
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"internalType": "address",
|
|
1185
|
+
"name": "_refundAddress",
|
|
1186
|
+
"type": "address"
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"internalType": "bytes",
|
|
1190
|
+
"name": "_composeMsg",
|
|
1191
|
+
"type": "bytes"
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
"internalType": "bytes",
|
|
1195
|
+
"name": "",
|
|
1196
|
+
"type": "bytes"
|
|
1197
|
+
}
|
|
1198
|
+
],
|
|
1199
|
+
"name": "send",
|
|
1200
|
+
"outputs": [
|
|
1201
|
+
{
|
|
1202
|
+
"components": [
|
|
1203
|
+
{
|
|
1204
|
+
"internalType": "bytes32",
|
|
1205
|
+
"name": "guid",
|
|
1206
|
+
"type": "bytes32"
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"internalType": "uint64",
|
|
1210
|
+
"name": "nonce",
|
|
1211
|
+
"type": "uint64"
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
"components": [
|
|
1215
|
+
{
|
|
1216
|
+
"internalType": "uint256",
|
|
1217
|
+
"name": "nativeFee",
|
|
1218
|
+
"type": "uint256"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"internalType": "uint256",
|
|
1222
|
+
"name": "lzTokenFee",
|
|
1223
|
+
"type": "uint256"
|
|
1224
|
+
}
|
|
1225
|
+
],
|
|
1226
|
+
"internalType": "struct MessagingFee",
|
|
1227
|
+
"name": "fee",
|
|
1228
|
+
"type": "tuple"
|
|
1229
|
+
}
|
|
1230
|
+
],
|
|
1231
|
+
"internalType": "struct MessagingReceipt",
|
|
1232
|
+
"name": "msgReceipt",
|
|
1233
|
+
"type": "tuple"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"components": [
|
|
1237
|
+
{
|
|
1238
|
+
"internalType": "uint256",
|
|
1239
|
+
"name": "amountDebitLD",
|
|
1240
|
+
"type": "uint256"
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"internalType": "uint256",
|
|
1244
|
+
"name": "amountCreditLD",
|
|
1245
|
+
"type": "uint256"
|
|
1246
|
+
}
|
|
1247
|
+
],
|
|
1248
|
+
"internalType": "struct OFTReceipt",
|
|
1249
|
+
"name": "oftReceipt",
|
|
1250
|
+
"type": "tuple"
|
|
1251
|
+
}
|
|
1252
|
+
],
|
|
1253
|
+
"stateMutability": "payable",
|
|
1254
|
+
"type": "function"
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
"inputs": [
|
|
1258
|
+
{
|
|
1259
|
+
"internalType": "address",
|
|
1260
|
+
"name": "_delegate",
|
|
1261
|
+
"type": "address"
|
|
1262
|
+
}
|
|
1263
|
+
],
|
|
1264
|
+
"name": "setDelegate",
|
|
1265
|
+
"outputs": [],
|
|
1266
|
+
"stateMutability": "nonpayable",
|
|
1267
|
+
"type": "function"
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
"inputs": [
|
|
1271
|
+
{
|
|
1272
|
+
"components": [
|
|
1273
|
+
{
|
|
1274
|
+
"internalType": "uint32",
|
|
1275
|
+
"name": "eid",
|
|
1276
|
+
"type": "uint32"
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
"internalType": "uint16",
|
|
1280
|
+
"name": "msgType",
|
|
1281
|
+
"type": "uint16"
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"internalType": "bytes",
|
|
1285
|
+
"name": "options",
|
|
1286
|
+
"type": "bytes"
|
|
1287
|
+
}
|
|
1288
|
+
],
|
|
1289
|
+
"internalType": "struct EnforcedOptionParam[]",
|
|
1290
|
+
"name": "_enforcedOptions",
|
|
1291
|
+
"type": "tuple[]"
|
|
1292
|
+
}
|
|
1293
|
+
],
|
|
1294
|
+
"name": "setEnforcedOptions",
|
|
1295
|
+
"outputs": [],
|
|
1296
|
+
"stateMutability": "nonpayable",
|
|
1297
|
+
"type": "function"
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
"inputs": [
|
|
1301
|
+
{
|
|
1302
|
+
"internalType": "address",
|
|
1303
|
+
"name": "_msgInspector",
|
|
1304
|
+
"type": "address"
|
|
1305
|
+
}
|
|
1306
|
+
],
|
|
1307
|
+
"name": "setMsgInspector",
|
|
1308
|
+
"outputs": [],
|
|
1309
|
+
"stateMutability": "nonpayable",
|
|
1310
|
+
"type": "function"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"inputs": [
|
|
1314
|
+
{
|
|
1315
|
+
"internalType": "uint32",
|
|
1316
|
+
"name": "_eid",
|
|
1317
|
+
"type": "uint32"
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
"internalType": "bytes32",
|
|
1321
|
+
"name": "_peer",
|
|
1322
|
+
"type": "bytes32"
|
|
1323
|
+
}
|
|
1324
|
+
],
|
|
1325
|
+
"name": "setPeer",
|
|
1326
|
+
"outputs": [],
|
|
1327
|
+
"stateMutability": "nonpayable",
|
|
1328
|
+
"type": "function"
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"inputs": [
|
|
1332
|
+
{
|
|
1333
|
+
"internalType": "address",
|
|
1334
|
+
"name": "_preCrime",
|
|
1335
|
+
"type": "address"
|
|
1336
|
+
}
|
|
1337
|
+
],
|
|
1338
|
+
"name": "setPreCrime",
|
|
1339
|
+
"outputs": [],
|
|
1340
|
+
"stateMutability": "nonpayable",
|
|
1341
|
+
"type": "function"
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
"inputs": [],
|
|
1345
|
+
"name": "sharedDecimals",
|
|
1346
|
+
"outputs": [
|
|
1347
|
+
{
|
|
1348
|
+
"internalType": "uint8",
|
|
1349
|
+
"name": "",
|
|
1350
|
+
"type": "uint8"
|
|
1351
|
+
}
|
|
1352
|
+
],
|
|
1353
|
+
"stateMutability": "pure",
|
|
1354
|
+
"type": "function"
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
"inputs": [],
|
|
1358
|
+
"name": "symbol",
|
|
1359
|
+
"outputs": [
|
|
1360
|
+
{
|
|
1361
|
+
"internalType": "string",
|
|
1362
|
+
"name": "",
|
|
1363
|
+
"type": "string"
|
|
1364
|
+
}
|
|
1365
|
+
],
|
|
1366
|
+
"stateMutability": "view",
|
|
1367
|
+
"type": "function"
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
"inputs": [],
|
|
1371
|
+
"name": "token",
|
|
1372
|
+
"outputs": [
|
|
1373
|
+
{
|
|
1374
|
+
"internalType": "address",
|
|
1375
|
+
"name": "",
|
|
1376
|
+
"type": "address"
|
|
1377
|
+
}
|
|
1378
|
+
],
|
|
1379
|
+
"stateMutability": "view",
|
|
1380
|
+
"type": "function"
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
"inputs": [],
|
|
1384
|
+
"name": "totalSupply",
|
|
1385
|
+
"outputs": [
|
|
1386
|
+
{
|
|
1387
|
+
"internalType": "uint256",
|
|
1388
|
+
"name": "",
|
|
1389
|
+
"type": "uint256"
|
|
1390
|
+
}
|
|
1391
|
+
],
|
|
1392
|
+
"stateMutability": "view",
|
|
1393
|
+
"type": "function"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"inputs": [
|
|
1397
|
+
{
|
|
1398
|
+
"internalType": "address",
|
|
1399
|
+
"name": "to",
|
|
1400
|
+
"type": "address"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"internalType": "uint256",
|
|
1404
|
+
"name": "amount",
|
|
1405
|
+
"type": "uint256"
|
|
1406
|
+
}
|
|
1407
|
+
],
|
|
1408
|
+
"name": "transfer",
|
|
1409
|
+
"outputs": [
|
|
1410
|
+
{
|
|
1411
|
+
"internalType": "bool",
|
|
1412
|
+
"name": "",
|
|
1413
|
+
"type": "bool"
|
|
1414
|
+
}
|
|
1415
|
+
],
|
|
1416
|
+
"stateMutability": "nonpayable",
|
|
1417
|
+
"type": "function"
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"inputs": [
|
|
1421
|
+
{
|
|
1422
|
+
"internalType": "address",
|
|
1423
|
+
"name": "from",
|
|
1424
|
+
"type": "address"
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
"internalType": "address",
|
|
1428
|
+
"name": "to",
|
|
1429
|
+
"type": "address"
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"internalType": "uint256",
|
|
1433
|
+
"name": "amount",
|
|
1434
|
+
"type": "uint256"
|
|
1435
|
+
}
|
|
1436
|
+
],
|
|
1437
|
+
"name": "transferFrom",
|
|
1438
|
+
"outputs": [
|
|
1439
|
+
{
|
|
1440
|
+
"internalType": "bool",
|
|
1441
|
+
"name": "",
|
|
1442
|
+
"type": "bool"
|
|
1443
|
+
}
|
|
1444
|
+
],
|
|
1445
|
+
"stateMutability": "nonpayable",
|
|
1446
|
+
"type": "function"
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
"inputs": [
|
|
1450
|
+
{
|
|
1451
|
+
"internalType": "address",
|
|
1452
|
+
"name": "newOwner",
|
|
1453
|
+
"type": "address"
|
|
1454
|
+
}
|
|
1455
|
+
],
|
|
1456
|
+
"name": "transferOwnership",
|
|
1457
|
+
"outputs": [],
|
|
1458
|
+
"stateMutability": "nonpayable",
|
|
1459
|
+
"type": "function"
|
|
1460
|
+
}
|
|
1461
|
+
],
|
|
1462
|
+
"bytecode": "0x60c06040523480156200001157600080fd5b506040516200457538038062004575833981016040819052620000349162000278565b8383601284848181818162000049336200013e565b62000054816200013e565b6001600160a01b03828116608081905260405163ca5eb5e160e01b815291831660048301529063ca5eb5e190602401600060405180830381600087803b1580156200009e57600080fd5b505af1158015620000b3573d6000803e3d6000fd5b5050505050505050620000cb6200018e60201b60201c565b60ff168360ff161015620000f2576040516301e9714b60e41b815260040160405180910390fd5b620000ff6006846200031d565b6200010c90600a6200043c565b60a05250600891506200012290508382620004e5565b506009620001318282620004e5565b50505050505050620005b1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600690565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001bb57600080fd5b81516001600160401b0380821115620001d857620001d862000193565b604051601f8301601f19908116603f0116810190828211818310171562000203576200020362000193565b81604052838152602092508660208588010111156200022157600080fd5b600091505b8382101562000245578582018301518183018401529082019062000226565b6000602085830101528094505050505092915050565b80516001600160a01b03811681146200027357600080fd5b919050565b600080600080608085870312156200028f57600080fd5b84516001600160401b0380821115620002a757600080fd5b620002b588838901620001a9565b95506020870151915080821115620002cc57600080fd5b50620002db87828801620001a9565b935050620002ec604086016200025b565b9150620002fc606086016200025b565b905092959194509250565b634e487b7160e01b600052601160045260246000fd5b60ff828116828216039081111562000339576200033962000307565b92915050565b600181815b808511156200038057816000190482111562000364576200036462000307565b808516156200037257918102915b93841c939080029062000344565b509250929050565b600082620003995750600162000339565b81620003a85750600062000339565b8160018114620003c15760028114620003cc57620003ec565b600191505062000339565b60ff841115620003e057620003e062000307565b50506001821b62000339565b5060208310610133831016604e8410600b841016171562000411575081810a62000339565b6200041d83836200033f565b806000190482111562000434576200043462000307565b029392505050565b60006200044d60ff84168362000388565b9392505050565b600181811c908216806200046957607f821691505b6020821081036200048a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004e0576000816000526020600020601f850160051c81016020861015620004bb5750805b601f850160051c820191505b81811015620004dc57828155600101620004c7565b5050505b505050565b81516001600160401b0381111562000501576200050162000193565b620005198162000512845462000454565b8462000490565b602080601f831160018114620005515760008415620005385750858301515b600019600386901b1c1916600185901b178555620004dc565b600085815260208120601f198616915b82811015620005825788860151825594840194600190910190840162000561565b5085821015620005a15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a051613f586200061d6000396000818161069d015281816123450152818161240901526124430152600081816105610152818161096f015281816114d9015281816119b00152818161200a015281816121490152818161258f01526126880152613f586000f3fe6080604052600436106102d15760003560e01c8063715018a611610179578063bb0b6a53116100d6578063d045a0dc1161008a578063f2fde38b11610064578063f2fde38b14610881578063fc0c546a146104e5578063ff7bd03d146108a157600080fd5b8063d045a0dc146107fb578063d42438851461080e578063dd62ed3e1461082e57600080fd5b8063bd815db0116100bb578063bd815db014610799578063c1e36500146107ac578063ca5eb5e1146107db57600080fd5b8063bb0b6a531461074c578063bc70b3541461077957600080fd5b8063963efcaa1161012d578063a9059cbb11610112578063a9059cbb146106df578063b731ea0a146106ff578063b98bd0701461072c57600080fd5b8063963efcaa1461068b578063a457c2d7146106bf57600080fd5b8063857749b01161015e578063857749b0146106375780638da5cb5b1461064b57806395d89b411461067657600080fd5b8063715018a6146105e65780637d25a05e146105fb57600080fd5b8063313ce5671161023257806352ae2879116101e65780635e280f11116101c05780635e280f111461054f5780636fc1b31e1461058357806370a08231146105a357600080fd5b806352ae2879146104e55780635535d461146104f85780635a0dfe4d1461051857600080fd5b80633950935111610217578063395093511461047757806346a40f751461049757806349e46017146104c457600080fd5b8063313ce567146104355780633400288b1461045757600080fd5b8063156a0d0f1161028957806318160ddd1161026e57806318160ddd146103e15780631f5e13341461040057806323b872dd1461041557600080fd5b8063156a0d0f146103c057806317442b70146103c057600080fd5b8063111ecdad116102ba578063111ecdad1461033157806313137d6514610383578063134d4f251461039857600080fd5b806306fdde03146102d6578063095ea7b314610301575b600080fd5b3480156102e257600080fd5b506102eb6108c1565b6040516102f89190612d03565b60405180910390f35b34801561030d57600080fd5b5061032161031c366004612d48565b610953565b60405190151581526020016102f8565b34801561033d57600080fd5b5060045461035e9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102f8565b610396610391366004612dce565b61096d565b005b3480156103a457600080fd5b506103ad600281565b60405161ffff90911681526020016102f8565b3480156103cc57600080fd5b506040805160018082526020820152016102f8565b3480156103ed57600080fd5b506007545b6040519081526020016102f8565b34801561040c57600080fd5b506103ad600181565b34801561042157600080fd5b50610321610430366004612e6e565b610a6c565b34801561044157600080fd5b5060125b60405160ff90911681526020016102f8565b34801561046357600080fd5b50610396610472366004612ec3565b610a92565b34801561048357600080fd5b50610321610492366004612d48565b610af0565b3480156104a357600080fd5b506104b76104b2366004612eff565b610b3c565b6040516102f89190612fc0565b6104d76104d2366004612fd7565b610bb2565b6040516102f89291906130d9565b3480156104f157600080fd5b503061035e565b34801561050457600080fd5b506102eb61051336600461313e565b610cc2565b34801561052457600080fd5b50610321610533366004612ec3565b63ffffffff919091166000908152600160205260409020541490565b34801561055b57600080fd5b5061035e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561058f57600080fd5b5061039661059e366004613171565b610d67565b3480156105af57600080fd5b506103f26105be366004613171565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205490565b3480156105f257600080fd5b50610396610de9565b34801561060757600080fd5b5061061e610616366004612ec3565b600092915050565b60405167ffffffffffffffff90911681526020016102f8565b34801561064357600080fd5b506006610445565b34801561065757600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661035e565b34801561068257600080fd5b506102eb610dfd565b34801561069757600080fd5b506103f27f000000000000000000000000000000000000000000000000000000000000000081565b3480156106cb57600080fd5b506103216106da366004612d48565b610e0c565b3480156106eb57600080fd5b506103216106fa366004612d48565b610ee8565b34801561070b57600080fd5b5060025461035e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561073857600080fd5b506103966107473660046131d3565b610ef6565b34801561075857600080fd5b506103f2610767366004613209565b60016020526000908152604090205481565b34801561078557600080fd5b506102eb610794366004613224565b611057565b6103966107a73660046131d3565b6111eb565b3480156107b857600080fd5b506107cc6107c7366004613285565b6113b9565b6040516102f8939291906132d9565b3480156107e757600080fd5b506103966107f6366004613171565b61148c565b610396610809366004612dce565b611538565b34801561081a57600080fd5b50610396610829366004613171565b611580565b34801561083a57600080fd5b506103f2610849366004613390565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205490565b34801561088d57600080fd5b5061039661089c366004613171565b6115fb565b3480156108ad57600080fd5b506103216108bc3660046133c9565b6116b2565b6060600880546108d0906133e5565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc906133e5565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b6000336109618185856116e8565b60019150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1633146109e3576040517f91ac5e4f0000000000000000000000000000000000000000000000000000000081523360048201526024015b60405180910390fd5b602087018035906109fd906109f8908a613209565b61189b565b14610a5457610a0f6020880188613209565b6040517fc26bebcc00000000000000000000000000000000000000000000000000000000815263ffffffff9091166004820152602088013560248201526044016109da565b610a63878787878787876118f0565b50505050505050565b600033610a7a858285611a7f565b610a85858585611b56565b60019150505b9392505050565b610a9a611dcc565b63ffffffff8216600081815260016020908152604091829020849055815192835282018390527f238399d427b947898edb290f5ff0f9109849b1c3ba196a42e35f00c50a54b98b91015b60405180910390a15050565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906109619082908690610b37908790613461565b6116e8565b60408051808201909152600080825260208201526000610b7160408b013560608c0135610b6c60208e018e613209565b611e4d565b915050600080610b858c8c8c8b8b88611eaa565b9092509050610ba2610b9a60208e018e613209565b83838c611ff4565b9c9b505050505050505050505050565b610bba612c4d565b6040805180820190915260008082526020820152600080610bf68d604001358e606001358f6000016020810190610bf19190613209565b6120e2565b91509150600080610c0b8f8f8f8d8d88611eaa565b91509150610c3e8f6000016020810190610c259190613209565b83838f803603810190610c3891906134cc565b8f612116565b955060405180604001604052808581526020018481525094503373ffffffffffffffffffffffffffffffffffffffff1686600001517fee6b77e8cd280835aecc97812d736c35faad222d91b12de19c7ed912e9aed71b86868e8e604051610ca89493929190613547565b60405180910390a350505050995099975050505050505050565b600360209081526000928352604080842090915290825290208054610ce6906133e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d12906133e5565b8015610d5f5780601f10610d3457610100808354040283529160200191610d5f565b820191906000526020600020905b815481529060010190602001808311610d4257829003601f168201915b505050505081565b610d6f611dcc565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527ff0be4f1e87349231d80c36b33f9e8639658eeaf474014dee15a3e6a4d4414197906020015b60405180910390a150565b610df1611dcc565b610dfb600061222e565b565b6060600980546108d0906133e5565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610ed0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109da565b610edd82868684036116e8565b506001949350505050565b600033610961818585611b56565b610efe611dcc565b60005b8181101561102557610f43838383818110610f1e57610f1e613571565b9050602002810190610f3091906135a0565b610f3e9060408101906135de565b6122a3565b828282818110610f5557610f55613571565b9050602002810190610f6791906135a0565b610f759060408101906135de565b60036000868686818110610f8b57610f8b613571565b9050602002810190610f9d91906135a0565b610fab906020810190613209565b63ffffffff1663ffffffff1681526020019081526020016000206000868686818110610fd957610fd9613571565b9050602002810190610feb91906135a0565b610ffc906040810190602001613643565b61ffff16815260208101919091526040016000209161101c9190836136ae565b50600101610f01565b507fbe4864a8e820971c0247f5992e2da559595f7bf076a21cb5928d443d2a13b6748282604051610ae49291906137c8565b63ffffffff8416600090815260036020908152604080832061ffff8716845290915281208054606092919061108b906133e5565b80601f01602080910402602001604051908101604052809291908181526020018280546110b7906133e5565b80156111045780601f106110d957610100808354040283529160200191611104565b820191906000526020600020905b8154815290600101906020018083116110e757829003601f168201915b5050505050905080516000036111545783838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509294506111e39350505050565b60008390036111645790506111e3565b600283106111ad5761117684846122a3565b806111848460028188613906565b60405160200161119693929190613930565b6040516020818303038152906040529150506111e3565b83836040517f9a6d49cd0000000000000000000000000000000000000000000000000000000081526004016109da929190613958565b949350505050565b60005b818110156112f4573683838381811061120957611209613571565b905060200281019061121b919061396c565b905061124e61122d6020830183613209565b602083013563ffffffff919091166000908152600160205260409020541490565b61125857506112ec565b3063d045a0dc60c08301358360a08101356112776101008301836135de565b611288610100890160e08a01613171565b6112966101208a018a6135de565b6040518963ffffffff1660e01b81526004016112b897969594939291906139b6565b6000604051808303818588803b1580156112d157600080fd5b505af11580156112e5573d6000803e3d6000fd5b5050505050505b6001016111ee565b503373ffffffffffffffffffffffffffffffffffffffff16638e9e70996040518163ffffffff1660e01b8152600401600060405180830381865afa158015611340573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526113869190810190613a4a565b6040517f8351eea70000000000000000000000000000000000000000000000000000000081526004016109da9190612d03565b604080518082019091526000808252602082015260606113ec604051806040016040528060008152602001600081525090565b604080518082018252600080825267ffffffffffffffff602080840182905284518381529081019094529195509182611448565b6040805180820190915260008152606060208201528152602001906001900390816114205790505b50935060008061146860408b013560608c0135610b6c60208e018e613209565b604080518082019091529182526020820152969a9599509597509395505050505050565b611494611dcc565b6040517fca5eb5e100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063ca5eb5e190602401600060405180830381600087803b15801561151d57600080fd5b505af1158015611531573d6000803e3d6000fd5b5050505050565b333014611571576040517f14d4a4e800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a6387878787878787610a54565b611588611dcc565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fd48d879cef83a1c0bdda516f27b13ddb1b3f8bbac1c9e1511bb2a659c242776090602001610dde565b611603611dcc565b73ffffffffffffffffffffffffffffffffffffffff81166116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109da565b6116af8161222e565b50565b60006020820180359060019083906116ca9086613209565b63ffffffff1681526020810191909152604001600020541492915050565b73ffffffffffffffffffffffffffffffffffffffff831661178a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff821661182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b63ffffffff811660009081526001602052604081205480610967576040517ff6ff4fb700000000000000000000000000000000000000000000000000000000815263ffffffff841660048201526024016109da565b60006119026118ff8787612303565b90565b90506000611918611913888861231b565b61233e565b90506000611933838361192e60208e018e613209565b612374565b90506028871115611a2057600061197061195360608d0160408e01613b0a565b61196060208e018e613209565b8461196b8d8d612388565b6123d3565b6040517f7cb5901200000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690637cb59012906119ec9087908e906000908790600401613b27565b600060405180830381600087803b158015611a0657600080fd5b505af1158015611a1a573d6000803e3d6000fd5b50505050505b604080518381526020810183905273ffffffffffffffffffffffffffffffffffffffff8516918b917f80a66cf84dc0b742c17c4672ee6687d7cb340ab0e5d367ac6b02bed1a6489f8d910160405180910390a350505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600660209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b505781811015611b43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109da565b611b5084848484036116e8565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611bf9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff8216611c9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205481811015611d52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526005602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611dbf9086815260200190565b60405180910390a3611b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109da565b600080611e5985612405565b915081905083811015611ea2576040517f71c4efed00000000000000000000000000000000000000000000000000000000815260048101829052602481018590526044016109da565b935093915050565b6060806000611efc8960200135611ec08661243c565b88888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061246892505050565b9093509050600081611f0f576001611f12565b60025b9050611f2c611f2460208c018c613209565b828b8b611057565b60045490935073ffffffffffffffffffffffffffffffffffffffff1615611fe757600480546040517f043a78eb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169163043a78eb91611fa4918891889101613b66565b602060405180830381865afa158015611fc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe59190613b8b565b505b5050965096945050505050565b60408051808201909152600080825260208201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ddc28c586040518060a001604052808863ffffffff1681526020016120648961189b565b8152602001878152602001868152602001851515815250306040518363ffffffff1660e01b8152600401612099929190613ba8565b6040805180830381865afa1580156120b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d99190613c7c565b95945050505050565b6000808415612100576120f68585856124fa565b9092509050611ea2565b61210a8484612517565b90969095509350505050565b61211e612c4d565b600061212d846000015161254a565b60208501519091501561214757612147846020015161258b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632637a450826040518060a001604052808b63ffffffff1681526020016121a48c61189b565b81526020018a815260200189815260200160008960200151111515815250866040518463ffffffff1660e01b81526004016121e0929190613ba8565b60806040518083038185885af11580156121fe573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122239190613c98565b979650505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006122b26002828486613906565b6122bb91613d00565b60f01c9050600381146122fe5782826040517f9a6d49cd0000000000000000000000000000000000000000000000000000000081526004016109da929190613958565b505050565b60006123126020828486613906565b610a8b91613d48565b600061232b602860208486613906565b61233491613d84565b60c01c9392505050565b60006109677f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff8416613dca565b600061238084846126b1565b509092915050565b60606123978260288186613906565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929695505050505050565b6060848484846040516020016123ec9493929190613de1565b6040516020818303038152906040529050949350505050565b60007f00000000000000000000000000000000000000000000000000000000000000006124328184613e5f565b6109679190613dca565b60006109677f000000000000000000000000000000000000000000000000000000000000000083613e5f565b80516060901515806124c95784846040516020016124b592919091825260c01b7fffffffffffffffff00000000000000000000000000000000000000000000000016602082015260280190565b6040516020818303038152906040526124f0565b848433856040516020016124e09493929190613e9a565b6040516020818303038152906040525b9150935093915050565b600080612508858585611e4d565b9092509050611ea233836127a6565b306000908152600560205260408120548190612534908585611e4d565b909250905061254330836127a6565b9250929050565b6000813414612587576040517f9f7041200000000000000000000000000000000000000000000000000000000081523460048201526024016109da565b5090565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e4fe1d946040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261c9190613ef3565b905073ffffffffffffffffffffffffffffffffffffffff811661266b576040517f5373352a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126ad73ffffffffffffffffffffffffffffffffffffffff8216337f00000000000000000000000000000000000000000000000000000000000000008561296c565b5050565b73ffffffffffffffffffffffffffffffffffffffff821661272e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016109da565b80600760008282546127409190613461565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000818152600560209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216612849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260056020526040902054818110156128ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208686039055600780548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8581166024830152848116604483015260648083018590528351808403909101815260849092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152611b5092879291600091612a3f918516908490612aec565b9050805160001480612a60575080806020019051810190612a609190613b8b565b6122fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016109da565b60606111e38484600085856000808673ffffffffffffffffffffffffffffffffffffffff168587604051612b209190613f10565b60006040518083038185875af1925050503d8060008114612b5d576040519150601f19603f3d011682016040523d82523d6000602084013e612b62565b606091505b50915091506122238783838760608315612c04578251600003612bfd5773ffffffffffffffffffffffffffffffffffffffff85163b612bfd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016109da565b50816111e3565b6111e38383815115612c195781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da9190612d03565b604051806060016040528060008019168152602001600067ffffffffffffffff168152602001612c90604051806040016040528060008152602001600081525090565b905290565b60005b83811015612cb0578181015183820152602001612c98565b50506000910152565b60008151808452612cd1816020860160208601612c95565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000610a8b6020830184612cb9565b73ffffffffffffffffffffffffffffffffffffffff811681146116af57600080fd5b8035612d4381612d16565b919050565b60008060408385031215612d5b57600080fd5b8235612d6681612d16565b946020939093013593505050565b600060608284031215612d8657600080fd5b50919050565b60008083601f840112612d9e57600080fd5b50813567ffffffffffffffff811115612db657600080fd5b60208301915083602082850101111561254357600080fd5b600080600080600080600060e0888a031215612de957600080fd5b612df38989612d74565b965060608801359550608088013567ffffffffffffffff80821115612e1757600080fd5b612e238b838c01612d8c565b909750955060a08a01359150612e3882612d16565b90935060c08901359080821115612e4e57600080fd5b50612e5b8a828b01612d8c565b989b979a50959850939692959293505050565b600080600060608486031215612e8357600080fd5b8335612e8e81612d16565b92506020840135612e9e81612d16565b929592945050506040919091013590565b803563ffffffff81168114612d4357600080fd5b60008060408385031215612ed657600080fd5b612d6683612eaf565b600060808284031215612d8657600080fd5b80151581146116af57600080fd5b600080600080600080600080610100898b031215612f1c57600080fd5b612f268a8a612edf565b9750608089013567ffffffffffffffff80821115612f4357600080fd5b612f4f8c838d01612d8c565b909950975060a08b01359150612f6482612ef1565b90955060c08a01359080821115612f7a57600080fd5b612f868c838d01612d8c565b909650945060e08b0135915080821115612f9f57600080fd5b50612fac8b828c01612d8c565b999c989b5096995094979396929594505050565b815181526020808301519082015260408101610967565b6000806000806000806000806000898b03610140811215612ff757600080fd5b6130018c8c612edf565b995060808b013567ffffffffffffffff8082111561301e57600080fd5b61302a8e838f01612d8c565b909b50995089915060407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff608401121561306257600080fd5b60a08d01985061307460e08e01612d38565b97506101008d013592508083111561308b57600080fd5b6130978e848f01612d8c565b90975095506101208d01359250869150808311156130b457600080fd5b50506130c28c828d01612d8c565b915080935050809150509295985092959850929598565b600060c0820190508351825267ffffffffffffffff60208501511660208301526040840151613115604084018280518252602090810151910152565b5082516080830152602083015160a0830152610a8b565b803561ffff81168114612d4357600080fd5b6000806040838503121561315157600080fd5b61315a83612eaf565b91506131686020840161312c565b90509250929050565b60006020828403121561318357600080fd5b8135610a8b81612d16565b60008083601f8401126131a057600080fd5b50813567ffffffffffffffff8111156131b857600080fd5b6020830191508360208260051b850101111561254357600080fd5b600080602083850312156131e657600080fd5b823567ffffffffffffffff8111156131fd57600080fd5b61210a8582860161318e565b60006020828403121561321b57600080fd5b610a8b82612eaf565b6000806000806060858703121561323a57600080fd5b61324385612eaf565b93506132516020860161312c565b9250604085013567ffffffffffffffff81111561326d57600080fd5b61327987828801612d8c565b95989497509550505050565b600080600060a0848603121561329a57600080fd5b6132a48585612edf565b9250608084013567ffffffffffffffff8111156132c057600080fd5b6132cc86828701612d8c565b9497909650939450505050565b8351815260208085015190820152600060a08201604060a0604085015281865180845260c08601915060c08160051b8701019350602080890160005b83811015613372578887037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff4001855281518051885283015183880187905261335f87890182612cb9565b9750509382019390820190600101613315565b505087516060880152505050602085015160808501525090506111e3565b600080604083850312156133a357600080fd5b82356133ae81612d16565b915060208301356133be81612d16565b809150509250929050565b6000606082840312156133db57600080fd5b610a8b8383612d74565b600181811c908216806133f957607f821691505b602082108103612d86577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561096757610967613432565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040805190810167ffffffffffffffff811182821017156134c6576134c6613474565b60405290565b6000604082840312156134de57600080fd5b6134e66134a3565b82358152602083013560208201528091505092915050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b8481528360208201526060604082015260006135676060830184866134fe565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa18336030181126135d457600080fd5b9190910192915050565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261361357600080fd5b83018035915067ffffffffffffffff82111561362e57600080fd5b60200191503681900382131561254357600080fd5b60006020828403121561365557600080fd5b610a8b8261312c565b601f8211156122fe576000816000526020600020601f850160051c810160208610156136875750805b601f850160051c820191505b818110156136a657828155600101613693565b505050505050565b67ffffffffffffffff8311156136c6576136c6613474565b6136da836136d483546133e5565b8361365e565b6000601f84116001811461372c57600085156136f65750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b178355611531565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b8281101561377b578685013582556020948501946001909201910161375b565b50868210156137b6577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082528181018390526000906040808401600586901b8501820187855b888110156138f8577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc088840301845281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa18b360301811261384857600080fd5b8a01606063ffffffff61385a83612eaf565b16855261ffff61386b89840161312c565b1688860152868201357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18336030181126138a457600080fd5b90910187810191903567ffffffffffffffff8111156138c257600080fd5b8036038313156138d157600080fd5b81888701526138e382870182856134fe565b968901969550505091860191506001016137e7565b509098975050505050505050565b6000808585111561391657600080fd5b8386111561392357600080fd5b5050820193919092039150565b60008451613942818460208901612c95565b8201838582376000930192835250909392505050565b6020815260006111e36020830184866134fe565b600082357ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec18336030181126135d457600080fd5b67ffffffffffffffff811681146116af57600080fd5b63ffffffff6139c489612eaf565b16815260208801356020820152600060408901356139e1816139a0565b67ffffffffffffffff811660408401525087606083015260e06080830152613a0d60e0830187896134fe565b73ffffffffffffffffffffffffffffffffffffffff861660a084015282810360c0840152613a3c8185876134fe565b9a9950505050505050505050565b600060208284031215613a5c57600080fd5b815167ffffffffffffffff80821115613a7457600080fd5b818401915084601f830112613a8857600080fd5b815181811115613a9a57613a9a613474565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715613ae057613ae0613474565b81604052828152876020848701011115613af957600080fd5b612223836020830160208801612c95565b600060208284031215613b1c57600080fd5b8135610a8b816139a0565b73ffffffffffffffffffffffffffffffffffffffff8516815283602082015261ffff831660408201526080606082015260006135676080830184612cb9565b604081526000613b796040830185612cb9565b82810360208401526120d98185612cb9565b600060208284031215613b9d57600080fd5b8151610a8b81612ef1565b6040815263ffffffff8351166040820152602083015160608201526000604084015160a06080840152613bde60e0840182612cb9565b905060608501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08483030160a0850152613c198282612cb9565b60809690960151151560c085015250505073ffffffffffffffffffffffffffffffffffffffff9190911660209091015290565b600060408284031215613c5e57600080fd5b613c666134a3565b9050815181526020820151602082015292915050565b600060408284031215613c8e57600080fd5b610a8b8383613c4c565b600060808284031215613caa57600080fd5b6040516060810181811067ffffffffffffffff82111715613ccd57613ccd613474565b604052825181526020830151613ce2816139a0565b6020820152613cf48460408501613c4c565b60408201529392505050565b7fffff0000000000000000000000000000000000000000000000000000000000008135818116916002851015613d405780818660020360031b1b83161692505b505092915050565b80356020831015610967577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b1692915050565b7fffffffffffffffff0000000000000000000000000000000000000000000000008135818116916008851015613d405760089490940360031b84901b1690921692915050565b808202811582820484141761096757610967613432565b7fffffffffffffffff0000000000000000000000000000000000000000000000008560c01b1681527fffffffff000000000000000000000000000000000000000000000000000000008460e01b16600882015282600c82015260008251613e4f81602c850160208701612c95565b91909101602c0195945050505050565b600082613e95577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8481527fffffffffffffffff0000000000000000000000000000000000000000000000008460c01b16602082015282602882015260008251613ee3816048850160208701612c95565b9190910160480195945050505050565b600060208284031215613f0557600080fd5b8151610a8b81612d16565b600082516135d4818460208701612c9556fea26469706673582212209b3ffbdfca07a3a494656a3353014d821a1b2893de5111969cc4261865ff815d64736f6c63430008160033",
|
|
1463
|
+
"deployedBytecode": "0x6080604052600436106102d15760003560e01c8063715018a611610179578063bb0b6a53116100d6578063d045a0dc1161008a578063f2fde38b11610064578063f2fde38b14610881578063fc0c546a146104e5578063ff7bd03d146108a157600080fd5b8063d045a0dc146107fb578063d42438851461080e578063dd62ed3e1461082e57600080fd5b8063bd815db0116100bb578063bd815db014610799578063c1e36500146107ac578063ca5eb5e1146107db57600080fd5b8063bb0b6a531461074c578063bc70b3541461077957600080fd5b8063963efcaa1161012d578063a9059cbb11610112578063a9059cbb146106df578063b731ea0a146106ff578063b98bd0701461072c57600080fd5b8063963efcaa1461068b578063a457c2d7146106bf57600080fd5b8063857749b01161015e578063857749b0146106375780638da5cb5b1461064b57806395d89b411461067657600080fd5b8063715018a6146105e65780637d25a05e146105fb57600080fd5b8063313ce5671161023257806352ae2879116101e65780635e280f11116101c05780635e280f111461054f5780636fc1b31e1461058357806370a08231146105a357600080fd5b806352ae2879146104e55780635535d461146104f85780635a0dfe4d1461051857600080fd5b80633950935111610217578063395093511461047757806346a40f751461049757806349e46017146104c457600080fd5b8063313ce567146104355780633400288b1461045757600080fd5b8063156a0d0f1161028957806318160ddd1161026e57806318160ddd146103e15780631f5e13341461040057806323b872dd1461041557600080fd5b8063156a0d0f146103c057806317442b70146103c057600080fd5b8063111ecdad116102ba578063111ecdad1461033157806313137d6514610383578063134d4f251461039857600080fd5b806306fdde03146102d6578063095ea7b314610301575b600080fd5b3480156102e257600080fd5b506102eb6108c1565b6040516102f89190612d03565b60405180910390f35b34801561030d57600080fd5b5061032161031c366004612d48565b610953565b60405190151581526020016102f8565b34801561033d57600080fd5b5060045461035e9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102f8565b610396610391366004612dce565b61096d565b005b3480156103a457600080fd5b506103ad600281565b60405161ffff90911681526020016102f8565b3480156103cc57600080fd5b506040805160018082526020820152016102f8565b3480156103ed57600080fd5b506007545b6040519081526020016102f8565b34801561040c57600080fd5b506103ad600181565b34801561042157600080fd5b50610321610430366004612e6e565b610a6c565b34801561044157600080fd5b5060125b60405160ff90911681526020016102f8565b34801561046357600080fd5b50610396610472366004612ec3565b610a92565b34801561048357600080fd5b50610321610492366004612d48565b610af0565b3480156104a357600080fd5b506104b76104b2366004612eff565b610b3c565b6040516102f89190612fc0565b6104d76104d2366004612fd7565b610bb2565b6040516102f89291906130d9565b3480156104f157600080fd5b503061035e565b34801561050457600080fd5b506102eb61051336600461313e565b610cc2565b34801561052457600080fd5b50610321610533366004612ec3565b63ffffffff919091166000908152600160205260409020541490565b34801561055b57600080fd5b5061035e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561058f57600080fd5b5061039661059e366004613171565b610d67565b3480156105af57600080fd5b506103f26105be366004613171565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205490565b3480156105f257600080fd5b50610396610de9565b34801561060757600080fd5b5061061e610616366004612ec3565b600092915050565b60405167ffffffffffffffff90911681526020016102f8565b34801561064357600080fd5b506006610445565b34801561065757600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661035e565b34801561068257600080fd5b506102eb610dfd565b34801561069757600080fd5b506103f27f000000000000000000000000000000000000000000000000000000000000000081565b3480156106cb57600080fd5b506103216106da366004612d48565b610e0c565b3480156106eb57600080fd5b506103216106fa366004612d48565b610ee8565b34801561070b57600080fd5b5060025461035e9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561073857600080fd5b506103966107473660046131d3565b610ef6565b34801561075857600080fd5b506103f2610767366004613209565b60016020526000908152604090205481565b34801561078557600080fd5b506102eb610794366004613224565b611057565b6103966107a73660046131d3565b6111eb565b3480156107b857600080fd5b506107cc6107c7366004613285565b6113b9565b6040516102f8939291906132d9565b3480156107e757600080fd5b506103966107f6366004613171565b61148c565b610396610809366004612dce565b611538565b34801561081a57600080fd5b50610396610829366004613171565b611580565b34801561083a57600080fd5b506103f2610849366004613390565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205490565b34801561088d57600080fd5b5061039661089c366004613171565b6115fb565b3480156108ad57600080fd5b506103216108bc3660046133c9565b6116b2565b6060600880546108d0906133e5565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc906133e5565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b6000336109618185856116e8565b60019150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1633146109e3576040517f91ac5e4f0000000000000000000000000000000000000000000000000000000081523360048201526024015b60405180910390fd5b602087018035906109fd906109f8908a613209565b61189b565b14610a5457610a0f6020880188613209565b6040517fc26bebcc00000000000000000000000000000000000000000000000000000000815263ffffffff9091166004820152602088013560248201526044016109da565b610a63878787878787876118f0565b50505050505050565b600033610a7a858285611a7f565b610a85858585611b56565b60019150505b9392505050565b610a9a611dcc565b63ffffffff8216600081815260016020908152604091829020849055815192835282018390527f238399d427b947898edb290f5ff0f9109849b1c3ba196a42e35f00c50a54b98b91015b60405180910390a15050565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906109619082908690610b37908790613461565b6116e8565b60408051808201909152600080825260208201526000610b7160408b013560608c0135610b6c60208e018e613209565b611e4d565b915050600080610b858c8c8c8b8b88611eaa565b9092509050610ba2610b9a60208e018e613209565b83838c611ff4565b9c9b505050505050505050505050565b610bba612c4d565b6040805180820190915260008082526020820152600080610bf68d604001358e606001358f6000016020810190610bf19190613209565b6120e2565b91509150600080610c0b8f8f8f8d8d88611eaa565b91509150610c3e8f6000016020810190610c259190613209565b83838f803603810190610c3891906134cc565b8f612116565b955060405180604001604052808581526020018481525094503373ffffffffffffffffffffffffffffffffffffffff1686600001517fee6b77e8cd280835aecc97812d736c35faad222d91b12de19c7ed912e9aed71b86868e8e604051610ca89493929190613547565b60405180910390a350505050995099975050505050505050565b600360209081526000928352604080842090915290825290208054610ce6906133e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d12906133e5565b8015610d5f5780601f10610d3457610100808354040283529160200191610d5f565b820191906000526020600020905b815481529060010190602001808311610d4257829003601f168201915b505050505081565b610d6f611dcc565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527ff0be4f1e87349231d80c36b33f9e8639658eeaf474014dee15a3e6a4d4414197906020015b60405180910390a150565b610df1611dcc565b610dfb600061222e565b565b6060600980546108d0906133e5565b33600081815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610ed0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109da565b610edd82868684036116e8565b506001949350505050565b600033610961818585611b56565b610efe611dcc565b60005b8181101561102557610f43838383818110610f1e57610f1e613571565b9050602002810190610f3091906135a0565b610f3e9060408101906135de565b6122a3565b828282818110610f5557610f55613571565b9050602002810190610f6791906135a0565b610f759060408101906135de565b60036000868686818110610f8b57610f8b613571565b9050602002810190610f9d91906135a0565b610fab906020810190613209565b63ffffffff1663ffffffff1681526020019081526020016000206000868686818110610fd957610fd9613571565b9050602002810190610feb91906135a0565b610ffc906040810190602001613643565b61ffff16815260208101919091526040016000209161101c9190836136ae565b50600101610f01565b507fbe4864a8e820971c0247f5992e2da559595f7bf076a21cb5928d443d2a13b6748282604051610ae49291906137c8565b63ffffffff8416600090815260036020908152604080832061ffff8716845290915281208054606092919061108b906133e5565b80601f01602080910402602001604051908101604052809291908181526020018280546110b7906133e5565b80156111045780601f106110d957610100808354040283529160200191611104565b820191906000526020600020905b8154815290600101906020018083116110e757829003601f168201915b5050505050905080516000036111545783838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509294506111e39350505050565b60008390036111645790506111e3565b600283106111ad5761117684846122a3565b806111848460028188613906565b60405160200161119693929190613930565b6040516020818303038152906040529150506111e3565b83836040517f9a6d49cd0000000000000000000000000000000000000000000000000000000081526004016109da929190613958565b949350505050565b60005b818110156112f4573683838381811061120957611209613571565b905060200281019061121b919061396c565b905061124e61122d6020830183613209565b602083013563ffffffff919091166000908152600160205260409020541490565b61125857506112ec565b3063d045a0dc60c08301358360a08101356112776101008301836135de565b611288610100890160e08a01613171565b6112966101208a018a6135de565b6040518963ffffffff1660e01b81526004016112b897969594939291906139b6565b6000604051808303818588803b1580156112d157600080fd5b505af11580156112e5573d6000803e3d6000fd5b5050505050505b6001016111ee565b503373ffffffffffffffffffffffffffffffffffffffff16638e9e70996040518163ffffffff1660e01b8152600401600060405180830381865afa158015611340573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526113869190810190613a4a565b6040517f8351eea70000000000000000000000000000000000000000000000000000000081526004016109da9190612d03565b604080518082019091526000808252602082015260606113ec604051806040016040528060008152602001600081525090565b604080518082018252600080825267ffffffffffffffff602080840182905284518381529081019094529195509182611448565b6040805180820190915260008152606060208201528152602001906001900390816114205790505b50935060008061146860408b013560608c0135610b6c60208e018e613209565b604080518082019091529182526020820152969a9599509597509395505050505050565b611494611dcc565b6040517fca5eb5e100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063ca5eb5e190602401600060405180830381600087803b15801561151d57600080fd5b505af1158015611531573d6000803e3d6000fd5b5050505050565b333014611571576040517f14d4a4e800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a6387878787878787610a54565b611588611dcc565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fd48d879cef83a1c0bdda516f27b13ddb1b3f8bbac1c9e1511bb2a659c242776090602001610dde565b611603611dcc565b73ffffffffffffffffffffffffffffffffffffffff81166116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109da565b6116af8161222e565b50565b60006020820180359060019083906116ca9086613209565b63ffffffff1681526020810191909152604001600020541492915050565b73ffffffffffffffffffffffffffffffffffffffff831661178a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff821661182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b63ffffffff811660009081526001602052604081205480610967576040517ff6ff4fb700000000000000000000000000000000000000000000000000000000815263ffffffff841660048201526024016109da565b60006119026118ff8787612303565b90565b90506000611918611913888861231b565b61233e565b90506000611933838361192e60208e018e613209565b612374565b90506028871115611a2057600061197061195360608d0160408e01613b0a565b61196060208e018e613209565b8461196b8d8d612388565b6123d3565b6040517f7cb5901200000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690637cb59012906119ec9087908e906000908790600401613b27565b600060405180830381600087803b158015611a0657600080fd5b505af1158015611a1a573d6000803e3d6000fd5b50505050505b604080518381526020810183905273ffffffffffffffffffffffffffffffffffffffff8516918b917f80a66cf84dc0b742c17c4672ee6687d7cb340ab0e5d367ac6b02bed1a6489f8d910160405180910390a350505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600660209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b505781811015611b43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109da565b611b5084848484036116e8565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611bf9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff8216611c9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205481811015611d52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526005602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611dbf9086815260200190565b60405180910390a3611b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109da565b600080611e5985612405565b915081905083811015611ea2576040517f71c4efed00000000000000000000000000000000000000000000000000000000815260048101829052602481018590526044016109da565b935093915050565b6060806000611efc8960200135611ec08661243c565b88888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061246892505050565b9093509050600081611f0f576001611f12565b60025b9050611f2c611f2460208c018c613209565b828b8b611057565b60045490935073ffffffffffffffffffffffffffffffffffffffff1615611fe757600480546040517f043a78eb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169163043a78eb91611fa4918891889101613b66565b602060405180830381865afa158015611fc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe59190613b8b565b505b5050965096945050505050565b60408051808201909152600080825260208201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ddc28c586040518060a001604052808863ffffffff1681526020016120648961189b565b8152602001878152602001868152602001851515815250306040518363ffffffff1660e01b8152600401612099929190613ba8565b6040805180830381865afa1580156120b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120d99190613c7c565b95945050505050565b6000808415612100576120f68585856124fa565b9092509050611ea2565b61210a8484612517565b90969095509350505050565b61211e612c4d565b600061212d846000015161254a565b60208501519091501561214757612147846020015161258b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632637a450826040518060a001604052808b63ffffffff1681526020016121a48c61189b565b81526020018a815260200189815260200160008960200151111515815250866040518463ffffffff1660e01b81526004016121e0929190613ba8565b60806040518083038185885af11580156121fe573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122239190613c98565b979650505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006122b26002828486613906565b6122bb91613d00565b60f01c9050600381146122fe5782826040517f9a6d49cd0000000000000000000000000000000000000000000000000000000081526004016109da929190613958565b505050565b60006123126020828486613906565b610a8b91613d48565b600061232b602860208486613906565b61233491613d84565b60c01c9392505050565b60006109677f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff8416613dca565b600061238084846126b1565b509092915050565b60606123978260288186613906565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929695505050505050565b6060848484846040516020016123ec9493929190613de1565b6040516020818303038152906040529050949350505050565b60007f00000000000000000000000000000000000000000000000000000000000000006124328184613e5f565b6109679190613dca565b60006109677f000000000000000000000000000000000000000000000000000000000000000083613e5f565b80516060901515806124c95784846040516020016124b592919091825260c01b7fffffffffffffffff00000000000000000000000000000000000000000000000016602082015260280190565b6040516020818303038152906040526124f0565b848433856040516020016124e09493929190613e9a565b6040516020818303038152906040525b9150935093915050565b600080612508858585611e4d565b9092509050611ea233836127a6565b306000908152600560205260408120548190612534908585611e4d565b909250905061254330836127a6565b9250929050565b6000813414612587576040517f9f7041200000000000000000000000000000000000000000000000000000000081523460048201526024016109da565b5090565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e4fe1d946040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261c9190613ef3565b905073ffffffffffffffffffffffffffffffffffffffff811661266b576040517f5373352a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126ad73ffffffffffffffffffffffffffffffffffffffff8216337f00000000000000000000000000000000000000000000000000000000000000008561296c565b5050565b73ffffffffffffffffffffffffffffffffffffffff821661272e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016109da565b80600760008282546127409190613461565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000818152600560209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216612849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260056020526040902054818110156128ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016109da565b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208686039055600780548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8581166024830152848116604483015260648083018590528351808403909101815260849092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152611b5092879291600091612a3f918516908490612aec565b9050805160001480612a60575080806020019051810190612a609190613b8b565b6122fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016109da565b60606111e38484600085856000808673ffffffffffffffffffffffffffffffffffffffff168587604051612b209190613f10565b60006040518083038185875af1925050503d8060008114612b5d576040519150601f19603f3d011682016040523d82523d6000602084013e612b62565b606091505b50915091506122238783838760608315612c04578251600003612bfd5773ffffffffffffffffffffffffffffffffffffffff85163b612bfd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016109da565b50816111e3565b6111e38383815115612c195781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da9190612d03565b604051806060016040528060008019168152602001600067ffffffffffffffff168152602001612c90604051806040016040528060008152602001600081525090565b905290565b60005b83811015612cb0578181015183820152602001612c98565b50506000910152565b60008151808452612cd1816020860160208601612c95565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000610a8b6020830184612cb9565b73ffffffffffffffffffffffffffffffffffffffff811681146116af57600080fd5b8035612d4381612d16565b919050565b60008060408385031215612d5b57600080fd5b8235612d6681612d16565b946020939093013593505050565b600060608284031215612d8657600080fd5b50919050565b60008083601f840112612d9e57600080fd5b50813567ffffffffffffffff811115612db657600080fd5b60208301915083602082850101111561254357600080fd5b600080600080600080600060e0888a031215612de957600080fd5b612df38989612d74565b965060608801359550608088013567ffffffffffffffff80821115612e1757600080fd5b612e238b838c01612d8c565b909750955060a08a01359150612e3882612d16565b90935060c08901359080821115612e4e57600080fd5b50612e5b8a828b01612d8c565b989b979a50959850939692959293505050565b600080600060608486031215612e8357600080fd5b8335612e8e81612d16565b92506020840135612e9e81612d16565b929592945050506040919091013590565b803563ffffffff81168114612d4357600080fd5b60008060408385031215612ed657600080fd5b612d6683612eaf565b600060808284031215612d8657600080fd5b80151581146116af57600080fd5b600080600080600080600080610100898b031215612f1c57600080fd5b612f268a8a612edf565b9750608089013567ffffffffffffffff80821115612f4357600080fd5b612f4f8c838d01612d8c565b909950975060a08b01359150612f6482612ef1565b90955060c08a01359080821115612f7a57600080fd5b612f868c838d01612d8c565b909650945060e08b0135915080821115612f9f57600080fd5b50612fac8b828c01612d8c565b999c989b5096995094979396929594505050565b815181526020808301519082015260408101610967565b6000806000806000806000806000898b03610140811215612ff757600080fd5b6130018c8c612edf565b995060808b013567ffffffffffffffff8082111561301e57600080fd5b61302a8e838f01612d8c565b909b50995089915060407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff608401121561306257600080fd5b60a08d01985061307460e08e01612d38565b97506101008d013592508083111561308b57600080fd5b6130978e848f01612d8c565b90975095506101208d01359250869150808311156130b457600080fd5b50506130c28c828d01612d8c565b915080935050809150509295985092959850929598565b600060c0820190508351825267ffffffffffffffff60208501511660208301526040840151613115604084018280518252602090810151910152565b5082516080830152602083015160a0830152610a8b565b803561ffff81168114612d4357600080fd5b6000806040838503121561315157600080fd5b61315a83612eaf565b91506131686020840161312c565b90509250929050565b60006020828403121561318357600080fd5b8135610a8b81612d16565b60008083601f8401126131a057600080fd5b50813567ffffffffffffffff8111156131b857600080fd5b6020830191508360208260051b850101111561254357600080fd5b600080602083850312156131e657600080fd5b823567ffffffffffffffff8111156131fd57600080fd5b61210a8582860161318e565b60006020828403121561321b57600080fd5b610a8b82612eaf565b6000806000806060858703121561323a57600080fd5b61324385612eaf565b93506132516020860161312c565b9250604085013567ffffffffffffffff81111561326d57600080fd5b61327987828801612d8c565b95989497509550505050565b600080600060a0848603121561329a57600080fd5b6132a48585612edf565b9250608084013567ffffffffffffffff8111156132c057600080fd5b6132cc86828701612d8c565b9497909650939450505050565b8351815260208085015190820152600060a08201604060a0604085015281865180845260c08601915060c08160051b8701019350602080890160005b83811015613372578887037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff4001855281518051885283015183880187905261335f87890182612cb9565b9750509382019390820190600101613315565b505087516060880152505050602085015160808501525090506111e3565b600080604083850312156133a357600080fd5b82356133ae81612d16565b915060208301356133be81612d16565b809150509250929050565b6000606082840312156133db57600080fd5b610a8b8383612d74565b600181811c908216806133f957607f821691505b602082108103612d86577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561096757610967613432565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040805190810167ffffffffffffffff811182821017156134c6576134c6613474565b60405290565b6000604082840312156134de57600080fd5b6134e66134a3565b82358152602083013560208201528091505092915050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b8481528360208201526060604082015260006135676060830184866134fe565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa18336030181126135d457600080fd5b9190910192915050565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261361357600080fd5b83018035915067ffffffffffffffff82111561362e57600080fd5b60200191503681900382131561254357600080fd5b60006020828403121561365557600080fd5b610a8b8261312c565b601f8211156122fe576000816000526020600020601f850160051c810160208610156136875750805b601f850160051c820191505b818110156136a657828155600101613693565b505050505050565b67ffffffffffffffff8311156136c6576136c6613474565b6136da836136d483546133e5565b8361365e565b6000601f84116001811461372c57600085156136f65750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b178355611531565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b8281101561377b578685013582556020948501946001909201910161375b565b50868210156137b6577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208082528181018390526000906040808401600586901b8501820187855b888110156138f8577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc088840301845281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa18b360301811261384857600080fd5b8a01606063ffffffff61385a83612eaf565b16855261ffff61386b89840161312c565b1688860152868201357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18336030181126138a457600080fd5b90910187810191903567ffffffffffffffff8111156138c257600080fd5b8036038313156138d157600080fd5b81888701526138e382870182856134fe565b968901969550505091860191506001016137e7565b509098975050505050505050565b6000808585111561391657600080fd5b8386111561392357600080fd5b5050820193919092039150565b60008451613942818460208901612c95565b8201838582376000930192835250909392505050565b6020815260006111e36020830184866134fe565b600082357ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec18336030181126135d457600080fd5b67ffffffffffffffff811681146116af57600080fd5b63ffffffff6139c489612eaf565b16815260208801356020820152600060408901356139e1816139a0565b67ffffffffffffffff811660408401525087606083015260e06080830152613a0d60e0830187896134fe565b73ffffffffffffffffffffffffffffffffffffffff861660a084015282810360c0840152613a3c8185876134fe565b9a9950505050505050505050565b600060208284031215613a5c57600080fd5b815167ffffffffffffffff80821115613a7457600080fd5b818401915084601f830112613a8857600080fd5b815181811115613a9a57613a9a613474565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715613ae057613ae0613474565b81604052828152876020848701011115613af957600080fd5b612223836020830160208801612c95565b600060208284031215613b1c57600080fd5b8135610a8b816139a0565b73ffffffffffffffffffffffffffffffffffffffff8516815283602082015261ffff831660408201526080606082015260006135676080830184612cb9565b604081526000613b796040830185612cb9565b82810360208401526120d98185612cb9565b600060208284031215613b9d57600080fd5b8151610a8b81612ef1565b6040815263ffffffff8351166040820152602083015160608201526000604084015160a06080840152613bde60e0840182612cb9565b905060608501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08483030160a0850152613c198282612cb9565b60809690960151151560c085015250505073ffffffffffffffffffffffffffffffffffffffff9190911660209091015290565b600060408284031215613c5e57600080fd5b613c666134a3565b9050815181526020820151602082015292915050565b600060408284031215613c8e57600080fd5b610a8b8383613c4c565b600060808284031215613caa57600080fd5b6040516060810181811067ffffffffffffffff82111715613ccd57613ccd613474565b604052825181526020830151613ce2816139a0565b6020820152613cf48460408501613c4c565b60408201529392505050565b7fffff0000000000000000000000000000000000000000000000000000000000008135818116916002851015613d405780818660020360031b1b83161692505b505092915050565b80356020831015610967577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b1692915050565b7fffffffffffffffff0000000000000000000000000000000000000000000000008135818116916008851015613d405760089490940360031b84901b1690921692915050565b808202811582820484141761096757610967613432565b7fffffffffffffffff0000000000000000000000000000000000000000000000008560c01b1681527fffffffff000000000000000000000000000000000000000000000000000000008460e01b16600882015282600c82015260008251613e4f81602c850160208701612c95565b91909101602c0195945050505050565b600082613e95577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8481527fffffffffffffffff0000000000000000000000000000000000000000000000008460c01b16602082015282602882015260008251613ee3816048850160208701612c95565b9190910160480195945050505050565b600060208284031215613f0557600080fd5b8151610a8b81612d16565b600082516135d4818460208701612c9556fea26469706673582212209b3ffbdfca07a3a494656a3353014d821a1b2893de5111969cc4261865ff815d64736f6c63430008160033",
|
|
1464
|
+
"linkReferences": {},
|
|
1465
|
+
"deployedLinkReferences": {}
|
|
1466
|
+
}
|