@stargatefinance/stg-evm-sdk-v2 0.0.11

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.
Files changed (150) hide show
  1. package/artifacts/src/StargateBase.sol/StargateBase.json +1348 -0
  2. package/artifacts/src/StargateOFT.sol/StargateOFT.json +1374 -0
  3. package/artifacts/src/StargatePool.sol/StargatePool.json +1722 -0
  4. package/artifacts/src/StargatePoolNative.sol/StargatePoolNative.json +1717 -0
  5. package/artifacts/src/feelibs/FeeLibBase.sol/FeeLibBase.json +313 -0
  6. package/artifacts/src/feelibs/FeeLibV1.sol/FeeConfigLib.json +10 -0
  7. package/artifacts/src/feelibs/FeeLibV1.sol/FeeLibV1.json +561 -0
  8. package/artifacts/src/intent/IntentBase.sol/IntentBase.json +231 -0
  9. package/artifacts/src/intent/IntentOFT.sol/IntentOFT.json +247 -0
  10. package/artifacts/src/intent/IntentPool.sol/IntentPool.json +350 -0
  11. package/artifacts/src/intent/IntentPoolNative.sol/IWETH.json +24 -0
  12. package/artifacts/src/intent/IntentPoolNative.sol/IntentPoolNative.json +367 -0
  13. package/artifacts/src/interfaces/IBridgedUSDCMinter.sol/IBridgedUSDCMinter.json +48 -0
  14. package/artifacts/src/interfaces/ICreditMessaging.sol/ICreditMessaging.json +113 -0
  15. package/artifacts/src/interfaces/ICreditMessagingHandler.sol/ICreditMessagingHandler.json +71 -0
  16. package/artifacts/src/interfaces/IERC20Minter.sol/IERC20Minter.json +47 -0
  17. package/artifacts/src/interfaces/IStargate.sol/IStargate.json +661 -0
  18. package/artifacts/src/interfaces/IStargateFeeLib.sol/IStargateFeeLib.json +230 -0
  19. package/artifacts/src/interfaces/IStargatePool.sol/IStargatePool.json +939 -0
  20. package/artifacts/src/interfaces/ITokenMessaging.sol/ITokenMessaging.json +494 -0
  21. package/artifacts/src/interfaces/ITokenMessagingHandler.sol/ITokenMessagingHandler.json +78 -0
  22. package/artifacts/src/interfaces/permit2/IAllowanceTransfer.sol/IAllowanceTransfer.json +495 -0
  23. package/artifacts/src/interfaces/permit2/IEIP712.sol/IEIP712.json +24 -0
  24. package/artifacts/src/interfaces/permit2/IPermit2.sol/IPermit2.json +874 -0
  25. package/artifacts/src/interfaces/permit2/ISignatureTransfer.sol/ISignatureTransfer.json +403 -0
  26. package/artifacts/src/libs/AddressCast.sol/AddressCast.json +10 -0
  27. package/artifacts/src/libs/Bus.sol/BusLib.json +92 -0
  28. package/artifacts/src/libs/CreditMsgCodec.sol/CreditMsgCodec.json +16 -0
  29. package/artifacts/src/libs/MessagingHelper.sol/MessagingHelper.json +10 -0
  30. package/artifacts/src/libs/PassengerCodec.sol/PassengerCodec.json +16 -0
  31. package/artifacts/src/libs/Path.sol/PathLib.json +26 -0
  32. package/artifacts/src/libs/RideBusOptionsLibV1.sol/RideBusOptionsLibV1.json +16 -0
  33. package/artifacts/src/libs/TokenMsgCodec.sol/TokenMsgCodec.json +16 -0
  34. package/artifacts/src/libs/Transfer.sol/Transfer.json +21 -0
  35. package/artifacts/src/libs/Transfer.sol/TransferLib.json +21 -0
  36. package/artifacts/src/messaging/CreditMessaging.sol/CreditMessaging.json +1033 -0
  37. package/artifacts/src/messaging/CreditMessagingOptions.sol/CreditMessagingOptions.json +229 -0
  38. package/artifacts/src/messaging/MessagingBase.sol/MessagingBase.json +701 -0
  39. package/artifacts/src/messaging/TokenMessaging.sol/TokenMessaging.json +1692 -0
  40. package/artifacts/src/messaging/TokenMessagingOptions.sol/TokenMessagingOptions.json +239 -0
  41. package/artifacts/src/mocks/ERC20Token.sol/ERC20Token.json +335 -0
  42. package/artifacts/src/mocks/FeeLibMock.sol/FeeLibMock.json +230 -0
  43. package/artifacts/src/mocks/OFTToken.sol/OFTToken.json +380 -0
  44. package/artifacts/src/mocks/PoolToken.sol/PoolToken.json +406 -0
  45. package/artifacts/src/mocks/USDC.sol/USDC.json +381 -0
  46. package/artifacts/src/mocks/WETH.sol/WETH.json +310 -0
  47. package/artifacts/src/peripheral/Planner.sol/Planner.json +212 -0
  48. package/artifacts/src/peripheral/RebateCampaign.sol/RebateCampaign.json +237 -0
  49. package/artifacts/src/peripheral/Treasurer.sol/Treasurer.json +194 -0
  50. package/artifacts/src/usdc/StargateOFTUSDC.sol/StargateOFTUSDC.json +1374 -0
  51. package/artifacts/src/usdc/StargatePoolUSDC.sol/StargatePoolUSDC.json +1748 -0
  52. package/artifacts/src/utils/LPToken.sol/LPToken.json +496 -0
  53. package/deployments/arbsep-testnet/FeeLibV1ETH.json +466 -0
  54. package/deployments/arbsep-testnet/MessagingETH.json +1356 -0
  55. package/deployments/arbsep-testnet/StargatePoolNative.json +1933 -0
  56. package/deployments/avalanche-testnet/FeeLibV1USDT.json +466 -0
  57. package/deployments/avalanche-testnet/MessagingUSDT.json +1356 -0
  58. package/deployments/avalanche-testnet/StargatePoolUSDT.json +1939 -0
  59. package/deployments/bsc-sandbox-local/CreditMessaging.json +1393 -0
  60. package/deployments/bsc-sandbox-local/FeeLibV1BUSD.json +828 -0
  61. package/deployments/bsc-sandbox-local/FeeLibV1ETH.json +828 -0
  62. package/deployments/bsc-sandbox-local/FeeLibV1LUSD.json +828 -0
  63. package/deployments/bsc-sandbox-local/FeeLibV1USDC.json +828 -0
  64. package/deployments/bsc-sandbox-local/FeeLibV1USDT.json +828 -0
  65. package/deployments/bsc-sandbox-local/IntentOFTBUSD.json +337 -0
  66. package/deployments/bsc-sandbox-local/IntentOFTETH.json +337 -0
  67. package/deployments/bsc-sandbox-local/IntentOFTLUSD.json +337 -0
  68. package/deployments/bsc-sandbox-local/IntentOFTUSDC.json +337 -0
  69. package/deployments/bsc-sandbox-local/IntentOFTUSDT.json +337 -0
  70. package/deployments/bsc-sandbox-local/OFTTokenBUSD.json +571 -0
  71. package/deployments/bsc-sandbox-local/OFTTokenETH.json +571 -0
  72. package/deployments/bsc-sandbox-local/OFTTokenLUSD.json +571 -0
  73. package/deployments/bsc-sandbox-local/OFTTokenUSDC.json +558 -0
  74. package/deployments/bsc-sandbox-local/OFTTokenUSDT.json +571 -0
  75. package/deployments/bsc-sandbox-local/Permit2Mock.json +923 -0
  76. package/deployments/bsc-sandbox-local/StargateOFTBUSD.json +1803 -0
  77. package/deployments/bsc-sandbox-local/StargateOFTETH.json +1803 -0
  78. package/deployments/bsc-sandbox-local/StargateOFTLUSD.json +1803 -0
  79. package/deployments/bsc-sandbox-local/StargateOFTUSDC.json +1792 -0
  80. package/deployments/bsc-sandbox-local/StargateOFTUSDT.json +1803 -0
  81. package/deployments/bsc-sandbox-local/TokenMessaging.json +2166 -0
  82. package/deployments/bsc-sandbox-local/WETH.json +453 -0
  83. package/deployments/bsc-testnet/FeeLibV1ETH.json +466 -0
  84. package/deployments/bsc-testnet/FeeLibV1USDT.json +466 -0
  85. package/deployments/bsc-testnet/MessagingETH.json +1356 -0
  86. package/deployments/bsc-testnet/MessagingUSDT.json +1356 -0
  87. package/deployments/bsc-testnet/OFTTokenETH.json +557 -0
  88. package/deployments/bsc-testnet/StargateOFTETH.json +1601 -0
  89. package/deployments/bsc-testnet/StargatePoolUSDT.json +1939 -0
  90. package/deployments/ethereum-sandbox-local/CreditMessaging.json +1393 -0
  91. package/deployments/ethereum-sandbox-local/FeeLibV1BUSD.json +828 -0
  92. package/deployments/ethereum-sandbox-local/FeeLibV1ETH.json +828 -0
  93. package/deployments/ethereum-sandbox-local/FeeLibV1LUSD.json +828 -0
  94. package/deployments/ethereum-sandbox-local/FeeLibV1USDC.json +828 -0
  95. package/deployments/ethereum-sandbox-local/FeeLibV1USDT.json +828 -0
  96. package/deployments/ethereum-sandbox-local/IntentOFTBUSD.json +337 -0
  97. package/deployments/ethereum-sandbox-local/IntentPoolLUSD.json +440 -0
  98. package/deployments/ethereum-sandbox-local/IntentPoolNative.json +444 -0
  99. package/deployments/ethereum-sandbox-local/IntentPoolUSDC.json +440 -0
  100. package/deployments/ethereum-sandbox-local/IntentPoolUSDT.json +440 -0
  101. package/deployments/ethereum-sandbox-local/OFTTokenBUSD.json +571 -0
  102. package/deployments/ethereum-sandbox-local/Permit2Mock.json +923 -0
  103. package/deployments/ethereum-sandbox-local/PoolTokenLUSD.json +597 -0
  104. package/deployments/ethereum-sandbox-local/PoolTokenUSDC.json +597 -0
  105. package/deployments/ethereum-sandbox-local/PoolTokenUSDT.json +597 -0
  106. package/deployments/ethereum-sandbox-local/StargateOFTBUSD.json +1803 -0
  107. package/deployments/ethereum-sandbox-local/StargatePoolLUSD.json +2239 -0
  108. package/deployments/ethereum-sandbox-local/StargatePoolNative.json +2233 -0
  109. package/deployments/ethereum-sandbox-local/StargatePoolUSDC.json +2257 -0
  110. package/deployments/ethereum-sandbox-local/StargatePoolUSDT.json +2239 -0
  111. package/deployments/ethereum-sandbox-local/TokenMessaging.json +2166 -0
  112. package/deployments/ethereum-sandbox-local/WETH.json +453 -0
  113. package/deployments/polygon-sandbox-local/CreditMessaging.json +1393 -0
  114. package/deployments/polygon-sandbox-local/FeeLibV1BUSD.json +828 -0
  115. package/deployments/polygon-sandbox-local/FeeLibV1ETH.json +828 -0
  116. package/deployments/polygon-sandbox-local/FeeLibV1LUSD.json +828 -0
  117. package/deployments/polygon-sandbox-local/FeeLibV1USDC.json +828 -0
  118. package/deployments/polygon-sandbox-local/FeeLibV1USDT.json +828 -0
  119. package/deployments/polygon-sandbox-local/IntentOFTBUSD.json +337 -0
  120. package/deployments/polygon-sandbox-local/IntentOFTETH.json +337 -0
  121. package/deployments/polygon-sandbox-local/IntentOFTLUSD.json +337 -0
  122. package/deployments/polygon-sandbox-local/IntentOFTUSDC.json +337 -0
  123. package/deployments/polygon-sandbox-local/IntentPoolUSDT.json +440 -0
  124. package/deployments/polygon-sandbox-local/OFTTokenBUSD.json +571 -0
  125. package/deployments/polygon-sandbox-local/OFTTokenETH.json +571 -0
  126. package/deployments/polygon-sandbox-local/OFTTokenLUSD.json +571 -0
  127. package/deployments/polygon-sandbox-local/OFTTokenUSDC.json +558 -0
  128. package/deployments/polygon-sandbox-local/Permit2Mock.json +923 -0
  129. package/deployments/polygon-sandbox-local/PoolTokenUSDT.json +597 -0
  130. package/deployments/polygon-sandbox-local/StargateOFTBUSD.json +1803 -0
  131. package/deployments/polygon-sandbox-local/StargateOFTETH.json +1803 -0
  132. package/deployments/polygon-sandbox-local/StargateOFTLUSD.json +1803 -0
  133. package/deployments/polygon-sandbox-local/StargateOFTUSDC.json +1792 -0
  134. package/deployments/polygon-sandbox-local/StargatePoolUSDT.json +2239 -0
  135. package/deployments/polygon-sandbox-local/TokenMessaging.json +2166 -0
  136. package/deployments/polygon-sandbox-local/WETH.json +453 -0
  137. package/deployments/polygon-testnet/FeeLibV1USDT.json +481 -0
  138. package/deployments/polygon-testnet/MessagingUSDT.json +1371 -0
  139. package/deployments/polygon-testnet/OFTTokenUSDT.json +572 -0
  140. package/deployments/polygon-testnet/StargateOFTUSDT.json +1616 -0
  141. package/deployments/sepolia-testnet/FeeLibV1ETH.json +466 -0
  142. package/deployments/sepolia-testnet/MessagingETH.json +1356 -0
  143. package/deployments/sepolia-testnet/StargatePoolNative.json +1933 -0
  144. package/dist/index.cjs +24634 -0
  145. package/dist/index.cjs.map +1 -0
  146. package/dist/index.d.mts +31486 -0
  147. package/dist/index.d.ts +31486 -0
  148. package/dist/index.mjs +24558 -0
  149. package/dist/index.mjs.map +1 -0
  150. package/package.json +42 -0
