@web3dotorg/evm-slc-core-sdk 0.3.6 → 0.3.9

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 (273) hide show
  1. package/lib.commonjs/common.d.ts +50 -0
  2. package/lib.commonjs/common.js +2 -0
  3. package/lib.commonjs/constants.d.ts +23 -0
  4. package/lib.commonjs/constants.js +32 -0
  5. package/lib.commonjs/contracts/governance/ExecutorsRegistry.d.ts +597 -0
  6. package/lib.commonjs/contracts/governance/ExecutorsRegistry.js +2 -0
  7. package/lib.commonjs/contracts/governance/Governance.d.ts +984 -0
  8. package/lib.commonjs/contracts/governance/Governance.js +2 -0
  9. package/lib.commonjs/contracts/governance/NeutralsRegistry.d.ts +718 -0
  10. package/lib.commonjs/contracts/governance/NeutralsRegistry.js +2 -0
  11. package/lib.commonjs/contracts/governance/ParameterRegistry.d.ts +427 -0
  12. package/lib.commonjs/contracts/governance/ParameterRegistry.js +2 -0
  13. package/{contracts/governance/index.ts → lib.commonjs/contracts/governance/index.d.ts} +0 -3
  14. package/lib.commonjs/contracts/governance/index.js +2 -0
  15. package/{contracts/index.ts → lib.commonjs/contracts/index.d.ts} +0 -3
  16. package/lib.commonjs/contracts/index.js +2 -0
  17. package/lib.commonjs/contracts/interfaces/IExecutorsRegistry.d.ts +277 -0
  18. package/lib.commonjs/contracts/interfaces/IExecutorsRegistry.js +2 -0
  19. package/lib.commonjs/contracts/interfaces/IGovernance.d.ts +99 -0
  20. package/lib.commonjs/contracts/interfaces/IGovernance.js +2 -0
  21. package/lib.commonjs/contracts/interfaces/INeutralsRegistry.d.ts +301 -0
  22. package/lib.commonjs/contracts/interfaces/INeutralsRegistry.js +2 -0
  23. package/lib.commonjs/contracts/interfaces/IQParameters.d.ts +38 -0
  24. package/lib.commonjs/contracts/interfaces/IQParameters.js +2 -0
  25. package/lib.commonjs/contracts/interfaces/ISLCCore.d.ts +137 -0
  26. package/lib.commonjs/contracts/interfaces/ISLCCore.js +2 -0
  27. package/lib.commonjs/contracts/interfaces/ISLCCoreFactory.d.ts +102 -0
  28. package/lib.commonjs/contracts/interfaces/ISLCCoreFactory.js +2 -0
  29. package/lib.commonjs/contracts/interfaces/IWrappedToken.d.ts +134 -0
  30. package/lib.commonjs/contracts/interfaces/IWrappedToken.js +2 -0
  31. package/{contracts/interfaces/index.ts → lib.commonjs/contracts/interfaces/index.d.ts} +0 -3
  32. package/lib.commonjs/contracts/interfaces/index.js +2 -0
  33. package/lib.commonjs/contracts/libs/Errors.d.ts +21 -0
  34. package/lib.commonjs/contracts/libs/Errors.js +2 -0
  35. package/lib.commonjs/contracts/libs/NeutralsSelection.d.ts +21 -0
  36. package/lib.commonjs/contracts/libs/NeutralsSelection.js +2 -0
  37. package/{contracts/libs/index.ts → lib.commonjs/contracts/libs/index.d.ts} +0 -3
  38. package/lib.commonjs/contracts/libs/index.js +2 -0
  39. package/lib.commonjs/contracts/mocks/MockGovernance.d.ts +201 -0
  40. package/lib.commonjs/contracts/mocks/MockGovernance.js +2 -0
  41. package/lib.commonjs/contracts/mocks/MockNeutralsRegistry.d.ts +394 -0
  42. package/lib.commonjs/contracts/mocks/MockNeutralsRegistry.js +2 -0
  43. package/lib.commonjs/contracts/mocks/SimpleContract.d.ts +38 -0
  44. package/lib.commonjs/contracts/mocks/SimpleContract.js +2 -0
  45. package/lib.commonjs/contracts/mocks/WrappedToken.d.ts +174 -0
  46. package/lib.commonjs/contracts/mocks/WrappedToken.js +2 -0
  47. package/{contracts/mocks/index.ts → lib.commonjs/contracts/mocks/index.d.ts} +0 -3
  48. package/lib.commonjs/contracts/mocks/index.js +2 -0
  49. package/lib.commonjs/contracts/slc-core/SLCCore.d.ts +198 -0
  50. package/lib.commonjs/contracts/slc-core/SLCCore.js +2 -0
  51. package/lib.commonjs/contracts/slc-core/SLCCoreFactory.d.ts +264 -0
  52. package/lib.commonjs/contracts/slc-core/SLCCoreFactory.js +2 -0
  53. package/{contracts/slc-core/index.ts → lib.commonjs/contracts/slc-core/index.d.ts} +0 -3
  54. package/lib.commonjs/contracts/slc-core/index.js +2 -0
  55. package/lib.commonjs/contracts/token/Token.d.ts +201 -0
  56. package/lib.commonjs/contracts/token/Token.js +2 -0
  57. package/lib.commonjs/contracts/token/index.d.ts +1 -0
  58. package/lib.commonjs/contracts/token/index.js +2 -0
  59. package/lib.commonjs/factories/contracts/governance/ExecutorsRegistry__factory.d.ts +919 -0
  60. package/lib.commonjs/factories/contracts/governance/ExecutorsRegistry__factory.js +1211 -0
  61. package/lib.commonjs/factories/contracts/governance/Governance__factory.d.ts +1736 -0
  62. package/lib.commonjs/factories/contracts/governance/Governance__factory.js +2281 -0
  63. package/lib.commonjs/factories/contracts/governance/NeutralsRegistry__factory.d.ts +1128 -0
  64. package/lib.commonjs/factories/contracts/governance/NeutralsRegistry__factory.js +1486 -0
  65. package/lib.commonjs/factories/contracts/governance/ParameterRegistry__factory.d.ts +606 -0
  66. package/lib.commonjs/factories/contracts/governance/ParameterRegistry__factory.js +805 -0
  67. package/lib.commonjs/factories/contracts/governance/index.d.ts +4 -0
  68. package/lib.commonjs/factories/contracts/governance/index.js +14 -0
  69. package/lib.commonjs/factories/contracts/index.d.ts +6 -0
  70. package/lib.commonjs/factories/contracts/index.js +35 -0
  71. package/lib.commonjs/factories/contracts/interfaces/IExecutorsRegistry__factory.d.ts +316 -0
  72. package/lib.commonjs/factories/contracts/interfaces/IExecutorsRegistry__factory.js +422 -0
  73. package/lib.commonjs/factories/contracts/interfaces/IGovernance__factory.d.ts +107 -0
  74. package/lib.commonjs/factories/contracts/interfaces/IGovernance__factory.js +150 -0
  75. package/lib.commonjs/factories/contracts/interfaces/INeutralsRegistry__factory.d.ts +393 -0
  76. package/lib.commonjs/factories/contracts/interfaces/INeutralsRegistry__factory.js +521 -0
  77. package/lib.commonjs/factories/contracts/interfaces/IQParameters__factory.d.ts +63 -0
  78. package/lib.commonjs/factories/contracts/interfaces/IQParameters__factory.js +95 -0
  79. package/lib.commonjs/factories/contracts/interfaces/ISLCCoreFactory__factory.d.ts +135 -0
  80. package/lib.commonjs/factories/contracts/interfaces/ISLCCoreFactory__factory.js +191 -0
  81. package/lib.commonjs/factories/contracts/interfaces/ISLCCore__factory.d.ts +166 -0
  82. package/lib.commonjs/factories/contracts/interfaces/ISLCCore__factory.js +224 -0
  83. package/lib.commonjs/factories/contracts/interfaces/IWrappedToken__factory.d.ts +157 -0
  84. package/lib.commonjs/factories/contracts/interfaces/IWrappedToken__factory.js +215 -0
  85. package/lib.commonjs/factories/contracts/interfaces/index.d.ts +7 -0
  86. package/lib.commonjs/factories/contracts/interfaces/index.js +20 -0
  87. package/lib.commonjs/factories/contracts/libs/Errors__factory.d.ts +128 -0
  88. package/lib.commonjs/factories/contracts/libs/Errors__factory.js +182 -0
  89. package/lib.commonjs/factories/contracts/libs/NeutralsSelection__factory.d.ts +48 -0
  90. package/lib.commonjs/factories/contracts/libs/NeutralsSelection__factory.js +74 -0
  91. package/lib.commonjs/factories/contracts/libs/index.d.ts +2 -0
  92. package/lib.commonjs/factories/contracts/libs/index.js +10 -0
  93. package/lib.commonjs/factories/contracts/mocks/MockGovernance__factory.d.ts +241 -0
  94. package/lib.commonjs/factories/contracts/mocks/MockGovernance__factory.js +324 -0
  95. package/lib.commonjs/factories/contracts/mocks/MockNeutralsRegistry__factory.d.ts +527 -0
  96. package/lib.commonjs/factories/contracts/mocks/MockNeutralsRegistry__factory.js +695 -0
  97. package/lib.commonjs/factories/contracts/mocks/SimpleContract__factory.d.ts +54 -0
  98. package/lib.commonjs/factories/contracts/mocks/SimpleContract__factory.js +81 -0
  99. package/lib.commonjs/factories/contracts/mocks/WrappedToken__factory.d.ts +300 -0
  100. package/lib.commonjs/factories/contracts/mocks/WrappedToken__factory.js +404 -0
  101. package/lib.commonjs/factories/contracts/mocks/index.d.ts +4 -0
  102. package/lib.commonjs/factories/contracts/mocks/index.js +14 -0
  103. package/lib.commonjs/factories/contracts/slc-core/SLCCoreFactory__factory.d.ts +402 -0
  104. package/lib.commonjs/factories/contracts/slc-core/SLCCoreFactory__factory.js +539 -0
  105. package/lib.commonjs/factories/contracts/slc-core/SLCCore__factory.d.ts +261 -0
  106. package/lib.commonjs/factories/contracts/slc-core/SLCCore__factory.js +347 -0
  107. package/lib.commonjs/factories/contracts/slc-core/index.d.ts +2 -0
  108. package/lib.commonjs/factories/contracts/slc-core/index.js +10 -0
  109. package/lib.commonjs/factories/contracts/token/Token__factory.d.ts +355 -0
  110. package/lib.commonjs/factories/contracts/token/Token__factory.js +476 -0
  111. package/lib.commonjs/factories/contracts/token/index.d.ts +1 -0
  112. package/lib.commonjs/factories/contracts/token/index.js +8 -0
  113. package/lib.commonjs/index.d.ts +5 -0
  114. package/lib.commonjs/index.js +23 -0
  115. package/lib.esm/common.d.ts +50 -0
  116. package/lib.esm/common.js +1 -0
  117. package/lib.esm/constants.d.ts +23 -0
  118. package/lib.esm/constants.js +29 -0
  119. package/lib.esm/contracts/governance/ExecutorsRegistry.d.ts +597 -0
  120. package/lib.esm/contracts/governance/ExecutorsRegistry.js +1 -0
  121. package/lib.esm/contracts/governance/Governance.d.ts +984 -0
  122. package/lib.esm/contracts/governance/Governance.js +1 -0
  123. package/lib.esm/contracts/governance/NeutralsRegistry.d.ts +718 -0
  124. package/lib.esm/contracts/governance/NeutralsRegistry.js +1 -0
  125. package/lib.esm/contracts/governance/ParameterRegistry.d.ts +427 -0
  126. package/lib.esm/contracts/governance/ParameterRegistry.js +1 -0
  127. package/lib.esm/contracts/governance/index.d.ts +4 -0
  128. package/lib.esm/contracts/governance/index.js +1 -0
  129. package/lib.esm/contracts/index.d.ts +12 -0
  130. package/lib.esm/contracts/index.js +1 -0
  131. package/lib.esm/contracts/interfaces/IExecutorsRegistry.d.ts +277 -0
  132. package/lib.esm/contracts/interfaces/IExecutorsRegistry.js +1 -0
  133. package/lib.esm/contracts/interfaces/IGovernance.d.ts +99 -0
  134. package/lib.esm/contracts/interfaces/IGovernance.js +1 -0
  135. package/lib.esm/contracts/interfaces/INeutralsRegistry.d.ts +301 -0
  136. package/lib.esm/contracts/interfaces/INeutralsRegistry.js +1 -0
  137. package/lib.esm/contracts/interfaces/IQParameters.d.ts +38 -0
  138. package/lib.esm/contracts/interfaces/IQParameters.js +1 -0
  139. package/lib.esm/contracts/interfaces/ISLCCore.d.ts +137 -0
  140. package/lib.esm/contracts/interfaces/ISLCCore.js +1 -0
  141. package/lib.esm/contracts/interfaces/ISLCCoreFactory.d.ts +102 -0
  142. package/lib.esm/contracts/interfaces/ISLCCoreFactory.js +1 -0
  143. package/lib.esm/contracts/interfaces/IWrappedToken.d.ts +134 -0
  144. package/lib.esm/contracts/interfaces/IWrappedToken.js +1 -0
  145. package/lib.esm/contracts/interfaces/index.d.ts +7 -0
  146. package/lib.esm/contracts/interfaces/index.js +1 -0
  147. package/lib.esm/contracts/libs/Errors.d.ts +21 -0
  148. package/lib.esm/contracts/libs/Errors.js +1 -0
  149. package/lib.esm/contracts/libs/NeutralsSelection.d.ts +21 -0
  150. package/lib.esm/contracts/libs/NeutralsSelection.js +1 -0
  151. package/lib.esm/contracts/libs/index.d.ts +2 -0
  152. package/lib.esm/contracts/libs/index.js +1 -0
  153. package/lib.esm/contracts/mocks/MockGovernance.d.ts +201 -0
  154. package/lib.esm/contracts/mocks/MockGovernance.js +1 -0
  155. package/lib.esm/contracts/mocks/MockNeutralsRegistry.d.ts +394 -0
  156. package/lib.esm/contracts/mocks/MockNeutralsRegistry.js +1 -0
  157. package/lib.esm/contracts/mocks/SimpleContract.d.ts +38 -0
  158. package/lib.esm/contracts/mocks/SimpleContract.js +1 -0
  159. package/lib.esm/contracts/mocks/WrappedToken.d.ts +174 -0
  160. package/lib.esm/contracts/mocks/WrappedToken.js +1 -0
  161. package/lib.esm/contracts/mocks/index.d.ts +4 -0
  162. package/lib.esm/contracts/mocks/index.js +1 -0
  163. package/lib.esm/contracts/slc-core/SLCCore.d.ts +198 -0
  164. package/lib.esm/contracts/slc-core/SLCCore.js +1 -0
  165. package/lib.esm/contracts/slc-core/SLCCoreFactory.d.ts +264 -0
  166. package/lib.esm/contracts/slc-core/SLCCoreFactory.js +1 -0
  167. package/lib.esm/contracts/slc-core/index.d.ts +2 -0
  168. package/lib.esm/contracts/slc-core/index.js +1 -0
  169. package/lib.esm/contracts/token/Token.d.ts +201 -0
  170. package/lib.esm/contracts/token/Token.js +1 -0
  171. package/lib.esm/contracts/token/index.d.ts +1 -0
  172. package/lib.esm/contracts/token/index.js +1 -0
  173. package/lib.esm/factories/contracts/governance/ExecutorsRegistry__factory.d.ts +919 -0
  174. package/lib.esm/factories/contracts/governance/ExecutorsRegistry__factory.js +1207 -0
  175. package/lib.esm/factories/contracts/governance/Governance__factory.d.ts +1736 -0
  176. package/lib.esm/factories/contracts/governance/Governance__factory.js +2277 -0
  177. package/lib.esm/factories/contracts/governance/NeutralsRegistry__factory.d.ts +1128 -0
  178. package/lib.esm/factories/contracts/governance/NeutralsRegistry__factory.js +1482 -0
  179. package/lib.esm/factories/contracts/governance/ParameterRegistry__factory.d.ts +606 -0
  180. package/lib.esm/factories/contracts/governance/ParameterRegistry__factory.js +801 -0
  181. package/lib.esm/factories/contracts/governance/index.d.ts +4 -0
  182. package/lib.esm/factories/contracts/index.d.ts +6 -0
  183. package/lib.esm/factories/contracts/interfaces/IExecutorsRegistry__factory.d.ts +316 -0
  184. package/lib.esm/factories/contracts/interfaces/IExecutorsRegistry__factory.js +418 -0
  185. package/lib.esm/factories/contracts/interfaces/IGovernance__factory.d.ts +107 -0
  186. package/lib.esm/factories/contracts/interfaces/IGovernance__factory.js +146 -0
  187. package/lib.esm/factories/contracts/interfaces/INeutralsRegistry__factory.d.ts +393 -0
  188. package/lib.esm/factories/contracts/interfaces/INeutralsRegistry__factory.js +517 -0
  189. package/lib.esm/factories/contracts/interfaces/IQParameters__factory.d.ts +63 -0
  190. package/lib.esm/factories/contracts/interfaces/IQParameters__factory.js +91 -0
  191. package/lib.esm/factories/contracts/interfaces/ISLCCoreFactory__factory.d.ts +135 -0
  192. package/lib.esm/factories/contracts/interfaces/ISLCCoreFactory__factory.js +187 -0
  193. package/lib.esm/factories/contracts/interfaces/ISLCCore__factory.d.ts +166 -0
  194. package/lib.esm/factories/contracts/interfaces/ISLCCore__factory.js +220 -0
  195. package/lib.esm/factories/contracts/interfaces/IWrappedToken__factory.d.ts +157 -0
  196. package/lib.esm/factories/contracts/interfaces/IWrappedToken__factory.js +211 -0
  197. package/lib.esm/factories/contracts/interfaces/index.d.ts +7 -0
  198. package/lib.esm/factories/contracts/libs/Errors__factory.d.ts +128 -0
  199. package/lib.esm/factories/contracts/libs/Errors__factory.js +178 -0
  200. package/lib.esm/factories/contracts/libs/NeutralsSelection__factory.d.ts +48 -0
  201. package/lib.esm/factories/contracts/libs/NeutralsSelection__factory.js +70 -0
  202. package/lib.esm/factories/contracts/libs/index.d.ts +2 -0
  203. package/lib.esm/factories/contracts/mocks/MockGovernance__factory.d.ts +241 -0
  204. package/lib.esm/factories/contracts/mocks/MockGovernance__factory.js +320 -0
  205. package/lib.esm/factories/contracts/mocks/MockNeutralsRegistry__factory.d.ts +527 -0
  206. package/lib.esm/factories/contracts/mocks/MockNeutralsRegistry__factory.js +691 -0
  207. package/lib.esm/factories/contracts/mocks/SimpleContract__factory.d.ts +54 -0
  208. package/lib.esm/factories/contracts/mocks/SimpleContract__factory.js +77 -0
  209. package/lib.esm/factories/contracts/mocks/WrappedToken__factory.d.ts +300 -0
  210. package/lib.esm/factories/contracts/mocks/WrappedToken__factory.js +400 -0
  211. package/lib.esm/factories/contracts/mocks/index.d.ts +4 -0
  212. package/lib.esm/factories/contracts/slc-core/SLCCoreFactory__factory.d.ts +402 -0
  213. package/lib.esm/factories/contracts/slc-core/SLCCoreFactory__factory.js +535 -0
  214. package/lib.esm/factories/contracts/slc-core/SLCCore__factory.d.ts +261 -0
  215. package/lib.esm/factories/contracts/slc-core/SLCCore__factory.js +343 -0
  216. package/lib.esm/factories/contracts/slc-core/index.d.ts +2 -0
  217. package/lib.esm/factories/contracts/token/Token__factory.d.ts +355 -0
  218. package/lib.esm/factories/contracts/token/Token__factory.js +472 -0
  219. package/lib.esm/factories/contracts/token/index.d.ts +1 -0
  220. package/lib.esm/index.d.ts +5 -0
  221. package/lib.esm/index.js +7 -0
  222. package/package.json +10 -3
  223. package/common.ts +0 -131
  224. package/constants.ts +0 -34
  225. package/contracts/governance/ExecutorsRegistry.ts +0 -1249
  226. package/contracts/governance/Governance.ts +0 -1740
  227. package/contracts/governance/NeutralsRegistry.ts +0 -1415
  228. package/contracts/governance/ParameterRegistry.ts +0 -832
  229. package/contracts/interfaces/IExecutorsRegistry.ts +0 -601
  230. package/contracts/interfaces/IGovernance.ts +0 -215
  231. package/contracts/interfaces/INeutralsRegistry.ts +0 -624
  232. package/contracts/interfaces/IQParameters.ts +0 -109
  233. package/contracts/interfaces/ISLCCore.ts +0 -289
  234. package/contracts/interfaces/ISLCCoreFactory.ts +0 -217
  235. package/contracts/interfaces/IWrappedToken.ts +0 -272
  236. package/contracts/libs/Errors.ts +0 -71
  237. package/contracts/libs/NeutralsSelection.ts +0 -71
  238. package/contracts/mocks/MockGovernance.ts +0 -389
  239. package/contracts/mocks/MockNeutralsRegistry.ts +0 -791
  240. package/contracts/mocks/SimpleContract.ts +0 -110
  241. package/contracts/mocks/WrappedToken.ts +0 -334
  242. package/contracts/slc-core/SLCCore.ts +0 -397
  243. package/contracts/slc-core/SLCCoreFactory.ts +0 -559
  244. package/contracts/token/Token.ts +0 -399
  245. package/contracts/token/index.ts +0 -4
  246. package/factories/contracts/governance/ExecutorsRegistry__factory.ts +0 -1240
  247. package/factories/contracts/governance/Governance__factory.ts +0 -2328
  248. package/factories/contracts/governance/NeutralsRegistry__factory.ts +0 -1515
  249. package/factories/contracts/governance/ParameterRegistry__factory.ts +0 -834
  250. package/factories/contracts/interfaces/IExecutorsRegistry__factory.ts +0 -428
  251. package/factories/contracts/interfaces/IGovernance__factory.ts +0 -153
  252. package/factories/contracts/interfaces/INeutralsRegistry__factory.ts +0 -527
  253. package/factories/contracts/interfaces/IQParameters__factory.ts +0 -101
  254. package/factories/contracts/interfaces/ISLCCoreFactory__factory.ts +0 -197
  255. package/factories/contracts/interfaces/ISLCCore__factory.ts +0 -227
  256. package/factories/contracts/interfaces/IWrappedToken__factory.ts +0 -221
  257. package/factories/contracts/libs/Errors__factory.ts +0 -205
  258. package/factories/contracts/libs/NeutralsSelection__factory.ts +0 -103
  259. package/factories/contracts/mocks/MockGovernance__factory.ts +0 -353
  260. package/factories/contracts/mocks/MockNeutralsRegistry__factory.ts +0 -730
  261. package/factories/contracts/mocks/SimpleContract__factory.ts +0 -110
  262. package/factories/contracts/mocks/WrappedToken__factory.ts +0 -433
  263. package/factories/contracts/slc-core/SLCCoreFactory__factory.ts +0 -568
  264. package/factories/contracts/slc-core/SLCCore__factory.ts +0 -373
  265. package/factories/contracts/token/Token__factory.ts +0 -505
  266. package/index.ts +0 -44
  267. /package/{factories/contracts/governance/index.ts → lib.esm/factories/contracts/governance/index.js} +0 -0
  268. /package/{factories/contracts/index.ts → lib.esm/factories/contracts/index.js} +0 -0
  269. /package/{factories/contracts/interfaces/index.ts → lib.esm/factories/contracts/interfaces/index.js} +0 -0
  270. /package/{factories/contracts/libs/index.ts → lib.esm/factories/contracts/libs/index.js} +0 -0
  271. /package/{factories/contracts/mocks/index.ts → lib.esm/factories/contracts/mocks/index.js} +0 -0
  272. /package/{factories/contracts/slc-core/index.ts → lib.esm/factories/contracts/slc-core/index.js} +0 -0
  273. /package/{factories/contracts/token/index.ts → lib.esm/factories/contracts/token/index.js} +0 -0
