ocean-contracts 1.1.15__py3-none-any.whl → 2.0.0__py3-none-any.whl
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.
- addresses/address.json +80 -2
- artifacts/Distribute.json +57 -0
- artifacts/ERC20Template.json +2 -2
- artifacts/ERC20Template3.json +2113 -0
- artifacts/ERC20TemplateEnterprise.json +2 -2
- artifacts/FactoryRouter.json +2 -2
- artifacts/FixedRateExchange.json +47 -2
- artifacts/IERC20Template3.json +971 -0
- artifacts/IFixedRateExchange.json +13 -0
- artifacts/ISplitter.json +24 -0
- artifacts/IVestingContract.json +24 -0
- artifacts/IveFeeDistributor.json +85 -0
- artifacts/MockERC20.json +2 -2
- artifacts/MockERC20Decimals.json +2 -2
- artifacts/MockOcean.json +2 -2
- artifacts/OPFCommunityFeeCollector.json +2 -2
- artifacts/PredictoorHelper.json +191 -0
- artifacts/Splitter.json +340 -0
- artifacts/VestingWalletHalving.json +435 -0
- artifacts/VestingWalletLinear.json +362 -0
- artifacts/veFeeDistributorOwner.json +226 -0
- {ocean_contracts-1.1.15.dist-info → ocean_contracts-2.0.0.dist-info}/METADATA +2 -3
- {ocean_contracts-1.1.15.dist-info → ocean_contracts-2.0.0.dist-info}/RECORD +25 -15
- {ocean_contracts-1.1.15.dist-info → ocean_contracts-2.0.0.dist-info}/WHEEL +1 -1
- artifacts/SideStaking.json +0 -502
- {ocean_contracts-1.1.15.dist-info → ocean_contracts-2.0.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,2113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "ERC20Template3",
|
|
4
|
+
"sourceName": "contracts/templates/ERC20Template3.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"anonymous": false,
|
|
8
|
+
"inputs": [
|
|
9
|
+
{
|
|
10
|
+
"indexed": true,
|
|
11
|
+
"internalType": "address",
|
|
12
|
+
"name": "user",
|
|
13
|
+
"type": "address"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"indexed": true,
|
|
17
|
+
"internalType": "address",
|
|
18
|
+
"name": "signer",
|
|
19
|
+
"type": "address"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"indexed": false,
|
|
23
|
+
"internalType": "uint256",
|
|
24
|
+
"name": "timestamp",
|
|
25
|
+
"type": "uint256"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"indexed": false,
|
|
29
|
+
"internalType": "uint256",
|
|
30
|
+
"name": "blockNumber",
|
|
31
|
+
"type": "uint256"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"name": "AddedMinter",
|
|
35
|
+
"type": "event"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"anonymous": false,
|
|
39
|
+
"inputs": [
|
|
40
|
+
{
|
|
41
|
+
"indexed": true,
|
|
42
|
+
"internalType": "address",
|
|
43
|
+
"name": "user",
|
|
44
|
+
"type": "address"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"indexed": true,
|
|
48
|
+
"internalType": "address",
|
|
49
|
+
"name": "signer",
|
|
50
|
+
"type": "address"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"indexed": false,
|
|
54
|
+
"internalType": "uint256",
|
|
55
|
+
"name": "timestamp",
|
|
56
|
+
"type": "uint256"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"indexed": false,
|
|
60
|
+
"internalType": "uint256",
|
|
61
|
+
"name": "blockNumber",
|
|
62
|
+
"type": "uint256"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"name": "AddedPaymentManager",
|
|
66
|
+
"type": "event"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"anonymous": false,
|
|
70
|
+
"inputs": [
|
|
71
|
+
{
|
|
72
|
+
"indexed": true,
|
|
73
|
+
"internalType": "address",
|
|
74
|
+
"name": "owner",
|
|
75
|
+
"type": "address"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"indexed": true,
|
|
79
|
+
"internalType": "address",
|
|
80
|
+
"name": "spender",
|
|
81
|
+
"type": "address"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"indexed": false,
|
|
85
|
+
"internalType": "uint256",
|
|
86
|
+
"name": "value",
|
|
87
|
+
"type": "uint256"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"name": "Approval",
|
|
91
|
+
"type": "event"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"anonymous": false,
|
|
95
|
+
"inputs": [
|
|
96
|
+
{
|
|
97
|
+
"indexed": true,
|
|
98
|
+
"internalType": "address",
|
|
99
|
+
"name": "signer",
|
|
100
|
+
"type": "address"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"indexed": false,
|
|
104
|
+
"internalType": "uint256",
|
|
105
|
+
"name": "timestamp",
|
|
106
|
+
"type": "uint256"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"indexed": false,
|
|
110
|
+
"internalType": "uint256",
|
|
111
|
+
"name": "blockNumber",
|
|
112
|
+
"type": "uint256"
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"name": "CleanedPermissions",
|
|
116
|
+
"type": "event"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"anonymous": false,
|
|
120
|
+
"inputs": [
|
|
121
|
+
{
|
|
122
|
+
"indexed": true,
|
|
123
|
+
"internalType": "address",
|
|
124
|
+
"name": "consumeMarketFeeAddress",
|
|
125
|
+
"type": "address"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"indexed": true,
|
|
129
|
+
"internalType": "address",
|
|
130
|
+
"name": "consumeMarketFeeToken",
|
|
131
|
+
"type": "address"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"indexed": false,
|
|
135
|
+
"internalType": "uint256",
|
|
136
|
+
"name": "consumeMarketFeeAmount",
|
|
137
|
+
"type": "uint256"
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"name": "ConsumeMarketFee",
|
|
141
|
+
"type": "event"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"anonymous": false,
|
|
145
|
+
"inputs": [
|
|
146
|
+
{
|
|
147
|
+
"indexed": false,
|
|
148
|
+
"internalType": "address",
|
|
149
|
+
"name": "currentMinter",
|
|
150
|
+
"type": "address"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"indexed": false,
|
|
154
|
+
"internalType": "address",
|
|
155
|
+
"name": "newMinter",
|
|
156
|
+
"type": "address"
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"name": "MinterApproved",
|
|
160
|
+
"type": "event"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"anonymous": false,
|
|
164
|
+
"inputs": [
|
|
165
|
+
{
|
|
166
|
+
"indexed": false,
|
|
167
|
+
"internalType": "address",
|
|
168
|
+
"name": "currentMinter",
|
|
169
|
+
"type": "address"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"indexed": false,
|
|
173
|
+
"internalType": "address",
|
|
174
|
+
"name": "newMinter",
|
|
175
|
+
"type": "address"
|
|
176
|
+
}
|
|
177
|
+
],
|
|
178
|
+
"name": "MinterProposed",
|
|
179
|
+
"type": "event"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"anonymous": false,
|
|
183
|
+
"inputs": [
|
|
184
|
+
{
|
|
185
|
+
"indexed": false,
|
|
186
|
+
"internalType": "bytes32",
|
|
187
|
+
"name": "exchangeId",
|
|
188
|
+
"type": "bytes32"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"indexed": true,
|
|
192
|
+
"internalType": "address",
|
|
193
|
+
"name": "owner",
|
|
194
|
+
"type": "address"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"indexed": false,
|
|
198
|
+
"internalType": "address",
|
|
199
|
+
"name": "exchangeContract",
|
|
200
|
+
"type": "address"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"indexed": true,
|
|
204
|
+
"internalType": "address",
|
|
205
|
+
"name": "baseToken",
|
|
206
|
+
"type": "address"
|
|
207
|
+
}
|
|
208
|
+
],
|
|
209
|
+
"name": "NewFixedRate",
|
|
210
|
+
"type": "event"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"anonymous": false,
|
|
214
|
+
"inputs": [
|
|
215
|
+
{
|
|
216
|
+
"indexed": true,
|
|
217
|
+
"internalType": "address",
|
|
218
|
+
"name": "caller",
|
|
219
|
+
"type": "address"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"indexed": true,
|
|
223
|
+
"internalType": "address",
|
|
224
|
+
"name": "_newPaymentCollector",
|
|
225
|
+
"type": "address"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"indexed": false,
|
|
229
|
+
"internalType": "uint256",
|
|
230
|
+
"name": "timestamp",
|
|
231
|
+
"type": "uint256"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"indexed": false,
|
|
235
|
+
"internalType": "uint256",
|
|
236
|
+
"name": "blockNumber",
|
|
237
|
+
"type": "uint256"
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"name": "NewPaymentCollector",
|
|
241
|
+
"type": "event"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"anonymous": false,
|
|
245
|
+
"inputs": [
|
|
246
|
+
{
|
|
247
|
+
"indexed": true,
|
|
248
|
+
"internalType": "address",
|
|
249
|
+
"name": "user",
|
|
250
|
+
"type": "address"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"indexed": false,
|
|
254
|
+
"internalType": "uint256",
|
|
255
|
+
"name": "expires",
|
|
256
|
+
"type": "uint256"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"indexed": false,
|
|
260
|
+
"internalType": "uint256",
|
|
261
|
+
"name": "epoch",
|
|
262
|
+
"type": "uint256"
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
"name": "NewSubscription",
|
|
266
|
+
"type": "event"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"anonymous": false,
|
|
270
|
+
"inputs": [
|
|
271
|
+
{
|
|
272
|
+
"indexed": true,
|
|
273
|
+
"internalType": "address",
|
|
274
|
+
"name": "consumer",
|
|
275
|
+
"type": "address"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"indexed": false,
|
|
279
|
+
"internalType": "address",
|
|
280
|
+
"name": "payer",
|
|
281
|
+
"type": "address"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"indexed": false,
|
|
285
|
+
"internalType": "uint256",
|
|
286
|
+
"name": "amount",
|
|
287
|
+
"type": "uint256"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"indexed": false,
|
|
291
|
+
"internalType": "uint256",
|
|
292
|
+
"name": "serviceIndex",
|
|
293
|
+
"type": "uint256"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"indexed": false,
|
|
297
|
+
"internalType": "uint256",
|
|
298
|
+
"name": "timestamp",
|
|
299
|
+
"type": "uint256"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"indexed": true,
|
|
303
|
+
"internalType": "address",
|
|
304
|
+
"name": "publishMarketAddress",
|
|
305
|
+
"type": "address"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"indexed": false,
|
|
309
|
+
"internalType": "uint256",
|
|
310
|
+
"name": "blockNumber",
|
|
311
|
+
"type": "uint256"
|
|
312
|
+
}
|
|
313
|
+
],
|
|
314
|
+
"name": "OrderStarted",
|
|
315
|
+
"type": "event"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"anonymous": false,
|
|
319
|
+
"inputs": [
|
|
320
|
+
{
|
|
321
|
+
"indexed": false,
|
|
322
|
+
"internalType": "bool",
|
|
323
|
+
"name": "paused",
|
|
324
|
+
"type": "bool"
|
|
325
|
+
}
|
|
326
|
+
],
|
|
327
|
+
"name": "Paused",
|
|
328
|
+
"type": "event"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"anonymous": false,
|
|
332
|
+
"inputs": [
|
|
333
|
+
{
|
|
334
|
+
"indexed": true,
|
|
335
|
+
"internalType": "address",
|
|
336
|
+
"name": "predictoor",
|
|
337
|
+
"type": "address"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"indexed": true,
|
|
341
|
+
"internalType": "uint256",
|
|
342
|
+
"name": "slot",
|
|
343
|
+
"type": "uint256"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"indexed": false,
|
|
347
|
+
"internalType": "uint256",
|
|
348
|
+
"name": "stake",
|
|
349
|
+
"type": "uint256"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"indexed": false,
|
|
353
|
+
"internalType": "uint256",
|
|
354
|
+
"name": "payout",
|
|
355
|
+
"type": "uint256"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"indexed": false,
|
|
359
|
+
"internalType": "bool",
|
|
360
|
+
"name": "predictedValue",
|
|
361
|
+
"type": "bool"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"indexed": false,
|
|
365
|
+
"internalType": "bool",
|
|
366
|
+
"name": "trueValue",
|
|
367
|
+
"type": "bool"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"indexed": false,
|
|
371
|
+
"internalType": "uint256",
|
|
372
|
+
"name": "aggregatedPredictedValue",
|
|
373
|
+
"type": "uint256"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"indexed": false,
|
|
377
|
+
"internalType": "enum ERC20Template3.Status",
|
|
378
|
+
"name": "status",
|
|
379
|
+
"type": "uint8"
|
|
380
|
+
}
|
|
381
|
+
],
|
|
382
|
+
"name": "PredictionPayout",
|
|
383
|
+
"type": "event"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"anonymous": false,
|
|
387
|
+
"inputs": [
|
|
388
|
+
{
|
|
389
|
+
"indexed": true,
|
|
390
|
+
"internalType": "address",
|
|
391
|
+
"name": "predictoor",
|
|
392
|
+
"type": "address"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"indexed": true,
|
|
396
|
+
"internalType": "uint256",
|
|
397
|
+
"name": "slot",
|
|
398
|
+
"type": "uint256"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"indexed": false,
|
|
402
|
+
"internalType": "uint256",
|
|
403
|
+
"name": "stake",
|
|
404
|
+
"type": "uint256"
|
|
405
|
+
}
|
|
406
|
+
],
|
|
407
|
+
"name": "PredictionSubmitted",
|
|
408
|
+
"type": "event"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"anonymous": false,
|
|
412
|
+
"inputs": [
|
|
413
|
+
{
|
|
414
|
+
"indexed": true,
|
|
415
|
+
"internalType": "address",
|
|
416
|
+
"name": "PublishMarketFeeAddress",
|
|
417
|
+
"type": "address"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"indexed": true,
|
|
421
|
+
"internalType": "address",
|
|
422
|
+
"name": "PublishMarketFeeToken",
|
|
423
|
+
"type": "address"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"indexed": false,
|
|
427
|
+
"internalType": "uint256",
|
|
428
|
+
"name": "PublishMarketFeeAmount",
|
|
429
|
+
"type": "uint256"
|
|
430
|
+
}
|
|
431
|
+
],
|
|
432
|
+
"name": "PublishMarketFee",
|
|
433
|
+
"type": "event"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"anonymous": false,
|
|
437
|
+
"inputs": [
|
|
438
|
+
{
|
|
439
|
+
"indexed": false,
|
|
440
|
+
"internalType": "address",
|
|
441
|
+
"name": "caller",
|
|
442
|
+
"type": "address"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"indexed": false,
|
|
446
|
+
"internalType": "address",
|
|
447
|
+
"name": "PublishMarketFeeAddress",
|
|
448
|
+
"type": "address"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"indexed": false,
|
|
452
|
+
"internalType": "address",
|
|
453
|
+
"name": "PublishMarketFeeToken",
|
|
454
|
+
"type": "address"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"indexed": false,
|
|
458
|
+
"internalType": "uint256",
|
|
459
|
+
"name": "PublishMarketFeeAmount",
|
|
460
|
+
"type": "uint256"
|
|
461
|
+
}
|
|
462
|
+
],
|
|
463
|
+
"name": "PublishMarketFeeChanged",
|
|
464
|
+
"type": "event"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"anonymous": false,
|
|
468
|
+
"inputs": [
|
|
469
|
+
{
|
|
470
|
+
"indexed": true,
|
|
471
|
+
"internalType": "address",
|
|
472
|
+
"name": "user",
|
|
473
|
+
"type": "address"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"indexed": true,
|
|
477
|
+
"internalType": "address",
|
|
478
|
+
"name": "signer",
|
|
479
|
+
"type": "address"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"indexed": false,
|
|
483
|
+
"internalType": "uint256",
|
|
484
|
+
"name": "timestamp",
|
|
485
|
+
"type": "uint256"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"indexed": false,
|
|
489
|
+
"internalType": "uint256",
|
|
490
|
+
"name": "blockNumber",
|
|
491
|
+
"type": "uint256"
|
|
492
|
+
}
|
|
493
|
+
],
|
|
494
|
+
"name": "RemovedMinter",
|
|
495
|
+
"type": "event"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"anonymous": false,
|
|
499
|
+
"inputs": [
|
|
500
|
+
{
|
|
501
|
+
"indexed": true,
|
|
502
|
+
"internalType": "address",
|
|
503
|
+
"name": "user",
|
|
504
|
+
"type": "address"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"indexed": true,
|
|
508
|
+
"internalType": "address",
|
|
509
|
+
"name": "signer",
|
|
510
|
+
"type": "address"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"indexed": false,
|
|
514
|
+
"internalType": "uint256",
|
|
515
|
+
"name": "timestamp",
|
|
516
|
+
"type": "uint256"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"indexed": false,
|
|
520
|
+
"internalType": "uint256",
|
|
521
|
+
"name": "blockNumber",
|
|
522
|
+
"type": "uint256"
|
|
523
|
+
}
|
|
524
|
+
],
|
|
525
|
+
"name": "RemovedPaymentManager",
|
|
526
|
+
"type": "event"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"anonymous": false,
|
|
530
|
+
"inputs": [
|
|
531
|
+
{
|
|
532
|
+
"indexed": false,
|
|
533
|
+
"internalType": "uint256",
|
|
534
|
+
"name": "totalAmount",
|
|
535
|
+
"type": "uint256"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"indexed": false,
|
|
539
|
+
"internalType": "uint256",
|
|
540
|
+
"name": "slot",
|
|
541
|
+
"type": "uint256"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"indexed": false,
|
|
545
|
+
"internalType": "uint256",
|
|
546
|
+
"name": "amountPerEpoch",
|
|
547
|
+
"type": "uint256"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"indexed": false,
|
|
551
|
+
"internalType": "uint256",
|
|
552
|
+
"name": "numEpochs",
|
|
553
|
+
"type": "uint256"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"indexed": false,
|
|
557
|
+
"internalType": "uint256",
|
|
558
|
+
"name": "secondsPerEpoch",
|
|
559
|
+
"type": "uint256"
|
|
560
|
+
}
|
|
561
|
+
],
|
|
562
|
+
"name": "RevenueAdded",
|
|
563
|
+
"type": "event"
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"anonymous": false,
|
|
567
|
+
"inputs": [
|
|
568
|
+
{
|
|
569
|
+
"indexed": false,
|
|
570
|
+
"internalType": "uint256",
|
|
571
|
+
"name": "secondsPerEpoch",
|
|
572
|
+
"type": "uint256"
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"indexed": false,
|
|
576
|
+
"internalType": "uint256",
|
|
577
|
+
"name": "secondsPerSubscription",
|
|
578
|
+
"type": "uint256"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"indexed": false,
|
|
582
|
+
"internalType": "uint256",
|
|
583
|
+
"name": "trueValueSubmitTimeout",
|
|
584
|
+
"type": "uint256"
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"indexed": false,
|
|
588
|
+
"internalType": "address",
|
|
589
|
+
"name": "stakeToken",
|
|
590
|
+
"type": "address"
|
|
591
|
+
}
|
|
592
|
+
],
|
|
593
|
+
"name": "SettingChanged",
|
|
594
|
+
"type": "event"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"anonymous": false,
|
|
598
|
+
"inputs": [
|
|
599
|
+
{
|
|
600
|
+
"indexed": true,
|
|
601
|
+
"internalType": "address",
|
|
602
|
+
"name": "from",
|
|
603
|
+
"type": "address"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"indexed": true,
|
|
607
|
+
"internalType": "address",
|
|
608
|
+
"name": "to",
|
|
609
|
+
"type": "address"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"indexed": false,
|
|
613
|
+
"internalType": "uint256",
|
|
614
|
+
"name": "value",
|
|
615
|
+
"type": "uint256"
|
|
616
|
+
}
|
|
617
|
+
],
|
|
618
|
+
"name": "Transfer",
|
|
619
|
+
"type": "event"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"anonymous": false,
|
|
623
|
+
"inputs": [
|
|
624
|
+
{
|
|
625
|
+
"indexed": true,
|
|
626
|
+
"internalType": "uint256",
|
|
627
|
+
"name": "slot",
|
|
628
|
+
"type": "uint256"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"indexed": false,
|
|
632
|
+
"internalType": "bool",
|
|
633
|
+
"name": "trueValue",
|
|
634
|
+
"type": "bool"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"indexed": false,
|
|
638
|
+
"internalType": "enum ERC20Template3.Status",
|
|
639
|
+
"name": "status",
|
|
640
|
+
"type": "uint8"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"indexed": false,
|
|
644
|
+
"internalType": "uint256",
|
|
645
|
+
"name": "roundSumStakesUp",
|
|
646
|
+
"type": "uint256"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"indexed": false,
|
|
650
|
+
"internalType": "uint256",
|
|
651
|
+
"name": "roundSumStakes",
|
|
652
|
+
"type": "uint256"
|
|
653
|
+
}
|
|
654
|
+
],
|
|
655
|
+
"name": "TruevalSubmitted",
|
|
656
|
+
"type": "event"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"stateMutability": "payable",
|
|
660
|
+
"type": "fallback"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"inputs": [],
|
|
664
|
+
"name": "BASE",
|
|
665
|
+
"outputs": [
|
|
666
|
+
{
|
|
667
|
+
"internalType": "uint256",
|
|
668
|
+
"name": "",
|
|
669
|
+
"type": "uint256"
|
|
670
|
+
}
|
|
671
|
+
],
|
|
672
|
+
"stateMutability": "view",
|
|
673
|
+
"type": "function"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"inputs": [
|
|
677
|
+
{
|
|
678
|
+
"internalType": "address",
|
|
679
|
+
"name": "owner",
|
|
680
|
+
"type": "address"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"internalType": "address",
|
|
684
|
+
"name": "spender",
|
|
685
|
+
"type": "address"
|
|
686
|
+
}
|
|
687
|
+
],
|
|
688
|
+
"name": "allowance",
|
|
689
|
+
"outputs": [
|
|
690
|
+
{
|
|
691
|
+
"internalType": "uint256",
|
|
692
|
+
"name": "",
|
|
693
|
+
"type": "uint256"
|
|
694
|
+
}
|
|
695
|
+
],
|
|
696
|
+
"stateMutability": "view",
|
|
697
|
+
"type": "function"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"inputs": [
|
|
701
|
+
{
|
|
702
|
+
"internalType": "address",
|
|
703
|
+
"name": "spender",
|
|
704
|
+
"type": "address"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"internalType": "uint256",
|
|
708
|
+
"name": "amount",
|
|
709
|
+
"type": "uint256"
|
|
710
|
+
}
|
|
711
|
+
],
|
|
712
|
+
"name": "approve",
|
|
713
|
+
"outputs": [
|
|
714
|
+
{
|
|
715
|
+
"internalType": "bool",
|
|
716
|
+
"name": "",
|
|
717
|
+
"type": "bool"
|
|
718
|
+
}
|
|
719
|
+
],
|
|
720
|
+
"stateMutability": "nonpayable",
|
|
721
|
+
"type": "function"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"inputs": [
|
|
725
|
+
{
|
|
726
|
+
"internalType": "uint256",
|
|
727
|
+
"name": "",
|
|
728
|
+
"type": "uint256"
|
|
729
|
+
}
|
|
730
|
+
],
|
|
731
|
+
"name": "authERC20",
|
|
732
|
+
"outputs": [
|
|
733
|
+
{
|
|
734
|
+
"internalType": "address",
|
|
735
|
+
"name": "",
|
|
736
|
+
"type": "address"
|
|
737
|
+
}
|
|
738
|
+
],
|
|
739
|
+
"stateMutability": "view",
|
|
740
|
+
"type": "function"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"inputs": [
|
|
744
|
+
{
|
|
745
|
+
"internalType": "address",
|
|
746
|
+
"name": "account",
|
|
747
|
+
"type": "address"
|
|
748
|
+
}
|
|
749
|
+
],
|
|
750
|
+
"name": "balanceOf",
|
|
751
|
+
"outputs": [
|
|
752
|
+
{
|
|
753
|
+
"internalType": "uint256",
|
|
754
|
+
"name": "",
|
|
755
|
+
"type": "uint256"
|
|
756
|
+
}
|
|
757
|
+
],
|
|
758
|
+
"stateMutability": "view",
|
|
759
|
+
"type": "function"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"inputs": [
|
|
763
|
+
{
|
|
764
|
+
"internalType": "uint256",
|
|
765
|
+
"name": "amount",
|
|
766
|
+
"type": "uint256"
|
|
767
|
+
}
|
|
768
|
+
],
|
|
769
|
+
"name": "burn",
|
|
770
|
+
"outputs": [],
|
|
771
|
+
"stateMutability": "nonpayable",
|
|
772
|
+
"type": "function"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"inputs": [
|
|
776
|
+
{
|
|
777
|
+
"internalType": "address",
|
|
778
|
+
"name": "account",
|
|
779
|
+
"type": "address"
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"internalType": "uint256",
|
|
783
|
+
"name": "amount",
|
|
784
|
+
"type": "uint256"
|
|
785
|
+
}
|
|
786
|
+
],
|
|
787
|
+
"name": "burnFrom",
|
|
788
|
+
"outputs": [],
|
|
789
|
+
"stateMutability": "nonpayable",
|
|
790
|
+
"type": "function"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"inputs": [
|
|
794
|
+
{
|
|
795
|
+
"components": [
|
|
796
|
+
{
|
|
797
|
+
"internalType": "address",
|
|
798
|
+
"name": "consumer",
|
|
799
|
+
"type": "address"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"internalType": "uint256",
|
|
803
|
+
"name": "serviceIndex",
|
|
804
|
+
"type": "uint256"
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
"components": [
|
|
808
|
+
{
|
|
809
|
+
"internalType": "address",
|
|
810
|
+
"name": "providerFeeAddress",
|
|
811
|
+
"type": "address"
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"internalType": "address",
|
|
815
|
+
"name": "providerFeeToken",
|
|
816
|
+
"type": "address"
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"internalType": "uint256",
|
|
820
|
+
"name": "providerFeeAmount",
|
|
821
|
+
"type": "uint256"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"internalType": "uint8",
|
|
825
|
+
"name": "v",
|
|
826
|
+
"type": "uint8"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"internalType": "bytes32",
|
|
830
|
+
"name": "r",
|
|
831
|
+
"type": "bytes32"
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"internalType": "bytes32",
|
|
835
|
+
"name": "s",
|
|
836
|
+
"type": "bytes32"
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"internalType": "uint256",
|
|
840
|
+
"name": "validUntil",
|
|
841
|
+
"type": "uint256"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"internalType": "bytes",
|
|
845
|
+
"name": "providerData",
|
|
846
|
+
"type": "bytes"
|
|
847
|
+
}
|
|
848
|
+
],
|
|
849
|
+
"internalType": "struct ERC20Template3.providerFee",
|
|
850
|
+
"name": "_providerFee",
|
|
851
|
+
"type": "tuple"
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"components": [
|
|
855
|
+
{
|
|
856
|
+
"internalType": "address",
|
|
857
|
+
"name": "consumeMarketFeeAddress",
|
|
858
|
+
"type": "address"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"internalType": "address",
|
|
862
|
+
"name": "consumeMarketFeeToken",
|
|
863
|
+
"type": "address"
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"internalType": "uint256",
|
|
867
|
+
"name": "consumeMarketFeeAmount",
|
|
868
|
+
"type": "uint256"
|
|
869
|
+
}
|
|
870
|
+
],
|
|
871
|
+
"internalType": "struct ERC20Template3.consumeMarketFee",
|
|
872
|
+
"name": "_consumeMarketFee",
|
|
873
|
+
"type": "tuple"
|
|
874
|
+
}
|
|
875
|
+
],
|
|
876
|
+
"internalType": "struct ERC20Template3.OrderParams",
|
|
877
|
+
"name": "_orderParams",
|
|
878
|
+
"type": "tuple"
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"components": [
|
|
882
|
+
{
|
|
883
|
+
"internalType": "address",
|
|
884
|
+
"name": "exchangeContract",
|
|
885
|
+
"type": "address"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"internalType": "bytes32",
|
|
889
|
+
"name": "exchangeId",
|
|
890
|
+
"type": "bytes32"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"internalType": "uint256",
|
|
894
|
+
"name": "maxBaseTokenAmount",
|
|
895
|
+
"type": "uint256"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"internalType": "uint256",
|
|
899
|
+
"name": "swapMarketFee",
|
|
900
|
+
"type": "uint256"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"internalType": "address",
|
|
904
|
+
"name": "marketFeeAddress",
|
|
905
|
+
"type": "address"
|
|
906
|
+
}
|
|
907
|
+
],
|
|
908
|
+
"internalType": "struct ERC20Template3.FreParams",
|
|
909
|
+
"name": "_freParams",
|
|
910
|
+
"type": "tuple"
|
|
911
|
+
}
|
|
912
|
+
],
|
|
913
|
+
"name": "buyFromFreAndOrder",
|
|
914
|
+
"outputs": [],
|
|
915
|
+
"stateMutability": "nonpayable",
|
|
916
|
+
"type": "function"
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"inputs": [],
|
|
920
|
+
"name": "cap",
|
|
921
|
+
"outputs": [
|
|
922
|
+
{
|
|
923
|
+
"internalType": "uint256",
|
|
924
|
+
"name": "",
|
|
925
|
+
"type": "uint256"
|
|
926
|
+
}
|
|
927
|
+
],
|
|
928
|
+
"stateMutability": "view",
|
|
929
|
+
"type": "function"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"inputs": [],
|
|
933
|
+
"name": "cleanFrom721",
|
|
934
|
+
"outputs": [],
|
|
935
|
+
"stateMutability": "nonpayable",
|
|
936
|
+
"type": "function"
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
"inputs": [],
|
|
940
|
+
"name": "cleanPermissions",
|
|
941
|
+
"outputs": [],
|
|
942
|
+
"stateMutability": "nonpayable",
|
|
943
|
+
"type": "function"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"inputs": [
|
|
947
|
+
{
|
|
948
|
+
"internalType": "address",
|
|
949
|
+
"name": "fixedPriceAddress",
|
|
950
|
+
"type": "address"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"internalType": "address[]",
|
|
954
|
+
"name": "addresses",
|
|
955
|
+
"type": "address[]"
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"internalType": "uint256[]",
|
|
959
|
+
"name": "uints",
|
|
960
|
+
"type": "uint256[]"
|
|
961
|
+
}
|
|
962
|
+
],
|
|
963
|
+
"name": "createFixedRate",
|
|
964
|
+
"outputs": [
|
|
965
|
+
{
|
|
966
|
+
"internalType": "bytes32",
|
|
967
|
+
"name": "exchangeId",
|
|
968
|
+
"type": "bytes32"
|
|
969
|
+
}
|
|
970
|
+
],
|
|
971
|
+
"stateMutability": "nonpayable",
|
|
972
|
+
"type": "function"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"inputs": [],
|
|
976
|
+
"name": "curEpoch",
|
|
977
|
+
"outputs": [
|
|
978
|
+
{
|
|
979
|
+
"internalType": "uint256",
|
|
980
|
+
"name": "",
|
|
981
|
+
"type": "uint256"
|
|
982
|
+
}
|
|
983
|
+
],
|
|
984
|
+
"stateMutability": "view",
|
|
985
|
+
"type": "function"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"inputs": [],
|
|
989
|
+
"name": "decimals",
|
|
990
|
+
"outputs": [
|
|
991
|
+
{
|
|
992
|
+
"internalType": "uint8",
|
|
993
|
+
"name": "",
|
|
994
|
+
"type": "uint8"
|
|
995
|
+
}
|
|
996
|
+
],
|
|
997
|
+
"stateMutability": "pure",
|
|
998
|
+
"type": "function"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"inputs": [
|
|
1002
|
+
{
|
|
1003
|
+
"internalType": "address",
|
|
1004
|
+
"name": "spender",
|
|
1005
|
+
"type": "address"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"internalType": "uint256",
|
|
1009
|
+
"name": "subtractedValue",
|
|
1010
|
+
"type": "uint256"
|
|
1011
|
+
}
|
|
1012
|
+
],
|
|
1013
|
+
"name": "decreaseAllowance",
|
|
1014
|
+
"outputs": [
|
|
1015
|
+
{
|
|
1016
|
+
"internalType": "bool",
|
|
1017
|
+
"name": "",
|
|
1018
|
+
"type": "bool"
|
|
1019
|
+
}
|
|
1020
|
+
],
|
|
1021
|
+
"stateMutability": "nonpayable",
|
|
1022
|
+
"type": "function"
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"inputs": [
|
|
1026
|
+
{
|
|
1027
|
+
"internalType": "uint256",
|
|
1028
|
+
"name": "",
|
|
1029
|
+
"type": "uint256"
|
|
1030
|
+
}
|
|
1031
|
+
],
|
|
1032
|
+
"name": "epochStatus",
|
|
1033
|
+
"outputs": [
|
|
1034
|
+
{
|
|
1035
|
+
"internalType": "enum ERC20Template3.Status",
|
|
1036
|
+
"name": "",
|
|
1037
|
+
"type": "uint8"
|
|
1038
|
+
}
|
|
1039
|
+
],
|
|
1040
|
+
"stateMutability": "view",
|
|
1041
|
+
"type": "function"
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"inputs": [],
|
|
1045
|
+
"name": "feeCollector",
|
|
1046
|
+
"outputs": [
|
|
1047
|
+
{
|
|
1048
|
+
"internalType": "address",
|
|
1049
|
+
"name": "",
|
|
1050
|
+
"type": "address"
|
|
1051
|
+
}
|
|
1052
|
+
],
|
|
1053
|
+
"stateMutability": "view",
|
|
1054
|
+
"type": "function"
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"inputs": [
|
|
1058
|
+
{
|
|
1059
|
+
"internalType": "uint256",
|
|
1060
|
+
"name": "epoch_start",
|
|
1061
|
+
"type": "uint256"
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"components": [
|
|
1065
|
+
{
|
|
1066
|
+
"internalType": "address",
|
|
1067
|
+
"name": "userAddress",
|
|
1068
|
+
"type": "address"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"internalType": "uint8",
|
|
1072
|
+
"name": "v",
|
|
1073
|
+
"type": "uint8"
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"internalType": "bytes32",
|
|
1077
|
+
"name": "r",
|
|
1078
|
+
"type": "bytes32"
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"internalType": "bytes32",
|
|
1082
|
+
"name": "s",
|
|
1083
|
+
"type": "bytes32"
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"internalType": "uint256",
|
|
1087
|
+
"name": "validUntil",
|
|
1088
|
+
"type": "uint256"
|
|
1089
|
+
}
|
|
1090
|
+
],
|
|
1091
|
+
"internalType": "struct ERC20Template3.userAuth",
|
|
1092
|
+
"name": "_userAuth",
|
|
1093
|
+
"type": "tuple"
|
|
1094
|
+
}
|
|
1095
|
+
],
|
|
1096
|
+
"name": "getAggPredval",
|
|
1097
|
+
"outputs": [
|
|
1098
|
+
{
|
|
1099
|
+
"internalType": "uint256",
|
|
1100
|
+
"name": "",
|
|
1101
|
+
"type": "uint256"
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"internalType": "uint256",
|
|
1105
|
+
"name": "",
|
|
1106
|
+
"type": "uint256"
|
|
1107
|
+
}
|
|
1108
|
+
],
|
|
1109
|
+
"stateMutability": "view",
|
|
1110
|
+
"type": "function"
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"inputs": [],
|
|
1114
|
+
"name": "getDispensers",
|
|
1115
|
+
"outputs": [
|
|
1116
|
+
{
|
|
1117
|
+
"internalType": "address[]",
|
|
1118
|
+
"name": "",
|
|
1119
|
+
"type": "address[]"
|
|
1120
|
+
}
|
|
1121
|
+
],
|
|
1122
|
+
"stateMutability": "view",
|
|
1123
|
+
"type": "function"
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"inputs": [],
|
|
1127
|
+
"name": "getERC721Address",
|
|
1128
|
+
"outputs": [
|
|
1129
|
+
{
|
|
1130
|
+
"internalType": "address",
|
|
1131
|
+
"name": "",
|
|
1132
|
+
"type": "address"
|
|
1133
|
+
}
|
|
1134
|
+
],
|
|
1135
|
+
"stateMutability": "view",
|
|
1136
|
+
"type": "function"
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"inputs": [],
|
|
1140
|
+
"name": "getFixedRates",
|
|
1141
|
+
"outputs": [
|
|
1142
|
+
{
|
|
1143
|
+
"components": [
|
|
1144
|
+
{
|
|
1145
|
+
"internalType": "address",
|
|
1146
|
+
"name": "contractAddress",
|
|
1147
|
+
"type": "address"
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"internalType": "bytes32",
|
|
1151
|
+
"name": "id",
|
|
1152
|
+
"type": "bytes32"
|
|
1153
|
+
}
|
|
1154
|
+
],
|
|
1155
|
+
"internalType": "struct ERC20Template3.fixedRate[]",
|
|
1156
|
+
"name": "",
|
|
1157
|
+
"type": "tuple[]"
|
|
1158
|
+
}
|
|
1159
|
+
],
|
|
1160
|
+
"stateMutability": "view",
|
|
1161
|
+
"type": "function"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"inputs": [],
|
|
1165
|
+
"name": "getId",
|
|
1166
|
+
"outputs": [
|
|
1167
|
+
{
|
|
1168
|
+
"internalType": "uint8",
|
|
1169
|
+
"name": "",
|
|
1170
|
+
"type": "uint8"
|
|
1171
|
+
}
|
|
1172
|
+
],
|
|
1173
|
+
"stateMutability": "pure",
|
|
1174
|
+
"type": "function"
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
"inputs": [],
|
|
1178
|
+
"name": "getPaymentCollector",
|
|
1179
|
+
"outputs": [
|
|
1180
|
+
{
|
|
1181
|
+
"internalType": "address",
|
|
1182
|
+
"name": "",
|
|
1183
|
+
"type": "address"
|
|
1184
|
+
}
|
|
1185
|
+
],
|
|
1186
|
+
"stateMutability": "view",
|
|
1187
|
+
"type": "function"
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
"inputs": [
|
|
1191
|
+
{
|
|
1192
|
+
"internalType": "address",
|
|
1193
|
+
"name": "user",
|
|
1194
|
+
"type": "address"
|
|
1195
|
+
}
|
|
1196
|
+
],
|
|
1197
|
+
"name": "getPermissions",
|
|
1198
|
+
"outputs": [
|
|
1199
|
+
{
|
|
1200
|
+
"components": [
|
|
1201
|
+
{
|
|
1202
|
+
"internalType": "bool",
|
|
1203
|
+
"name": "minter",
|
|
1204
|
+
"type": "bool"
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"internalType": "bool",
|
|
1208
|
+
"name": "paymentManager",
|
|
1209
|
+
"type": "bool"
|
|
1210
|
+
}
|
|
1211
|
+
],
|
|
1212
|
+
"internalType": "struct ERC20Roles.RolesERC20",
|
|
1213
|
+
"name": "",
|
|
1214
|
+
"type": "tuple"
|
|
1215
|
+
}
|
|
1216
|
+
],
|
|
1217
|
+
"stateMutability": "view",
|
|
1218
|
+
"type": "function"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"inputs": [
|
|
1222
|
+
{
|
|
1223
|
+
"internalType": "uint256",
|
|
1224
|
+
"name": "epoch_start",
|
|
1225
|
+
"type": "uint256"
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"internalType": "address",
|
|
1229
|
+
"name": "predictoor",
|
|
1230
|
+
"type": "address"
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"components": [
|
|
1234
|
+
{
|
|
1235
|
+
"internalType": "address",
|
|
1236
|
+
"name": "userAddress",
|
|
1237
|
+
"type": "address"
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"internalType": "uint8",
|
|
1241
|
+
"name": "v",
|
|
1242
|
+
"type": "uint8"
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"internalType": "bytes32",
|
|
1246
|
+
"name": "r",
|
|
1247
|
+
"type": "bytes32"
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"internalType": "bytes32",
|
|
1251
|
+
"name": "s",
|
|
1252
|
+
"type": "bytes32"
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"internalType": "uint256",
|
|
1256
|
+
"name": "validUntil",
|
|
1257
|
+
"type": "uint256"
|
|
1258
|
+
}
|
|
1259
|
+
],
|
|
1260
|
+
"internalType": "struct ERC20Template3.userAuth",
|
|
1261
|
+
"name": "_userAuth",
|
|
1262
|
+
"type": "tuple"
|
|
1263
|
+
}
|
|
1264
|
+
],
|
|
1265
|
+
"name": "getPrediction",
|
|
1266
|
+
"outputs": [
|
|
1267
|
+
{
|
|
1268
|
+
"components": [
|
|
1269
|
+
{
|
|
1270
|
+
"internalType": "bool",
|
|
1271
|
+
"name": "predictedValue",
|
|
1272
|
+
"type": "bool"
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
"internalType": "uint256",
|
|
1276
|
+
"name": "stake",
|
|
1277
|
+
"type": "uint256"
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
"internalType": "address",
|
|
1281
|
+
"name": "predictoor",
|
|
1282
|
+
"type": "address"
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
"internalType": "bool",
|
|
1286
|
+
"name": "paid",
|
|
1287
|
+
"type": "bool"
|
|
1288
|
+
}
|
|
1289
|
+
],
|
|
1290
|
+
"internalType": "struct ERC20Template3.Prediction",
|
|
1291
|
+
"name": "prediction",
|
|
1292
|
+
"type": "tuple"
|
|
1293
|
+
}
|
|
1294
|
+
],
|
|
1295
|
+
"stateMutability": "view",
|
|
1296
|
+
"type": "function"
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
"inputs": [],
|
|
1300
|
+
"name": "getPublishingMarketFee",
|
|
1301
|
+
"outputs": [
|
|
1302
|
+
{
|
|
1303
|
+
"internalType": "address",
|
|
1304
|
+
"name": "",
|
|
1305
|
+
"type": "address"
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"internalType": "address",
|
|
1309
|
+
"name": "",
|
|
1310
|
+
"type": "address"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"internalType": "uint256",
|
|
1314
|
+
"name": "",
|
|
1315
|
+
"type": "uint256"
|
|
1316
|
+
}
|
|
1317
|
+
],
|
|
1318
|
+
"stateMutability": "view",
|
|
1319
|
+
"type": "function"
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"inputs": [
|
|
1323
|
+
{
|
|
1324
|
+
"internalType": "uint256",
|
|
1325
|
+
"name": "epoch_start",
|
|
1326
|
+
"type": "uint256"
|
|
1327
|
+
}
|
|
1328
|
+
],
|
|
1329
|
+
"name": "getTotalStake",
|
|
1330
|
+
"outputs": [
|
|
1331
|
+
{
|
|
1332
|
+
"internalType": "uint256",
|
|
1333
|
+
"name": "",
|
|
1334
|
+
"type": "uint256"
|
|
1335
|
+
}
|
|
1336
|
+
],
|
|
1337
|
+
"stateMutability": "view",
|
|
1338
|
+
"type": "function"
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
"inputs": [
|
|
1342
|
+
{
|
|
1343
|
+
"internalType": "uint256",
|
|
1344
|
+
"name": "epoch_start",
|
|
1345
|
+
"type": "uint256"
|
|
1346
|
+
}
|
|
1347
|
+
],
|
|
1348
|
+
"name": "getsubscriptionRevenueAtEpoch",
|
|
1349
|
+
"outputs": [
|
|
1350
|
+
{
|
|
1351
|
+
"internalType": "uint256",
|
|
1352
|
+
"name": "",
|
|
1353
|
+
"type": "uint256"
|
|
1354
|
+
}
|
|
1355
|
+
],
|
|
1356
|
+
"stateMutability": "view",
|
|
1357
|
+
"type": "function"
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"inputs": [
|
|
1361
|
+
{
|
|
1362
|
+
"internalType": "address",
|
|
1363
|
+
"name": "spender",
|
|
1364
|
+
"type": "address"
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
"internalType": "uint256",
|
|
1368
|
+
"name": "addedValue",
|
|
1369
|
+
"type": "uint256"
|
|
1370
|
+
}
|
|
1371
|
+
],
|
|
1372
|
+
"name": "increaseAllowance",
|
|
1373
|
+
"outputs": [
|
|
1374
|
+
{
|
|
1375
|
+
"internalType": "bool",
|
|
1376
|
+
"name": "",
|
|
1377
|
+
"type": "bool"
|
|
1378
|
+
}
|
|
1379
|
+
],
|
|
1380
|
+
"stateMutability": "nonpayable",
|
|
1381
|
+
"type": "function"
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
"inputs": [
|
|
1385
|
+
{
|
|
1386
|
+
"internalType": "string[]",
|
|
1387
|
+
"name": "strings_",
|
|
1388
|
+
"type": "string[]"
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"internalType": "address[]",
|
|
1392
|
+
"name": "addresses_",
|
|
1393
|
+
"type": "address[]"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"internalType": "address[]",
|
|
1397
|
+
"name": "factoryAddresses_",
|
|
1398
|
+
"type": "address[]"
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
"internalType": "uint256[]",
|
|
1402
|
+
"name": "uints_",
|
|
1403
|
+
"type": "uint256[]"
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"internalType": "bytes[]",
|
|
1407
|
+
"name": "bytes_",
|
|
1408
|
+
"type": "bytes[]"
|
|
1409
|
+
}
|
|
1410
|
+
],
|
|
1411
|
+
"name": "initialize",
|
|
1412
|
+
"outputs": [
|
|
1413
|
+
{
|
|
1414
|
+
"internalType": "bool",
|
|
1415
|
+
"name": "",
|
|
1416
|
+
"type": "bool"
|
|
1417
|
+
}
|
|
1418
|
+
],
|
|
1419
|
+
"stateMutability": "nonpayable",
|
|
1420
|
+
"type": "function"
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"inputs": [
|
|
1424
|
+
{
|
|
1425
|
+
"internalType": "address",
|
|
1426
|
+
"name": "user",
|
|
1427
|
+
"type": "address"
|
|
1428
|
+
}
|
|
1429
|
+
],
|
|
1430
|
+
"name": "isERC20Deployer",
|
|
1431
|
+
"outputs": [
|
|
1432
|
+
{
|
|
1433
|
+
"internalType": "bool",
|
|
1434
|
+
"name": "",
|
|
1435
|
+
"type": "bool"
|
|
1436
|
+
}
|
|
1437
|
+
],
|
|
1438
|
+
"stateMutability": "view",
|
|
1439
|
+
"type": "function"
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"inputs": [],
|
|
1443
|
+
"name": "isInitialized",
|
|
1444
|
+
"outputs": [
|
|
1445
|
+
{
|
|
1446
|
+
"internalType": "bool",
|
|
1447
|
+
"name": "",
|
|
1448
|
+
"type": "bool"
|
|
1449
|
+
}
|
|
1450
|
+
],
|
|
1451
|
+
"stateMutability": "view",
|
|
1452
|
+
"type": "function"
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
"inputs": [
|
|
1456
|
+
{
|
|
1457
|
+
"internalType": "address",
|
|
1458
|
+
"name": "account",
|
|
1459
|
+
"type": "address"
|
|
1460
|
+
}
|
|
1461
|
+
],
|
|
1462
|
+
"name": "isMinter",
|
|
1463
|
+
"outputs": [
|
|
1464
|
+
{
|
|
1465
|
+
"internalType": "bool",
|
|
1466
|
+
"name": "",
|
|
1467
|
+
"type": "bool"
|
|
1468
|
+
}
|
|
1469
|
+
],
|
|
1470
|
+
"stateMutability": "view",
|
|
1471
|
+
"type": "function"
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
"inputs": [
|
|
1475
|
+
{
|
|
1476
|
+
"internalType": "address",
|
|
1477
|
+
"name": "user",
|
|
1478
|
+
"type": "address"
|
|
1479
|
+
}
|
|
1480
|
+
],
|
|
1481
|
+
"name": "isValidSubscription",
|
|
1482
|
+
"outputs": [
|
|
1483
|
+
{
|
|
1484
|
+
"internalType": "bool",
|
|
1485
|
+
"name": "",
|
|
1486
|
+
"type": "bool"
|
|
1487
|
+
}
|
|
1488
|
+
],
|
|
1489
|
+
"stateMutability": "view",
|
|
1490
|
+
"type": "function"
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"inputs": [
|
|
1494
|
+
{
|
|
1495
|
+
"internalType": "address",
|
|
1496
|
+
"name": "account",
|
|
1497
|
+
"type": "address"
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
"internalType": "uint256",
|
|
1501
|
+
"name": "value",
|
|
1502
|
+
"type": "uint256"
|
|
1503
|
+
}
|
|
1504
|
+
],
|
|
1505
|
+
"name": "mint",
|
|
1506
|
+
"outputs": [],
|
|
1507
|
+
"stateMutability": "nonpayable",
|
|
1508
|
+
"type": "function"
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"inputs": [],
|
|
1512
|
+
"name": "name",
|
|
1513
|
+
"outputs": [
|
|
1514
|
+
{
|
|
1515
|
+
"internalType": "string",
|
|
1516
|
+
"name": "",
|
|
1517
|
+
"type": "string"
|
|
1518
|
+
}
|
|
1519
|
+
],
|
|
1520
|
+
"stateMutability": "view",
|
|
1521
|
+
"type": "function"
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
"inputs": [
|
|
1525
|
+
{
|
|
1526
|
+
"internalType": "address",
|
|
1527
|
+
"name": "",
|
|
1528
|
+
"type": "address"
|
|
1529
|
+
}
|
|
1530
|
+
],
|
|
1531
|
+
"name": "nonces",
|
|
1532
|
+
"outputs": [
|
|
1533
|
+
{
|
|
1534
|
+
"internalType": "uint256",
|
|
1535
|
+
"name": "",
|
|
1536
|
+
"type": "uint256"
|
|
1537
|
+
}
|
|
1538
|
+
],
|
|
1539
|
+
"stateMutability": "view",
|
|
1540
|
+
"type": "function"
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"inputs": [],
|
|
1544
|
+
"name": "pausePredictions",
|
|
1545
|
+
"outputs": [],
|
|
1546
|
+
"stateMutability": "nonpayable",
|
|
1547
|
+
"type": "function"
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"inputs": [],
|
|
1551
|
+
"name": "paused",
|
|
1552
|
+
"outputs": [
|
|
1553
|
+
{
|
|
1554
|
+
"internalType": "bool",
|
|
1555
|
+
"name": "",
|
|
1556
|
+
"type": "bool"
|
|
1557
|
+
}
|
|
1558
|
+
],
|
|
1559
|
+
"stateMutability": "view",
|
|
1560
|
+
"type": "function"
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
"inputs": [
|
|
1564
|
+
{
|
|
1565
|
+
"internalType": "uint256",
|
|
1566
|
+
"name": "epoch_start",
|
|
1567
|
+
"type": "uint256"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"internalType": "address",
|
|
1571
|
+
"name": "predictoor_addr",
|
|
1572
|
+
"type": "address"
|
|
1573
|
+
}
|
|
1574
|
+
],
|
|
1575
|
+
"name": "payout",
|
|
1576
|
+
"outputs": [],
|
|
1577
|
+
"stateMutability": "nonpayable",
|
|
1578
|
+
"type": "function"
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"inputs": [
|
|
1582
|
+
{
|
|
1583
|
+
"internalType": "uint256[]",
|
|
1584
|
+
"name": "blocknums",
|
|
1585
|
+
"type": "uint256[]"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"internalType": "address",
|
|
1589
|
+
"name": "predictoor_addr",
|
|
1590
|
+
"type": "address"
|
|
1591
|
+
}
|
|
1592
|
+
],
|
|
1593
|
+
"name": "payoutMultiple",
|
|
1594
|
+
"outputs": [],
|
|
1595
|
+
"stateMutability": "nonpayable",
|
|
1596
|
+
"type": "function"
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"inputs": [
|
|
1600
|
+
{
|
|
1601
|
+
"internalType": "address",
|
|
1602
|
+
"name": "",
|
|
1603
|
+
"type": "address"
|
|
1604
|
+
}
|
|
1605
|
+
],
|
|
1606
|
+
"name": "permissions",
|
|
1607
|
+
"outputs": [
|
|
1608
|
+
{
|
|
1609
|
+
"internalType": "bool",
|
|
1610
|
+
"name": "minter",
|
|
1611
|
+
"type": "bool"
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
"internalType": "bool",
|
|
1615
|
+
"name": "paymentManager",
|
|
1616
|
+
"type": "bool"
|
|
1617
|
+
}
|
|
1618
|
+
],
|
|
1619
|
+
"stateMutability": "view",
|
|
1620
|
+
"type": "function"
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
"inputs": [
|
|
1624
|
+
{
|
|
1625
|
+
"internalType": "uint256",
|
|
1626
|
+
"name": "epoch_start",
|
|
1627
|
+
"type": "uint256"
|
|
1628
|
+
}
|
|
1629
|
+
],
|
|
1630
|
+
"name": "redeemUnusedSlotRevenue",
|
|
1631
|
+
"outputs": [],
|
|
1632
|
+
"stateMutability": "nonpayable",
|
|
1633
|
+
"type": "function"
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"inputs": [
|
|
1637
|
+
{
|
|
1638
|
+
"internalType": "address",
|
|
1639
|
+
"name": "_minter",
|
|
1640
|
+
"type": "address"
|
|
1641
|
+
}
|
|
1642
|
+
],
|
|
1643
|
+
"name": "removeMinter",
|
|
1644
|
+
"outputs": [],
|
|
1645
|
+
"stateMutability": "nonpayable",
|
|
1646
|
+
"type": "function"
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"inputs": [],
|
|
1650
|
+
"name": "router",
|
|
1651
|
+
"outputs": [
|
|
1652
|
+
{
|
|
1653
|
+
"internalType": "address",
|
|
1654
|
+
"name": "",
|
|
1655
|
+
"type": "address"
|
|
1656
|
+
}
|
|
1657
|
+
],
|
|
1658
|
+
"stateMutability": "view",
|
|
1659
|
+
"type": "function"
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
"inputs": [],
|
|
1663
|
+
"name": "secondsPerEpoch",
|
|
1664
|
+
"outputs": [
|
|
1665
|
+
{
|
|
1666
|
+
"internalType": "uint256",
|
|
1667
|
+
"name": "",
|
|
1668
|
+
"type": "uint256"
|
|
1669
|
+
}
|
|
1670
|
+
],
|
|
1671
|
+
"stateMutability": "view",
|
|
1672
|
+
"type": "function"
|
|
1673
|
+
},
|
|
1674
|
+
{
|
|
1675
|
+
"inputs": [],
|
|
1676
|
+
"name": "secondsPerSubscription",
|
|
1677
|
+
"outputs": [
|
|
1678
|
+
{
|
|
1679
|
+
"internalType": "uint256",
|
|
1680
|
+
"name": "",
|
|
1681
|
+
"type": "uint256"
|
|
1682
|
+
}
|
|
1683
|
+
],
|
|
1684
|
+
"stateMutability": "view",
|
|
1685
|
+
"type": "function"
|
|
1686
|
+
},
|
|
1687
|
+
{
|
|
1688
|
+
"inputs": [
|
|
1689
|
+
{
|
|
1690
|
+
"internalType": "address",
|
|
1691
|
+
"name": "_newFeeCollector",
|
|
1692
|
+
"type": "address"
|
|
1693
|
+
}
|
|
1694
|
+
],
|
|
1695
|
+
"name": "setFeeCollector",
|
|
1696
|
+
"outputs": [],
|
|
1697
|
+
"stateMutability": "nonpayable",
|
|
1698
|
+
"type": "function"
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
"inputs": [
|
|
1702
|
+
{
|
|
1703
|
+
"internalType": "address",
|
|
1704
|
+
"name": "_newPaymentCollector",
|
|
1705
|
+
"type": "address"
|
|
1706
|
+
}
|
|
1707
|
+
],
|
|
1708
|
+
"name": "setPaymentCollector",
|
|
1709
|
+
"outputs": [],
|
|
1710
|
+
"stateMutability": "nonpayable",
|
|
1711
|
+
"type": "function"
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"inputs": [
|
|
1715
|
+
{
|
|
1716
|
+
"internalType": "address",
|
|
1717
|
+
"name": "_publishMarketFeeAddress",
|
|
1718
|
+
"type": "address"
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"internalType": "address",
|
|
1722
|
+
"name": "_publishMarketFeeToken",
|
|
1723
|
+
"type": "address"
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"internalType": "uint256",
|
|
1727
|
+
"name": "_publishMarketFeeAmount",
|
|
1728
|
+
"type": "uint256"
|
|
1729
|
+
}
|
|
1730
|
+
],
|
|
1731
|
+
"name": "setPublishingMarketFee",
|
|
1732
|
+
"outputs": [],
|
|
1733
|
+
"stateMutability": "nonpayable",
|
|
1734
|
+
"type": "function"
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
"inputs": [
|
|
1738
|
+
{
|
|
1739
|
+
"internalType": "uint256",
|
|
1740
|
+
"name": "prediction_ts",
|
|
1741
|
+
"type": "uint256"
|
|
1742
|
+
}
|
|
1743
|
+
],
|
|
1744
|
+
"name": "soonestEpochToPredict",
|
|
1745
|
+
"outputs": [
|
|
1746
|
+
{
|
|
1747
|
+
"internalType": "uint256",
|
|
1748
|
+
"name": "",
|
|
1749
|
+
"type": "uint256"
|
|
1750
|
+
}
|
|
1751
|
+
],
|
|
1752
|
+
"stateMutability": "view",
|
|
1753
|
+
"type": "function"
|
|
1754
|
+
},
|
|
1755
|
+
{
|
|
1756
|
+
"inputs": [],
|
|
1757
|
+
"name": "stakeToken",
|
|
1758
|
+
"outputs": [
|
|
1759
|
+
{
|
|
1760
|
+
"internalType": "address",
|
|
1761
|
+
"name": "",
|
|
1762
|
+
"type": "address"
|
|
1763
|
+
}
|
|
1764
|
+
],
|
|
1765
|
+
"stateMutability": "view",
|
|
1766
|
+
"type": "function"
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
"inputs": [
|
|
1770
|
+
{
|
|
1771
|
+
"internalType": "address",
|
|
1772
|
+
"name": "consumer",
|
|
1773
|
+
"type": "address"
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"internalType": "uint256",
|
|
1777
|
+
"name": "serviceIndex",
|
|
1778
|
+
"type": "uint256"
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"components": [
|
|
1782
|
+
{
|
|
1783
|
+
"internalType": "address",
|
|
1784
|
+
"name": "providerFeeAddress",
|
|
1785
|
+
"type": "address"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"internalType": "address",
|
|
1789
|
+
"name": "providerFeeToken",
|
|
1790
|
+
"type": "address"
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"internalType": "uint256",
|
|
1794
|
+
"name": "providerFeeAmount",
|
|
1795
|
+
"type": "uint256"
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
"internalType": "uint8",
|
|
1799
|
+
"name": "v",
|
|
1800
|
+
"type": "uint8"
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
"internalType": "bytes32",
|
|
1804
|
+
"name": "r",
|
|
1805
|
+
"type": "bytes32"
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
"internalType": "bytes32",
|
|
1809
|
+
"name": "s",
|
|
1810
|
+
"type": "bytes32"
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
"internalType": "uint256",
|
|
1814
|
+
"name": "validUntil",
|
|
1815
|
+
"type": "uint256"
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
"internalType": "bytes",
|
|
1819
|
+
"name": "providerData",
|
|
1820
|
+
"type": "bytes"
|
|
1821
|
+
}
|
|
1822
|
+
],
|
|
1823
|
+
"internalType": "struct ERC20Template3.providerFee",
|
|
1824
|
+
"name": "_providerFee",
|
|
1825
|
+
"type": "tuple"
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"components": [
|
|
1829
|
+
{
|
|
1830
|
+
"internalType": "address",
|
|
1831
|
+
"name": "consumeMarketFeeAddress",
|
|
1832
|
+
"type": "address"
|
|
1833
|
+
},
|
|
1834
|
+
{
|
|
1835
|
+
"internalType": "address",
|
|
1836
|
+
"name": "consumeMarketFeeToken",
|
|
1837
|
+
"type": "address"
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"internalType": "uint256",
|
|
1841
|
+
"name": "consumeMarketFeeAmount",
|
|
1842
|
+
"type": "uint256"
|
|
1843
|
+
}
|
|
1844
|
+
],
|
|
1845
|
+
"internalType": "struct ERC20Template3.consumeMarketFee",
|
|
1846
|
+
"name": "_consumeMarketFee",
|
|
1847
|
+
"type": "tuple"
|
|
1848
|
+
}
|
|
1849
|
+
],
|
|
1850
|
+
"name": "startOrder",
|
|
1851
|
+
"outputs": [],
|
|
1852
|
+
"stateMutability": "nonpayable",
|
|
1853
|
+
"type": "function"
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
"inputs": [
|
|
1857
|
+
{
|
|
1858
|
+
"internalType": "bool",
|
|
1859
|
+
"name": "predictedValue",
|
|
1860
|
+
"type": "bool"
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"internalType": "uint256",
|
|
1864
|
+
"name": "stake",
|
|
1865
|
+
"type": "uint256"
|
|
1866
|
+
},
|
|
1867
|
+
{
|
|
1868
|
+
"internalType": "uint256",
|
|
1869
|
+
"name": "epoch_start",
|
|
1870
|
+
"type": "uint256"
|
|
1871
|
+
}
|
|
1872
|
+
],
|
|
1873
|
+
"name": "submitPredval",
|
|
1874
|
+
"outputs": [],
|
|
1875
|
+
"stateMutability": "nonpayable",
|
|
1876
|
+
"type": "function"
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
"inputs": [
|
|
1880
|
+
{
|
|
1881
|
+
"internalType": "uint256",
|
|
1882
|
+
"name": "epoch_start",
|
|
1883
|
+
"type": "uint256"
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
"internalType": "bool",
|
|
1887
|
+
"name": "trueValue",
|
|
1888
|
+
"type": "bool"
|
|
1889
|
+
},
|
|
1890
|
+
{
|
|
1891
|
+
"internalType": "bool",
|
|
1892
|
+
"name": "cancelRound",
|
|
1893
|
+
"type": "bool"
|
|
1894
|
+
}
|
|
1895
|
+
],
|
|
1896
|
+
"name": "submitTrueVal",
|
|
1897
|
+
"outputs": [],
|
|
1898
|
+
"stateMutability": "nonpayable",
|
|
1899
|
+
"type": "function"
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
"inputs": [
|
|
1903
|
+
{
|
|
1904
|
+
"internalType": "uint256",
|
|
1905
|
+
"name": "epoch_start",
|
|
1906
|
+
"type": "uint256"
|
|
1907
|
+
},
|
|
1908
|
+
{
|
|
1909
|
+
"internalType": "address",
|
|
1910
|
+
"name": "predictoor",
|
|
1911
|
+
"type": "address"
|
|
1912
|
+
}
|
|
1913
|
+
],
|
|
1914
|
+
"name": "submittedPredval",
|
|
1915
|
+
"outputs": [
|
|
1916
|
+
{
|
|
1917
|
+
"internalType": "bool",
|
|
1918
|
+
"name": "",
|
|
1919
|
+
"type": "bool"
|
|
1920
|
+
}
|
|
1921
|
+
],
|
|
1922
|
+
"stateMutability": "view",
|
|
1923
|
+
"type": "function"
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"inputs": [
|
|
1927
|
+
{
|
|
1928
|
+
"internalType": "address",
|
|
1929
|
+
"name": "",
|
|
1930
|
+
"type": "address"
|
|
1931
|
+
}
|
|
1932
|
+
],
|
|
1933
|
+
"name": "subscriptions",
|
|
1934
|
+
"outputs": [
|
|
1935
|
+
{
|
|
1936
|
+
"internalType": "address",
|
|
1937
|
+
"name": "user",
|
|
1938
|
+
"type": "address"
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"internalType": "uint256",
|
|
1942
|
+
"name": "expires",
|
|
1943
|
+
"type": "uint256"
|
|
1944
|
+
}
|
|
1945
|
+
],
|
|
1946
|
+
"stateMutability": "view",
|
|
1947
|
+
"type": "function"
|
|
1948
|
+
},
|
|
1949
|
+
{
|
|
1950
|
+
"inputs": [],
|
|
1951
|
+
"name": "symbol",
|
|
1952
|
+
"outputs": [
|
|
1953
|
+
{
|
|
1954
|
+
"internalType": "string",
|
|
1955
|
+
"name": "",
|
|
1956
|
+
"type": "string"
|
|
1957
|
+
}
|
|
1958
|
+
],
|
|
1959
|
+
"stateMutability": "view",
|
|
1960
|
+
"type": "function"
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
"inputs": [
|
|
1964
|
+
{
|
|
1965
|
+
"internalType": "uint256",
|
|
1966
|
+
"name": "_timestamp",
|
|
1967
|
+
"type": "uint256"
|
|
1968
|
+
}
|
|
1969
|
+
],
|
|
1970
|
+
"name": "toEpochStart",
|
|
1971
|
+
"outputs": [
|
|
1972
|
+
{
|
|
1973
|
+
"internalType": "uint256",
|
|
1974
|
+
"name": "",
|
|
1975
|
+
"type": "uint256"
|
|
1976
|
+
}
|
|
1977
|
+
],
|
|
1978
|
+
"stateMutability": "view",
|
|
1979
|
+
"type": "function"
|
|
1980
|
+
},
|
|
1981
|
+
{
|
|
1982
|
+
"inputs": [],
|
|
1983
|
+
"name": "totalSupply",
|
|
1984
|
+
"outputs": [
|
|
1985
|
+
{
|
|
1986
|
+
"internalType": "uint256",
|
|
1987
|
+
"name": "",
|
|
1988
|
+
"type": "uint256"
|
|
1989
|
+
}
|
|
1990
|
+
],
|
|
1991
|
+
"stateMutability": "view",
|
|
1992
|
+
"type": "function"
|
|
1993
|
+
},
|
|
1994
|
+
{
|
|
1995
|
+
"inputs": [
|
|
1996
|
+
{
|
|
1997
|
+
"internalType": "address",
|
|
1998
|
+
"name": "to",
|
|
1999
|
+
"type": "address"
|
|
2000
|
+
},
|
|
2001
|
+
{
|
|
2002
|
+
"internalType": "uint256",
|
|
2003
|
+
"name": "amount",
|
|
2004
|
+
"type": "uint256"
|
|
2005
|
+
}
|
|
2006
|
+
],
|
|
2007
|
+
"name": "transfer",
|
|
2008
|
+
"outputs": [
|
|
2009
|
+
{
|
|
2010
|
+
"internalType": "bool",
|
|
2011
|
+
"name": "",
|
|
2012
|
+
"type": "bool"
|
|
2013
|
+
}
|
|
2014
|
+
],
|
|
2015
|
+
"stateMutability": "nonpayable",
|
|
2016
|
+
"type": "function"
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
"inputs": [
|
|
2020
|
+
{
|
|
2021
|
+
"internalType": "address",
|
|
2022
|
+
"name": "from",
|
|
2023
|
+
"type": "address"
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
"internalType": "address",
|
|
2027
|
+
"name": "to",
|
|
2028
|
+
"type": "address"
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"internalType": "uint256",
|
|
2032
|
+
"name": "amount",
|
|
2033
|
+
"type": "uint256"
|
|
2034
|
+
}
|
|
2035
|
+
],
|
|
2036
|
+
"name": "transferFrom",
|
|
2037
|
+
"outputs": [
|
|
2038
|
+
{
|
|
2039
|
+
"internalType": "bool",
|
|
2040
|
+
"name": "",
|
|
2041
|
+
"type": "bool"
|
|
2042
|
+
}
|
|
2043
|
+
],
|
|
2044
|
+
"stateMutability": "nonpayable",
|
|
2045
|
+
"type": "function"
|
|
2046
|
+
},
|
|
2047
|
+
{
|
|
2048
|
+
"inputs": [],
|
|
2049
|
+
"name": "trueValSubmitTimeout",
|
|
2050
|
+
"outputs": [
|
|
2051
|
+
{
|
|
2052
|
+
"internalType": "uint256",
|
|
2053
|
+
"name": "",
|
|
2054
|
+
"type": "uint256"
|
|
2055
|
+
}
|
|
2056
|
+
],
|
|
2057
|
+
"stateMutability": "view",
|
|
2058
|
+
"type": "function"
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
"inputs": [
|
|
2062
|
+
{
|
|
2063
|
+
"internalType": "uint256",
|
|
2064
|
+
"name": "",
|
|
2065
|
+
"type": "uint256"
|
|
2066
|
+
}
|
|
2067
|
+
],
|
|
2068
|
+
"name": "trueValues",
|
|
2069
|
+
"outputs": [
|
|
2070
|
+
{
|
|
2071
|
+
"internalType": "bool",
|
|
2072
|
+
"name": "",
|
|
2073
|
+
"type": "bool"
|
|
2074
|
+
}
|
|
2075
|
+
],
|
|
2076
|
+
"stateMutability": "view",
|
|
2077
|
+
"type": "function"
|
|
2078
|
+
},
|
|
2079
|
+
{
|
|
2080
|
+
"inputs": [
|
|
2081
|
+
{
|
|
2082
|
+
"internalType": "uint256",
|
|
2083
|
+
"name": "s_per_subscription",
|
|
2084
|
+
"type": "uint256"
|
|
2085
|
+
},
|
|
2086
|
+
{
|
|
2087
|
+
"internalType": "uint256",
|
|
2088
|
+
"name": "_truval_submit_timeout",
|
|
2089
|
+
"type": "uint256"
|
|
2090
|
+
}
|
|
2091
|
+
],
|
|
2092
|
+
"name": "updateSeconds",
|
|
2093
|
+
"outputs": [],
|
|
2094
|
+
"stateMutability": "nonpayable",
|
|
2095
|
+
"type": "function"
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
"inputs": [],
|
|
2099
|
+
"name": "withdrawETH",
|
|
2100
|
+
"outputs": [],
|
|
2101
|
+
"stateMutability": "payable",
|
|
2102
|
+
"type": "function"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"stateMutability": "payable",
|
|
2106
|
+
"type": "receive"
|
|
2107
|
+
}
|
|
2108
|
+
],
|
|
2109
|
+
"bytecode": "0x6080604052600b805460ff19908116909155601c805490911690553480156200002757600080fd5b506040805180820182526001808252601d60fa1b602080840182815285518087019096529285528401528151919291620000649160039162000088565b5080516200007a90600490602084019062000088565b50506001600755506200016b565b82805462000096906200012e565b90600052602060002090601f016020900481019282620000ba576000855562000105565b82601f10620000d557805160ff191683800117855562000105565b8280016001018555821562000105579182015b8281111562000105578251825591602001919060010190620000e8565b506200011392915062000117565b5090565b5b8082111562000113576000815560010162000118565b600181811c908216806200014357607f821691505b602082108114156200016557634e487b7160e01b600052602260045260246000fd5b50919050565b615f9a806200017b6000396000f3fe6080604052600436106103ac5760003560e01c80637ecebe00116101e5578063be95e01a1161010c578063ec342ad0116100a5578063f317784e11610077578063f317784e14610c88578063f778f83414610ca8578063f887ea4014610cc8578063f9aa6e0f14610ce8578063fc913bed14610d2557005b8063ec342ad014610bb8578063ef83fbad14610bd4578063ef867ff414610c09578063f046395a14610c2957005b8063d99325cb116100de578063d99325cb14610b5d578063dd62ed3e14610b7d578063e086e5ec14610b9d578063e487c2e814610ba557005b8063be95e01a14610adb578063c415b95c14610afb578063c95de13e14610b1b578063d888731514610b4857005b8063a457c2d71161017e578063b3998be011610150578063b3998be014610a56578063b664fac814610a76578063b6f421b614610a8b578063bcc09a8f14610abb57005b8063a457c2d7146109bd578063a8c09b0b146109dd578063a9059cbb146109fd578063aa271e1a14610a1d57005b80638d58986a116101b75780638d58986a1461090857806395d89b411461096857806396fb3eaf1461097d578063a42dce801461099d57005b80637ecebe001461089057806382c03da5146108bd57806383835a85146108d25780638b96412b146108e857005b806339509351116102d457806357a3a31b1161026d5780635d1ca6311161023f5780635d1ca631146107e457806370a08231146107f857806379cc67901461082e57806379d9d7f31461084e5780637dda231e1461086e57005b806357a3a31b1461077657806357ad5ff614610794578063580c8f3d146107b45780635c975abb146107ca57005b806345367f23116102a657806345367f23146106ff57806347ac7d551461071f5780634f189cb21461074157806351ed6a301461075657005b80633950935114610663578063397b37431461068357806340c10f19146106bf57806342966c68146106df57005b806323b872dd116103465780633092afd5116103185780633092afd5146105f4578063313ce56714610614578063355274ea14610636578063392e53cd1461064b57005b806323b872dd1461057e57806324e7fdda1461059e57806327e62483146105be5780632f0c0eb5146105de57005b80630f58ff951161037f5780630f58ff9514610493578063160a7925146104b357806318160ddd1461053f578063210aaf221461055e57005b80627ffb78146103b557806301e88208146103f157806306fdde0314610441578063095ea7b31461046357005b366103b357005b005b3480156103c157600080fd5b50600b5461010090046001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b3480156103fd57600080fd5b5061042a61040c366004615225565b60056020526000908152604090205460ff8082169161010090041682565b6040805192151583529015156020830152016103e8565b34801561044d57600080fd5b50610456610d45565b6040516103e8919061526e565b34801561046f57600080fd5b5061048361047e3660046152a1565b610dd7565b60405190151581526020016103e8565b34801561049f57600080fd5b506103b36104ae366004615311565b610df1565b3480156104bf57600080fd5b506105206104ce366004615225565b6040805180820190915260008082526020820152506001600160a01b031660009081526005602090815260409182902082518084019093525460ff808216151584526101009091041615159082015290565b60408051825115158152602092830151151592810192909252016103e8565b34801561054b57600080fd5b506002545b6040519081526020016103e8565b34801561056a57600080fd5b50610550610579366004615367565b610e36565b34801561058a57600080fd5b50610483610599366004615380565b610e50565b3480156105aa57600080fd5b506104836105b93660046153c1565b610e76565b3480156105ca57600080fd5b506103b36105d9366004615367565b610ea4565b3480156105ea57600080fd5b50610550601b5481565b34801561060057600080fd5b506103b361060f366004615225565b611099565b34801561062057600080fd5b5060125b60405160ff90911681526020016103e8565b34801561064257600080fd5b50600a54610550565b34801561065757600080fd5b50600b5460ff16610483565b34801561066f57600080fd5b5061048361067e3660046152a1565b6111b5565b34801561068f57600080fd5b50600d54600e54600f54604080516001600160a01b039485168152939092166020840152908201526060016103e8565b3480156106cb57600080fd5b506103b36106da3660046152a1565b6111d7565b3480156106eb57600080fd5b506103b36106fa366004615367565b6112a8565b34801561070b57600080fd5b5061055061071a366004615367565b6112b2565b34801561072b57600080fd5b506107346112ee565b6040516103e89190615435565b34801561074d57600080fd5b506103b361134f565b34801561076257600080fd5b506019546103d4906001600160a01b031681565b34801561078257600080fd5b506103b3610791366004615225565b50565b3480156107a057600080fd5b506103b36107af366004615380565b61142a565b3480156107c057600080fd5b5061055060185481565b3480156107d657600080fd5b50601c546104839060ff1681565b3480156107f057600080fd5b506003610624565b34801561080457600080fd5b50610550610813366004615225565b6001600160a01b031660009081526020819052604090205490565b34801561083a57600080fd5b506103b36108493660046152a1565b6115e4565b34801561085a57600080fd5b506103b3610869366004615448565b6115f9565b34801561087a57600080fd5b50610883611918565b6040516103e891906154c1565b34801561089c57600080fd5b506105506108ab366004615225565b601d6020526000908152604090205481565b3480156108c957600080fd5b506103b361198d565b3480156108de57600080fd5b50610550601a5481565b3480156108f457600080fd5b506105506109033660046155ed565b6119df565b34801561091457600080fd5b506109286109233660046156da565b611ea6565b6040516103e89190815115158152602080830151908201526040808301516001600160a01b03169082015260609182015115159181019190915260800190565b34801561097457600080fd5b50610456611fa2565b34801561098957600080fd5b50610483610998366004615225565b611fb1565b3480156109a957600080fd5b506103b36109b8366004615225565b61202f565b3480156109c957600080fd5b506104836109d83660046152a1565b612177565b3480156109e957600080fd5b506103b36109f8366004615719565b6121fd565b348015610a0957600080fd5b50610483610a183660046152a1565b612292565b348015610a2957600080fd5b50610483610a38366004615225565b6001600160a01b031660009081526005602052604090205460ff1690565b348015610a6257600080fd5b50610483610a7136600461576c565b6122a0565b348015610a8257600080fd5b506103b36123d3565b348015610a9757600080fd5b50610483610aa6366004615367565b60136020526000908152604090205460ff1681565b348015610ac757600080fd5b506103b3610ad636600461586a565b612533565b348015610ae757600080fd5b506103b3610af63660046153c1565b6128ed565b348015610b0757600080fd5b506017546103d4906001600160a01b031681565b348015610b2757600080fd5b50610550610b36366004615367565b60009081526015602052604090205490565b348015610b5457600080fd5b50610550612c66565b348015610b6957600080fd5b506103b3610b783660046158a1565b612c76565b348015610b8957600080fd5b50610550610b983660046158c3565b612d95565b6103b3612dc0565b348015610bb157600080fd5b50306103d4565b348015610bc457600080fd5b50610550670de0b6b3a764000081565b348015610be057600080fd5b50610bf4610bef3660046158f1565b612dec565b604080519283526020830191909152016103e8565b348015610c1557600080fd5b506103d4610c24366004615367565b612ef3565b348015610c3557600080fd5b50610c69610c44366004615225565b601660205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016103e8565b348015610c9457600080fd5b50610550610ca3366004615367565b612f1d565b348015610cb457600080fd5b50610483610cc3366004615225565b612f41565b348015610cd457600080fd5b50601e546103d4906001600160a01b031681565b348015610cf457600080fd5b50610d18610d03366004615367565b60146020526000908152604090205460ff1681565b6040516103e8919061594d565b348015610d3157600080fd5b506103b3610d4036600461595b565b612f79565b606060088054610d5490615990565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8090615990565b8015610dcd5780601f10610da257610100808354040283529160200191610dcd565b820191906000526020600020905b815481529060010190602001808311610db057829003601f168201915b5050505050905090565b600033610de5818585613366565b60019150505b92915050565b60005b82811015610e3057610e1e848483818110610e1157610e116159c5565b90506020020135836128ed565b80610e28816159f1565b915050610df4565b50505050565b601854600090610e468184615a22565b610deb9190615a36565b600033610e5e85828561348a565b610e698585856134fe565b60019150505b9392505050565b60009182526010602090815260408084206001600160a01b0393841685529091529091206002015416151590565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa158015610ef0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f149190615a55565b6020015180610f9b5750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015610f6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f909190615ad9565b6001600160a01b0316145b610fc05760405162461bcd60e51b8152600401610fb790615af6565b60405180910390fd5b80610fca82610e36565b14610fe75760405162461bcd60e51b8152600401610fb790615b2b565b80610ff0612c66565b1015610ffb57600080fd5b6000818152601260205260409020541561101457600080fd5b6017546001600160a01b031661106c5760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f742073656e64206665657320746f206164647265737320300000006044820152606401610fb7565b601754600082815260156020526040902054601954610791926001600160a01b03918216929116906136a2565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa1580156110e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111099190615a55565b60200151806111905750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015611161573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111859190615ad9565b6001600160a01b0316145b6111ac5760405162461bcd60e51b8152600401610fb790615af6565b61079181613705565b600033610de58185856111c88383612d95565b6111d29190615b52565b613366565b3360009081526005602052604090205460ff166112365760405162461bcd60e51b815260206004820152601960248201527f455243323054656d706c6174653a204e4f54204d494e544552000000000000006044820152606401610fb7565b600a5461124c8261124660025490565b90613776565b111561129a5760405162461bcd60e51b815260206004820152601f60248201527f44617461746f6b656e54656d706c6174653a20636170206578636565646564006044820152606401610fb7565b6112a48282613782565b5050565b6107913382613841565b6000816112be83610e36565b146112db5760405162461bcd60e51b8152600401610fb790615b2b565b5060009081526012602052604090205490565b60606020805480602002602001604051908101604052809291908181526020018280548015610dcd57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611328575050505050905090565b600b546040516331a9108f60e11b8152600160048201526101009091046001600160a01b031690636352211e90602401602060405180830381865afa15801561139c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c09190615ad9565b6001600160a01b0316336001600160a01b0316146114205760405162461bcd60e51b815260206004820152601b60248201527f455243323054656d706c6174653a206e6f74204e46544f776e657200000000006044820152606401610fb7565b611428613973565b565b600d546001600160a01b031633146114975760405162461bcd60e51b815260206004820152602a60248201527f455243323054656d706c6174653a206e6f74207075626c6973684d61726b65746044820152694665654164647265737360b01b6064820152608401610fb7565b6001600160a01b0383166114fe5760405162461bcd60e51b815260206004820152602860248201527f496e76616c6964205f7075626c6973684d61726b657446656541646472657373604482015267206164647265737360c01b6064820152608401610fb7565b6001600160a01b0382166115635760405162461bcd60e51b815260206004820152602660248201527f496e76616c6964205f7075626c6973684d61726b6574466565546f6b656e206160448201526564647265737360d01b6064820152608401610fb7565b600d80546001600160a01b038581166001600160a01b03199283168117909355600e8054918616919092168117909155600f839055604080513381526020810193909352820152606081018290527f02ab4b3fc023109c2d0da394bda239166c833f63c42b71b67ed4b836dca0ddfe906080015b60405180910390a1505050565b6115ef82338361348a565b6112a48282613841565b33600090815260208190526040902054670de0b6b3a76400009081111561166e5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f7567682064617461746f6b656e7320746f207374617274204f604482015263393232b960e11b6064820152608401610fb7565b600d5460408051338152602081018490529081018690524260608201524360808201526001600160a01b03918216918716907fe1c4fa794edfa8f619b8257a077398950357b9c6398528f94480307352f9afcc9060a00160405180910390a36000600f541180156116e95750600e546001600160a01b031615155b80156116ff5750600d546001600160a01b031615155b1561177457600e54600d54600f54611727926001600160a01b03908116923392911690613d09565b600e54600d54600f546040519081526001600160a01b0392831692909116907f4049a448ac6f0284a98d2cb9199e73605944ea5bec901a037f88c84703de82b29060200160405180910390a35b600082604001351180156117a1575060006117956040840160208501615225565b6001600160a01b031614155b80156117c3575060006117b76020840184615225565b6001600160a01b031614155b15611860576117f36117db6040840160208501615225565b336117e96020860186615225565b8560400135613d09565b6118036040830160208401615225565b6001600160a01b03166118196020840184615225565b6001600160a01b03167f6d11837f46cc09b011cf4aae09fcade046c020aac088090ae4f77ff67b707972846040013560405161185791815260200190565b60405180910390a35b6000601a5461186d612c66565b6118779190615b52565b6040805180820182526001600160a01b03898116808352602080840186815260008381526016909252949020835181546001600160a01b031916931692909217825592516001909101559192507f498f6fbe01bd9d9e4dd7aed2b61275cee780377081cbcc813dabf749f933dd49836118ee612c66565b6040805192835260208301919091520160405180910390a261190f836112a8565b50505050505050565b6060601f805480602002602001604051908101604052809291908181526020016000905b82821015611984576000848152602090819020604080518082019091526002850290910180546001600160a01b0316825260019081015482840152908352909201910161193c565b50505050905090565b600b5461010090046001600160a01b031633146114205760405162461bcd60e51b815260206004820152601060248201526f1393d5080dcc8c4810dbdb9d1c9858dd60821b6044820152606401610fb7565b600b5460405163160a792560e01b815233600482015260009161010090046001600160a01b03169063160a792590602401608060405180830381865afa158015611a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a519190615a55565b6020015180611ad85750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015611aa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acd9190615ad9565b6001600160a01b0316145b611af45760405162461bcd60e51b8152600401610fb790615af6565b611afc613e57565b601f5415611b4c5760405162461bcd60e51b815260206004820152601a60248201527f4669786564207261746520616c72656164792070726573656e740000000000006044820152606401610fb7565b82600081518110611b5f57611b5f6159c5565b60209081029190910101516019546001600160a01b03908116911614611bdc5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206372656174652046524520776974682062617365546f6b656e60448201526b109eb9ba30b5b2aa37b5b2b760a11b6064820152608401610fb7565b60006001600160a01b031683600281518110611bfa57611bfa6159c5565b60200260200101516001600160a01b03161415611c595760405162461bcd60e51b815260206004820152601b60248201527f466565436f6c6c6563746f722063616e6e6f74206265207a65726f00000000006044820152606401610fb7565b3083600381518110611c6d57611c6d6159c5565b60200260200101906001600160a01b031690816001600160a01b031681525050600082600481518110611ca257611ca26159c5565b60200260200101511115611cb957611cb984613eb1565b601e54604051638244937560e01b81526001600160a01b0390911690638244937590611ced90879087908790600401615b6a565b6020604051808303816000875af1158015611d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d309190615bd0565b905082600081518110611d4557611d456159c5565b60200260200101516001600160a01b031683600181518110611d6957611d696159c5565b60200260200101516001600160a01b03167fb3fac3ae95956dbac74e63ba8dac94081832395c8788e3049c900a7732f348058387604051611dbd9291909182526001600160a01b0316602082015260400190565b60405180910390a3604080518082019091526001600160a01b03858116825260208201838152601f805460018101825560009190915292517fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d807600294850290810180546001600160a01b0319169290941691909117909255517fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d8089091015583518491908110611e6e57611e6e6159c5565b6020026020010151601760006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610e6f6001600755565b604080516080810182526000808252602082018190529181018290526060810191909152611ed2612c66565b841115611f3a57611ee282613f87565b611eef6020830183615225565b6001600160a01b0316836001600160a01b031614611f3a5760405162461bcd60e51b815260206004820152600860248201526709cdee840c2eae8d60c31b6044820152606401610fb7565b505060009182526010602090815260408084206001600160a01b0393841685528252928390208351608081018552815460ff9081161515825260018301549382019390935260029091015492831693810193909352600160a01b909104161515606082015290565b606060098054610d5490615990565b600b5460405163160a792560e01b81526001600160a01b0383811660048301526000926101009004169063160a792590602401608060405180830381865afa158015612001573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120259190615a55565b6020015192915050565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa15801561207b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061209f9190615a55565b60200151806121265750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa1580156120f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061211b9190615ad9565b6001600160a01b0316145b6121425760405162461bcd60e51b8152600401610fb790615af6565b6001600160a01b03811661215557600080fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b600033816121858286612d95565b9050838110156121e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610fb7565b6121f28286868403613366565b506001949350505050565b612205613e57565b601c5460ff16156122415760405162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b6044820152606401610fb7565b61224a8161414d565b61225d3033670de0b6b3a76400006134fe565b61228861226d6020840184615225565b602084013561227f6040860186615be9565b856060016115f9565b6112a46001600755565b600033610de58185856134fe565b600b5460009060ff16156123105760405162461bcd60e51b815260206004820152603160248201527f455243323054656d706c6174653a20746f6b656e20696e7374616e636520616c6044820152701c9958591e481a5b9a5d1a585b1a5e9959607a1b6064820152608401610fb7565b6123c461231d8b8d615c60565b8a8a8080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808e0282810182019093528d82529093508d92508c91829185019084908082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b9182918501908490808284376000920191909152506123bf92508991508a9050615ce7565b61457c565b9b9a5050505050505050505050565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa15801561241f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124439190615a55565b60200151806124ca5750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa15801561249b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124bf9190615ad9565b6001600160a01b0316145b6124e65760405162461bcd60e51b8152600401610fb790615af6565b601c805460ff8082161560ff1990921682179092556040519116151581527f0e2fb031ee032dc02d8011dc50b816eb450cf856abd8261680dac74f72165bd29060200160405180910390a1565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa15801561257f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125a39190615a55565b602001518061262a5750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa1580156125fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261f9190615ad9565b6001600160a01b0316145b6126465760405162461bcd60e51b8152600401610fb790615af6565b8261265084610e36565b1461266d5760405162461bcd60e51b8152600401610fb790615b2b565b612675612c66565b8311156126ba5760405162461bcd60e51b81526020600482015260136024820152721d1bdbc819585c9b1e481d1bc81cdd589b5a5d606a1b6044820152606401610fb7565b60008381526014602052604081205460ff1660028111156126dd576126dd615915565b1461271c5760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e481cd95d1d1b1959608a1b6044820152606401610fb7565b6000601b548461272c9190615b52565b612734612c66565b11905081806127405750805b15612763576000848152601460205260409020805460ff19166002179055612884565b6000848152601360209081526040808320805460ff199081168815151790915560148352818420805490911660011790556012909152902054158015906127ea57508280156127be5750600084815260116020526040902054155b806127ea5750821580156127ea5750600084815260126020908152604080832054601190925290912054145b15612884576017546001600160a01b03166128575760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742073656e6420736c6173686564207374616b657320746f2061646044820152660647265737320360cc1b6064820152608401610fb7565b601754600085815260126020526040902054601954612884926001600160a01b03918216929116906136a2565b600084815260146020908152604080832054601183528184205460129093529281902054905187937f099b391ebd8dcbcb81071b93d01c36a0c005922aa377ce639fbab848ad3ba9d9936128df93899360ff90931692615d62565b60405180910390a250505050565b6128f5613e57565b816128ff83610e36565b1461291c5760405162461bcd60e51b8152600401610fb790615b2b565b6129268282610e76565b6129625760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd081cdd589b5a5d1d1959609a1b6044820152606401610fb7565b60008281526010602090815260408083206001600160a01b038086168552908352928190208151608081018352815460ff9081161515825260018301549482019490945260029091015493841691810191909152600160a01b9092041615801560608301526129d15750612288565b601b546129de9084615b52565b6129e6612c66565b118015612a13575060008381526014602052604081205460ff166002811115612a1157612a11615915565b145b15612a32576000838152601460205260409020805460ff191660021790555b60008381526014602052604081205460ff166002811115612a5557612a55615915565b1415612a615750612288565b60008381526010602090815260408083206001600160a01b038616845290915281206002908101805460ff60a01b1916600160a01b17905560008581526014602052604090205460ff166002811115612abc57612abc615915565b1415612acd57506020810151612b8b565b815160008581526013602052604090205460ff1615159015151415612b8b5760008481526013602052604081205460ff16612b2c57600085815260116020908152604080832054601290925290912054612b279190615d8a565b612b3c565b6000858152601160205260409020545b90508015612b89576000858152601560209081526040808320546012909252909120548290612b6c908390615b52565b8560200151612b7b9190615a36565b612b859190615a22565b9250505b505b60208083015183516000878152601384526040808220546012865281832054601190965291205488946001600160a01b038916947f095487dd6dbd377778c598664198287a051bce23f419565bd4ce4a2b37c63c809490938893919260ff90911691612bff90670de0b6b3a7640000615a36565b612c099190615a22565b60008c81526014602052604090819020549051612c2e96959493929160ff1690615da1565b60405180910390a38015612c5a576040820151601954612c5a916001600160a01b0390911690836136a2565b50506112a46001600755565b6000612c7142610e36565b905090565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa158015612cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce69190615a55565b6020015180612d6d5750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015612d3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d629190615ad9565b6001600160a01b0316145b612d895760405162461bcd60e51b8152600401610fb790615af6565b6112a460008383614978565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60405130904780156108fc02916000818181858888f19350505050158015610791573d6000803e3d6000fd5b60008083612df985610e36565b14612e165760405162461bcd60e51b8152600401610fb790615b2b565b612e1e612c66565b841115612ece57612e2e83613f87565b612e3e610cc36020850185615225565b612e7c5760405162461bcd60e51b815260206004820152600f60248201526e27379039bab139b1b934b83a34b7b760891b6044820152606401610fb7565b83612e88610ca3612c66565b11612ece5760405162461bcd60e51b81526020600482015260166024820152751c1c99591a58dd1a5bdb9cc81b9bdd0818db1bdcd95960521b6044820152606401610fb7565b50506000828152601160209081526040808320546012909252909120545b9250929050565b60068181548110612f0357600080fd5b6000918252602090912001546001600160a01b0316905081565b60006018546002612f2e9190615a36565b612f3783610e36565b610deb9190615b52565b6001600160a01b038116600090815260166020526040812060010154612f65612c66565b10612f71576000610deb565b600192915050565b612f81613e57565b80612f8b82610e36565b14612fa85760405162461bcd60e51b8152600401610fb790615b2b565b601c5460ff1615612fe45760405162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b6044820152606401610fb7565b612fed42612f1d565b8110156130315760405162461bcd60e51b81526020600482015260126024820152711d1bdbc81b185d19481d1bc81cdd589b5a5d60721b6044820152606401610fb7565b604051828152819033907f1adf2f5dd35a2da881dc68ca4d293ab5f8c12b143741836d06e273a5dbf58c539060200160405180910390a36130728133610e76565b15613258576000818152601060209081526040808320338452909152812060018101805491549290559060ff16806130ab5760006130ae565b60015b6130bb9060ff1683615a36565b600084815260116020526040812080549091906130d9908490615d8a565b9091555050600083815260126020526040812080548492906130fc908490615d8a565b9091555050818411156131365760006131158386615d8a565b601954909150613130906001600160a01b0316333084614a1b565b506131c3565b818410156131c357600061314a8584615d8a565b60195460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb906044016020604051808303816000875af115801561319c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131c09190615dd3565b50505b60008381526010602090815260408083203384529091529020805460ff1916861515178155600101849055846131fa5760006131fd565b60015b61320a9060ff1685615a36565b60008481526011602052604081208054909190613228908490615b52565b90915550506000838152601260205260408120805486929061324b908490615b52565b9091555061335792505050565b6040805160808101825284151581526020808201858152338385018181526000606086018181528882526010865287822093825292909452949092209251835460ff191690151517835551600183015591516002909101805492516001600160a01b039092166001600160a81b031990931692909217600160a01b91151591909102179055826132e95760006132ec565b60015b6132f99060ff1683615a36565b60008281526011602052604081208054909190613317908490615b52565b90915550506000818152601260205260408120805484929061333a908490615b52565b9091555050601954613357906001600160a01b0316333085614a1b565b6133616001600755565b505050565b6001600160a01b0383166133c85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610fb7565b6001600160a01b0382166134295760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610fb7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006134968484612d95565b90506000198114610e3057818110156134f15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610fb7565b610e308484848403613366565b6001600160a01b0383166135625760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610fb7565b6001600160a01b0382166135c45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610fb7565b6001600160a01b0383166000908152602081905260409020548181101561363c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610fb7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e30565b6040516001600160a01b03831660248201526044810182905261336190849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152614a53565b6001600160a01b03811660008181526005602052604090819020805460ff191681559051909133917fefa2735987005aaa89c050c0ff8cc9ae7d9079d19382081c429130f98c52d480906137659042904390918252602082015260400190565b60405180910390a36112a482614b25565b6000610e6f8284615b52565b6001600160a01b0382166137d85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610fb7565b80600260008282546137ea9190615b52565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166138a15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610fb7565b6001600160a01b038216600090815260208190526040902054818110156139155760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610fb7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b602054601f5460009161398591615b52565b9050600080826001600160401b038111156139a2576139a2615519565b6040519080825280602002602001820160405280156139cb578160200160208202803683370190505b50905060005b601f54811015613cb1576000601f82815481106139f0576139f06159c5565b60009182526020822060029091020154601f80546001600160a01b039092169350829182918591634c87087d919088908110613a2e57613a2e6159c5565b9060005260206000209060020201600101546040518263ffffffff1660e01b8152600401613a5e91815260200190565b61018060405180830381865afa158015613a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613aa09190615df0565b9b509b509b505050505050505050506000821115613b4657836001600160a01b031663f32f9476601f8781548110613ada57613ada6159c5565b906000526020600020906002020160010154846040518363ffffffff1660e01b8152600401613b13929190918252602082015260400190565b600060405180830381600087803b158015613b2d57600080fd5b505af1158015613b41573d6000803e3d6000fd5b505050505b8215613bda57836001600160a01b031663c612e48a601f8781548110613b6e57613b6e6159c5565b906000526020600020906002020160010154856040518363ffffffff1660e01b8152600401613ba7929190918252602082015260400190565b600060405180830381600087803b158015613bc157600080fd5b505af1158015613bd5573d6000803e3d6000fd5b505050505b613c1d601f8681548110613bf057613bf06159c5565b600091825260208083206002909202909101546001600160a01b0316825260059052604090205460ff1690565b8015613c2b57506001811515145b15613c9a57601f8581548110613c4357613c436159c5565b600091825260209091206002909102015486516001600160a01b0390911690879089908110613c7457613c746159c5565b6001600160a01b039092166020928302919091019091015286613c96816159f1565b9750505b505050508080613ca9906159f1565b9150506139d1565b613cb9614c73565b50600c80546001600160a01b031916905560005b82811015610e3057613cf7828281518110613cea57613cea6159c5565b6020026020010151613eb1565b80613d01816159f1565b915050613ccd565b6040516370a0823160e01b81526001600160a01b038381166004830152600091908616906370a0823190602401602060405180830381865afa158015613d53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d779190615bd0565b9050613d8e6001600160a01b038616858585614a1b565b613d988183613776565b6040516370a0823160e01b81526001600160a01b0385811660048301528716906370a0823190602401602060405180830381865afa158015613dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e029190615bd0565b1015613e505760405162461bcd60e51b815260206004820152601a60248201527f5472616e7366657220616d6f756e7420697320746f6f206c6f770000000000006044820152606401610fb7565b5050505050565b60026007541415613eaa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610fb7565b6002600755565b6001600160a01b03811615610791576001600160a01b0381166000908152600560205260409020805460ff1615613f2a5760405162461bcd60e51b815260206004820152601d60248201527f4552433230526f6c65733a2020414c52454144592041204d494e5445520000006044820152606401610fb7565b805460ff19166001178155613f3e82614d22565b6040805142815243602082015233916001600160a01b038516917f4f7e100eb1ee13e903798bd0d6aa854152e07eb05544f392b9409c12935c8095910160405180910390a35050565b60408051808201909152601c81527f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020808301919091526000908290613fd090850185615225565b60405160609190911b6bffffffffffffffffffffffff191660208201526080850135603482015260540160405160208183030381529060405280519060200120604051602001614021929190615ead565b60405160208183030381529060405280519060200120905060006001828560200160208101906140519190615ecf565b6040805160008152602081018083529390935260ff90911682820152860135606080830191909152860135608082015260a0016020604051602081039080840390855afa1580156140a6573d6000803e3d6000fd5b5050604051601f19015191506140c190506020850185615225565b6001600160a01b0316816001600160a01b0316146141105760405162461bcd60e51b815260206004820152600c60248201526b092dcecc2d8d2c840c2eae8d60a31b6044820152606401610fb7565b42846080013511610e305760405162461bcd60e51b8152602060048201526007602482015266115e1c1a5c995960ca1b6044820152606401610fb7565b600061415c6020830183615225565b90506000806000836001600160a01b0316634c87087d86602001356040518263ffffffff1660e01b815260040161419591815260200190565b61018060405180830381865afa1580156141b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141d79190615df0565b505050505050955050945050935050306001600160a01b0316836001600160a01b0316146142575760405162461bcd60e51b815260206004820152602760248201527f5468697320466978656452617465206973206e6f742070726f766964696e67206044820152661d1a1a5cc8111560ca1b6064820152608401610fb7565b604051636e8de4b560e11b815260208601356004820152670de0b6b3a76400006024820152606086013560448201526000906001600160a01b0386169063dd1bc96a90606401608060405180830381865afa1580156142ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142de9190615ef2565b505050905085604001358111156143475760405162461bcd60e51b815260206004820152602760248201527f46697865645261746545786368616e67653a20546f6f206d616e79206261736560448201526620746f6b656e7360c81b6064820152608401610fb7565b61435383333084613d09565b6143746143636020880188615225565b6001600160a01b0385169083614dd9565b6001600160a01b0385166368c4b7e96020880135670de0b6b3a7640000846143a260a08c0160808d01615225565b6040516001600160e01b031960e087901b1681526004810194909452602484019290925260448301526001600160a01b031660648201526060890135608482015260a401600060405180830381600087803b15801561440057600080fd5b505af1158015614414573d6000803e3d6000fd5b505030600090815260208190526040902054670de0b6b3a76400009250905010156144815760405162461bcd60e51b815260206004820152601f60248201527f556e61626c6520746f206275792044542066726f6d20466978656452617465006044820152606401610fb7565b604051634c87087d60e01b8152602087013560048201526000906001600160a01b03871690634c87087d9060240161018060405180830381865afa1580156144cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144f19190615df0565b509a5050505050505050505050600081111561190f57604051637997ca3b60e11b815260208801356004820152602481018290526001600160a01b0387169063f32f947690604401600060405180830381600087803b15801561455357600080fd5b505af1158015614567573d6000803e3d6000fd5b5050505061190f614576612c66565b82614e8b565b60008084600081518110614592576145926159c5565b60200260200101519050846001815181106145af576145af6159c5565b6020908102919091010151601e80546001600160a01b0319166001600160a01b0392831617905581166146395760405162461bcd60e51b815260206004820152602c60248201527f455243323054656d706c6174653a20496e76616c6964206d696e7465722c202060448201526b7a65726f206164647265737360a01b6064820152608401610fb7565b601e546001600160a01b03166146a55760405162461bcd60e51b815260206004820152602b60248201527f455243323054656d706c6174653a20496e76616c696420726f757465722c207a60448201526a65726f206164647265737360a81b6064820152608401610fb7565b836000815181106146b8576146b86159c5565b60200260200101516000141561471c5760405162461bcd60e51b8152602060048201526024808201527f44617461746f6b656e54656d706c6174653a20496e76616c6964206361702076604482015263616c756560e01b6064820152608401610fb7565b8360008151811061472f5761472f6159c5565b6020026020010151600a8190555086600081518110614750576147506159c5565b60200260200101516008908051906020019061476d92919061515d565b5086600181518110614781576147816159c5565b60200260200101516009908051906020019061479e92919061515d565b50600b805460ff196001600160a01b03841661010002166001600160a81b03199091161760011790556147d030614f75565b856002815181106147e3576147e36159c5565b6020026020010151600d60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555085600381518110614824576148246159c5565b6020026020010151600e60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555083600181518110614865576148656159c5565b602090810291909101810151600f819055600d54600e54604080513381526001600160a01b039384169581019590955291169083015260608201527f02ab4b3fc023109c2d0da394bda239166c833f63c42b71b67ed4b836dca0ddfe9060800160405180910390a1856004815181106148e0576148e06159c5565b6020026020010151601960006101000a8154816001600160a01b0302191690836001600160a01b0316021790555061496784600281518110614924576149246159c5565b60200260200101518560038151811061493f5761493f6159c5565b60200260200101518660048151811061495a5761495a6159c5565b6020026020010151614978565b5050600b5460ff1695945050505050565b6149828383615f28565b156149b35760405162461bcd60e51b81526020600482015260016024820152602560f81b6044820152606401610fb7565b6018546149c05760188390555b601a829055601b819055601854601954604080519283526020830185905282018390526001600160a01b031660608201527fc4526e958dc74330dcd6698fa6f869171a8c97b4036026118c263688264099d5906080016115d7565b6040516001600160a01b0380851660248301528316604482015260648101829052610e309085906323b872dd60e01b906084016136ce565b6000614aa8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316614fd09092919063ffffffff16565b8051909150156133615780806020019051810190614ac69190615dd3565b6133615760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610fb7565b6001600160a01b0381166000908152600560205260409020805460ff16158015614b5657508054610100900460ff16155b156112a45760005b600654811015614bb757826001600160a01b031660068281548110614b8557614b856159c5565b6000918252602090912001546001600160a01b03161415614ba557614bb7565b80614baf816159f1565b915050614b5e565b6006548110156133615760068054614bd190600190615d8a565b81548110614be157614be16159c5565b600091825260209091200154600680546001600160a01b039092169183908110614c0d57614c0d6159c5565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506006805480614c4c57614c4c615f3c565b600082815260209020810160001990810180546001600160a01b0319169055019055505050565b60005b600654811015614cd95760006005600060068481548110614c9957614c996159c5565b60009182526020808320909101546001600160a01b031683528201929092526040019020805461ffff191690555080614cd1816159f1565b915050614c76565b50614ce6600660006151e1565b6040805142815243602082015233917f712bc71db81927a76b8bf1ea346247bb0ad58f18e4e5c1bd4aa0ec6573e02a2b910160405180910390a2565b60005b600654811015614d7e57816001600160a01b031660068281548110614d4c57614d4c6159c5565b6000918252602090912001546001600160a01b03161415614d6c57614d7e565b80614d76816159f1565b915050614d25565b6006548114156112a457600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0384166001600160a01b03199091161790555050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e90604401602060405180830381865afa158015614e2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614e4e9190615bd0565b614e589190615b52565b6040516001600160a01b038516602482015260448101829052909150610e3090859063095ea7b360e01b906064016136ce565b80156112a4576000601854601a54614ea39190615a22565b90506001811015614eb2575060015b6000614ebe8284615a22565b905060005b82811015614f1d57816015600060185484614ede9190615a36565b614ee89089615b52565b81526020019081526020016000206000828254614f059190615b52565b90915550819050614f15816159f1565b915050614ec3565b506018546040805185815260208101879052808201849052606081018590526080810192909252517f12246f3e621dc7f930e714f57b7328c069007c690cbe9f328090bd161e7ff3b69181900360a00190a150505050565b600c80546001600160a01b0319166001600160a01b0383169081179091556040805142815243602082015233917f4d7694d695c57cc54947177c8e8a0e61aae664e9223492a798c32fadfc6419cc910160405180910390a350565b6060614fdf8484600085614fe7565b949350505050565b6060824710156150485760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610fb7565b600080866001600160a01b031685876040516150649190615f52565b60006040518083038185875af1925050503d80600081146150a1576040519150601f19603f3d011682016040523d82523d6000602084013e6150a6565b606091505b50915091506150b7878383876150c2565b979650505050505050565b6060831561512e578251615127576001600160a01b0385163b6151275760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610fb7565b5081614fdf565b614fdf83838151156151435781518083602001fd5b8060405162461bcd60e51b8152600401610fb7919061526e565b82805461516990615990565b90600052602060002090601f01602090048101928261518b57600085556151d1565b82601f106151a457805160ff19168380011785556151d1565b828001600101855582156151d1579182015b828111156151d15782518255916020019190600101906151b6565b506151dd9291506151fb565b5090565b508054600082559060005260206000209081019061079191905b5b808211156151dd57600081556001016151fc565b6001600160a01b038116811461079157600080fd5b60006020828403121561523757600080fd5b8135610e6f81615210565b60005b8381101561525d578181015183820152602001615245565b83811115610e305750506000910152565b602081526000825180602084015261528d816040850160208701615242565b601f01601f19169190910160400192915050565b600080604083850312156152b457600080fd5b82356152bf81615210565b946020939093013593505050565b60008083601f8401126152df57600080fd5b5081356001600160401b038111156152f657600080fd5b6020830191508360208260051b8501011115612eec57600080fd5b60008060006040848603121561532657600080fd5b83356001600160401b0381111561533c57600080fd5b615348868287016152cd565b909450925050602084013561535c81615210565b809150509250925092565b60006020828403121561537957600080fd5b5035919050565b60008060006060848603121561539557600080fd5b83356153a081615210565b925060208401356153b081615210565b929592945050506040919091013590565b600080604083850312156153d457600080fd5b8235915060208301356153e681615210565b809150509250929050565b600081518084526020808501945080840160005b8381101561542a5781516001600160a01b031687529582019590820190600101615405565b509495945050505050565b602081526000610e6f60208301846153f1565b60008060008084860360c081121561545f57600080fd5b853561546a81615210565b94506020860135935060408601356001600160401b0381111561548c57600080fd5b8601610100818903121561549f57600080fd5b92506060605f19820112156154b357600080fd5b509295919450926060019150565b602080825282518282018190526000919060409081850190868401855b8281101561550c57815180516001600160a01b031685528601518685015292840192908501906001016154de565b5091979650505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561555757615557615519565b604052919050565b60006001600160401b0382111561557857615578615519565b5060051b60200190565b600082601f83011261559357600080fd5b813560206155a86155a38361555f565b61552f565b82815260059290921b840181019181810190868411156155c757600080fd5b8286015b848110156155e257803583529183019183016155cb565b509695505050505050565b60008060006060848603121561560257600080fd5b833561560d81615210565b92506020848101356001600160401b038082111561562a57600080fd5b818701915087601f83011261563e57600080fd5b813561564c6155a38261555f565b81815260059190911b8301840190848101908a83111561566b57600080fd5b938501935b8285101561569257843561568381615210565b82529385019390850190615670565b9650505060408701359250808311156156aa57600080fd5b50506156b886828701615582565b9150509250925092565b600060a082840312156156d457600080fd5b50919050565b600080600060e084860312156156ef57600080fd5b83359250602084013561570181615210565b915061571085604086016156c2565b90509250925092565b60008060c0838503121561572c57600080fd5b82356001600160401b0381111561574257600080fd5b830160c0818603121561575457600080fd5b915061576384602085016156c2565b90509250929050565b60008060008060008060008060008060a08b8d03121561578b57600080fd5b8a356001600160401b03808211156157a257600080fd5b6157ae8e838f016152cd565b909c509a5060208d01359150808211156157c757600080fd5b6157d38e838f016152cd565b909a50985060408d01359150808211156157ec57600080fd5b6157f88e838f016152cd565b909850965060608d013591508082111561581157600080fd5b61581d8e838f016152cd565b909650945060808d013591508082111561583657600080fd5b506158438d828e016152cd565b915080935050809150509295989b9194979a5092959850565b801515811461079157600080fd5b60008060006060848603121561587f57600080fd5b8335925060208401356158918161585c565b9150604084013561535c8161585c565b600080604083850312156158b457600080fd5b50508035926020909101359150565b600080604083850312156158d657600080fd5b82356158e181615210565b915060208301356153e681615210565b60008060c0838503121561590457600080fd5b8235915061576384602085016156c2565b634e487b7160e01b600052602160045260246000fd5b6003811061594957634e487b7160e01b600052602160045260246000fd5b9052565b60208101610deb828461592b565b60008060006060848603121561597057600080fd5b833561597b8161585c565b95602085013595506040909401359392505050565b600181811c908216806159a457607f821691505b602082108114156156d457634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415615a0557615a056159db565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082615a3157615a31615a0c565b500490565b6000816000190483118215151615615a5057615a506159db565b500290565b600060808284031215615a6757600080fd5b604051608081018181106001600160401b0382111715615a8957615a89615519565b6040528251615a978161585c565b81526020830151615aa78161585c565b60208201526040830151615aba8161585c565b60408201526060830151615acd8161585c565b60608201529392505050565b600060208284031215615aeb57600080fd5b8151610e6f81615210565b6020808252818101527f455243323054656d706c6174653a204e4f54204445504c4f59455220524f4c45604082015260600190565b6020808252600d908201526c0d2dcecc2d8d2c840cae0dec6d609b1b604082015260600190565b60008219821115615b6557615b656159db565b500190565b6001600160a01b038416815260606020808301829052600091615b8f908401866153f1565b838103604085015284518082528286019183019060005b81811015615bc257835183529284019291840191600101615ba6565b509098975050505050505050565b600060208284031215615be257600080fd5b5051919050565b6000823560fe19833603018112615bff57600080fd5b9190910192915050565b60006001600160401b03831115615c2257615c22615519565b615c35601f8401601f191660200161552f565b9050828152838383011115615c4957600080fd5b828260208301376000602084830101529392505050565b6000615c6e6155a38461555f565b80848252602080830192508560051b850136811115615c8c57600080fd5b855b81811015615cdb5780356001600160401b03811115615cad5760008081fd5b870136601f820112615cbf5760008081fd5b615ccd368235868401615c09565b865250938201938201615c8e565b50919695505050505050565b6000615cf56155a38461555f565b80848252602080830192508560051b850136811115615d1357600080fd5b855b81811015615cdb5780356001600160401b03811115615d345760008081fd5b870136601f820112615d465760008081fd5b615d54368235868401615c09565b865250938201938201615d15565b841515815260808101615d78602083018661592b565b60408201939093526060015292915050565b600082821015615d9c57615d9c6159db565b500390565b86815260208101869052841515604082015283151560608201526080810183905260c081016150b760a083018461592b565b600060208284031215615de557600080fd5b8151610e6f8161585c565b6000806000806000806000806000806000806101808d8f031215615e1357600080fd5b8c51615e1e81615210565b60208e0151909c50615e2f81615210565b60408e015160608f0151919c509a50615e4781615210565b8099505060808d0151975060a08d0151965060c08d0151615e678161585c565b8096505060e08d015194506101008d015193506101208d015192506101408d015191506101608d0151615e998161585c565b809150509295989b509295989b509295989b565b60008351615ebf818460208801615242565b9190910191825250602001919050565b600060208284031215615ee157600080fd5b813560ff81168114610e6f57600080fd5b60008060008060808587031215615f0857600080fd5b505082516020840151604085015160609095015191969095509092509050565b600082615f3757615f37615a0c565b500690565b634e487b7160e01b600052603160045260246000fd5b60008251615bff81846020870161524256fea26469706673582212209de236efcfbe455792ffa9bf3ed98a84286e0b20abe2dc015a7e7f9c51c7918064736f6c634300080c0033",
|
|
2110
|
+
"deployedBytecode": "0x6080604052600436106103ac5760003560e01c80637ecebe00116101e5578063be95e01a1161010c578063ec342ad0116100a5578063f317784e11610077578063f317784e14610c88578063f778f83414610ca8578063f887ea4014610cc8578063f9aa6e0f14610ce8578063fc913bed14610d2557005b8063ec342ad014610bb8578063ef83fbad14610bd4578063ef867ff414610c09578063f046395a14610c2957005b8063d99325cb116100de578063d99325cb14610b5d578063dd62ed3e14610b7d578063e086e5ec14610b9d578063e487c2e814610ba557005b8063be95e01a14610adb578063c415b95c14610afb578063c95de13e14610b1b578063d888731514610b4857005b8063a457c2d71161017e578063b3998be011610150578063b3998be014610a56578063b664fac814610a76578063b6f421b614610a8b578063bcc09a8f14610abb57005b8063a457c2d7146109bd578063a8c09b0b146109dd578063a9059cbb146109fd578063aa271e1a14610a1d57005b80638d58986a116101b75780638d58986a1461090857806395d89b411461096857806396fb3eaf1461097d578063a42dce801461099d57005b80637ecebe001461089057806382c03da5146108bd57806383835a85146108d25780638b96412b146108e857005b806339509351116102d457806357a3a31b1161026d5780635d1ca6311161023f5780635d1ca631146107e457806370a08231146107f857806379cc67901461082e57806379d9d7f31461084e5780637dda231e1461086e57005b806357a3a31b1461077657806357ad5ff614610794578063580c8f3d146107b45780635c975abb146107ca57005b806345367f23116102a657806345367f23146106ff57806347ac7d551461071f5780634f189cb21461074157806351ed6a301461075657005b80633950935114610663578063397b37431461068357806340c10f19146106bf57806342966c68146106df57005b806323b872dd116103465780633092afd5116103185780633092afd5146105f4578063313ce56714610614578063355274ea14610636578063392e53cd1461064b57005b806323b872dd1461057e57806324e7fdda1461059e57806327e62483146105be5780632f0c0eb5146105de57005b80630f58ff951161037f5780630f58ff9514610493578063160a7925146104b357806318160ddd1461053f578063210aaf221461055e57005b80627ffb78146103b557806301e88208146103f157806306fdde0314610441578063095ea7b31461046357005b366103b357005b005b3480156103c157600080fd5b50600b5461010090046001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b3480156103fd57600080fd5b5061042a61040c366004615225565b60056020526000908152604090205460ff8082169161010090041682565b6040805192151583529015156020830152016103e8565b34801561044d57600080fd5b50610456610d45565b6040516103e8919061526e565b34801561046f57600080fd5b5061048361047e3660046152a1565b610dd7565b60405190151581526020016103e8565b34801561049f57600080fd5b506103b36104ae366004615311565b610df1565b3480156104bf57600080fd5b506105206104ce366004615225565b6040805180820190915260008082526020820152506001600160a01b031660009081526005602090815260409182902082518084019093525460ff808216151584526101009091041615159082015290565b60408051825115158152602092830151151592810192909252016103e8565b34801561054b57600080fd5b506002545b6040519081526020016103e8565b34801561056a57600080fd5b50610550610579366004615367565b610e36565b34801561058a57600080fd5b50610483610599366004615380565b610e50565b3480156105aa57600080fd5b506104836105b93660046153c1565b610e76565b3480156105ca57600080fd5b506103b36105d9366004615367565b610ea4565b3480156105ea57600080fd5b50610550601b5481565b34801561060057600080fd5b506103b361060f366004615225565b611099565b34801561062057600080fd5b5060125b60405160ff90911681526020016103e8565b34801561064257600080fd5b50600a54610550565b34801561065757600080fd5b50600b5460ff16610483565b34801561066f57600080fd5b5061048361067e3660046152a1565b6111b5565b34801561068f57600080fd5b50600d54600e54600f54604080516001600160a01b039485168152939092166020840152908201526060016103e8565b3480156106cb57600080fd5b506103b36106da3660046152a1565b6111d7565b3480156106eb57600080fd5b506103b36106fa366004615367565b6112a8565b34801561070b57600080fd5b5061055061071a366004615367565b6112b2565b34801561072b57600080fd5b506107346112ee565b6040516103e89190615435565b34801561074d57600080fd5b506103b361134f565b34801561076257600080fd5b506019546103d4906001600160a01b031681565b34801561078257600080fd5b506103b3610791366004615225565b50565b3480156107a057600080fd5b506103b36107af366004615380565b61142a565b3480156107c057600080fd5b5061055060185481565b3480156107d657600080fd5b50601c546104839060ff1681565b3480156107f057600080fd5b506003610624565b34801561080457600080fd5b50610550610813366004615225565b6001600160a01b031660009081526020819052604090205490565b34801561083a57600080fd5b506103b36108493660046152a1565b6115e4565b34801561085a57600080fd5b506103b3610869366004615448565b6115f9565b34801561087a57600080fd5b50610883611918565b6040516103e891906154c1565b34801561089c57600080fd5b506105506108ab366004615225565b601d6020526000908152604090205481565b3480156108c957600080fd5b506103b361198d565b3480156108de57600080fd5b50610550601a5481565b3480156108f457600080fd5b506105506109033660046155ed565b6119df565b34801561091457600080fd5b506109286109233660046156da565b611ea6565b6040516103e89190815115158152602080830151908201526040808301516001600160a01b03169082015260609182015115159181019190915260800190565b34801561097457600080fd5b50610456611fa2565b34801561098957600080fd5b50610483610998366004615225565b611fb1565b3480156109a957600080fd5b506103b36109b8366004615225565b61202f565b3480156109c957600080fd5b506104836109d83660046152a1565b612177565b3480156109e957600080fd5b506103b36109f8366004615719565b6121fd565b348015610a0957600080fd5b50610483610a183660046152a1565b612292565b348015610a2957600080fd5b50610483610a38366004615225565b6001600160a01b031660009081526005602052604090205460ff1690565b348015610a6257600080fd5b50610483610a7136600461576c565b6122a0565b348015610a8257600080fd5b506103b36123d3565b348015610a9757600080fd5b50610483610aa6366004615367565b60136020526000908152604090205460ff1681565b348015610ac757600080fd5b506103b3610ad636600461586a565b612533565b348015610ae757600080fd5b506103b3610af63660046153c1565b6128ed565b348015610b0757600080fd5b506017546103d4906001600160a01b031681565b348015610b2757600080fd5b50610550610b36366004615367565b60009081526015602052604090205490565b348015610b5457600080fd5b50610550612c66565b348015610b6957600080fd5b506103b3610b783660046158a1565b612c76565b348015610b8957600080fd5b50610550610b983660046158c3565b612d95565b6103b3612dc0565b348015610bb157600080fd5b50306103d4565b348015610bc457600080fd5b50610550670de0b6b3a764000081565b348015610be057600080fd5b50610bf4610bef3660046158f1565b612dec565b604080519283526020830191909152016103e8565b348015610c1557600080fd5b506103d4610c24366004615367565b612ef3565b348015610c3557600080fd5b50610c69610c44366004615225565b601660205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016103e8565b348015610c9457600080fd5b50610550610ca3366004615367565b612f1d565b348015610cb457600080fd5b50610483610cc3366004615225565b612f41565b348015610cd457600080fd5b50601e546103d4906001600160a01b031681565b348015610cf457600080fd5b50610d18610d03366004615367565b60146020526000908152604090205460ff1681565b6040516103e8919061594d565b348015610d3157600080fd5b506103b3610d4036600461595b565b612f79565b606060088054610d5490615990565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8090615990565b8015610dcd5780601f10610da257610100808354040283529160200191610dcd565b820191906000526020600020905b815481529060010190602001808311610db057829003601f168201915b5050505050905090565b600033610de5818585613366565b60019150505b92915050565b60005b82811015610e3057610e1e848483818110610e1157610e116159c5565b90506020020135836128ed565b80610e28816159f1565b915050610df4565b50505050565b601854600090610e468184615a22565b610deb9190615a36565b600033610e5e85828561348a565b610e698585856134fe565b60019150505b9392505050565b60009182526010602090815260408084206001600160a01b0393841685529091529091206002015416151590565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa158015610ef0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f149190615a55565b6020015180610f9b5750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015610f6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f909190615ad9565b6001600160a01b0316145b610fc05760405162461bcd60e51b8152600401610fb790615af6565b60405180910390fd5b80610fca82610e36565b14610fe75760405162461bcd60e51b8152600401610fb790615b2b565b80610ff0612c66565b1015610ffb57600080fd5b6000818152601260205260409020541561101457600080fd5b6017546001600160a01b031661106c5760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f742073656e64206665657320746f206164647265737320300000006044820152606401610fb7565b601754600082815260156020526040902054601954610791926001600160a01b03918216929116906136a2565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa1580156110e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111099190615a55565b60200151806111905750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015611161573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111859190615ad9565b6001600160a01b0316145b6111ac5760405162461bcd60e51b8152600401610fb790615af6565b61079181613705565b600033610de58185856111c88383612d95565b6111d29190615b52565b613366565b3360009081526005602052604090205460ff166112365760405162461bcd60e51b815260206004820152601960248201527f455243323054656d706c6174653a204e4f54204d494e544552000000000000006044820152606401610fb7565b600a5461124c8261124660025490565b90613776565b111561129a5760405162461bcd60e51b815260206004820152601f60248201527f44617461746f6b656e54656d706c6174653a20636170206578636565646564006044820152606401610fb7565b6112a48282613782565b5050565b6107913382613841565b6000816112be83610e36565b146112db5760405162461bcd60e51b8152600401610fb790615b2b565b5060009081526012602052604090205490565b60606020805480602002602001604051908101604052809291908181526020018280548015610dcd57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611328575050505050905090565b600b546040516331a9108f60e11b8152600160048201526101009091046001600160a01b031690636352211e90602401602060405180830381865afa15801561139c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c09190615ad9565b6001600160a01b0316336001600160a01b0316146114205760405162461bcd60e51b815260206004820152601b60248201527f455243323054656d706c6174653a206e6f74204e46544f776e657200000000006044820152606401610fb7565b611428613973565b565b600d546001600160a01b031633146114975760405162461bcd60e51b815260206004820152602a60248201527f455243323054656d706c6174653a206e6f74207075626c6973684d61726b65746044820152694665654164647265737360b01b6064820152608401610fb7565b6001600160a01b0383166114fe5760405162461bcd60e51b815260206004820152602860248201527f496e76616c6964205f7075626c6973684d61726b657446656541646472657373604482015267206164647265737360c01b6064820152608401610fb7565b6001600160a01b0382166115635760405162461bcd60e51b815260206004820152602660248201527f496e76616c6964205f7075626c6973684d61726b6574466565546f6b656e206160448201526564647265737360d01b6064820152608401610fb7565b600d80546001600160a01b038581166001600160a01b03199283168117909355600e8054918616919092168117909155600f839055604080513381526020810193909352820152606081018290527f02ab4b3fc023109c2d0da394bda239166c833f63c42b71b67ed4b836dca0ddfe906080015b60405180910390a1505050565b6115ef82338361348a565b6112a48282613841565b33600090815260208190526040902054670de0b6b3a76400009081111561166e5760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f7567682064617461746f6b656e7320746f207374617274204f604482015263393232b960e11b6064820152608401610fb7565b600d5460408051338152602081018490529081018690524260608201524360808201526001600160a01b03918216918716907fe1c4fa794edfa8f619b8257a077398950357b9c6398528f94480307352f9afcc9060a00160405180910390a36000600f541180156116e95750600e546001600160a01b031615155b80156116ff5750600d546001600160a01b031615155b1561177457600e54600d54600f54611727926001600160a01b03908116923392911690613d09565b600e54600d54600f546040519081526001600160a01b0392831692909116907f4049a448ac6f0284a98d2cb9199e73605944ea5bec901a037f88c84703de82b29060200160405180910390a35b600082604001351180156117a1575060006117956040840160208501615225565b6001600160a01b031614155b80156117c3575060006117b76020840184615225565b6001600160a01b031614155b15611860576117f36117db6040840160208501615225565b336117e96020860186615225565b8560400135613d09565b6118036040830160208401615225565b6001600160a01b03166118196020840184615225565b6001600160a01b03167f6d11837f46cc09b011cf4aae09fcade046c020aac088090ae4f77ff67b707972846040013560405161185791815260200190565b60405180910390a35b6000601a5461186d612c66565b6118779190615b52565b6040805180820182526001600160a01b03898116808352602080840186815260008381526016909252949020835181546001600160a01b031916931692909217825592516001909101559192507f498f6fbe01bd9d9e4dd7aed2b61275cee780377081cbcc813dabf749f933dd49836118ee612c66565b6040805192835260208301919091520160405180910390a261190f836112a8565b50505050505050565b6060601f805480602002602001604051908101604052809291908181526020016000905b82821015611984576000848152602090819020604080518082019091526002850290910180546001600160a01b0316825260019081015482840152908352909201910161193c565b50505050905090565b600b5461010090046001600160a01b031633146114205760405162461bcd60e51b815260206004820152601060248201526f1393d5080dcc8c4810dbdb9d1c9858dd60821b6044820152606401610fb7565b600b5460405163160a792560e01b815233600482015260009161010090046001600160a01b03169063160a792590602401608060405180830381865afa158015611a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a519190615a55565b6020015180611ad85750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015611aa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acd9190615ad9565b6001600160a01b0316145b611af45760405162461bcd60e51b8152600401610fb790615af6565b611afc613e57565b601f5415611b4c5760405162461bcd60e51b815260206004820152601a60248201527f4669786564207261746520616c72656164792070726573656e740000000000006044820152606401610fb7565b82600081518110611b5f57611b5f6159c5565b60209081029190910101516019546001600160a01b03908116911614611bdc5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206372656174652046524520776974682062617365546f6b656e60448201526b109eb9ba30b5b2aa37b5b2b760a11b6064820152608401610fb7565b60006001600160a01b031683600281518110611bfa57611bfa6159c5565b60200260200101516001600160a01b03161415611c595760405162461bcd60e51b815260206004820152601b60248201527f466565436f6c6c6563746f722063616e6e6f74206265207a65726f00000000006044820152606401610fb7565b3083600381518110611c6d57611c6d6159c5565b60200260200101906001600160a01b031690816001600160a01b031681525050600082600481518110611ca257611ca26159c5565b60200260200101511115611cb957611cb984613eb1565b601e54604051638244937560e01b81526001600160a01b0390911690638244937590611ced90879087908790600401615b6a565b6020604051808303816000875af1158015611d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d309190615bd0565b905082600081518110611d4557611d456159c5565b60200260200101516001600160a01b031683600181518110611d6957611d696159c5565b60200260200101516001600160a01b03167fb3fac3ae95956dbac74e63ba8dac94081832395c8788e3049c900a7732f348058387604051611dbd9291909182526001600160a01b0316602082015260400190565b60405180910390a3604080518082019091526001600160a01b03858116825260208201838152601f805460018101825560009190915292517fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d807600294850290810180546001600160a01b0319169290941691909117909255517fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d8089091015583518491908110611e6e57611e6e6159c5565b6020026020010151601760006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610e6f6001600755565b604080516080810182526000808252602082018190529181018290526060810191909152611ed2612c66565b841115611f3a57611ee282613f87565b611eef6020830183615225565b6001600160a01b0316836001600160a01b031614611f3a5760405162461bcd60e51b815260206004820152600860248201526709cdee840c2eae8d60c31b6044820152606401610fb7565b505060009182526010602090815260408084206001600160a01b0393841685528252928390208351608081018552815460ff9081161515825260018301549382019390935260029091015492831693810193909352600160a01b909104161515606082015290565b606060098054610d5490615990565b600b5460405163160a792560e01b81526001600160a01b0383811660048301526000926101009004169063160a792590602401608060405180830381865afa158015612001573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120259190615a55565b6020015192915050565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa15801561207b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061209f9190615a55565b60200151806121265750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa1580156120f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061211b9190615ad9565b6001600160a01b0316145b6121425760405162461bcd60e51b8152600401610fb790615af6565b6001600160a01b03811661215557600080fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b600033816121858286612d95565b9050838110156121e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610fb7565b6121f28286868403613366565b506001949350505050565b612205613e57565b601c5460ff16156122415760405162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b6044820152606401610fb7565b61224a8161414d565b61225d3033670de0b6b3a76400006134fe565b61228861226d6020840184615225565b602084013561227f6040860186615be9565b856060016115f9565b6112a46001600755565b600033610de58185856134fe565b600b5460009060ff16156123105760405162461bcd60e51b815260206004820152603160248201527f455243323054656d706c6174653a20746f6b656e20696e7374616e636520616c6044820152701c9958591e481a5b9a5d1a585b1a5e9959607a1b6064820152608401610fb7565b6123c461231d8b8d615c60565b8a8a8080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808e0282810182019093528d82529093508d92508c91829185019084908082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b9182918501908490808284376000920191909152506123bf92508991508a9050615ce7565b61457c565b9b9a5050505050505050505050565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa15801561241f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124439190615a55565b60200151806124ca5750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa15801561249b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124bf9190615ad9565b6001600160a01b0316145b6124e65760405162461bcd60e51b8152600401610fb790615af6565b601c805460ff8082161560ff1990921682179092556040519116151581527f0e2fb031ee032dc02d8011dc50b816eb450cf856abd8261680dac74f72165bd29060200160405180910390a1565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa15801561257f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125a39190615a55565b602001518061262a5750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa1580156125fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261f9190615ad9565b6001600160a01b0316145b6126465760405162461bcd60e51b8152600401610fb790615af6565b8261265084610e36565b1461266d5760405162461bcd60e51b8152600401610fb790615b2b565b612675612c66565b8311156126ba5760405162461bcd60e51b81526020600482015260136024820152721d1bdbc819585c9b1e481d1bc81cdd589b5a5d606a1b6044820152606401610fb7565b60008381526014602052604081205460ff1660028111156126dd576126dd615915565b1461271c5760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e481cd95d1d1b1959608a1b6044820152606401610fb7565b6000601b548461272c9190615b52565b612734612c66565b11905081806127405750805b15612763576000848152601460205260409020805460ff19166002179055612884565b6000848152601360209081526040808320805460ff199081168815151790915560148352818420805490911660011790556012909152902054158015906127ea57508280156127be5750600084815260116020526040902054155b806127ea5750821580156127ea5750600084815260126020908152604080832054601190925290912054145b15612884576017546001600160a01b03166128575760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742073656e6420736c6173686564207374616b657320746f2061646044820152660647265737320360cc1b6064820152608401610fb7565b601754600085815260126020526040902054601954612884926001600160a01b03918216929116906136a2565b600084815260146020908152604080832054601183528184205460129093529281902054905187937f099b391ebd8dcbcb81071b93d01c36a0c005922aa377ce639fbab848ad3ba9d9936128df93899360ff90931692615d62565b60405180910390a250505050565b6128f5613e57565b816128ff83610e36565b1461291c5760405162461bcd60e51b8152600401610fb790615b2b565b6129268282610e76565b6129625760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd081cdd589b5a5d1d1959609a1b6044820152606401610fb7565b60008281526010602090815260408083206001600160a01b038086168552908352928190208151608081018352815460ff9081161515825260018301549482019490945260029091015493841691810191909152600160a01b9092041615801560608301526129d15750612288565b601b546129de9084615b52565b6129e6612c66565b118015612a13575060008381526014602052604081205460ff166002811115612a1157612a11615915565b145b15612a32576000838152601460205260409020805460ff191660021790555b60008381526014602052604081205460ff166002811115612a5557612a55615915565b1415612a615750612288565b60008381526010602090815260408083206001600160a01b038616845290915281206002908101805460ff60a01b1916600160a01b17905560008581526014602052604090205460ff166002811115612abc57612abc615915565b1415612acd57506020810151612b8b565b815160008581526013602052604090205460ff1615159015151415612b8b5760008481526013602052604081205460ff16612b2c57600085815260116020908152604080832054601290925290912054612b279190615d8a565b612b3c565b6000858152601160205260409020545b90508015612b89576000858152601560209081526040808320546012909252909120548290612b6c908390615b52565b8560200151612b7b9190615a36565b612b859190615a22565b9250505b505b60208083015183516000878152601384526040808220546012865281832054601190965291205488946001600160a01b038916947f095487dd6dbd377778c598664198287a051bce23f419565bd4ce4a2b37c63c809490938893919260ff90911691612bff90670de0b6b3a7640000615a36565b612c099190615a22565b60008c81526014602052604090819020549051612c2e96959493929160ff1690615da1565b60405180910390a38015612c5a576040820151601954612c5a916001600160a01b0390911690836136a2565b50506112a46001600755565b6000612c7142610e36565b905090565b600b5460405163160a792560e01b81523360048201526101009091046001600160a01b03169063160a792590602401608060405180830381865afa158015612cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce69190615a55565b6020015180612d6d5750600b546040516331a9108f60e11b815260016004820152339161010090046001600160a01b031690636352211e90602401602060405180830381865afa158015612d3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d629190615ad9565b6001600160a01b0316145b612d895760405162461bcd60e51b8152600401610fb790615af6565b6112a460008383614978565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60405130904780156108fc02916000818181858888f19350505050158015610791573d6000803e3d6000fd5b60008083612df985610e36565b14612e165760405162461bcd60e51b8152600401610fb790615b2b565b612e1e612c66565b841115612ece57612e2e83613f87565b612e3e610cc36020850185615225565b612e7c5760405162461bcd60e51b815260206004820152600f60248201526e27379039bab139b1b934b83a34b7b760891b6044820152606401610fb7565b83612e88610ca3612c66565b11612ece5760405162461bcd60e51b81526020600482015260166024820152751c1c99591a58dd1a5bdb9cc81b9bdd0818db1bdcd95960521b6044820152606401610fb7565b50506000828152601160209081526040808320546012909252909120545b9250929050565b60068181548110612f0357600080fd5b6000918252602090912001546001600160a01b0316905081565b60006018546002612f2e9190615a36565b612f3783610e36565b610deb9190615b52565b6001600160a01b038116600090815260166020526040812060010154612f65612c66565b10612f71576000610deb565b600192915050565b612f81613e57565b80612f8b82610e36565b14612fa85760405162461bcd60e51b8152600401610fb790615b2b565b601c5460ff1615612fe45760405162461bcd60e51b81526020600482015260066024820152651c185d5cd95960d21b6044820152606401610fb7565b612fed42612f1d565b8110156130315760405162461bcd60e51b81526020600482015260126024820152711d1bdbc81b185d19481d1bc81cdd589b5a5d60721b6044820152606401610fb7565b604051828152819033907f1adf2f5dd35a2da881dc68ca4d293ab5f8c12b143741836d06e273a5dbf58c539060200160405180910390a36130728133610e76565b15613258576000818152601060209081526040808320338452909152812060018101805491549290559060ff16806130ab5760006130ae565b60015b6130bb9060ff1683615a36565b600084815260116020526040812080549091906130d9908490615d8a565b9091555050600083815260126020526040812080548492906130fc908490615d8a565b9091555050818411156131365760006131158386615d8a565b601954909150613130906001600160a01b0316333084614a1b565b506131c3565b818410156131c357600061314a8584615d8a565b60195460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb906044016020604051808303816000875af115801561319c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131c09190615dd3565b50505b60008381526010602090815260408083203384529091529020805460ff1916861515178155600101849055846131fa5760006131fd565b60015b61320a9060ff1685615a36565b60008481526011602052604081208054909190613228908490615b52565b90915550506000838152601260205260408120805486929061324b908490615b52565b9091555061335792505050565b6040805160808101825284151581526020808201858152338385018181526000606086018181528882526010865287822093825292909452949092209251835460ff191690151517835551600183015591516002909101805492516001600160a01b039092166001600160a81b031990931692909217600160a01b91151591909102179055826132e95760006132ec565b60015b6132f99060ff1683615a36565b60008281526011602052604081208054909190613317908490615b52565b90915550506000818152601260205260408120805484929061333a908490615b52565b9091555050601954613357906001600160a01b0316333085614a1b565b6133616001600755565b505050565b6001600160a01b0383166133c85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610fb7565b6001600160a01b0382166134295760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610fb7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006134968484612d95565b90506000198114610e3057818110156134f15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610fb7565b610e308484848403613366565b6001600160a01b0383166135625760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610fb7565b6001600160a01b0382166135c45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610fb7565b6001600160a01b0383166000908152602081905260409020548181101561363c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610fb7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e30565b6040516001600160a01b03831660248201526044810182905261336190849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152614a53565b6001600160a01b03811660008181526005602052604090819020805460ff191681559051909133917fefa2735987005aaa89c050c0ff8cc9ae7d9079d19382081c429130f98c52d480906137659042904390918252602082015260400190565b60405180910390a36112a482614b25565b6000610e6f8284615b52565b6001600160a01b0382166137d85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610fb7565b80600260008282546137ea9190615b52565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166138a15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610fb7565b6001600160a01b038216600090815260208190526040902054818110156139155760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610fb7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b602054601f5460009161398591615b52565b9050600080826001600160401b038111156139a2576139a2615519565b6040519080825280602002602001820160405280156139cb578160200160208202803683370190505b50905060005b601f54811015613cb1576000601f82815481106139f0576139f06159c5565b60009182526020822060029091020154601f80546001600160a01b039092169350829182918591634c87087d919088908110613a2e57613a2e6159c5565b9060005260206000209060020201600101546040518263ffffffff1660e01b8152600401613a5e91815260200190565b61018060405180830381865afa158015613a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613aa09190615df0565b9b509b509b505050505050505050506000821115613b4657836001600160a01b031663f32f9476601f8781548110613ada57613ada6159c5565b906000526020600020906002020160010154846040518363ffffffff1660e01b8152600401613b13929190918252602082015260400190565b600060405180830381600087803b158015613b2d57600080fd5b505af1158015613b41573d6000803e3d6000fd5b505050505b8215613bda57836001600160a01b031663c612e48a601f8781548110613b6e57613b6e6159c5565b906000526020600020906002020160010154856040518363ffffffff1660e01b8152600401613ba7929190918252602082015260400190565b600060405180830381600087803b158015613bc157600080fd5b505af1158015613bd5573d6000803e3d6000fd5b505050505b613c1d601f8681548110613bf057613bf06159c5565b600091825260208083206002909202909101546001600160a01b0316825260059052604090205460ff1690565b8015613c2b57506001811515145b15613c9a57601f8581548110613c4357613c436159c5565b600091825260209091206002909102015486516001600160a01b0390911690879089908110613c7457613c746159c5565b6001600160a01b039092166020928302919091019091015286613c96816159f1565b9750505b505050508080613ca9906159f1565b9150506139d1565b613cb9614c73565b50600c80546001600160a01b031916905560005b82811015610e3057613cf7828281518110613cea57613cea6159c5565b6020026020010151613eb1565b80613d01816159f1565b915050613ccd565b6040516370a0823160e01b81526001600160a01b038381166004830152600091908616906370a0823190602401602060405180830381865afa158015613d53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d779190615bd0565b9050613d8e6001600160a01b038616858585614a1b565b613d988183613776565b6040516370a0823160e01b81526001600160a01b0385811660048301528716906370a0823190602401602060405180830381865afa158015613dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e029190615bd0565b1015613e505760405162461bcd60e51b815260206004820152601a60248201527f5472616e7366657220616d6f756e7420697320746f6f206c6f770000000000006044820152606401610fb7565b5050505050565b60026007541415613eaa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610fb7565b6002600755565b6001600160a01b03811615610791576001600160a01b0381166000908152600560205260409020805460ff1615613f2a5760405162461bcd60e51b815260206004820152601d60248201527f4552433230526f6c65733a2020414c52454144592041204d494e5445520000006044820152606401610fb7565b805460ff19166001178155613f3e82614d22565b6040805142815243602082015233916001600160a01b038516917f4f7e100eb1ee13e903798bd0d6aa854152e07eb05544f392b9409c12935c8095910160405180910390a35050565b60408051808201909152601c81527f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020808301919091526000908290613fd090850185615225565b60405160609190911b6bffffffffffffffffffffffff191660208201526080850135603482015260540160405160208183030381529060405280519060200120604051602001614021929190615ead565b60405160208183030381529060405280519060200120905060006001828560200160208101906140519190615ecf565b6040805160008152602081018083529390935260ff90911682820152860135606080830191909152860135608082015260a0016020604051602081039080840390855afa1580156140a6573d6000803e3d6000fd5b5050604051601f19015191506140c190506020850185615225565b6001600160a01b0316816001600160a01b0316146141105760405162461bcd60e51b815260206004820152600c60248201526b092dcecc2d8d2c840c2eae8d60a31b6044820152606401610fb7565b42846080013511610e305760405162461bcd60e51b8152602060048201526007602482015266115e1c1a5c995960ca1b6044820152606401610fb7565b600061415c6020830183615225565b90506000806000836001600160a01b0316634c87087d86602001356040518263ffffffff1660e01b815260040161419591815260200190565b61018060405180830381865afa1580156141b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141d79190615df0565b505050505050955050945050935050306001600160a01b0316836001600160a01b0316146142575760405162461bcd60e51b815260206004820152602760248201527f5468697320466978656452617465206973206e6f742070726f766964696e67206044820152661d1a1a5cc8111560ca1b6064820152608401610fb7565b604051636e8de4b560e11b815260208601356004820152670de0b6b3a76400006024820152606086013560448201526000906001600160a01b0386169063dd1bc96a90606401608060405180830381865afa1580156142ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142de9190615ef2565b505050905085604001358111156143475760405162461bcd60e51b815260206004820152602760248201527f46697865645261746545786368616e67653a20546f6f206d616e79206261736560448201526620746f6b656e7360c81b6064820152608401610fb7565b61435383333084613d09565b6143746143636020880188615225565b6001600160a01b0385169083614dd9565b6001600160a01b0385166368c4b7e96020880135670de0b6b3a7640000846143a260a08c0160808d01615225565b6040516001600160e01b031960e087901b1681526004810194909452602484019290925260448301526001600160a01b031660648201526060890135608482015260a401600060405180830381600087803b15801561440057600080fd5b505af1158015614414573d6000803e3d6000fd5b505030600090815260208190526040902054670de0b6b3a76400009250905010156144815760405162461bcd60e51b815260206004820152601f60248201527f556e61626c6520746f206275792044542066726f6d20466978656452617465006044820152606401610fb7565b604051634c87087d60e01b8152602087013560048201526000906001600160a01b03871690634c87087d9060240161018060405180830381865afa1580156144cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144f19190615df0565b509a5050505050505050505050600081111561190f57604051637997ca3b60e11b815260208801356004820152602481018290526001600160a01b0387169063f32f947690604401600060405180830381600087803b15801561455357600080fd5b505af1158015614567573d6000803e3d6000fd5b5050505061190f614576612c66565b82614e8b565b60008084600081518110614592576145926159c5565b60200260200101519050846001815181106145af576145af6159c5565b6020908102919091010151601e80546001600160a01b0319166001600160a01b0392831617905581166146395760405162461bcd60e51b815260206004820152602c60248201527f455243323054656d706c6174653a20496e76616c6964206d696e7465722c202060448201526b7a65726f206164647265737360a01b6064820152608401610fb7565b601e546001600160a01b03166146a55760405162461bcd60e51b815260206004820152602b60248201527f455243323054656d706c6174653a20496e76616c696420726f757465722c207a60448201526a65726f206164647265737360a81b6064820152608401610fb7565b836000815181106146b8576146b86159c5565b60200260200101516000141561471c5760405162461bcd60e51b8152602060048201526024808201527f44617461746f6b656e54656d706c6174653a20496e76616c6964206361702076604482015263616c756560e01b6064820152608401610fb7565b8360008151811061472f5761472f6159c5565b6020026020010151600a8190555086600081518110614750576147506159c5565b60200260200101516008908051906020019061476d92919061515d565b5086600181518110614781576147816159c5565b60200260200101516009908051906020019061479e92919061515d565b50600b805460ff196001600160a01b03841661010002166001600160a81b03199091161760011790556147d030614f75565b856002815181106147e3576147e36159c5565b6020026020010151600d60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555085600381518110614824576148246159c5565b6020026020010151600e60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555083600181518110614865576148656159c5565b602090810291909101810151600f819055600d54600e54604080513381526001600160a01b039384169581019590955291169083015260608201527f02ab4b3fc023109c2d0da394bda239166c833f63c42b71b67ed4b836dca0ddfe9060800160405180910390a1856004815181106148e0576148e06159c5565b6020026020010151601960006101000a8154816001600160a01b0302191690836001600160a01b0316021790555061496784600281518110614924576149246159c5565b60200260200101518560038151811061493f5761493f6159c5565b60200260200101518660048151811061495a5761495a6159c5565b6020026020010151614978565b5050600b5460ff1695945050505050565b6149828383615f28565b156149b35760405162461bcd60e51b81526020600482015260016024820152602560f81b6044820152606401610fb7565b6018546149c05760188390555b601a829055601b819055601854601954604080519283526020830185905282018390526001600160a01b031660608201527fc4526e958dc74330dcd6698fa6f869171a8c97b4036026118c263688264099d5906080016115d7565b6040516001600160a01b0380851660248301528316604482015260648101829052610e309085906323b872dd60e01b906084016136ce565b6000614aa8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316614fd09092919063ffffffff16565b8051909150156133615780806020019051810190614ac69190615dd3565b6133615760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610fb7565b6001600160a01b0381166000908152600560205260409020805460ff16158015614b5657508054610100900460ff16155b156112a45760005b600654811015614bb757826001600160a01b031660068281548110614b8557614b856159c5565b6000918252602090912001546001600160a01b03161415614ba557614bb7565b80614baf816159f1565b915050614b5e565b6006548110156133615760068054614bd190600190615d8a565b81548110614be157614be16159c5565b600091825260209091200154600680546001600160a01b039092169183908110614c0d57614c0d6159c5565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506006805480614c4c57614c4c615f3c565b600082815260209020810160001990810180546001600160a01b0319169055019055505050565b60005b600654811015614cd95760006005600060068481548110614c9957614c996159c5565b60009182526020808320909101546001600160a01b031683528201929092526040019020805461ffff191690555080614cd1816159f1565b915050614c76565b50614ce6600660006151e1565b6040805142815243602082015233917f712bc71db81927a76b8bf1ea346247bb0ad58f18e4e5c1bd4aa0ec6573e02a2b910160405180910390a2565b60005b600654811015614d7e57816001600160a01b031660068281548110614d4c57614d4c6159c5565b6000918252602090912001546001600160a01b03161415614d6c57614d7e565b80614d76816159f1565b915050614d25565b6006548114156112a457600680546001810182556000919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0384166001600160a01b03199091161790555050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e90604401602060405180830381865afa158015614e2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614e4e9190615bd0565b614e589190615b52565b6040516001600160a01b038516602482015260448101829052909150610e3090859063095ea7b360e01b906064016136ce565b80156112a4576000601854601a54614ea39190615a22565b90506001811015614eb2575060015b6000614ebe8284615a22565b905060005b82811015614f1d57816015600060185484614ede9190615a36565b614ee89089615b52565b81526020019081526020016000206000828254614f059190615b52565b90915550819050614f15816159f1565b915050614ec3565b506018546040805185815260208101879052808201849052606081018590526080810192909252517f12246f3e621dc7f930e714f57b7328c069007c690cbe9f328090bd161e7ff3b69181900360a00190a150505050565b600c80546001600160a01b0319166001600160a01b0383169081179091556040805142815243602082015233917f4d7694d695c57cc54947177c8e8a0e61aae664e9223492a798c32fadfc6419cc910160405180910390a350565b6060614fdf8484600085614fe7565b949350505050565b6060824710156150485760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610fb7565b600080866001600160a01b031685876040516150649190615f52565b60006040518083038185875af1925050503d80600081146150a1576040519150601f19603f3d011682016040523d82523d6000602084013e6150a6565b606091505b50915091506150b7878383876150c2565b979650505050505050565b6060831561512e578251615127576001600160a01b0385163b6151275760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610fb7565b5081614fdf565b614fdf83838151156151435781518083602001fd5b8060405162461bcd60e51b8152600401610fb7919061526e565b82805461516990615990565b90600052602060002090601f01602090048101928261518b57600085556151d1565b82601f106151a457805160ff19168380011785556151d1565b828001600101855582156151d1579182015b828111156151d15782518255916020019190600101906151b6565b506151dd9291506151fb565b5090565b508054600082559060005260206000209081019061079191905b5b808211156151dd57600081556001016151fc565b6001600160a01b038116811461079157600080fd5b60006020828403121561523757600080fd5b8135610e6f81615210565b60005b8381101561525d578181015183820152602001615245565b83811115610e305750506000910152565b602081526000825180602084015261528d816040850160208701615242565b601f01601f19169190910160400192915050565b600080604083850312156152b457600080fd5b82356152bf81615210565b946020939093013593505050565b60008083601f8401126152df57600080fd5b5081356001600160401b038111156152f657600080fd5b6020830191508360208260051b8501011115612eec57600080fd5b60008060006040848603121561532657600080fd5b83356001600160401b0381111561533c57600080fd5b615348868287016152cd565b909450925050602084013561535c81615210565b809150509250925092565b60006020828403121561537957600080fd5b5035919050565b60008060006060848603121561539557600080fd5b83356153a081615210565b925060208401356153b081615210565b929592945050506040919091013590565b600080604083850312156153d457600080fd5b8235915060208301356153e681615210565b809150509250929050565b600081518084526020808501945080840160005b8381101561542a5781516001600160a01b031687529582019590820190600101615405565b509495945050505050565b602081526000610e6f60208301846153f1565b60008060008084860360c081121561545f57600080fd5b853561546a81615210565b94506020860135935060408601356001600160401b0381111561548c57600080fd5b8601610100818903121561549f57600080fd5b92506060605f19820112156154b357600080fd5b509295919450926060019150565b602080825282518282018190526000919060409081850190868401855b8281101561550c57815180516001600160a01b031685528601518685015292840192908501906001016154de565b5091979650505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561555757615557615519565b604052919050565b60006001600160401b0382111561557857615578615519565b5060051b60200190565b600082601f83011261559357600080fd5b813560206155a86155a38361555f565b61552f565b82815260059290921b840181019181810190868411156155c757600080fd5b8286015b848110156155e257803583529183019183016155cb565b509695505050505050565b60008060006060848603121561560257600080fd5b833561560d81615210565b92506020848101356001600160401b038082111561562a57600080fd5b818701915087601f83011261563e57600080fd5b813561564c6155a38261555f565b81815260059190911b8301840190848101908a83111561566b57600080fd5b938501935b8285101561569257843561568381615210565b82529385019390850190615670565b9650505060408701359250808311156156aa57600080fd5b50506156b886828701615582565b9150509250925092565b600060a082840312156156d457600080fd5b50919050565b600080600060e084860312156156ef57600080fd5b83359250602084013561570181615210565b915061571085604086016156c2565b90509250925092565b60008060c0838503121561572c57600080fd5b82356001600160401b0381111561574257600080fd5b830160c0818603121561575457600080fd5b915061576384602085016156c2565b90509250929050565b60008060008060008060008060008060a08b8d03121561578b57600080fd5b8a356001600160401b03808211156157a257600080fd5b6157ae8e838f016152cd565b909c509a5060208d01359150808211156157c757600080fd5b6157d38e838f016152cd565b909a50985060408d01359150808211156157ec57600080fd5b6157f88e838f016152cd565b909850965060608d013591508082111561581157600080fd5b61581d8e838f016152cd565b909650945060808d013591508082111561583657600080fd5b506158438d828e016152cd565b915080935050809150509295989b9194979a5092959850565b801515811461079157600080fd5b60008060006060848603121561587f57600080fd5b8335925060208401356158918161585c565b9150604084013561535c8161585c565b600080604083850312156158b457600080fd5b50508035926020909101359150565b600080604083850312156158d657600080fd5b82356158e181615210565b915060208301356153e681615210565b60008060c0838503121561590457600080fd5b8235915061576384602085016156c2565b634e487b7160e01b600052602160045260246000fd5b6003811061594957634e487b7160e01b600052602160045260246000fd5b9052565b60208101610deb828461592b565b60008060006060848603121561597057600080fd5b833561597b8161585c565b95602085013595506040909401359392505050565b600181811c908216806159a457607f821691505b602082108114156156d457634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415615a0557615a056159db565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082615a3157615a31615a0c565b500490565b6000816000190483118215151615615a5057615a506159db565b500290565b600060808284031215615a6757600080fd5b604051608081018181106001600160401b0382111715615a8957615a89615519565b6040528251615a978161585c565b81526020830151615aa78161585c565b60208201526040830151615aba8161585c565b60408201526060830151615acd8161585c565b60608201529392505050565b600060208284031215615aeb57600080fd5b8151610e6f81615210565b6020808252818101527f455243323054656d706c6174653a204e4f54204445504c4f59455220524f4c45604082015260600190565b6020808252600d908201526c0d2dcecc2d8d2c840cae0dec6d609b1b604082015260600190565b60008219821115615b6557615b656159db565b500190565b6001600160a01b038416815260606020808301829052600091615b8f908401866153f1565b838103604085015284518082528286019183019060005b81811015615bc257835183529284019291840191600101615ba6565b509098975050505050505050565b600060208284031215615be257600080fd5b5051919050565b6000823560fe19833603018112615bff57600080fd5b9190910192915050565b60006001600160401b03831115615c2257615c22615519565b615c35601f8401601f191660200161552f565b9050828152838383011115615c4957600080fd5b828260208301376000602084830101529392505050565b6000615c6e6155a38461555f565b80848252602080830192508560051b850136811115615c8c57600080fd5b855b81811015615cdb5780356001600160401b03811115615cad5760008081fd5b870136601f820112615cbf5760008081fd5b615ccd368235868401615c09565b865250938201938201615c8e565b50919695505050505050565b6000615cf56155a38461555f565b80848252602080830192508560051b850136811115615d1357600080fd5b855b81811015615cdb5780356001600160401b03811115615d345760008081fd5b870136601f820112615d465760008081fd5b615d54368235868401615c09565b865250938201938201615d15565b841515815260808101615d78602083018661592b565b60408201939093526060015292915050565b600082821015615d9c57615d9c6159db565b500390565b86815260208101869052841515604082015283151560608201526080810183905260c081016150b760a083018461592b565b600060208284031215615de557600080fd5b8151610e6f8161585c565b6000806000806000806000806000806000806101808d8f031215615e1357600080fd5b8c51615e1e81615210565b60208e0151909c50615e2f81615210565b60408e015160608f0151919c509a50615e4781615210565b8099505060808d0151975060a08d0151965060c08d0151615e678161585c565b8096505060e08d015194506101008d015193506101208d015192506101408d015191506101608d0151615e998161585c565b809150509295989b509295989b509295989b565b60008351615ebf818460208801615242565b9190910191825250602001919050565b600060208284031215615ee157600080fd5b813560ff81168114610e6f57600080fd5b60008060008060808587031215615f0857600080fd5b505082516020840151604085015160609095015191969095509092509050565b600082615f3757615f37615a0c565b500690565b634e487b7160e01b600052603160045260246000fd5b60008251615bff81846020870161524256fea26469706673582212209de236efcfbe455792ffa9bf3ed98a84286e0b20abe2dc015a7e7f9c51c7918064736f6c634300080c0033",
|
|
2111
|
+
"linkReferences": {},
|
|
2112
|
+
"deployedLinkReferences": {}
|
|
2113
|
+
}
|