@@ -0,0 +1,1374 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "StargateOFT",
4
+ "sourceName": "src/StargateOFT.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "_token",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "uint8",
15
+ "name": "_sharedDecimals",
16
+ "type": "uint8"
17
+ },
18
+ {
19
+ "internalType": "address",
20
+ "name": "_endpoint",
21
+ "type": "address"
22
+ },
23
+ {
24
+ "internalType": "address",
25
+ "name": "_owner",
26
+ "type": "address"
27
+ }
28
+ ],
29
+ "stateMutability": "nonpayable",
30
+ "type": "constructor"
31
+ },
32
+ {
33
+ "inputs": [],
34
+ "name": "InvalidLocalDecimals",
35
+ "type": "error"
36
+ },
37
+ {
38
+ "inputs": [],
39
+ "name": "Path_AlreadyHasCredit",
40
+ "type": "error"
41
+ },
42
+ {
43
+ "inputs": [],
44
+ "name": "Path_CreditTooMuch",
45
+ "type": "error"
46
+ },
47
+ {
48
+ "inputs": [],
49
+ "name": "Path_InsufficientCredit",
50
+ "type": "error"
51
+ },
52
+ {
53
+ "inputs": [
54
+ {
55
+ "internalType": "uint256",
56
+ "name": "amountLD",
57
+ "type": "uint256"
58
+ },
59
+ {
60
+ "internalType": "uint256",
61
+ "name": "minAmountLD",
62
+ "type": "uint256"
63
+ }
64
+ ],
65
+ "name": "SlippageExceeded",
66
+ "type": "error"
67
+ },
68
+ {
69
+ "inputs": [],
70
+ "name": "Stargate_InvalidAmount",
71
+ "type": "error"
72
+ },
73
+ {
74
+ "inputs": [],
75
+ "name": "Stargate_InvalidPath",
76
+ "type": "error"
77
+ },
78
+ {
79
+ "inputs": [],
80
+ "name": "Stargate_InvalidTokenDecimals",
81
+ "type": "error"
82
+ },
83
+ {
84
+ "inputs": [],
85
+ "name": "Stargate_LzTokenUnavailable",
86
+ "type": "error"
87
+ },
88
+ {
89
+ "inputs": [],
90
+ "name": "Stargate_OutflowFailed",
91
+ "type": "error"
92
+ },
93
+ {
94
+ "inputs": [],
95
+ "name": "Stargate_Paused",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [],
100
+ "name": "Stargate_ReentrantCall",
101
+ "type": "error"
102
+ },
103
+ {
104
+ "inputs": [],
105
+ "name": "Stargate_SlippageTooHigh",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [],
110
+ "name": "Stargate_Unauthorized",
111
+ "type": "error"
112
+ },
113
+ {
114
+ "inputs": [],
115
+ "name": "Stargate_UnreceivedTokenNotFound",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [],
120
+ "name": "Transfer_TransferFailed",
121
+ "type": "error"
122
+ },
123
+ {
124
+ "anonymous": false,
125
+ "inputs": [
126
+ {
127
+ "indexed": false,
128
+ "internalType": "uint32",
129
+ "name": "srcEid",
130
+ "type": "uint32"
131
+ },
132
+ {
133
+ "components": [
134
+ {
135
+ "internalType": "uint32",
136
+ "name": "srcEid",
137
+ "type": "uint32"
138
+ },
139
+ {
140
+ "internalType": "uint64",
141
+ "name": "amount",
142
+ "type": "uint64"
143
+ }
144
+ ],
145
+ "indexed": false,
146
+ "internalType": "struct Credit[]",
147
+ "name": "credits",
148
+ "type": "tuple[]"
149
+ }
150
+ ],
151
+ "name": "CreditsReceived",
152
+ "type": "event"
153
+ },
154
+ {
155
+ "anonymous": false,
156
+ "inputs": [
157
+ {
158
+ "indexed": false,
159
+ "internalType": "uint32",
160
+ "name": "dstEid",
161
+ "type": "uint32"
162
+ },
163
+ {
164
+ "components": [
165
+ {
166
+ "internalType": "uint32",
167
+ "name": "srcEid",
168
+ "type": "uint32"
169
+ },
170
+ {
171
+ "internalType": "uint64",
172
+ "name": "amount",
173
+ "type": "uint64"
174
+ }
175
+ ],
176
+ "indexed": false,
177
+ "internalType": "struct Credit[]",
178
+ "name": "credits",
179
+ "type": "tuple[]"
180
+ }
181
+ ],
182
+ "name": "CreditsSent",
183
+ "type": "event"
184
+ },
185
+ {
186
+ "anonymous": false,
187
+ "inputs": [
188
+ {
189
+ "indexed": false,
190
+ "internalType": "uint32",
191
+ "name": "dstEid",
192
+ "type": "uint32"
193
+ },
194
+ {
195
+ "indexed": false,
196
+ "internalType": "bool",
197
+ "name": "oft",
198
+ "type": "bool"
199
+ }
200
+ ],
201
+ "name": "OFTPathSet",
202
+ "type": "event"
203
+ },
204
+ {
205
+ "anonymous": false,
206
+ "inputs": [
207
+ {
208
+ "indexed": true,
209
+ "internalType": "bytes32",
210
+ "name": "guid",
211
+ "type": "bytes32"
212
+ },
213
+ {
214
+ "indexed": false,
215
+ "internalType": "uint32",
216
+ "name": "srcEid",
217
+ "type": "uint32"
218
+ },
219
+ {
220
+ "indexed": true,
221
+ "internalType": "address",
222
+ "name": "toAddress",
223
+ "type": "address"
224
+ },
225
+ {
226
+ "indexed": false,
227
+ "internalType": "uint256",
228
+ "name": "amountReceivedLD",
229
+ "type": "uint256"
230
+ }
231
+ ],
232
+ "name": "OFTReceived",
233
+ "type": "event"
234
+ },
235
+ {
236
+ "anonymous": false,
237
+ "inputs": [
238
+ {
239
+ "indexed": true,
240
+ "internalType": "bytes32",
241
+ "name": "guid",
242
+ "type": "bytes32"
243
+ },
244
+ {
245
+ "indexed": false,
246
+ "internalType": "uint32",
247
+ "name": "dstEid",
248
+ "type": "uint32"
249
+ },
250
+ {
251
+ "indexed": true,
252
+ "internalType": "address",
253
+ "name": "fromAddress",
254
+ "type": "address"
255
+ },
256
+ {
257
+ "indexed": false,
258
+ "internalType": "uint256",
259
+ "name": "amountSentLD",
260
+ "type": "uint256"
261
+ },
262
+ {
263
+ "indexed": false,
264
+ "internalType": "uint256",
265
+ "name": "amountReceivedLD",
266
+ "type": "uint256"
267
+ }
268
+ ],
269
+ "name": "OFTSent",
270
+ "type": "event"
271
+ },
272
+ {
273
+ "anonymous": false,
274
+ "inputs": [
275
+ {
276
+ "indexed": true,
277
+ "internalType": "address",
278
+ "name": "previousOwner",
279
+ "type": "address"
280
+ },
281
+ {
282
+ "indexed": true,
283
+ "internalType": "address",
284
+ "name": "newOwner",
285
+ "type": "address"
286
+ }
287
+ ],
288
+ "name": "OwnershipTransferred",
289
+ "type": "event"
290
+ },
291
+ {
292
+ "anonymous": false,
293
+ "inputs": [
294
+ {
295
+ "indexed": false,
296
+ "internalType": "uint64",
297
+ "name": "amountSD",
298
+ "type": "uint64"
299
+ }
300
+ ],
301
+ "name": "TreasuryFeeAdded",
302
+ "type": "event"
303
+ },
304
+ {
305
+ "anonymous": false,
306
+ "inputs": [
307
+ {
308
+ "indexed": false,
309
+ "internalType": "address",
310
+ "name": "to",
311
+ "type": "address"
312
+ },
313
+ {
314
+ "indexed": false,
315
+ "internalType": "uint64",
316
+ "name": "amountSD",
317
+ "type": "uint64"
318
+ }
319
+ ],
320
+ "name": "TreasuryFeeWithdrawn",
321
+ "type": "event"
322
+ },
323
+ {
324
+ "anonymous": false,
325
+ "inputs": [
326
+ {
327
+ "indexed": false,
328
+ "internalType": "bytes32",
329
+ "name": "guid",
330
+ "type": "bytes32"
331
+ },
332
+ {
333
+ "indexed": false,
334
+ "internalType": "uint8",
335
+ "name": "index",
336
+ "type": "uint8"
337
+ },
338
+ {
339
+ "indexed": false,
340
+ "internalType": "address",
341
+ "name": "receiver",
342
+ "type": "address"
343
+ },
344
+ {
345
+ "indexed": false,
346
+ "internalType": "uint256",
347
+ "name": "amountLD",
348
+ "type": "uint256"
349
+ },
350
+ {
351
+ "indexed": false,
352
+ "internalType": "uint8",
353
+ "name": "composeIdx",
354
+ "type": "uint8"
355
+ },
356
+ {
357
+ "indexed": false,
358
+ "internalType": "bytes",
359
+ "name": "composeMsg",
360
+ "type": "bytes"
361
+ }
362
+ ],
363
+ "name": "UnreceivedTokenCached",
364
+ "type": "event"
365
+ },
366
+ {
367
+ "inputs": [
368
+ {
369
+ "internalType": "uint256",
370
+ "name": "_amountLD",
371
+ "type": "uint256"
372
+ }
373
+ ],
374
+ "name": "addTreasuryFee",
375
+ "outputs": [],
376
+ "stateMutability": "payable",
377
+ "type": "function"
378
+ },
379
+ {
380
+ "inputs": [],
381
+ "name": "approvalRequired",
382
+ "outputs": [
383
+ {
384
+ "internalType": "bool",
385
+ "name": "",
386
+ "type": "bool"
387
+ }
388
+ ],
389
+ "stateMutability": "pure",
390
+ "type": "function"
391
+ },
392
+ {
393
+ "inputs": [],
394
+ "name": "getAddressConfig",
395
+ "outputs": [
396
+ {
397
+ "components": [
398
+ {
399
+ "internalType": "address",
400
+ "name": "feeLib",
401
+ "type": "address"
402
+ },
403
+ {
404
+ "internalType": "address",
405
+ "name": "planner",
406
+ "type": "address"
407
+ },
408
+ {
409
+ "internalType": "address",
410
+ "name": "treasurer",
411
+ "type": "address"
412
+ },
413
+ {
414
+ "internalType": "address",
415
+ "name": "tokenMessaging",
416
+ "type": "address"
417
+ },
418
+ {
419
+ "internalType": "address",
420
+ "name": "creditMessaging",
421
+ "type": "address"
422
+ },
423
+ {
424
+ "internalType": "address",
425
+ "name": "lzToken",
426
+ "type": "address"
427
+ }
428
+ ],
429
+ "internalType": "struct AddressConfig",
430
+ "name": "",
431
+ "type": "tuple"
432
+ }
433
+ ],
434
+ "stateMutability": "view",
435
+ "type": "function"
436
+ },
437
+ {
438
+ "inputs": [],
439
+ "name": "oftVersion",
440
+ "outputs": [
441
+ {
442
+ "internalType": "bytes4",
443
+ "name": "interfaceId",
444
+ "type": "bytes4"
445
+ },
446
+ {
447
+ "internalType": "uint64",
448
+ "name": "version",
449
+ "type": "uint64"
450
+ }
451
+ ],
452
+ "stateMutability": "pure",
453
+ "type": "function"
454
+ },
455
+ {
456
+ "inputs": [],
457
+ "name": "owner",
458
+ "outputs": [
459
+ {
460
+ "internalType": "address",
461
+ "name": "",
462
+ "type": "address"
463
+ }
464
+ ],
465
+ "stateMutability": "view",
466
+ "type": "function"
467
+ },
468
+ {
469
+ "inputs": [
470
+ {
471
+ "internalType": "uint32",
472
+ "name": "eid",
473
+ "type": "uint32"
474
+ }
475
+ ],
476
+ "name": "paths",
477
+ "outputs": [
478
+ {
479
+ "internalType": "uint16",
480
+ "name": "baseFareMultiplierBps",
481
+ "type": "uint16"
482
+ },
483
+ {
484
+ "internalType": "uint64",
485
+ "name": "credit",
486
+ "type": "uint64"
487
+ }
488
+ ],
489
+ "stateMutability": "view",
490
+ "type": "function"
491
+ },
492
+ {
493
+ "inputs": [
494
+ {
495
+ "components": [
496
+ {
497
+ "internalType": "uint32",
498
+ "name": "dstEid",
499
+ "type": "uint32"
500
+ },
501
+ {
502
+ "internalType": "bytes32",
503
+ "name": "to",
504
+ "type": "bytes32"
505
+ },
506
+ {
507
+ "internalType": "uint256",
508
+ "name": "amountLD",
509
+ "type": "uint256"
510
+ },
511
+ {
512
+ "internalType": "uint256",
513
+ "name": "minAmountLD",
514
+ "type": "uint256"
515
+ },
516
+ {
517
+ "internalType": "bytes",
518
+ "name": "extraOptions",
519
+ "type": "bytes"
520
+ },
521
+ {
522
+ "internalType": "bytes",
523
+ "name": "composeMsg",
524
+ "type": "bytes"
525
+ },
526
+ {
527
+ "internalType": "bytes",
528
+ "name": "oftCmd",
529
+ "type": "bytes"
530
+ }
531
+ ],
532
+ "internalType": "struct SendParam",
533
+ "name": "_sendParam",
534
+ "type": "tuple"
535
+ }
536
+ ],
537
+ "name": "quoteOFT",
538
+ "outputs": [
539
+ {
540
+ "components": [
541
+ {
542
+ "internalType": "uint256",
543
+ "name": "minAmountLD",
544
+ "type": "uint256"
545
+ },
546
+ {
547
+ "internalType": "uint256",
548
+ "name": "maxAmountLD",
549
+ "type": "uint256"
550
+ }
551
+ ],
552
+ "internalType": "struct OFTLimit",
553
+ "name": "limit",
554
+ "type": "tuple"
555
+ },
556
+ {
557
+ "components": [
558
+ {
559
+ "internalType": "int256",
560
+ "name": "feeAmountLD",
561
+ "type": "int256"
562
+ },
563
+ {
564
+ "internalType": "string",
565
+ "name": "description",
566
+ "type": "string"
567
+ }
568
+ ],
569
+ "internalType": "struct OFTFeeDetail[]",
570
+ "name": "oftFeeDetails",
571
+ "type": "tuple[]"
572
+ },
573
+ {
574
+ "components": [
575
+ {
576
+ "internalType": "uint256",
577
+ "name": "amountSentLD",
578
+ "type": "uint256"
579
+ },
580
+ {
581
+ "internalType": "uint256",
582
+ "name": "amountReceivedLD",
583
+ "type": "uint256"
584
+ }
585
+ ],
586
+ "internalType": "struct OFTReceipt",
587
+ "name": "receipt",
588
+ "type": "tuple"
589
+ }
590
+ ],
591
+ "stateMutability": "view",
592
+ "type": "function"
593
+ },
594
+ {
595
+ "inputs": [
596
+ {
597
+ "internalType": "uint32",
598
+ "name": "_dstEid",
599
+ "type": "uint32"
600
+ },
601
+ {
602
+ "internalType": "bytes",
603
+ "name": "_options",
604
+ "type": "bytes"
605
+ },
606
+ {
607
+ "internalType": "uint256",
608
+ "name": "_composeMsgSize",
609
+ "type": "uint256"
610
+ }
611
+ ],
612
+ "name": "quoteRideBusOptions",
613
+ "outputs": [
614
+ {
615
+ "components": [
616
+ {
617
+ "internalType": "uint128",
618
+ "name": "extraFare",
619
+ "type": "uint128"
620
+ },
621
+ {
622
+ "internalType": "uint128",
623
+ "name": "nativeDropAmount",
624
+ "type": "uint128"
625
+ },
626
+ {
627
+ "internalType": "uint128",
628
+ "name": "lzComposeGas",
629
+ "type": "uint128"
630
+ },
631
+ {
632
+ "internalType": "uint128",
633
+ "name": "lzComposeValue",
634
+ "type": "uint128"
635
+ }
636
+ ],
637
+ "internalType": "struct RideBusOptions",
638
+ "name": "rideBusOptions",
639
+ "type": "tuple"
640
+ }
641
+ ],
642
+ "stateMutability": "view",
643
+ "type": "function"
644
+ },
645
+ {
646
+ "inputs": [
647
+ {
648
+ "components": [
649
+ {
650
+ "internalType": "uint32",
651
+ "name": "dstEid",
652
+ "type": "uint32"
653
+ },
654
+ {
655
+ "internalType": "bytes32",
656
+ "name": "to",
657
+ "type": "bytes32"
658
+ },
659
+ {
660
+ "internalType": "uint256",
661
+ "name": "amountLD",
662
+ "type": "uint256"
663
+ },
664
+ {
665
+ "internalType": "uint256",
666
+ "name": "minAmountLD",
667
+ "type": "uint256"
668
+ },
669
+ {
670
+ "internalType": "bytes",
671
+ "name": "extraOptions",
672
+ "type": "bytes"
673
+ },
674
+ {
675
+ "internalType": "bytes",
676
+ "name": "composeMsg",
677
+ "type": "bytes"
678
+ },
679
+ {
680
+ "internalType": "bytes",
681
+ "name": "oftCmd",
682
+ "type": "bytes"
683
+ }
684
+ ],
685
+ "internalType": "struct SendParam",
686
+ "name": "_sendParam",
687
+ "type": "tuple"
688
+ },
689
+ {
690
+ "internalType": "bool",
691
+ "name": "_payInLzToken",
692
+ "type": "bool"
693
+ }
694
+ ],
695
+ "name": "quoteSend",
696
+ "outputs": [
697
+ {
698
+ "components": [
699
+ {
700
+ "internalType": "uint256",
701
+ "name": "nativeFee",
702
+ "type": "uint256"
703
+ },
704
+ {
705
+ "internalType": "uint256",
706
+ "name": "lzTokenFee",
707
+ "type": "uint256"
708
+ }
709
+ ],
710
+ "internalType": "struct MessagingFee",
711
+ "name": "fee",
712
+ "type": "tuple"
713
+ }
714
+ ],
715
+ "stateMutability": "view",
716
+ "type": "function"
717
+ },
718
+ {
719
+ "inputs": [
720
+ {
721
+ "internalType": "uint32",
722
+ "name": "_srcEid",
723
+ "type": "uint32"
724
+ },
725
+ {
726
+ "components": [
727
+ {
728
+ "internalType": "uint32",
729
+ "name": "srcEid",
730
+ "type": "uint32"
731
+ },
732
+ {
733
+ "internalType": "uint64",
734
+ "name": "amount",
735
+ "type": "uint64"
736
+ }
737
+ ],
738
+ "internalType": "struct Credit[]",
739
+ "name": "_credits",
740
+ "type": "tuple[]"
741
+ }
742
+ ],
743
+ "name": "receiveCredits",
744
+ "outputs": [],
745
+ "stateMutability": "nonpayable",
746
+ "type": "function"
747
+ },
748
+ {
749
+ "inputs": [
750
+ {
751
+ "components": [
752
+ {
753
+ "internalType": "uint32",
754
+ "name": "srcEid",
755
+ "type": "uint32"
756
+ },
757
+ {
758
+ "internalType": "bytes32",
759
+ "name": "sender",
760
+ "type": "bytes32"
761
+ },
762
+ {
763
+ "internalType": "uint64",
764
+ "name": "nonce",
765
+ "type": "uint64"
766
+ }
767
+ ],
768
+ "internalType": "struct Origin",
769
+ "name": "_origin",
770
+ "type": "tuple"
771
+ },
772
+ {
773
+ "internalType": "bytes32",
774
+ "name": "_guid",
775
+ "type": "bytes32"
776
+ },
777
+ {
778
+ "internalType": "uint8",
779
+ "name": "_index",
780
+ "type": "uint8"
781
+ },
782
+ {
783
+ "components": [
784
+ {
785
+ "internalType": "address",
786
+ "name": "receiver",
787
+ "type": "address"
788
+ },
789
+ {
790
+ "internalType": "uint64",
791
+ "name": "amountSD",
792
+ "type": "uint64"
793
+ },
794
+ {
795
+ "internalType": "bytes",
796
+ "name": "composeMsg",
797
+ "type": "bytes"
798
+ },
799
+ {
800
+ "internalType": "uint8",
801
+ "name": "composeIdx",
802
+ "type": "uint8"
803
+ }
804
+ ],
805
+ "internalType": "struct TransferPayload",
806
+ "name": "_payload",
807
+ "type": "tuple"
808
+ }
809
+ ],
810
+ "name": "receiveToken",
811
+ "outputs": [],
812
+ "stateMutability": "nonpayable",
813
+ "type": "function"
814
+ },
815
+ {
816
+ "inputs": [],
817
+ "name": "renounceOwnership",
818
+ "outputs": [],
819
+ "stateMutability": "nonpayable",
820
+ "type": "function"
821
+ },
822
+ {
823
+ "inputs": [
824
+ {
825
+ "internalType": "bytes32",
826
+ "name": "_guid",
827
+ "type": "bytes32"
828
+ },
829
+ {
830
+ "internalType": "uint8",
831
+ "name": "_index",
832
+ "type": "uint8"
833
+ },
834
+ {
835
+ "internalType": "address",
836
+ "name": "_receiver",
837
+ "type": "address"
838
+ },
839
+ {
840
+ "internalType": "uint256",
841
+ "name": "_amountLD",
842
+ "type": "uint256"
843
+ },
844
+ {
845
+ "internalType": "uint8",
846
+ "name": "_composeIdx",
847
+ "type": "uint8"
848
+ },
849
+ {
850
+ "internalType": "bytes",
851
+ "name": "_composeMsg",
852
+ "type": "bytes"
853
+ }
854
+ ],
855
+ "name": "retryReceiveToken",
856
+ "outputs": [],
857
+ "stateMutability": "nonpayable",
858
+ "type": "function"
859
+ },
860
+ {
861
+ "inputs": [
862
+ {
863
+ "components": [
864
+ {
865
+ "internalType": "uint32",
866
+ "name": "dstEid",
867
+ "type": "uint32"
868
+ },
869
+ {
870
+ "internalType": "bytes32",
871
+ "name": "to",
872
+ "type": "bytes32"
873
+ },
874
+ {
875
+ "internalType": "uint256",
876
+ "name": "amountLD",
877
+ "type": "uint256"
878
+ },
879
+ {
880
+ "internalType": "uint256",
881
+ "name": "minAmountLD",
882
+ "type": "uint256"
883
+ },
884
+ {
885
+ "internalType": "bytes",
886
+ "name": "extraOptions",
887
+ "type": "bytes"
888
+ },
889
+ {
890
+ "internalType": "bytes",
891
+ "name": "composeMsg",
892
+ "type": "bytes"
893
+ },
894
+ {
895
+ "internalType": "bytes",
896
+ "name": "oftCmd",
897
+ "type": "bytes"
898
+ }
899
+ ],
900
+ "internalType": "struct SendParam",
901
+ "name": "_sendParam",
902
+ "type": "tuple"
903
+ },
904
+ {
905
+ "components": [
906
+ {
907
+ "internalType": "uint256",
908
+ "name": "nativeFee",
909
+ "type": "uint256"
910
+ },
911
+ {
912
+ "internalType": "uint256",
913
+ "name": "lzTokenFee",
914
+ "type": "uint256"
915
+ }
916
+ ],
917
+ "internalType": "struct MessagingFee",
918
+ "name": "_fee",
919
+ "type": "tuple"
920
+ },
921
+ {
922
+ "internalType": "address",
923
+ "name": "_refundAddress",
924
+ "type": "address"
925
+ }
926
+ ],
927
+ "name": "send",
928
+ "outputs": [
929
+ {
930
+ "components": [
931
+ {
932
+ "internalType": "bytes32",
933
+ "name": "guid",
934
+ "type": "bytes32"
935
+ },
936
+ {
937
+ "internalType": "uint64",
938
+ "name": "nonce",
939
+ "type": "uint64"
940
+ },
941
+ {
942
+ "components": [
943
+ {
944
+ "internalType": "uint256",
945
+ "name": "nativeFee",
946
+ "type": "uint256"
947
+ },
948
+ {
949
+ "internalType": "uint256",
950
+ "name": "lzTokenFee",
951
+ "type": "uint256"
952
+ }
953
+ ],
954
+ "internalType": "struct MessagingFee",
955
+ "name": "fee",
956
+ "type": "tuple"
957
+ }
958
+ ],
959
+ "internalType": "struct MessagingReceipt",
960
+ "name": "msgReceipt",
961
+ "type": "tuple"
962
+ },
963
+ {
964
+ "components": [
965
+ {
966
+ "internalType": "uint256",
967
+ "name": "amountSentLD",
968
+ "type": "uint256"
969
+ },
970
+ {
971
+ "internalType": "uint256",
972
+ "name": "amountReceivedLD",
973
+ "type": "uint256"
974
+ }
975
+ ],
976
+ "internalType": "struct OFTReceipt",
977
+ "name": "oftReceipt",
978
+ "type": "tuple"
979
+ }
980
+ ],
981
+ "stateMutability": "payable",
982
+ "type": "function"
983
+ },
984
+ {
985
+ "inputs": [
986
+ {
987
+ "internalType": "uint32",
988
+ "name": "_dstEid",
989
+ "type": "uint32"
990
+ },
991
+ {
992
+ "components": [
993
+ {
994
+ "internalType": "uint32",
995
+ "name": "srcEid",
996
+ "type": "uint32"
997
+ },
998
+ {
999
+ "internalType": "uint64",
1000
+ "name": "amount",
1001
+ "type": "uint64"
1002
+ }
1003
+ ],
1004
+ "internalType": "struct Credit[]",
1005
+ "name": "_credits",
1006
+ "type": "tuple[]"
1007
+ }
1008
+ ],
1009
+ "name": "sendCredits",
1010
+ "outputs": [],
1011
+ "stateMutability": "nonpayable",
1012
+ "type": "function"
1013
+ },
1014
+ {
1015
+ "inputs": [
1016
+ {
1017
+ "components": [
1018
+ {
1019
+ "internalType": "uint32",
1020
+ "name": "dstEid",
1021
+ "type": "uint32"
1022
+ },
1023
+ {
1024
+ "internalType": "bytes32",
1025
+ "name": "to",
1026
+ "type": "bytes32"
1027
+ },
1028
+ {
1029
+ "internalType": "uint256",
1030
+ "name": "amountLD",
1031
+ "type": "uint256"
1032
+ },
1033
+ {
1034
+ "internalType": "uint256",
1035
+ "name": "minAmountLD",
1036
+ "type": "uint256"
1037
+ },
1038
+ {
1039
+ "internalType": "bytes",
1040
+ "name": "extraOptions",
1041
+ "type": "bytes"
1042
+ },
1043
+ {
1044
+ "internalType": "bytes",
1045
+ "name": "composeMsg",
1046
+ "type": "bytes"
1047
+ },
1048
+ {
1049
+ "internalType": "bytes",
1050
+ "name": "oftCmd",
1051
+ "type": "bytes"
1052
+ }
1053
+ ],
1054
+ "internalType": "struct SendParam",
1055
+ "name": "_sendParam",
1056
+ "type": "tuple"
1057
+ },
1058
+ {
1059
+ "components": [
1060
+ {
1061
+ "internalType": "uint256",
1062
+ "name": "nativeFee",
1063
+ "type": "uint256"
1064
+ },
1065
+ {
1066
+ "internalType": "uint256",
1067
+ "name": "lzTokenFee",
1068
+ "type": "uint256"
1069
+ }
1070
+ ],
1071
+ "internalType": "struct MessagingFee",
1072
+ "name": "_fee",
1073
+ "type": "tuple"
1074
+ },
1075
+ {
1076
+ "internalType": "address",
1077
+ "name": "_refundAddress",
1078
+ "type": "address"
1079
+ }
1080
+ ],
1081
+ "name": "sendToken",
1082
+ "outputs": [
1083
+ {
1084
+ "components": [
1085
+ {
1086
+ "internalType": "bytes32",
1087
+ "name": "guid",
1088
+ "type": "bytes32"
1089
+ },
1090
+ {
1091
+ "internalType": "uint64",
1092
+ "name": "nonce",
1093
+ "type": "uint64"
1094
+ },
1095
+ {
1096
+ "components": [
1097
+ {
1098
+ "internalType": "uint256",
1099
+ "name": "nativeFee",
1100
+ "type": "uint256"
1101
+ },
1102
+ {
1103
+ "internalType": "uint256",
1104
+ "name": "lzTokenFee",
1105
+ "type": "uint256"
1106
+ }
1107
+ ],
1108
+ "internalType": "struct MessagingFee",
1109
+ "name": "fee",
1110
+ "type": "tuple"
1111
+ }
1112
+ ],
1113
+ "internalType": "struct MessagingReceipt",
1114
+ "name": "msgReceipt",
1115
+ "type": "tuple"
1116
+ },
1117
+ {
1118
+ "components": [
1119
+ {
1120
+ "internalType": "uint256",
1121
+ "name": "amountSentLD",
1122
+ "type": "uint256"
1123
+ },
1124
+ {
1125
+ "internalType": "uint256",
1126
+ "name": "amountReceivedLD",
1127
+ "type": "uint256"
1128
+ }
1129
+ ],
1130
+ "internalType": "struct OFTReceipt",
1131
+ "name": "oftReceipt",
1132
+ "type": "tuple"
1133
+ },
1134
+ {
1135
+ "components": [
1136
+ {
1137
+ "internalType": "uint56",
1138
+ "name": "ticketId",
1139
+ "type": "uint56"
1140
+ },
1141
+ {
1142
+ "internalType": "bytes",
1143
+ "name": "passenger",
1144
+ "type": "bytes"
1145
+ }
1146
+ ],
1147
+ "internalType": "struct Ticket",
1148
+ "name": "passenger",
1149
+ "type": "tuple"
1150
+ }
1151
+ ],
1152
+ "stateMutability": "payable",
1153
+ "type": "function"
1154
+ },
1155
+ {
1156
+ "inputs": [
1157
+ {
1158
+ "components": [
1159
+ {
1160
+ "internalType": "address",
1161
+ "name": "feeLib",
1162
+ "type": "address"
1163
+ },
1164
+ {
1165
+ "internalType": "address",
1166
+ "name": "planner",
1167
+ "type": "address"
1168
+ },
1169
+ {
1170
+ "internalType": "address",
1171
+ "name": "treasurer",
1172
+ "type": "address"
1173
+ },
1174
+ {
1175
+ "internalType": "address",
1176
+ "name": "tokenMessaging",
1177
+ "type": "address"
1178
+ },
1179
+ {
1180
+ "internalType": "address",
1181
+ "name": "creditMessaging",
1182
+ "type": "address"
1183
+ },
1184
+ {
1185
+ "internalType": "address",
1186
+ "name": "lzToken",
1187
+ "type": "address"
1188
+ }
1189
+ ],
1190
+ "internalType": "struct AddressConfig",
1191
+ "name": "_config",
1192
+ "type": "tuple"
1193
+ }
1194
+ ],
1195
+ "name": "setAddressConfig",
1196
+ "outputs": [],
1197
+ "stateMutability": "nonpayable",
1198
+ "type": "function"
1199
+ },
1200
+ {
1201
+ "inputs": [
1202
+ {
1203
+ "internalType": "uint32",
1204
+ "name": "_dstEid",
1205
+ "type": "uint32"
1206
+ },
1207
+ {
1208
+ "internalType": "uint16",
1209
+ "name": "_baseFareMultiplierBps",
1210
+ "type": "uint16"
1211
+ }
1212
+ ],
1213
+ "name": "setBaseFareMultiplierBps",
1214
+ "outputs": [],
1215
+ "stateMutability": "nonpayable",
1216
+ "type": "function"
1217
+ },
1218
+ {
1219
+ "inputs": [
1220
+ {
1221
+ "internalType": "uint32",
1222
+ "name": "_dstEid",
1223
+ "type": "uint32"
1224
+ },
1225
+ {
1226
+ "internalType": "bool",
1227
+ "name": "_oft",
1228
+ "type": "bool"
1229
+ }
1230
+ ],
1231
+ "name": "setOFTPath",
1232
+ "outputs": [],
1233
+ "stateMutability": "nonpayable",
1234
+ "type": "function"
1235
+ },
1236
+ {
1237
+ "inputs": [
1238
+ {
1239
+ "internalType": "bool",
1240
+ "name": "_paused",
1241
+ "type": "bool"
1242
+ }
1243
+ ],
1244
+ "name": "setPause",
1245
+ "outputs": [],
1246
+ "stateMutability": "nonpayable",
1247
+ "type": "function"
1248
+ },
1249
+ {
1250
+ "inputs": [],
1251
+ "name": "sharedDecimals",
1252
+ "outputs": [
1253
+ {
1254
+ "internalType": "uint8",
1255
+ "name": "",
1256
+ "type": "uint8"
1257
+ }
1258
+ ],
1259
+ "stateMutability": "view",
1260
+ "type": "function"
1261
+ },
1262
+ {
1263
+ "inputs": [],
1264
+ "name": "stargateType",
1265
+ "outputs": [
1266
+ {
1267
+ "internalType": "enum StargateType",
1268
+ "name": "",
1269
+ "type": "uint8"
1270
+ }
1271
+ ],
1272
+ "stateMutability": "pure",
1273
+ "type": "function"
1274
+ },
1275
+ {
1276
+ "inputs": [],
1277
+ "name": "status",
1278
+ "outputs": [
1279
+ {
1280
+ "internalType": "uint8",
1281
+ "name": "",
1282
+ "type": "uint8"
1283
+ }
1284
+ ],
1285
+ "stateMutability": "view",
1286
+ "type": "function"
1287
+ },
1288
+ {
1289
+ "inputs": [],
1290
+ "name": "token",
1291
+ "outputs": [
1292
+ {
1293
+ "internalType": "address",
1294
+ "name": "",
1295
+ "type": "address"
1296
+ }
1297
+ ],
1298
+ "stateMutability": "view",
1299
+ "type": "function"
1300
+ },
1301
+ {
1302
+ "inputs": [
1303
+ {
1304
+ "internalType": "address",
1305
+ "name": "newOwner",
1306
+ "type": "address"
1307
+ }
1308
+ ],
1309
+ "name": "transferOwnership",
1310
+ "outputs": [],
1311
+ "stateMutability": "nonpayable",
1312
+ "type": "function"
1313
+ },
1314
+ {
1315
+ "inputs": [],
1316
+ "name": "treasuryFee",
1317
+ "outputs": [
1318
+ {
1319
+ "internalType": "uint64",
1320
+ "name": "",
1321
+ "type": "uint64"
1322
+ }
1323
+ ],
1324
+ "stateMutability": "view",
1325
+ "type": "function"
1326
+ },
1327
+ {
1328
+ "inputs": [
1329
+ {
1330
+ "internalType": "bytes32",
1331
+ "name": "guid",
1332
+ "type": "bytes32"
1333
+ },
1334
+ {
1335
+ "internalType": "uint8",
1336
+ "name": "index",
1337
+ "type": "uint8"
1338
+ }
1339
+ ],
1340
+ "name": "unreceivedTokens",
1341
+ "outputs": [
1342
+ {
1343
+ "internalType": "bytes32",
1344
+ "name": "hash",
1345
+ "type": "bytes32"
1346
+ }
1347
+ ],
1348
+ "stateMutability": "view",
1349
+ "type": "function"
1350
+ },
1351
+ {
1352
+ "inputs": [
1353
+ {
1354
+ "internalType": "address",
1355
+ "name": "_to",
1356
+ "type": "address"
1357
+ },
1358
+ {
1359
+ "internalType": "uint64",
1360
+ "name": "_amountSD",
1361
+ "type": "uint64"
1362
+ }
1363
+ ],
1364
+ "name": "withdrawTreasuryFee",
1365
+ "outputs": [],
1366
+ "stateMutability": "nonpayable",
1367
+ "type": "function"
1368
+ }
1369
+ ],
1370
+ "bytecode": "0x6101206040526001805460ff60a01b1916600160a01b1790553480156200002557600080fd5b506040516200504338038062005043833981016040819052620000489162000228565b83846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000088573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000ae919062000285565b848484620000bc33620001a9565b6001600160a01b03851660805260ff8084169085161015620000f157604051632e4b554360e01b815260040160405180910390fd5b620000fd8385620002c0565b6200010a90600a620003df565b60c05260ff831660a0526001600160a01b03821660e08190526040805163416ecebf60e01b8152905163416ecebf916004808201926020929091908290030181865afa1580156200015f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001859190620003f0565b63ffffffff16610100526200019a81620001a9565b50505050505050505062000418565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200021157600080fd5b919050565b805160ff811681146200021157600080fd5b600080600080608085870312156200023f57600080fd5b6200024a85620001f9565b93506200025a6020860162000216565b92506200026a60408601620001f9565b91506200027a60608601620001f9565b905092959194509250565b6000602082840312156200029857600080fd5b620002a38262000216565b9392505050565b634e487b7160e01b600052601160045260246000fd5b60ff8281168282160390811115620002dc57620002dc620002aa565b92915050565b600181815b8085111562000323578160001904821115620003075762000307620002aa565b808516156200031557918102915b93841c9390800290620002e7565b509250929050565b6000826200033c57506001620002dc565b816200034b57506000620002dc565b81600181146200036457600281146200036f576200038f565b6001915050620002dc565b60ff841115620003835762000383620002aa565b50506001821b620002dc565b5060208310610133831016604e8410600b8410161715620003b4575081810a620002dc565b620003c08383620002e2565b8060001904821115620003d757620003d7620002aa565b029392505050565b6000620002a360ff8416836200032b565b6000602082840312156200040357600080fd5b815163ffffffff81168114620002a357600080fd5b60805160a05160c05160e05161010051614b84620004bf600039600081816114c901526120fb0152600081816119f10152818161208001526136410152600081816107dd01528181610a4d01528181610ba701528181610c2b01528181610c5a0152818161229801528181612486015281816124b0015281816126a801526128b601526000610541015260008181610759015281816129300152612ddf0152614b846000f3fe6080604052600436106101b75760003560e01c80637e3e8a4c116100ec578063c7c7f5b31161008a578063cc32d17611610064578063cc32d1761461068e578063d621ad3f146106e1578063f2fde38b14610727578063fc0c546a1461074757600080fd5b8063c7c7f5b31461062b578063c859c4831461064c578063cbef2aa91461066c57600080fd5b80639561b12f116100c65780639561b12f146105af5780639f68b964146105cf578063bedb86fb146105eb578063c0b789671461060b57600080fd5b80637e3e8a4c1461050f578063857749b01461052f5780638da5cb5b1461056357600080fd5b80632bc5114c116101595780633b6f743b116101335780633b6f743b1461048d5780633faa12c5146104ba578063461bb0b9146104da578063715018a6146104fa57600080fd5b80632bc5114c14610304578063341a46481461041457806338da6b8e1461042757600080fd5b806316909bca1161019557806316909bca1461025757806316a96d1e14610273578063200d2ed2146102a05780632708987a146102e457600080fd5b80630d35b415146101bc5780630f12f7ab146101f4578063156a0d0f14610216575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004613867565b61077b565b6040516101eb939291906138ec565b60405180910390f35b34801561020057600080fd5b5061021461020f3660046139bc565b610c99565b005b34801561022257600080fd5b50604080517f02e49c2c00000000000000000000000000000000000000000000000000000000815260006020820152016101eb565b34801561026357600080fd5b5060016040516101eb91906139fa565b34801561027f57600080fd5b5061029361028e366004613a84565b610d35565b6040516101eb9190613ade565b3480156102ac57600080fd5b506001546102d29074010000000000000000000000000000000000000000900460ff1681565b60405160ff90911681526020016101eb565b3480156102f057600080fd5b506102146102ff366004613b23565b610e4a565b34801561031057600080fd5b506103a66040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a0810191909152506040805160c08101825260015473ffffffffffffffffffffffffffffffffffffffff908116825260025481166020830152600654811692820192909252600354821660608201526004548216608082015260055490911660a082015290565b6040516101eb9190600060c08201905073ffffffffffffffffffffffffffffffffffffffff8084511683528060208501511660208401528060408501511660408401528060608501511660608401528060808501511660808401528060a08501511660a08401525092915050565b610214610422366004613ba9565b6110eb565b34801561043357600080fd5b5061046a610442366004613bc2565b60076020526000908152604090205461ffff81169062010000900467ffffffffffffffff1682565b6040805161ffff909316835267ffffffffffffffff9091166020830152016101eb565b34801561049957600080fd5b506104ad6104a8366004613bf2565b6111eb565b6040516101eb9190613c39565b3480156104c657600080fd5b506102146104d5366004613c50565b6114bf565b3480156104e657600080fd5b506102146104f5366004613c7c565b611592565b34801561050657600080fd5b50610214611798565b34801561051b57600080fd5b5061021461052a366004613c9f565b6117ac565b34801561053b57600080fd5b506102d27f000000000000000000000000000000000000000000000000000000000000000081565b34801561056f57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101eb565b3480156105bb57600080fd5b506102146105ca366004613b23565b611be8565b3480156105db57600080fd5b50604051600181526020016101eb565b3480156105f757600080fd5b50610214610606366004613d14565b611dfe565b34801561061757600080fd5b50610214610626366004613d55565b611e7d565b61063e610639366004613dde565b6121b3565b6040516101eb929190613e7c565b34801561065857600080fd5b50610214610667366004613eb6565b6121e7565b61067f61067a366004613dde565b612315565b6040516101eb93929190613ee2565b34801561069a57600080fd5b506001546106c8907501000000000000000000000000000000000000000000900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016101eb565b3480156106ed57600080fd5b506107196106fc366004613f3b565b600860209081526000928352604080842090915290825290205481565b6040519081526020016101eb565b34801561073357600080fd5b50610214610742366004613f67565b6125e5565b34801561075357600080fd5b5061058a7f000000000000000000000000000000000000000000000000000000000000000081565b604080518082019091526000808252602082015260606107ae604051806040016040528060008152602001600081525090565b6000806108116007826107c460208a018a613bc2565b63ffffffff1681526020810191909152604001600020547f00000000000000000000000000000000000000000000000000000000000000006201000090910467ffffffffffffffff160290565b6020860181905260009060408801351161082f578660400135610835565b85602001515b90506000610842826126a1565b6040805160e08101909152338152909150600090602080820190610868908c018c613bc2565b63ffffffff1681526020018367ffffffffffffffff1681526020018667ffffffffffffffff1681526020018567ffffffffffffffff1681526020016108ee600760008d60000160208101906108bd9190613bc2565b63ffffffff1663ffffffff1681526020019081526020016000205462010000900467ffffffffffffffff9081161490565b1515815260200161090b61090560c08d018d613f82565b15919050565b151590526001546040517f5b64903b00000000000000000000000000000000000000000000000000000000815291925060009173ffffffffffffffffffffffffffffffffffffffff90911690635b64903b9061096b908590600401613fe7565b602060405180830381865afa158015610988573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ac9190614066565b90508267ffffffffffffffff168167ffffffffffffffff1614610c295760408051600180825281830190925290816020015b6040805180820190915260008152606060208201528152602001906001900390816109de5790505097508267ffffffffffffffff168167ffffffffffffffff161015610b00576040518060400160405280610a75610a708487610a4191906140e1565b67ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000000290565b6126e1565b610a9f907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff614109565b81526020016040518060400160405280600c81526020017f70726f746f636f6c20666565000000000000000000000000000000000000000081525081525088600081518110610af057610af0614155565b6020026020010181905250610c29565b8267ffffffffffffffff168167ffffffffffffffff161115610c29576000610b2884836140e1565b9091039050600067ffffffffffffffff84811690831603610b89576040805160008082526020820190925290610b81565b604080518082019091526000815260606020820152815260200190600190039081610b595790505b509850610c27565b6040518060400160405280610bca610a708467ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000000290565b81526020016040518060400160405280600681526020017f726577617264000000000000000000000000000000000000000000000000000081525081525089600081518110610c1b57610c1b614155565b60200260200101819052505b505b7f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff84160287527f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff821602602088015250969895975093955050505050565b60025473ffffffffffffffffffffffffffffffffffffffff16338114610ceb576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5063ffffffff91909116600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff909216919091179055565b6040805160808101825260008082526020820181905291810182905260608101919091526001546040805160606020601f88018190040282018101835291810186815273ffffffffffffffffffffffffffffffffffffffff9093169263df0810919233928a9290918291908b908b90819085018382808284376000920191909152505050908252506020018790526040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152610dfe939291906004016141ad565b608060405180830381865afa158015610e1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3f91906142e2565b90505b949350505050565b60015474010000000000000000000000000000000000000000900460ff167ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8101610ec1576040517fdb22c33c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff821601610f1d576040517f76a9ad7300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167402000000000000000000000000000000000000000017905560045473ffffffffffffffffffffffffffffffffffffffff16338114610fae576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b838110156110695736858583818110610fcc57610fcc614155565b90506040020190506000611025826020016020810190610fec91906142fe565b60076000610ffd6020870187613bc2565b63ffffffff1663ffffffff16815260200190815260200160002061279790919063ffffffff16565b9050801561105f576040517fada8342400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050600101610fb1565b507fce105e156370093e6600169f7c01277f740d45fbcf95435227ce6f43ad0c3abd85858560405161109d9392919061431b565b60405180910390a15050600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633811461113d576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111468261286f565b600061115233846128a7565b905080600160158282829054906101000a900467ffffffffffffffff16611179919061438e565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507fa064a2faa279f4d67c85c8fc69d4ebb7de2739a9e6dd864dfdd1b9e066d4bfd0816040516111de919067ffffffffffffffff91909116815260200190565b60405180910390a1505050565b6040805180820190915260008082526020820152600061120e84604001356126a1565b90508067ffffffffffffffff16600003611254576040517f3442dd9500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061126661090560c0870187613f82565b905080156112fb5760035473ffffffffffffffffffffffffffffffffffffffff16633292cf026112968785612994565b866040518363ffffffff1660e01b81526004016112b492919061442b565b6040805180830381865afa1580156112d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f4919061447f565b92506114b7565b600060405180604001604052808780608001906113189190613f82565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509082525060200161135f60a0890189613f82565b9091525060015490915060009073ffffffffffffffffffffffffffffffffffffffff1663df0810913361139560208b018b613bc2565b856040518463ffffffff1660e01b81526004016113b4939291906141ad565b608060405180830381865afa1580156113d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f591906142e2565b60035490915073ffffffffffffffffffffffffffffffffffffffff1663bae02db6611456866007600061142b60208e018e613bc2565b63ffffffff90811682526020820192909252604001600020548c929161ffff909116908790612a9e16565b6040518263ffffffff1660e01b81526004016114729190614561565b6040805180830381865afa15801561148e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b2919061447f565b945050505b505092915050565b6114c7612b9a565b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168263ffffffff160361152c576040517fada8342400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff808316600090815260076020526040902061154e918390612c1b16565b6040805163ffffffff8416815282151560208201527faf6b8dd4c5a827e03f548d06181b36aaba61e22436ff1cfa9bc409d576366a60910160405180910390a15050565b61159a612b9a565b6115a76020820182613f67565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790556115fc6040820160208301613f67565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790556116516060820160408301613f67565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790556116a66080820160608301613f67565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790556116fb60a0820160808301613f67565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905561175060c0820160a08301613f67565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905550565b6117a0612b9a565b6117aa6000612d1b565b565b60015474010000000000000000000000000000000000000000900460ff167ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8101611823576040517fdb22c33c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff82160161187f576040517f76a9ad7300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167402000000000000000000000000000000000000000017905560035473ffffffffffffffffffffffffffffffffffffffff16338114611910576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611925610a4160408601602087016142fe565b905060006119366020860186613f67565b905060006119448284612d90565b90506000806119566040890189613f82565b9050119050606081156119ce576119cb61197660608d0160408e016142fe565b61198360208e018e613bc2565b8761199160408d018d613f82565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612e4492505050565b90505b8215611ae4578115611a7b5773ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016637cb59012858c611a2860808d0160608e01614574565b856040518563ffffffff1660e01b8152600401611a48949392919061458f565b600060405180830381600087803b158015611a6257600080fd5b505af1158015611a76573d6000803e3d6000fd5b505050505b73ffffffffffffffffffffffffffffffffffffffff84168a7fefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c611ac160208f018f613bc2565b6040805163ffffffff9092168252602082018a90520160405180910390a3611b9c565b6000611af660808a0160608b01614574565b9050600085878385604051602001611b1194939291906145cd565b60405160208183030381529060405290508080519060200120600860008e815260200190815260200160002060008d60ff1660ff168152602001908152602001600020819055507fb0a708e82202f7fac05dc44361fd47adf79042795add3d2ed05155d3e5e9fa7e8c8c888a8688604051611b919695949392919061464b565b60405180910390a150505b5050600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055505050505050505050565b60015474010000000000000000000000000000000000000000900460ff167ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8101611c5f576040517fdb22c33c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff821601611cbb576040517f76a9ad7300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167402000000000000000000000000000000000000000017905560045473ffffffffffffffffffffffffffffffffffffffff16338114611d4c576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83811015611dca5736858583818110611d6a57611d6a614155565b9050604002019050611dc1816020016020810190611d8891906142fe565b60076000611d996020860186613bc2565b63ffffffff1663ffffffff168152602001908152602001600020612e7690919063ffffffff16565b50600101611d4f565b507f10c5f2b007767d266c6c75c86ae9ed0c74e6320b30bda231af7396a990e7263c85858560405161109d9392919061431b565b60025473ffffffffffffffffffffffffffffffffffffffff16338114611e50576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81611e5c576001611e5f565b60035b600160146101000a81548160ff021916908360ff1602179055505050565b60015474010000000000000000000000000000000000000000900460ff167ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8101611ef4576040517fdb22c33c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff821601611f50576040517f76a9ad7300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674020000000000000000000000000000000000000000179055604051600090611fab90889088908890889088906020016146a4565b60408051601f19818403018152918152815160209283012060008c81526008845282812060ff8d1682529093529120549091508114612016576040517faba8b6ef00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600089815260086020908152604080832060ff8c16845290915281205561203d8787612f61565b82156120f0576040517f7cb5901200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690637cb59012906120bd908a908d908a908a908a90600401614716565b600060405180830381600087803b1580156120d757600080fd5b505af11580156120eb573d6000803e3d6000fd5b505050505b6040805163ffffffff7f00000000000000000000000000000000000000000000000000000000000000001681526020810188905273ffffffffffffffffffffffffffffffffffffffff8916918b917fefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c910160405180910390a35050600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905550505050505050565b6121bb613807565b60408051808201909152600080825260208201526121da858585612315565b5090969095509350505050565b60065473ffffffffffffffffffffffffffffffffffffffff16338114612239576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600160158282829054906101000a900467ffffffffffffffff1661225e91906140e1565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506122c0836122bb8467ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000000290565b612f61565b6040805173ffffffffffffffffffffffffffffffffffffffff8516815267ffffffffffffffff841660208201527fa46907b6b80b882da80d6e36cc905dde57fafff0a5442c8898526fe952d1e65391016111de565b61231d613807565b604080518082019091526000808252602082015260408051808201909152600081526060602082015260015474010000000000000000000000000000000000000000900460ff167ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd81016123bd576040517fdb22c33c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff821601612419576040517f76a9ad7300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674020000000000000000000000000000000000000000179055600080806124658a612fa6565b92509250925060405180604001604052806124a98567ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000000290565b81526020017f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff8516029052955060006124fa6124f3368c90038c018c614773565b88516130c3565b905061250c61090560c08d018d613f82565b156125245761251d8b82858c613118565b9750612537565b6125318b82858c866131c8565b90985095505b875133907f85496b760a4b7f8d66384b9df21b381f5d1b1e79f229a47aaf4c232edc2fe59a61256960208f018f613bc2565b8a516020808d01516040805163ffffffff90951685529184019290925282015260600160405180910390a35050600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790555093979296509094509092505050565b6125ed612b9a565b73ffffffffffffffffffffffffffffffffffffffff8116612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61269e81612d1b565b50565b60006126db7f000000000000000000000000000000000000000000000000000000000000000083816126d5576126d56147a5565b046132f8565b92915050565b60007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821115612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e206160448201527f6e20696e74323536000000000000000000000000000000000000000000000000606482015260840161268c565b5090565b815460009062010000900467ffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000181016127dd5760019150506126db565b8267ffffffffffffffff168167ffffffffffffffff16101561282b576040517f2b4d0ad500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83547fffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffff16620100009390910367ffffffffffffffff16929092029190911790915590565b341561269e576040517f3442dd9500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006128b2826126a1565b90507f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff8216026040517f79cc679000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529193507f0000000000000000000000000000000000000000000000000000000000000000909116906379cc679090604401600060405180830381600087803b15801561297657600080fd5b505af115801561298a573d6000803e3d6000fd5b5050505092915050565b6040805160c0810182526000808252602082018190529181018290526060808201929092526080810182905260a08101919091526040805160c081019091523381526020808201906129e890860186613bc2565b63ffffffff1681526020858101359082015267ffffffffffffffff84166040820152606001612a1a60a0860186613f82565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505090825250602001612a616080860186613f82565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509152509392505050565b612af86040805160e081018252600080825260208083018290528284018290526060808401839052608080850184905260a0850182905285519081018652838152918201839052938101829052928301529060c082015290565b6040805160e08101909152338152602080820190612b1890880188613bc2565b63ffffffff1681526020878101359082015267ffffffffffffffff8616604082015261ffff85166060820152608001612b5460a0880188613f82565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509082525060200192909252509392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146117aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161268c565b815462010000900467ffffffffffffffff168115612cac5767ffffffffffffffff811615612c75576040517fca2bc39800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82547fffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffff1669ffffffffffffffff0000178355505050565b67ffffffffffffffff81811614612cef576040517fca2bc39800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82547fffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffff1683555b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f40c10f1900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152602482018390526000917f0000000000000000000000000000000000000000000000000000000000000000909116906340c10f1990604401600060405180830381600087803b158015612e2557600080fd5b505af1925050508015612e36575060015b156126db5750600192915050565b606084848484604051602001612e5d94939291906147d4565b6040516020818303038152906040529050949350505050565b815462010000900467ffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000018101612eb457505050565b612ebe828261438e565b90507fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000167ffffffffffffffff821601612f23576040517f5e10aa2c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b825467ffffffffffffffff90911662010000027fffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffff9091161790915550565b6000612f6d8383612d90565b905080612d16576040517f06a6167e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810182905281906000612fdd61090560c0870187613f82565b9050612fed3386604001356128a7565b935061300c604051806040016040528060608152602001600081525090565b816130775760408051808201909152806130296080890189613f82565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509082525060200161307060a0890189613f82565b9091525090505b61309c6130876020880188613bc2565b8661309589606001356126a1565b8585613392565b9195509093506130ba90506130b46020880188613bc2565b856135b0565b50509193909250565b604080518082019091526000808252602082015282513414613111576040517f3442dd9500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5090919050565b613120613807565b6020840151156131375761313784602001516135d2565b600354845173ffffffffffffffffffffffffffffffffffffffff9091169063ff6fb300906131658887612994565b87866040518563ffffffff1660e01b815260040161318593929190614852565b60806040518083038185885af11580156131a3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e3f919061490f565b6131d0613807565b604080518082019091526000815260606020820152602086015115613221576040517fb5e0bf8d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600354865173ffffffffffffffffffffffffffffffffffffffff909116906361ccdbfb90613285886007600061325a60208f018f613bc2565b63ffffffff90811682526020820192909252604001600020548d929161ffff909116908a90612a9e16565b876040518463ffffffff1660e01b81526004016132a392919061492b565b60006040518083038185885af11580156132c1573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526132ea9190810190614963565b909890975095505050505050565b600067ffffffffffffffff821115612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203660448201527f3420626974730000000000000000000000000000000000000000000000000000606482015260840161268c565b604080516080808201835260008083526020808401829052838501829052606080850183905263ffffffff8b168084526007835286842054875160e0810189523381529384019190915267ffffffffffffffff8b81168489015291830184905293820183905262010000909304831690921460a0830181905286151560c084015260015494517f07c84e390000000000000000000000000000000000000000000000000000000081529194859493859384939273ffffffffffffffffffffffffffffffffffffffff16906307c84e39906134729084908c90600401614a56565b60a0604051808303816000875af1158015613491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b59190614ae8565b909750945067ffffffffffffffff808c16908816101561351857868b03600160158282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550613540565b8a67ffffffffffffffff168767ffffffffffffffff161115613540578a870390960395600095505b8967ffffffffffffffff168767ffffffffffffffff16108061356a575067ffffffffffffffff8716155b156135a1576040517fa1e8654500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050955095509592505050565b63ffffffff8083166000908152600760205260409020612d1691839061279716565b60055473ffffffffffffffffffffffffffffffffffffffff16613621576040517fb5e0bf8d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055461269e9073ffffffffffffffffffffffffffffffffffffffff16337f00000000000000000000000000000000000000000000000000000000000000008461366d848484846136a9565b6136a3576040517f7c75c3d200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60405173ffffffffffffffffffffffffffffffffffffffff80851660248301528316604482015260648101829052600090610e3f9086907f23b872dd000000000000000000000000000000000000000000000000000000009060840160408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915260008060008473ffffffffffffffffffffffffffffffffffffffff168460405161378e9190614b15565b6000604051808303816000865af19150503d80600081146137cb576040519150601f19603f3d011682016040523d82523d6000602084013e6137d0565b606091505b5091509150816137e15760006137fe565b805115806137fe5750808060200190518101906137fe9190614b31565b95945050505050565b604051806060016040528060008019168152602001600067ffffffffffffffff16815260200161384a604051806040016040528060008152602001600081525090565b905290565b600060e0828403121561386157600080fd5b50919050565b60006020828403121561387957600080fd5b813567ffffffffffffffff81111561389057600080fd5b610e428482850161384f565b60005b838110156138b757818101518382015260200161389f565b50506000910152565b600081518084526138d881602086016020860161389c565b601f01601f19169290920160200192915050565b8351815260208085015190820152600060a08201604060a0604085015281865180845260c08601915060c08160051b8701019350602080890160005b83811015613985578887037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff40018552815180518852830151838801879052613972878901826138c0565b9750509382019390820190600101613928565b50508751606088015250505060208501516080850152509050610e42565b803563ffffffff811681146139b757600080fd5b919050565b600080604083850312156139cf57600080fd5b6139d8836139a3565b9150602083013561ffff811681146139ef57600080fd5b809150509250929050565b6020810160028310613a35577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008083601f840112613a4d57600080fd5b50813567ffffffffffffffff811115613a6557600080fd5b602083019150836020828501011115613a7d57600080fd5b9250929050565b60008060008060608587031215613a9a57600080fd5b613aa3856139a3565b9350602085013567ffffffffffffffff811115613abf57600080fd5b613acb87828801613a3b565b9598909750949560400135949350505050565b608081016126db828480516fffffffffffffffffffffffffffffffff908116835260208083015182169084015260408083015182169084015260609182015116910152565b600080600060408486031215613b3857600080fd5b613b41846139a3565b9250602084013567ffffffffffffffff80821115613b5e57600080fd5b818601915086601f830112613b7257600080fd5b813581811115613b8157600080fd5b8760208260061b8501011115613b9657600080fd5b6020830194508093505050509250925092565b600060208284031215613bbb57600080fd5b5035919050565b600060208284031215613bd457600080fd5b613bdd826139a3565b9392505050565b801515811461269e57600080fd5b60008060408385031215613c0557600080fd5b823567ffffffffffffffff811115613c1c57600080fd5b613c288582860161384f565b92505060208301356139ef81613be4565b8151815260208083015190820152604081016126db565b60008060408385031215613c6357600080fd5b613c6c836139a3565b915060208301356139ef81613be4565b600060c0828403121561386157600080fd5b803560ff811681146139b757600080fd5b60008060008084860360c0811215613cb657600080fd5b6060811215613cc457600080fd5b5084935060608501359250613cdb60808601613c8e565b915060a085013567ffffffffffffffff811115613cf757600080fd5b850160808188031215613d0957600080fd5b939692955090935050565b600060208284031215613d2657600080fd5b8135613bdd81613be4565b803573ffffffffffffffffffffffffffffffffffffffff811681146139b757600080fd5b600080600080600080600060c0888a031215613d7057600080fd5b87359650613d8060208901613c8e565b9550613d8e60408901613d31565b945060608801359350613da360808901613c8e565b925060a088013567ffffffffffffffff811115613dbf57600080fd5b613dcb8a828b01613a3b565b989b979a50959850939692959293505050565b60008060008385036080811215613df457600080fd5b843567ffffffffffffffff811115613e0b57600080fd5b613e178782880161384f565b9450506040601f1982011215613e2c57600080fd5b50602084019150613e3f60608501613d31565b90509250925092565b8051825267ffffffffffffffff60208201511660208301526040810151612d16604084018280518252602090810151910152565b60c08101613e8a8285613e48565b82516080830152602083015160a0830152613bdd565b67ffffffffffffffff8116811461269e57600080fd5b60008060408385031215613ec957600080fd5b613ed283613d31565b915060208301356139ef81613ea0565b613eec8185613e48565b82516080820152602083015160a082015260e060c082015266ffffffffffffff82511660e0820152600060208301516040610100840152613f316101208401826138c0565b9695505050505050565b60008060408385031215613f4e57600080fd5b82359150613f5e60208401613c8e565b90509250929050565b600060208284031215613f7957600080fd5b613bdd82613d31565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112613fb757600080fd5b83018035915067ffffffffffffffff821115613fd257600080fd5b602001915036819003821315613a7d57600080fd5b60e081016126db828473ffffffffffffffffffffffffffffffffffffffff815116825263ffffffff6020820151166020830152604081015167ffffffffffffffff8082166040850152806060840151166060850152806080840151166080850152505060a0810151151560a083015260c0810151151560c08301525050565b60006020828403121561407857600080fd5b8151613bdd81613ea0565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b67ffffffffffffffff828116828216039080821115614102576141026140b2565b5092915050565b808202600082127f800000000000000000000000000000000000000000000000000000000000000084141615614141576141416140b2565b81810583148215176126db576126db6140b2565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081516040845261419960408501826138c0565b602093840151949093019390935250919050565b73ffffffffffffffffffffffffffffffffffffffff8416815263ffffffff83166020820152606060408201526000610e3f6060830184614184565b6040805190810167ffffffffffffffff8111828210171561420b5761420b614083565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561423a5761423a614083565b604052919050565b80516fffffffffffffffffffffffffffffffff811681146139b757600080fd5b60006080828403121561427457600080fd5b6040516080810181811067ffffffffffffffff8211171561429757614297614083565b6040529050806142a683614242565b81526142b460208401614242565b60208201526142c560408401614242565b60408201526142d660608401614242565b60608201525092915050565b6000608082840312156142f457600080fd5b613bdd8383614262565b60006020828403121561431057600080fd5b8135613bdd81613ea0565b63ffffffff848116825260406020808401829052838201859052600092869160608601855b888110156143805783614352866139a3565b1682528285013561436281613ea0565b67ffffffffffffffff16828401529385019390850190600101614340565b509998505050505050505050565b67ffffffffffffffff818116838216019080821115614102576141026140b2565b73ffffffffffffffffffffffffffffffffffffffff815116825263ffffffff60208201511660208301526040810151604083015267ffffffffffffffff60608201511660608301526000608082015160c0608085015261441260c08501826138c0565b905060a083015184820360a08601526137fe82826138c0565b60408152600061443e60408301856143af565b905082151560208301529392505050565b60006040828403121561446157600080fd5b6144696141e8565b9050815181526020820151602082015292915050565b60006040828403121561449157600080fd5b613bdd838361444f565b600061014073ffffffffffffffffffffffffffffffffffffffff835116845263ffffffff60208401511660208501526040830151604085015267ffffffffffffffff606084015116606085015261ffff608084015116608085015260a08301518160a086015261450d828601826138c0565b91505060c083015161455960c086018280516fffffffffffffffffffffffffffffffff908116835260208083015182169084015260408083015182169084015260609182015116910152565b509392505050565b602081526000613bdd602083018461449b565b60006020828403121561458657600080fd5b613bdd82613c8e565b73ffffffffffffffffffffffffffffffffffffffff8516815283602082015260ff83166040820152608060608201526000613f3160808301846138c0565b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008560601b1681528360148201527fff000000000000000000000000000000000000000000000000000000000000008360f81b1660348201526000825161463b81603585016020870161389c565b9190910160350195945050505050565b86815260ff8616602082015273ffffffffffffffffffffffffffffffffffffffff8516604082015283606082015260ff8316608082015260c060a0820152600061469860c08301846138c0565b98975050505050505050565b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008660601b1681528460148201527fff000000000000000000000000000000000000000000000000000000000000008460f81b1660348201528183603583013760009101603501908152949350505050565b73ffffffffffffffffffffffffffffffffffffffff8616815284602082015260ff8416604082015260806060820152816080820152818360a0830137600081830160a090810191909152601f909201601f19160101949350505050565b60006040828403121561478557600080fd5b61478d6141e8565b82358152602083013560208201528091505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7fffffffffffffffff0000000000000000000000000000000000000000000000008560c01b1681527fffffffff000000000000000000000000000000000000000000000000000000008460e01b16600882015282600c8201526000825161484281602c85016020870161389c565b91909101602c0195945050505050565b60808152600061486560808301866143af565b905061487e602083018580518252602090810151910152565b73ffffffffffffffffffffffffffffffffffffffff83166060830152949350505050565b6000608082840312156148b457600080fd5b6040516060810181811067ffffffffffffffff821117156148d7576148d7614083565b80604052508091508251815260208301516148f181613ea0565b6020820152614903846040850161444f565b60408201525092915050565b60006080828403121561492157600080fd5b613bdd83836148a2565b60408152600061493e604083018561449b565b905073ffffffffffffffffffffffffffffffffffffffff831660208301529392505050565b60008060a0838503121561497657600080fd5b61498084846148a2565b9150608083015167ffffffffffffffff8082111561499d57600080fd5b90840190604082870312156149b157600080fd5b6149b96141e8565b825166ffffffffffffff811681146149d057600080fd5b8152602083810151838111156149e557600080fd5b80850194505087601f8501126149fa57600080fd5b835183811115614a0c57614a0c614083565b614a1e82601f19601f84011601614211565b93508084528882828701011115614a3457600080fd5b614a438183860184880161389c565b5081019190915292959294509192505050565b6000610100614ad6838673ffffffffffffffffffffffffffffffffffffffff815116825263ffffffff6020820151166020830152604081015167ffffffffffffffff8082166040850152806060840151166060850152806080840151166080850152505060a0810151151560a083015260c0810151151560c08301525050565b8060e08401526137fe81840185614184565b60008060a08385031215614afb57600080fd5b8251614b0681613ea0565b9150613f5e8460208501614262565b60008251614b2781846020870161389c565b9190910192915050565b600060208284031215614b4357600080fd5b8151613bdd81613be456fea2646970667358221220e745bb6549a843422ce115066ad0fa07e514855433d164470d3bbd48d0dfc25964736f6c63430008160033",
1371
+ "deployedBytecode": "0x6080604052600436106101b75760003560e01c80637e3e8a4c116100ec578063c7c7f5b31161008a578063cc32d17611610064578063cc32d1761461068e578063d621ad3f146106e1578063f2fde38b14610727578063fc0c546a1461074757600080fd5b8063c7c7f5b31461062b578063c859c4831461064c578063cbef2aa91461066c57600080fd5b80639561b12f116100c65780639561b12f146105af5780639f68b964146105cf578063bedb86fb146105eb578063c0b789671461060b57600080fd5b80637e3e8a4c1461050f578063857749b01461052f5780638da5cb5b1461056357600080fd5b80632bc5114c116101595780633b6f743b116101335780633b6f743b1461048d5780633faa12c5146104ba578063461bb0b9146104da578063715018a6146104fa57600080fd5b80632bc5114c14610304578063341a46481461041457806338da6b8e1461042757600080fd5b806316909bca1161019557806316909bca1461025757806316a96d1e14610273578063200d2ed2146102a05780632708987a146102e457600080fd5b80630d35b415146101bc5780630f12f7ab146101f4578063156a0d0f14610216575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004613867565b61077b565b6040516101eb939291906138ec565b60405180910390f35b34801561020057600080fd5b5061021461020f3660046139bc565b610c99565b005b34801561022257600080fd5b50604080517f02e49c2c00000000000000000000000000000000000000000000000000000000815260006020820152016101eb565b34801561026357600080fd5b5060016040516101eb91906139fa565b34801561027f57600080fd5b5061029361028e366004613a84565b610d35565b6040516101eb9190613ade565b3480156102ac57600080fd5b506001546102d29074010000000000000000000000000000000000000000900460ff1681565b60405160ff90911681526020016101eb565b3480156102f057600080fd5b506102146102ff366004613b23565b610e4a565b34801561031057600080fd5b506103a66040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a0810191909152506040805160c08101825260015473ffffffffffffffffffffffffffffffffffffffff908116825260025481166020830152600654811692820192909252600354821660608201526004548216608082015260055490911660a082015290565b6040516101eb9190600060c08201905073ffffffffffffffffffffffffffffffffffffffff8084511683528060208501511660208401528060408501511660408401528060608501511660608401528060808501511660808401528060a08501511660a08401525092915050565b610214610422366004613ba9565b6110eb565b34801561043357600080fd5b5061046a610442366004613bc2565b60076020526000908152604090205461ffff81169062010000900467ffffffffffffffff1682565b6040805161ffff909316835267ffffffffffffffff9091166020830152016101eb565b34801561049957600080fd5b506104ad6104a8366004613bf2565b6111eb565b6040516101eb9190613c39565b3480156104c657600080fd5b506102146104d5366004613c50565b6114bf565b3480156104e657600080fd5b506102146104f5366004613c7c565b611592565b34801561050657600080fd5b50610214611798565b34801561051b57600080fd5b5061021461052a366004613c9f565b6117ac565b34801561053b57600080fd5b506102d27f000000000000000000000000000000000000000000000000000000000000000081565b34801561056f57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101eb565b3480156105bb57600080fd5b506102146105ca366004613b23565b611be8565b3480156105db57600080fd5b50604051600181526020016101eb565b3480156105f757600080fd5b50610214610606366004613d14565b611dfe565b34801561061757600080fd5b50610214610626366004613d55565b611e7d565b61063e610639366004613dde565b6121b3565b6040516101eb929190613e7c565b34801561065857600080fd5b50610214610667366004613eb6565b6121e7565b61067f61067a366004613dde565b612315565b6040516101eb93929190613ee2565b34801561069a57600080fd5b506001546106c8907501000000000000000000000000000000000000000000900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016101eb565b3480156106ed57600080fd5b506107196106fc366004613f3b565b600860209081526000928352604080842090915290825290205481565b6040519081526020016101eb565b34801561073357600080fd5b50610214610742366004613f67565b6125e5565b34801561075357600080fd5b5061058a7f000000000000000000000000000000000000000000000000000000000000000081565b604080518082019091526000808252602082015260606107ae604051806040016040528060008152602001600081525090565b6000806108116007826107c460208a018a613bc2565b63ffffffff1681526020810191909152604001600020547f00000000000000000000000000000000000000000000000000000000000000006201000090910467ffffffffffffffff160290565b6020860181905260009060408801351161082f578660400135610835565b85602001515b90506000610842826126a1565b6040805160e08101909152338152909150600090602080820190610868908c018c613bc2565b63ffffffff1681526020018367ffffffffffffffff1681526020018667ffffffffffffffff1681526020018567ffffffffffffffff1681526020016108ee600760008d60000160208101906108bd9190613bc2565b63ffffffff1663ffffffff1681526020019081526020016000205462010000900467ffffffffffffffff9081161490565b1515815260200161090b61090560c08d018d613f82565b15919050565b151590526001546040517f5b64903b00000000000000000000000000000000000000000000000000000000815291925060009173ffffffffffffffffffffffffffffffffffffffff90911690635b64903b9061096b908590600401613fe7565b602060405180830381865afa158015610988573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ac9190614066565b90508267ffffffffffffffff168167ffffffffffffffff1614610c295760408051600180825281830190925290816020015b6040805180820190915260008152606060208201528152602001906001900390816109de5790505097508267ffffffffffffffff168167ffffffffffffffff161015610b00576040518060400160405280610a75610a708487610a4191906140e1565b67ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000000290565b6126e1565b610a9f907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff614109565b81526020016040518060400160405280600c81526020017f70726f746f636f6c20666565000000000000000000000000000000000000000081525081525088600081518110610af057610af0614155565b6020026020010181905250610c29565b8267ffffffffffffffff168167ffffffffffffffff161115610c29576000610b2884836140e1565b9091039050600067ffffffffffffffff84811690831603610b89576040805160008082526020820190925290610b81565b604080518082019091526000815260606020820152815260200190600190039081610b595790505b509850610c27565b6040518060400160405280610bca610a708467ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000000290565b81526020016040518060400160405280600681526020017f726577617264000000000000000000000000000000000000000000000000000081525081525089600081518110610c1b57610c1b614155565b60200260200101819052505b505b7f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff84160287527f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff821602602088015250969895975093955050505050565b60025473ffffffffffffffffffffffffffffffffffffffff16338114610ceb576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5063ffffffff91909116600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff909216919091179055565b6040805160808101825260008082526020820181905291810182905260608101919091526001546040805160606020601f88018190040282018101835291810186815273ffffffffffffffffffffffffffffffffffffffff9093169263df0810919233928a9290918291908b908b90819085018382808284376000920191909152505050908252506020018790526040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152610dfe939291906004016141ad565b608060405180830381865afa158015610e1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3f91906142e2565b90505b949350505050565b60015474010000000000000000000000000000000000000000900460ff167ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8101610ec1576040517fdb22c33c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff821601610f1d576040517f76a9ad7300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167402000000000000000000000000000000000000000017905560045473ffffffffffffffffffffffffffffffffffffffff16338114610fae576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b838110156110695736858583818110610fcc57610fcc614155565b90506040020190506000611025826020016020810190610fec91906142fe565b60076000610ffd6020870187613bc2565b63ffffffff1663ffffffff16815260200190815260200160002061279790919063ffffffff16565b9050801561105f576040517fada8342400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050600101610fb1565b507fce105e156370093e6600169f7c01277f740d45fbcf95435227ce6f43ad0c3abd85858560405161109d9392919061431b565b60405180910390a15050600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633811461113d576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111468261286f565b600061115233846128a7565b905080600160158282829054906101000a900467ffffffffffffffff16611179919061438e565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507fa064a2faa279f4d67c85c8fc69d4ebb7de2739a9e6dd864dfdd1b9e066d4bfd0816040516111de919067ffffffffffffffff91909116815260200190565b60405180910390a1505050565b6040805180820190915260008082526020820152600061120e84604001356126a1565b90508067ffffffffffffffff16600003611254576040517f3442dd9500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061126661090560c0870187613f82565b905080156112fb5760035473ffffffffffffffffffffffffffffffffffffffff16633292cf026112968785612994565b866040518363ffffffff1660e01b81526004016112b492919061442b565b6040805180830381865afa1580156112d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f4919061447f565b92506114b7565b600060405180604001604052808780608001906113189190613f82565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509082525060200161135f60a0890189613f82565b9091525060015490915060009073ffffffffffffffffffffffffffffffffffffffff1663df0810913361139560208b018b613bc2565b856040518463ffffffff1660e01b81526004016113b4939291906141ad565b608060405180830381865afa1580156113d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f591906142e2565b60035490915073ffffffffffffffffffffffffffffffffffffffff1663bae02db6611456866007600061142b60208e018e613bc2565b63ffffffff90811682526020820192909252604001600020548c929161ffff909116908790612a9e16565b6040518263ffffffff1660e01b81526004016114729190614561565b6040805180830381865afa15801561148e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b2919061447f565b945050505b505092915050565b6114c7612b9a565b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168263ffffffff160361152c576040517fada8342400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff808316600090815260076020526040902061154e918390612c1b16565b6040805163ffffffff8416815282151560208201527faf6b8dd4c5a827e03f548d06181b36aaba61e22436ff1cfa9bc409d576366a60910160405180910390a15050565b61159a612b9a565b6115a76020820182613f67565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790556115fc6040820160208301613f67565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790556116516060820160408301613f67565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790556116a66080820160608301613f67565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790556116fb60a0820160808301613f67565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905561175060c0820160a08301613f67565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905550565b6117a0612b9a565b6117aa6000612d1b565b565b60015474010000000000000000000000000000000000000000900460ff167ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8101611823576040517fdb22c33c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff82160161187f576040517f76a9ad7300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167402000000000000000000000000000000000000000017905560035473ffffffffffffffffffffffffffffffffffffffff16338114611910576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611925610a4160408601602087016142fe565b905060006119366020860186613f67565b905060006119448284612d90565b90506000806119566040890189613f82565b9050119050606081156119ce576119cb61197660608d0160408e016142fe565b61198360208e018e613bc2565b8761199160408d018d613f82565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612e4492505050565b90505b8215611ae4578115611a7b5773ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016637cb59012858c611a2860808d0160608e01614574565b856040518563ffffffff1660e01b8152600401611a48949392919061458f565b600060405180830381600087803b158015611a6257600080fd5b505af1158015611a76573d6000803e3d6000fd5b505050505b73ffffffffffffffffffffffffffffffffffffffff84168a7fefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c611ac160208f018f613bc2565b6040805163ffffffff9092168252602082018a90520160405180910390a3611b9c565b6000611af660808a0160608b01614574565b9050600085878385604051602001611b1194939291906145cd565b60405160208183030381529060405290508080519060200120600860008e815260200190815260200160002060008d60ff1660ff168152602001908152602001600020819055507fb0a708e82202f7fac05dc44361fd47adf79042795add3d2ed05155d3e5e9fa7e8c8c888a8688604051611b919695949392919061464b565b60405180910390a150505b5050600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055505050505050505050565b60015474010000000000000000000000000000000000000000900460ff167ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8101611c5f576040517fdb22c33c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff821601611cbb576040517f76a9ad7300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167402000000000000000000000000000000000000000017905560045473ffffffffffffffffffffffffffffffffffffffff16338114611d4c576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83811015611dca5736858583818110611d6a57611d6a614155565b9050604002019050611dc1816020016020810190611d8891906142fe565b60076000611d996020860186613bc2565b63ffffffff1663ffffffff168152602001908152602001600020612e7690919063ffffffff16565b50600101611d4f565b507f10c5f2b007767d266c6c75c86ae9ed0c74e6320b30bda231af7396a990e7263c85858560405161109d9392919061431b565b60025473ffffffffffffffffffffffffffffffffffffffff16338114611e50576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81611e5c576001611e5f565b60035b600160146101000a81548160ff021916908360ff1602179055505050565b60015474010000000000000000000000000000000000000000900460ff167ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd8101611ef4576040517fdb22c33c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff821601611f50576040517f76a9ad7300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674020000000000000000000000000000000000000000179055604051600090611fab90889088908890889088906020016146a4565b60408051601f19818403018152918152815160209283012060008c81526008845282812060ff8d1682529093529120549091508114612016576040517faba8b6ef00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600089815260086020908152604080832060ff8c16845290915281205561203d8787612f61565b82156120f0576040517f7cb5901200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690637cb59012906120bd908a908d908a908a908a90600401614716565b600060405180830381600087803b1580156120d757600080fd5b505af11580156120eb573d6000803e3d6000fd5b505050505b6040805163ffffffff7f00000000000000000000000000000000000000000000000000000000000000001681526020810188905273ffffffffffffffffffffffffffffffffffffffff8916918b917fefed6d3500546b29533b128a29e3a94d70788727f0507505ac12eaf2e578fd9c910160405180910390a35050600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905550505050505050565b6121bb613807565b60408051808201909152600080825260208201526121da858585612315565b5090969095509350505050565b60065473ffffffffffffffffffffffffffffffffffffffff16338114612239576040517f5bd25eff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600160158282829054906101000a900467ffffffffffffffff1661225e91906140e1565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506122c0836122bb8467ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000000290565b612f61565b6040805173ffffffffffffffffffffffffffffffffffffffff8516815267ffffffffffffffff841660208201527fa46907b6b80b882da80d6e36cc905dde57fafff0a5442c8898526fe952d1e65391016111de565b61231d613807565b604080518082019091526000808252602082015260408051808201909152600081526060602082015260015474010000000000000000000000000000000000000000900460ff167ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd81016123bd576040517fdb22c33c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe60ff821601612419576040517f76a9ad7300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674020000000000000000000000000000000000000000179055600080806124658a612fa6565b92509250925060405180604001604052806124a98567ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000000290565b81526020017f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff8516029052955060006124fa6124f3368c90038c018c614773565b88516130c3565b905061250c61090560c08d018d613f82565b156125245761251d8b82858c613118565b9750612537565b6125318b82858c866131c8565b90985095505b875133907f85496b760a4b7f8d66384b9df21b381f5d1b1e79f229a47aaf4c232edc2fe59a61256960208f018f613bc2565b8a516020808d01516040805163ffffffff90951685529184019290925282015260600160405180910390a35050600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790555093979296509094509092505050565b6125ed612b9a565b73ffffffffffffffffffffffffffffffffffffffff8116612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61269e81612d1b565b50565b60006126db7f000000000000000000000000000000000000000000000000000000000000000083816126d5576126d56147a5565b046132f8565b92915050565b60007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821115612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e206160448201527f6e20696e74323536000000000000000000000000000000000000000000000000606482015260840161268c565b5090565b815460009062010000900467ffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000181016127dd5760019150506126db565b8267ffffffffffffffff168167ffffffffffffffff16101561282b576040517f2b4d0ad500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83547fffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffff16620100009390910367ffffffffffffffff16929092029190911790915590565b341561269e576040517f3442dd9500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006128b2826126a1565b90507f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff8216026040517f79cc679000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529193507f0000000000000000000000000000000000000000000000000000000000000000909116906379cc679090604401600060405180830381600087803b15801561297657600080fd5b505af115801561298a573d6000803e3d6000fd5b5050505092915050565b6040805160c0810182526000808252602082018190529181018290526060808201929092526080810182905260a08101919091526040805160c081019091523381526020808201906129e890860186613bc2565b63ffffffff1681526020858101359082015267ffffffffffffffff84166040820152606001612a1a60a0860186613f82565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505090825250602001612a616080860186613f82565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509152509392505050565b612af86040805160e081018252600080825260208083018290528284018290526060808401839052608080850184905260a0850182905285519081018652838152918201839052938101829052928301529060c082015290565b6040805160e08101909152338152602080820190612b1890880188613bc2565b63ffffffff1681526020878101359082015267ffffffffffffffff8616604082015261ffff85166060820152608001612b5460a0880188613f82565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509082525060200192909252509392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146117aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161268c565b815462010000900467ffffffffffffffff168115612cac5767ffffffffffffffff811615612c75576040517fca2bc39800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82547fffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffff1669ffffffffffffffff0000178355505050565b67ffffffffffffffff81811614612cef576040517fca2bc39800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82547fffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffff1683555b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f40c10f1900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152602482018390526000917f0000000000000000000000000000000000000000000000000000000000000000909116906340c10f1990604401600060405180830381600087803b158015612e2557600080fd5b505af1925050508015612e36575060015b156126db5750600192915050565b606084848484604051602001612e5d94939291906147d4565b6040516020818303038152906040529050949350505050565b815462010000900467ffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000018101612eb457505050565b612ebe828261438e565b90507fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000167ffffffffffffffff821601612f23576040517f5e10aa2c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b825467ffffffffffffffff90911662010000027fffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffff9091161790915550565b6000612f6d8383612d90565b905080612d16576040517f06a6167e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810182905281906000612fdd61090560c0870187613f82565b9050612fed3386604001356128a7565b935061300c604051806040016040528060608152602001600081525090565b816130775760408051808201909152806130296080890189613f82565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050509082525060200161307060a0890189613f82565b9091525090505b61309c6130876020880188613bc2565b8661309589606001356126a1565b8585613392565b9195509093506130ba90506130b46020880188613bc2565b856135b0565b50509193909250565b604080518082019091526000808252602082015282513414613111576040517f3442dd9500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5090919050565b613120613807565b6020840151156131375761313784602001516135d2565b600354845173ffffffffffffffffffffffffffffffffffffffff9091169063ff6fb300906131658887612994565b87866040518563ffffffff1660e01b815260040161318593929190614852565b60806040518083038185885af11580156131a3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e3f919061490f565b6131d0613807565b604080518082019091526000815260606020820152602086015115613221576040517fb5e0bf8d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600354865173ffffffffffffffffffffffffffffffffffffffff909116906361ccdbfb90613285886007600061325a60208f018f613bc2565b63ffffffff90811682526020820192909252604001600020548d929161ffff909116908a90612a9e16565b876040518463ffffffff1660e01b81526004016132a392919061492b565b60006040518083038185885af11580156132c1573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526132ea9190810190614963565b909890975095505050505050565b600067ffffffffffffffff821115612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203660448201527f3420626974730000000000000000000000000000000000000000000000000000606482015260840161268c565b604080516080808201835260008083526020808401829052838501829052606080850183905263ffffffff8b168084526007835286842054875160e0810189523381529384019190915267ffffffffffffffff8b81168489015291830184905293820183905262010000909304831690921460a0830181905286151560c084015260015494517f07c84e390000000000000000000000000000000000000000000000000000000081529194859493859384939273ffffffffffffffffffffffffffffffffffffffff16906307c84e39906134729084908c90600401614a56565b60a0604051808303816000875af1158015613491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b59190614ae8565b909750945067ffffffffffffffff808c16908816101561351857868b03600160158282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550613540565b8a67ffffffffffffffff168767ffffffffffffffff161115613540578a870390960395600095505b8967ffffffffffffffff168767ffffffffffffffff16108061356a575067ffffffffffffffff8716155b156135a1576040517fa1e8654500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050955095509592505050565b63ffffffff8083166000908152600760205260409020612d1691839061279716565b60055473ffffffffffffffffffffffffffffffffffffffff16613621576040517fb5e0bf8d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055461269e9073ffffffffffffffffffffffffffffffffffffffff16337f00000000000000000000000000000000000000000000000000000000000000008461366d848484846136a9565b6136a3576040517f7c75c3d200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60405173ffffffffffffffffffffffffffffffffffffffff80851660248301528316604482015260648101829052600090610e3f9086907f23b872dd000000000000000000000000000000000000000000000000000000009060840160408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915260008060008473ffffffffffffffffffffffffffffffffffffffff168460405161378e9190614b15565b6000604051808303816000865af19150503d80600081146137cb576040519150601f19603f3d011682016040523d82523d6000602084013e6137d0565b606091505b5091509150816137e15760006137fe565b805115806137fe5750808060200190518101906137fe9190614b31565b95945050505050565b604051806060016040528060008019168152602001600067ffffffffffffffff16815260200161384a604051806040016040528060008152602001600081525090565b905290565b600060e0828403121561386157600080fd5b50919050565b60006020828403121561387957600080fd5b813567ffffffffffffffff81111561389057600080fd5b610e428482850161384f565b60005b838110156138b757818101518382015260200161389f565b50506000910152565b600081518084526138d881602086016020860161389c565b601f01601f19169290920160200192915050565b8351815260208085015190820152600060a08201604060a0604085015281865180845260c08601915060c08160051b8701019350602080890160005b83811015613985578887037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff40018552815180518852830151838801879052613972878901826138c0565b9750509382019390820190600101613928565b50508751606088015250505060208501516080850152509050610e42565b803563ffffffff811681146139b757600080fd5b919050565b600080604083850312156139cf57600080fd5b6139d8836139a3565b9150602083013561ffff811681146139ef57600080fd5b809150509250929050565b6020810160028310613a35577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008083601f840112613a4d57600080fd5b50813567ffffffffffffffff811115613a6557600080fd5b602083019150836020828501011115613a7d57600080fd5b9250929050565b60008060008060608587031215613a9a57600080fd5b613aa3856139a3565b9350602085013567ffffffffffffffff811115613abf57600080fd5b613acb87828801613a3b565b9598909750949560400135949350505050565b608081016126db828480516fffffffffffffffffffffffffffffffff908116835260208083015182169084015260408083015182169084015260609182015116910152565b600080600060408486031215613b3857600080fd5b613b41846139a3565b9250602084013567ffffffffffffffff80821115613b5e57600080fd5b818601915086601f830112613b7257600080fd5b813581811115613b8157600080fd5b8760208260061b8501011115613b9657600080fd5b6020830194508093505050509250925092565b600060208284031215613bbb57600080fd5b5035919050565b600060208284031215613bd457600080fd5b613bdd826139a3565b9392505050565b801515811461269e57600080fd5b60008060408385031215613c0557600080fd5b823567ffffffffffffffff811115613c1c57600080fd5b613c288582860161384f565b92505060208301356139ef81613be4565b8151815260208083015190820152604081016126db565b60008060408385031215613c6357600080fd5b613c6c836139a3565b915060208301356139ef81613be4565b600060c0828403121561386157600080fd5b803560ff811681146139b757600080fd5b60008060008084860360c0811215613cb657600080fd5b6060811215613cc457600080fd5b5084935060608501359250613cdb60808601613c8e565b915060a085013567ffffffffffffffff811115613cf757600080fd5b850160808188031215613d0957600080fd5b939692955090935050565b600060208284031215613d2657600080fd5b8135613bdd81613be4565b803573ffffffffffffffffffffffffffffffffffffffff811681146139b757600080fd5b600080600080600080600060c0888a031215613d7057600080fd5b87359650613d8060208901613c8e565b9550613d8e60408901613d31565b945060608801359350613da360808901613c8e565b925060a088013567ffffffffffffffff811115613dbf57600080fd5b613dcb8a828b01613a3b565b989b979a50959850939692959293505050565b60008060008385036080811215613df457600080fd5b843567ffffffffffffffff811115613e0b57600080fd5b613e178782880161384f565b9450506040601f1982011215613e2c57600080fd5b50602084019150613e3f60608501613d31565b90509250925092565b8051825267ffffffffffffffff60208201511660208301526040810151612d16604084018280518252602090810151910152565b60c08101613e8a8285613e48565b82516080830152602083015160a0830152613bdd565b67ffffffffffffffff8116811461269e57600080fd5b60008060408385031215613ec957600080fd5b613ed283613d31565b915060208301356139ef81613ea0565b613eec8185613e48565b82516080820152602083015160a082015260e060c082015266ffffffffffffff82511660e0820152600060208301516040610100840152613f316101208401826138c0565b9695505050505050565b60008060408385031215613f4e57600080fd5b82359150613f5e60208401613c8e565b90509250929050565b600060208284031215613f7957600080fd5b613bdd82613d31565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112613fb757600080fd5b83018035915067ffffffffffffffff821115613fd257600080fd5b602001915036819003821315613a7d57600080fd5b60e081016126db828473ffffffffffffffffffffffffffffffffffffffff815116825263ffffffff6020820151166020830152604081015167ffffffffffffffff8082166040850152806060840151166060850152806080840151166080850152505060a0810151151560a083015260c0810151151560c08301525050565b60006020828403121561407857600080fd5b8151613bdd81613ea0565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b67ffffffffffffffff828116828216039080821115614102576141026140b2565b5092915050565b808202600082127f800000000000000000000000000000000000000000000000000000000000000084141615614141576141416140b2565b81810583148215176126db576126db6140b2565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081516040845261419960408501826138c0565b602093840151949093019390935250919050565b73ffffffffffffffffffffffffffffffffffffffff8416815263ffffffff83166020820152606060408201526000610e3f6060830184614184565b6040805190810167ffffffffffffffff8111828210171561420b5761420b614083565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561423a5761423a614083565b604052919050565b80516fffffffffffffffffffffffffffffffff811681146139b757600080fd5b60006080828403121561427457600080fd5b6040516080810181811067ffffffffffffffff8211171561429757614297614083565b6040529050806142a683614242565b81526142b460208401614242565b60208201526142c560408401614242565b60408201526142d660608401614242565b60608201525092915050565b6000608082840312156142f457600080fd5b613bdd8383614262565b60006020828403121561431057600080fd5b8135613bdd81613ea0565b63ffffffff848116825260406020808401829052838201859052600092869160608601855b888110156143805783614352866139a3565b1682528285013561436281613ea0565b67ffffffffffffffff16828401529385019390850190600101614340565b509998505050505050505050565b67ffffffffffffffff818116838216019080821115614102576141026140b2565b73ffffffffffffffffffffffffffffffffffffffff815116825263ffffffff60208201511660208301526040810151604083015267ffffffffffffffff60608201511660608301526000608082015160c0608085015261441260c08501826138c0565b905060a083015184820360a08601526137fe82826138c0565b60408152600061443e60408301856143af565b905082151560208301529392505050565b60006040828403121561446157600080fd5b6144696141e8565b9050815181526020820151602082015292915050565b60006040828403121561449157600080fd5b613bdd838361444f565b600061014073ffffffffffffffffffffffffffffffffffffffff835116845263ffffffff60208401511660208501526040830151604085015267ffffffffffffffff606084015116606085015261ffff608084015116608085015260a08301518160a086015261450d828601826138c0565b91505060c083015161455960c086018280516fffffffffffffffffffffffffffffffff908116835260208083015182169084015260408083015182169084015260609182015116910152565b509392505050565b602081526000613bdd602083018461449b565b60006020828403121561458657600080fd5b613bdd82613c8e565b73ffffffffffffffffffffffffffffffffffffffff8516815283602082015260ff83166040820152608060608201526000613f3160808301846138c0565b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008560601b1681528360148201527fff000000000000000000000000000000000000000000000000000000000000008360f81b1660348201526000825161463b81603585016020870161389c565b9190910160350195945050505050565b86815260ff8616602082015273ffffffffffffffffffffffffffffffffffffffff8516604082015283606082015260ff8316608082015260c060a0820152600061469860c08301846138c0565b98975050505050505050565b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008660601b1681528460148201527fff000000000000000000000000000000000000000000000000000000000000008460f81b1660348201528183603583013760009101603501908152949350505050565b73ffffffffffffffffffffffffffffffffffffffff8616815284602082015260ff8416604082015260806060820152816080820152818360a0830137600081830160a090810191909152601f909201601f19160101949350505050565b60006040828403121561478557600080fd5b61478d6141e8565b82358152602083013560208201528091505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7fffffffffffffffff0000000000000000000000000000000000000000000000008560c01b1681527fffffffff000000000000000000000000000000000000000000000000000000008460e01b16600882015282600c8201526000825161484281602c85016020870161389c565b91909101602c0195945050505050565b60808152600061486560808301866143af565b905061487e602083018580518252602090810151910152565b73ffffffffffffffffffffffffffffffffffffffff83166060830152949350505050565b6000608082840312156148b457600080fd5b6040516060810181811067ffffffffffffffff821117156148d7576148d7614083565b80604052508091508251815260208301516148f181613ea0565b6020820152614903846040850161444f565b60408201525092915050565b60006080828403121561492157600080fd5b613bdd83836148a2565b60408152600061493e604083018561449b565b905073ffffffffffffffffffffffffffffffffffffffff831660208301529392505050565b60008060a0838503121561497657600080fd5b61498084846148a2565b9150608083015167ffffffffffffffff8082111561499d57600080fd5b90840190604082870312156149b157600080fd5b6149b96141e8565b825166ffffffffffffff811681146149d057600080fd5b8152602083810151838111156149e557600080fd5b80850194505087601f8501126149fa57600080fd5b835183811115614a0c57614a0c614083565b614a1e82601f19601f84011601614211565b93508084528882828701011115614a3457600080fd5b614a438183860184880161389c565b5081019190915292959294509192505050565b6000610100614ad6838673ffffffffffffffffffffffffffffffffffffffff815116825263ffffffff6020820151166020830152604081015167ffffffffffffffff8082166040850152806060840151166060850152806080840151166080850152505060a0810151151560a083015260c0810151151560c08301525050565b8060e08401526137fe81840185614184565b60008060a08385031215614afb57600080fd5b8251614b0681613ea0565b9150613f5e8460208501614262565b60008251614b2781846020870161389c565b9190910192915050565b600060208284031215614b4357600080fd5b8151613bdd81613be456fea2646970667358221220e745bb6549a843422ce115066ad0fa07e514855433d164470d3bbd48d0dfc25964736f6c63430008160033",
1372
+ "linkReferences": {},
1373
+ "deployedLinkReferences": {}
1374
+ }