@etherisc/gif-next 0.0.2-d3543ee-217 → 0.0.2-d408403-475

Sign up to get free protection for your applications and to get access to all the features.
Files changed (361) hide show
  1. package/README.md +125 -6
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/components/{Component.sol/Component.json → BaseComponent.sol/BaseComponent.json} +26 -57
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +405 -0
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  7. package/artifacts/contracts/{instance/component/IComponent.sol/IComponentContract.json → components/IBaseComponent.sol/IBaseComponent.json} +26 -57
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IDistributionComponent.sol/IDistributionComponent.json} +162 -77
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +487 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +370 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +290 -40
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +167 -69
  18. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
  20. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
  22. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
  24. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
  26. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  34. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  36. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  37. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  38. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  39. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  40. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  41. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
  42. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  43. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
  44. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  45. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1148 -620
  46. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
  47. package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
  48. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  49. package/artifacts/contracts/instance/Instance.sol/Instance.json +1457 -797
  50. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{component/ComponentModule.sol/ComponentModule.json → base/ComponentServiceBase.sol/ComponentServiceBase.json} +133 -132
  52. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  53. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  54. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  55. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +560 -0
  56. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  57. package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  58. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
  59. package/artifacts/contracts/instance/base/IService.sol/IService.json +300 -0
  60. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +376 -0
  62. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +710 -0
  64. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  65. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  66. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
  67. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.json +10 -0
  68. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  69. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +300 -0
  70. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
  71. package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
  72. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
  73. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
  74. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
  76. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
  77. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +297 -0
  78. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
  79. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
  80. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
  81. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +297 -0
  82. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  83. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +117 -0
  84. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
  85. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
  86. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  87. package/artifacts/contracts/instance/{product/IProductService.sol/IProductService.json → module/component/IComponent.sol/IComponentModule.json} +51 -61
  88. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
  89. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
  90. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
  91. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.json +10 -0
  92. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
  93. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +10 -0
  94. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  95. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
  96. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  97. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +147 -117
  98. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  99. package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +148 -118
  100. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  101. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
  102. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  103. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPoolModule.json +67 -52
  104. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  105. package/artifacts/contracts/instance/{pool → module/pool}/PoolModule.sol/PoolModule.json +51 -62
  106. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
  107. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.json +10 -0
  108. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +113 -0
  110. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
  111. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +131 -0
  112. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
  113. package/artifacts/contracts/instance/{treasury → module/treasury}/ITreasury.sol/ITreasury.json +1 -1
  114. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
  115. package/artifacts/contracts/instance/{treasury → module/treasury}/ITreasury.sol/ITreasuryModule.json +278 -257
  116. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  117. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
  118. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
  119. package/artifacts/contracts/instance/{treasury → module/treasury}/TreasuryModule.sol/TreasuryModule.json +278 -257
  120. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  121. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +531 -0
  122. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  123. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +420 -0
  124. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  125. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +364 -0
  126. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  127. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +325 -0
  128. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  129. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +440 -0
  130. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  131. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +630 -0
  132. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  133. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +543 -0
  134. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  135. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +858 -0
  136. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  137. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +65 -2
  138. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  139. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  140. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +147 -30
  141. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  142. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +24 -0
  143. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  144. package/artifacts/contracts/registry/Registry.sol/Registry.json +241 -25
  145. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  146. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  147. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +4 -0
  148. package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
  149. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  150. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegisterable.sol}/IRegisterable.json +16 -61
  151. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  152. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +164 -0
  153. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  154. package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +16 -61
  155. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  156. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +164 -0
  157. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +4 -0
  158. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +405 -0
  159. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  160. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  161. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +4 -0
  162. package/artifacts/contracts/test/TestPool.sol/TestPool.json +578 -0
  163. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
  164. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +575 -0
  165. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  166. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +137 -0
  167. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  168. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  169. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  170. package/artifacts/contracts/test/TestService.sol/TestService.json +379 -0
  171. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  172. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -0
  173. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  174. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  175. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  176. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +206 -0
  177. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  178. package/artifacts/contracts/test/Usdc.sol/USDC.json +338 -0
  179. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  180. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  181. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  182. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
  183. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  184. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  185. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  186. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  187. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  188. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +111 -0
  189. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  190. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
  191. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  192. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  193. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  194. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  195. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
  196. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -0
  197. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  198. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  199. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  200. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +30 -0
  201. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  202. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  203. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  204. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +64 -2
  205. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
  206. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +88 -62
  207. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  208. package/artifacts/contracts/types/Version.sol/VersionLib.json +139 -0
  209. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  210. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
  211. package/contracts/components/BaseComponent.sol +94 -0
  212. package/contracts/components/Distribution.sol +132 -0
  213. package/contracts/components/IBaseComponent.sol +19 -0
  214. package/contracts/components/IDistributionComponent.sol +48 -0
  215. package/contracts/components/IPoolComponent.sol +71 -0
  216. package/contracts/components/IProductComponent.sol +38 -0
  217. package/contracts/components/Pool.sol +199 -16
  218. package/contracts/components/Product.sol +169 -31
  219. package/contracts/instance/IInstance.sol +39 -11
  220. package/contracts/instance/IInstanceLinked.sol +8 -0
  221. package/contracts/instance/Instance.sol +51 -49
  222. package/contracts/instance/base/ComponentServiceBase.sol +42 -0
  223. package/contracts/instance/base/IInstanceBase.sol +22 -0
  224. package/contracts/instance/base/IKeyValueStore.sol +50 -0
  225. package/contracts/instance/{lifecycle → base}/ILifecycle.sol +4 -21
  226. package/contracts/instance/base/IService.sol +15 -0
  227. package/contracts/instance/base/InstanceBase.sol +91 -0
  228. package/contracts/instance/base/KeyValueStore.sol +161 -0
  229. package/contracts/instance/base/Lifecycle.sol +100 -0
  230. package/contracts/instance/base/ModuleBase.sol +57 -0
  231. package/contracts/instance/base/ServiceBase.sol +37 -0
  232. package/contracts/instance/module/access/Access.sol +149 -0
  233. package/contracts/instance/module/access/IAccess.sol +53 -0
  234. package/contracts/instance/module/bundle/BundleModule.sol +134 -0
  235. package/contracts/instance/module/bundle/IBundle.sol +53 -0
  236. package/contracts/instance/module/component/ComponentModule.sol +70 -0
  237. package/contracts/instance/module/component/IComponent.sol +28 -0
  238. package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
  239. package/contracts/instance/module/distribution/IDistribution.sol +10 -0
  240. package/contracts/instance/module/policy/IPolicy.sol +63 -0
  241. package/contracts/instance/module/policy/PolicyModule.sol +91 -0
  242. package/contracts/instance/module/pool/IPoolModule.sol +40 -0
  243. package/contracts/instance/module/pool/PoolModule.sol +90 -0
  244. package/contracts/instance/module/risk/IRisk.sol +26 -0
  245. package/contracts/instance/module/risk/RiskModule.sol +62 -0
  246. package/contracts/instance/module/treasury/ITreasury.sol +82 -0
  247. package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
  248. package/contracts/instance/module/treasury/TreasuryModule.sol +138 -0
  249. package/contracts/instance/service/ComponentOwnerService.sol +157 -0
  250. package/contracts/instance/service/DistributionService.sol +59 -0
  251. package/contracts/instance/service/IComponentOwnerService.sol +22 -0
  252. package/contracts/instance/service/IDistributionService.sol +12 -0
  253. package/contracts/instance/service/IPoolService.sol +37 -0
  254. package/contracts/instance/service/IProductService.sol +107 -0
  255. package/contracts/instance/service/PoolService.sol +149 -0
  256. package/contracts/instance/service/ProductService.sol +509 -0
  257. package/contracts/registry/ChainNft.sol +61 -37
  258. package/contracts/registry/IRegistry.sol +24 -34
  259. package/contracts/registry/IRegistryLinked.sol +8 -0
  260. package/contracts/registry/Registry.sol +285 -85
  261. package/contracts/shared/ERC165.sol +21 -0
  262. package/contracts/shared/IOwnable.sol +6 -0
  263. package/contracts/shared/IRegisterable.sol +24 -0
  264. package/contracts/shared/IVersionable.sol +52 -0
  265. package/contracts/shared/Registerable.sol +86 -0
  266. package/contracts/shared/Versionable.sol +89 -0
  267. package/contracts/test/TestDistribution.sol +21 -0
  268. package/contracts/test/TestFee.sol +25 -0
  269. package/contracts/test/TestPool.sol +25 -0
  270. package/contracts/test/TestProduct.sol +72 -0
  271. package/contracts/test/TestRegisterable.sol +19 -0
  272. package/contracts/test/TestRoleId.sol +14 -0
  273. package/contracts/test/TestService.sol +32 -0
  274. package/contracts/test/TestToken.sol +26 -0
  275. package/contracts/test/TestVersion.sol +44 -0
  276. package/contracts/test/TestVersionable.sol +17 -0
  277. package/contracts/test/Usdc.sol +26 -0
  278. package/contracts/types/AddressSet.sol +58 -0
  279. package/contracts/types/Fee.sol +44 -20
  280. package/contracts/types/Key32.sol +45 -0
  281. package/contracts/types/NftId.sol +22 -1
  282. package/contracts/types/NftIdSet.sol +60 -0
  283. package/contracts/types/ObjectType.sol +37 -13
  284. package/contracts/types/ReferralId.sol +48 -0
  285. package/contracts/types/RiskId.sol +43 -0
  286. package/contracts/types/RoleId.sol +38 -0
  287. package/contracts/types/StateId.sol +13 -3
  288. package/contracts/types/Timestamp.sol +22 -1
  289. package/contracts/types/UFixed.sol +26 -23
  290. package/contracts/types/Version.sol +95 -0
  291. package/package.json +12 -4
  292. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  293. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  294. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  295. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  296. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  297. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
  298. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  299. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  300. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  301. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  302. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  303. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  304. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  305. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  306. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  307. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
  308. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  309. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  310. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  311. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
  312. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  313. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
  314. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  315. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  316. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  317. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  318. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  319. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  320. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  321. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  322. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  323. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  324. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  325. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  326. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  327. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  328. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  329. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  330. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  331. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  332. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
  333. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  334. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  335. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  336. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
  337. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  338. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  339. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  340. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  341. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  342. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  343. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  344. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  345. package/contracts/components/Component.sol +0 -77
  346. package/contracts/components/IPool.sol +0 -15
  347. package/contracts/components/IProduct.sol +0 -16
  348. package/contracts/instance/access/Access.sol +0 -165
  349. package/contracts/instance/access/IAccess.sol +0 -63
  350. package/contracts/instance/component/ComponentModule.sol +0 -274
  351. package/contracts/instance/component/IComponent.sol +0 -74
  352. package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
  353. package/contracts/instance/policy/IPolicy.sol +0 -50
  354. package/contracts/instance/policy/PolicyModule.sol +0 -114
  355. package/contracts/instance/pool/IPoolModule.sol +0 -23
  356. package/contracts/instance/pool/PoolModule.sol +0 -81
  357. package/contracts/instance/product/IProductService.sol +0 -36
  358. package/contracts/instance/product/ProductService.sol +0 -136
  359. package/contracts/instance/treasury/ITreasury.sol +0 -91
  360. package/contracts/instance/treasury/TokenHandler.sol +0 -24
  361. package/contracts/instance/treasury/TreasuryModule.sol +0 -168
