@etherisc/gif-next 0.0.2-fe77319 → 0.0.2-fe88ad7-208

Sign up to get free protection for your applications and to get access to all the features.
Files changed (441) hide show
  1. package/README.md +364 -8
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +482 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +675 -0
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  7. package/artifacts/contracts/{instance/access/Access.sol/AccessModule.json → components/IBaseComponent.sol/IBaseComponent.json} +217 -220
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +275 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/{instance/pool/PoolModule.sol/PoolModule.json → components/IProductComponent.sol/IProductComponent.json} +81 -86
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +687 -40
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +612 -50
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
  20. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
  22. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
  24. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +4 -0
  25. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +105 -0
  26. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +4 -0
  27. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +105 -0
  28. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +4 -0
  29. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +128 -0
  30. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +4 -0
  31. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +42 -0
  32. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +4 -0
  33. package/artifacts/contracts/experiment/{B.sol → inheritance/B.sol}/B.json +2 -2
  34. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +4 -0
  35. package/artifacts/contracts/experiment/{C.sol → inheritance/C.sol}/C.json +2 -2
  36. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +4 -0
  37. package/artifacts/contracts/experiment/{IA.sol → inheritance/IA.sol}/IA.json +1 -1
  38. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +4 -0
  39. package/artifacts/contracts/experiment/{IA.sol → inheritance/IA.sol}/ISharedA.json +1 -1
  40. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +4 -0
  41. package/artifacts/contracts/experiment/{IB.sol → inheritance/IB.sol}/IB.json +1 -1
  42. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +4 -0
  43. package/artifacts/contracts/experiment/{IC.sol → inheritance/IC.sol}/IC.json +1 -1
  44. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
  45. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  46. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  47. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  48. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  49. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  50. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  51. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  52. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  53. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  54. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +4 -0
  55. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +10 -0
  56. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +4 -0
  57. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +10 -0
  58. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  59. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  60. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  61. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +788 -0
  62. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
  63. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
  64. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  65. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1314 -469
  66. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  67. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +448 -0
  68. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  69. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +570 -0
  70. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  71. package/artifacts/contracts/instance/Instance.sol/Instance.json +2531 -505
  72. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  73. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1047 -0
  74. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +763 -0
  76. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1422 -0
  78. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  79. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +963 -0
  80. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  81. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +460 -0
  82. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  83. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +285 -0
  84. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  85. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +532 -0
  86. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  87. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  88. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  89. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  90. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  91. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
  92. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  93. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
  94. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  96. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  97. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +254 -0
  98. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  99. package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
  100. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  101. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  102. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  103. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  104. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  105. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
  106. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  107. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/ISetup.sol/ISetup.json} +2 -2
  108. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
  110. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +945 -0
  112. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  113. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +432 -0
  114. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +814 -0
  116. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  117. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +693 -0
  118. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  119. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +420 -0
  120. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
  121. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +669 -0
  122. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  123. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
  124. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  125. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
  126. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  127. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +664 -0
  128. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  129. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +499 -0
  130. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  131. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +536 -0
  132. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
  133. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +993 -0
  134. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  135. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +464 -0
  136. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  137. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +727 -0
  138. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  139. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +420 -0
  140. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  141. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +777 -0
  142. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  143. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +420 -0
  144. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +4 -0
  145. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +771 -0
  146. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  147. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +449 -76
  148. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  149. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +976 -0
  150. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  151. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  152. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  153. package/artifacts/contracts/registry/Registry.sol/Registry.json +544 -79
  154. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  155. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
  156. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  157. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1195 -0
  158. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  159. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +451 -0
  160. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  161. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +546 -0
  162. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  163. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +397 -0
  164. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  165. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  166. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  167. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  168. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  169. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
  170. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  171. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +201 -0
  172. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  173. package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
  174. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  175. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  176. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  177. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
  178. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  179. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
  180. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  181. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
  182. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
  183. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
  184. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  185. package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
  186. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  187. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  188. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  189. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  190. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  191. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  192. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  193. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  194. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  195. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
  196. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  197. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  198. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  199. package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
  200. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  201. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
  202. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  203. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  204. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  205. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
  206. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  207. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  208. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  209. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  210. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  211. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  212. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +4 -0
  213. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +10 -0
  214. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  215. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  216. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  217. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  218. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  219. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  220. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +4 -0
  221. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +153 -0
  222. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  223. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
  224. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  225. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  226. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  227. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  228. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  229. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
  230. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  231. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  232. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  233. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  234. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  235. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  236. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  237. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +249 -0
  238. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  239. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  240. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  241. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  242. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  243. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  244. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  245. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
  246. package/contracts/components/BaseComponent.sol +159 -0
  247. package/contracts/components/Distribution.sol +163 -0
  248. package/contracts/components/IBaseComponent.sol +34 -0
  249. package/contracts/components/IDistributionComponent.sol +44 -0
  250. package/contracts/components/IPoolComponent.sol +66 -0
  251. package/contracts/components/IProductComponent.sol +35 -0
  252. package/contracts/components/Pool.sol +260 -18
  253. package/contracts/components/Product.sol +263 -36
  254. package/contracts/experiment/cloning/Cloner.sol +47 -0
  255. package/contracts/experiment/errors/Require.sol +38 -0
  256. package/contracts/experiment/errors/Revert.sol +44 -0
  257. package/contracts/experiment/{A.sol → inheritance/A.sol} +8 -11
  258. package/contracts/experiment/{B.sol → inheritance/B.sol} +10 -5
  259. package/contracts/experiment/{C.sol → inheritance/C.sol} +11 -5
  260. package/contracts/experiment/{IA.sol → inheritance/IA.sol} +2 -7
  261. package/contracts/experiment/{IB.sol → inheritance/IB.sol} +3 -2
  262. package/contracts/experiment/inheritance/IC.sol +12 -0
  263. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  264. package/contracts/experiment/statemachine/ISM.sol +25 -0
  265. package/contracts/experiment/statemachine/SM.sol +57 -0
  266. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  267. package/contracts/experiment/types/TypeA.sol +47 -0
  268. package/contracts/experiment/types/TypeB.sol +29 -0
  269. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +23 -0
  270. package/contracts/instance/BundleManager.sol +129 -0
  271. package/contracts/instance/Cloneable.sol +46 -0
  272. package/contracts/instance/IInstance.sol +57 -15
  273. package/contracts/instance/IInstanceBase.sol +26 -0
  274. package/contracts/instance/IInstanceService.sol +40 -0
  275. package/contracts/instance/Instance.sol +257 -44
  276. package/contracts/instance/InstanceAccessManager.sol +303 -0
  277. package/contracts/instance/InstanceBase.sol +41 -0
  278. package/contracts/instance/InstanceReader.sol +315 -0
  279. package/contracts/instance/InstanceService.sol +350 -0
  280. package/contracts/instance/InstanceServiceManager.sol +54 -0
  281. package/contracts/instance/ObjectManager.sol +101 -0
  282. package/contracts/instance/base/ComponentServiceBase.sol +82 -0
  283. package/contracts/instance/base/IInstanceBase.sol +23 -0
  284. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  285. package/contracts/instance/base/ILifecycle.sol +30 -0
  286. package/contracts/instance/base/KeyValueStore.sol +172 -0
  287. package/contracts/instance/base/Lifecycle.sol +100 -0
  288. package/contracts/instance/module/IAccess.sol +48 -0
  289. package/contracts/instance/module/IBundle.sol +20 -0
  290. package/contracts/instance/module/IDistribution.sol +39 -0
  291. package/contracts/instance/module/IPolicy.sol +45 -0
  292. package/contracts/instance/module/IRisk.sol +11 -0
  293. package/contracts/instance/module/ISetup.sol +46 -0
  294. package/contracts/instance/module/ITreasury.sol +23 -0
  295. package/contracts/instance/service/BundleService.sol +260 -0
  296. package/contracts/instance/service/BundleServiceManager.sol +51 -0
  297. package/contracts/instance/service/ComponentOwnerService.sol +315 -0
  298. package/contracts/instance/service/DistributionService.sol +113 -0
  299. package/contracts/instance/service/DistributionServiceManager.sol +51 -0
  300. package/contracts/instance/service/IBundleService.sol +45 -0
  301. package/contracts/instance/service/IComponentOwnerService.sol +20 -0
  302. package/contracts/instance/service/IDistributionService.sol +12 -0
  303. package/contracts/instance/service/IPolicyService.sol +87 -0
  304. package/contracts/instance/service/IPoolService.sol +20 -0
  305. package/contracts/instance/service/IProductService.sol +40 -0
  306. package/contracts/instance/service/PolicyService.sol +503 -0
  307. package/contracts/instance/service/PolicyServiceManager.sol +54 -0
  308. package/contracts/instance/service/PoolService.sol +124 -0
  309. package/contracts/instance/service/PoolServiceManager.sol +51 -0
  310. package/contracts/instance/service/ProductService.sol +170 -0
  311. package/contracts/instance/service/ProductServiceManager.sol +54 -0
  312. package/contracts/registry/ChainNft.sol +202 -0
  313. package/contracts/registry/IRegistry.sol +78 -53
  314. package/contracts/registry/IRegistryService.sol +58 -0
  315. package/contracts/registry/ITransferInterceptor.sol +6 -0
  316. package/contracts/registry/Registry.sol +329 -130
  317. package/contracts/registry/RegistryAccessManager.sol +210 -0
  318. package/contracts/registry/RegistryService.sol +323 -0
  319. package/contracts/registry/RegistryServiceManager.sol +62 -0
  320. package/contracts/registry/ReleaseManager.sol +348 -0
  321. package/contracts/registry/TokenRegistry.sol +110 -0
  322. package/contracts/shared/ContractDeployerLib.sol +72 -0
  323. package/contracts/shared/ERC165.sol +25 -0
  324. package/contracts/shared/INftOwnable.sol +22 -0
  325. package/contracts/shared/IRegisterable.sol +17 -0
  326. package/contracts/shared/IService.sol +16 -0
  327. package/contracts/shared/IVersionable.sol +96 -0
  328. package/contracts/shared/NftOwnable.sol +134 -0
  329. package/contracts/shared/ProxyManager.sol +94 -0
  330. package/contracts/shared/Registerable.sol +90 -0
  331. package/contracts/shared/RegisterableUpgradable.sol +16 -0
  332. package/contracts/shared/Service.sol +58 -0
  333. package/contracts/shared/TokenHandler.sol +27 -0
  334. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  335. package/contracts/shared/Versionable.sol +147 -0
  336. package/contracts/test/TestFee.sol +25 -0
  337. package/contracts/test/TestRegisterable.sol +18 -0
  338. package/contracts/test/TestRoleId.sol +14 -0
  339. package/contracts/test/TestService.sol +25 -0
  340. package/contracts/test/TestToken.sol +26 -0
  341. package/contracts/test/TestVersion.sol +44 -0
  342. package/contracts/test/TestVersionable.sol +17 -0
  343. package/contracts/test/Usdc.sol +26 -0
  344. package/contracts/types/AddressSet.sol +58 -0
  345. package/contracts/types/Blocknumber.sol +118 -0
  346. package/contracts/types/ChainId.sol +38 -0
  347. package/contracts/types/DistributorType.sol +55 -0
  348. package/contracts/types/Fee.sol +56 -0
  349. package/contracts/types/Key32.sol +50 -0
  350. package/contracts/types/NftId.sol +72 -0
  351. package/contracts/types/NftIdSet.sol +62 -0
  352. package/contracts/types/NumberId.sol +52 -0
  353. package/contracts/types/ObjectType.sol +152 -0
  354. package/contracts/types/Referral.sol +85 -0
  355. package/contracts/types/RiskId.sol +43 -0
  356. package/contracts/types/RoleId.sol +90 -0
  357. package/contracts/types/StateId.sol +105 -0
  358. package/contracts/types/Timestamp.sol +127 -0
  359. package/contracts/types/UFixed.sol +325 -0
  360. package/contracts/types/Version.sol +107 -0
  361. package/package.json +21 -6
  362. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  363. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  364. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  365. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  366. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  367. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
  368. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  369. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  370. package/artifacts/contracts/experiment/A.sol/A.dbg.json +0 -4
  371. package/artifacts/contracts/experiment/A.sol/A.json +0 -128
  372. package/artifacts/contracts/experiment/A.sol/AShared.dbg.json +0 -4
  373. package/artifacts/contracts/experiment/A.sol/AShared.json +0 -42
  374. package/artifacts/contracts/experiment/B.sol/B.dbg.json +0 -4
  375. package/artifacts/contracts/experiment/C.sol/C.dbg.json +0 -4
  376. package/artifacts/contracts/experiment/IA.sol/IA.dbg.json +0 -4
  377. package/artifacts/contracts/experiment/IA.sol/ISharedA.dbg.json +0 -4
  378. package/artifacts/contracts/experiment/IB.sol/IB.dbg.json +0 -4
  379. package/artifacts/contracts/experiment/IC.sol/IC.dbg.json +0 -4
  380. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  381. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  382. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  383. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  384. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  385. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  386. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  387. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  388. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  389. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -327
  390. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  391. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
  392. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  393. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  394. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
  395. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  396. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
  397. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  398. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  399. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  400. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  401. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  402. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  403. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
  404. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  405. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
  406. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  407. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  408. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
  409. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  410. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  411. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  412. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  413. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  414. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  415. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  416. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  417. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
  418. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  419. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  420. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  421. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  422. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  423. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  424. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  425. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  426. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  427. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  428. package/contracts/components/Component.sol +0 -62
  429. package/contracts/components/IPool.sol +0 -9
  430. package/contracts/components/IProduct.sol +0 -11
  431. package/contracts/experiment/IC.sol +0 -11
  432. package/contracts/instance/access/Access.sol +0 -218
  433. package/contracts/instance/access/IAccess.sol +0 -83
  434. package/contracts/instance/component/ComponentModule.sol +0 -259
  435. package/contracts/instance/component/IComponent.sol +0 -94
  436. package/contracts/instance/policy/IPolicy.sol +0 -66
  437. package/contracts/instance/policy/PolicyModule.sol +0 -106
  438. package/contracts/instance/pool/IPoolModule.sol +0 -40
  439. package/contracts/instance/pool/PoolModule.sol +0 -83
  440. package/contracts/instance/product/IProductService.sol +0 -45
  441. package/contracts/instance/product/ProductService.sol +0 -105
