@keep-network/tbtc-v2 0.1.1-dev.2 → 0.1.1-dev.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/TBTC.json +3 -3
- package/artifacts/TBTCToken.json +3 -3
- package/artifacts/VendingMachine.json +10 -10
- package/artifacts/solcInputs/{02b9e185d8beb23545e98201d474fc6b.json → cebfa5efa019cb9c8c5e23e38703b883.json} +27 -21
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
- package/build/contracts/bank/Bank.sol/Bank.dbg.json +4 -0
- package/build/contracts/bank/Bank.sol/Bank.json +496 -0
- package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
- package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +4 -0
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.json +145 -0
- package/contracts/bank/Bank.sol +339 -0
- package/contracts/vault/TBTCVault.sol +104 -0
- package/package.json +2 -2
|
@@ -0,0 +1,496 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "Bank",
|
|
4
|
+
"sourceName": "contracts/bank/Bank.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"stateMutability": "nonpayable",
|
|
9
|
+
"type": "constructor"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"anonymous": false,
|
|
13
|
+
"inputs": [
|
|
14
|
+
{
|
|
15
|
+
"indexed": true,
|
|
16
|
+
"internalType": "address",
|
|
17
|
+
"name": "owner",
|
|
18
|
+
"type": "address"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"indexed": true,
|
|
22
|
+
"internalType": "address",
|
|
23
|
+
"name": "spender",
|
|
24
|
+
"type": "address"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"indexed": false,
|
|
28
|
+
"internalType": "uint256",
|
|
29
|
+
"name": "amount",
|
|
30
|
+
"type": "uint256"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"name": "BalanceApproved",
|
|
34
|
+
"type": "event"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"anonymous": false,
|
|
38
|
+
"inputs": [
|
|
39
|
+
{
|
|
40
|
+
"indexed": true,
|
|
41
|
+
"internalType": "address",
|
|
42
|
+
"name": "owner",
|
|
43
|
+
"type": "address"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"indexed": false,
|
|
47
|
+
"internalType": "uint256",
|
|
48
|
+
"name": "amount",
|
|
49
|
+
"type": "uint256"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"name": "BalanceDecreased",
|
|
53
|
+
"type": "event"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"anonymous": false,
|
|
57
|
+
"inputs": [
|
|
58
|
+
{
|
|
59
|
+
"indexed": true,
|
|
60
|
+
"internalType": "address",
|
|
61
|
+
"name": "owner",
|
|
62
|
+
"type": "address"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"indexed": false,
|
|
66
|
+
"internalType": "uint256",
|
|
67
|
+
"name": "amount",
|
|
68
|
+
"type": "uint256"
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"name": "BalanceIncreased",
|
|
72
|
+
"type": "event"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"anonymous": false,
|
|
76
|
+
"inputs": [
|
|
77
|
+
{
|
|
78
|
+
"indexed": true,
|
|
79
|
+
"internalType": "address",
|
|
80
|
+
"name": "from",
|
|
81
|
+
"type": "address"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"indexed": true,
|
|
85
|
+
"internalType": "address",
|
|
86
|
+
"name": "to",
|
|
87
|
+
"type": "address"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"indexed": false,
|
|
91
|
+
"internalType": "uint256",
|
|
92
|
+
"name": "amount",
|
|
93
|
+
"type": "uint256"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"name": "BalanceTransferred",
|
|
97
|
+
"type": "event"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"anonymous": false,
|
|
101
|
+
"inputs": [
|
|
102
|
+
{
|
|
103
|
+
"indexed": false,
|
|
104
|
+
"internalType": "address",
|
|
105
|
+
"name": "newBridge",
|
|
106
|
+
"type": "address"
|
|
107
|
+
}
|
|
108
|
+
],
|
|
109
|
+
"name": "BridgeUpdated",
|
|
110
|
+
"type": "event"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"anonymous": false,
|
|
114
|
+
"inputs": [
|
|
115
|
+
{
|
|
116
|
+
"indexed": true,
|
|
117
|
+
"internalType": "address",
|
|
118
|
+
"name": "previousOwner",
|
|
119
|
+
"type": "address"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"indexed": true,
|
|
123
|
+
"internalType": "address",
|
|
124
|
+
"name": "newOwner",
|
|
125
|
+
"type": "address"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"name": "OwnershipTransferred",
|
|
129
|
+
"type": "event"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"inputs": [],
|
|
133
|
+
"name": "DOMAIN_SEPARATOR",
|
|
134
|
+
"outputs": [
|
|
135
|
+
{
|
|
136
|
+
"internalType": "bytes32",
|
|
137
|
+
"name": "",
|
|
138
|
+
"type": "bytes32"
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"stateMutability": "view",
|
|
142
|
+
"type": "function"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"inputs": [],
|
|
146
|
+
"name": "PERMIT_TYPEHASH",
|
|
147
|
+
"outputs": [
|
|
148
|
+
{
|
|
149
|
+
"internalType": "bytes32",
|
|
150
|
+
"name": "",
|
|
151
|
+
"type": "bytes32"
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"stateMutability": "view",
|
|
155
|
+
"type": "function"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"inputs": [
|
|
159
|
+
{
|
|
160
|
+
"internalType": "address",
|
|
161
|
+
"name": "",
|
|
162
|
+
"type": "address"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"internalType": "address",
|
|
166
|
+
"name": "",
|
|
167
|
+
"type": "address"
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"name": "allowance",
|
|
171
|
+
"outputs": [
|
|
172
|
+
{
|
|
173
|
+
"internalType": "uint256",
|
|
174
|
+
"name": "",
|
|
175
|
+
"type": "uint256"
|
|
176
|
+
}
|
|
177
|
+
],
|
|
178
|
+
"stateMutability": "view",
|
|
179
|
+
"type": "function"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"inputs": [
|
|
183
|
+
{
|
|
184
|
+
"internalType": "address",
|
|
185
|
+
"name": "spender",
|
|
186
|
+
"type": "address"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"internalType": "uint256",
|
|
190
|
+
"name": "amount",
|
|
191
|
+
"type": "uint256"
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
"name": "approveBalance",
|
|
195
|
+
"outputs": [],
|
|
196
|
+
"stateMutability": "nonpayable",
|
|
197
|
+
"type": "function"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"inputs": [
|
|
201
|
+
{
|
|
202
|
+
"internalType": "address",
|
|
203
|
+
"name": "",
|
|
204
|
+
"type": "address"
|
|
205
|
+
}
|
|
206
|
+
],
|
|
207
|
+
"name": "balanceOf",
|
|
208
|
+
"outputs": [
|
|
209
|
+
{
|
|
210
|
+
"internalType": "uint256",
|
|
211
|
+
"name": "",
|
|
212
|
+
"type": "uint256"
|
|
213
|
+
}
|
|
214
|
+
],
|
|
215
|
+
"stateMutability": "view",
|
|
216
|
+
"type": "function"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"inputs": [],
|
|
220
|
+
"name": "bridge",
|
|
221
|
+
"outputs": [
|
|
222
|
+
{
|
|
223
|
+
"internalType": "address",
|
|
224
|
+
"name": "",
|
|
225
|
+
"type": "address"
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"stateMutability": "view",
|
|
229
|
+
"type": "function"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"inputs": [],
|
|
233
|
+
"name": "cachedChainId",
|
|
234
|
+
"outputs": [
|
|
235
|
+
{
|
|
236
|
+
"internalType": "uint256",
|
|
237
|
+
"name": "",
|
|
238
|
+
"type": "uint256"
|
|
239
|
+
}
|
|
240
|
+
],
|
|
241
|
+
"stateMutability": "view",
|
|
242
|
+
"type": "function"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"inputs": [],
|
|
246
|
+
"name": "cachedDomainSeparator",
|
|
247
|
+
"outputs": [
|
|
248
|
+
{
|
|
249
|
+
"internalType": "bytes32",
|
|
250
|
+
"name": "",
|
|
251
|
+
"type": "bytes32"
|
|
252
|
+
}
|
|
253
|
+
],
|
|
254
|
+
"stateMutability": "view",
|
|
255
|
+
"type": "function"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"inputs": [
|
|
259
|
+
{
|
|
260
|
+
"internalType": "uint256",
|
|
261
|
+
"name": "amount",
|
|
262
|
+
"type": "uint256"
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
"name": "decreaseBalance",
|
|
266
|
+
"outputs": [],
|
|
267
|
+
"stateMutability": "nonpayable",
|
|
268
|
+
"type": "function"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"inputs": [
|
|
272
|
+
{
|
|
273
|
+
"internalType": "address",
|
|
274
|
+
"name": "spender",
|
|
275
|
+
"type": "address"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"internalType": "uint256",
|
|
279
|
+
"name": "subtractedValue",
|
|
280
|
+
"type": "uint256"
|
|
281
|
+
}
|
|
282
|
+
],
|
|
283
|
+
"name": "decreaseBalanceAllowance",
|
|
284
|
+
"outputs": [],
|
|
285
|
+
"stateMutability": "nonpayable",
|
|
286
|
+
"type": "function"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"inputs": [
|
|
290
|
+
{
|
|
291
|
+
"internalType": "address",
|
|
292
|
+
"name": "recipient",
|
|
293
|
+
"type": "address"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"internalType": "uint256",
|
|
297
|
+
"name": "amount",
|
|
298
|
+
"type": "uint256"
|
|
299
|
+
}
|
|
300
|
+
],
|
|
301
|
+
"name": "increaseBalance",
|
|
302
|
+
"outputs": [],
|
|
303
|
+
"stateMutability": "nonpayable",
|
|
304
|
+
"type": "function"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"inputs": [
|
|
308
|
+
{
|
|
309
|
+
"internalType": "address",
|
|
310
|
+
"name": "spender",
|
|
311
|
+
"type": "address"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"internalType": "uint256",
|
|
315
|
+
"name": "addedValue",
|
|
316
|
+
"type": "uint256"
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
"name": "increaseBalanceAllowance",
|
|
320
|
+
"outputs": [],
|
|
321
|
+
"stateMutability": "nonpayable",
|
|
322
|
+
"type": "function"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"inputs": [
|
|
326
|
+
{
|
|
327
|
+
"internalType": "address[]",
|
|
328
|
+
"name": "recipients",
|
|
329
|
+
"type": "address[]"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"internalType": "uint256[]",
|
|
333
|
+
"name": "amounts",
|
|
334
|
+
"type": "uint256[]"
|
|
335
|
+
}
|
|
336
|
+
],
|
|
337
|
+
"name": "increaseBalances",
|
|
338
|
+
"outputs": [],
|
|
339
|
+
"stateMutability": "nonpayable",
|
|
340
|
+
"type": "function"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"inputs": [
|
|
344
|
+
{
|
|
345
|
+
"internalType": "address",
|
|
346
|
+
"name": "",
|
|
347
|
+
"type": "address"
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
"name": "nonce",
|
|
351
|
+
"outputs": [
|
|
352
|
+
{
|
|
353
|
+
"internalType": "uint256",
|
|
354
|
+
"name": "",
|
|
355
|
+
"type": "uint256"
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"stateMutability": "view",
|
|
359
|
+
"type": "function"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"inputs": [],
|
|
363
|
+
"name": "owner",
|
|
364
|
+
"outputs": [
|
|
365
|
+
{
|
|
366
|
+
"internalType": "address",
|
|
367
|
+
"name": "",
|
|
368
|
+
"type": "address"
|
|
369
|
+
}
|
|
370
|
+
],
|
|
371
|
+
"stateMutability": "view",
|
|
372
|
+
"type": "function"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"inputs": [
|
|
376
|
+
{
|
|
377
|
+
"internalType": "address",
|
|
378
|
+
"name": "owner",
|
|
379
|
+
"type": "address"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"internalType": "address",
|
|
383
|
+
"name": "spender",
|
|
384
|
+
"type": "address"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"internalType": "uint256",
|
|
388
|
+
"name": "amount",
|
|
389
|
+
"type": "uint256"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"internalType": "uint256",
|
|
393
|
+
"name": "deadline",
|
|
394
|
+
"type": "uint256"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"internalType": "uint8",
|
|
398
|
+
"name": "v",
|
|
399
|
+
"type": "uint8"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"internalType": "bytes32",
|
|
403
|
+
"name": "r",
|
|
404
|
+
"type": "bytes32"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"internalType": "bytes32",
|
|
408
|
+
"name": "s",
|
|
409
|
+
"type": "bytes32"
|
|
410
|
+
}
|
|
411
|
+
],
|
|
412
|
+
"name": "permit",
|
|
413
|
+
"outputs": [],
|
|
414
|
+
"stateMutability": "nonpayable",
|
|
415
|
+
"type": "function"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"inputs": [],
|
|
419
|
+
"name": "renounceOwnership",
|
|
420
|
+
"outputs": [],
|
|
421
|
+
"stateMutability": "nonpayable",
|
|
422
|
+
"type": "function"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"inputs": [
|
|
426
|
+
{
|
|
427
|
+
"internalType": "address",
|
|
428
|
+
"name": "recipient",
|
|
429
|
+
"type": "address"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"internalType": "uint256",
|
|
433
|
+
"name": "amount",
|
|
434
|
+
"type": "uint256"
|
|
435
|
+
}
|
|
436
|
+
],
|
|
437
|
+
"name": "transferBalance",
|
|
438
|
+
"outputs": [],
|
|
439
|
+
"stateMutability": "nonpayable",
|
|
440
|
+
"type": "function"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"inputs": [
|
|
444
|
+
{
|
|
445
|
+
"internalType": "address",
|
|
446
|
+
"name": "spender",
|
|
447
|
+
"type": "address"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"internalType": "address",
|
|
451
|
+
"name": "recipient",
|
|
452
|
+
"type": "address"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"internalType": "uint256",
|
|
456
|
+
"name": "amount",
|
|
457
|
+
"type": "uint256"
|
|
458
|
+
}
|
|
459
|
+
],
|
|
460
|
+
"name": "transferBalanceFrom",
|
|
461
|
+
"outputs": [],
|
|
462
|
+
"stateMutability": "nonpayable",
|
|
463
|
+
"type": "function"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"inputs": [
|
|
467
|
+
{
|
|
468
|
+
"internalType": "address",
|
|
469
|
+
"name": "newOwner",
|
|
470
|
+
"type": "address"
|
|
471
|
+
}
|
|
472
|
+
],
|
|
473
|
+
"name": "transferOwnership",
|
|
474
|
+
"outputs": [],
|
|
475
|
+
"stateMutability": "nonpayable",
|
|
476
|
+
"type": "function"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"inputs": [
|
|
480
|
+
{
|
|
481
|
+
"internalType": "address",
|
|
482
|
+
"name": "_bridge",
|
|
483
|
+
"type": "address"
|
|
484
|
+
}
|
|
485
|
+
],
|
|
486
|
+
"name": "updateBridge",
|
|
487
|
+
"outputs": [],
|
|
488
|
+
"stateMutability": "nonpayable",
|
|
489
|
+
"type": "function"
|
|
490
|
+
}
|
|
491
|
+
],
|
|
492
|
+
"bytecode": "0x60c06040523480156200001157600080fd5b5062000032620000266200005760201b60201c565b6200005f60201b60201c565b46608081815250506200004a6200012360201b60201c565b60a08181525050620002cb565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6040518060400160405280600981526020017f544254432042616e6b0000000000000000000000000000000000000000000000815250805190602001206040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250805190602001204630604051602001620001d895949392919062000226565b60405160208183030381529060405280519060200120905090565b620001fe8162000283565b82525050565b6200020f8162000297565b82525050565b6200022081620002c1565b82525050565b600060a0820190506200023d600083018862000204565b6200024c602083018762000204565b6200025b604083018662000204565b6200026a606083018562000215565b620002796080830184620001f3565b9695505050505050565b60006200029082620002a1565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60805160a0516125ec620002ff6000396000818161067a0152610c1f0152600081816106520152610ac801526125ec6000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b146102fc578063b4f94b2e1461031a578063d505accf14610338578063dd62ed3e14610354578063e78cea9214610384578063f2fde38b146103a257610137565b806370a082311461025857806370ae92d214610288578063715018a6146102b8578063771da5c5146102c25780637c6db49c146102e057610137565b806346b05e09116100ff57806346b05e09146101cc57806356a6d9ef146101e85780635b86f599146102045780635bfd99b9146102205780636eb382121461023c57610137565b80630b6d324c1461013c578063266a123a1461015857806330adf81f146101745780633644e51514610192578063392aee43146101b0575b600080fd5b6101566004803603810190610151919061191b565b6103be565b005b610172600480360381019061016d9190611957565b610494565b005b61017c61062a565b6040516101899190611ced565b60405180910390f35b61019a61064e565b6040516101a79190611ced565b60405180910390f35b6101ca60048036038101906101c591906119cc565b6106ae565b005b6101e660048036038101906101e1919061191b565b610755565b005b61020260048036038101906101fd919061191b565b610764565b005b61021e6004803603810190610219919061191b565b610773565b005b61023a6004803603810190610235919061191b565b610811565b005b610256600480360381019061025191906117c9565b6108a7565b005b610272600480360381019061026d91906117c9565b610a0e565b60405161027f9190612001565b60405180910390f35b6102a2600480360381019061029d91906117c9565b610a26565b6040516102af9190612001565b60405180910390f35b6102c0610a3e565b005b6102ca610ac6565b6040516102d79190612001565b60405180910390f35b6102fa60048036038101906102f5919061182e565b610aea565b005b610304610bf4565b6040516103119190611cd2565b60405180910390f35b610322610c1d565b60405161032f9190611ced565b60405180910390f35b610352600480360381019061034d919061187d565b610c41565b005b61036e600480360381019061036991906117f2565b610f25565b60405161037b9190612001565b60405180910390f35b61038c610f4a565b6040516103999190611cd2565b60405180910390f35b6103bc60048036038101906103b791906117c9565b610f70565b005b6000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047990611fe1565b60405180910390fd5b61048f3384848403611068565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051b90611fa1565b60405180910390fd5b81819050848490501461056c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056390611e01565b60405180910390fd5b60005b84849050811015610623576106108585838181106105b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906105cb91906117c9565b848484818110610604577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356111c3565b808061061b90612115565b91505061056f565b5050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60007f00000000000000000000000000000000000000000000000000000000000000004614156106a0577f000000000000000000000000000000000000000000000000000000000000000090506106ab565b6106a86112da565b90505b90565b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106fd919061208e565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f9c6be7c4260e52ea2e41d7f17932147ab78756f1bb2247a2554796d969741aff8260405161074a9190612001565b60405180910390a250565b610760338383611068565b5050565b61076f3383836113a8565b5050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fa90611fa1565b60405180910390fd5b61080d82826111c3565b5050565b6108a3338383600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461089e9190612038565b611068565b5050565b6108af611615565b73ffffffffffffffffffffffffffffffffffffffff166108cd610bf4565b73ffffffffffffffffffffffffffffffffffffffff1614610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90611f01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90611f21565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe1694c0b21fdceff6411daed547c7463c2341b9695387bc82595b5b9b1851d4a81604051610a039190611cd2565b60405180910390a150565b60026020528060005260406000206000915090505481565b60046020528060005260406000206000915090505481565b610a46611615565b73ffffffffffffffffffffffffffffffffffffffff16610a64610bf4565b73ffffffffffffffffffffffffffffffffffffffff1614610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190611f01565b60405180910390fd5b610ac4600061161d565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610be35781811015610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90611e41565b60405180910390fd5b610be28433848403611068565b5b610bee8484846113a8565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b42841015610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b90611f61565b60405180910390fd5b7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08160001c1115610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190611f81565b60405180910390fd5b601b8360ff161480610cff5750601c8360ff16145b610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590611e61565b60405180910390fd5b6000610d4861064e565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9898989600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610dbc90612115565b919050558a604051602001610dd696959493929190611d08565b60405160208183030381529060405280519060200120604051602001610dfd929190611c9b565b604051602081830303815290604052805190602001209050600060018286868660405160008152602001604052604051610e3a9493929190611dbc565b6020604051602081039080840390855afa158015610e5c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610ed057508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690611ea1565b60405180910390fd5b610f1a898989611068565b505050505050505050565b6003602052816000526040600020602052806000526040600020600091509150505481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f78611615565b73ffffffffffffffffffffffffffffffffffffffff16610f96610bf4565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390611f01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390611e21565b60405180910390fd5b6110658161161d565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90611ec1565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f2fe5e8e7796010737e636f63b35a0383dc160b68483984f2df987c78e842b405836040516111b69190612001565b60405180910390a3505050565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990611fc1565b60405180910390fd5b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112819190612038565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f7a702e80a9c183a6ce9d6732991df2e914555ba35a364a70aed2433984e7544b826040516112ce9190612001565b60405180910390a25050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6040518060400160405280600981526020017f544254432042616e6b0000000000000000000000000000000000000000000000815250805190602001206040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525080519060200120463060405160200161138d959493929190611d69565b60405160208183030381529060405280519060200120905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90611f41565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90611e81565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590611ee1565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a39190612038565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f4163d0b06696468b3d7903f482bcd0097bd38a9a9086157479fd6c6561d24261846040516116079190612001565b60405180910390a350505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506116f08161255a565b92915050565b60008083601f84011261170857600080fd5b8235905067ffffffffffffffff81111561172157600080fd5b60208301915083602082028301111561173957600080fd5b9250929050565b60008083601f84011261175257600080fd5b8235905067ffffffffffffffff81111561176b57600080fd5b60208301915083602082028301111561178357600080fd5b9250929050565b60008135905061179981612571565b92915050565b6000813590506117ae81612588565b92915050565b6000813590506117c38161259f565b92915050565b6000602082840312156117db57600080fd5b60006117e9848285016116e1565b91505092915050565b6000806040838503121561180557600080fd5b6000611813858286016116e1565b9250506020611824858286016116e1565b9150509250929050565b60008060006060848603121561184357600080fd5b6000611851868287016116e1565b9350506020611862868287016116e1565b92505060406118738682870161179f565b9150509250925092565b600080600080600080600060e0888a03121561189857600080fd5b60006118a68a828b016116e1565b97505060206118b78a828b016116e1565b96505060406118c88a828b0161179f565b95505060606118d98a828b0161179f565b94505060806118ea8a828b016117b4565b93505060a06118fb8a828b0161178a565b92505060c061190c8a828b0161178a565b91505092959891949750929550565b6000806040838503121561192e57600080fd5b600061193c858286016116e1565b925050602061194d8582860161179f565b9150509250929050565b6000806000806040858703121561196d57600080fd5b600085013567ffffffffffffffff81111561198757600080fd5b611993878288016116f6565b9450945050602085013567ffffffffffffffff8111156119b257600080fd5b6119be87828801611740565b925092505092959194509250565b6000602082840312156119de57600080fd5b60006119ec8482850161179f565b91505092915050565b6119fe816120c2565b82525050565b611a0d816120d4565b82525050565b611a24611a1f826120d4565b61215e565b82525050565b6000611a3760208361201c565b9150611a4282612197565b602082019050919050565b6000611a5a60268361201c565b9150611a65826121c0565b604082019050919050565b6000611a7d60218361201c565b9150611a888261220f565b604082019050919050565b6000611aa060028361202d565b9150611aab8261225e565b600282019050919050565b6000611ac3601b8361201c565b9150611ace82612287565b602082019050919050565b6000611ae660248361201c565b9150611af1826122b0565b604082019050919050565b6000611b0960118361201c565b9150611b14826122ff565b602082019050919050565b6000611b2c60238361201c565b9150611b3782612328565b604082019050919050565b6000611b4f601f8361201c565b9150611b5a82612377565b602082019050919050565b6000611b7260208361201c565b9150611b7d826123a0565b602082019050919050565b6000611b95601e8361201c565b9150611ba0826123c9565b602082019050919050565b6000611bb860248361201c565b9150611bc3826123f2565b604082019050919050565b6000611bdb60128361201c565b9150611be682612441565b602082019050919050565b6000611bfe601b8361201c565b9150611c098261246a565b602082019050919050565b6000611c2160188361201c565b9150611c2c82612493565b602082019050919050565b6000611c4460218361201c565b9150611c4f826124bc565b604082019050919050565b6000611c67602d8361201c565b9150611c728261250b565b604082019050919050565b611c86816120fe565b82525050565b611c9581612108565b82525050565b6000611ca682611a93565b9150611cb28285611a13565b602082019150611cc28284611a13565b6020820191508190509392505050565b6000602082019050611ce760008301846119f5565b92915050565b6000602082019050611d026000830184611a04565b92915050565b600060c082019050611d1d6000830189611a04565b611d2a60208301886119f5565b611d3760408301876119f5565b611d446060830186611c7d565b611d516080830185611c7d565b611d5e60a0830184611c7d565b979650505050505050565b600060a082019050611d7e6000830188611a04565b611d8b6020830187611a04565b611d986040830186611a04565b611da56060830185611c7d565b611db260808301846119f5565b9695505050505050565b6000608082019050611dd16000830187611a04565b611dde6020830186611c8c565b611deb6040830185611a04565b611df86060830184611a04565b95945050505050565b60006020820190508181036000830152611e1a81611a2a565b9050919050565b60006020820190508181036000830152611e3a81611a4d565b9050919050565b60006020820190508181036000830152611e5a81611a70565b9050919050565b60006020820190508181036000830152611e7a81611ab6565b9050919050565b60006020820190508181036000830152611e9a81611ad9565b9050919050565b60006020820190508181036000830152611eba81611afc565b9050919050565b60006020820190508181036000830152611eda81611b1f565b9050919050565b60006020820190508181036000830152611efa81611b42565b9050919050565b60006020820190508181036000830152611f1a81611b65565b9050919050565b60006020820190508181036000830152611f3a81611b88565b9050919050565b60006020820190508181036000830152611f5a81611bab565b9050919050565b60006020820190508181036000830152611f7a81611bce565b9050919050565b60006020820190508181036000830152611f9a81611bf1565b9050919050565b60006020820190508181036000830152611fba81611c14565b9050919050565b60006020820190508181036000830152611fda81611c37565b9050919050565b60006020820190508181036000830152611ffa81611c5a565b9050919050565b60006020820190506120166000830184611c7d565b92915050565b600082825260208201905092915050565b600081905092915050565b6000612043826120fe565b915061204e836120fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561208357612082612168565b5b828201905092915050565b6000612099826120fe565b91506120a4836120fe565b9250828210156120b7576120b6612168565b5b828203905092915050565b60006120cd826120de565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612120826120fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561215357612152612168565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f417272617973206d7573742068617665207468652073616d65206c656e677468600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f496e76616c6964207369676e6174757265202776272076616c75650000000000600082015250565b7f43616e206e6f74207472616e7366657220746f207468652042616e6b2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f43616e206e6f7420617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e7420657863656564732062616c616e636500600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4272696467652061646472657373206d757374206e6f74206265203078300000600082015250565b7f43616e206e6f74207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5065726d697373696f6e20657870697265640000000000000000000000000000600082015250565b7f496e76616c6964207369676e6174757265202773272076616c75650000000000600082015250565b7f43616c6c6572206973206e6f7420746865206272696467650000000000000000600082015250565b7f43616e206e6f7420696e6372656173652062616c616e636520666f722042616e60008201527f6b00000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206e6f742064656372656173652062616c616e636520616c6c6f77616e60008201527f63652062656c6f77207a65726f00000000000000000000000000000000000000602082015250565b612563816120c2565b811461256e57600080fd5b50565b61257a816120d4565b811461258557600080fd5b50565b612591816120fe565b811461259c57600080fd5b50565b6125a881612108565b81146125b357600080fd5b5056fea2646970667358221220fca3107c371e45c65fe6a7a44602d781f6a5e3650ff49462df38c125e34a7c3e64736f6c63430008040033",
|
|
493
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b146102fc578063b4f94b2e1461031a578063d505accf14610338578063dd62ed3e14610354578063e78cea9214610384578063f2fde38b146103a257610137565b806370a082311461025857806370ae92d214610288578063715018a6146102b8578063771da5c5146102c25780637c6db49c146102e057610137565b806346b05e09116100ff57806346b05e09146101cc57806356a6d9ef146101e85780635b86f599146102045780635bfd99b9146102205780636eb382121461023c57610137565b80630b6d324c1461013c578063266a123a1461015857806330adf81f146101745780633644e51514610192578063392aee43146101b0575b600080fd5b6101566004803603810190610151919061191b565b6103be565b005b610172600480360381019061016d9190611957565b610494565b005b61017c61062a565b6040516101899190611ced565b60405180910390f35b61019a61064e565b6040516101a79190611ced565b60405180910390f35b6101ca60048036038101906101c591906119cc565b6106ae565b005b6101e660048036038101906101e1919061191b565b610755565b005b61020260048036038101906101fd919061191b565b610764565b005b61021e6004803603810190610219919061191b565b610773565b005b61023a6004803603810190610235919061191b565b610811565b005b610256600480360381019061025191906117c9565b6108a7565b005b610272600480360381019061026d91906117c9565b610a0e565b60405161027f9190612001565b60405180910390f35b6102a2600480360381019061029d91906117c9565b610a26565b6040516102af9190612001565b60405180910390f35b6102c0610a3e565b005b6102ca610ac6565b6040516102d79190612001565b60405180910390f35b6102fa60048036038101906102f5919061182e565b610aea565b005b610304610bf4565b6040516103119190611cd2565b60405180910390f35b610322610c1d565b60405161032f9190611ced565b60405180910390f35b610352600480360381019061034d919061187d565b610c41565b005b61036e600480360381019061036991906117f2565b610f25565b60405161037b9190612001565b60405180910390f35b61038c610f4a565b6040516103999190611cd2565b60405180910390f35b6103bc60048036038101906103b791906117c9565b610f70565b005b6000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047990611fe1565b60405180910390fd5b61048f3384848403611068565b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051b90611fa1565b60405180910390fd5b81819050848490501461056c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056390611e01565b60405180910390fd5b60005b84849050811015610623576106108585838181106105b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906105cb91906117c9565b848484818110610604577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356111c3565b808061061b90612115565b91505061056f565b5050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60007f00000000000000000000000000000000000000000000000000000000000000004614156106a0577f000000000000000000000000000000000000000000000000000000000000000090506106ab565b6106a86112da565b90505b90565b80600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106fd919061208e565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f9c6be7c4260e52ea2e41d7f17932147ab78756f1bb2247a2554796d969741aff8260405161074a9190612001565b60405180910390a250565b610760338383611068565b5050565b61076f3383836113a8565b5050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fa90611fa1565b60405180910390fd5b61080d82826111c3565b5050565b6108a3338383600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461089e9190612038565b611068565b5050565b6108af611615565b73ffffffffffffffffffffffffffffffffffffffff166108cd610bf4565b73ffffffffffffffffffffffffffffffffffffffff1614610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90611f01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90611f21565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fe1694c0b21fdceff6411daed547c7463c2341b9695387bc82595b5b9b1851d4a81604051610a039190611cd2565b60405180910390a150565b60026020528060005260406000206000915090505481565b60046020528060005260406000206000915090505481565b610a46611615565b73ffffffffffffffffffffffffffffffffffffffff16610a64610bf4565b73ffffffffffffffffffffffffffffffffffffffff1614610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190611f01565b60405180910390fd5b610ac4600061161d565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610be35781811015610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90611e41565b60405180910390fd5b610be28433848403611068565b5b610bee8484846113a8565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b42841015610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b90611f61565b60405180910390fd5b7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08160001c1115610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190611f81565b60405180910390fd5b601b8360ff161480610cff5750601c8360ff16145b610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590611e61565b60405180910390fd5b6000610d4861064e565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9898989600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610dbc90612115565b919050558a604051602001610dd696959493929190611d08565b60405160208183030381529060405280519060200120604051602001610dfd929190611c9b565b604051602081830303815290604052805190602001209050600060018286868660405160008152602001604052604051610e3a9493929190611dbc565b6020604051602081039080840390855afa158015610e5c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610ed057508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690611ea1565b60405180910390fd5b610f1a898989611068565b505050505050505050565b6003602052816000526040600020602052806000526040600020600091509150505481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f78611615565b73ffffffffffffffffffffffffffffffffffffffff16610f96610bf4565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390611f01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390611e21565b60405180910390fd5b6110658161161d565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90611ec1565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f2fe5e8e7796010737e636f63b35a0383dc160b68483984f2df987c78e842b405836040516111b69190612001565b60405180910390a3505050565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990611fc1565b60405180910390fd5b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112819190612038565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f7a702e80a9c183a6ce9d6732991df2e914555ba35a364a70aed2433984e7544b826040516112ce9190612001565b60405180910390a25050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6040518060400160405280600981526020017f544254432042616e6b0000000000000000000000000000000000000000000000815250805190602001206040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525080519060200120463060405160200161138d959493929190611d69565b60405160208183030381529060405280519060200120905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90611f41565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90611e81565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590611ee1565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a39190612038565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f4163d0b06696468b3d7903f482bcd0097bd38a9a9086157479fd6c6561d24261846040516116079190612001565b60405180910390a350505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506116f08161255a565b92915050565b60008083601f84011261170857600080fd5b8235905067ffffffffffffffff81111561172157600080fd5b60208301915083602082028301111561173957600080fd5b9250929050565b60008083601f84011261175257600080fd5b8235905067ffffffffffffffff81111561176b57600080fd5b60208301915083602082028301111561178357600080fd5b9250929050565b60008135905061179981612571565b92915050565b6000813590506117ae81612588565b92915050565b6000813590506117c38161259f565b92915050565b6000602082840312156117db57600080fd5b60006117e9848285016116e1565b91505092915050565b6000806040838503121561180557600080fd5b6000611813858286016116e1565b9250506020611824858286016116e1565b9150509250929050565b60008060006060848603121561184357600080fd5b6000611851868287016116e1565b9350506020611862868287016116e1565b92505060406118738682870161179f565b9150509250925092565b600080600080600080600060e0888a03121561189857600080fd5b60006118a68a828b016116e1565b97505060206118b78a828b016116e1565b96505060406118c88a828b0161179f565b95505060606118d98a828b0161179f565b94505060806118ea8a828b016117b4565b93505060a06118fb8a828b0161178a565b92505060c061190c8a828b0161178a565b91505092959891949750929550565b6000806040838503121561192e57600080fd5b600061193c858286016116e1565b925050602061194d8582860161179f565b9150509250929050565b6000806000806040858703121561196d57600080fd5b600085013567ffffffffffffffff81111561198757600080fd5b611993878288016116f6565b9450945050602085013567ffffffffffffffff8111156119b257600080fd5b6119be87828801611740565b925092505092959194509250565b6000602082840312156119de57600080fd5b60006119ec8482850161179f565b91505092915050565b6119fe816120c2565b82525050565b611a0d816120d4565b82525050565b611a24611a1f826120d4565b61215e565b82525050565b6000611a3760208361201c565b9150611a4282612197565b602082019050919050565b6000611a5a60268361201c565b9150611a65826121c0565b604082019050919050565b6000611a7d60218361201c565b9150611a888261220f565b604082019050919050565b6000611aa060028361202d565b9150611aab8261225e565b600282019050919050565b6000611ac3601b8361201c565b9150611ace82612287565b602082019050919050565b6000611ae660248361201c565b9150611af1826122b0565b604082019050919050565b6000611b0960118361201c565b9150611b14826122ff565b602082019050919050565b6000611b2c60238361201c565b9150611b3782612328565b604082019050919050565b6000611b4f601f8361201c565b9150611b5a82612377565b602082019050919050565b6000611b7260208361201c565b9150611b7d826123a0565b602082019050919050565b6000611b95601e8361201c565b9150611ba0826123c9565b602082019050919050565b6000611bb860248361201c565b9150611bc3826123f2565b604082019050919050565b6000611bdb60128361201c565b9150611be682612441565b602082019050919050565b6000611bfe601b8361201c565b9150611c098261246a565b602082019050919050565b6000611c2160188361201c565b9150611c2c82612493565b602082019050919050565b6000611c4460218361201c565b9150611c4f826124bc565b604082019050919050565b6000611c67602d8361201c565b9150611c728261250b565b604082019050919050565b611c86816120fe565b82525050565b611c9581612108565b82525050565b6000611ca682611a93565b9150611cb28285611a13565b602082019150611cc28284611a13565b6020820191508190509392505050565b6000602082019050611ce760008301846119f5565b92915050565b6000602082019050611d026000830184611a04565b92915050565b600060c082019050611d1d6000830189611a04565b611d2a60208301886119f5565b611d3760408301876119f5565b611d446060830186611c7d565b611d516080830185611c7d565b611d5e60a0830184611c7d565b979650505050505050565b600060a082019050611d7e6000830188611a04565b611d8b6020830187611a04565b611d986040830186611a04565b611da56060830185611c7d565b611db260808301846119f5565b9695505050505050565b6000608082019050611dd16000830187611a04565b611dde6020830186611c8c565b611deb6040830185611a04565b611df86060830184611a04565b95945050505050565b60006020820190508181036000830152611e1a81611a2a565b9050919050565b60006020820190508181036000830152611e3a81611a4d565b9050919050565b60006020820190508181036000830152611e5a81611a70565b9050919050565b60006020820190508181036000830152611e7a81611ab6565b9050919050565b60006020820190508181036000830152611e9a81611ad9565b9050919050565b60006020820190508181036000830152611eba81611afc565b9050919050565b60006020820190508181036000830152611eda81611b1f565b9050919050565b60006020820190508181036000830152611efa81611b42565b9050919050565b60006020820190508181036000830152611f1a81611b65565b9050919050565b60006020820190508181036000830152611f3a81611b88565b9050919050565b60006020820190508181036000830152611f5a81611bab565b9050919050565b60006020820190508181036000830152611f7a81611bce565b9050919050565b60006020820190508181036000830152611f9a81611bf1565b9050919050565b60006020820190508181036000830152611fba81611c14565b9050919050565b60006020820190508181036000830152611fda81611c37565b9050919050565b60006020820190508181036000830152611ffa81611c5a565b9050919050565b60006020820190506120166000830184611c7d565b92915050565b600082825260208201905092915050565b600081905092915050565b6000612043826120fe565b915061204e836120fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561208357612082612168565b5b828201905092915050565b6000612099826120fe565b91506120a4836120fe565b9250828210156120b7576120b6612168565b5b828203905092915050565b60006120cd826120de565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612120826120fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561215357612152612168565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f417272617973206d7573742068617665207468652073616d65206c656e677468600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f496e76616c6964207369676e6174757265202776272076616c75650000000000600082015250565b7f43616e206e6f74207472616e7366657220746f207468652042616e6b2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f43616e206e6f7420617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e7420657863656564732062616c616e636500600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4272696467652061646472657373206d757374206e6f74206265203078300000600082015250565b7f43616e206e6f74207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5065726d697373696f6e20657870697265640000000000000000000000000000600082015250565b7f496e76616c6964207369676e6174757265202773272076616c75650000000000600082015250565b7f43616c6c6572206973206e6f7420746865206272696467650000000000000000600082015250565b7f43616e206e6f7420696e6372656173652062616c616e636520666f722042616e60008201527f6b00000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206e6f742064656372656173652062616c616e636520616c6c6f77616e60008201527f63652062656c6f77207a65726f00000000000000000000000000000000000000602082015250565b612563816120c2565b811461256e57600080fd5b50565b61257a816120d4565b811461258557600080fd5b50565b612591816120fe565b811461259c57600080fd5b50565b6125a881612108565b81146125b357600080fd5b5056fea2646970667358221220fca3107c371e45c65fe6a7a44602d781f6a5e3650ff49462df38c125e34a7c3e64736f6c63430008040033",
|
|
494
|
+
"linkReferences": {},
|
|
495
|
+
"deployedLinkReferences": {}
|
|
496
|
+
}
|