@@ -0,0 +1,2281 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Governance__factory = void 0;
4
+ /* Autogenerated file. Do not edit manually. */
5
+ /* tslint:disable */
6
+ /* eslint-disable */
7
+ const ethers_1 = require("ethers");
8
+ const _abi = [
9
+ {
10
+ inputs: [
11
+ {
12
+ internalType: "address",
13
+ name: "account",
14
+ type: "address",
15
+ },
16
+ ],
17
+ name: "AccountAlreadyVoted",
18
+ type: "error",
19
+ },
20
+ {
21
+ inputs: [
22
+ {
23
+ internalType: "address",
24
+ name: "account",
25
+ type: "address",
26
+ },
27
+ ],
28
+ name: "AccountNotExecutor",
29
+ type: "error",
30
+ },
31
+ {
32
+ inputs: [
33
+ {
34
+ internalType: "address",
35
+ name: "account",
36
+ type: "address",
37
+ },
38
+ ],
39
+ name: "AccountNotSelected",
40
+ type: "error",
41
+ },
42
+ {
43
+ inputs: [
44
+ {
45
+ internalType: "address",
46
+ name: "target",
47
+ type: "address",
48
+ },
49
+ ],
50
+ name: "AddressEmptyCode",
51
+ type: "error",
52
+ },
53
+ {
54
+ inputs: [
55
+ {
56
+ internalType: "address",
57
+ name: "implementation",
58
+ type: "address",
59
+ },
60
+ ],
61
+ name: "ERC1967InvalidImplementation",
62
+ type: "error",
63
+ },
64
+ {
65
+ inputs: [],
66
+ name: "ERC1967NonPayable",
67
+ type: "error",
68
+ },
69
+ {
70
+ inputs: [
71
+ {
72
+ internalType: "uint256",
73
+ name: "threshold",
74
+ type: "uint256",
75
+ },
76
+ ],
77
+ name: "ExecutorsThresholdTooHigh",
78
+ type: "error",
79
+ },
80
+ {
81
+ inputs: [],
82
+ name: "FailedCall",
83
+ type: "error",
84
+ },
85
+ {
86
+ inputs: [
87
+ {
88
+ internalType: "address",
89
+ name: "voter",
90
+ type: "address",
91
+ },
92
+ ],
93
+ name: "GovernorAlreadyCastVote",
94
+ type: "error",
95
+ },
96
+ {
97
+ inputs: [
98
+ {
99
+ internalType: "uint256",
100
+ name: "proposalId",
101
+ type: "uint256",
102
+ },
103
+ ],
104
+ name: "GovernorAlreadyQueuedProposal",
105
+ type: "error",
106
+ },
107
+ {
108
+ inputs: [],
109
+ name: "GovernorDisabledDeposit",
110
+ type: "error",
111
+ },
112
+ {
113
+ inputs: [
114
+ {
115
+ internalType: "address",
116
+ name: "proposer",
117
+ type: "address",
118
+ },
119
+ {
120
+ internalType: "uint256",
121
+ name: "votes",
122
+ type: "uint256",
123
+ },
124
+ {
125
+ internalType: "uint256",
126
+ name: "threshold",
127
+ type: "uint256",
128
+ },
129
+ ],
130
+ name: "GovernorInsufficientProposerVotes",
131
+ type: "error",
132
+ },
133
+ {
134
+ inputs: [
135
+ {
136
+ internalType: "uint256",
137
+ name: "targets",
138
+ type: "uint256",
139
+ },
140
+ {
141
+ internalType: "uint256",
142
+ name: "calldatas",
143
+ type: "uint256",
144
+ },
145
+ {
146
+ internalType: "uint256",
147
+ name: "values",
148
+ type: "uint256",
149
+ },
150
+ ],
151
+ name: "GovernorInvalidProposalLength",
152
+ type: "error",
153
+ },
154
+ {
155
+ inputs: [
156
+ {
157
+ internalType: "address",
158
+ name: "voter",
159
+ type: "address",
160
+ },
161
+ ],
162
+ name: "GovernorInvalidSignature",
163
+ type: "error",
164
+ },
165
+ {
166
+ inputs: [],
167
+ name: "GovernorInvalidVoteParams",
168
+ type: "error",
169
+ },
170
+ {
171
+ inputs: [],
172
+ name: "GovernorInvalidVoteType",
173
+ type: "error",
174
+ },
175
+ {
176
+ inputs: [
177
+ {
178
+ internalType: "uint256",
179
+ name: "votingPeriod",
180
+ type: "uint256",
181
+ },
182
+ ],
183
+ name: "GovernorInvalidVotingPeriod",
184
+ type: "error",
185
+ },
186
+ {
187
+ inputs: [
188
+ {
189
+ internalType: "uint256",
190
+ name: "proposalId",
191
+ type: "uint256",
192
+ },
193
+ ],
194
+ name: "GovernorNonexistentProposal",
195
+ type: "error",
196
+ },
197
+ {
198
+ inputs: [
199
+ {
200
+ internalType: "uint256",
201
+ name: "proposalId",
202
+ type: "uint256",
203
+ },
204
+ ],
205
+ name: "GovernorNotQueuedProposal",
206
+ type: "error",
207
+ },
208
+ {
209
+ inputs: [
210
+ {
211
+ internalType: "address",
212
+ name: "account",
213
+ type: "address",
214
+ },
215
+ ],
216
+ name: "GovernorOnlyExecutor",
217
+ type: "error",
218
+ },
219
+ {
220
+ inputs: [],
221
+ name: "GovernorQueueNotImplemented",
222
+ type: "error",
223
+ },
224
+ {
225
+ inputs: [
226
+ {
227
+ internalType: "address",
228
+ name: "proposer",
229
+ type: "address",
230
+ },
231
+ ],
232
+ name: "GovernorRestrictedProposer",
233
+ type: "error",
234
+ },
235
+ {
236
+ inputs: [
237
+ {
238
+ internalType: "uint256",
239
+ name: "proposalId",
240
+ type: "uint256",
241
+ },
242
+ {
243
+ internalType: "address",
244
+ name: "account",
245
+ type: "address",
246
+ },
247
+ ],
248
+ name: "GovernorUnableToCancel",
249
+ type: "error",
250
+ },
251
+ {
252
+ inputs: [
253
+ {
254
+ internalType: "uint256",
255
+ name: "proposalId",
256
+ type: "uint256",
257
+ },
258
+ {
259
+ internalType: "enum IGovernor.ProposalState",
260
+ name: "current",
261
+ type: "uint8",
262
+ },
263
+ {
264
+ internalType: "bytes32",
265
+ name: "expectedStates",
266
+ type: "bytes32",
267
+ },
268
+ ],
269
+ name: "GovernorUnexpectedProposalState",
270
+ type: "error",
271
+ },
272
+ {
273
+ inputs: [
274
+ {
275
+ internalType: "address",
276
+ name: "account",
277
+ type: "address",
278
+ },
279
+ {
280
+ internalType: "uint256",
281
+ name: "currentNonce",
282
+ type: "uint256",
283
+ },
284
+ ],
285
+ name: "InvalidAccountNonce",
286
+ type: "error",
287
+ },
288
+ {
289
+ inputs: [],
290
+ name: "InvalidInitialization",
291
+ type: "error",
292
+ },
293
+ {
294
+ inputs: [
295
+ {
296
+ internalType: "uint256",
297
+ name: "serviceFee",
298
+ type: "uint256",
299
+ },
300
+ {
301
+ internalType: "uint256",
302
+ name: "msgValue",
303
+ type: "uint256",
304
+ },
305
+ ],
306
+ name: "InvalidServiceFee",
307
+ type: "error",
308
+ },
309
+ {
310
+ inputs: [
311
+ {
312
+ internalType: "uint256",
313
+ name: "totalShares",
314
+ type: "uint256",
315
+ },
316
+ ],
317
+ name: "InvalidSharesTotal",
318
+ type: "error",
319
+ },
320
+ {
321
+ inputs: [
322
+ {
323
+ internalType: "uint256",
324
+ name: "timepoint",
325
+ type: "uint256",
326
+ },
327
+ ],
328
+ name: "InvalidTimepoint",
329
+ type: "error",
330
+ },
331
+ {
332
+ inputs: [
333
+ {
334
+ internalType: "enum Governance.VotingPhase",
335
+ name: "votingPhase",
336
+ type: "uint8",
337
+ },
338
+ ],
339
+ name: "InvalidVotingPhaseForExecutorVote",
340
+ type: "error",
341
+ },
342
+ {
343
+ inputs: [
344
+ {
345
+ internalType: "enum Governance.VotingPhase",
346
+ name: "votingPhase",
347
+ type: "uint8",
348
+ },
349
+ ],
350
+ name: "InvalidVotingPhaseForProposeOperations",
351
+ type: "error",
352
+ },
353
+ {
354
+ inputs: [
355
+ {
356
+ internalType: "address",
357
+ name: "parametersRegistry",
358
+ type: "address",
359
+ },
360
+ ],
361
+ name: "MinServiceFeeNotSet",
362
+ type: "error",
363
+ },
364
+ {
365
+ inputs: [
366
+ {
367
+ internalType: "uint256",
368
+ name: "threshold",
369
+ type: "uint256",
370
+ },
371
+ ],
372
+ name: "NeutralsThresholdTooHigh",
373
+ type: "error",
374
+ },
375
+ {
376
+ inputs: [],
377
+ name: "NotInitializing",
378
+ type: "error",
379
+ },
380
+ {
381
+ inputs: [
382
+ {
383
+ internalType: "uint8",
384
+ name: "bits",
385
+ type: "uint8",
386
+ },
387
+ {
388
+ internalType: "uint256",
389
+ name: "value",
390
+ type: "uint256",
391
+ },
392
+ ],
393
+ name: "SafeCastOverflowedUintDowncast",
394
+ type: "error",
395
+ },
396
+ {
397
+ inputs: [
398
+ {
399
+ internalType: "address",
400
+ name: "token",
401
+ type: "address",
402
+ },
403
+ ],
404
+ name: "SafeERC20FailedOperation",
405
+ type: "error",
406
+ },
407
+ {
408
+ inputs: [
409
+ {
410
+ internalType: "address",
411
+ name: "sender",
412
+ type: "address",
413
+ },
414
+ ],
415
+ name: "SenderExpectedToBeDAOSLC",
416
+ type: "error",
417
+ },
418
+ {
419
+ inputs: [
420
+ {
421
+ internalType: "uint256",
422
+ name: "serviceFee",
423
+ type: "uint256",
424
+ },
425
+ {
426
+ internalType: "uint256",
427
+ name: "minServiceFee",
428
+ type: "uint256",
429
+ },
430
+ ],
431
+ name: "ServiceFeeTooLow",
432
+ type: "error",
433
+ },
434
+ {
435
+ inputs: [],
436
+ name: "UUPSUnauthorizedCallContext",
437
+ type: "error",
438
+ },
439
+ {
440
+ inputs: [
441
+ {
442
+ internalType: "bytes32",
443
+ name: "slot",
444
+ type: "bytes32",
445
+ },
446
+ ],
447
+ name: "UUPSUnsupportedProxiableUUID",
448
+ type: "error",
449
+ },
450
+ {
451
+ inputs: [],
452
+ name: "Unreachable",
453
+ type: "error",
454
+ },
455
+ {
456
+ anonymous: false,
457
+ inputs: [],
458
+ name: "EIP712DomainChanged",
459
+ type: "event",
460
+ },
461
+ {
462
+ anonymous: false,
463
+ inputs: [
464
+ {
465
+ indexed: false,
466
+ internalType: "uint64",
467
+ name: "version",
468
+ type: "uint64",
469
+ },
470
+ ],
471
+ name: "Initialized",
472
+ type: "event",
473
+ },
474
+ {
475
+ anonymous: false,
476
+ inputs: [
477
+ {
478
+ indexed: false,
479
+ internalType: "uint256",
480
+ name: "proposalId",
481
+ type: "uint256",
482
+ },
483
+ ],
484
+ name: "ProposalCanceled",
485
+ type: "event",
486
+ },
487
+ {
488
+ anonymous: false,
489
+ inputs: [
490
+ {
491
+ indexed: false,
492
+ internalType: "uint256",
493
+ name: "proposalId",
494
+ type: "uint256",
495
+ },
496
+ {
497
+ indexed: false,
498
+ internalType: "address",
499
+ name: "proposer",
500
+ type: "address",
501
+ },
502
+ {
503
+ indexed: false,
504
+ internalType: "address[]",
505
+ name: "targets",
506
+ type: "address[]",
507
+ },
508
+ {
509
+ indexed: false,
510
+ internalType: "uint256[]",
511
+ name: "values",
512
+ type: "uint256[]",
513
+ },
514
+ {
515
+ indexed: false,
516
+ internalType: "string[]",
517
+ name: "signatures",
518
+ type: "string[]",
519
+ },
520
+ {
521
+ indexed: false,
522
+ internalType: "bytes[]",
523
+ name: "calldatas",
524
+ type: "bytes[]",
525
+ },
526
+ {
527
+ indexed: false,
528
+ internalType: "uint256",
529
+ name: "voteStart",
530
+ type: "uint256",
531
+ },
532
+ {
533
+ indexed: false,
534
+ internalType: "uint256",
535
+ name: "voteEnd",
536
+ type: "uint256",
537
+ },
538
+ {
539
+ indexed: false,
540
+ internalType: "string",
541
+ name: "description",
542
+ type: "string",
543
+ },
544
+ ],
545
+ name: "ProposalCreated",
546
+ type: "event",
547
+ },
548
+ {
549
+ anonymous: false,
550
+ inputs: [
551
+ {
552
+ indexed: false,
553
+ internalType: "uint256",
554
+ name: "proposalId",
555
+ type: "uint256",
556
+ },
557
+ ],
558
+ name: "ProposalExecuted",
559
+ type: "event",
560
+ },
561
+ {
562
+ anonymous: false,
563
+ inputs: [
564
+ {
565
+ indexed: false,
566
+ internalType: "uint256",
567
+ name: "proposalId",
568
+ type: "uint256",
569
+ },
570
+ {
571
+ indexed: false,
572
+ internalType: "uint256",
573
+ name: "etaSeconds",
574
+ type: "uint256",
575
+ },
576
+ ],
577
+ name: "ProposalQueued",
578
+ type: "event",
579
+ },
580
+ {
581
+ anonymous: false,
582
+ inputs: [
583
+ {
584
+ indexed: false,
585
+ internalType: "uint256",
586
+ name: "proposalId",
587
+ type: "uint256",
588
+ },
589
+ {
590
+ indexed: false,
591
+ internalType: "uint256",
592
+ name: "newProposalId",
593
+ type: "uint256",
594
+ },
595
+ ],
596
+ name: "RejectedByExecutors",
597
+ type: "event",
598
+ },
599
+ {
600
+ anonymous: false,
601
+ inputs: [
602
+ {
603
+ indexed: true,
604
+ internalType: "address",
605
+ name: "implementation",
606
+ type: "address",
607
+ },
608
+ ],
609
+ name: "Upgraded",
610
+ type: "event",
611
+ },
612
+ {
613
+ anonymous: false,
614
+ inputs: [
615
+ {
616
+ indexed: true,
617
+ internalType: "address",
618
+ name: "voter",
619
+ type: "address",
620
+ },
621
+ {
622
+ indexed: false,
623
+ internalType: "uint256",
624
+ name: "proposalId",
625
+ type: "uint256",
626
+ },
627
+ {
628
+ indexed: false,
629
+ internalType: "uint8",
630
+ name: "support",
631
+ type: "uint8",
632
+ },
633
+ {
634
+ indexed: false,
635
+ internalType: "uint256",
636
+ name: "weight",
637
+ type: "uint256",
638
+ },
639
+ {
640
+ indexed: false,
641
+ internalType: "string",
642
+ name: "reason",
643
+ type: "string",
644
+ },
645
+ ],
646
+ name: "VoteCast",
647
+ type: "event",
648
+ },
649
+ {
650
+ anonymous: false,
651
+ inputs: [
652
+ {
653
+ indexed: true,
654
+ internalType: "address",
655
+ name: "voter",
656
+ type: "address",
657
+ },
658
+ {
659
+ indexed: false,
660
+ internalType: "uint256",
661
+ name: "proposalId",
662
+ type: "uint256",
663
+ },
664
+ {
665
+ indexed: false,
666
+ internalType: "uint8",
667
+ name: "support",
668
+ type: "uint8",
669
+ },
670
+ {
671
+ indexed: false,
672
+ internalType: "uint256",
673
+ name: "weight",
674
+ type: "uint256",
675
+ },
676
+ {
677
+ indexed: false,
678
+ internalType: "string",
679
+ name: "reason",
680
+ type: "string",
681
+ },
682
+ {
683
+ indexed: false,
684
+ internalType: "bytes",
685
+ name: "params",
686
+ type: "bytes",
687
+ },
688
+ ],
689
+ name: "VoteCastWithParams",
690
+ type: "event",
691
+ },
692
+ {
693
+ inputs: [],
694
+ name: "BALLOT_TYPEHASH",
695
+ outputs: [
696
+ {
697
+ internalType: "bytes32",
698
+ name: "",
699
+ type: "bytes32",
700
+ },
701
+ ],
702
+ stateMutability: "view",
703
+ type: "function",
704
+ },
705
+ {
706
+ inputs: [],
707
+ name: "CLOCK_MODE",
708
+ outputs: [
709
+ {
710
+ internalType: "string",
711
+ name: "",
712
+ type: "string",
713
+ },
714
+ ],
715
+ stateMutability: "pure",
716
+ type: "function",
717
+ },
718
+ {
719
+ inputs: [],
720
+ name: "COUNTING_MODE",
721
+ outputs: [
722
+ {
723
+ internalType: "string",
724
+ name: "",
725
+ type: "string",
726
+ },
727
+ ],
728
+ stateMutability: "pure",
729
+ type: "function",
730
+ },
731
+ {
732
+ inputs: [],
733
+ name: "EXTENDED_BALLOT_TYPEHASH",
734
+ outputs: [
735
+ {
736
+ internalType: "bytes32",
737
+ name: "",
738
+ type: "bytes32",
739
+ },
740
+ ],
741
+ stateMutability: "view",
742
+ type: "function",
743
+ },
744
+ {
745
+ inputs: [],
746
+ name: "UPGRADE_INTERFACE_VERSION",
747
+ outputs: [
748
+ {
749
+ internalType: "string",
750
+ name: "",
751
+ type: "string",
752
+ },
753
+ ],
754
+ stateMutability: "view",
755
+ type: "function",
756
+ },
757
+ {
758
+ inputs: [
759
+ {
760
+ internalType: "address",
761
+ name: "token_",
762
+ type: "address",
763
+ },
764
+ {
765
+ internalType: "address",
766
+ name: "executorsRegistry_",
767
+ type: "address",
768
+ },
769
+ {
770
+ internalType: "address",
771
+ name: "neutralsRegistry_",
772
+ type: "address",
773
+ },
774
+ {
775
+ internalType: "address",
776
+ name: "parametersRegistry_",
777
+ type: "address",
778
+ },
779
+ ],
780
+ name: "__Governance_init",
781
+ outputs: [],
782
+ stateMutability: "nonpayable",
783
+ type: "function",
784
+ },
785
+ {
786
+ inputs: [
787
+ {
788
+ internalType: "address[]",
789
+ name: "targets",
790
+ type: "address[]",
791
+ },
792
+ {
793
+ internalType: "uint256[]",
794
+ name: "values",
795
+ type: "uint256[]",
796
+ },
797
+ {
798
+ internalType: "bytes[]",
799
+ name: "calldatas",
800
+ type: "bytes[]",
801
+ },
802
+ {
803
+ internalType: "bytes32",
804
+ name: "descriptionHash",
805
+ type: "bytes32",
806
+ },
807
+ ],
808
+ name: "cancel",
809
+ outputs: [
810
+ {
811
+ internalType: "uint256",
812
+ name: "",
813
+ type: "uint256",
814
+ },
815
+ ],
816
+ stateMutability: "nonpayable",
817
+ type: "function",
818
+ },
819
+ {
820
+ inputs: [
821
+ {
822
+ internalType: "uint256",
823
+ name: "proposalId",
824
+ type: "uint256",
825
+ },
826
+ {
827
+ internalType: "uint8",
828
+ name: "support",
829
+ type: "uint8",
830
+ },
831
+ ],
832
+ name: "castVote",
833
+ outputs: [
834
+ {
835
+ internalType: "uint256",
836
+ name: "",
837
+ type: "uint256",
838
+ },
839
+ ],
840
+ stateMutability: "nonpayable",
841
+ type: "function",
842
+ },
843
+ {
844
+ inputs: [
845
+ {
846
+ internalType: "uint256",
847
+ name: "proposalId",
848
+ type: "uint256",
849
+ },
850
+ {
851
+ internalType: "uint8",
852
+ name: "support",
853
+ type: "uint8",
854
+ },
855
+ {
856
+ internalType: "address",
857
+ name: "voter",
858
+ type: "address",
859
+ },
860
+ {
861
+ internalType: "bytes",
862
+ name: "signature",
863
+ type: "bytes",
864
+ },
865
+ ],
866
+ name: "castVoteBySig",
867
+ outputs: [
868
+ {
869
+ internalType: "uint256",
870
+ name: "",
871
+ type: "uint256",
872
+ },
873
+ ],
874
+ stateMutability: "nonpayable",
875
+ type: "function",
876
+ },
877
+ {
878
+ inputs: [
879
+ {
880
+ internalType: "uint256",
881
+ name: "proposalId",
882
+ type: "uint256",
883
+ },
884
+ {
885
+ internalType: "uint8",
886
+ name: "support",
887
+ type: "uint8",
888
+ },
889
+ {
890
+ internalType: "string",
891
+ name: "reason",
892
+ type: "string",
893
+ },
894
+ ],
895
+ name: "castVoteWithReason",
896
+ outputs: [
897
+ {
898
+ internalType: "uint256",
899
+ name: "",
900
+ type: "uint256",
901
+ },
902
+ ],
903
+ stateMutability: "nonpayable",
904
+ type: "function",
905
+ },
906
+ {
907
+ inputs: [
908
+ {
909
+ internalType: "uint256",
910
+ name: "proposalId",
911
+ type: "uint256",
912
+ },
913
+ {
914
+ internalType: "uint8",
915
+ name: "support",
916
+ type: "uint8",
917
+ },
918
+ {
919
+ internalType: "string",
920
+ name: "reason",
921
+ type: "string",
922
+ },
923
+ {
924
+ internalType: "bytes",
925
+ name: "params",
926
+ type: "bytes",
927
+ },
928
+ ],
929
+ name: "castVoteWithReasonAndParams",
930
+ outputs: [
931
+ {
932
+ internalType: "uint256",
933
+ name: "",
934
+ type: "uint256",
935
+ },
936
+ ],
937
+ stateMutability: "nonpayable",
938
+ type: "function",
939
+ },
940
+ {
941
+ inputs: [
942
+ {
943
+ internalType: "uint256",
944
+ name: "proposalId",
945
+ type: "uint256",
946
+ },
947
+ {
948
+ internalType: "uint8",
949
+ name: "support",
950
+ type: "uint8",
951
+ },
952
+ {
953
+ internalType: "address",
954
+ name: "voter",
955
+ type: "address",
956
+ },
957
+ {
958
+ internalType: "string",
959
+ name: "reason",
960
+ type: "string",
961
+ },
962
+ {
963
+ internalType: "bytes",
964
+ name: "params",
965
+ type: "bytes",
966
+ },
967
+ {
968
+ internalType: "bytes",
969
+ name: "signature",
970
+ type: "bytes",
971
+ },
972
+ ],
973
+ name: "castVoteWithReasonAndParamsBySig",
974
+ outputs: [
975
+ {
976
+ internalType: "uint256",
977
+ name: "",
978
+ type: "uint256",
979
+ },
980
+ ],
981
+ stateMutability: "nonpayable",
982
+ type: "function",
983
+ },
984
+ {
985
+ inputs: [],
986
+ name: "clock",
987
+ outputs: [
988
+ {
989
+ internalType: "uint48",
990
+ name: "",
991
+ type: "uint48",
992
+ },
993
+ ],
994
+ stateMutability: "view",
995
+ type: "function",
996
+ },
997
+ {
998
+ inputs: [],
999
+ name: "eip712Domain",
1000
+ outputs: [
1001
+ {
1002
+ internalType: "bytes1",
1003
+ name: "fields",
1004
+ type: "bytes1",
1005
+ },
1006
+ {
1007
+ internalType: "string",
1008
+ name: "name",
1009
+ type: "string",
1010
+ },
1011
+ {
1012
+ internalType: "string",
1013
+ name: "version",
1014
+ type: "string",
1015
+ },
1016
+ {
1017
+ internalType: "uint256",
1018
+ name: "chainId",
1019
+ type: "uint256",
1020
+ },
1021
+ {
1022
+ internalType: "address",
1023
+ name: "verifyingContract",
1024
+ type: "address",
1025
+ },
1026
+ {
1027
+ internalType: "bytes32",
1028
+ name: "salt",
1029
+ type: "bytes32",
1030
+ },
1031
+ {
1032
+ internalType: "uint256[]",
1033
+ name: "extensions",
1034
+ type: "uint256[]",
1035
+ },
1036
+ ],
1037
+ stateMutability: "view",
1038
+ type: "function",
1039
+ },
1040
+ {
1041
+ inputs: [
1042
+ {
1043
+ internalType: "address[]",
1044
+ name: "targets",
1045
+ type: "address[]",
1046
+ },
1047
+ {
1048
+ internalType: "uint256[]",
1049
+ name: "values",
1050
+ type: "uint256[]",
1051
+ },
1052
+ {
1053
+ internalType: "bytes[]",
1054
+ name: "calldatas",
1055
+ type: "bytes[]",
1056
+ },
1057
+ {
1058
+ internalType: "bytes32",
1059
+ name: "descriptionHash",
1060
+ type: "bytes32",
1061
+ },
1062
+ ],
1063
+ name: "execute",
1064
+ outputs: [
1065
+ {
1066
+ internalType: "uint256",
1067
+ name: "",
1068
+ type: "uint256",
1069
+ },
1070
+ ],
1071
+ stateMutability: "payable",
1072
+ type: "function",
1073
+ },
1074
+ {
1075
+ inputs: [],
1076
+ name: "getExecutorsThreshold",
1077
+ outputs: [
1078
+ {
1079
+ internalType: "uint256",
1080
+ name: "",
1081
+ type: "uint256",
1082
+ },
1083
+ ],
1084
+ stateMutability: "view",
1085
+ type: "function",
1086
+ },
1087
+ {
1088
+ inputs: [],
1089
+ name: "getExecutorsVotingPeriod",
1090
+ outputs: [
1091
+ {
1092
+ internalType: "uint256",
1093
+ name: "",
1094
+ type: "uint256",
1095
+ },
1096
+ ],
1097
+ stateMutability: "view",
1098
+ type: "function",
1099
+ },
1100
+ {
1101
+ inputs: [],
1102
+ name: "getNeutralsThreshold",
1103
+ outputs: [
1104
+ {
1105
+ internalType: "uint256",
1106
+ name: "",
1107
+ type: "uint256",
1108
+ },
1109
+ ],
1110
+ stateMutability: "view",
1111
+ type: "function",
1112
+ },
1113
+ {
1114
+ inputs: [],
1115
+ name: "getNeutralsVotingPeriod",
1116
+ outputs: [
1117
+ {
1118
+ internalType: "uint256",
1119
+ name: "",
1120
+ type: "uint256",
1121
+ },
1122
+ ],
1123
+ stateMutability: "view",
1124
+ type: "function",
1125
+ },
1126
+ {
1127
+ inputs: [],
1128
+ name: "getParametersRegistry",
1129
+ outputs: [
1130
+ {
1131
+ internalType: "address",
1132
+ name: "",
1133
+ type: "address",
1134
+ },
1135
+ ],
1136
+ stateMutability: "view",
1137
+ type: "function",
1138
+ },
1139
+ {
1140
+ inputs: [
1141
+ {
1142
+ internalType: "uint256",
1143
+ name: "proposalId",
1144
+ type: "uint256",
1145
+ },
1146
+ ],
1147
+ name: "getProposalData",
1148
+ outputs: [
1149
+ {
1150
+ components: [
1151
+ {
1152
+ internalType: "uint256",
1153
+ name: "neutralsThreshold",
1154
+ type: "uint256",
1155
+ },
1156
+ {
1157
+ internalType: "uint256",
1158
+ name: "executorsThreshold",
1159
+ type: "uint256",
1160
+ },
1161
+ {
1162
+ internalType: "bytes32[]",
1163
+ name: "neutralToOperationHashes",
1164
+ type: "bytes32[]",
1165
+ },
1166
+ {
1167
+ components: [
1168
+ {
1169
+ components: [
1170
+ {
1171
+ internalType: "enum IGovernance.OperationType",
1172
+ name: "operation_",
1173
+ type: "uint8",
1174
+ },
1175
+ {
1176
+ internalType: "address",
1177
+ name: "to_",
1178
+ type: "address",
1179
+ },
1180
+ {
1181
+ internalType: "bytes",
1182
+ name: "data_",
1183
+ type: "bytes",
1184
+ },
1185
+ {
1186
+ internalType: "uint256",
1187
+ name: "value_",
1188
+ type: "uint256",
1189
+ },
1190
+ ],
1191
+ internalType: "struct IGovernance.OperationData[]",
1192
+ name: "operations",
1193
+ type: "tuple[]",
1194
+ },
1195
+ ],
1196
+ internalType: "struct IGovernance.OperationBundle[]",
1197
+ name: "operationBundles",
1198
+ type: "tuple[]",
1199
+ },
1200
+ {
1201
+ internalType: "address[]",
1202
+ name: "positiveExecutorVotes",
1203
+ type: "address[]",
1204
+ },
1205
+ {
1206
+ internalType: "address[]",
1207
+ name: "negativeExecutorVotes",
1208
+ type: "address[]",
1209
+ },
1210
+ ],
1211
+ internalType: "struct Governance.SLCProposalStateView",
1212
+ name: "",
1213
+ type: "tuple",
1214
+ },
1215
+ {
1216
+ components: [
1217
+ {
1218
+ internalType: "address",
1219
+ name: "proposer",
1220
+ type: "address",
1221
+ },
1222
+ {
1223
+ internalType: "uint48",
1224
+ name: "voteStart",
1225
+ type: "uint48",
1226
+ },
1227
+ {
1228
+ internalType: "uint32",
1229
+ name: "voteDuration",
1230
+ type: "uint32",
1231
+ },
1232
+ {
1233
+ internalType: "bool",
1234
+ name: "executed",
1235
+ type: "bool",
1236
+ },
1237
+ {
1238
+ internalType: "bool",
1239
+ name: "canceled",
1240
+ type: "bool",
1241
+ },
1242
+ {
1243
+ internalType: "uint48",
1244
+ name: "etaSeconds",
1245
+ type: "uint48",
1246
+ },
1247
+ ],
1248
+ internalType: "struct GovernorUpgradeable.ProposalCore",
1249
+ name: "",
1250
+ type: "tuple",
1251
+ },
1252
+ ],
1253
+ stateMutability: "view",
1254
+ type: "function",
1255
+ },
1256
+ {
1257
+ inputs: [
1258
+ {
1259
+ internalType: "address[]",
1260
+ name: "targets",
1261
+ type: "address[]",
1262
+ },
1263
+ {
1264
+ internalType: "uint256[]",
1265
+ name: "values",
1266
+ type: "uint256[]",
1267
+ },
1268
+ {
1269
+ internalType: "bytes[]",
1270
+ name: "calldatas",
1271
+ type: "bytes[]",
1272
+ },
1273
+ {
1274
+ internalType: "bytes32",
1275
+ name: "descriptionHash",
1276
+ type: "bytes32",
1277
+ },
1278
+ ],
1279
+ name: "getProposalId",
1280
+ outputs: [
1281
+ {
1282
+ internalType: "uint256",
1283
+ name: "",
1284
+ type: "uint256",
1285
+ },
1286
+ ],
1287
+ stateMutability: "view",
1288
+ type: "function",
1289
+ },
1290
+ {
1291
+ inputs: [
1292
+ {
1293
+ internalType: "address",
1294
+ name: "slcCore_",
1295
+ type: "address",
1296
+ },
1297
+ {
1298
+ internalType: "uint256",
1299
+ name: "requestNumber_",
1300
+ type: "uint256",
1301
+ },
1302
+ {
1303
+ internalType: "uint256",
1304
+ name: "offset_",
1305
+ type: "uint256",
1306
+ },
1307
+ {
1308
+ internalType: "uint256",
1309
+ name: "limit_",
1310
+ type: "uint256",
1311
+ },
1312
+ ],
1313
+ name: "getProposalsByServiceRequest",
1314
+ outputs: [
1315
+ {
1316
+ components: [
1317
+ {
1318
+ internalType: "uint256",
1319
+ name: "neutralsThreshold",
1320
+ type: "uint256",
1321
+ },
1322
+ {
1323
+ internalType: "uint256",
1324
+ name: "executorsThreshold",
1325
+ type: "uint256",
1326
+ },
1327
+ {
1328
+ internalType: "bytes32[]",
1329
+ name: "neutralToOperationHashes",
1330
+ type: "bytes32[]",
1331
+ },
1332
+ {
1333
+ components: [
1334
+ {
1335
+ components: [
1336
+ {
1337
+ internalType: "enum IGovernance.OperationType",
1338
+ name: "operation_",
1339
+ type: "uint8",
1340
+ },
1341
+ {
1342
+ internalType: "address",
1343
+ name: "to_",
1344
+ type: "address",
1345
+ },
1346
+ {
1347
+ internalType: "bytes",
1348
+ name: "data_",
1349
+ type: "bytes",
1350
+ },
1351
+ {
1352
+ internalType: "uint256",
1353
+ name: "value_",
1354
+ type: "uint256",
1355
+ },
1356
+ ],
1357
+ internalType: "struct IGovernance.OperationData[]",
1358
+ name: "operations",
1359
+ type: "tuple[]",
1360
+ },
1361
+ ],
1362
+ internalType: "struct IGovernance.OperationBundle[]",
1363
+ name: "operationBundles",
1364
+ type: "tuple[]",
1365
+ },
1366
+ {
1367
+ internalType: "address[]",
1368
+ name: "positiveExecutorVotes",
1369
+ type: "address[]",
1370
+ },
1371
+ {
1372
+ internalType: "address[]",
1373
+ name: "negativeExecutorVotes",
1374
+ type: "address[]",
1375
+ },
1376
+ ],
1377
+ internalType: "struct Governance.SLCProposalStateView[]",
1378
+ name: "",
1379
+ type: "tuple[]",
1380
+ },
1381
+ {
1382
+ components: [
1383
+ {
1384
+ internalType: "address",
1385
+ name: "proposer",
1386
+ type: "address",
1387
+ },
1388
+ {
1389
+ internalType: "uint48",
1390
+ name: "voteStart",
1391
+ type: "uint48",
1392
+ },
1393
+ {
1394
+ internalType: "uint32",
1395
+ name: "voteDuration",
1396
+ type: "uint32",
1397
+ },
1398
+ {
1399
+ internalType: "bool",
1400
+ name: "executed",
1401
+ type: "bool",
1402
+ },
1403
+ {
1404
+ internalType: "bool",
1405
+ name: "canceled",
1406
+ type: "bool",
1407
+ },
1408
+ {
1409
+ internalType: "uint48",
1410
+ name: "etaSeconds",
1411
+ type: "uint48",
1412
+ },
1413
+ ],
1414
+ internalType: "struct GovernorUpgradeable.ProposalCore[]",
1415
+ name: "",
1416
+ type: "tuple[]",
1417
+ },
1418
+ ],
1419
+ stateMutability: "view",
1420
+ type: "function",
1421
+ },
1422
+ {
1423
+ inputs: [
1424
+ {
1425
+ internalType: "address",
1426
+ name: "slcCore_",
1427
+ type: "address",
1428
+ },
1429
+ {
1430
+ internalType: "uint256",
1431
+ name: "offset_",
1432
+ type: "uint256",
1433
+ },
1434
+ {
1435
+ internalType: "uint256",
1436
+ name: "limit_",
1437
+ type: "uint256",
1438
+ },
1439
+ ],
1440
+ name: "getServiceRequestsBySLCCore",
1441
+ outputs: [
1442
+ {
1443
+ components: [
1444
+ {
1445
+ internalType: "address",
1446
+ name: "requester",
1447
+ type: "address",
1448
+ },
1449
+ {
1450
+ internalType: "uint256",
1451
+ name: "serviceFee",
1452
+ type: "uint256",
1453
+ },
1454
+ {
1455
+ internalType: "uint256",
1456
+ name: "neutralsNumber",
1457
+ type: "uint256",
1458
+ },
1459
+ {
1460
+ internalType: "string",
1461
+ name: "additionalLink",
1462
+ type: "string",
1463
+ },
1464
+ {
1465
+ internalType: "address[]",
1466
+ name: "selectedNeutrals",
1467
+ type: "address[]",
1468
+ },
1469
+ {
1470
+ internalType: "bytes",
1471
+ name: "data",
1472
+ type: "bytes",
1473
+ },
1474
+ {
1475
+ internalType: "enum Governance.VotingPhase",
1476
+ name: "votingPhase",
1477
+ type: "uint8",
1478
+ },
1479
+ {
1480
+ internalType: "bytes32",
1481
+ name: "leadingOperationHash",
1482
+ type: "bytes32",
1483
+ },
1484
+ {
1485
+ internalType: "uint256",
1486
+ name: "requestNonce",
1487
+ type: "uint256",
1488
+ },
1489
+ {
1490
+ internalType: "uint256[]",
1491
+ name: "proposalIds",
1492
+ type: "uint256[]",
1493
+ },
1494
+ ],
1495
+ internalType: "struct Governance.ServiceRequestStateView[]",
1496
+ name: "",
1497
+ type: "tuple[]",
1498
+ },
1499
+ ],
1500
+ stateMutability: "view",
1501
+ type: "function",
1502
+ },
1503
+ {
1504
+ inputs: [],
1505
+ name: "getSystemToken",
1506
+ outputs: [
1507
+ {
1508
+ internalType: "address",
1509
+ name: "",
1510
+ type: "address",
1511
+ },
1512
+ ],
1513
+ stateMutability: "view",
1514
+ type: "function",
1515
+ },
1516
+ {
1517
+ inputs: [
1518
+ {
1519
+ internalType: "address",
1520
+ name: "account",
1521
+ type: "address",
1522
+ },
1523
+ {
1524
+ internalType: "uint256",
1525
+ name: "timepoint",
1526
+ type: "uint256",
1527
+ },
1528
+ ],
1529
+ name: "getVotes",
1530
+ outputs: [
1531
+ {
1532
+ internalType: "uint256",
1533
+ name: "",
1534
+ type: "uint256",
1535
+ },
1536
+ ],
1537
+ stateMutability: "view",
1538
+ type: "function",
1539
+ },
1540
+ {
1541
+ inputs: [
1542
+ {
1543
+ internalType: "address",
1544
+ name: "account",
1545
+ type: "address",
1546
+ },
1547
+ {
1548
+ internalType: "uint256",
1549
+ name: "timepoint",
1550
+ type: "uint256",
1551
+ },
1552
+ {
1553
+ internalType: "bytes",
1554
+ name: "params",
1555
+ type: "bytes",
1556
+ },
1557
+ ],
1558
+ name: "getVotesWithParams",
1559
+ outputs: [
1560
+ {
1561
+ internalType: "uint256",
1562
+ name: "",
1563
+ type: "uint256",
1564
+ },
1565
+ ],
1566
+ stateMutability: "view",
1567
+ type: "function",
1568
+ },
1569
+ {
1570
+ inputs: [
1571
+ {
1572
+ internalType: "uint256",
1573
+ name: "proposalId",
1574
+ type: "uint256",
1575
+ },
1576
+ {
1577
+ internalType: "address",
1578
+ name: "account",
1579
+ type: "address",
1580
+ },
1581
+ ],
1582
+ name: "hasVoted",
1583
+ outputs: [
1584
+ {
1585
+ internalType: "bool",
1586
+ name: "",
1587
+ type: "bool",
1588
+ },
1589
+ ],
1590
+ stateMutability: "view",
1591
+ type: "function",
1592
+ },
1593
+ {
1594
+ inputs: [
1595
+ {
1596
+ components: [
1597
+ {
1598
+ components: [
1599
+ {
1600
+ internalType: "enum IGovernance.OperationType",
1601
+ name: "operation_",
1602
+ type: "uint8",
1603
+ },
1604
+ {
1605
+ internalType: "address",
1606
+ name: "to_",
1607
+ type: "address",
1608
+ },
1609
+ {
1610
+ internalType: "bytes",
1611
+ name: "data_",
1612
+ type: "bytes",
1613
+ },
1614
+ {
1615
+ internalType: "uint256",
1616
+ name: "value_",
1617
+ type: "uint256",
1618
+ },
1619
+ ],
1620
+ internalType: "struct IGovernance.OperationData[]",
1621
+ name: "operations",
1622
+ type: "tuple[]",
1623
+ },
1624
+ ],
1625
+ internalType: "struct IGovernance.OperationBundle",
1626
+ name: "operation_",
1627
+ type: "tuple",
1628
+ },
1629
+ ],
1630
+ name: "hashOperation",
1631
+ outputs: [
1632
+ {
1633
+ internalType: "bytes32",
1634
+ name: "",
1635
+ type: "bytes32",
1636
+ },
1637
+ ],
1638
+ stateMutability: "pure",
1639
+ type: "function",
1640
+ },
1641
+ {
1642
+ inputs: [
1643
+ {
1644
+ internalType: "address[]",
1645
+ name: "targets",
1646
+ type: "address[]",
1647
+ },
1648
+ {
1649
+ internalType: "uint256[]",
1650
+ name: "values",
1651
+ type: "uint256[]",
1652
+ },
1653
+ {
1654
+ internalType: "bytes[]",
1655
+ name: "calldatas",
1656
+ type: "bytes[]",
1657
+ },
1658
+ {
1659
+ internalType: "bytes32",
1660
+ name: "descriptionHash",
1661
+ type: "bytes32",
1662
+ },
1663
+ ],
1664
+ name: "hashProposal",
1665
+ outputs: [
1666
+ {
1667
+ internalType: "uint256",
1668
+ name: "",
1669
+ type: "uint256",
1670
+ },
1671
+ ],
1672
+ stateMutability: "pure",
1673
+ type: "function",
1674
+ },
1675
+ {
1676
+ inputs: [],
1677
+ name: "implementation",
1678
+ outputs: [
1679
+ {
1680
+ internalType: "address",
1681
+ name: "",
1682
+ type: "address",
1683
+ },
1684
+ ],
1685
+ stateMutability: "view",
1686
+ type: "function",
1687
+ },
1688
+ {
1689
+ inputs: [],
1690
+ name: "name",
1691
+ outputs: [
1692
+ {
1693
+ internalType: "string",
1694
+ name: "",
1695
+ type: "string",
1696
+ },
1697
+ ],
1698
+ stateMutability: "view",
1699
+ type: "function",
1700
+ },
1701
+ {
1702
+ inputs: [
1703
+ {
1704
+ internalType: "address",
1705
+ name: "owner",
1706
+ type: "address",
1707
+ },
1708
+ ],
1709
+ name: "nonces",
1710
+ outputs: [
1711
+ {
1712
+ internalType: "uint256",
1713
+ name: "",
1714
+ type: "uint256",
1715
+ },
1716
+ ],
1717
+ stateMutability: "view",
1718
+ type: "function",
1719
+ },
1720
+ {
1721
+ inputs: [
1722
+ {
1723
+ internalType: "address",
1724
+ name: "",
1725
+ type: "address",
1726
+ },
1727
+ {
1728
+ internalType: "address",
1729
+ name: "",
1730
+ type: "address",
1731
+ },
1732
+ {
1733
+ internalType: "uint256[]",
1734
+ name: "",
1735
+ type: "uint256[]",
1736
+ },
1737
+ {
1738
+ internalType: "uint256[]",
1739
+ name: "",
1740
+ type: "uint256[]",
1741
+ },
1742
+ {
1743
+ internalType: "bytes",
1744
+ name: "",
1745
+ type: "bytes",
1746
+ },
1747
+ ],
1748
+ name: "onERC1155BatchReceived",
1749
+ outputs: [
1750
+ {
1751
+ internalType: "bytes4",
1752
+ name: "",
1753
+ type: "bytes4",
1754
+ },
1755
+ ],
1756
+ stateMutability: "nonpayable",
1757
+ type: "function",
1758
+ },
1759
+ {
1760
+ inputs: [
1761
+ {
1762
+ internalType: "address",
1763
+ name: "",
1764
+ type: "address",
1765
+ },
1766
+ {
1767
+ internalType: "address",
1768
+ name: "",
1769
+ type: "address",
1770
+ },
1771
+ {
1772
+ internalType: "uint256",
1773
+ name: "",
1774
+ type: "uint256",
1775
+ },
1776
+ {
1777
+ internalType: "uint256",
1778
+ name: "",
1779
+ type: "uint256",
1780
+ },
1781
+ {
1782
+ internalType: "bytes",
1783
+ name: "",
1784
+ type: "bytes",
1785
+ },
1786
+ ],
1787
+ name: "onERC1155Received",
1788
+ outputs: [
1789
+ {
1790
+ internalType: "bytes4",
1791
+ name: "",
1792
+ type: "bytes4",
1793
+ },
1794
+ ],
1795
+ stateMutability: "nonpayable",
1796
+ type: "function",
1797
+ },
1798
+ {
1799
+ inputs: [
1800
+ {
1801
+ internalType: "address",
1802
+ name: "",
1803
+ type: "address",
1804
+ },
1805
+ {
1806
+ internalType: "address",
1807
+ name: "",
1808
+ type: "address",
1809
+ },
1810
+ {
1811
+ internalType: "uint256",
1812
+ name: "",
1813
+ type: "uint256",
1814
+ },
1815
+ {
1816
+ internalType: "bytes",
1817
+ name: "",
1818
+ type: "bytes",
1819
+ },
1820
+ ],
1821
+ name: "onERC721Received",
1822
+ outputs: [
1823
+ {
1824
+ internalType: "bytes4",
1825
+ name: "",
1826
+ type: "bytes4",
1827
+ },
1828
+ ],
1829
+ stateMutability: "nonpayable",
1830
+ type: "function",
1831
+ },
1832
+ {
1833
+ inputs: [
1834
+ {
1835
+ internalType: "address",
1836
+ name: "requester_",
1837
+ type: "address",
1838
+ },
1839
+ {
1840
+ internalType: "uint256",
1841
+ name: "serviceFee_",
1842
+ type: "uint256",
1843
+ },
1844
+ {
1845
+ internalType: "uint256",
1846
+ name: "neutralsNumber_",
1847
+ type: "uint256",
1848
+ },
1849
+ {
1850
+ internalType: "string",
1851
+ name: "additionalLink_",
1852
+ type: "string",
1853
+ },
1854
+ {
1855
+ internalType: "bytes",
1856
+ name: "data_",
1857
+ type: "bytes",
1858
+ },
1859
+ ],
1860
+ name: "processServiceRequest",
1861
+ outputs: [
1862
+ {
1863
+ internalType: "bool",
1864
+ name: "",
1865
+ type: "bool",
1866
+ },
1867
+ ],
1868
+ stateMutability: "payable",
1869
+ type: "function",
1870
+ },
1871
+ {
1872
+ inputs: [
1873
+ {
1874
+ internalType: "uint256",
1875
+ name: "proposalId",
1876
+ type: "uint256",
1877
+ },
1878
+ ],
1879
+ name: "proposalDeadline",
1880
+ outputs: [
1881
+ {
1882
+ internalType: "uint256",
1883
+ name: "",
1884
+ type: "uint256",
1885
+ },
1886
+ ],
1887
+ stateMutability: "view",
1888
+ type: "function",
1889
+ },
1890
+ {
1891
+ inputs: [
1892
+ {
1893
+ internalType: "uint256",
1894
+ name: "proposalId",
1895
+ type: "uint256",
1896
+ },
1897
+ ],
1898
+ name: "proposalEta",
1899
+ outputs: [
1900
+ {
1901
+ internalType: "uint256",
1902
+ name: "",
1903
+ type: "uint256",
1904
+ },
1905
+ ],
1906
+ stateMutability: "view",
1907
+ type: "function",
1908
+ },
1909
+ {
1910
+ inputs: [
1911
+ {
1912
+ internalType: "uint256",
1913
+ name: "",
1914
+ type: "uint256",
1915
+ },
1916
+ ],
1917
+ name: "proposalNeedsQueuing",
1918
+ outputs: [
1919
+ {
1920
+ internalType: "bool",
1921
+ name: "",
1922
+ type: "bool",
1923
+ },
1924
+ ],
1925
+ stateMutability: "view",
1926
+ type: "function",
1927
+ },
1928
+ {
1929
+ inputs: [
1930
+ {
1931
+ internalType: "uint256",
1932
+ name: "proposalId",
1933
+ type: "uint256",
1934
+ },
1935
+ ],
1936
+ name: "proposalProposer",
1937
+ outputs: [
1938
+ {
1939
+ internalType: "address",
1940
+ name: "",
1941
+ type: "address",
1942
+ },
1943
+ ],
1944
+ stateMutability: "view",
1945
+ type: "function",
1946
+ },
1947
+ {
1948
+ inputs: [
1949
+ {
1950
+ internalType: "uint256",
1951
+ name: "proposalId",
1952
+ type: "uint256",
1953
+ },
1954
+ ],
1955
+ name: "proposalSnapshot",
1956
+ outputs: [
1957
+ {
1958
+ internalType: "uint256",
1959
+ name: "",
1960
+ type: "uint256",
1961
+ },
1962
+ ],
1963
+ stateMutability: "view",
1964
+ type: "function",
1965
+ },
1966
+ {
1967
+ inputs: [],
1968
+ name: "proposalThreshold",
1969
+ outputs: [
1970
+ {
1971
+ internalType: "uint256",
1972
+ name: "",
1973
+ type: "uint256",
1974
+ },
1975
+ ],
1976
+ stateMutability: "view",
1977
+ type: "function",
1978
+ },
1979
+ {
1980
+ inputs: [
1981
+ {
1982
+ internalType: "address[]",
1983
+ name: "targets",
1984
+ type: "address[]",
1985
+ },
1986
+ {
1987
+ internalType: "uint256[]",
1988
+ name: "values",
1989
+ type: "uint256[]",
1990
+ },
1991
+ {
1992
+ internalType: "bytes[]",
1993
+ name: "calldatas",
1994
+ type: "bytes[]",
1995
+ },
1996
+ {
1997
+ internalType: "string",
1998
+ name: "description",
1999
+ type: "string",
2000
+ },
2001
+ ],
2002
+ name: "propose",
2003
+ outputs: [
2004
+ {
2005
+ internalType: "uint256",
2006
+ name: "",
2007
+ type: "uint256",
2008
+ },
2009
+ ],
2010
+ stateMutability: "nonpayable",
2011
+ type: "function",
2012
+ },
2013
+ {
2014
+ inputs: [
2015
+ {
2016
+ internalType: "uint256",
2017
+ name: "proposalId_",
2018
+ type: "uint256",
2019
+ },
2020
+ {
2021
+ components: [
2022
+ {
2023
+ components: [
2024
+ {
2025
+ internalType: "enum IGovernance.OperationType",
2026
+ name: "operation_",
2027
+ type: "uint8",
2028
+ },
2029
+ {
2030
+ internalType: "address",
2031
+ name: "to_",
2032
+ type: "address",
2033
+ },
2034
+ {
2035
+ internalType: "bytes",
2036
+ name: "data_",
2037
+ type: "bytes",
2038
+ },
2039
+ {
2040
+ internalType: "uint256",
2041
+ name: "value_",
2042
+ type: "uint256",
2043
+ },
2044
+ ],
2045
+ internalType: "struct IGovernance.OperationData[]",
2046
+ name: "operations",
2047
+ type: "tuple[]",
2048
+ },
2049
+ ],
2050
+ internalType: "struct IGovernance.OperationBundle",
2051
+ name: "operationBundle_",
2052
+ type: "tuple",
2053
+ },
2054
+ ],
2055
+ name: "proposeOperations",
2056
+ outputs: [],
2057
+ stateMutability: "nonpayable",
2058
+ type: "function",
2059
+ },
2060
+ {
2061
+ inputs: [],
2062
+ name: "proxiableUUID",
2063
+ outputs: [
2064
+ {
2065
+ internalType: "bytes32",
2066
+ name: "",
2067
+ type: "bytes32",
2068
+ },
2069
+ ],
2070
+ stateMutability: "view",
2071
+ type: "function",
2072
+ },
2073
+ {
2074
+ inputs: [
2075
+ {
2076
+ internalType: "address[]",
2077
+ name: "targets",
2078
+ type: "address[]",
2079
+ },
2080
+ {
2081
+ internalType: "uint256[]",
2082
+ name: "values",
2083
+ type: "uint256[]",
2084
+ },
2085
+ {
2086
+ internalType: "bytes[]",
2087
+ name: "calldatas",
2088
+ type: "bytes[]",
2089
+ },
2090
+ {
2091
+ internalType: "bytes32",
2092
+ name: "descriptionHash",
2093
+ type: "bytes32",
2094
+ },
2095
+ ],
2096
+ name: "queue",
2097
+ outputs: [
2098
+ {
2099
+ internalType: "uint256",
2100
+ name: "",
2101
+ type: "uint256",
2102
+ },
2103
+ ],
2104
+ stateMutability: "nonpayable",
2105
+ type: "function",
2106
+ },
2107
+ {
2108
+ inputs: [
2109
+ {
2110
+ internalType: "uint256",
2111
+ name: "timepoint",
2112
+ type: "uint256",
2113
+ },
2114
+ ],
2115
+ name: "quorum",
2116
+ outputs: [
2117
+ {
2118
+ internalType: "uint256",
2119
+ name: "",
2120
+ type: "uint256",
2121
+ },
2122
+ ],
2123
+ stateMutability: "view",
2124
+ type: "function",
2125
+ },
2126
+ {
2127
+ inputs: [
2128
+ {
2129
+ internalType: "address",
2130
+ name: "target",
2131
+ type: "address",
2132
+ },
2133
+ {
2134
+ internalType: "uint256",
2135
+ name: "value",
2136
+ type: "uint256",
2137
+ },
2138
+ {
2139
+ internalType: "bytes",
2140
+ name: "data",
2141
+ type: "bytes",
2142
+ },
2143
+ ],
2144
+ name: "relay",
2145
+ outputs: [],
2146
+ stateMutability: "payable",
2147
+ type: "function",
2148
+ },
2149
+ {
2150
+ inputs: [
2151
+ {
2152
+ internalType: "uint256",
2153
+ name: "proposalId",
2154
+ type: "uint256",
2155
+ },
2156
+ ],
2157
+ name: "state",
2158
+ outputs: [
2159
+ {
2160
+ internalType: "enum IGovernor.ProposalState",
2161
+ name: "",
2162
+ type: "uint8",
2163
+ },
2164
+ ],
2165
+ stateMutability: "view",
2166
+ type: "function",
2167
+ },
2168
+ {
2169
+ inputs: [
2170
+ {
2171
+ internalType: "bytes4",
2172
+ name: "interfaceId_",
2173
+ type: "bytes4",
2174
+ },
2175
+ ],
2176
+ name: "supportsInterface",
2177
+ outputs: [
2178
+ {
2179
+ internalType: "bool",
2180
+ name: "",
2181
+ type: "bool",
2182
+ },
2183
+ ],
2184
+ stateMutability: "view",
2185
+ type: "function",
2186
+ },
2187
+ {
2188
+ inputs: [
2189
+ {
2190
+ internalType: "address",
2191
+ name: "newImplementation",
2192
+ type: "address",
2193
+ },
2194
+ {
2195
+ internalType: "bytes",
2196
+ name: "data",
2197
+ type: "bytes",
2198
+ },
2199
+ ],
2200
+ name: "upgradeToAndCall",
2201
+ outputs: [],
2202
+ stateMutability: "payable",
2203
+ type: "function",
2204
+ },
2205
+ {
2206
+ inputs: [],
2207
+ name: "version",
2208
+ outputs: [
2209
+ {
2210
+ internalType: "string",
2211
+ name: "",
2212
+ type: "string",
2213
+ },
2214
+ ],
2215
+ stateMutability: "view",
2216
+ type: "function",
2217
+ },
2218
+ {
2219
+ inputs: [],
2220
+ name: "votingDelay",
2221
+ outputs: [
2222
+ {
2223
+ internalType: "uint256",
2224
+ name: "",
2225
+ type: "uint256",
2226
+ },
2227
+ ],
2228
+ stateMutability: "view",
2229
+ type: "function",
2230
+ },
2231
+ {
2232
+ inputs: [],
2233
+ name: "votingPeriod",
2234
+ outputs: [
2235
+ {
2236
+ internalType: "uint256",
2237
+ name: "",
2238
+ type: "uint256",
2239
+ },
2240
+ ],
2241
+ stateMutability: "view",
2242
+ type: "function",
2243
+ },
2244
+ {
2245
+ stateMutability: "payable",
2246
+ type: "receive",
2247
+ },
2248
+ ];
2249
+ const _bytecode = "0x60a0806040523460295730608052615f0c908161002f8239608051818181611a690152611afd0152f35b600080fdfe608080604052600436101561001d575b50361561001b57600080fd5b005b60003560e01c90816301ffc9a7146126435750806302a251a314612617578063035eb022146125fc57806306fdde03146124dd578063143489d0146124ad578063150b7a021461245857806315d2490414612422578063160cbed7146123ec5780632656227d146123d55780632d63f693146123b75780632db8b607146123815780632fe3e26114612346578063314b89bd14611fc25780633932abb114611fa75780633e4f49e614611f785780634385963214611eca578063452115d614611dce5780634bf5d7e914611d7e5780634f1ef28614611ac057806352d1902d14611a5657806354fd4d5014611a1357806356781388146119d55780635b8d0e0d146118835780635c60da1b1461184d5780635ecaa339146118185780635f398a14146117a55780636106f19f146114e55780636e768530146114a45780637b3c71d3146114415780637d5e81e2146113705780637ecebe001461131757806384b0196e146111f35780638ff262e3146110e857806391ddadf4146110c55780639a220315146110aa5780639a802a6d146110655780639d6d9be914610e35578063a722570d14610e1a578063a8f8a668146108b5578063a9a9529414610dfe578063ab58fb8e14610de0578063ad3cb1cc14610d99578063adf499f514610a06578063b58131b0146109ea578063bc197c8114610955578063c01f9e3714610937578063c28bc2fa146108ba578063c59057e4146108b5578063ce5f0f511461089a578063dd4e2ba514610810578063deaaa7cc146107d5578063e312d7f21461033d578063eb9019d414610307578063f23a6e61146102b25763f8ce560a14610287573861000f565b346102ad5760203660031901126102ad5760206102a5600435613ccb565b604051908152f35b600080fd5b346102ad5760a03660031901126102ad576102cb612721565b506102d4612737565b506084356001600160401b0381116102ad576102f4903690600401612857565b5060405163f23a6e6160e01b8152602090f35b346102ad5760403660031901126102ad57610320612721565b5060006040516103316020826127e4565b52602060405160018152f35b60a03660031901126102ad57610351612721565b602435604435916064356001600160401b0381116102ad57610377903690600401612ad4565b60843594916001600160401b0386116102ad5761039b610412963690600401612ad4565b91909260018060a01b03600080516020615e0083398151915254169460206040968751906103c989836127e4565b601c82527f736c632e676f7665726e616e63652e6d696e536572766963654665650000000083830152885180809d819462498bff60e81b835286600484015260248301906126e0565b03915afa9889156107ca57600099610796575b5088881061077d5786979850610447602497610442368587612820565b614ef2565b600080516020615ee0833981519152548851633eb22a3160e21b815260048101859052929b92996000918b919082906001600160a01b03165afa988915610772576000996106cd575b50600161049c3361322f565b60009283520160205287902080546001600160a01b0319166001600160a01b03909a169990991789556001890155600288015560038701916001600160401b038211610648576104f6826104f08554612ee8565b85613a39565b600090601f83116001146106695761052792916000918361065e575b50508160011b916000199060031b1c19161790565b90555b60068501916001600160401b0382116106485761054b826104f08554612ee8565b600090601f83116001146105e15761057b9291600091836105d65750508160011b916000199060031b1c19161790565b90559291925b600460009401935b82518110156105b9576001906105b26001600160a01b036105aa8387612ff0565b511687615926565b5001610589565b506105cf602092846105ca8161500f565b61518e565b5160018152f35b013590508880610512565b8382526020822091601f198416815b8181106106305750908460019594939210610616575b505050811b019055929192610581565b0135600019600384901b60f8161c19169055878080610606565b919360206001819287870135815501950192016105f0565b634e487b7160e01b600052604160045260246000fd5b013590508a80610512565b8382526020822091601f198416815b8181106106b5575090846001959493921061069b575b505050811b01905561052a565b0135600019600384901b60f8161c1916905589808061068e565b91936020600181928787013581550195019201610678565b9890983d8083833e6106df81836127e4565b81019060208183031261076a578051906001600160401b03821161076e570181601f8201121561076a5780519061071582612875565b936107228c5195866127e4565b82855260208086019360051b8301019384116107675750602001905b82821061074f57505050978b610490565b6020809161075c84613cb7565b81520191019061073e565b80fd5b8280fd5b8380fd5b88513d6000823e3d90fd5b8888632461012360e01b60005260045260245260446000fd5b90986020823d6020116107c2575b816107b1602093836127e4565b810103126107675750519789610425565b3d91506107a4565b86513d6000823e3d90fd5b346102ad5760003660031901126102ad5760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b346102ad5760003660031901126102ad576108966040516108326060826127e4565b603d81527f737570706f72743d627261766f2c6672616374696f6e616c2671756f72756d3d60208201527f666f722c6162737461696e26706172616d733d6672616374696f6e616c00000060408201526040519182916020835260208301906126e0565b0390f35b346102ad5760003660031901126102ad5760206102a5613bcf565b612de7565b60603660031901126102ad576108ce612721565b6044356001600160401b0381116102ad576108ed903690600401612ad4565b903330036109225760008383829361001b95604051928392833781018481520391602435905af161091c613ae5565b90614ed6565b6347096e4760e01b6000523360045260246000fd5b346102ad5760203660031901126102ad5760206102a5600435613a80565b346102ad5760a03660031901126102ad5761096e612721565b50610977612737565b506044356001600160401b0381116102ad576109979036906004016128f1565b506064356001600160401b0381116102ad576109b79036906004016128f1565b506084356001600160401b0381116102ad576109d7903690600401612857565b5060405163bc197c8160e01b8152602090f35b346102ad5760003660031901126102ad57602060405160008152f35b346102ad5760403660031901126102ad576024356004356001600160401b0382116102ad5781600401918036039160206003198401126102ad576000818152600080516020615e808339815191526020526040902054600190610a71906001600160a01b031661322f565b0181600052600080516020615e80833981519152602052600160406000200154600052602052604060002060ff600782015416610aad81612a78565b60018103610d7c57503360009081526005909101602052604090205415610d6757600052600080516020615e8083398151915260205260066040600020610afc610af73687612b01565b613384565b33600090815260088301602081905260409091205480610d2a575b508160005260078301602052610b31336040600020615926565b5060018060a01b03331660005260205280604060002055610b5c81610b563689612b01565b84614d30565b50600052016020526040600020923591602219018212156102ad57016004810135906001600160401b0382116102ad57602481018260051b360381136102ad57610ba88385939561393a565b600091825260208220939060a2193683900301905b848410610bc657005b8035828112156102ad57600490840101602081013560028110156102ad57610bee90886139fc565b60408101356001600160a01b03811681036102ad57610c0d9088613a14565b600187016060820135603e1936849003018112156102ad5782016020018035906001600160401b0382116102ad5781360360208201136102ad57600090610c5e83610c588654612ee8565b86613a39565b81601f8411600114610cba5793610c9784600198956080956003999560209992610cad5750508160011b916000199060031b1c19161790565b90555b013560028a015501960193019294610bbd565b8992500101358f80610512565b91601f19841685845260208420935b818110610d10575084608094600398946020989460019b988c9510610cf6575b505050811b019055610c9a565b01880135600019838b1b60f8161c191690558e8080610ce9565b919360206001819282888801013581550195019201610cc9565b600784018160005280602052610d44336040600020615872565b5081600052602052604060002054610b1757610d609084614b8b565b5087610b17565b63562b6a4f60e01b6000523360045260246000fd5b6317d118a360e01b600052610d9081612a78565b60045260246000fd5b346102ad5760003660031901126102ad576108966040805190610dbc81836127e4565b60058252640352e302e360dc1b6020830152519182916020835260208301906126e0565b346102ad5760203660031901126102ad5760206102a56004356138e7565b346102ad5760203660031901126102ad57602060405160008152f35b346102ad5760003660031901126102ad5760206102a5613862565b346102ad5760803660031901126102ad57610e4e612721565b6001610e5c6044359261322f565b01602435600052602052600a60406000200190815490610e7e60643582612dfa565b9180831161105d575b50818111611055575b91610e9b8383613268565b91610ea583612875565b92610eb360405194856127e4565b808452610ec2601f1991612875565b0160005b818110611038575050610ed98482613268565b93610ee385612875565b94610ef160405196876127e4565b808652610f00601f1991612875565b0160005b81811061101b575050805b828110610fc8578585604051918291604083016040845281518091526060840190602060608260051b8701019301916000905b828210610f97575050505082810360208401526020808351928381520192019060005b818110610f73575050500390f35b91935091602060c082610f896001948851612d95565b019401910191849392610f65565b9193600191939596506020610fb78192605f198b82030186528851612cb1565b960192019201869594939192610f42565b80611011610fe9610fdd600194889a9861384a565b90549060031b1c6134e3565b610ff68685949394613268565b9061100a6110048887613268565b8a612ff0565b5288612ff0565b5201949294610f0f565b6020906110299795976133ff565b82828801015201959395610f04565b6020906110469694966133cd565b82828801015201949294610ec6565b905080610e90565b915083610e87565b346102ad5760603660031901126102ad5761107e612721565b506044356001600160401b0381116102ad5761109e903690600401612857565b50602060405160018152f35b346102ad5760003660031901126102ad5760206102a5613762565b346102ad5760003660031901126102ad57602060405165ffffffffffff42168152f35b346102ad5760803660031901126102ad57600435611104612ac4565b61110c61274d565b916064356001600160401b0381116102ad5761112c903690600401612857565b926111a961113982613e7e565b946111a360405160208101907ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7825286604082015260ff8816606082015260018060a01b0386169889608083015260a082015260a0815261119b60c0826127e4565b519020613ec0565b83613f42565b156111de576040516020936102a593926111c386846127e4565b60008352604051936111d587866127e4565b60008552613fff565b836394ab6c0760e01b60005260045260246000fd5b346102ad5760003660031901126102ad577fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1005415806112ee575b156112b15760e061123c61484f565b610896611247614942565b916112906020936112826040519361125f87866127e4565b600085526000368137604051978897600f60f81b895288015260e08701906126e0565b9085820360408701526126e0565b90466060850152306080850152600060a085015283820360c0850152612a82565b60405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606490fd5b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d101541561122d565b346102ad5760203660031901126102ad576001600160a01b03611338612721565b166000527f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006020526020604060002054604051908152f35b346102ad5760803660031901126102ad576004356001600160401b0381116102ad576113a090369060040161288c565b6024356001600160401b0381116102ad576113bf9036906004016128f1565b6044356001600160401b0381116102ad576113de90369060040161294e565b916064356001600160401b0381116102ad57366023820112156102ad5761140f903690602481600401359101612820565b6114198133614513565b1561142c576020936102a5933393614585565b63d9b3955760e01b6000523360045260246000fd5b346102ad5760603660031901126102ad5761145a612ac4565b6044356001600160401b0381116102ad576020916114896114826102a5933690600401612ad4565b3691612820565b6040519161149785846127e4565b6000835233600435613fff565b346102ad5760203660031901126102ad576114da6114c36004356134e3565b61089660405193849360e0855260e0850190612cb1565b916020840190612d95565b346102ad5760803660031901126102ad576114fe612721565b611506612737565b9061150f61274d565b6064356001600160a01b03811691908290036102ad57600080516020615ec0833981519152549060ff8260401c1615946001600160401b0383168015908161179d575b6001149081611793575b15908161178a575b506117795767ffffffffffffffff198316600117600080516020615ec0833981519152556000946020938761174c575b50600080516020615ea083398151915280546001600160a01b03199081166001600160a01b03938416908117909255600080516020615e40833981519152805482169484169485179055600080516020615ee08339815191528054821695909316948517909255600080516020615e008339815191528054909216909517905560405163095ea7b360e01b815260048101919091528419602482015293909284916044918391905af190811561172557600092602092611731575b50600080516020615ea08339815191525460405163095ea7b360e01b81526004810192909252831960248301529092839160449183916001600160a01b03165af18015611725576116f6575b506116a257005b60ff60401b19600080516020615ec08339815191525416600080516020615ec0833981519152557fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2602060405160018152a1005b6117179060203d60201161171e575b61170f81836127e4565b8101906133b5565b508161169b565b503d611705565b6040513d6000823e3d90fd5b61174790833d851161171e5761170f81836127e4565b61164f565b68ffffffffffffffffff19166801000000000000000117600080516020615ec08339815191525587611594565b63f92ee8a960e01b60005260046000fd5b90501587611564565b303b15915061155c565b879150611552565b346102ad5760803660031901126102ad576117be612ac4565b6044356001600160401b0381116102ad576117dd903690600401612ad4565b606435926001600160401b0384116102ad5761180e6102a5936118066020963690600401612857565b933691612820565b9033600435613fff565b346102ad5760203660031901126102ad576004356001600160401b0381116102ad576102a5610af76020923690600401612b01565b346102ad5760003660031901126102ad57600080516020615e60833981519152546040516001600160a01b039091168152602090f35b346102ad5760c03660031901126102ad5760043561189f612ac4565b906118a861274d565b916064356001600160401b0381116102ad576118c8903690600401612ad4565b93906084356001600160401b0381116102ad576118e9903690600401612857565b9460a4356001600160401b0381116102ad57611909903690600401612857565b6119a261191585613e7e565b9161199c611924368688612820565b602081519101208a5160208c01206040519060208201927f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81184528c604084015260ff8c16606084015260018060a01b038b169788608085015260a084015260c083015260e082015260e0815261119b610100826127e4565b86613f42565b156119c15760206102a5888888886119bb36898b612820565b92613fff565b6394ab6c0760e01b60005260045260246000fd5b346102ad5760403660031901126102ad576119ee612ac4565b6102a5602091604051611a0184826127e4565b600081526040519161149785846127e4565b346102ad5760003660031901126102ad576108966040805190611a3681836127e4565b60018252603160f81b6020830152519182916020835260208301906126e0565b346102ad5760003660031901126102ad577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163003611aaf576020604051600080516020615e608339815191528152f35b63703e46dd60e11b60005260046000fd5b60403660031901126102ad57611ad4612721565b6024356001600160401b0381116102ad57611af3903690600401612857565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016308114908115611d5b575b50611aaf57600080516020615e008339815191525460408051909391611b9d916020916001600160a01b0316611b5e87836127e4565b6012825271736c632e67656e6572616c2e64616f534c4360701b838301528651808095819463d502db9760e01b835286600484015260248301906126e0565b03915afa908115611d5057600091611d16575b506001600160a01b03163303611d025791516352d1902d60e01b81526001600160a01b0383169290602081600481875afa60009181611cce575b50611c045783634c9c8ce360e01b60005260045260246000fd5b80600080516020615e60833981519152859203611cba5750813b15611ca657600080516020615e6083398151915280546001600160a01b031916821790557fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b600080a2815115611c8c5760008083602061001b95519101845af4611c86613ae5565b91615c98565b505034611c9557005b63b398979f60e01b60005260046000fd5b634c9c8ce360e01b60005260045260246000fd5b632a87526960e21b60005260045260246000fd5b90916020823d602011611cfa575b81611ce9602093836127e4565b810103126107675750519085611bea565b3d9150611cdc565b628ff8e960e21b6000523360045260246000fd5b90506020813d602011611d48575b81611d31602093836127e4565b810103126102ad57611d4290613cb7565b84611bb0565b3d9150611d24565b84513d6000823e3d90fd5b600080516020615e60833981519152546001600160a01b03161415905083611b28565b346102ad5760003660031901126102ad576108966040805190611da181836127e4565b600e82526d06d6f64653d74696d657374616d760941b6020830152519182916020835260208301906126e0565b346102ad57611ddc366129cc565b92611dec84838584969596613b6e565b611df581613336565b6008811015611eb4571580611e9a575b15611e82576020611e1886868686613b6e565b6040611e25603b83613d22565b506000828152600080516020615e20833981519152845281902080546001600160f81b0316600160f81b17905580518281527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c908490a151908152f35b638fe5d8a960e01b6000526004523360245260446000fd5b506001600160a01b03611eac82612fa5565b163314611e05565b634e487b7160e01b600052602160045260246000fd5b346102ad5760403660031901126102ad5760206004356009611f27611eed612737565b6000848152600080516020615e80833981519152865260408082206001600160a01b03909316808352949092016001016020522054151590565b918215611f3b575b50506040519015158152f35b611f719250600052600080516020615e808339815191528352600b60406000200160019160005201602052604060002054151590565b8280611f2f565b346102ad5760203660031901126102ad57611f94600435613336565b6040516008821015611eb4576020918152f35b346102ad5760003660031901126102ad5760206102a5613275565b346102ad5760603660031901126102ad57611fdb612721565b602435611fe78261322f565b54611ff460443583612dfa565b9080821161233e575b50808211612337575b6120108282613268565b9261201a84612875565b9361202860405195866127e4565b808552612037601f1991612875565b0160005b8181106122d9575050825b82811061215157846040518091602082016020835281518091526040830190602060408260051b8601019301916000905b82821061208657505050500390f35b919360019193955060206121418192603f198a8203018652885190858060a01b0382511681528382015184820152604082015160408201526101206121066120f46120e2606086015161014060608701526101408601906126e0565b60808601518582036080870152612a3b565b60a085015184820360a08601526126e0565b9260c081015161211581612a78565b60c084015260e081015160e0840152610100810151610100840152015190610120818403910152612a82565b9601920192018594939192612077565b600161215c8361322f565b0181600052602052604060002060018060a01b03815416906001810154906002810154906004810190604051808360208295549384815201906000526020600020926000905b8082106122bd5750506121b7925003836127e4565b600661222460ff60078401541692600881015494600982015496600a8301986040519a6121e38c612777565b8b5260208b015260408a015260405161220a816122038160038701612f22565b03826127e4565b60608a015260808901526122036040518094819301612f22565b60a086015261223281612a78565b60c085015260e08401526101008301526040519081602082549182815201916000526020600020906000905b8082106122a557505050918161227c61229e936001969503826127e4565b61012082015261228c8784613268565b90612297828a612ff0565b5287612ff0565b5001612046565b9091926001602081928654815201940192019061225e565b91600191935060208291865481520194019201859293916121a2565b6020906040516122e881612777565b600081526000838201526000604082015260608082015260606080820152606060a0820152600060c0820152600060e0820152600061010082015260606101208201528282890101520161203b565b5080612006565b905083611ffd565b346102ad5760003660031901126102ad5760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b346102ad5760003660031901126102ad57600080516020615ea0833981519152546040516001600160a01b039091168152602090f35b346102ad5760203660031901126102ad5760206102a5600435613206565b60206102a56123e3366129cc565b92919091613004565b346102ad57612410601061240b612402366129cc565b92919091613b6e565b613d22565b50634844252360e11b60005260046000fd5b346102ad5760003660031901126102ad57600080516020615e00833981519152546040516001600160a01b039091168152602090f35b346102ad5760803660031901126102ad57612471612721565b5061247a612737565b506064356001600160401b0381116102ad5761249a903690600401612857565b50604051630a85bd0160e11b8152602090f35b346102ad5760203660031901126102ad5760206124cb600435612fa5565b6040516001600160a01b039091168152f35b346102ad5760003660031901126102ad5760405160007f7c712897014dbe49c045ef1299aa2d5f9e67e48eea4403efa21f1e0f3ac0cb005461251e81612ee8565b80845290600181169081156125d8575060011461255a575b61089683612546818503826127e4565b6040519182916020835260208301906126e0565b7f7c712897014dbe49c045ef1299aa2d5f9e67e48eea4403efa21f1e0f3ac0cb0060009081527fda13dda7583a39a3cd73e8830529c760837228fa4683752c823b17e10548aad5939250905b8082106125be57509091508101602001612546612536565b9192600181602092548385880101520191019092916125a6565b60ff191660208086019190915291151560051b840190910191506125469050612536565b346102ad5760003660031901126102ad5760206102a5612e1d565b346102ad5760003660031901126102ad5760206102a5612635613862565b61263d612e1d565b90612dfa565b346102ad5760203660031901126102ad576004359063ffffffff60e01b82168092036102ad57602091631da32c4160e21b8114908115612685575b5015158152f35b6366defe7760e11b8114915081156126cf575b81156126be575b81156126ad575b508361267e565b6301ffc9a760e01b149050836126a6565b630271189760e51b8114915061269f565b6332a2ad4360e11b81149150612698565b919082519283825260005b84811061270c575050826000602080949584010152601f8019910116010190565b806020809284010151828286010152016126eb565b600435906001600160a01b03821682036102ad57565b602435906001600160a01b03821682036102ad57565b604435906001600160a01b03821682036102ad57565b35906001600160a01b03821682036102ad57565b61014081019081106001600160401b0382111761064857604052565b602081019081106001600160401b0382111761064857604052565b608081019081106001600160401b0382111761064857604052565b60c081019081106001600160401b0382111761064857604052565b90601f801991011681019081106001600160401b0382111761064857604052565b6001600160401b03811161064857601f01601f191660200190565b92919261282c82612805565b9161283a60405193846127e4565b8294818452818301116102ad578281602093846000960137010152565b9080601f830112156102ad5781602061287293359101612820565b90565b6001600160401b0381116106485760051b60200190565b9080601f830112156102ad5781356128a381612875565b926128b160405194856127e4565b81845260208085019260051b8201019283116102ad57602001905b8282106128d95750505090565b602080916128e684612763565b8152019101906128cc565b9080601f830112156102ad57813561290881612875565b9261291660405194856127e4565b81845260208085019260051b8201019283116102ad57602001905b82821061293e5750505090565b8135815260209182019101612931565b9080601f830112156102ad57813561296581612875565b9261297360405194856127e4565b81845260208085019260051b820101918383116102ad5760208201905b83821061299f57505050505090565b81356001600160401b0381116102ad576020916129c187848094880101612857565b815201910190612990565b60806003198201126102ad576004356001600160401b0381116102ad57816129f69160040161288c565b916024356001600160401b0381116102ad5782612a15916004016128f1565b91604435906001600160401b0382116102ad57612a349160040161294e565b9060643590565b906020808351928381520192019060005b818110612a595750505090565b82516001600160a01b0316845260209384019390920191600101612a4c565b60041115611eb457565b906020808351928381520192019060005b818110612aa05750505090565b8251845260209384019390920191600101612a93565b6008811015611eb457602452565b6024359060ff821682036102ad57565b9181601f840112156102ad578235916001600160401b0383116102ad57602083818601950101116102ad57565b91906020838203126102ad57604051612b1981612793565b80938035906001600160401b0382116102ad570182601f820112156102ad57803590612b4482612875565b93612b5260405195866127e4565b82855260208086019360051b830101918183116102ad5760208101935b838510612b7e57505050505052565b84356001600160401b0381116102ad5782016080818503601f1901126102ad5760405191612bab836127ae565b602082013560028110156102ad578352612bc760408301612763565b60208401526060820135926001600160401b0384116102ad57608083612bf4886020809881980101612857565b604084015201356060820152815201940193612b6f565b906002821015611eb45752565b90602081019151916020825282518091526040820191602060408360051b8301019401926000915b838310612c4f57505050505090565b9091929394602080600192603f19858203018652885190612c71818351612c0b565b848060a01b03838301511683820152606080612c9c60408501516080604086015260808501906126e0565b93015191015297019301930191939290612c40565b91909160c0830192815181526020820151602082015260408201519360c060408301528451809152602060e0830195019060005b818110612d7f575050506060820151938181036060830152845180825260208201906020808260051b8501019701916000905b828210612d5157505050505060a0612d40612872949560808501518482036080860152612a3b565b9201519060a0818403910152612a3b565b9091929397602080612d6f600193601f198d82030186528851612c18565b9a96019493919091019101612d18565b8251875260209687019690920191600101612ce5565b65ffffffffffff60a08092600180831b03815116855282602082015116602086015263ffffffff6040820151166040860152606081015115156060860152608081015115156080860152015116910152565b346102ad5760206102a5612402366129cc565b91908201809211612e0757565b634e487b7160e01b600052601160045260246000fd5b600080516020615e0083398151915254604051612ea391602091906001600160a01b0316612e4c6060836127e4565b602482527f736c632e676f7665726e616e63652e6578656375746f7273566f74696e67506583830152631c9a5bd960e21b6040830152604051808095819462498bff60e81b835286600484015260248301906126e0565b03915afa90811561172557600091612eb9575090565b90506020813d602011612ee0575b81612ed4602093836127e4565b810103126102ad575190565b3d9150612ec7565b90600182811c92168015612f18575b6020831014612f0257565b634e487b7160e01b600052602260045260246000fd5b91607f1691612ef7565b60009291815491612f3283612ee8565b8083529260018116908115612f885750600114612f4e57505050565b60009081526020812093945091925b838310612f6e575060209250010190565b600181602092949394548385870101520191019190612f5d565b915050602093945060ff929192191683830152151560051b010190565b6000908152600080516020615e2083398151915260205260409020546001600160a01b031690565b805115612fda5760200190565b634e487b7160e01b600052603260045260246000fd5b8051821015612fda5760209160051b010190565b9290916130119284613b6e565b90602090613020603084613d22565b506000838152600080516020615e2083398151915283526040808220805460ff60f01b1916600160f01b179055848252600080516020615e808339815191528452902054600190613079906001600160a01b031661322f565b0183600052600080516020615e8083398151915283526001604060002001546000528252604060002090600882015480156131f55784600052600080516020615e80833981519152845260066040600020019060005283526040600020906130e760018060a01b0391612fcd565b511681549060005b82811061313557505050509060077f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f9201600360ff19825416179055604051838152a190565b60ff6131418286613d69565b505416908661319c6131538388613d69565b505460081c6001600160a01b03169361316c8489613d69565b506131b5600261317c878c613d69565b50015491604051978895869563e355396d60e01b87526004870190612c0b565b6024850152608060448501526001608485019101612f22565b90606483015203816000875af1918215611725576001926131d8575b50016130ef565b6131ee90883d8a1161171e5761170f81836127e4565b50386131d1565b63039f249b60e61b60005260046000fd5b600052600080516020615e2083398151915260205265ffffffffffff60406000205460a01c1690565b6001600160a01b031660009081527fb93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c79046020526040902090565b91908203918211612e0757565b6132ea602060018060a01b03600080516020615e0083398151915254166040908151916132a281846127e4565b601a83527f736c632e676f7665726e616e63652e766f74696e6744656c61790000000000008484015251808095819462498bff60e81b835286600484015260248301906126e0565b03915afa60009181613302575b506128725750600090565b9091506020813d60201161332e575b8161331e602093836127e4565b810103126102ad575190386132f7565b3d9150613311565b6000818152600080516020615e8083398151915260205260409020600b810154600390910154111561337e5761336b81613d85565b6133785761287290613db0565b50600490565b50600390565b6040516133af816133a16020820194602086526040830190612c18565b03601f1981018352826127e4565b51902090565b908160209103126102ad575180151581036102ad5790565b604051906133da826127c9565b606060a083600081526000602082015282604082015282808201528260808201520152565b6040519061340c826127c9565b600060a0838281528260208201528260408201528260608201528260808201520152565b906040519161343e83612793565b8281549161344b83612875565b9261345960405194856127e4565b808452602084019160005260206000206000925b82841061347b575050505052565b60405190613488826127ae565b82549060ff8216906002821015611eb4578360039360209360019652858060a01b039060081c16838201526040516134c68161220381898b01612f22565b60408201526002860154606082015281520192019301929061346d565b906134ec6133cd565b506134f56133ff565b5081600052600080516020615e808339815191526020526040600020916001613525818060a01b0385541661322f565b0160018401546000526020526004604060002001805461354481612875565b9161355260405193846127e4565b818352601f1961356183612875565b01366020850137600886019060005b838110613724575050505060028401549360038101549160048201906009830192604051809485916020825491828152019160005260206000209060005b81811061370b57505050600b92916135c79103866127e4565b01936040518086602082985493848152019060005260206000209260005b8181106136f25750506135fa925003866127e4565b60405197613607896127c9565b885260208801526040870152805461361e81612875565b9161362c60405193846127e4565b818352602083019060005260206000206000915b8383106136d557505050506060860152608085015260a0840152600052600080516020615e2083398151915260205260406000209165ffffffffffff60016040519461368b866127c9565b8054828060a01b0381168752838160a01c16602088015263ffffffff8160d01c16604088015260ff8160f01c161515606088015260f81c1515608087015201541660a08401529190565b6001602081926136e485613430565b815201920192019190613640565b845483526001948501948a9450602090930192016135e5565b82548452889450602090930192600192830192016135ae565b8060406137336001938561384a565b905460039190911b1c60a084901b8490031660009081526020869052205461375b8288612ff0565b5201613570565b600080516020615e00833981519152546040516137e591602091906001600160a01b03166137916060836127e4565b602182527f736c632e676f7665726e616e63652e6578656375746f72735468726573686f6c83830152601960fa1b6040830152604051808095819462498bff60e81b835286600484015260248301906126e0565b03915afa90811561172557600091613818575b50606481116138045790565b635fed39e960e01b60005260045260246000fd5b906020823d602011613842575b81613832602093836127e4565b81010312610767575051386137f8565b3d9150613825565b8054821015612fda5760005260206000200190600090565b600080516020615e0083398151915254604051612ea391602091906001600160a01b03166138916060836127e4565b602382527f736c632e676f7665726e616e63652e6e65757472616c73566f74696e6750657283830152621a5bd960ea1b6040830152604051808095819462498bff60e81b835286600484015260248301906126e0565b600052600080516020615e2083398151915260205265ffffffffffff6001604060002001541690565b81810292918115918404141715612e0757565b81811061392e575050565b60008155600101613923565b90600160401b81116106485781549181815582821061395857505050565b82600302926003840403612e075781600302916003830403612e0757600052602060002091820191015b81811061398d575050565b80600060039255600181016139a28154612ee8565b90816139b8575b50506000600282015501613982565b81601f600093116001146139d05750555b38806139a9565b818352602083206139ec91601f0160051c810190600101613923565b80825281602081209155556139c9565b906002811015611eb45760ff80198354169116179055565b8054610100600160a81b03191660089290921b610100600160a81b0316919091179055565b9190601f8111613a4857505050565b613a74926000526020600020906020601f840160051c83019310613a76575b601f0160051c0190613923565b565b9091508190613a67565b80600052600080516020615e2083398151915260205265ffffffffffff60406000205460a01c1690600052600080516020615e2083398151915260205263ffffffff60406000205460d01c160165ffffffffffff8111612e075765ffffffffffff1690565b3d15613b10573d90613af682612805565b91613b0460405193846127e4565b82523d6000602084013e565b606090565b9080602083519182815201916020808360051b8301019401926000915b838310613b4157505050505090565b9091929394602080613b5f600193601f1986820301875289516126e0565b97019301930191939290613b32565b92906133af91613bbb613ba994604051958694613b97602087019960808b5260a0880190612a3b565b868103601f1901604088015290612a82565b848103601f1901606086015290613b15565b90608083015203601f1981018352826127e4565b600080516020615e0083398151915254604080519091613c47916020916001600160a01b0316613bff85836127e4565b8282527f736c632e676f7665726e616e63652e6e65757472616c735468726573686f6c64838301528451808095819462498bff60e81b835286600484015260248301906126e0565b03915afa918215613cad5750600091613c7b575b5060648111613c675790565b63066230b760e31b60005260045260246000fd5b906020823d602011613ca5575b81613c95602093836127e4565b8101031261076757505138613c5b565b3d9150613c88565b513d6000823e3d90fd5b51906001600160a01b03821682036102ad57565b80151580613d17575b15613d035780613ce5600192612a78565b613cee81612a78565b14613cfb57612872613762565b612872613bcf565b632f13130560e11b60005260045260246000fd5b506002811115613cd4565b90613d2c82613336565b916008831015611eb45781600160ff85161b1615613d4957505090565b6331b75e4d60e01b600052600452613d6082612ab6565b60445260646000fd5b8054821015612fda576000526003602060002091020190600090565b6000908152600080516020615e80833981519152602052604090206009810154600390910154111590565b80600052600080516020615e2083398151915260205260406000205460ff8160f01c16613e775760f81c613e7157613de781613206565b8015613e5c5765ffffffffffff421680911015613e5557613e0782613a80565b10613e125750600190565b613e1b816159b3565b158015613e45575b15613e2e5750600390565b613e37906138e7565b613e4057600490565b600590565b50613e4f81613d85565b15613e23565b5050600090565b50636ad0607560e01b60005260045260246000fd5b50600290565b5050600790565b6001600160a01b031660009081527f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006020526040902080546001810190915590565b604290613ecb615cde565b613ed3615d48565b6040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a08152613f2460c0826127e4565b519020906040519161190160f01b8352600283015260228201522090565b9190823b613f7d5790613f5491615799565b50613f5e81612a78565b159182613f6a57505090565b6001600160a01b03918216911614919050565b916000926133a1613fb485946040519283916020830195630b135d3f60e11b875260248401526040604484015260648301906126e0565b51915afa613fc0613ae5565b81613ff1575b81613fcf575090565b80516020808301935090820191909103126102ad5751630b135d3f60e11b1490565b905060208151101590613fc6565b909360029261400e8484613d22565b5061401883613206565b506000838152600080516020615e80833981519152602052604090205460019061404a906001600160a01b031661322f565b0183600052600080516020615e808339815191526020526001604060002001546000526020526040600020936000602060018060a01b03600080516020615e40833981519152541698602460405180948193630debfda360e41b835260018060a01b03169c8d60048401525af1908115611725576000916144f4575b50156144df5760ff6007860182815460018482166140e381612a78565b14806144ce575b6144b3575b50505416906140fd82612a78565b810361449f575082600052600080516020615e8083398151915260205261413b86600960406000200160019160005201602052604060002054151590565b8015614462575b61444d5760ff1692600184036144205782600052600080516020615e80833981519152602052614179866009604060002001615926565b505b6000838152600080516020615e8083398151915260205260409020600b81015460039091015411156143be575b506000828152600080516020615e80833981519152602052604090206009810154600390910154111561428b575b805161422f57506142277fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda49360405193849384526020840152600160408401526080606084015260808301906126e0565b0390a2600190565b6142279061427d7fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb871295604051958695865260208601526001604086015260a0606086015260a08501906126e0565b9083820360808501526126e0565b6000828152600080516020615e808339815191526020526040902060018181015491546142c0906001600160a01b031661322f565b01816000526020526040600020906040908151916142de81846127e4565b60018352601f19810190813660208601376000878152600080516020615e80833981519152602052819020546001600160a01b031661431c85612fcd565b5280519261432a82856127e4565b6001845261433b8360208601614568565b6009860154600019810196908711612e0757612203836143ab936143b89960039651916020830152828201528181526143756060826127e4565b61437e88612fcd565b5261438887612fcd565b5080519561439682886127e4565b60018752366020880137518094819301612f22565b6020815191012092613004565b506141d6565b60406144047f3f3410c2c5574ce877ee7a73e464b358cf944acfb041e336f618574d1f3e332d92600361044260018060a01b038354169261220386518094819301612f22565b5061440e8161500f565b8151908582526020820152a1386141a8565b82600052600080516020615e8083398151915260205261444786600b604060002001615926565b5061417b565b85632503cc0160e01b60005260045260246000fd5b5082600052600080516020615e8083398151915260205261449a86600b60406000200160019160005201602052604060002054151590565b614142565b631101968160e11b600052610d9081612a78565b8319161781556144c2866159b3565b600888015582386140ef565b506144d8886159b3565b15156140ea565b866328dfb73560e21b60005260045260246000fd5b61450d915060203d60201161171e5761170f81836127e4565b386140c6565b908051603481106145605760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b0161456057614552916029198201906157d5565b9015918215613f6a57505090565b505050600190565b60005b82811061457757505050565b60608282015260200161456b565b949392909461459c82516020840120848884613b6e565b958151815190818114801590614844575b801561483c575b61481f57505086600052600080516020615e2083398151915260205265ffffffffffff60406000205460a01c166147f3576145fe6145f0613275565b65ffffffffffff4216612dfa565b9361460a612635613862565b6000898152600080516020615e208339815191526020526040902080546001600160a01b0319166001600160a01b03891617815590929065ffffffffffff87116147d957805463ffffffff85116147bf5769ffffffffffffffffffff60a01b191660a088901b65ffffffffffff60a01b161760d085901b63ffffffff60d01b1617905583519061470b906146fd6146d56146bc6146a686612875565b956146b460405197886127e4565b808752612875565b966146cf6020870198601f190189614568565b8a612dfa565b966040519a8d8c5260018060a01b031660208c015261012060408c01526101208b0190612a3b565b9089820360608b0152612a82565b90878203608089015251808252602082019160208260051b82010194926000915b8383106147925750505050509261478d926147748388979496887f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e09a980360a0890152613b15565b9260c086015260e08501528382036101008501526126e0565b0390a1565b90919293956020806147b0600193601f198682030187528a516126e0565b9801930193019193929061472c565b846306dfcc6560e41b600052602060045260245260446000fd5b866306dfcc6560e41b600052603060045260245260446000fd5b6148148761480081613336565b906331b75e4d60e01b600052600452612ab6565b600060445260646000fd5b855190630447b05d60e41b60005260045260245260445260646000fd5b5080156145b4565b5085518114156145ad565b6040517fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1025481600061488083612ee8565b808352926001811690811561492357506001146148a4575b612872925003826127e4565b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d102600090815290917f42ad5d3e1f2e6e70edcf6d991b8a3023d3fca8047a131592f9edb9fd9b89d57d5b81831061490757505090602061287292820101614898565b60209193508060019154838588010152019101909183926148ef565b6020925061287294915060ff191682840152151560051b820101614898565b6040517fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1035481600061497383612ee8565b8083529260018116908115614923575060011461499657612872925003826127e4565b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d103600090815290917f5f9ce34815f8e11431c7bb75a8e6886a91478f7ffc1dbb0a98dc240fddd76b755b8183106149f957505090602061287292820101614898565b60209193508060019154838588010152019101909183926149e1565b919091828114614af257614a298354612ee8565b6001600160401b03811161064857614a4b81614a458454612ee8565b84613a39565b600093601f8211600114614a8c57614a7d9293948291600092614a815750508160011b916000199060031b1c19161790565b9055565b015490503880610512565b845260208085208386529085209094601f198316815b818110614ada57509583600195969710614ac1575b505050811b019055565b015460001960f88460031b161c19169055388080614ab7565b9192600180602092868b015481550194019201614aa2565b509050565b818114614b8757815491614b0b838361393a565b60005260206000209060005260206000206000915b838310614b2d5750505050565b600380826001938503614b47575b01920192019190614b20565b614b5560ff825416866139fc565b614b6a848060a01b03825460081c1686613a14565b614b78848201858701614a15565b60028101546002860155614b3b565b5050565b9060058201918160005282602052604060002054801515600014614d2757600019810191818311612e07576004019182546000198101908111612e0757808203614cd1575b50505080548015614cbb576000190190614bea828261384a565b614ca5578054906000815581614c10575b50505560005260205260006040812055600190565b81600302916003830403612e0757600090815260208120918201915b828110614c395750614bfb565b8082600392558260018201614c4e8154612ee8565b80614c63575b50505082600282015501614c2c565b601f8111600114614c795750555b823880614c54565b81835260208320614c9591601f0160051c810190600101613923565b8082528160208120915555614c71565b634e487b7160e01b600052600060045260246000fd5b634e487b7160e01b600052603160045260246000fd5b614cde614ce6918561384a565b50918461384a565b614ca557818181614d0294610af79403614d17575b5050613430565b60005283602052604060002055388080614bd0565b614d2091614af7565b3881614cfb565b50505050600090565b906005820191836000528260205260406000205415600014614d2757600401908154600160401b81101561064857806001614d6e920184558361384a565b919091614ca557516020815191614d85838561393a565b01916000526020600020916000905b828210614db257505050505491600052602052604060002055600190565b805180516002811015611eb457614dc990866139fc565b6020810151614de1906001600160a01b031686613a14565b6001850160408201518051906001600160401b03821161064857614e09826104f08554612ee8565b602090601f8311600114614e665793602093614e458460019895606095600399600092614e5b5750508160011b916000199060031b1c19161790565b90555b0151600288015501940191019092614d94565b015190503880610512565b90601f1983169184600052816000209260005b818110614ebe575084606094600398946020989460019b988c9510614ea6575b505050811b019055614e48565b0151600019838b1b60f8161c19169055388080614e99565b92936020600181928786015181550195019301614e79565b909190613a745750615976565b6000198114612e075760010190565b91614efc3361322f565b805490614f0882614ee3565b90556001614fd7829482614f1b3361322f565b0184600052602052600960406000200196875497614f3889614ee3565b9055604080988151614f4a83826127e4565b868152601f198301918236602084013733614f6483612fcd565b52614fa3845193614f7586866127e4565b898552803660208701376000614f8a86612fcd565b52614f97865196876127e4565b89865260208601614568565b8b51908960208301528c8201528b8152614fbe6060826127e4565b614fc784612fcd565b52614fd183612fcd565b50614585565b6000818152600080516020615e8083398151915260205286812080543360a086901b8690039081169019909116179055959095200155565b6000818152600080516020615e808339815191526020526040902054600190615040906001600160a01b031661322f565b0181600052600080516020615e808339815191526020526001604060002001546000526020526040600020615081600482015461507b613bcf565b90615996565b82600052600080516020615e808339815191526020526002604060002001556000602060018060a01b03600080516020615e4083398151915254166004604051809481936301dffb4f60e31b83525af180156117255760009061515a575b6150ec915061507b613762565b82600052600080516020615e80833981519152602052600360406000200155600a8101918254600160401b8110156106485761513381600795600161514a9401815561384a565b819391549060031b91821b91600019901b19161790565b905501805460ff19166001179055565b506020813d602011615186575b81615174602093836127e4565b810103126102ad576150ec90516150df565b3d9150615167565b919091600090808252600080516020615e8083398151915260205260016151bf818060a01b0360408520541661322f565b01908252600080516020615e80833981519152602052600160408320015482526020526040812092600184015493841580615791575b61578a57341561572e575034840361571657600080516020615ea083398151915254604051630d0e30db60e41b815294906020908690600490829034906001600160a01b03165af194851561570b576152c5956156ec575b505b600080516020615e0083398151915254604080519093916001600160a01b03169060209061527d86826127e4565b601d81527f736c632e676f7665726e616e63652e6578656375746f727353686172650000008282015285518099819262498bff60e81b835284600484015260248301906126e0565b0381845afa9081156156235785916156b6575b6153339750602085516152eb87826127e4565b601c81527f736c632e676f7665726e616e63652e6e65757472616c73536861726500000000828201528651809a819262498bff60e81b835284600484015260248301906126e0565b0381845afa978815615677578698615681575b509060206153a49286519061535b88836127e4565b601c82527f736c632e676f7665726e616e63652e7472656173757279536861726500000000838301528751808096819462498bff60e81b835286600484015260248301906126e0565b03915afa918215615677578692615643575b506153ca826153c58a84612dfa565b612dfa565b606481036156315750606491826153f0816153e86153f79589613910565b049a87613910565b0494613910565b0495806155c5575b5081615546575b505083615414575b50509050565b600080516020615e0083398151915254815161548c9591602091906001600160a01b031661544285836127e4565b601b82527f736c632e67656e6572616c2e7472656173757279416464726573730000000000838301528451808099819463d502db9760e01b835286600484015260248301906126e0565b03915afa801561553a5783906154fb575b600080516020615ea083398151915254925163a9059cbb60e01b60208201526001600160a01b0391821660248201526044808201939093529182529394506154f393909250166154ee6064836127e4565b615c3d565b80388061540e565b506020853d602011615532575b81615515602093836127e4565b8101031261076a5761552a6154f39495613cb7565b85945061549d565b3d9150615508565b505051903d90823e3d90fd5b600080516020615ee0833981519152546001600160a01b031690813b156155c15784916155909183865180968195829463dcf2fc3960e01b84528a60048501526044840190612a3b565b90602483015203925af1801561553a579083911561540657816155b2916127e4565b6155bd578138615406565b5080fd5b8480fd5b600080516020615e40833981519152546001600160a01b031690813b1561562d5785916024839287519485938492630b32e9c760e31b845260048401525af1801561562357156153ff578461561c919592956127e4565b92386153ff565b84513d87823e3d90fd5b8580fd5b630bef6e1760e21b8752600452602486fd5b9091506020813d60201161566f575b8161565f602093836127e4565b8101031261562d575190386153b6565b3d9150615652565b85513d88823e3d90fd5b9097506020813d6020116156ae575b8161569d602093836127e4565b8101031261562d5751966020615346565b3d9150615690565b90506020873d6020116156e4575b816156d1602093836127e4565b810103126155c1576153339651906152d8565b3d91506156c4565b6157049060203d60201161171e5761170f81836127e4565b503861524d565b6040513d85823e3d90fd5b63bf08c10d60e01b8252600484905234602452604482fd5b600080516020615ea08339815191525490546040516323b872dd60e01b60208201526001600160a01b039182166024820152306044820152606480820188905281526152c5969261578592166154ee6084836127e4565b61524f565b5050509050565b5034156151f5565b81519190604183036157ca576157c392506020820151906060604084015193015160001a90615a4b565b9192909190565b505060009160029190565b9190825182118015615869575b6158405760018101808211612e075782118061584b575b158015908160011b9182046002141715612e075760280180602811612e07576158228284613268565b036158405761583092615aca565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b146157f9565b508181116157e2565b9060018201918160005282602052604060002054801515600014614d27576000198101818111612e07578254600019810191908211612e07578181036158ef575b50505080548015614cbb5760001901906158cd828261384a565b8154906000199060031b1b191690555560005260205260006040812055600190565b61590f6158ff615133938661384a565b90549060031b1c9283928661384a565b9055600052836020526040600020553880806158b3565b6000828152600182016020526040902054613e5557805490600160401b821015610648578261595f61513384600180960185558461384a565b905580549260005201602052604060002055600190565b80511561598557805190602001fd5b63d6bda27560e01b60005260046000fd5b6159a260648383615b84565b906128729260649109151590612dfa565b600052600080516020615e80833981519152602052604060002060048101805490600092600093600092600260078401930154935b8581106159f85750505050505090565b615a0e610af7615a08838561384a565b50613430565b8060005284602052604060002054908682101580615a42575b615a36575b50506001016159e8565b97509250600138615a2c565b50848211615a27565b91906fa2a8918ca85bafe22016d0b997e4df60600160ff1b038411615abe579160209360809260ff60009560405194855216868401526040830152606082015282805260015afa15611725576000516001600160a01b03811615615ab25790600090600090565b50600090600190600090565b50505060009160039190565b92909260018401808511612e0757831180615b66575b158015908160011b9182046002141715612e0757615b049060009492939495612dfa565b915b818310615b165750505060019190565b9092919360ff615b308160f81b6020888601015116615d8d565b16600f8111615b5a578160041b9180830460101490151715612e0757600191019401919290615b06565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14615ae0565b90916000198383099280830292838086109503948086039514615c195784831115615c005790829109816000038216809204600281600302188082026002030280820260020302808202600203028082026002030280820260020302809102600203029360018380600003040190848311900302920304170290565b82634e487b71600052156003026011186020526024601cfd5b505091508115615c27570490565b634e487b7160e01b600052601260045260246000fd5b906000602091828151910182855af115611725576000513d615c8f57506001600160a01b0381163b155b615c6e5750565b635274afe760e01b60009081526001600160a01b0391909116600452602490fd5b60011415615c67565b90615ca35750615976565b81511580615cd5575b615cb4575090565b639996b31560e01b60009081526001600160a01b0391909116600452602490fd5b50803b15615cac565b615ce661484f565b8051908115615cf6576020012090565b50507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100548015615d235790565b507fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47090565b615d50614942565b8051908115615d60576020012090565b50507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d101548015615d235790565b60f81c602f811180615df5575b15615da957602f190160ff1690565b6060811180615deb575b15615dc2576056190160ff1690565b6040811180615de1575b15615ddb576036190160ff1690565b5060ff90565b5060478110615dcc565b5060678110615db3565b50603a8110615d9a56feb93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c79037c712897014dbe49c045ef1299aa2d5f9e67e48eea4403efa21f1e0f3ac0cb01b93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c7901360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcb93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c7905b93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c7900f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00b93e2841340255f69de4f9300770e3cc1894dc081e8bf6d34a78e9ac897c7902a164736f6c634300081e000a";
2250
+ const isSuperArgs = (xs) => xs.length > 1;
2251
+ class Governance__factory extends ethers_1.ContractFactory {
2252
+ constructor(...args) {
2253
+ if (isSuperArgs(args)) {
2254
+ super(...args);
2255
+ }
2256
+ else {
2257
+ super(_abi, _bytecode, args[0]);
2258
+ }
2259
+ this.contractName = "Governance";
2260
+ }
2261
+ getDeployTransaction(overrides) {
2262
+ return super.getDeployTransaction(overrides || {});
2263
+ }
2264
+ deploy(overrides) {
2265
+ return super.deploy(overrides || {});
2266
+ }
2267
+ connect(runner) {
2268
+ return super.connect(runner);
2269
+ }
2270
+ static contractName;
2271
+ contractName;
2272
+ static bytecode = _bytecode;
2273
+ static abi = _abi;
2274
+ static createInterface() {
2275
+ return new ethers_1.Interface(_abi);
2276
+ }
2277
+ static connect(address, runner) {
2278
+ return new ethers_1.Contract(address, _abi, runner);
2279
+ }
2280
+ }
2281
+ exports.Governance__factory = Governance__factory;