@@ -0,0 +1,727 @@
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": "ObjectType",
10
+ "name": "componentType",
11
+ "type": "uint8"
12
+ }
13
+ ],
14
+ "name": "ComponentTypeInvalid",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "registry",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "NftId",
26
+ "name": "nftId",
27
+ "type": "uint96"
28
+ }
29
+ ],
30
+ "name": "ErrorAlreadyLinked",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "componentAddress",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "ErrorComponentServiceBaseComponentLocked",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "contractAddress",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorContractNotRegistered",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "target",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorIAccessTargetLocked",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "account",
71
+ "type": "address"
72
+ }
73
+ ],
74
+ "name": "ErrorNotOwner",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [
79
+ {
80
+ "internalType": "address",
81
+ "name": "registryAddress",
82
+ "type": "address"
83
+ }
84
+ ],
85
+ "name": "ErrorNotRegistry",
86
+ "type": "error"
87
+ },
88
+ {
89
+ "inputs": [
90
+ {
91
+ "internalType": "address",
92
+ "name": "registryAddress",
93
+ "type": "address"
94
+ }
95
+ ],
96
+ "name": "ErrorRegisterableNotRegistry",
97
+ "type": "error"
98
+ },
99
+ {
100
+ "inputs": [],
101
+ "name": "ErrorRegistryAddressZero",
102
+ "type": "error"
103
+ },
104
+ {
105
+ "inputs": [
106
+ {
107
+ "internalType": "address",
108
+ "name": "registry",
109
+ "type": "address"
110
+ }
111
+ ],
112
+ "name": "ErrorRegistryAlreadyInitialized",
113
+ "type": "error"
114
+ },
115
+ {
116
+ "inputs": [],
117
+ "name": "ErrorRegistryNotInitialized",
118
+ "type": "error"
119
+ },
120
+ {
121
+ "inputs": [
122
+ {
123
+ "internalType": "RoleId",
124
+ "name": "expected",
125
+ "type": "uint64"
126
+ },
127
+ {
128
+ "internalType": "address",
129
+ "name": "caller",
130
+ "type": "address"
131
+ }
132
+ ],
133
+ "name": "ExpectedRoleMissing",
134
+ "type": "error"
135
+ },
136
+ {
137
+ "inputs": [],
138
+ "name": "InvalidInitialization",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [],
143
+ "name": "NotInitializing",
144
+ "type": "error"
145
+ },
146
+ {
147
+ "anonymous": false,
148
+ "inputs": [
149
+ {
150
+ "indexed": false,
151
+ "internalType": "uint64",
152
+ "name": "version",
153
+ "type": "uint64"
154
+ }
155
+ ],
156
+ "name": "Initialized",
157
+ "type": "event"
158
+ },
159
+ {
160
+ "anonymous": false,
161
+ "inputs": [
162
+ {
163
+ "indexed": false,
164
+ "internalType": "Version",
165
+ "name": "version",
166
+ "type": "uint24"
167
+ },
168
+ {
169
+ "indexed": false,
170
+ "internalType": "address",
171
+ "name": "implementation",
172
+ "type": "address"
173
+ },
174
+ {
175
+ "indexed": false,
176
+ "internalType": "address",
177
+ "name": "activatedBy",
178
+ "type": "address"
179
+ }
180
+ ],
181
+ "name": "LogVersionableInitialized",
182
+ "type": "event"
183
+ },
184
+ {
185
+ "inputs": [],
186
+ "name": "REGISTERABLE_LOCATION_V1",
187
+ "outputs": [
188
+ {
189
+ "internalType": "bytes32",
190
+ "name": "",
191
+ "type": "bytes32"
192
+ }
193
+ ],
194
+ "stateMutability": "view",
195
+ "type": "function"
196
+ },
197
+ {
198
+ "inputs": [],
199
+ "name": "getDomain",
200
+ "outputs": [
201
+ {
202
+ "internalType": "ObjectType",
203
+ "name": "",
204
+ "type": "uint8"
205
+ }
206
+ ],
207
+ "stateMutability": "pure",
208
+ "type": "function"
209
+ },
210
+ {
211
+ "inputs": [],
212
+ "name": "getInitialInfo",
213
+ "outputs": [
214
+ {
215
+ "components": [
216
+ {
217
+ "internalType": "NftId",
218
+ "name": "nftId",
219
+ "type": "uint96"
220
+ },
221
+ {
222
+ "internalType": "NftId",
223
+ "name": "parentNftId",
224
+ "type": "uint96"
225
+ },
226
+ {
227
+ "internalType": "ObjectType",
228
+ "name": "objectType",
229
+ "type": "uint8"
230
+ },
231
+ {
232
+ "internalType": "bool",
233
+ "name": "isInterceptor",
234
+ "type": "bool"
235
+ },
236
+ {
237
+ "internalType": "address",
238
+ "name": "objectAddress",
239
+ "type": "address"
240
+ },
241
+ {
242
+ "internalType": "address",
243
+ "name": "initialOwner",
244
+ "type": "address"
245
+ },
246
+ {
247
+ "internalType": "bytes",
248
+ "name": "data",
249
+ "type": "bytes"
250
+ }
251
+ ],
252
+ "internalType": "struct IRegistry.ObjectInfo",
253
+ "name": "",
254
+ "type": "tuple"
255
+ },
256
+ {
257
+ "internalType": "bytes",
258
+ "name": "data",
259
+ "type": "bytes"
260
+ }
261
+ ],
262
+ "stateMutability": "view",
263
+ "type": "function"
264
+ },
265
+ {
266
+ "inputs": [],
267
+ "name": "getInitializedVersion",
268
+ "outputs": [
269
+ {
270
+ "internalType": "uint64",
271
+ "name": "",
272
+ "type": "uint64"
273
+ }
274
+ ],
275
+ "stateMutability": "view",
276
+ "type": "function"
277
+ },
278
+ {
279
+ "inputs": [],
280
+ "name": "getInstanceService",
281
+ "outputs": [
282
+ {
283
+ "internalType": "contract InstanceService",
284
+ "name": "",
285
+ "type": "address"
286
+ }
287
+ ],
288
+ "stateMutability": "view",
289
+ "type": "function"
290
+ },
291
+ {
292
+ "inputs": [],
293
+ "name": "getMajorVersion",
294
+ "outputs": [
295
+ {
296
+ "internalType": "VersionPart",
297
+ "name": "majorVersion",
298
+ "type": "uint8"
299
+ }
300
+ ],
301
+ "stateMutability": "view",
302
+ "type": "function"
303
+ },
304
+ {
305
+ "inputs": [],
306
+ "name": "getNftId",
307
+ "outputs": [
308
+ {
309
+ "internalType": "NftId",
310
+ "name": "",
311
+ "type": "uint96"
312
+ }
313
+ ],
314
+ "stateMutability": "view",
315
+ "type": "function"
316
+ },
317
+ {
318
+ "inputs": [],
319
+ "name": "getOwner",
320
+ "outputs": [
321
+ {
322
+ "internalType": "address",
323
+ "name": "",
324
+ "type": "address"
325
+ }
326
+ ],
327
+ "stateMutability": "view",
328
+ "type": "function"
329
+ },
330
+ {
331
+ "inputs": [],
332
+ "name": "getRegistry",
333
+ "outputs": [
334
+ {
335
+ "internalType": "contract IRegistry",
336
+ "name": "",
337
+ "type": "address"
338
+ }
339
+ ],
340
+ "stateMutability": "view",
341
+ "type": "function"
342
+ },
343
+ {
344
+ "inputs": [],
345
+ "name": "getRegistryService",
346
+ "outputs": [
347
+ {
348
+ "internalType": "contract IRegistryService",
349
+ "name": "",
350
+ "type": "address"
351
+ }
352
+ ],
353
+ "stateMutability": "view",
354
+ "type": "function"
355
+ },
356
+ {
357
+ "inputs": [],
358
+ "name": "getVersion",
359
+ "outputs": [
360
+ {
361
+ "internalType": "Version",
362
+ "name": "",
363
+ "type": "uint24"
364
+ }
365
+ ],
366
+ "stateMutability": "pure",
367
+ "type": "function"
368
+ },
369
+ {
370
+ "inputs": [
371
+ {
372
+ "internalType": "uint256",
373
+ "name": "idx",
374
+ "type": "uint256"
375
+ }
376
+ ],
377
+ "name": "getVersion",
378
+ "outputs": [
379
+ {
380
+ "internalType": "Version",
381
+ "name": "",
382
+ "type": "uint24"
383
+ }
384
+ ],
385
+ "stateMutability": "view",
386
+ "type": "function"
387
+ },
388
+ {
389
+ "inputs": [],
390
+ "name": "getVersionCount",
391
+ "outputs": [
392
+ {
393
+ "internalType": "uint256",
394
+ "name": "",
395
+ "type": "uint256"
396
+ }
397
+ ],
398
+ "stateMutability": "view",
399
+ "type": "function"
400
+ },
401
+ {
402
+ "inputs": [
403
+ {
404
+ "internalType": "Version",
405
+ "name": "_version",
406
+ "type": "uint24"
407
+ }
408
+ ],
409
+ "name": "getVersionInfo",
410
+ "outputs": [
411
+ {
412
+ "components": [
413
+ {
414
+ "internalType": "Version",
415
+ "name": "version",
416
+ "type": "uint24"
417
+ },
418
+ {
419
+ "internalType": "address",
420
+ "name": "implementation",
421
+ "type": "address"
422
+ },
423
+ {
424
+ "internalType": "address",
425
+ "name": "activatedBy",
426
+ "type": "address"
427
+ },
428
+ {
429
+ "internalType": "Timestamp",
430
+ "name": "activatedAt",
431
+ "type": "uint40"
432
+ },
433
+ {
434
+ "internalType": "Blocknumber",
435
+ "name": "activatedIn",
436
+ "type": "uint32"
437
+ }
438
+ ],
439
+ "internalType": "struct IVersionable.VersionInfo",
440
+ "name": "",
441
+ "type": "tuple"
442
+ }
443
+ ],
444
+ "stateMutability": "view",
445
+ "type": "function"
446
+ },
447
+ {
448
+ "inputs": [
449
+ {
450
+ "internalType": "address",
451
+ "name": "implementation",
452
+ "type": "address"
453
+ },
454
+ {
455
+ "internalType": "address",
456
+ "name": "activatedBy",
457
+ "type": "address"
458
+ },
459
+ {
460
+ "internalType": "bytes",
461
+ "name": "data",
462
+ "type": "bytes"
463
+ }
464
+ ],
465
+ "name": "initialize",
466
+ "outputs": [],
467
+ "stateMutability": "nonpayable",
468
+ "type": "function"
469
+ },
470
+ {
471
+ "inputs": [
472
+ {
473
+ "internalType": "Version",
474
+ "name": "_version",
475
+ "type": "uint24"
476
+ }
477
+ ],
478
+ "name": "isInitialized",
479
+ "outputs": [
480
+ {
481
+ "internalType": "bool",
482
+ "name": "",
483
+ "type": "bool"
484
+ }
485
+ ],
486
+ "stateMutability": "view",
487
+ "type": "function"
488
+ },
489
+ {
490
+ "inputs": [],
491
+ "name": "linkToRegisteredNftId",
492
+ "outputs": [],
493
+ "stateMutability": "nonpayable",
494
+ "type": "function"
495
+ },
496
+ {
497
+ "inputs": [
498
+ {
499
+ "internalType": "address",
500
+ "name": "poolAddress",
501
+ "type": "address"
502
+ }
503
+ ],
504
+ "name": "register",
505
+ "outputs": [
506
+ {
507
+ "internalType": "NftId",
508
+ "name": "poolNftId",
509
+ "type": "uint96"
510
+ }
511
+ ],
512
+ "stateMutability": "nonpayable",
513
+ "type": "function"
514
+ },
515
+ {
516
+ "inputs": [
517
+ {
518
+ "components": [
519
+ {
520
+ "internalType": "UFixed",
521
+ "name": "fractionalFee",
522
+ "type": "uint256"
523
+ },
524
+ {
525
+ "internalType": "uint256",
526
+ "name": "fixedFee",
527
+ "type": "uint256"
528
+ }
529
+ ],
530
+ "internalType": "struct Fee",
531
+ "name": "poolFee",
532
+ "type": "tuple"
533
+ },
534
+ {
535
+ "components": [
536
+ {
537
+ "internalType": "UFixed",
538
+ "name": "fractionalFee",
539
+ "type": "uint256"
540
+ },
541
+ {
542
+ "internalType": "uint256",
543
+ "name": "fixedFee",
544
+ "type": "uint256"
545
+ }
546
+ ],
547
+ "internalType": "struct Fee",
548
+ "name": "stakingFee",
549
+ "type": "tuple"
550
+ },
551
+ {
552
+ "components": [
553
+ {
554
+ "internalType": "UFixed",
555
+ "name": "fractionalFee",
556
+ "type": "uint256"
557
+ },
558
+ {
559
+ "internalType": "uint256",
560
+ "name": "fixedFee",
561
+ "type": "uint256"
562
+ }
563
+ ],
564
+ "internalType": "struct Fee",
565
+ "name": "performanceFee",
566
+ "type": "tuple"
567
+ }
568
+ ],
569
+ "name": "setFees",
570
+ "outputs": [],
571
+ "stateMutability": "nonpayable",
572
+ "type": "function"
573
+ },
574
+ {
575
+ "inputs": [
576
+ {
577
+ "internalType": "bytes4",
578
+ "name": "interfaceId",
579
+ "type": "bytes4"
580
+ }
581
+ ],
582
+ "name": "supportsInterface",
583
+ "outputs": [
584
+ {
585
+ "internalType": "bool",
586
+ "name": "",
587
+ "type": "bool"
588
+ }
589
+ ],
590
+ "stateMutability": "view",
591
+ "type": "function"
592
+ },
593
+ {
594
+ "inputs": [
595
+ {
596
+ "internalType": "address",
597
+ "name": "implementation",
598
+ "type": "address"
599
+ },
600
+ {
601
+ "internalType": "address",
602
+ "name": "activatedBy",
603
+ "type": "address"
604
+ },
605
+ {
606
+ "internalType": "bytes",
607
+ "name": "data",
608
+ "type": "bytes"
609
+ }
610
+ ],
611
+ "name": "upgrade",
612
+ "outputs": [],
613
+ "stateMutability": "nonpayable",
614
+ "type": "function"
615
+ }
616
+ ],
617
+ "bytecode": "0x60806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000076565b6200012a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001275780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612a25806200013a6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806382678766116100b8578063b68d18091161007c578063b68d1809146103f8578063b88da7591461040d578063caf4e3d414610420578063cc9fc59a14610428578063cde749f414610430578063cf7a1d771461043857600080fd5b80638267876614610383578063893d20e814610396578063946dfcfe1461039e578063a745e3df146103c5578063b3c65015146103d857600080fd5b80634420e486116100ff5780634420e486146101ef5780634d459c901461021a5780634f421333146103335780635ab1bd5314610346578063644c45e01461036b57600080fd5b806301ffc9a71461013c5780630d8e6e2c1461017e5780630fec111c1461019a578063138461e0146101b05780631eff4b22146101ba575b600080fd5b61016961014a366004611f30565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61018661044b565b60405162ffffff9091168152602001610175565b6101a26104d5565b604051610175929190611fb1565b6101b8610628565b005b6101e17f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610175565b6102026101fd36600461206d565b61084a565b6040516001600160601b039091168152602001610175565b6102d661022836600461209b565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206129d083398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610175565b61016961034136600461209b565b610b2a565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610175565b600154600160a01b90046001600160601b0316610202565b6101b861039136600461219b565b610bdd565b610353610d52565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546101e1565b6101b86103d3366004612208565b610e6b565b6103e0610fc5565b6040516001600160401b039091168152602001610175565b608c5b60405160ff9091168152602001610175565b61018661041b3660046122ac565b610fe6565b610353611037565b6103536110d4565b6103fb6110fe565b6101b8610446366004612208565b611181565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d091906122c5565b905090565b6104dd611ef2565b606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806105296001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610571610d52565b6001600160a01b0316815260200182600101805461058e906122e2565b80601f01602080910402602001604051908101604052809291908181526020018280546105ba906122e2565b80156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561068a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ae9190612331565b156106f5576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b031661071e5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610767573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078b9190612331565b6107b3576040516372657a5160e01b81526001600160a01b03821660048201526024016106ec565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156107fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108219190612363565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60003382610856611ef2565b6060610860611037565b604051637286e5e560e01b81526001600160a01b03858116600483015286811660248301529190911690637286e5e5906044016000604051808303816000875af11580156108b2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108da91908101906124a0565b602082015191935091506000906108f09061128a565b905060006108fc6110d4565b6001600160a01b031663103bd5da87610913611321565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201526001600160401b0390911660248201529085166044820152606401602060405180830381865afa15801561096f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109939190612331565b9050806109d6576109a2611321565b6040516351302f8160e01b81526001600160401b0390911660048201526001600160a01b03871660248201526044016106ec565b8351965060006109e584611399565b6040516339f34df560e21b81529091506001600160a01b0384169063e7cd37d490610a16908b9085906004016125bc565b600060405180830381600087803b158015610a3057600080fd5b505af1158015610a44573d6000803e3d6000fd5b50505050610a506110d4565b6001600160a01b03166386ebbf42610a6787611427565b8b896001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610aa6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ace91908101906125da565b6040518463ffffffff1660e01b8152600401610aec9392919061262a565b600060405180830381600087803b158015610b0657600080fd5b505af1158015610b1a573d6000803e3d6000fd5b5050505050505050505050919050565b6000806000805160206129d083398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610bb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd6919061265d565b1192915050565b600080610bea608c6114c6565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c529190612676565b83516040516355e343a960e01b81526001600160601b0382166004820152919250906000906001600160a01b038416906355e343a99060240161018060405180830381865afa158015610ca9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccd91906126c3565b606081018990526080810188905260a08101879052604051633055195560e11b81529091506001600160a01b038516906360aa32aa90610d16908590859060ff90600401612778565b600060405180830381600087803b158015610d3057600080fd5b505af1158015610d44573d6000803e3d6000fd5b505050505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb9190612331565b15610e5b57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610e37573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d09190612676565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610e8d61044b565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef191906127bd565b6000805160206129b08339815191528054600160401b900460ff1680610f24575080546001600160401b03808416911610155b15610f425760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f6d858561173d565b610f76836119dc565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006104d06000805160206129b0833981519152546001600160401b031690565b60006000805160206129d0833981519152600101828154811061100b5761100b6127da565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60008061104c6001546001600160a01b031690565b6001600160a01b031663d39e604360285b6110656110fe565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156110aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ce9190612676565b92915050565b6000806110e96001546001600160a01b031690565b6001600160a01b031663d39e6043604661105d565b600061110861044b565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561115d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d091906127f0565b6000805160206129b08339815191528054600160401b810460ff1615906001600160401b03166000811580156111b45750825b90506000826001600160401b031660011480156111d05750303b155b9050811580156111de575080155b156111fc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561122657845460ff60401b1916600160401b1785555b611230888861173d565b61123a87876119e4565b831561128057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b60008061129f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156112ee573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611316919081019061280d565b608001519392505050565b6040516368aebf7b60e01b815261012c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611375573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d091906127bd565b61141360408051610120810182526000808252602080830182905282840182905283518085018552828152808201839052606084015283518085018552828152808201839052608084015283518085019094528184528301529060a082019081526000602082018190526040820181905260609091015290565b818060200190518101906110ce91906126c3565b60008061143c6001546001600160a01b031690565b60208401516040516305247a1760e51b81526001600160601b0390911660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611495573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114bd919081019061280d565b51949350505050565b6114ce611ef2565b6000806114e36001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa15801561152a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611552919081019061280d565b925061156883604001518560ff90811691161490565b6115aa5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b60448201526064016106ec565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611600573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611628919081019061280d565b6080015190508092506000836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015611671573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116959190612676565b6080860151604051629b7b3560e61b81526001600160a01b0391821660048201529192508216906326decd4090602401602060405180830381865afa1580156116e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117069190612331565b1561173557608085015160405163d53987e560e01b81526001600160a01b0390911660048201526024016106ec565b505050915091565b611745611b10565b6000805160206129d083398151915260006117756000805160206129b0833981519152546001600160401b031690565b9050600061178161044b565b9050816001600160401b03166001036117ae5760028301805462ffffff191662ffffff83161790556117fc565b600283015462ffffff908116908216116117fc5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b60448201526064016106ec565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af41580156118b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d49190612841565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610fb69083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610137611b10565b6000805160206129b08339815191528054600160401b810460ff1615906001600160401b0316600081158015611a175750825b90506000826001600160401b03166001148015611a335750303b155b905081158015611a41575080155b15611a5f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611a8957845460ff60401b1916600160401b1785555b60008087806020019051810190611aa09190612868565b9092509050611aaf828a611b49565b611abf6306323b1f60e51b611bb4565b50508315611b0757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6000805160206129b083398151915254600160401b900460ff16611b4757604051631afcd79f60e31b815260040160405180910390fd5b565b6000608c611b556110fe565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000611b8a84611bd9565b90506000611b9d8583603c848888611c44565b611bad637b6a51fd60e01b611bb4565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015611c20573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ce9190612363565b611c856301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b611c8f8287611d10565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101611cff83826128f0565b50611b076303fb044760e21b611bb4565b6001600160a01b038216611d665760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e65722069732030000060448201526064016106ec565b600280546001600160a01b0319166001600160a01b038416179055611d8a81611d8e565b5050565b6001546001600160a01b031615611dc75760015460405163fcdbf2d960e01b81526001600160a01b0390911660048201526024016106ec565b6001600160a01b038116611dee5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003611e245760405163fdeac91f60e01b81526001600160a01b03821660048201526024016106ec565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263102da10360e01b60048201526301ffc9a790602401602060405180830381865afa925050508015611e9e575060408051601f3d908101601f19168201909252611e9b91810190612331565b60015b611ec65760405163fdeac91f60e01b81526001600160a01b03821660048201526024016106ec565b80611d8a5760405163fdeac91f60e01b81526001600160a01b03831660048201526024016106ec565b50565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b600060208284031215611f4257600080fd5b81356001600160e01b031981168114611f5a57600080fd5b9392505050565b60005b83811015611f7c578181015183820152602001611f64565b50506000910152565b60008151808452611f9d816020860160208601611f61565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151611ff560a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261203b610120840182611f85565b9050828103602084015261204f8185611f85565b95945050505050565b6001600160a01b0381168114611eef57600080fd5b60006020828403121561207f57600080fd5b8135611f5a81612058565b62ffffff81168114611eef57600080fd5b6000602082840312156120ad57600080fd5b8135611f5a8161208a565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156120f0576120f06120b8565b60405290565b60405160e081016001600160401b03811182821017156120f0576120f06120b8565b60405161012081016001600160401b03811182821017156120f0576120f06120b8565b604051601f8201601f191681016001600160401b0381118282101715612163576121636120b8565b604052919050565b60006040828403121561217d57600080fd5b6121856120ce565b9050813581526020820135602082015292915050565b600080600060c084860312156121b057600080fd5b6121ba858561216b565b92506121c9856040860161216b565b91506121d8856080860161216b565b90509250925092565b60006001600160401b038211156121fa576121fa6120b8565b50601f01601f191660200190565b60008060006060848603121561221d57600080fd5b833561222881612058565b9250602084013561223881612058565b915060408401356001600160401b0381111561225357600080fd5b8401601f8101861361226457600080fd5b8035612277612272826121e1565b61213b565b81815287602083850101111561228c57600080fd5b816020840160208301376000602083830101528093505050509250925092565b6000602082840312156122be57600080fd5b5035919050565b6000602082840312156122d757600080fd5b8151611f5a8161208a565b600181811c908216806122f657607f821691505b60208210810361231657634e487b7160e01b600052602260045260246000fd5b50919050565b8051801515811461232c57600080fd5b919050565b60006020828403121561234357600080fd5b611f5a8261231c565b80516001600160601b038116811461232c57600080fd5b60006020828403121561237557600080fd5b611f5a8261234c565b60ff81168114611eef57600080fd5b805161232c8161237e565b805161232c81612058565b60006123b1612272846121e1565b90508281528383830111156123c557600080fd5b611f5a836020830184611f61565b600082601f8301126123e457600080fd5b611f5a838351602085016123a3565b600060e0828403121561240557600080fd5b61240d6120f6565b90506124188261234c565b81526124266020830161234c565b60208201526124376040830161238d565b60408201526124486060830161231c565b606082015261245960808301612398565b608082015261246a60a08301612398565b60a082015260c08201516001600160401b0381111561248857600080fd5b612494848285016123d3565b60c08301525092915050565b600080604083850312156124b357600080fd5b82516001600160401b03808211156124ca57600080fd5b6124d6868387016123f3565b935060208501519150808211156124ec57600080fd5b506124f9858286016123d3565b9150509250929050565b6001600160601b038151168252602081015161252a60208401826001600160a01b03169052565b50604081015160408301526060810151612551606084018280518252602090810151910152565b506080810151805160a0840152602081015160c08401525060a0810151805160e084015260208101516101008401525060c08101518015156101208401525060e08101518015156101408401525061010001516001600160a01b03166101609190910152565b505050565b6001600160601b03831681526101a08101611f5a6020830184612503565b6000602082840312156125ec57600080fd5b81516001600160401b0381111561260257600080fd5b8201601f8101841361261357600080fd5b612622848251602084016123a3565b949350505050565b6001600160601b03841681526001600160a01b038316602082015260606040820181905260009061204f90830184611f85565b60006020828403121561266f57600080fd5b5051919050565b60006020828403121561268857600080fd5b8151611f5a81612058565b6000604082840312156126a557600080fd5b6126ad6120ce565b9050815181526020820151602082015292915050565b600061018082840312156126d657600080fd5b6126de612118565b6126e78361234c565b81526126f560208401612398565b6020820152604083015160408201526127118460608501612693565b60608201526127238460a08501612693565b60808201526127358460e08501612693565b60a0820152612747610120840161231c565b60c0820152612759610140840161231c565b60e082015261276b6101608401612398565b6101008201529392505050565b6001600160601b03841681526101c081016127966020830185612503565b60ff83166101a0830152949350505050565b6001600160401b0381168114611eef57600080fd5b6000602082840312156127cf57600080fd5b8151611f5a816127a8565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561280257600080fd5b8151611f5a8161237e565b60006020828403121561281f57600080fd5b81516001600160401b0381111561283557600080fd5b612622848285016123f3565b60006020828403121561285357600080fd5b815164ffffffffff81168114611f5a57600080fd5b6000806040838503121561287b57600080fd5b825161288681612058565b602084015190925061289781612058565b809150509250929050565b601f8211156125b757600081815260208120601f850160051c810160208610156128c95750805b601f850160051c820191505b818110156128e8578281556001016128d5565b505050505050565b81516001600160401b03811115612909576129096120b8565b61291d8161291784546122e2565b846128a2565b602080601f831160018114612952576000841561293a5750858301515b600019600386901b1c1916600185901b1785556128e8565b600085815260208120601f198616915b8281101561298157888601518255948401946001909101908401612962565b508582101561299f5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220c342b8ab8e366dac39f442bca1b5b26b7b32b0c58af33c984c9f4785e5f0f51e64736f6c63430008140033",
618
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101375760003560e01c806382678766116100b8578063b68d18091161007c578063b68d1809146103f8578063b88da7591461040d578063caf4e3d414610420578063cc9fc59a14610428578063cde749f414610430578063cf7a1d771461043857600080fd5b80638267876614610383578063893d20e814610396578063946dfcfe1461039e578063a745e3df146103c5578063b3c65015146103d857600080fd5b80634420e486116100ff5780634420e486146101ef5780634d459c901461021a5780634f421333146103335780635ab1bd5314610346578063644c45e01461036b57600080fd5b806301ffc9a71461013c5780630d8e6e2c1461017e5780630fec111c1461019a578063138461e0146101b05780631eff4b22146101ba575b600080fd5b61016961014a366004611f30565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61018661044b565b60405162ffffff9091168152602001610175565b6101a26104d5565b604051610175929190611fb1565b6101b8610628565b005b6101e17f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610175565b6102026101fd36600461206d565b61084a565b6040516001600160601b039091168152602001610175565b6102d661022836600461209b565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206129d083398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610175565b61016961034136600461209b565b610b2a565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610175565b600154600160a01b90046001600160601b0316610202565b6101b861039136600461219b565b610bdd565b610353610d52565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546101e1565b6101b86103d3366004612208565b610e6b565b6103e0610fc5565b6040516001600160401b039091168152602001610175565b608c5b60405160ff9091168152602001610175565b61018661041b3660046122ac565b610fe6565b610353611037565b6103536110d4565b6103fb6110fe565b6101b8610446366004612208565b611181565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156104ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d091906122c5565b905090565b6104dd611ef2565b606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806105296001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610571610d52565b6001600160a01b0316815260200182600101805461058e906122e2565b80601f01602080910402602001604051908101604052809291908181526020018280546105ba906122e2565b80156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561068a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ae9190612331565b156106f5576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b031661071e5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610767573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078b9190612331565b6107b3576040516372657a5160e01b81526001600160a01b03821660048201526024016106ec565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156107fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108219190612363565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60003382610856611ef2565b6060610860611037565b604051637286e5e560e01b81526001600160a01b03858116600483015286811660248301529190911690637286e5e5906044016000604051808303816000875af11580156108b2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526108da91908101906124a0565b602082015191935091506000906108f09061128a565b905060006108fc6110d4565b6001600160a01b031663103bd5da87610913611321565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201526001600160401b0390911660248201529085166044820152606401602060405180830381865afa15801561096f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109939190612331565b9050806109d6576109a2611321565b6040516351302f8160e01b81526001600160401b0390911660048201526001600160a01b03871660248201526044016106ec565b8351965060006109e584611399565b6040516339f34df560e21b81529091506001600160a01b0384169063e7cd37d490610a16908b9085906004016125bc565b600060405180830381600087803b158015610a3057600080fd5b505af1158015610a44573d6000803e3d6000fd5b50505050610a506110d4565b6001600160a01b03166386ebbf42610a6787611427565b8b896001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610aa6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ace91908101906125da565b6040518463ffffffff1660e01b8152600401610aec9392919061262a565b600060405180830381600087803b158015610b0657600080fd5b505af1158015610b1a573d6000803e3d6000fd5b5050505050505050505050919050565b6000806000805160206129d083398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610bb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd6919061265d565b1192915050565b600080610bea608c6114c6565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c529190612676565b83516040516355e343a960e01b81526001600160601b0382166004820152919250906000906001600160a01b038416906355e343a99060240161018060405180830381865afa158015610ca9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccd91906126c3565b606081018990526080810188905260a08101879052604051633055195560e11b81529091506001600160a01b038516906360aa32aa90610d16908590859060ff90600401612778565b600060405180830381600087803b158015610d3057600080fd5b505af1158015610d44573d6000803e3d6000fd5b505050505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb9190612331565b15610e5b57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610e37573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d09190612676565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610e8d61044b565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef191906127bd565b6000805160206129b08339815191528054600160401b900460ff1680610f24575080546001600160401b03808416911610155b15610f425760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f6d858561173d565b610f76836119dc565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006104d06000805160206129b0833981519152546001600160401b031690565b60006000805160206129d0833981519152600101828154811061100b5761100b6127da565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60008061104c6001546001600160a01b031690565b6001600160a01b031663d39e604360285b6110656110fe565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156110aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ce9190612676565b92915050565b6000806110e96001546001600160a01b031690565b6001600160a01b031663d39e6043604661105d565b600061110861044b565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561115d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d091906127f0565b6000805160206129b08339815191528054600160401b810460ff1615906001600160401b03166000811580156111b45750825b90506000826001600160401b031660011480156111d05750303b155b9050811580156111de575080155b156111fc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561122657845460ff60401b1916600160401b1785555b611230888861173d565b61123a87876119e4565b831561128057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b60008061129f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156112ee573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611316919081019061280d565b608001519392505050565b6040516368aebf7b60e01b815261012c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611375573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d091906127bd565b61141360408051610120810182526000808252602080830182905282840182905283518085018552828152808201839052606084015283518085018552828152808201839052608084015283518085019094528184528301529060a082019081526000602082018190526040820181905260609091015290565b818060200190518101906110ce91906126c3565b60008061143c6001546001600160a01b031690565b60208401516040516305247a1760e51b81526001600160601b0390911660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611495573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114bd919081019061280d565b51949350505050565b6114ce611ef2565b6000806114e36001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa15801561152a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611552919081019061280d565b925061156883604001518560ff90811691161490565b6115aa5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b60448201526064016106ec565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611600573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611628919081019061280d565b6080015190508092506000836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015611671573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116959190612676565b6080860151604051629b7b3560e61b81526001600160a01b0391821660048201529192508216906326decd4090602401602060405180830381865afa1580156116e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117069190612331565b1561173557608085015160405163d53987e560e01b81526001600160a01b0390911660048201526024016106ec565b505050915091565b611745611b10565b6000805160206129d083398151915260006117756000805160206129b0833981519152546001600160401b031690565b9050600061178161044b565b9050816001600160401b03166001036117ae5760028301805462ffffff191662ffffff83161790556117fc565b600283015462ffffff908116908216116117fc5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b60448201526064016106ec565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af41580156118b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d49190612841565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610fb69083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610137611b10565b6000805160206129b08339815191528054600160401b810460ff1615906001600160401b0316600081158015611a175750825b90506000826001600160401b03166001148015611a335750303b155b905081158015611a41575080155b15611a5f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611a8957845460ff60401b1916600160401b1785555b60008087806020019051810190611aa09190612868565b9092509050611aaf828a611b49565b611abf6306323b1f60e51b611bb4565b50508315611b0757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6000805160206129b083398151915254600160401b900460ff16611b4757604051631afcd79f60e31b815260040160405180910390fd5b565b6000608c611b556110fe565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000611b8a84611bd9565b90506000611b9d8583603c848888611c44565b611bad637b6a51fd60e01b611bb4565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015611c20573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ce9190612363565b611c856301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b611c8f8287611d10565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101611cff83826128f0565b50611b076303fb044760e21b611bb4565b6001600160a01b038216611d665760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e65722069732030000060448201526064016106ec565b600280546001600160a01b0319166001600160a01b038416179055611d8a81611d8e565b5050565b6001546001600160a01b031615611dc75760015460405163fcdbf2d960e01b81526001600160a01b0390911660048201526024016106ec565b6001600160a01b038116611dee5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003611e245760405163fdeac91f60e01b81526001600160a01b03821660048201526024016106ec565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263102da10360e01b60048201526301ffc9a790602401602060405180830381865afa925050508015611e9e575060408051601f3d908101601f19168201909252611e9b91810190612331565b60015b611ec65760405163fdeac91f60e01b81526001600160a01b03821660048201526024016106ec565b80611d8a5760405163fdeac91f60e01b81526001600160a01b03831660048201526024016106ec565b50565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b600060208284031215611f4257600080fd5b81356001600160e01b031981168114611f5a57600080fd5b9392505050565b60005b83811015611f7c578181015183820152602001611f64565b50506000910152565b60008151808452611f9d816020860160208601611f61565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151611ff560a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261203b610120840182611f85565b9050828103602084015261204f8185611f85565b95945050505050565b6001600160a01b0381168114611eef57600080fd5b60006020828403121561207f57600080fd5b8135611f5a81612058565b62ffffff81168114611eef57600080fd5b6000602082840312156120ad57600080fd5b8135611f5a8161208a565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156120f0576120f06120b8565b60405290565b60405160e081016001600160401b03811182821017156120f0576120f06120b8565b60405161012081016001600160401b03811182821017156120f0576120f06120b8565b604051601f8201601f191681016001600160401b0381118282101715612163576121636120b8565b604052919050565b60006040828403121561217d57600080fd5b6121856120ce565b9050813581526020820135602082015292915050565b600080600060c084860312156121b057600080fd5b6121ba858561216b565b92506121c9856040860161216b565b91506121d8856080860161216b565b90509250925092565b60006001600160401b038211156121fa576121fa6120b8565b50601f01601f191660200190565b60008060006060848603121561221d57600080fd5b833561222881612058565b9250602084013561223881612058565b915060408401356001600160401b0381111561225357600080fd5b8401601f8101861361226457600080fd5b8035612277612272826121e1565b61213b565b81815287602083850101111561228c57600080fd5b816020840160208301376000602083830101528093505050509250925092565b6000602082840312156122be57600080fd5b5035919050565b6000602082840312156122d757600080fd5b8151611f5a8161208a565b600181811c908216806122f657607f821691505b60208210810361231657634e487b7160e01b600052602260045260246000fd5b50919050565b8051801515811461232c57600080fd5b919050565b60006020828403121561234357600080fd5b611f5a8261231c565b80516001600160601b038116811461232c57600080fd5b60006020828403121561237557600080fd5b611f5a8261234c565b60ff81168114611eef57600080fd5b805161232c8161237e565b805161232c81612058565b60006123b1612272846121e1565b90508281528383830111156123c557600080fd5b611f5a836020830184611f61565b600082601f8301126123e457600080fd5b611f5a838351602085016123a3565b600060e0828403121561240557600080fd5b61240d6120f6565b90506124188261234c565b81526124266020830161234c565b60208201526124376040830161238d565b60408201526124486060830161231c565b606082015261245960808301612398565b608082015261246a60a08301612398565b60a082015260c08201516001600160401b0381111561248857600080fd5b612494848285016123d3565b60c08301525092915050565b600080604083850312156124b357600080fd5b82516001600160401b03808211156124ca57600080fd5b6124d6868387016123f3565b935060208501519150808211156124ec57600080fd5b506124f9858286016123d3565b9150509250929050565b6001600160601b038151168252602081015161252a60208401826001600160a01b03169052565b50604081015160408301526060810151612551606084018280518252602090810151910152565b506080810151805160a0840152602081015160c08401525060a0810151805160e084015260208101516101008401525060c08101518015156101208401525060e08101518015156101408401525061010001516001600160a01b03166101609190910152565b505050565b6001600160601b03831681526101a08101611f5a6020830184612503565b6000602082840312156125ec57600080fd5b81516001600160401b0381111561260257600080fd5b8201601f8101841361261357600080fd5b612622848251602084016123a3565b949350505050565b6001600160601b03841681526001600160a01b038316602082015260606040820181905260009061204f90830184611f85565b60006020828403121561266f57600080fd5b5051919050565b60006020828403121561268857600080fd5b8151611f5a81612058565b6000604082840312156126a557600080fd5b6126ad6120ce565b9050815181526020820151602082015292915050565b600061018082840312156126d657600080fd5b6126de612118565b6126e78361234c565b81526126f560208401612398565b6020820152604083015160408201526127118460608501612693565b60608201526127238460a08501612693565b60808201526127358460e08501612693565b60a0820152612747610120840161231c565b60c0820152612759610140840161231c565b60e082015261276b6101608401612398565b6101008201529392505050565b6001600160601b03841681526101c081016127966020830185612503565b60ff83166101a0830152949350505050565b6001600160401b0381168114611eef57600080fd5b6000602082840312156127cf57600080fd5b8151611f5a816127a8565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561280257600080fd5b8151611f5a8161237e565b60006020828403121561281f57600080fd5b81516001600160401b0381111561283557600080fd5b612622848285016123f3565b60006020828403121561285357600080fd5b815164ffffffffff81168114611f5a57600080fd5b6000806040838503121561287b57600080fd5b825161288681612058565b602084015190925061289781612058565b809150509250929050565b601f8211156125b757600081815260208120601f850160051c810160208610156128c95750805b601f850160051c820191505b818110156128e8578281556001016128d5565b505050505050565b81516001600160401b03811115612909576129096120b8565b61291d8161291784546122e2565b846128a2565b602080601f831160018114612952576000841561293a5750858301515b600019600386901b1c1916600185901b1785556128e8565b600085815260208120601f198616915b8281101561298157888601518255948401946001909101908401612962565b508582101561299f5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220c342b8ab8e366dac39f442bca1b5b26b7b32b0c58af33c984c9f4785e5f0f51e64736f6c63430008140033",
619
+ "linkReferences": {
620
+ "contracts/types/Blocknumber.sol": {
621
+ "BlocknumberLib": [
622
+ {
623
+ "length": 20,
624
+ "start": 3250
625
+ }
626
+ ]
627
+ },
628
+ "contracts/types/NftId.sol": {
629
+ "NftIdLib": [
630
+ {
631
+ "length": 20,
632
+ "start": 1930
633
+ },
634
+ {
635
+ "length": 20,
636
+ "start": 3767
637
+ }
638
+ ]
639
+ },
640
+ "contracts/types/RoleId.sol": {
641
+ "RoleIdLib": [
642
+ {
643
+ "length": 20,
644
+ "start": 5237
645
+ }
646
+ ]
647
+ },
648
+ "contracts/types/Timestamp.sol": {
649
+ "TimestampLib": [
650
+ {
651
+ "length": 20,
652
+ "start": 6576
653
+ }
654
+ ]
655
+ },
656
+ "contracts/types/Version.sol": {
657
+ "VersionLib": [
658
+ {
659
+ "length": 20,
660
+ "start": 1452
661
+ },
662
+ {
663
+ "length": 20,
664
+ "start": 4007
665
+ },
666
+ {
667
+ "length": 20,
668
+ "start": 4701
669
+ }
670
+ ]
671
+ }
672
+ },
673
+ "deployedLinkReferences": {
674
+ "contracts/types/Blocknumber.sol": {
675
+ "BlocknumberLib": [
676
+ {
677
+ "length": 20,
678
+ "start": 2936
679
+ }
680
+ ]
681
+ },
682
+ "contracts/types/NftId.sol": {
683
+ "NftIdLib": [
684
+ {
685
+ "length": 20,
686
+ "start": 1616
687
+ },
688
+ {
689
+ "length": 20,
690
+ "start": 3453
691
+ }
692
+ ]
693
+ },
694
+ "contracts/types/RoleId.sol": {
695
+ "RoleIdLib": [
696
+ {
697
+ "length": 20,
698
+ "start": 4923
699
+ }
700
+ ]
701
+ },
702
+ "contracts/types/Timestamp.sol": {
703
+ "TimestampLib": [
704
+ {
705
+ "length": 20,
706
+ "start": 6262
707
+ }
708
+ ]
709
+ },
710
+ "contracts/types/Version.sol": {
711
+ "VersionLib": [
712
+ {
713
+ "length": 20,
714
+ "start": 1138
715
+ },
716
+ {
717
+ "length": 20,
718
+ "start": 3693
719
+ },
720
+ {
721
+ "length": 20,
722
+ "start": 4387
723
+ }
724
+ ]
725
+ }
726
+ }
727
+ }