@@ -0,0 +1,543 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PoolService",
4
+ "sourceName": "contracts/instance/service/PoolService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "registry",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "NftId",
15
+ "name": "registryNftId",
16
+ "type": "uint96"
17
+ }
18
+ ],
19
+ "stateMutability": "nonpayable",
20
+ "type": "constructor"
21
+ },
22
+ {
23
+ "anonymous": false,
24
+ "inputs": [
25
+ {
26
+ "indexed": false,
27
+ "internalType": "Version",
28
+ "name": "version",
29
+ "type": "uint24"
30
+ },
31
+ {
32
+ "indexed": false,
33
+ "internalType": "address",
34
+ "name": "implementation",
35
+ "type": "address"
36
+ },
37
+ {
38
+ "indexed": false,
39
+ "internalType": "address",
40
+ "name": "activatedBy",
41
+ "type": "address"
42
+ }
43
+ ],
44
+ "name": "LogVersionableActivated",
45
+ "type": "event"
46
+ },
47
+ {
48
+ "inputs": [],
49
+ "name": "NAME",
50
+ "outputs": [
51
+ {
52
+ "internalType": "string",
53
+ "name": "",
54
+ "type": "string"
55
+ }
56
+ ],
57
+ "stateMutability": "view",
58
+ "type": "function"
59
+ },
60
+ {
61
+ "inputs": [
62
+ {
63
+ "internalType": "address",
64
+ "name": "implementation",
65
+ "type": "address"
66
+ },
67
+ {
68
+ "internalType": "address",
69
+ "name": "activatedBy",
70
+ "type": "address"
71
+ }
72
+ ],
73
+ "name": "activate",
74
+ "outputs": [],
75
+ "stateMutability": "nonpayable",
76
+ "type": "function"
77
+ },
78
+ {
79
+ "inputs": [
80
+ {
81
+ "internalType": "address",
82
+ "name": "owner",
83
+ "type": "address"
84
+ },
85
+ {
86
+ "components": [
87
+ {
88
+ "internalType": "UFixed",
89
+ "name": "fractionalFee",
90
+ "type": "uint256"
91
+ },
92
+ {
93
+ "internalType": "uint256",
94
+ "name": "fixedFee",
95
+ "type": "uint256"
96
+ }
97
+ ],
98
+ "internalType": "struct Fee",
99
+ "name": "fee",
100
+ "type": "tuple"
101
+ },
102
+ {
103
+ "internalType": "uint256",
104
+ "name": "stakingAmount",
105
+ "type": "uint256"
106
+ },
107
+ {
108
+ "internalType": "uint256",
109
+ "name": "lifetime",
110
+ "type": "uint256"
111
+ },
112
+ {
113
+ "internalType": "bytes",
114
+ "name": "filter",
115
+ "type": "bytes"
116
+ }
117
+ ],
118
+ "name": "createBundle",
119
+ "outputs": [
120
+ {
121
+ "internalType": "NftId",
122
+ "name": "bundleNftId",
123
+ "type": "uint96"
124
+ }
125
+ ],
126
+ "stateMutability": "nonpayable",
127
+ "type": "function"
128
+ },
129
+ {
130
+ "inputs": [],
131
+ "name": "getData",
132
+ "outputs": [
133
+ {
134
+ "internalType": "bytes",
135
+ "name": "data",
136
+ "type": "bytes"
137
+ }
138
+ ],
139
+ "stateMutability": "view",
140
+ "type": "function"
141
+ },
142
+ {
143
+ "inputs": [],
144
+ "name": "getMajorVersion",
145
+ "outputs": [
146
+ {
147
+ "internalType": "VersionPart",
148
+ "name": "majorVersion",
149
+ "type": "uint8"
150
+ }
151
+ ],
152
+ "stateMutability": "view",
153
+ "type": "function"
154
+ },
155
+ {
156
+ "inputs": [],
157
+ "name": "getName",
158
+ "outputs": [
159
+ {
160
+ "internalType": "string",
161
+ "name": "name",
162
+ "type": "string"
163
+ }
164
+ ],
165
+ "stateMutability": "pure",
166
+ "type": "function"
167
+ },
168
+ {
169
+ "inputs": [],
170
+ "name": "getNftId",
171
+ "outputs": [
172
+ {
173
+ "internalType": "NftId",
174
+ "name": "nftId",
175
+ "type": "uint96"
176
+ }
177
+ ],
178
+ "stateMutability": "view",
179
+ "type": "function"
180
+ },
181
+ {
182
+ "inputs": [],
183
+ "name": "getOwner",
184
+ "outputs": [
185
+ {
186
+ "internalType": "address",
187
+ "name": "owner",
188
+ "type": "address"
189
+ }
190
+ ],
191
+ "stateMutability": "view",
192
+ "type": "function"
193
+ },
194
+ {
195
+ "inputs": [],
196
+ "name": "getParentNftId",
197
+ "outputs": [
198
+ {
199
+ "internalType": "NftId",
200
+ "name": "nftId",
201
+ "type": "uint96"
202
+ }
203
+ ],
204
+ "stateMutability": "view",
205
+ "type": "function"
206
+ },
207
+ {
208
+ "inputs": [],
209
+ "name": "getRegistry",
210
+ "outputs": [
211
+ {
212
+ "internalType": "contract IRegistry",
213
+ "name": "registry",
214
+ "type": "address"
215
+ }
216
+ ],
217
+ "stateMutability": "view",
218
+ "type": "function"
219
+ },
220
+ {
221
+ "inputs": [],
222
+ "name": "getType",
223
+ "outputs": [
224
+ {
225
+ "internalType": "ObjectType",
226
+ "name": "",
227
+ "type": "uint8"
228
+ }
229
+ ],
230
+ "stateMutability": "pure",
231
+ "type": "function"
232
+ },
233
+ {
234
+ "inputs": [],
235
+ "name": "getVersion",
236
+ "outputs": [
237
+ {
238
+ "internalType": "Version",
239
+ "name": "",
240
+ "type": "uint24"
241
+ }
242
+ ],
243
+ "stateMutability": "pure",
244
+ "type": "function"
245
+ },
246
+ {
247
+ "inputs": [
248
+ {
249
+ "internalType": "uint256",
250
+ "name": "idx",
251
+ "type": "uint256"
252
+ }
253
+ ],
254
+ "name": "getVersion",
255
+ "outputs": [
256
+ {
257
+ "internalType": "Version",
258
+ "name": "",
259
+ "type": "uint24"
260
+ }
261
+ ],
262
+ "stateMutability": "view",
263
+ "type": "function"
264
+ },
265
+ {
266
+ "inputs": [],
267
+ "name": "getVersionCount",
268
+ "outputs": [
269
+ {
270
+ "internalType": "uint256",
271
+ "name": "",
272
+ "type": "uint256"
273
+ }
274
+ ],
275
+ "stateMutability": "view",
276
+ "type": "function"
277
+ },
278
+ {
279
+ "inputs": [
280
+ {
281
+ "internalType": "Version",
282
+ "name": "_version",
283
+ "type": "uint24"
284
+ }
285
+ ],
286
+ "name": "getVersionInfo",
287
+ "outputs": [
288
+ {
289
+ "components": [
290
+ {
291
+ "internalType": "Version",
292
+ "name": "version",
293
+ "type": "uint24"
294
+ },
295
+ {
296
+ "internalType": "address",
297
+ "name": "implementation",
298
+ "type": "address"
299
+ },
300
+ {
301
+ "internalType": "address",
302
+ "name": "activatedBy",
303
+ "type": "address"
304
+ },
305
+ {
306
+ "internalType": "Timestamp",
307
+ "name": "activatedAt",
308
+ "type": "uint40"
309
+ },
310
+ {
311
+ "internalType": "Blocknumber",
312
+ "name": "activatedIn",
313
+ "type": "uint32"
314
+ }
315
+ ],
316
+ "internalType": "struct IVersionable.VersionInfo",
317
+ "name": "",
318
+ "type": "tuple"
319
+ }
320
+ ],
321
+ "stateMutability": "view",
322
+ "type": "function"
323
+ },
324
+ {
325
+ "inputs": [
326
+ {
327
+ "internalType": "Version",
328
+ "name": "_version",
329
+ "type": "uint24"
330
+ }
331
+ ],
332
+ "name": "isActivated",
333
+ "outputs": [
334
+ {
335
+ "internalType": "bool",
336
+ "name": "",
337
+ "type": "bool"
338
+ }
339
+ ],
340
+ "stateMutability": "view",
341
+ "type": "function"
342
+ },
343
+ {
344
+ "inputs": [],
345
+ "name": "register",
346
+ "outputs": [
347
+ {
348
+ "internalType": "NftId",
349
+ "name": "nftId",
350
+ "type": "uint96"
351
+ }
352
+ ],
353
+ "stateMutability": "nonpayable",
354
+ "type": "function"
355
+ },
356
+ {
357
+ "inputs": [
358
+ {
359
+ "internalType": "NftId",
360
+ "name": "bundleNftId",
361
+ "type": "uint96"
362
+ },
363
+ {
364
+ "components": [
365
+ {
366
+ "internalType": "UFixed",
367
+ "name": "fractionalFee",
368
+ "type": "uint256"
369
+ },
370
+ {
371
+ "internalType": "uint256",
372
+ "name": "fixedFee",
373
+ "type": "uint256"
374
+ }
375
+ ],
376
+ "internalType": "struct Fee",
377
+ "name": "fee",
378
+ "type": "tuple"
379
+ }
380
+ ],
381
+ "name": "setBundleFee",
382
+ "outputs": [],
383
+ "stateMutability": "nonpayable",
384
+ "type": "function"
385
+ },
386
+ {
387
+ "inputs": [
388
+ {
389
+ "components": [
390
+ {
391
+ "internalType": "UFixed",
392
+ "name": "fractionalFee",
393
+ "type": "uint256"
394
+ },
395
+ {
396
+ "internalType": "uint256",
397
+ "name": "fixedFee",
398
+ "type": "uint256"
399
+ }
400
+ ],
401
+ "internalType": "struct Fee",
402
+ "name": "poolFee",
403
+ "type": "tuple"
404
+ },
405
+ {
406
+ "components": [
407
+ {
408
+ "internalType": "UFixed",
409
+ "name": "fractionalFee",
410
+ "type": "uint256"
411
+ },
412
+ {
413
+ "internalType": "uint256",
414
+ "name": "fixedFee",
415
+ "type": "uint256"
416
+ }
417
+ ],
418
+ "internalType": "struct Fee",
419
+ "name": "stakingFee",
420
+ "type": "tuple"
421
+ },
422
+ {
423
+ "components": [
424
+ {
425
+ "internalType": "UFixed",
426
+ "name": "fractionalFee",
427
+ "type": "uint256"
428
+ },
429
+ {
430
+ "internalType": "uint256",
431
+ "name": "fixedFee",
432
+ "type": "uint256"
433
+ }
434
+ ],
435
+ "internalType": "struct Fee",
436
+ "name": "performanceFee",
437
+ "type": "tuple"
438
+ }
439
+ ],
440
+ "name": "setFees",
441
+ "outputs": [],
442
+ "stateMutability": "nonpayable",
443
+ "type": "function"
444
+ },
445
+ {
446
+ "inputs": [
447
+ {
448
+ "internalType": "bytes4",
449
+ "name": "interfaceId",
450
+ "type": "bytes4"
451
+ }
452
+ ],
453
+ "name": "supportsInterface",
454
+ "outputs": [
455
+ {
456
+ "internalType": "bool",
457
+ "name": "",
458
+ "type": "bool"
459
+ }
460
+ ],
461
+ "stateMutability": "view",
462
+ "type": "function"
463
+ }
464
+ ],
465
+ "bytecode": "0x60e06040523480156200001157600080fd5b50604051620029c4380380620029c483398101604081905262000034916200075f565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff191660011790558181818181816001600160a01b038216620000d25760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5247422d3031303a52454749535452595f5a45524f000000000060448201526064015b60405180910390fd5b6001600160a01b03821660808190526040516301ffc9a760e01b81526306ecd8ef60e01b60048201526301ffc9a790602401602060405180830381865afa15801562000122573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001489190620007b4565b620001965760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a5247422d3031313a4e4f545f52454749535452590000000000006044820152606401620000c9565b6001600160601b03811660a081905260805160405163e74d052f60e01b815260048101929092526001600160a01b03169063e74d052f90602401602060405180830381865afa158015620001ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002149190620007b4565b6200026e5760405162461bcd60e51b815260206004820152602360248201527f4552524f523a5247422d3031323a504152454e545f4e4f545f5245474953544560448201526214915160ea1b6064820152608401620000c9565b3360c052631dfba64760e11b60009081526020527f95e5a2564f7af40498dc043c6da135e06324c5edb1f60c2bf4dcdf2da207fa45805460ff1916600117905550620002be905060003362000342565b631b4612f160e31b60009081526020527ffc58a5a01198e68c5a5d0bcd463f9ab550fc4337b1df271aed6dbb33d25fef25805460ff1916600117905550505050620003156209196b60e61b6200031d60201b60201c565b505062000858565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b60006200034e6200061a565b90506200035b81620006a7565b15620003ba5760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b6064820152608401620000c9565b600254156200047b576002805460009190620003d990600190620007df565b81548110620003ec57620003ec62000801565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1690506200041f82826200074d565b620004795760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b6064820152608401620000c9565b505b60028054600181018255600091909152600a8082047f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b03808616602084015284169082015260608101620005054290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff80841660009081526001602081815260409283902086518154928801516001600160a01b039081166301000000026001600160b81b0319909416919096161791909117815585830151910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d4419906200060d9083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156200067c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006a2919062000817565b905090565b62ffffff81166000908152600160208190526040808320909101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801562000720573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200074691906200083e565b1192915050565b62ffffff808216908316115b92915050565b600080604083850312156200077357600080fd5b82516001600160a01b03811681146200078b57600080fd5b60208401519092506001600160601b0381168114620007a957600080fd5b809150509250929050565b600060208284031215620007c757600080fd5b81518015158114620007d857600080fd5b9392505050565b818103818111156200075957634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000602082840312156200082a57600080fd5b815162ffffff81168114620007d857600080fd5b6000602082840312156200085157600080fd5b5051919050565b60805160a05160c0516120fd620008c76000396000610b1901526000610209015260008181610352015281816105ef015281816108a701528181610a9a01528181610b5c01528181610d1801528181610f17015281816110730152818161116901526115ef01526120fd6000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063636450f5116100ad5780639555c4db116100715780639555c4db146103d3578063a3f4df7e146103e6578063b88da75914610410578063cde749f414610423578063e3458d531461042b57600080fd5b8063636450f51461038a578063644c45e01461039f57806382678766146103a7578063893d20e8146103ba578063946dfcfe146103c257600080fd5b80631aa3a008116100f45780631aa3a008146101e757806331b62a3b146102075780633bc5de301461022d5780634d459c90146102415780635ab1bd531461035057600080fd5b806301ffc9a7146101315780630abd8434146101735780630d8e6e2c1461018657806315dae03e146101a257806317d7de7c146101b7575b600080fd5b61015e61013f36600461174a565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61015e61018136600461178f565b61043e565b61018e6104e1565b60405162ffffff909116815260200161016a565b60285b60405160ff909116815260200161016a565b60408051808201909152600b81526a506f6f6c5365727669636560a81b60208201525b60405161016a91906117fc565b6101ef61056b565b6040516001600160601b03909116815260200161016a565b7f00000000000000000000000000000000000000000000000000000000000000006101ef565b6040805160208101909152600081526101da565b6102f361024f36600461178f565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff908116600090815260016020818152604092839020835160a0810185528154958616815263010000009095046001600160a01b03908116928601929092529091015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00161016a565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b03909116815260200161016a565b61039d6103983660046118fe565b610664565b005b6101ef61088f565b61039d6103b5366004611934565b6108f6565b610372610a78565b60025460405190815260200161016a565b61039d6103e136600461198f565b610bd5565b6101da6040518060400160405280600b81526020016a506f6f6c5365727669636560a81b81525081565b61018e61041e3660046119c8565b610be3565b6101a5610c24565b6101ef6104393660046119e1565b610d01565b62ffffff81166000908152600160208190526040808320909101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af41580156104b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104da9190611a8a565b1192915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105669190611aa3565b905090565b6000610575610a78565b6001600160a01b0316336001600160a01b0316146105da5760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e455200000000000000000060448201526064015b60405180910390fd5b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af1158015610640573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105669190611ad0565b600080610671608c610ece565b604051634793b4ab60e01b81526001600160601b038716600482015291935091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa1580156106c6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106ee9190810190611bba565b80516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561074c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107709190611c8c565b6107bc5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c532d3031303a42554e444c455f554e4b4e4f574e0000000060448201526064016105d1565b825181516107ca91906111ee565b6108215760405162461bcd60e51b815260206004820152602260248201527f4552524f523a504c532d3031313a42554e444c455f504f4f4c5f4d49534d4154604482015261086960f31b60648201526084016105d1565b60208101849052604051637e8a1e3b60e11b81526001600160a01b0383169063fd143c76906108569088908590600401611cae565b600060405180830381600087803b15801561087057600080fd5b505af1158015610884573d6000803e3d6000fd5b505050505050505050565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa158015610640573d6000803e3d6000fd5b600080610903608c610ece565b8151604051639ae31ff560e01b81526001600160601b03909116600482015291935091506000906001600160a01b03831690639ae31ff590602401602060405180830381865afa15801561095b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097f9190611ad0565b60405163f2b246c360e01b81526001600160601b03821660048201529091506000906001600160a01b0384169063f2b246c3906024016101e060405180830381865afa1580156109d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f79190611d68565b60a0810188905260c0810187905260e081018690526040516306a5298b60e01b81529091506001600160a01b038416906306a5298b90610a3d9085908590600401611e27565b600060405180830381600087803b158015610a5757600080fd5b505af1158015610a6b573d6000803e3d6000fd5b5050505050505050505050565b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa158015610ae1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b059190611ad0565b9050610b128160006111ee565b15610b3e577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa158015610bab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcf9190611f0e565b91505090565b610bdf8282611204565b5050565b600060028281548110610bf857610bf8611f2b565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000306001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c889190611aa3565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015610cdd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105669190611f50565b60008080610d0f608c610ece565b815191935091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316635ef14b5e8260dc6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526001600160a01b038d166044820152608060648201526000608482015260a4016020604051808303816000875af1158015610db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd79190611ad0565b6040516346aea9b760e11b81529094506001600160a01b03831690638d5d536e90610e1290879085908e908e908e908e908e90600401611f6d565b600060405180830381600087803b158015610e2c57600080fd5b505af1158015610e40573d6000803e3d6000fd5b5050604051639845743760e01b81526001600160601b03808816600483015284166024820152604481018b90526001600160a01b038516925063984574379150606401600060405180830381600087803b158015610e9d57600080fd5b505af1158015610eb1573d6000803e3d6000fd5b50505050610ec18282868b6114d2565b5050509695505050505050565b6040805160c08101825260008082526020820181905281830181905260608083018290526080830182905260a08301529151636939560f60e11b815233600482015290919081907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa158015610f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8a9190611ad0565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610fe5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110099190611c8c565b6110555760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e00000000000000000060448201526064016105d1565b6040516305247a1760e51b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a48f42e090602401600060405180830381865afa1580156110c2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110ea9190810190611fde565b925061110083604001518560ff90811691161490565b6111425760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b60448201526064016105d1565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a48f42e090602401600060405180830381865afa1580156111b8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111e09190810190611fde565b606001519395939450505050565b6001600160601b03828116908216145b92915050565b600061120e6104e1565b90506112198161043e565b156112765760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b60648201526084016105d1565b60025415611335576002805460009190611292906001906120a6565b815481106112a2576112a2611f2b565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1690506112db828262ffffff90811691161190565b6113335760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b60648201526084016105d1565b505b60028054600181018255600091909152600a8082047f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020840152841690820152606081016113be4290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff80841660009081526001602081815260409283902086518154928801516001600160a01b039081166301000000026001600160b81b0319909416919096161791909117815585830151910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d4419906114c59083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b801561174457604051639ae31ff560e01b81526001600160601b03841660048201526000906001600160a01b03861690639ae31ff590602401602060405180830381865afa158015611528573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154c9190611ad0565b60405163a310e2a360e01b81526001600160601b03821660048201529091506000906001600160a01b0387169063a310e2a390602401602060405180830381865afa15801561159f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c39190611f0e565b60405163df33330b60e01b81526001600160601b03861660048201529091506000906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063df33330b90602401602060405180830381865afa158015611636573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165a9190611f0e565b604051630d48c43b60e11b81526001600160601b03881660048201529091506000906001600160a01b03891690631a91887690602401602060405180830381865afa1580156116ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d19190611f0e565b6040516317d5759960e31b81526001600160a01b0384811660048301528083166024830152604482018890529192509084169063beabacc890606401600060405180830381600087803b15801561172757600080fd5b505af115801561173b573d6000803e3d6000fd5b50505050505050505b50505050565b60006020828403121561175c57600080fd5b81356001600160e01b03198116811461177457600080fd5b9392505050565b62ffffff8116811461178c57600080fd5b50565b6000602082840312156117a157600080fd5b81356117748161177b565b60005b838110156117c75781810151838201526020016117af565b50506000910152565b600081518084526117e88160208601602086016117ac565b601f01601f19169290920160200192915050565b60208152600061177460208301846117d0565b6001600160601b038116811461178c57600080fd5b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff8111828210171561185d5761185d611824565b60405290565b604051610100810167ffffffffffffffff8111828210171561185d5761185d611824565b604051610120810167ffffffffffffffff8111828210171561185d5761185d611824565b60405160c0810167ffffffffffffffff8111828210171561185d5761185d611824565b6000604082840312156118e057600080fd5b6118e861183a565b9050813581526020820135602082015292915050565b6000806060838503121561191157600080fd5b823561191c8161180f565b915061192b84602085016118ce565b90509250929050565b600080600060c0848603121561194957600080fd5b61195385856118ce565b925061196285604086016118ce565b915061197185608086016118ce565b90509250925092565b6001600160a01b038116811461178c57600080fd5b600080604083850312156119a257600080fd5b82356119ad8161197a565b915060208301356119bd8161197a565b809150509250929050565b6000602082840312156119da57600080fd5b5035919050565b60008060008060008060c087890312156119fa57600080fd5b8635611a058161197a565b9550611a1488602089016118ce565b9450606087013593506080870135925060a087013567ffffffffffffffff80821115611a3f57600080fd5b818901915089601f830112611a5357600080fd5b813581811115611a6257600080fd5b8a6020828501011115611a7457600080fd5b6020830194508093505050509295509295509295565b600060208284031215611a9c57600080fd5b5051919050565b600060208284031215611ab557600080fd5b81516117748161177b565b8051611acb8161180f565b919050565b600060208284031215611ae257600080fd5b81516117748161180f565b600060408284031215611aff57600080fd5b611b0761183a565b9050815181526020820151602082015292915050565b600082601f830112611b2e57600080fd5b815167ffffffffffffffff80821115611b4957611b49611824565b604051601f8301601f19908116603f01168101908282118183101715611b7157611b71611824565b81604052838152866020858801011115611b8a57600080fd5b611b9b8460208301602089016117ac565b9695505050505050565b805164ffffffffff81168114611acb57600080fd5b600060208284031215611bcc57600080fd5b815167ffffffffffffffff80821115611be457600080fd5b908301906101208286031215611bf957600080fd5b611c01611863565b611c0a83611ac0565b8152611c198660208501611aed565b6020820152606083015182811115611c3057600080fd5b611c3c87828601611b1d565b6040830152506080830151606082015260a0830151608082015260c083015160a0820152611c6c60e08401611ba5565b60c0820152611c7e6101008401611ba5565b60e082015295945050505050565b600060208284031215611c9e57600080fd5b8151801515811461177457600080fd5b60006001600160601b03808516835260406020840152808451166040840152506020830151611cea606084018280518252602090810151910152565b5060408301516101208060a0850152611d076101608501836117d0565b9150606085015160c0850152608085015160e085015260a085015161010085015260c0850151611d3f8286018264ffffffffff169052565b505060e084015164ffffffffff811661014085015250949350505050565b8051611acb8161197a565b60006101e08284031215611d7b57600080fd5b611d83611887565b611d8c83611ac0565b8152611d9a60208401611ac0565b6020820152611dab60408401611d5d565b6040820152611dbd8460608501611aed565b6060820152611dcf8460a08501611aed565b6080820152611de18460e08501611aed565b60a0820152611df4846101208501611aed565b60c0820152611e07846101608501611aed565b60e0820152611e1a846101a08501611aed565b6101008201529392505050565b6001600160601b038381168252825116602080830191909152820151610200820190611e5e60408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015180516080840152602081015160a0840152506080830151805160c0840152602081015160e08401525060a0830151610100611ec08185018380518252602090810151910152565b60c0850151805161014086015260209081015161016086015260e086015180516101808701528101516101a086015294015180516101c0850152909301516101e09092019190915292915050565b600060208284031215611f2057600080fd5b81516117748161197a565b634e487b7160e01b600052603260045260246000fd5b60ff8116811461178c57600080fd5b600060208284031215611f6257600080fd5b815161177481611f41565b6001600160601b038881168252871660208201526000611f9a604083018880518252602090810151910152565b8560808301528460a083015260e060c08301528260e08301526101008385828501376000838501820152601f909301601f1916909101909101979650505050505050565b600060208284031215611ff057600080fd5b815167ffffffffffffffff8082111561200857600080fd5b9083019060c0828603121561201c57600080fd5b6120246118ab565b825161202f8161180f565b8152602083015161203f8161180f565b6020820152604083015161205281611f41565b604082015261206360608401611d5d565b606082015261207460808401611d5d565b608082015260a08301518281111561208b57600080fd5b61209787828601611b1d565b60a08301525095945050505050565b818103818111156111fe57634e487b7160e01b600052601160045260246000fdfea2646970667358221220149e51fe082c36da0dd3edf0db5bd9e53b51dc44c1b5911743b07384af4eed7664736f6c63430008140033",
466
+ "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063636450f5116100ad5780639555c4db116100715780639555c4db146103d3578063a3f4df7e146103e6578063b88da75914610410578063cde749f414610423578063e3458d531461042b57600080fd5b8063636450f51461038a578063644c45e01461039f57806382678766146103a7578063893d20e8146103ba578063946dfcfe146103c257600080fd5b80631aa3a008116100f45780631aa3a008146101e757806331b62a3b146102075780633bc5de301461022d5780634d459c90146102415780635ab1bd531461035057600080fd5b806301ffc9a7146101315780630abd8434146101735780630d8e6e2c1461018657806315dae03e146101a257806317d7de7c146101b7575b600080fd5b61015e61013f36600461174a565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61015e61018136600461178f565b61043e565b61018e6104e1565b60405162ffffff909116815260200161016a565b60285b60405160ff909116815260200161016a565b60408051808201909152600b81526a506f6f6c5365727669636560a81b60208201525b60405161016a91906117fc565b6101ef61056b565b6040516001600160601b03909116815260200161016a565b7f00000000000000000000000000000000000000000000000000000000000000006101ef565b6040805160208101909152600081526101da565b6102f361024f36600461178f565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff908116600090815260016020818152604092839020835160a0810185528154958616815263010000009095046001600160a01b03908116928601929092529091015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00161016a565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b03909116815260200161016a565b61039d6103983660046118fe565b610664565b005b6101ef61088f565b61039d6103b5366004611934565b6108f6565b610372610a78565b60025460405190815260200161016a565b61039d6103e136600461198f565b610bd5565b6101da6040518060400160405280600b81526020016a506f6f6c5365727669636560a81b81525081565b61018e61041e3660046119c8565b610be3565b6101a5610c24565b6101ef6104393660046119e1565b610d01565b62ffffff81166000908152600160208190526040808320909101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af41580156104b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104da9190611a8a565b1192915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105669190611aa3565b905090565b6000610575610a78565b6001600160a01b0316336001600160a01b0316146105da5760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e455200000000000000000060448201526064015b60405180910390fd5b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af1158015610640573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105669190611ad0565b600080610671608c610ece565b604051634793b4ab60e01b81526001600160601b038716600482015291935091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa1580156106c6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106ee9190810190611bba565b80516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561074c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107709190611c8c565b6107bc5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c532d3031303a42554e444c455f554e4b4e4f574e0000000060448201526064016105d1565b825181516107ca91906111ee565b6108215760405162461bcd60e51b815260206004820152602260248201527f4552524f523a504c532d3031313a42554e444c455f504f4f4c5f4d49534d4154604482015261086960f31b60648201526084016105d1565b60208101849052604051637e8a1e3b60e11b81526001600160a01b0383169063fd143c76906108569088908590600401611cae565b600060405180830381600087803b15801561087057600080fd5b505af1158015610884573d6000803e3d6000fd5b505050505050505050565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa158015610640573d6000803e3d6000fd5b600080610903608c610ece565b8151604051639ae31ff560e01b81526001600160601b03909116600482015291935091506000906001600160a01b03831690639ae31ff590602401602060405180830381865afa15801561095b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097f9190611ad0565b60405163f2b246c360e01b81526001600160601b03821660048201529091506000906001600160a01b0384169063f2b246c3906024016101e060405180830381865afa1580156109d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f79190611d68565b60a0810188905260c0810187905260e081018690526040516306a5298b60e01b81529091506001600160a01b038416906306a5298b90610a3d9085908590600401611e27565b600060405180830381600087803b158015610a5757600080fd5b505af1158015610a6b573d6000803e3d6000fd5b5050505050505050505050565b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa158015610ae1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b059190611ad0565b9050610b128160006111ee565b15610b3e577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa158015610bab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcf9190611f0e565b91505090565b610bdf8282611204565b5050565b600060028281548110610bf857610bf8611f2b565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000306001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c889190611aa3565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015610cdd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105669190611f50565b60008080610d0f608c610ece565b815191935091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316635ef14b5e8260dc6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526001600160a01b038d166044820152608060648201526000608482015260a4016020604051808303816000875af1158015610db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd79190611ad0565b6040516346aea9b760e11b81529094506001600160a01b03831690638d5d536e90610e1290879085908e908e908e908e908e90600401611f6d565b600060405180830381600087803b158015610e2c57600080fd5b505af1158015610e40573d6000803e3d6000fd5b5050604051639845743760e01b81526001600160601b03808816600483015284166024820152604481018b90526001600160a01b038516925063984574379150606401600060405180830381600087803b158015610e9d57600080fd5b505af1158015610eb1573d6000803e3d6000fd5b50505050610ec18282868b6114d2565b5050509695505050505050565b6040805160c08101825260008082526020820181905281830181905260608083018290526080830182905260a08301529151636939560f60e11b815233600482015290919081907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa158015610f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8a9190611ad0565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610fe5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110099190611c8c565b6110555760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e00000000000000000060448201526064016105d1565b6040516305247a1760e51b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a48f42e090602401600060405180830381865afa1580156110c2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110ea9190810190611fde565b925061110083604001518560ff90811691161490565b6111425760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b60448201526064016105d1565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a48f42e090602401600060405180830381865afa1580156111b8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111e09190810190611fde565b606001519395939450505050565b6001600160601b03828116908216145b92915050565b600061120e6104e1565b90506112198161043e565b156112765760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b60648201526084016105d1565b60025415611335576002805460009190611292906001906120a6565b815481106112a2576112a2611f2b565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1690506112db828262ffffff90811691161190565b6113335760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b60648201526084016105d1565b505b60028054600181018255600091909152600a8082047f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020840152841690820152606081016113be4290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff80841660009081526001602081815260409283902086518154928801516001600160a01b039081166301000000026001600160b81b0319909416919096161791909117815585830151910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d4419906114c59083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b801561174457604051639ae31ff560e01b81526001600160601b03841660048201526000906001600160a01b03861690639ae31ff590602401602060405180830381865afa158015611528573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154c9190611ad0565b60405163a310e2a360e01b81526001600160601b03821660048201529091506000906001600160a01b0387169063a310e2a390602401602060405180830381865afa15801561159f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c39190611f0e565b60405163df33330b60e01b81526001600160601b03861660048201529091506000906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063df33330b90602401602060405180830381865afa158015611636573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165a9190611f0e565b604051630d48c43b60e11b81526001600160601b03881660048201529091506000906001600160a01b03891690631a91887690602401602060405180830381865afa1580156116ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d19190611f0e565b6040516317d5759960e31b81526001600160a01b0384811660048301528083166024830152604482018890529192509084169063beabacc890606401600060405180830381600087803b15801561172757600080fd5b505af115801561173b573d6000803e3d6000fd5b50505050505050505b50505050565b60006020828403121561175c57600080fd5b81356001600160e01b03198116811461177457600080fd5b9392505050565b62ffffff8116811461178c57600080fd5b50565b6000602082840312156117a157600080fd5b81356117748161177b565b60005b838110156117c75781810151838201526020016117af565b50506000910152565b600081518084526117e88160208601602086016117ac565b601f01601f19169290920160200192915050565b60208152600061177460208301846117d0565b6001600160601b038116811461178c57600080fd5b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff8111828210171561185d5761185d611824565b60405290565b604051610100810167ffffffffffffffff8111828210171561185d5761185d611824565b604051610120810167ffffffffffffffff8111828210171561185d5761185d611824565b60405160c0810167ffffffffffffffff8111828210171561185d5761185d611824565b6000604082840312156118e057600080fd5b6118e861183a565b9050813581526020820135602082015292915050565b6000806060838503121561191157600080fd5b823561191c8161180f565b915061192b84602085016118ce565b90509250929050565b600080600060c0848603121561194957600080fd5b61195385856118ce565b925061196285604086016118ce565b915061197185608086016118ce565b90509250925092565b6001600160a01b038116811461178c57600080fd5b600080604083850312156119a257600080fd5b82356119ad8161197a565b915060208301356119bd8161197a565b809150509250929050565b6000602082840312156119da57600080fd5b5035919050565b60008060008060008060c087890312156119fa57600080fd5b8635611a058161197a565b9550611a1488602089016118ce565b9450606087013593506080870135925060a087013567ffffffffffffffff80821115611a3f57600080fd5b818901915089601f830112611a5357600080fd5b813581811115611a6257600080fd5b8a6020828501011115611a7457600080fd5b6020830194508093505050509295509295509295565b600060208284031215611a9c57600080fd5b5051919050565b600060208284031215611ab557600080fd5b81516117748161177b565b8051611acb8161180f565b919050565b600060208284031215611ae257600080fd5b81516117748161180f565b600060408284031215611aff57600080fd5b611b0761183a565b9050815181526020820151602082015292915050565b600082601f830112611b2e57600080fd5b815167ffffffffffffffff80821115611b4957611b49611824565b604051601f8301601f19908116603f01168101908282118183101715611b7157611b71611824565b81604052838152866020858801011115611b8a57600080fd5b611b9b8460208301602089016117ac565b9695505050505050565b805164ffffffffff81168114611acb57600080fd5b600060208284031215611bcc57600080fd5b815167ffffffffffffffff80821115611be457600080fd5b908301906101208286031215611bf957600080fd5b611c01611863565b611c0a83611ac0565b8152611c198660208501611aed565b6020820152606083015182811115611c3057600080fd5b611c3c87828601611b1d565b6040830152506080830151606082015260a0830151608082015260c083015160a0820152611c6c60e08401611ba5565b60c0820152611c7e6101008401611ba5565b60e082015295945050505050565b600060208284031215611c9e57600080fd5b8151801515811461177457600080fd5b60006001600160601b03808516835260406020840152808451166040840152506020830151611cea606084018280518252602090810151910152565b5060408301516101208060a0850152611d076101608501836117d0565b9150606085015160c0850152608085015160e085015260a085015161010085015260c0850151611d3f8286018264ffffffffff169052565b505060e084015164ffffffffff811661014085015250949350505050565b8051611acb8161197a565b60006101e08284031215611d7b57600080fd5b611d83611887565b611d8c83611ac0565b8152611d9a60208401611ac0565b6020820152611dab60408401611d5d565b6040820152611dbd8460608501611aed565b6060820152611dcf8460a08501611aed565b6080820152611de18460e08501611aed565b60a0820152611df4846101208501611aed565b60c0820152611e07846101608501611aed565b60e0820152611e1a846101a08501611aed565b6101008201529392505050565b6001600160601b038381168252825116602080830191909152820151610200820190611e5e60408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015180516080840152602081015160a0840152506080830151805160c0840152602081015160e08401525060a0830151610100611ec08185018380518252602090810151910152565b60c0850151805161014086015260209081015161016086015260e086015180516101808701528101516101a086015294015180516101c0850152909301516101e09092019190915292915050565b600060208284031215611f2057600080fd5b81516117748161197a565b634e487b7160e01b600052603260045260246000fd5b60ff8116811461178c57600080fd5b600060208284031215611f6257600080fd5b815161177481611f41565b6001600160601b038881168252871660208201526000611f9a604083018880518252602090810151910152565b8560808301528460a083015260e060c08301528260e08301526101008385828501376000838501820152601f909301601f1916909101909101979650505050505050565b600060208284031215611ff057600080fd5b815167ffffffffffffffff8082111561200857600080fd5b9083019060c0828603121561201c57600080fd5b6120246118ab565b825161202f8161180f565b8152602083015161203f8161180f565b6020820152604083015161205281611f41565b604082015261206360608401611d5d565b606082015261207460808401611d5d565b608082015260a08301518281111561208b57600080fd5b61209787828601611b1d565b60a08301525095945050505050565b818103818111156111fe57634e487b7160e01b600052601160045260246000fdfea2646970667358221220149e51fe082c36da0dd3edf0db5bd9e53b51dc44c1b5911743b07384af4eed7664736f6c63430008140033",
467
+ "linkReferences": {
468
+ "contracts/types/Blocknumber.sol": {
469
+ "BlocknumberLib": [
470
+ {
471
+ "length": 20,
472
+ "start": 1765
473
+ },
474
+ {
475
+ "length": 20,
476
+ "start": 3395
477
+ }
478
+ ]
479
+ },
480
+ "contracts/types/NftId.sol": {
481
+ "NftIdLib": [
482
+ {
483
+ "length": 20,
484
+ "start": 4057
485
+ },
486
+ {
487
+ "length": 20,
488
+ "start": 6258
489
+ }
490
+ ]
491
+ },
492
+ "contracts/types/Version.sol": {
493
+ "VersionLib": [
494
+ {
495
+ "length": 20,
496
+ "start": 1601
497
+ },
498
+ {
499
+ "length": 20,
500
+ "start": 3535
501
+ },
502
+ {
503
+ "length": 20,
504
+ "start": 5482
505
+ }
506
+ ]
507
+ }
508
+ },
509
+ "deployedLinkReferences": {
510
+ "contracts/types/Blocknumber.sol": {
511
+ "BlocknumberLib": [
512
+ {
513
+ "length": 20,
514
+ "start": 1148
515
+ }
516
+ ]
517
+ },
518
+ "contracts/types/NftId.sol": {
519
+ "NftIdLib": [
520
+ {
521
+ "length": 20,
522
+ "start": 1810
523
+ },
524
+ {
525
+ "length": 20,
526
+ "start": 4011
527
+ }
528
+ ]
529
+ },
530
+ "contracts/types/Version.sol": {
531
+ "VersionLib": [
532
+ {
533
+ "length": 20,
534
+ "start": 1288
535
+ },
536
+ {
537
+ "length": 20,
538
+ "start": 3235
539
+ }
540
+ ]
541
+ }
542
+ }
543
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/f93a8e80452dc32f10ebad6b13365e96.json"
4
+ }