@4everland/land-v6 1.0.1

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 (171) hide show
  1. package/.gitattributes +1 -0
  2. package/.gitmodules +3 -0
  3. package/README.md +9 -0
  4. package/package.json +96 -0
  5. package/tsconfig.json +11 -0
  6. package/types/BasicToken.d.ts +300 -0
  7. package/types/BlackList.d.ts +512 -0
  8. package/types/BlastOracleLand.d.ts +933 -0
  9. package/types/ChainlinkPriceFeed.d.ts +427 -0
  10. package/types/Console.d.ts +101 -0
  11. package/types/CustomPriceFeed.d.ts +214 -0
  12. package/types/ERC1967Proxy.d.ts +126 -0
  13. package/types/ERC1967Upgrade.d.ts +126 -0
  14. package/types/ERC20.d.ts +343 -0
  15. package/types/ERC20Basic.d.ts +199 -0
  16. package/types/ETHOracleLand.d.ts +901 -0
  17. package/types/FixedPriceFeed.d.ts +212 -0
  18. package/types/IAggregatorV3Interface.d.ts +234 -0
  19. package/types/IBeacon.d.ts +101 -0
  20. package/types/IBlast.d.ts +919 -0
  21. package/types/ICoin.d.ts +95 -0
  22. package/types/IERC1822Proxiable.d.ts +101 -0
  23. package/types/IERC1967.d.ts +126 -0
  24. package/types/IERC20.d.ts +324 -0
  25. package/types/IERC20Metadata.d.ts +363 -0
  26. package/types/IERC20Rebasing.d.ts +184 -0
  27. package/types/ILand.d.ts +386 -0
  28. package/types/ILandCore.d.ts +255 -0
  29. package/types/IPriceFeed.d.ts +108 -0
  30. package/types/IPyth.d.ts +194 -0
  31. package/types/IQuoter.d.ts +269 -0
  32. package/types/ITransparentUpgradeableProxy.d.ts +256 -0
  33. package/types/IUniswapV3Pool.d.ts +203 -0
  34. package/types/IUniswapV3PoolActions.d.ts +396 -0
  35. package/types/IUniswapV3PoolDerivedState.d.ts +185 -0
  36. package/types/IUniswapV3PoolEvents.d.ts +482 -0
  37. package/types/IUniswapV3PoolImmutables.d.ts +174 -0
  38. package/types/IUniswapV3PoolOwnerActions.d.ts +168 -0
  39. package/types/IUniswapV3PoolState.d.ts +438 -0
  40. package/types/IWETH.d.ts +374 -0
  41. package/types/Initializable.d.ts +92 -0
  42. package/types/Land.d.ts +586 -0
  43. package/types/LandCore.d.ts +255 -0
  44. package/types/LandMath.d.ts +101 -0
  45. package/types/LandOwnable.d.ts +134 -0
  46. package/types/LandOwnableUpgradeable.d.ts +148 -0
  47. package/types/MockDAI.d.ts +441 -0
  48. package/types/MockUSDC.d.ts +441 -0
  49. package/types/MockUSDT.d.ts +441 -0
  50. package/types/OracleLand.d.ts +724 -0
  51. package/types/Ownable.d.ts +130 -0
  52. package/types/Pausable.d.ts +203 -0
  53. package/types/Proxy.d.ts +78 -0
  54. package/types/ProxyAdmin.d.ts +357 -0
  55. package/types/PythPriceFeed.d.ts +423 -0
  56. package/types/StandardToken.d.ts +493 -0
  57. package/types/TetherToken.d.ts +1018 -0
  58. package/types/TransparentUpgradeableProxy.d.ts +126 -0
  59. package/types/UpgradedStandardToken.d.ts +630 -0
  60. package/types/common.d.ts +35 -0
  61. package/types/factories/BasicToken__factory.js +183 -0
  62. package/types/factories/BasicToken__factory.ts +185 -0
  63. package/types/factories/BlackList__factory.js +318 -0
  64. package/types/factories/BlackList__factory.ts +320 -0
  65. package/types/factories/BlastOracleLand__factory.js +656 -0
  66. package/types/factories/BlastOracleLand__factory.ts +649 -0
  67. package/types/factories/ChainlinkPriceFeed__factory.js +378 -0
  68. package/types/factories/ChainlinkPriceFeed__factory.ts +398 -0
  69. package/types/factories/Console__factory.js +76 -0
  70. package/types/factories/Console__factory.ts +66 -0
  71. package/types/factories/CustomPriceFeed__factory.js +207 -0
  72. package/types/factories/CustomPriceFeed__factory.ts +211 -0
  73. package/types/factories/ERC1967Proxy__factory.js +132 -0
  74. package/types/factories/ERC1967Proxy__factory.ts +137 -0
  75. package/types/factories/ERC1967Upgrade__factory.js +66 -0
  76. package/types/factories/ERC1967Upgrade__factory.ts +71 -0
  77. package/types/factories/ERC20Basic__factory.js +108 -0
  78. package/types/factories/ERC20Basic__factory.ts +110 -0
  79. package/types/factories/ERC20__factory.js +193 -0
  80. package/types/factories/ERC20__factory.ts +192 -0
  81. package/types/factories/ETHOracleLand__factory.js +625 -0
  82. package/types/factories/ETHOracleLand__factory.ts +615 -0
  83. package/types/factories/FixedPriceFeed__factory.js +192 -0
  84. package/types/factories/FixedPriceFeed__factory.ts +203 -0
  85. package/types/factories/IAggregatorV3Interface__factory.js +132 -0
  86. package/types/factories/IAggregatorV3Interface__factory.ts +141 -0
  87. package/types/factories/IBeacon__factory.js +34 -0
  88. package/types/factories/IBeacon__factory.ts +36 -0
  89. package/types/factories/IBlast__factory.js +439 -0
  90. package/types/factories/IBlast__factory.ts +438 -0
  91. package/types/factories/ICoin__factory.js +34 -0
  92. package/types/factories/ICoin__factory.ts +33 -0
  93. package/types/factories/IERC1822Proxiable__factory.js +34 -0
  94. package/types/factories/IERC1822Proxiable__factory.ts +39 -0
  95. package/types/factories/IERC1967__factory.js +66 -0
  96. package/types/factories/IERC1967__factory.ts +68 -0
  97. package/types/factories/IERC20Metadata__factory.js +243 -0
  98. package/types/factories/IERC20Metadata__factory.ts +248 -0
  99. package/types/factories/IERC20Rebasing__factory.js +83 -0
  100. package/types/factories/IERC20Rebasing__factory.ts +88 -0
  101. package/types/factories/IERC20__factory.js +204 -0
  102. package/types/factories/IERC20__factory.ts +203 -0
  103. package/types/factories/ILandCore__factory.js +143 -0
  104. package/types/factories/ILandCore__factory.ts +145 -0
  105. package/types/factories/ILand__factory.js +255 -0
  106. package/types/factories/ILand__factory.ts +254 -0
  107. package/types/factories/IPriceFeed__factory.js +40 -0
  108. package/types/factories/IPriceFeed__factory.ts +42 -0
  109. package/types/factories/IPyth__factory.js +103 -0
  110. package/types/factories/IPyth__factory.ts +102 -0
  111. package/types/factories/IQuoter__factory.js +147 -0
  112. package/types/factories/IQuoter__factory.ts +149 -0
  113. package/types/factories/ITransparentUpgradeableProxy__factory.js +136 -0
  114. package/types/factories/ITransparentUpgradeableProxy__factory.ts +145 -0
  115. package/types/factories/IUniswapV3PoolActions__factory.js +241 -0
  116. package/types/factories/IUniswapV3PoolActions__factory.ts +250 -0
  117. package/types/factories/IUniswapV3PoolDerivedState__factory.js +79 -0
  118. package/types/factories/IUniswapV3PoolDerivedState__factory.ts +88 -0
  119. package/types/factories/IUniswapV3PoolEvents__factory.js +348 -0
  120. package/types/factories/IUniswapV3PoolEvents__factory.ts +357 -0
  121. package/types/factories/IUniswapV3PoolImmutables__factory.js +99 -0
  122. package/types/factories/IUniswapV3PoolImmutables__factory.ts +108 -0
  123. package/types/factories/IUniswapV3PoolOwnerActions__factory.js +73 -0
  124. package/types/factories/IUniswapV3PoolOwnerActions__factory.ts +82 -0
  125. package/types/factories/IUniswapV3PoolState__factory.js +267 -0
  126. package/types/factories/IUniswapV3PoolState__factory.ts +272 -0
  127. package/types/factories/IUniswapV3Pool__factory.js +114 -0
  128. package/types/factories/IUniswapV3Pool__factory.ts +119 -0
  129. package/types/factories/IWETH__factory.js +224 -0
  130. package/types/factories/IWETH__factory.ts +223 -0
  131. package/types/factories/Initializable__factory.js +34 -0
  132. package/types/factories/Initializable__factory.ts +36 -0
  133. package/types/factories/LandCore__factory.js +201 -0
  134. package/types/factories/LandCore__factory.ts +199 -0
  135. package/types/factories/LandMath__factory.js +76 -0
  136. package/types/factories/LandMath__factory.ts +66 -0
  137. package/types/factories/LandOwnableUpgradeable__factory.js +128 -0
  138. package/types/factories/LandOwnableUpgradeable__factory.ts +125 -0
  139. package/types/factories/LandOwnable__factory.js +126 -0
  140. package/types/factories/LandOwnable__factory.ts +118 -0
  141. package/types/factories/Land__factory.js +462 -0
  142. package/types/factories/Land__factory.ts +449 -0
  143. package/types/factories/MockDAI__factory.js +338 -0
  144. package/types/factories/MockDAI__factory.ts +328 -0
  145. package/types/factories/MockUSDC__factory.js +338 -0
  146. package/types/factories/MockUSDC__factory.ts +328 -0
  147. package/types/factories/MockUSDT__factory.js +338 -0
  148. package/types/factories/MockUSDT__factory.ts +328 -0
  149. package/types/factories/OracleLand__factory.js +537 -0
  150. package/types/factories/OracleLand__factory.ts +527 -0
  151. package/types/factories/Ownable__factory.js +73 -0
  152. package/types/factories/Ownable__factory.ts +75 -0
  153. package/types/factories/Pausable__factory.js +135 -0
  154. package/types/factories/Pausable__factory.ts +125 -0
  155. package/types/factories/ProxyAdmin__factory.js +212 -0
  156. package/types/factories/ProxyAdmin__factory.ts +202 -0
  157. package/types/factories/Proxy__factory.js +29 -0
  158. package/types/factories/Proxy__factory.ts +28 -0
  159. package/types/factories/PythPriceFeed__factory.js +378 -0
  160. package/types/factories/PythPriceFeed__factory.ts +400 -0
  161. package/types/factories/StandardToken__factory.js +305 -0
  162. package/types/factories/StandardToken__factory.ts +307 -0
  163. package/types/factories/TetherToken__factory.js +732 -0
  164. package/types/factories/TetherToken__factory.ts +749 -0
  165. package/types/factories/TransparentUpgradeableProxy__factory.js +137 -0
  166. package/types/factories/TransparentUpgradeableProxy__factory.ts +152 -0
  167. package/types/factories/UpgradedStandardToken__factory.js +375 -0
  168. package/types/factories/UpgradedStandardToken__factory.ts +384 -0
  169. package/types/hardhat.d.ts +573 -0
  170. package/types/index.js +112 -0
  171. package/types/index.ts +112 -0
@@ -0,0 +1,462 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ var __extends = (this && this.__extends) || (function () {
6
+ var extendStatics = function (d, b) {
7
+ extendStatics = Object.setPrototypeOf ||
8
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
10
+ return extendStatics(d, b);
11
+ };
12
+ return function (d, b) {
13
+ if (typeof b !== "function" && b !== null)
14
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
15
+ extendStatics(d, b);
16
+ function __() { this.constructor = d; }
17
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18
+ };
19
+ })();
20
+ Object.defineProperty(exports, "__esModule", { value: true });
21
+ exports.Land__factory = void 0;
22
+ var ethers_1 = require("ethers");
23
+ var _abi = [
24
+ {
25
+ anonymous: false,
26
+ inputs: [
27
+ {
28
+ indexed: false,
29
+ internalType: "contract ICoin",
30
+ name: "coin",
31
+ type: "address",
32
+ },
33
+ ],
34
+ name: "AddCoin",
35
+ type: "event",
36
+ },
37
+ {
38
+ anonymous: false,
39
+ inputs: [
40
+ {
41
+ indexed: false,
42
+ internalType: "uint8",
43
+ name: "version",
44
+ type: "uint8",
45
+ },
46
+ ],
47
+ name: "Initialized",
48
+ type: "event",
49
+ },
50
+ {
51
+ anonymous: false,
52
+ inputs: [
53
+ {
54
+ indexed: false,
55
+ internalType: "bytes32",
56
+ name: "account",
57
+ type: "bytes32",
58
+ },
59
+ {
60
+ indexed: false,
61
+ internalType: "contract ICoin",
62
+ name: "coin",
63
+ type: "address",
64
+ },
65
+ {
66
+ indexed: false,
67
+ internalType: "uint256",
68
+ name: "value",
69
+ type: "uint256",
70
+ },
71
+ {
72
+ indexed: false,
73
+ internalType: "uint256",
74
+ name: "coinAmount",
75
+ type: "uint256",
76
+ },
77
+ {
78
+ indexed: false,
79
+ internalType: "uint256",
80
+ name: "landAmount",
81
+ type: "uint256",
82
+ },
83
+ {
84
+ indexed: false,
85
+ internalType: "uint256",
86
+ name: "totalLandAmount",
87
+ type: "uint256",
88
+ },
89
+ ],
90
+ name: "Mint",
91
+ type: "event",
92
+ },
93
+ {
94
+ anonymous: false,
95
+ inputs: [
96
+ {
97
+ indexed: false,
98
+ internalType: "contract ICoin",
99
+ name: "coin",
100
+ type: "address",
101
+ },
102
+ ],
103
+ name: "RemoveCoin",
104
+ type: "event",
105
+ },
106
+ {
107
+ anonymous: false,
108
+ inputs: [
109
+ {
110
+ indexed: false,
111
+ internalType: "contract ICoin",
112
+ name: "coin",
113
+ type: "address",
114
+ },
115
+ {
116
+ indexed: false,
117
+ internalType: "address",
118
+ name: "to",
119
+ type: "address",
120
+ },
121
+ {
122
+ indexed: false,
123
+ internalType: "uint256",
124
+ name: "amount",
125
+ type: "uint256",
126
+ },
127
+ ],
128
+ name: "WithdrawnCoin",
129
+ type: "event",
130
+ },
131
+ {
132
+ inputs: [],
133
+ name: "LandCore",
134
+ outputs: [
135
+ {
136
+ internalType: "contract ILandCore",
137
+ name: "",
138
+ type: "address",
139
+ },
140
+ ],
141
+ stateMutability: "view",
142
+ type: "function",
143
+ },
144
+ {
145
+ inputs: [
146
+ {
147
+ internalType: "contract ICoin",
148
+ name: "coin",
149
+ type: "address",
150
+ },
151
+ ],
152
+ name: "addCoin",
153
+ outputs: [],
154
+ stateMutability: "nonpayable",
155
+ type: "function",
156
+ },
157
+ {
158
+ inputs: [
159
+ {
160
+ internalType: "bytes32",
161
+ name: "to",
162
+ type: "bytes32",
163
+ },
164
+ ],
165
+ name: "balanceOf",
166
+ outputs: [
167
+ {
168
+ internalType: "uint256",
169
+ name: "",
170
+ type: "uint256",
171
+ },
172
+ ],
173
+ stateMutability: "view",
174
+ type: "function",
175
+ },
176
+ {
177
+ inputs: [
178
+ {
179
+ internalType: "uint256",
180
+ name: "i",
181
+ type: "uint256",
182
+ },
183
+ ],
184
+ name: "coinAt",
185
+ outputs: [
186
+ {
187
+ internalType: "address",
188
+ name: "",
189
+ type: "address",
190
+ },
191
+ {
192
+ internalType: "uint256",
193
+ name: "",
194
+ type: "uint256",
195
+ },
196
+ ],
197
+ stateMutability: "view",
198
+ type: "function",
199
+ },
200
+ {
201
+ inputs: [
202
+ {
203
+ internalType: "contract ICoin",
204
+ name: "coin",
205
+ type: "address",
206
+ },
207
+ ],
208
+ name: "coinExists",
209
+ outputs: [
210
+ {
211
+ internalType: "bool",
212
+ name: "",
213
+ type: "bool",
214
+ },
215
+ ],
216
+ stateMutability: "view",
217
+ type: "function",
218
+ },
219
+ {
220
+ inputs: [],
221
+ name: "coinLength",
222
+ outputs: [
223
+ {
224
+ internalType: "uint256",
225
+ name: "",
226
+ type: "uint256",
227
+ },
228
+ ],
229
+ stateMutability: "view",
230
+ type: "function",
231
+ },
232
+ {
233
+ inputs: [
234
+ {
235
+ internalType: "contract ICoin",
236
+ name: "coin",
237
+ type: "address",
238
+ },
239
+ ],
240
+ name: "decimalsOf",
241
+ outputs: [
242
+ {
243
+ internalType: "uint8",
244
+ name: "",
245
+ type: "uint8",
246
+ },
247
+ ],
248
+ stateMutability: "view",
249
+ type: "function",
250
+ },
251
+ {
252
+ inputs: [
253
+ {
254
+ internalType: "bytes32",
255
+ name: "",
256
+ type: "bytes32",
257
+ },
258
+ {
259
+ internalType: "contract ICoin",
260
+ name: "",
261
+ type: "address",
262
+ },
263
+ ],
264
+ name: "deposits",
265
+ outputs: [
266
+ {
267
+ internalType: "uint256",
268
+ name: "",
269
+ type: "uint256",
270
+ },
271
+ ],
272
+ stateMutability: "view",
273
+ type: "function",
274
+ },
275
+ {
276
+ inputs: [
277
+ {
278
+ internalType: "contract ICoin",
279
+ name: "coin",
280
+ type: "address",
281
+ },
282
+ {
283
+ internalType: "uint256",
284
+ name: "amount",
285
+ type: "uint256",
286
+ },
287
+ ],
288
+ name: "formatValue",
289
+ outputs: [
290
+ {
291
+ internalType: "uint256",
292
+ name: "",
293
+ type: "uint256",
294
+ },
295
+ ],
296
+ stateMutability: "view",
297
+ type: "function",
298
+ },
299
+ {
300
+ inputs: [],
301
+ name: "guardian",
302
+ outputs: [
303
+ {
304
+ internalType: "address",
305
+ name: "",
306
+ type: "address",
307
+ },
308
+ ],
309
+ stateMutability: "view",
310
+ type: "function",
311
+ },
312
+ {
313
+ inputs: [],
314
+ name: "landPerCoin",
315
+ outputs: [
316
+ {
317
+ internalType: "uint64",
318
+ name: "",
319
+ type: "uint64",
320
+ },
321
+ ],
322
+ stateMutability: "view",
323
+ type: "function",
324
+ },
325
+ {
326
+ inputs: [
327
+ {
328
+ internalType: "contract ICoin",
329
+ name: "coin",
330
+ type: "address",
331
+ },
332
+ {
333
+ internalType: "bytes32",
334
+ name: "account",
335
+ type: "bytes32",
336
+ },
337
+ {
338
+ internalType: "uint256",
339
+ name: "amount",
340
+ type: "uint256",
341
+ },
342
+ ],
343
+ name: "mint",
344
+ outputs: [],
345
+ stateMutability: "nonpayable",
346
+ type: "function",
347
+ },
348
+ {
349
+ inputs: [],
350
+ name: "owner",
351
+ outputs: [
352
+ {
353
+ internalType: "address",
354
+ name: "",
355
+ type: "address",
356
+ },
357
+ ],
358
+ stateMutability: "view",
359
+ type: "function",
360
+ },
361
+ {
362
+ inputs: [],
363
+ name: "paused",
364
+ outputs: [
365
+ {
366
+ internalType: "bool",
367
+ name: "",
368
+ type: "bool",
369
+ },
370
+ ],
371
+ stateMutability: "view",
372
+ type: "function",
373
+ },
374
+ {
375
+ inputs: [
376
+ {
377
+ internalType: "contract ICoin",
378
+ name: "coin",
379
+ type: "address",
380
+ },
381
+ ],
382
+ name: "removeCoin",
383
+ outputs: [],
384
+ stateMutability: "nonpayable",
385
+ type: "function",
386
+ },
387
+ {
388
+ inputs: [],
389
+ name: "targetPriceDecimals",
390
+ outputs: [
391
+ {
392
+ internalType: "uint8",
393
+ name: "",
394
+ type: "uint8",
395
+ },
396
+ ],
397
+ stateMutability: "view",
398
+ type: "function",
399
+ },
400
+ {
401
+ inputs: [
402
+ {
403
+ internalType: "contract ICoin",
404
+ name: "coin",
405
+ type: "address",
406
+ },
407
+ {
408
+ internalType: "address",
409
+ name: "to",
410
+ type: "address",
411
+ },
412
+ {
413
+ internalType: "uint256",
414
+ name: "amount",
415
+ type: "uint256",
416
+ },
417
+ ],
418
+ name: "withdraw",
419
+ outputs: [],
420
+ stateMutability: "nonpayable",
421
+ type: "function",
422
+ },
423
+ ];
424
+ var _bytecode = "0x608060405234801561001057600080fd5b50611581806100206000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80637f64cc25116100a2578063908d51f511610071578063908d51f51461023e578063c89dcfce14610246578063cbbcb64714610259578063ce6d603f1461026c578063d9caed121461029257600080fd5b80637f64cc25146101eb57806382f3ff821461020c57806388363bf6146102235780638da5cb5b1461023657600080fd5b80634f1c2c31116100de5780634f1c2c31146101785780635c975abb146101b05780635e2d7433146101b85780636c7f1542146101cb57600080fd5b806316da86321461011057806332bc30f614610125578063452a9320146101435780634df9ca1614610158575b600080fd5b61012361011e366004610dc8565b6102a5565b005b61012d601281565b60405161013a9190610df4565b60405180910390f35b61014b6102f2565b60405161013a9190610e0b565b61016b610166366004610dc8565b61036f565b60405161013a9190610e21565b6101a3610186366004610e40565b600560209081526000928352604080842090915290825290205481565b60405161013a9190610e83565b61016b610382565b61012d6101c6366004610dc8565b6103fa565b6101a36101d9366004610e91565b60009081526004602052604090205490565b6101fe6101f9366004610e91565b610407565b60405161013a929190610eb2565b610216620f424081565b60405161013a9190610edd565b610123610231366004610dc8565b61041e565b61014b61045f565b6101a36104b3565b610123610254366004610eeb565b6104bf565b6101a3610267366004610f3b565b610759565b600054610285906201000090046001600160a01b031681565b60405161013a9190610f82565b6101236102a0366004610fa4565b6107cf565b6102ad6102f2565b6001600160a01b0316336001600160a01b0316146102e65760405162461bcd60e51b81526004016102dd90611000565b60405180910390fd5b6102ef8161094b565b50565b60008060029054906101000a90046001600160a01b03166001600160a01b031663452a93206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610346573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036a919061101b565b905090565b600061037c600183610a22565b92915050565b60008060029054906101000a90046001600160a01b03166001600160a01b0316635c975abb6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103d6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036a919061104f565b600061037c600183610a3e565b600080610415600184610a53565b91509150915091565b6104266102f2565b6001600160a01b0316336001600160a01b0316146104565760405162461bcd60e51b81526004016102dd90611000565b6102ef81610a6f565b60008060029054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610346573d6000803e3d6000fd5b600061036a6001610ada565b6104c7610382565b156104e45760405162461bcd60e51b81526004016102dd9061108d565b6104ed8361036f565b6105095760405162461bcd60e51b81526004016102dd906110ca565b6000836001600160a01b031633308460405160240161052a939291906110da565b60408051601f198184030181529181526020820180516001600160e01b03166323b872dd60e01b1790525161055f9190611148565b6000604051808303816000865af19150503d806000811461059c576040519150601f19603f3d011682016040523d82523d6000602084013e6105a1565b606091505b50509050806105c25760405162461bcd60e51b81526004016102dd90611188565b60006105ce8584610759565b905060006105df620f4240836111ae565b90508060046000878152602001908152602001600020600082825461060491906111c6565b909155505060008581526005602090815260408083206001600160a01b038a1684529091528120805486929061063b9084906111c6565b90915550600090506001600160a01b03871661065561045f565b86604051602401610667929190610eb2565b60408051601f198184030181529181526020820180516001600160e01b031663a9059cbb60e01b1790525161069c9190611148565b6000604051808303816000865af19150503d80600081146106d9576040519150601f19603f3d011682016040523d82523d6000602084013e6106de565b606091505b50509050806106ff5760405162461bcd60e51b81526004016102dd90611205565b600086815260046020526040908190205490517f6c25b193a57bcfde4968cefddf7b4de59a5058812b4da55cb997fafd9e93fdc2916107489189918b918a918991899190611215565b60405180910390a150505050505050565b600080610765846103fa565b9050601260ff8216101561079b5761077e81601261126f565b61078990600a61139a565b61079390846111ae565b91505061037c565b601260ff821611156107c7576107b281601261126f565b6107bd90600a61139a565b61079390846113c5565b509092915050565b6107d761045f565b6001600160a01b0316336001600160a01b0316146108075760405162461bcd60e51b81526004016102dd906113fa565b6001600160a01b0383161561088d5760405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108449085908590600401610eb2565b6020604051808303816000875af1158015610863573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610887919061104f565b5061090b565b6000826001600160a01b0316826040516108a69061140a565b60006040518083038185875af1925050503d80600081146108e3576040519150601f19603f3d011682016040523d82523d6000602084013e6108e8565b606091505b50509050806109095760405162461bcd60e51b81526004016102dd9061143d565b505b7f0ab59fee85bfb311ebc31e0ec8447cb4be3efc3381ec18bfdbea0fda61f9058183838360405161093e9392919061144d565b60405180910390a1505050565b6109548161036f565b156109715760405162461bcd60e51b81526004016102dd90611483565b6000816001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d591906114a7565b90506109e660018360ff8416610ae5565b507f2ab2c06fd2d8302b1e22cbd5f1e649cac91185838abf693cce465aa2c7ac48c182604051610a169190610f82565b60405180910390a15050565b6000610a37836001600160a01b038416610b03565b9392505050565b6000610a37836001600160a01b038416610b0f565b6000808080610a628686610b4f565b9097909650945050505050565b610a788161036f565b610a945760405162461bcd60e51b81526004016102dd906110ca565b610a9f600182610b7a565b507facfb0f9f01902d0db1b0291da3b60229e2f15b74d078f3fcc726331181c5a77781604051610acf9190610f82565b60405180910390a150565b600061037c82610b8f565b6000610afb846001600160a01b03851684610b9a565b949350505050565b6000610a378383610bb7565b600081815260028301602052604081205480151580610b335750610b338484610b03565b610a375760405162461bcd60e51b81526004016102dd906114fc565b60008080610b5d8585610bcf565b600081815260029690960160205260409095205494959350505050565b6000610a37836001600160a01b038416610bdb565b600061037c82610bf8565b60008281526002840160205260408120829055610afb8484610c02565b60008181526001830160205260408120541515610a37565b6000610a378383610c0e565b60008181526002830160205260408120819055610a378383610c38565b600061037c825490565b6000610a378383610c44565b6000826000018281548110610c2557610c2561150c565b9060005260206000200154905092915050565b6000610a378383610c93565b6000818152600183016020526040812054610c8b5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561037c565b50600061037c565b60008181526001830160205260408120548015610d7c576000610cb7600183611522565b8554909150600090610ccb90600190611522565b9050818114610d30576000866000018281548110610ceb57610ceb61150c565b9060005260206000200154905080876000018481548110610d0e57610d0e61150c565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080610d4157610d41611535565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061037c565b600091505061037c565b5092915050565b60006001600160a01b03821661037c565b600061037c82610d8d565b610db281610d9e565b81146102ef57600080fd5b803561037c81610da9565b600060208284031215610ddd57610ddd600080fd5b6000610afb8484610dbd565b60ff81165b82525050565b6020810161037c8284610de9565b610dee81610d8d565b6020810161037c8284610e02565b801515610dee565b6020810161037c8284610e19565b80610db2565b803561037c81610e2f565b60008060408385031215610e5657610e56600080fd5b6000610e628585610e35565b9250506020610e7385828601610dbd565b9150509250929050565b80610dee565b6020810161037c8284610e7d565b600060208284031215610ea657610ea6600080fd5b6000610afb8484610e35565b60408101610ec08285610e02565b610a376020830184610e7d565b67ffffffffffffffff8116610dee565b6020810161037c8284610ecd565b600080600060608486031215610f0357610f03600080fd5b6000610f0f8686610dbd565b9350506020610f2086828701610e35565b9250506040610f3186828701610e35565b9150509250925092565b60008060408385031215610f5157610f51600080fd5b6000610f5d8585610dbd565b9250506020610e7385828601610e35565b600061037c82610d9e565b610dee81610f6e565b6020810161037c8284610f79565b610db281610d8d565b803561037c81610f90565b600080600060608486031215610fbc57610fbc600080fd5b6000610fc88686610dbd565b9350506020610f2086828701610f99565b600d81526000602082016c27b7363c9033bab0b93234b0b760991b815291505b5060200190565b6020808252810161037c81610fd9565b805161037c81610f90565b60006020828403121561103057611030600080fd5b6000610afb8484611010565b801515610db2565b805161037c8161103c565b60006020828403121561106457611064600080fd5b6000610afb8484611044565b60068152600060208201651c185d5cd95960d21b81529150610ff9565b6020808252810161037c81611070565b60168152600060208201752630b7321d103737b732bc34b9ba32b73a1031b7b4b760511b81529150610ff9565b6020808252810161037c8161109d565b606081016110e88286610e02565b6110f56020830185610e02565b610afb6040830184610e7d565b60005b8381101561111d578181015183820152602001611105565b50506000910152565b6000611130825190565b61113e818560208601611102565b9290920192915050565b6000610a378284611126565b601a81526000602082017f4c616e643a207472616e736665722066726f6d206661696c656400000000000081529150610ff9565b6020808252810161037c81611154565b634e487b7160e01b600052601160045260246000fd5b818102808215838204851417610d8657610d86611198565b8082018082111561037c5761037c611198565b601581526000602082017413185b990e881d1c985b9cd9995c8819985a5b1959605a1b81529150610ff9565b6020808252810161037c816111d9565b60c081016112238289610e7d565b6112306020830188610f79565b61123d6040830187610e7d565b61124a6060830186610e7d565b6112576080830185610e7d565b61126460a0830184610e7d565b979650505050505050565b60ff91821691908116908282039081111561037c5761037c611198565b80825b60018511156112cb578086048111156112aa576112aa611198565b60018516156112b857908102905b80026112c48560011c90565b945061128f565b94509492505050565b6000826112e357506001610a37565b816112f057506000610a37565b816001811461130657600281146113105761133d565b6001915050610a37565b60ff84111561132157611321611198565b8360020a91508482111561133757611337611198565b50610a37565b5060208310610133831016604e8410600b8410161715611370575081810a8381111561136b5761136b611198565b610a37565b61137d848484600161128c565b9250905081840481111561139357611393611198565b0292915050565b600060ff83169250610a3760001984846112d4565b634e487b7160e01b600052601260045260246000fd5b6000826113d4576113d46113af565b500490565b600a81526000602082016927b7363c9037bbb732b960b11b81529150610ff9565b6020808252810161037c816113d9565b60008161037c565b601481526000602082017313185b990e881d1c985b99995c8819985a5b195960621b81529150610ff9565b6020808252810161037c81611412565b606081016110e88286610f79565b60118152600060208201704c616e643a20636f696e2065786973747360781b81529150610ff9565b6020808252810161037c8161145b565b60ff8116610db2565b805161037c81611493565b6000602082840312156114bc576114bc600080fd5b6000610afb848461149c565b601e81526000602082017f456e756d657261626c654d61703a206e6f6e6578697374656e74206b6579000081529150610ff9565b6020808252810161037c816114c8565b634e487b7160e01b600052603260045260246000fd5b8181038181111561037c5761037c611198565b634e487b7160e01b600052603160045260246000fdfea264697066735822122005c01063d2cf10477fc33774e8ca7c9fa1db17aceb0b562c601a1511e3a457c864736f6c63430008130033";
425
+ var Land__factory = exports.Land__factory = /** @class */ (function (_super) {
426
+ __extends(Land__factory, _super);
427
+ function Land__factory() {
428
+ var args = [];
429
+ for (var _i = 0; _i < arguments.length; _i++) {
430
+ args[_i] = arguments[_i];
431
+ }
432
+ var _this = this;
433
+ if (args.length === 1) {
434
+ _this = _super.call(this, _abi, _bytecode, args[0]) || this;
435
+ }
436
+ else {
437
+ _this = _super.apply(this, args) || this;
438
+ }
439
+ return _this;
440
+ }
441
+ Land__factory.prototype.deploy = function (overrides) {
442
+ return _super.prototype.deploy.call(this, overrides || {});
443
+ };
444
+ Land__factory.prototype.getDeployTransaction = function (overrides) {
445
+ return _super.prototype.getDeployTransaction.call(this, overrides || {});
446
+ };
447
+ Land__factory.prototype.attach = function (address) {
448
+ return _super.prototype.attach.call(this, address);
449
+ };
450
+ Land__factory.prototype.connect = function (signer) {
451
+ return _super.prototype.connect.call(this, signer);
452
+ };
453
+ Land__factory.createInterface = function () {
454
+ return new ethers_1.utils.Interface(_abi);
455
+ };
456
+ Land__factory.connect = function (address, signerOrProvider) {
457
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
458
+ };
459
+ Land__factory.bytecode = _bytecode;
460
+ Land__factory.abi = _abi;
461
+ return Land__factory;
462
+ }(ethers_1.ContractFactory));