@etherisc/gif-next 0.0.2-c5c9395-682 → 0.0.2-c5f9a75-197

Sign up to get free protection for your applications and to get access to all the features.
Files changed (671) hide show
  1. package/README.md +51 -5
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1234 -0
  4. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  5. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
  6. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  7. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
  8. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  9. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  10. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1013 -0
  12. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
  14. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
  16. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
  18. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
  20. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
  22. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  23. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1342 -0
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1012 -0
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1405 -0
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +818 -0
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  33. package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +198 -261
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +178 -336
  36. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  37. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1463 -0
  38. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  39. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +410 -0
  40. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1712 -0
  42. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +414 -0
  44. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  46. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  47. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1411 -0
  48. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  49. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
  50. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  51. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1517 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +1978 -0
  54. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  55. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
  56. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  57. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +296 -2011
  58. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  59. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +198 -74
  60. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  61. package/artifacts/contracts/instance/Instance.sol/Instance.json +353 -2827
  62. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  63. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1623 -0
  64. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
  66. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  67. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +898 -337
  68. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  69. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +246 -372
  70. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  71. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +129 -156
  72. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  73. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3587 -0
  74. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  75. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  76. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
  78. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  80. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  82. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  84. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  85. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +8 -116
  86. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  87. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  88. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  89. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  90. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  91. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  92. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  93. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  94. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +979 -0
  95. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  96. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
  97. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  98. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  99. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  100. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +765 -0
  101. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  102. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +255 -186
  103. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  104. package/artifacts/contracts/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +236 -207
  105. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  106. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +927 -0
  107. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  108. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +710 -0
  109. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  110. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +275 -403
  111. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  112. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
  113. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  114. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1367 -0
  115. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  116. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +802 -0
  117. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  118. package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +295 -47
  119. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  120. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +909 -0
  121. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  122. package/artifacts/contracts/{instance/service → pool}/IPoolService.sol/IPoolService.json +476 -122
  123. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  124. package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +346 -376
  125. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  126. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1474 -0
  127. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  128. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +726 -0
  129. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  130. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +737 -0
  131. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  132. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +698 -0
  133. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  134. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +336 -407
  135. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  136. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
  137. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  138. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1346 -0
  139. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  140. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +814 -0
  141. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  142. package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → product/IApplicationService.sol/IApplicationService.json} +136 -94
  143. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  144. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +886 -0
  145. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  146. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +867 -0
  147. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  148. package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +117 -190
  149. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  150. package/artifacts/contracts/{components → product}/IProductComponent.sol/IProductComponent.json +309 -191
  151. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  152. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +12 -62
  153. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  154. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1239 -0
  155. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  156. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +770 -0
  157. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  158. package/artifacts/contracts/product/PricingService.sol/PricingService.json +865 -0
  159. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  160. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +746 -0
  161. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  162. package/artifacts/contracts/product/Product.sol/Product.json +1054 -0
  163. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  164. package/artifacts/contracts/product/RiskService.sol/RiskService.json +588 -0
  165. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  166. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +682 -0
  167. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  168. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
  169. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  170. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +385 -31
  171. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  172. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -125
  173. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  174. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  175. package/artifacts/contracts/registry/Registry.sol/Registry.json +783 -46
  176. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  177. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1858 -0
  178. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  179. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +372 -185
  180. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  181. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +126 -95
  182. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  183. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  184. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  185. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1169 -0
  186. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  187. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
  188. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  189. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
  190. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  191. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +268 -190
  192. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  193. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1573 -0
  194. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  195. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +794 -0
  196. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  197. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +432 -0
  198. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  199. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +92 -0
  200. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  201. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +107 -107
  202. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  203. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
  204. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  205. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +700 -0
  206. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  207. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
  208. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  209. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  210. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  211. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
  212. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  213. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  214. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  215. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
  216. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  217. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  218. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  219. package/artifacts/contracts/shared/IService.sol/IService.json +17 -6
  220. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  221. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  222. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  223. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  224. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  225. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +793 -0
  226. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  227. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
  228. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  229. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
  230. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  231. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  232. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  233. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +12 -70
  234. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  235. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  236. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  237. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +18 -106
  238. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  239. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  240. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  241. package/artifacts/contracts/shared/Service.sol/Service.json +19 -115
  242. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  243. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
  244. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  245. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
  246. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  247. package/artifacts/contracts/{components/Distribution.sol/Distribution.json → staking/IStaking.sol/IStaking.json} +684 -575
  248. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  249. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  250. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  251. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  252. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  253. package/artifacts/contracts/staking/Staking.sol/Staking.json +1828 -0
  254. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  255. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  256. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  257. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +750 -0
  258. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  259. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  260. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  261. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1236 -0
  262. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  263. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +698 -0
  264. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  265. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
  266. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  267. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  268. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  269. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  270. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
  272. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  273. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  274. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  276. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  278. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  279. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  280. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  281. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  282. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  284. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  285. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  286. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  287. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  288. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  289. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  290. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  291. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  292. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  293. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  294. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  295. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +142 -0
  296. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  297. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  298. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  299. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  300. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  301. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  302. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  303. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  304. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  305. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  306. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  307. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  308. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  310. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  311. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  312. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  313. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
  314. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  316. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  317. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  318. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  319. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  320. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  321. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +586 -0
  322. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  323. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  324. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  325. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  326. package/contracts/authorization/AccessAdmin.sol +592 -0
  327. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  328. package/contracts/authorization/Authorization.sol +217 -0
  329. package/contracts/authorization/IAccess.sol +48 -0
  330. package/contracts/authorization/IAccessAdmin.sol +135 -0
  331. package/contracts/authorization/IAuthorization.sol +54 -0
  332. package/contracts/authorization/IModuleAuthorization.sol +21 -0
  333. package/contracts/authorization/IServiceAuthorization.sol +38 -0
  334. package/contracts/authorization/ModuleAuthorization.sol +78 -0
  335. package/contracts/authorization/ServiceAuthorization.sol +90 -0
  336. package/contracts/distribution/BasicDistribution.sol +138 -0
  337. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  338. package/contracts/{components → distribution}/Distribution.sol +178 -163
  339. package/contracts/distribution/DistributionService.sol +336 -0
  340. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  341. package/contracts/distribution/IDistributionComponent.sol +52 -0
  342. package/contracts/{instance/service → distribution}/IDistributionService.sol +40 -38
  343. package/contracts/examples/fire/FirePool.sol +75 -0
  344. package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
  345. package/contracts/examples/fire/FireProduct.sol +323 -0
  346. package/contracts/examples/fire/FireProductAuthorization.sol +36 -0
  347. package/contracts/examples/fire/FireUSD.sol +26 -0
  348. package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
  349. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  350. package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
  351. package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
  352. package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
  353. package/contracts/instance/IInstance.sol +38 -73
  354. package/contracts/instance/IInstanceService.sol +50 -30
  355. package/contracts/instance/Instance.sol +147 -245
  356. package/contracts/instance/InstanceAdmin.sol +285 -0
  357. package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
  358. package/contracts/instance/InstanceReader.sol +202 -63
  359. package/contracts/instance/InstanceService.sol +305 -334
  360. package/contracts/instance/InstanceServiceManager.sol +14 -29
  361. package/contracts/instance/InstanceStore.sol +287 -0
  362. package/contracts/instance/base/BalanceStore.sol +123 -0
  363. package/contracts/instance/base/Cloneable.sol +28 -0
  364. package/contracts/instance/base/ObjectCounter.sol +21 -0
  365. package/contracts/instance/base/ObjectLifecycle.sol +111 -0
  366. package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +18 -21
  367. package/contracts/instance/module/IAccess.sol +4 -12
  368. package/contracts/instance/module/IBundle.sol +6 -9
  369. package/contracts/instance/module/IComponents.sol +20 -15
  370. package/contracts/instance/module/IDistribution.sol +6 -6
  371. package/contracts/instance/module/IPolicy.sol +47 -35
  372. package/contracts/instance/module/IRisk.sol +1 -1
  373. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  374. package/contracts/oracle/BasicOracle.sol +48 -0
  375. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  376. package/contracts/oracle/IOracle.sol +36 -0
  377. package/contracts/oracle/IOracleComponent.sol +33 -0
  378. package/contracts/oracle/IOracleService.sol +65 -0
  379. package/contracts/oracle/Oracle.sol +167 -0
  380. package/contracts/oracle/OracleService.sol +281 -0
  381. package/contracts/oracle/OracleServiceManager.sol +39 -0
  382. package/contracts/pool/BasicPool.sol +166 -0
  383. package/contracts/pool/BasicPoolAuthorization.sol +58 -0
  384. package/contracts/pool/BundleService.sol +438 -0
  385. package/contracts/pool/BundleServiceManager.sol +39 -0
  386. package/contracts/pool/IBundleService.sol +134 -0
  387. package/contracts/pool/IPoolComponent.sol +58 -0
  388. package/contracts/pool/IPoolService.sol +160 -0
  389. package/contracts/pool/Pool.sol +326 -0
  390. package/contracts/pool/PoolService.sol +508 -0
  391. package/contracts/pool/PoolServiceManager.sol +39 -0
  392. package/contracts/product/ApplicationService.sol +247 -0
  393. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  394. package/contracts/product/BasicProduct.sol +53 -0
  395. package/contracts/product/BasicProductAuthorization.sol +43 -0
  396. package/contracts/product/ClaimService.sol +546 -0
  397. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  398. package/contracts/{instance/service → product}/IApplicationService.sol +16 -35
  399. package/contracts/product/IClaimService.sol +122 -0
  400. package/contracts/product/IPolicyService.sol +77 -0
  401. package/contracts/product/IPricingService.sol +39 -0
  402. package/contracts/product/IProductComponent.sol +39 -0
  403. package/contracts/product/IRiskService.sol +33 -0
  404. package/contracts/product/PolicyService.sol +651 -0
  405. package/contracts/product/PolicyServiceManager.sol +39 -0
  406. package/contracts/product/PricingService.sol +300 -0
  407. package/contracts/product/PricingServiceManager.sol +39 -0
  408. package/contracts/product/Product.sol +425 -0
  409. package/contracts/product/RiskService.sol +96 -0
  410. package/contracts/product/RiskServiceManager.sol +39 -0
  411. package/contracts/registry/ChainNft.sol +72 -32
  412. package/contracts/registry/IRegistry.sol +92 -25
  413. package/contracts/registry/IRegistryService.sol +42 -41
  414. package/contracts/registry/Registry.sol +427 -192
  415. package/contracts/registry/RegistryAdmin.sol +464 -0
  416. package/contracts/registry/RegistryService.sol +70 -100
  417. package/contracts/registry/RegistryServiceManager.sol +23 -32
  418. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  419. package/contracts/registry/ReleaseRegistry.sol +491 -0
  420. package/contracts/registry/ServiceAuthorizationV3.sol +199 -0
  421. package/contracts/registry/TokenRegistry.sol +261 -62
  422. package/contracts/shared/Component.sol +268 -0
  423. package/contracts/shared/ComponentService.sol +641 -0
  424. package/contracts/shared/ComponentServiceManager.sol +38 -0
  425. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  426. package/contracts/shared/ContractLib.sol +38 -0
  427. package/contracts/shared/IComponent.sol +70 -0
  428. package/contracts/shared/IComponentService.sol +108 -0
  429. package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
  430. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  431. package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
  432. package/contracts/shared/INftOwnable.sol +2 -2
  433. package/contracts/shared/IPolicyHolder.sol +23 -14
  434. package/contracts/shared/IRegistryLinked.sol +0 -1
  435. package/contracts/shared/IService.sol +12 -3
  436. package/contracts/shared/InitializableCustom.sol +177 -0
  437. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
  438. package/contracts/shared/InstanceLinkedComponent.sol +172 -0
  439. package/contracts/shared/KeyValueStore.sol +131 -0
  440. package/contracts/shared/Lifecycle.sol +77 -0
  441. package/contracts/shared/NftIdSet.sol +65 -0
  442. package/contracts/shared/NftOwnable.sol +10 -23
  443. package/contracts/shared/PolicyHolder.sol +19 -42
  444. package/contracts/shared/Registerable.sol +17 -16
  445. package/contracts/shared/RegistryLinked.sol +3 -7
  446. package/contracts/shared/Service.sol +48 -33
  447. package/contracts/shared/TokenHandler.sol +115 -9
  448. package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
  449. package/contracts/staking/IStaking.sol +168 -0
  450. package/contracts/staking/IStakingService.sol +160 -0
  451. package/contracts/staking/StakeManagerLib.sol +224 -0
  452. package/contracts/staking/Staking.sol +498 -0
  453. package/contracts/staking/StakingLifecycle.sol +23 -0
  454. package/contracts/staking/StakingManager.sol +52 -0
  455. package/contracts/staking/StakingReader.sol +183 -0
  456. package/contracts/staking/StakingService.sol +407 -0
  457. package/contracts/staking/StakingServiceManager.sol +44 -0
  458. package/contracts/staking/StakingStore.sol +605 -0
  459. package/contracts/staking/TargetManagerLib.sol +211 -0
  460. package/contracts/{types → type}/AddressSet.sol +1 -1
  461. package/contracts/type/Amount.sol +135 -0
  462. package/contracts/{types → type}/Blocknumber.sol +26 -3
  463. package/contracts/{types → type}/ClaimId.sol +25 -2
  464. package/contracts/{types → type}/Fee.sol +24 -22
  465. package/contracts/{types → type}/NftId.sol +15 -16
  466. package/contracts/{types → type}/NftIdSet.sol +2 -2
  467. package/contracts/type/ObjectType.sol +275 -0
  468. package/contracts/{types → type}/PayoutId.sol +33 -5
  469. package/contracts/{types → type}/Referral.sol +2 -1
  470. package/contracts/type/RequestId.sol +75 -0
  471. package/contracts/{types → type}/RiskId.sol +16 -2
  472. package/contracts/type/RoleId.sol +174 -0
  473. package/contracts/type/Seconds.sol +101 -0
  474. package/contracts/type/Selector.sol +102 -0
  475. package/contracts/{types → type}/StateId.sol +34 -4
  476. package/contracts/type/String.sol +53 -0
  477. package/contracts/{types → type}/Timestamp.sol +21 -2
  478. package/contracts/{types → type}/UFixed.sol +34 -9
  479. package/contracts/{types → type}/Version.sol +4 -2
  480. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  481. package/contracts/{shared → upgradeability}/ProxyManager.sol +92 -30
  482. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  483. package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
  484. package/package.json +8 -5
  485. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  486. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  487. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  488. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  489. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  490. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  491. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  492. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  493. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  494. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  495. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  496. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
  497. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  498. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  499. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1330
  500. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  501. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
  502. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  503. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  504. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  505. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  506. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
  507. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  508. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
  509. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  510. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  511. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  512. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  513. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -1039
  514. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  515. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -673
  516. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  517. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1231
  518. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  519. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -721
  520. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  521. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -817
  522. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  523. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -641
  524. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  525. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1798
  526. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  527. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
  528. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  529. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  530. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  531. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  532. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  533. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  534. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  535. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  536. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1092
  537. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  538. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -697
  539. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  540. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1237
  541. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  542. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -661
  543. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  544. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -840
  545. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  546. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -653
  547. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  548. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  549. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  550. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
  551. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  552. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  553. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  554. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  555. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  556. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  557. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  558. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  559. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  560. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  561. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  562. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  563. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  564. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  565. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  566. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  567. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  568. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -596
  569. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  570. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  571. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  572. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  573. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  574. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  575. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  576. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  577. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  578. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  579. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
  580. package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -161
  581. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  582. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  583. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  584. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  585. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  586. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  587. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  588. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  589. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  590. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -288
  591. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  592. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  593. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  594. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  595. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  596. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  597. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  598. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  599. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  600. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  601. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  602. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  603. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  604. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  605. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  606. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  607. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  608. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  609. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  610. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  611. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  612. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  613. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  614. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  615. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  616. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  617. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  618. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  619. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  620. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  621. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  622. package/contracts/components/Component.sol +0 -253
  623. package/contracts/components/IComponent.sol +0 -76
  624. package/contracts/components/IDistributionComponent.sol +0 -71
  625. package/contracts/components/IPoolComponent.sol +0 -113
  626. package/contracts/components/IProductComponent.sol +0 -40
  627. package/contracts/components/Pool.sol +0 -303
  628. package/contracts/components/Product.sol +0 -293
  629. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
  630. package/contracts/instance/Cloneable.sol +0 -51
  631. package/contracts/instance/InstanceAccessManager.sol +0 -527
  632. package/contracts/instance/base/ComponentService.sol +0 -121
  633. package/contracts/instance/base/KeyValueStore.sol +0 -180
  634. package/contracts/instance/base/Lifecycle.sol +0 -109
  635. package/contracts/instance/module/ISetup.sol +0 -33
  636. package/contracts/instance/module/ITreasury.sol +0 -23
  637. package/contracts/instance/service/ApplicationService.sol +0 -350
  638. package/contracts/instance/service/BundleService.sol +0 -431
  639. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  640. package/contracts/instance/service/ClaimService.sol +0 -151
  641. package/contracts/instance/service/DistributionService.sol +0 -435
  642. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  643. package/contracts/instance/service/IBundleService.sol +0 -93
  644. package/contracts/instance/service/IClaimService.sol +0 -61
  645. package/contracts/instance/service/IPolicyService.sol +0 -72
  646. package/contracts/instance/service/IPoolService.sol +0 -99
  647. package/contracts/instance/service/IProductService.sol +0 -40
  648. package/contracts/instance/service/PolicyService.sol +0 -362
  649. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  650. package/contracts/instance/service/PoolService.sol +0 -303
  651. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  652. package/contracts/instance/service/ProductService.sol +0 -210
  653. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  654. package/contracts/registry/RegistryAccessManager.sol +0 -216
  655. package/contracts/registry/ReleaseManager.sol +0 -324
  656. package/contracts/shared/ContractDeployerLib.sol +0 -72
  657. package/contracts/test/TestFee.sol +0 -25
  658. package/contracts/test/TestRegisterable.sol +0 -18
  659. package/contracts/test/TestRoleId.sol +0 -14
  660. package/contracts/test/TestService.sol +0 -25
  661. package/contracts/test/TestToken.sol +0 -26
  662. package/contracts/test/TestVersion.sol +0 -44
  663. package/contracts/test/TestVersionable.sol +0 -17
  664. package/contracts/types/Amount.sol +0 -60
  665. package/contracts/types/ChainId.sol +0 -38
  666. package/contracts/types/NumberId.sol +0 -52
  667. package/contracts/types/ObjectType.sol +0 -157
  668. package/contracts/types/RoleId.sol +0 -97
  669. package/contracts/types/Seconds.sol +0 -54
  670. /package/contracts/{types → type}/DistributorType.sol +0 -0
  671. /package/contracts/{types → type}/Key32.sol +0 -0
@@ -98,7 +98,7 @@
98
98
  "type": "address"
99
99
  }
100
100
  ],
101
- "name": "InvalidAddress",
101
+ "name": "ErrorRegistryServiceInvalidAddress",
102
102
  "type": "error"
103
103
  },
104
104
  {
@@ -109,77 +109,216 @@
109
109
  "type": "address"
110
110
  }
111
111
  ],
112
- "name": "InvalidInitialOwner",
112
+ "name": "ErrorRegistryServiceInvalidInitialOwner",
113
113
  "type": "error"
114
114
  },
115
115
  {
116
- "inputs": [],
117
- "name": "InvalidInitialization",
116
+ "inputs": [
117
+ {
118
+ "internalType": "address",
119
+ "name": "notComponent",
120
+ "type": "address"
121
+ }
122
+ ],
123
+ "name": "ErrorRegistryServiceNotComponent",
118
124
  "type": "error"
119
125
  },
120
126
  {
121
- "inputs": [],
122
- "name": "NotDistribution",
127
+ "inputs": [
128
+ {
129
+ "internalType": "address",
130
+ "name": "notDistribution",
131
+ "type": "address"
132
+ }
133
+ ],
134
+ "name": "ErrorRegistryServiceNotDistribution",
123
135
  "type": "error"
124
136
  },
125
137
  {
126
- "inputs": [],
127
- "name": "NotInitializing",
138
+ "inputs": [
139
+ {
140
+ "internalType": "address",
141
+ "name": "notInstance",
142
+ "type": "address"
143
+ }
144
+ ],
145
+ "name": "ErrorRegistryServiceNotInstance",
128
146
  "type": "error"
129
147
  },
130
148
  {
131
- "inputs": [],
132
- "name": "NotInstance",
149
+ "inputs": [
150
+ {
151
+ "internalType": "address",
152
+ "name": "notPool",
153
+ "type": "address"
154
+ }
155
+ ],
156
+ "name": "ErrorRegistryServiceNotPool",
133
157
  "type": "error"
134
158
  },
135
159
  {
136
- "inputs": [],
137
- "name": "NotPool",
160
+ "inputs": [
161
+ {
162
+ "internalType": "address",
163
+ "name": "notProduct",
164
+ "type": "address"
165
+ }
166
+ ],
167
+ "name": "ErrorRegistryServiceNotProduct",
138
168
  "type": "error"
139
169
  },
140
170
  {
141
171
  "inputs": [],
142
- "name": "NotProduct",
172
+ "name": "ErrorRegistryServiceNotRegistryOwner",
143
173
  "type": "error"
144
174
  },
145
175
  {
146
176
  "inputs": [
147
177
  {
148
178
  "internalType": "address",
149
- "name": "expectedOwner",
179
+ "name": "notService",
150
180
  "type": "address"
151
181
  }
152
182
  ],
153
- "name": "NotRegisterableOwner",
183
+ "name": "ErrorRegistryServiceNotService",
154
184
  "type": "error"
155
185
  },
156
186
  {
157
- "inputs": [],
158
- "name": "NotRegistryOwner",
187
+ "inputs": [
188
+ {
189
+ "internalType": "ObjectType",
190
+ "name": "objectType",
191
+ "type": "uint8"
192
+ }
193
+ ],
194
+ "name": "ErrorRegistryServiceObjectAddressNotZero",
159
195
  "type": "error"
160
196
  },
161
197
  {
162
- "inputs": [],
163
- "name": "NotService",
198
+ "inputs": [
199
+ {
200
+ "internalType": "ObjectType",
201
+ "name": "objectType",
202
+ "type": "uint8"
203
+ },
204
+ {
205
+ "internalType": "address",
206
+ "name": "owner",
207
+ "type": "address"
208
+ }
209
+ ],
210
+ "name": "ErrorRegistryServiceObjectOwnerRegistered",
164
211
  "type": "error"
165
212
  },
166
213
  {
167
- "inputs": [],
168
- "name": "RegisterableOwnerIsRegistered",
214
+ "inputs": [
215
+ {
216
+ "internalType": "ObjectType",
217
+ "name": "objectType",
218
+ "type": "uint8"
219
+ }
220
+ ],
221
+ "name": "ErrorRegistryServiceObjectOwnerZero",
169
222
  "type": "error"
170
223
  },
171
224
  {
172
- "inputs": [],
173
- "name": "RegisterableOwnerIsZero",
225
+ "inputs": [
226
+ {
227
+ "internalType": "ObjectType",
228
+ "name": "expected",
229
+ "type": "uint8"
230
+ },
231
+ {
232
+ "internalType": "ObjectType",
233
+ "name": "found",
234
+ "type": "uint8"
235
+ }
236
+ ],
237
+ "name": "ErrorRegistryServiceObjectTypeInvalid",
174
238
  "type": "error"
175
239
  },
176
240
  {
177
- "inputs": [],
178
- "name": "SelfRegistration",
241
+ "inputs": [
242
+ {
243
+ "internalType": "contract IRegisterable",
244
+ "name": "registerable",
245
+ "type": "address"
246
+ },
247
+ {
248
+ "internalType": "address",
249
+ "name": "found",
250
+ "type": "address"
251
+ }
252
+ ],
253
+ "name": "ErrorRegistryServiceRegisterableAddressInvalid",
179
254
  "type": "error"
180
255
  },
181
256
  {
182
257
  "inputs": [
258
+ {
259
+ "internalType": "contract IRegisterable",
260
+ "name": "registerable",
261
+ "type": "address"
262
+ },
263
+ {
264
+ "internalType": "address",
265
+ "name": "expected",
266
+ "type": "address"
267
+ },
268
+ {
269
+ "internalType": "address",
270
+ "name": "found",
271
+ "type": "address"
272
+ }
273
+ ],
274
+ "name": "ErrorRegistryServiceRegisterableOwnerInvalid",
275
+ "type": "error"
276
+ },
277
+ {
278
+ "inputs": [
279
+ {
280
+ "internalType": "contract IRegisterable",
281
+ "name": "registerable",
282
+ "type": "address"
283
+ },
284
+ {
285
+ "internalType": "address",
286
+ "name": "owner",
287
+ "type": "address"
288
+ }
289
+ ],
290
+ "name": "ErrorRegistryServiceRegisterableOwnerRegistered",
291
+ "type": "error"
292
+ },
293
+ {
294
+ "inputs": [
295
+ {
296
+ "internalType": "contract IRegisterable",
297
+ "name": "registerable",
298
+ "type": "address"
299
+ }
300
+ ],
301
+ "name": "ErrorRegistryServiceRegisterableOwnerZero",
302
+ "type": "error"
303
+ },
304
+ {
305
+ "inputs": [
306
+ {
307
+ "internalType": "contract IRegisterable",
308
+ "name": "registerable",
309
+ "type": "address"
310
+ }
311
+ ],
312
+ "name": "ErrorRegistryServiceRegisterableSelfRegistration",
313
+ "type": "error"
314
+ },
315
+ {
316
+ "inputs": [
317
+ {
318
+ "internalType": "contract IRegisterable",
319
+ "name": "registerable",
320
+ "type": "address"
321
+ },
183
322
  {
184
323
  "internalType": "ObjectType",
185
324
  "name": "expected",
@@ -191,7 +330,27 @@
191
330
  "type": "uint8"
192
331
  }
193
332
  ],
194
- "name": "UnexpectedRegisterableType",
333
+ "name": "ErrorRegistryServiceRegisterableTypeInvalid",
334
+ "type": "error"
335
+ },
336
+ {
337
+ "inputs": [],
338
+ "name": "ErrorServiceNotImplemented",
339
+ "type": "error"
340
+ },
341
+ {
342
+ "inputs": [],
343
+ "name": "InvalidInitialization",
344
+ "type": "error"
345
+ },
346
+ {
347
+ "inputs": [],
348
+ "name": "NotInitializing",
349
+ "type": "error"
350
+ },
351
+ {
352
+ "inputs": [],
353
+ "name": "ReentrancyGuardReentrantCall",
195
354
  "type": "error"
196
355
  },
197
356
  {
@@ -285,31 +444,6 @@
285
444
  "stateMutability": "pure",
286
445
  "type": "function"
287
446
  },
288
- {
289
- "inputs": [],
290
- "name": "getFunctionConfigs",
291
- "outputs": [
292
- {
293
- "components": [
294
- {
295
- "internalType": "ObjectType",
296
- "name": "serviceDomain",
297
- "type": "uint8"
298
- },
299
- {
300
- "internalType": "bytes4[]",
301
- "name": "selectors",
302
- "type": "bytes4[]"
303
- }
304
- ],
305
- "internalType": "struct IRegistryService.FunctionConfig[]",
306
- "name": "config",
307
- "type": "tuple[]"
308
- }
309
- ],
310
- "stateMutability": "pure",
311
- "type": "function"
312
- },
313
447
  {
314
448
  "inputs": [],
315
449
  "name": "getInitialInfo",
@@ -401,15 +535,15 @@
401
535
  },
402
536
  {
403
537
  "inputs": [],
404
- "name": "getRegistryAddress",
538
+ "name": "getRoleId",
405
539
  "outputs": [
406
540
  {
407
- "internalType": "address",
408
- "name": "",
409
- "type": "address"
541
+ "internalType": "RoleId",
542
+ "name": "serviceRoleId",
543
+ "type": "uint64"
410
544
  }
411
545
  ],
412
- "stateMutability": "view",
546
+ "stateMutability": "pure",
413
547
  "type": "function"
414
548
  },
415
549
  {
@@ -425,105 +559,6 @@
425
559
  "stateMutability": "pure",
426
560
  "type": "function"
427
561
  },
428
- {
429
- "inputs": [],
430
- "name": "initializeERC165",
431
- "outputs": [],
432
- "stateMutability": "nonpayable",
433
- "type": "function"
434
- },
435
- {
436
- "inputs": [
437
- {
438
- "internalType": "address",
439
- "name": "initialOwner",
440
- "type": "address"
441
- },
442
- {
443
- "internalType": "address",
444
- "name": "registryAddress",
445
- "type": "address"
446
- }
447
- ],
448
- "name": "initializeNftOwnable",
449
- "outputs": [],
450
- "stateMutability": "nonpayable",
451
- "type": "function"
452
- },
453
- {
454
- "inputs": [
455
- {
456
- "internalType": "address",
457
- "name": "registryAddress",
458
- "type": "address"
459
- },
460
- {
461
- "internalType": "NftId",
462
- "name": "parentNftId",
463
- "type": "uint96"
464
- },
465
- {
466
- "internalType": "ObjectType",
467
- "name": "objectType",
468
- "type": "uint8"
469
- },
470
- {
471
- "internalType": "bool",
472
- "name": "isInterceptor",
473
- "type": "bool"
474
- },
475
- {
476
- "internalType": "address",
477
- "name": "initialOwner",
478
- "type": "address"
479
- },
480
- {
481
- "internalType": "bytes",
482
- "name": "registryData",
483
- "type": "bytes"
484
- }
485
- ],
486
- "name": "initializeRegisterable",
487
- "outputs": [],
488
- "stateMutability": "nonpayable",
489
- "type": "function"
490
- },
491
- {
492
- "inputs": [
493
- {
494
- "internalType": "address",
495
- "name": "registryAddress",
496
- "type": "address"
497
- }
498
- ],
499
- "name": "initializeRegistryLinked",
500
- "outputs": [],
501
- "stateMutability": "nonpayable",
502
- "type": "function"
503
- },
504
- {
505
- "inputs": [
506
- {
507
- "internalType": "address",
508
- "name": "registry",
509
- "type": "address"
510
- },
511
- {
512
- "internalType": "address",
513
- "name": "authority",
514
- "type": "address"
515
- },
516
- {
517
- "internalType": "address",
518
- "name": "initialOwner",
519
- "type": "address"
520
- }
521
- ],
522
- "name": "initializeService",
523
- "outputs": [],
524
- "stateMutability": "nonpayable",
525
- "type": "function"
526
- },
527
562
  {
528
563
  "inputs": [
529
564
  {
@@ -558,7 +593,13 @@
558
593
  {
559
594
  "inputs": [],
560
595
  "name": "linkToRegisteredNftId",
561
- "outputs": [],
596
+ "outputs": [
597
+ {
598
+ "internalType": "NftId",
599
+ "name": "nftId",
600
+ "type": "uint96"
601
+ }
602
+ ],
562
603
  "stateMutability": "nonpayable",
563
604
  "type": "function"
564
605
  },
@@ -618,6 +659,72 @@
618
659
  "stateMutability": "nonpayable",
619
660
  "type": "function"
620
661
  },
662
+ {
663
+ "inputs": [
664
+ {
665
+ "internalType": "contract IComponent",
666
+ "name": "component",
667
+ "type": "address"
668
+ },
669
+ {
670
+ "internalType": "ObjectType",
671
+ "name": "objectType",
672
+ "type": "uint8"
673
+ },
674
+ {
675
+ "internalType": "address",
676
+ "name": "initialOwner",
677
+ "type": "address"
678
+ }
679
+ ],
680
+ "name": "registerComponent",
681
+ "outputs": [
682
+ {
683
+ "components": [
684
+ {
685
+ "internalType": "NftId",
686
+ "name": "nftId",
687
+ "type": "uint96"
688
+ },
689
+ {
690
+ "internalType": "NftId",
691
+ "name": "parentNftId",
692
+ "type": "uint96"
693
+ },
694
+ {
695
+ "internalType": "ObjectType",
696
+ "name": "objectType",
697
+ "type": "uint8"
698
+ },
699
+ {
700
+ "internalType": "bool",
701
+ "name": "isInterceptor",
702
+ "type": "bool"
703
+ },
704
+ {
705
+ "internalType": "address",
706
+ "name": "objectAddress",
707
+ "type": "address"
708
+ },
709
+ {
710
+ "internalType": "address",
711
+ "name": "initialOwner",
712
+ "type": "address"
713
+ },
714
+ {
715
+ "internalType": "bytes",
716
+ "name": "data",
717
+ "type": "bytes"
718
+ }
719
+ ],
720
+ "internalType": "struct IRegistry.ObjectInfo",
721
+ "name": "info",
722
+ "type": "tuple"
723
+ }
724
+ ],
725
+ "stateMutability": "nonpayable",
726
+ "type": "function"
727
+ },
621
728
  {
622
729
  "inputs": [
623
730
  {
@@ -796,19 +903,6 @@
796
903
  "stateMutability": "nonpayable",
797
904
  "type": "function"
798
905
  },
799
- {
800
- "inputs": [
801
- {
802
- "internalType": "bytes4",
803
- "name": "interfaceId",
804
- "type": "bytes4"
805
- }
806
- ],
807
- "name": "registerInterface",
808
- "outputs": [],
809
- "stateMutability": "nonpayable",
810
- "type": "function"
811
- },
812
906
  {
813
907
  "inputs": [
814
908
  {
@@ -1043,6 +1137,67 @@
1043
1137
  "stateMutability": "nonpayable",
1044
1138
  "type": "function"
1045
1139
  },
1140
+ {
1141
+ "inputs": [
1142
+ {
1143
+ "internalType": "contract IRegisterable",
1144
+ "name": "staking",
1145
+ "type": "address"
1146
+ },
1147
+ {
1148
+ "internalType": "address",
1149
+ "name": "owner",
1150
+ "type": "address"
1151
+ }
1152
+ ],
1153
+ "name": "registerStaking",
1154
+ "outputs": [
1155
+ {
1156
+ "components": [
1157
+ {
1158
+ "internalType": "NftId",
1159
+ "name": "nftId",
1160
+ "type": "uint96"
1161
+ },
1162
+ {
1163
+ "internalType": "NftId",
1164
+ "name": "parentNftId",
1165
+ "type": "uint96"
1166
+ },
1167
+ {
1168
+ "internalType": "ObjectType",
1169
+ "name": "objectType",
1170
+ "type": "uint8"
1171
+ },
1172
+ {
1173
+ "internalType": "bool",
1174
+ "name": "isInterceptor",
1175
+ "type": "bool"
1176
+ },
1177
+ {
1178
+ "internalType": "address",
1179
+ "name": "objectAddress",
1180
+ "type": "address"
1181
+ },
1182
+ {
1183
+ "internalType": "address",
1184
+ "name": "initialOwner",
1185
+ "type": "address"
1186
+ },
1187
+ {
1188
+ "internalType": "bytes",
1189
+ "name": "data",
1190
+ "type": "bytes"
1191
+ }
1192
+ ],
1193
+ "internalType": "struct IRegistry.ObjectInfo",
1194
+ "name": "info",
1195
+ "type": "tuple"
1196
+ }
1197
+ ],
1198
+ "stateMutability": "nonpayable",
1199
+ "type": "function"
1200
+ },
1046
1201
  {
1047
1202
  "inputs": [
1048
1203
  {
@@ -1089,68 +1244,100 @@
1089
1244
  "type": "function"
1090
1245
  }
1091
1246
  ],
1092
- "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612ec480620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063675393bf1161010f578063ada9652e116100a2578063c2bf08c811610071578063c2bf08c814610472578063ed841d0c14610485578063f21de1e814610339578063f7c34ee01461048d57600080fd5b8063ada9652e14610431578063b68d180914610446578063bf7e214f14610455578063c13de9971461045d57600080fd5b8063893d20e8116100de578063893d20e8146103ee5780638e32e979146103f65780638fb36037146104095780638fbc2d811461041e57600080fd5b8063675393bf146103a25780637286e5e5146103b55780637a9e5e4b146103c85780638105cc7f146103db57600080fd5b8063329d6e74116101875780635ab1bd53116101565780635ab1bd53146103395780635c992fed1461035e5780635d96628914610371578063644c45e01461038457600080fd5b8063329d6e74146102e057806336fc697e146102f357806349bb9e4b146102fb57806357a8fba71461030e57600080fd5b8063138461e0116101c3578063138461e01461027b5780631eff4b2214610285578063214cdb80146102ba57806327bb7a33146102cd57600080fd5b806301ffc9a7146101f5578063026bc43b146102375780630d8e6e2c146102575780630fec111c14610273575b600080fd5b610222610203366004612407565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61024a61024536600461245d565b6104a0565b60405161022e91906124e6565b61025f61063e565b60405162ffffff909116815260200161022e565b61024a6106c8565b610283610864565b005b6102ac7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b6102836102c8366004612407565b610a6b565b6102836102db3660046126af565b610a98565b6102836102ee366004612747565b610b24565b610283610c71565b61028361030936600461277b565b610cb7565b61032161031c3660046127ca565b610db6565b6040516001600160601b03909116815260200161022e565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161022e565b61032161036c3660046127ca565b610e45565b61024a61037f36600461245d565b610e5b565b600080516020612e2f833981519152546001600160601b0316610321565b6102836103b036600461289c565b610f9b565b61024a6103c336600461245d565b6110ae565b6102836103d636600461289c565b61115b565b6103216103e93660046127ca565b6111de565b6103466111f4565b6102836104043660046128b9565b61132b565b610411611564565b60405161022e9190612904565b61024a61042c36600461245d565b61159c565b6102ac600080516020612e2f83398151915281565b6040516028815260200161022e565b610346611649565b610465611665565b60405161022e9190612919565b6103216104803660046127ca565b611c51565b6102ac600081565b61028361049b36600461245d565b611c67565b6104a86123c9565b6104b5335b600036611cde565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906104e890632a78f40560e11b90600401612904565b602060405180830381865afa158015610505573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052991906129d1565b61054657604051636795c76360e01b815260040160405180910390fd5b6105538360465b84611de4565b90506105676001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b815260040161059291906124e6565b6020604051808303816000875af11580156105b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d591906129f9565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561062057600080fd5b505af1158015610634573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561069f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c39190612a16565b905090565b6106d06123c9565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301805460009391606084019161076090612a3b565b80601f016020809104026020016040519081016040528092919081815260200182805461078c90612a3b565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b50505050508152505090506040518060e001604052806107f7600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016108486111f4565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020612e2f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156108d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f791906129d1565b156109285780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061093b6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610983573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a791906129d1565b6109cf5760405163b9304b0d60e01b81526001600160a01b038216600482015260240161091f565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610a23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4791906129f9565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b610a73611fd4565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610aa0611fd4565b610aaa8287611c67565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610b1a8382612abb565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610b4661063e565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610b86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610baa9190612b7a565b600080516020612e6f8339815191528054600160401b900460ff1680610bdd575080546001600160401b03808416911610155b15610bfb5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610c258361200d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610c79611fd4565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020612e6f8339815191528054600160401b810460ff1615906001600160401b0316600081158015610cea5750825b90506000826001600160401b03166001148015610d065750303b155b905081158015610d14575080155b15610d325760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610d5c57845460ff60401b1916600160401b1785555b610d668787612015565b8315610dad57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6000610dc1336104ad565b610dcc82607a612134565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610dfc9085906004016124e6565b6020604051808303816000875af1158015610e1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3f91906129f9565b92915050565b6000610e50336104ad565b610dcc8260d3612134565b610e636123c9565b610e6c336104ad565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610e9f90631e63cf4560e01b90600401612904565b602060405180830381865afa158015610ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee091906129d1565b610efd57604051637a71998760e01b815260040160405180910390fd5b610f0883606e61054d565b9050610f1c6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610f4791906124e6565b6020604051808303816000875af1158015610f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8a91906129f9565b6001600160601b0316815292915050565b610fa3611fd4565b806001600160a01b03163b600003610fd95760405163fdeac91f60e01b81526001600160a01b038216600482015260240161091f565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a79061101f90630a3888e560e31b90600401612904565b602060405180830381865afa925050508015611058575060408051601f3d908101601f19168201909252611055918101906129d1565b60015b6110805760405163fdeac91f60e01b81526001600160a01b038216600482015260240161091f565b806110a95760405163fdeac91f60e01b81526001600160a01b038316600482015260240161091f565b505b50565b6110b66123c9565b6110bf336104ad565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906110f29063f20236f360e01b90600401612904565b602060405180830381865afa15801561110f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113391906129d1565b61115057604051636f61f64160e01b815260040160405180910390fd5b610f0883608c61054d565b33611164611649565b6001600160a01b0316816001600160a01b03161461119f5760405162d1953b60e31b81526001600160a01b038216600482015260240161091f565b816001600160a01b03163b6000036111d5576040516361798f2f60e11b81526001600160a01b038316600482015260240161091f565b6110a98261223a565b60006111e9336104ad565b610dcc826050612134565b600080600080516020612e2f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611264573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128891906129d1565b15611315576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156112eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130f9190612bae565b91505090565b54600160601b90046001600160a01b0316919050565b611333611fd4565b6113b383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611375573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139991906129f9565b603c60008560405180602001604052806000815250610a98565b6001600160a01b038216156113d0576113cb8261229b565b61153f565b60006113e46001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611444573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114689190612bd6565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156114ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d19190612bae565b905061153d816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611514573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115389190612bae565b61229b565b505b61154f634a531f3360e01b610a6b565b61155f63b68d180960e01b610a6b565b505050565b600080516020612e4f833981519152805460009190600160a01b900460ff1661158e57600061130f565b638fb3603760e01b91505090565b6115a46123c9565b6115ad336104ad565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906115e090637895d0ed60e01b90600401612904565b602060405180830381865afa1580156115fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061162191906129d1565b61163e576040516308707e3160e41b815260040160405180910390fd5b610f0883607861054d565b600080516020612e4f833981519152546001600160a01b031690565b6040805160088082526101208201909252606091816020015b60408051808201909152600081526060602082015281526020019060019003908161167e5790505090506116b060d390565b816000815181106116c3576116c3612bf3565b60209081029190910181015160ff929092169091526040805160008082529281019091529050816000815181106116fc576116fc612bf3565b60200260200101516020018190525061171360d290565b8160018151811061172657611726612bf3565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160018151811061176c5761176c612bf3565b602002602001015160200181905250635c992fed60e01b8160018151811061179657611796612bf3565b6020026020010151602001516000815181106117b4576117b4612bf3565b6001600160e01b0319909216602092830291909101909101526117d560d490565b816002815181106117e8576117e8612bf3565b60209081029190910181015160ff929092169091526040805160008152918201905281518290600290811061181f5761181f612bf3565b602002602001015160200181905250611836606e90565b8160038151811061184957611849612bf3565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160038151811061188f5761188f612bf3565b602002602001015160200181905250635d96628960e01b816003815181106118b9576118b9612bf3565b6020026020010151602001516000815181106118d7576118d7612bf3565b6001600160e01b0319909216602092830291909101909101526118f8608c90565b8160048151811061190b5761190b612bf3565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160048151811061195157611951612bf3565b602002602001015160200181905250637286e5e560e01b8160048151811061197b5761197b612bf3565b60200260200101516020015160008151811061199957611999612bf3565b6001600160e01b0319909216602092830291909101909101526119ba60dc90565b816005815181106119cd576119cd612bf3565b602090810291909101015160ff919091169052604080516001808252818301909252908160200160208202803683370190505081600581518110611a1357611a13612bf3565b60200260200101516020018190525063c2bf08c860e01b81600581518110611a3d57611a3d612bf3565b602002602001015160200151600081518110611a5b57611a5b612bf3565b6001600160e01b031990921660209283029190910190910152611a7c607890565b81600681518110611a8f57611a8f612bf3565b602090810291909101015160ff91909116905260408051600280825260608201909252908160200160208202803683370190505081600681518110611ad657611ad6612bf3565b602002602001015160200181905250638fbc2d8160e01b81600681518110611b0057611b00612bf3565b602002602001015160200151600081518110611b1e57611b1e612bf3565b6001600160e01b03199092166020928302919091019091015280516357a8fba760e01b9082906006908110611b5557611b55612bf3565b602002602001015160200151600181518110611b7357611b73612bf3565b6001600160e01b031990921660209283029190910190910152611b94604690565b81600781518110611ba757611ba7612bf3565b602090810291909101015160ff919091169052604080516001808252818301909252908160200160208202803683370190505081600781518110611bed57611bed612bf3565b60200260200101516020018190525063026bc43b60e01b81600781518110611c1757611c17612bf3565b602002602001015160200151600081518110611c3557611c35612bf3565b6001600160e01b03199092166020928302919091019091015290565b6000611c5c336104ad565b610dcc8260dc612134565b611c6f611fd4565b611c7881610f9b565b611c80610c71565b6001600160a01b038216611ca75760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020612e2f83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020612e4f833981519152600080611d19611cfb611649565b8730611d0b600460008a8c612c09565b611d1491612c33565b6122ac565b9150915081611ddc5763ffffffff811615611db957825460ff60a01b1916600160a01b178355611d47611649565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611d7693929190612c63565b600060405180830381600087803b158015611d9057600080fd5b505af1158015611da4573d6000803e3d6000fd5b5050845460ff60a01b1916855550611ddc9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161091f565b505050505050565b611dec6123c9565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611e2a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e529190810190612ce8565b6001600160a01b0385166080820152604081015190915060ff848116911614611ea1576040808201519051632208245760e11b815260ff8086166004830152909116602482015260440161091f565b60a08101516001600160a01b0380821690841614611edd5760405163dfc430cb60e01b81526001600160a01b038416600482015260240161091f565b846001600160a01b0316816001600160a01b031603611f0f576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611f3657604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611f8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fae91906129d1565b15611fcc57604051637142ceb360e11b815260040160405180910390fd5b509392505050565b600080516020612e6f83398151915254600160401b900460ff1661200b57604051631afcd79f60e31b815260040160405180910390fd5b565b6101f0611fd4565b600080516020612e6f8339815191528054600160401b810460ff1615906001600160401b03166000811580156120485750825b90506000826001600160401b031660011480156120645750303b155b905081158015612072575080155b156120905760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156120ba57845460ff60401b1916600160401b1785555b600080878060200190518101906120d19190612dab565b915091506120e082828b61132b565b6120f063aa745bc360e01b610a6b565b50508315610dad57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610da4565b60006080830152604082015160ff828116911614612178576040808301519051632208245760e11b815260ff8084166004830152909116602482015260440161091f565b60a08201516001600160a01b0381166121a457604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156121f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221c91906129d1565b1561155f57604051637142ceb360e11b815260040160405180910390fd5b600080516020612e4f83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6122a3611fd4565b6110ab816123b8565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161231b9190612dda565b600060405180830381855afa9150503d8060008114612356576040519150601f19603f3d011682016040523d82523d6000602084013e61235b565b606091505b509150915081156123ad57604081511061238d57808060200190518101906123839190612df6565b90945092506123ad565b60208151106123ad57808060200190518101906123aa91906129d1565b93505b505094509492505050565b6123c0611fd4565b6110ab8161223a565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561241957600080fd5b81356001600160e01b03198116811461243157600080fd5b9392505050565b6001600160a01b03811681146110ab57600080fd5b803561245881612438565b919050565b6000806040838503121561247057600080fd5b823561247b81612438565b9150602083013561248b81612438565b809150509250929050565b60005b838110156124b1578181015183820152602001612499565b50506000910152565b600081518084526124d2816020860160208601612496565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161254f60c08401826001600160a01b03169052565b5060c083015160e0808401526125696101008401826124ba565b949350505050565b6001600160601b03811681146110ab57600080fd5b803561245881612571565b60ff811681146110ab57600080fd5b803561245881612591565b80151581146110ab57600080fd5b8035612458816125ab565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156125fc576125fc6125c4565b60405290565b604051601f8201601f191681016001600160401b038111828210171561262a5761262a6125c4565b604052919050565b60006001600160401b0382111561264b5761264b6125c4565b50601f01601f191660200190565b600082601f83011261266a57600080fd5b813561267d61267882612632565b612602565b81815284602083860101111561269257600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c087890312156126c857600080fd5b86356126d381612438565b955060208701356126e381612571565b945060408701356126f381612591565b93506060870135612703816125ab565b9250608087013561271381612438565b915060a08701356001600160401b0381111561272e57600080fd5b61273a89828a01612659565b9150509295509295509295565b60006020828403121561275957600080fd5b81356001600160401b0381111561276f57600080fd5b61256984828501612659565b6000806040838503121561278e57600080fd5b823561279981612438565b915060208301356001600160401b038111156127b457600080fd5b6127c085828601612659565b9150509250929050565b6000602082840312156127dc57600080fd5b81356001600160401b03808211156127f357600080fd5b9083019060e0828603121561280757600080fd5b61280f6125da565b61281883612586565b815261282660208401612586565b6020820152612837604084016125a0565b6040820152612848606084016125b9565b60608201526128596080840161244d565b608082015261286a60a0840161244d565b60a082015260c08301358281111561288157600080fd5b61288d87828601612659565b60c08301525095945050505050565b6000602082840312156128ae57600080fd5b813561243181612438565b6000806000606084860312156128ce57600080fd5b83356128d981612438565b925060208401356128e981612438565b915060408401356128f981612438565b809150509250925092565b6001600160e01b031991909116815260200190565b60006020808301818452808551808352604092508286019150828160051b8701018488016000805b848110156129b757898403603f190186528251805160ff168552880151888501889052805188860181905290890190839060608701905b808310156129a25783516001600160e01b0319168252928b019260019290920191908b0190612978565b50978a01979550505091870191600101612941565b50919998505050505050505050565b8051612458816125ab565b6000602082840312156129e357600080fd5b8151612431816125ab565b805161245881612571565b600060208284031215612a0b57600080fd5b815161243181612571565b600060208284031215612a2857600080fd5b815162ffffff8116811461243157600080fd5b600181811c90821680612a4f57607f821691505b602082108103612a6f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561155f57600081815260208120601f850160051c81016020861015612a9c5750805b601f850160051c820191505b81811015611ddc57828155600101612aa8565b81516001600160401b03811115612ad457612ad46125c4565b612ae881612ae28454612a3b565b84612a75565b602080601f831160018114612b1d5760008415612b055750858301515b600019600386901b1c1916600185901b178555611ddc565b600085815260208120601f198616915b82811015612b4c57888601518255948401946001909101908401612b2d565b5085821015612b6a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612b8c57600080fd5b81516001600160401b038116811461243157600080fd5b805161245881612438565b600060208284031215612bc057600080fd5b815161243181612438565b805161245881612591565b600060208284031215612be857600080fd5b815161243181612591565b634e487b7160e01b600052603260045260246000fd5b60008085851115612c1957600080fd5b83861115612c2657600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612c5b5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612cb457600080fd5b8151612cc261267882612632565b818152846020838601011115612cd757600080fd5b612569826020830160208701612496565b600060208284031215612cfa57600080fd5b81516001600160401b0380821115612d1157600080fd5b9083019060e08286031215612d2557600080fd5b612d2d6125da565b612d36836129ee565b8152612d44602084016129ee565b6020820152612d5560408401612bcb565b6040820152612d66606084016129c6565b6060820152612d7760808401612ba3565b6080820152612d8860a08401612ba3565b60a082015260c083015182811115612d9f57600080fd5b61288d87828601612ca3565b60008060408385031215612dbe57600080fd5b8251612dc981612438565b602084015190925061248b81612438565b60008251612dec818460208701612496565b9190910192915050565b60008060408385031215612e0957600080fd5b8251612e14816125ab565b602084015190925063ffffffff8116811461248b57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220168bafe851d425e0cf8d0dbcb5da3eb811382966e5ac2876b5cd328907b3076e64736f6c63430008140033",
1093
- "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063675393bf1161010f578063ada9652e116100a2578063c2bf08c811610071578063c2bf08c814610472578063ed841d0c14610485578063f21de1e814610339578063f7c34ee01461048d57600080fd5b8063ada9652e14610431578063b68d180914610446578063bf7e214f14610455578063c13de9971461045d57600080fd5b8063893d20e8116100de578063893d20e8146103ee5780638e32e979146103f65780638fb36037146104095780638fbc2d811461041e57600080fd5b8063675393bf146103a25780637286e5e5146103b55780637a9e5e4b146103c85780638105cc7f146103db57600080fd5b8063329d6e74116101875780635ab1bd53116101565780635ab1bd53146103395780635c992fed1461035e5780635d96628914610371578063644c45e01461038457600080fd5b8063329d6e74146102e057806336fc697e146102f357806349bb9e4b146102fb57806357a8fba71461030e57600080fd5b8063138461e0116101c3578063138461e01461027b5780631eff4b2214610285578063214cdb80146102ba57806327bb7a33146102cd57600080fd5b806301ffc9a7146101f5578063026bc43b146102375780630d8e6e2c146102575780630fec111c14610273575b600080fd5b610222610203366004612407565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61024a61024536600461245d565b6104a0565b60405161022e91906124e6565b61025f61063e565b60405162ffffff909116815260200161022e565b61024a6106c8565b610283610864565b005b6102ac7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b6102836102c8366004612407565b610a6b565b6102836102db3660046126af565b610a98565b6102836102ee366004612747565b610b24565b610283610c71565b61028361030936600461277b565b610cb7565b61032161031c3660046127ca565b610db6565b6040516001600160601b03909116815260200161022e565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161022e565b61032161036c3660046127ca565b610e45565b61024a61037f36600461245d565b610e5b565b600080516020612e2f833981519152546001600160601b0316610321565b6102836103b036600461289c565b610f9b565b61024a6103c336600461245d565b6110ae565b6102836103d636600461289c565b61115b565b6103216103e93660046127ca565b6111de565b6103466111f4565b6102836104043660046128b9565b61132b565b610411611564565b60405161022e9190612904565b61024a61042c36600461245d565b61159c565b6102ac600080516020612e2f83398151915281565b6040516028815260200161022e565b610346611649565b610465611665565b60405161022e9190612919565b6103216104803660046127ca565b611c51565b6102ac600081565b61028361049b36600461245d565b611c67565b6104a86123c9565b6104b5335b600036611cde565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906104e890632a78f40560e11b90600401612904565b602060405180830381865afa158015610505573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052991906129d1565b61054657604051636795c76360e01b815260040160405180910390fd5b6105538360465b84611de4565b90506105676001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b815260040161059291906124e6565b6020604051808303816000875af11580156105b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d591906129f9565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561062057600080fd5b505af1158015610634573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561069f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c39190612a16565b905090565b6106d06123c9565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301805460009391606084019161076090612a3b565b80601f016020809104026020016040519081016040528092919081815260200182805461078c90612a3b565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b50505050508152505090506040518060e001604052806107f7600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016108486111f4565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020612e2f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156108d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f791906129d1565b156109285780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061093b6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610983573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a791906129d1565b6109cf5760405163b9304b0d60e01b81526001600160a01b038216600482015260240161091f565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610a23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4791906129f9565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b610a73611fd4565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610aa0611fd4565b610aaa8287611c67565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610b1a8382612abb565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610b4661063e565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610b86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610baa9190612b7a565b600080516020612e6f8339815191528054600160401b900460ff1680610bdd575080546001600160401b03808416911610155b15610bfb5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610c258361200d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610c79611fd4565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020612e6f8339815191528054600160401b810460ff1615906001600160401b0316600081158015610cea5750825b90506000826001600160401b03166001148015610d065750303b155b905081158015610d14575080155b15610d325760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610d5c57845460ff60401b1916600160401b1785555b610d668787612015565b8315610dad57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6000610dc1336104ad565b610dcc82607a612134565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610dfc9085906004016124e6565b6020604051808303816000875af1158015610e1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3f91906129f9565b92915050565b6000610e50336104ad565b610dcc8260d3612134565b610e636123c9565b610e6c336104ad565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610e9f90631e63cf4560e01b90600401612904565b602060405180830381865afa158015610ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee091906129d1565b610efd57604051637a71998760e01b815260040160405180910390fd5b610f0883606e61054d565b9050610f1c6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610f4791906124e6565b6020604051808303816000875af1158015610f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8a91906129f9565b6001600160601b0316815292915050565b610fa3611fd4565b806001600160a01b03163b600003610fd95760405163fdeac91f60e01b81526001600160a01b038216600482015260240161091f565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a79061101f90630a3888e560e31b90600401612904565b602060405180830381865afa925050508015611058575060408051601f3d908101601f19168201909252611055918101906129d1565b60015b6110805760405163fdeac91f60e01b81526001600160a01b038216600482015260240161091f565b806110a95760405163fdeac91f60e01b81526001600160a01b038316600482015260240161091f565b505b50565b6110b66123c9565b6110bf336104ad565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906110f29063f20236f360e01b90600401612904565b602060405180830381865afa15801561110f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113391906129d1565b61115057604051636f61f64160e01b815260040160405180910390fd5b610f0883608c61054d565b33611164611649565b6001600160a01b0316816001600160a01b03161461119f5760405162d1953b60e31b81526001600160a01b038216600482015260240161091f565b816001600160a01b03163b6000036111d5576040516361798f2f60e11b81526001600160a01b038316600482015260240161091f565b6110a98261223a565b60006111e9336104ad565b610dcc826050612134565b600080600080516020612e2f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611264573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128891906129d1565b15611315576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156112eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130f9190612bae565b91505090565b54600160601b90046001600160a01b0316919050565b611333611fd4565b6113b383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611375573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139991906129f9565b603c60008560405180602001604052806000815250610a98565b6001600160a01b038216156113d0576113cb8261229b565b61153f565b60006113e46001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611444573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114689190612bd6565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156114ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d19190612bae565b905061153d816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611514573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115389190612bae565b61229b565b505b61154f634a531f3360e01b610a6b565b61155f63b68d180960e01b610a6b565b505050565b600080516020612e4f833981519152805460009190600160a01b900460ff1661158e57600061130f565b638fb3603760e01b91505090565b6115a46123c9565b6115ad336104ad565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906115e090637895d0ed60e01b90600401612904565b602060405180830381865afa1580156115fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061162191906129d1565b61163e576040516308707e3160e41b815260040160405180910390fd5b610f0883607861054d565b600080516020612e4f833981519152546001600160a01b031690565b6040805160088082526101208201909252606091816020015b60408051808201909152600081526060602082015281526020019060019003908161167e5790505090506116b060d390565b816000815181106116c3576116c3612bf3565b60209081029190910181015160ff929092169091526040805160008082529281019091529050816000815181106116fc576116fc612bf3565b60200260200101516020018190525061171360d290565b8160018151811061172657611726612bf3565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160018151811061176c5761176c612bf3565b602002602001015160200181905250635c992fed60e01b8160018151811061179657611796612bf3565b6020026020010151602001516000815181106117b4576117b4612bf3565b6001600160e01b0319909216602092830291909101909101526117d560d490565b816002815181106117e8576117e8612bf3565b60209081029190910181015160ff929092169091526040805160008152918201905281518290600290811061181f5761181f612bf3565b602002602001015160200181905250611836606e90565b8160038151811061184957611849612bf3565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160038151811061188f5761188f612bf3565b602002602001015160200181905250635d96628960e01b816003815181106118b9576118b9612bf3565b6020026020010151602001516000815181106118d7576118d7612bf3565b6001600160e01b0319909216602092830291909101909101526118f8608c90565b8160048151811061190b5761190b612bf3565b602090810291909101015160ff91909116905260408051600180825281830190925290816020016020820280368337019050508160048151811061195157611951612bf3565b602002602001015160200181905250637286e5e560e01b8160048151811061197b5761197b612bf3565b60200260200101516020015160008151811061199957611999612bf3565b6001600160e01b0319909216602092830291909101909101526119ba60dc90565b816005815181106119cd576119cd612bf3565b602090810291909101015160ff919091169052604080516001808252818301909252908160200160208202803683370190505081600581518110611a1357611a13612bf3565b60200260200101516020018190525063c2bf08c860e01b81600581518110611a3d57611a3d612bf3565b602002602001015160200151600081518110611a5b57611a5b612bf3565b6001600160e01b031990921660209283029190910190910152611a7c607890565b81600681518110611a8f57611a8f612bf3565b602090810291909101015160ff91909116905260408051600280825260608201909252908160200160208202803683370190505081600681518110611ad657611ad6612bf3565b602002602001015160200181905250638fbc2d8160e01b81600681518110611b0057611b00612bf3565b602002602001015160200151600081518110611b1e57611b1e612bf3565b6001600160e01b03199092166020928302919091019091015280516357a8fba760e01b9082906006908110611b5557611b55612bf3565b602002602001015160200151600181518110611b7357611b73612bf3565b6001600160e01b031990921660209283029190910190910152611b94604690565b81600781518110611ba757611ba7612bf3565b602090810291909101015160ff919091169052604080516001808252818301909252908160200160208202803683370190505081600781518110611bed57611bed612bf3565b60200260200101516020018190525063026bc43b60e01b81600781518110611c1757611c17612bf3565b602002602001015160200151600081518110611c3557611c35612bf3565b6001600160e01b03199092166020928302919091019091015290565b6000611c5c336104ad565b610dcc8260dc612134565b611c6f611fd4565b611c7881610f9b565b611c80610c71565b6001600160a01b038216611ca75760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020612e2f83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020612e4f833981519152600080611d19611cfb611649565b8730611d0b600460008a8c612c09565b611d1491612c33565b6122ac565b9150915081611ddc5763ffffffff811615611db957825460ff60a01b1916600160a01b178355611d47611649565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611d7693929190612c63565b600060405180830381600087803b158015611d9057600080fd5b505af1158015611da4573d6000803e3d6000fd5b5050845460ff60a01b1916855550611ddc9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161091f565b505050505050565b611dec6123c9565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611e2a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e529190810190612ce8565b6001600160a01b0385166080820152604081015190915060ff848116911614611ea1576040808201519051632208245760e11b815260ff8086166004830152909116602482015260440161091f565b60a08101516001600160a01b0380821690841614611edd5760405163dfc430cb60e01b81526001600160a01b038416600482015260240161091f565b846001600160a01b0316816001600160a01b031603611f0f576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b038116611f3657604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611f8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fae91906129d1565b15611fcc57604051637142ceb360e11b815260040160405180910390fd5b509392505050565b600080516020612e6f83398151915254600160401b900460ff1661200b57604051631afcd79f60e31b815260040160405180910390fd5b565b6101f0611fd4565b600080516020612e6f8339815191528054600160401b810460ff1615906001600160401b03166000811580156120485750825b90506000826001600160401b031660011480156120645750303b155b905081158015612072575080155b156120905760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156120ba57845460ff60401b1916600160401b1785555b600080878060200190518101906120d19190612dab565b915091506120e082828b61132b565b6120f063aa745bc360e01b610a6b565b50508315610dad57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610da4565b60006080830152604082015160ff828116911614612178576040808301519051632208245760e11b815260ff8084166004830152909116602482015260440161091f565b60a08201516001600160a01b0381166121a457604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156121f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221c91906129d1565b1561155f57604051637142ceb360e11b815260040160405180910390fd5b600080516020612e4f83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6122a3611fd4565b6110ab816123b8565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161231b9190612dda565b600060405180830381855afa9150503d8060008114612356576040519150601f19603f3d011682016040523d82523d6000602084013e61235b565b606091505b509150915081156123ad57604081511061238d57808060200190518101906123839190612df6565b90945092506123ad565b60208151106123ad57808060200190518101906123aa91906129d1565b93505b505094509492505050565b6123c0611fd4565b6110ab8161223a565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561241957600080fd5b81356001600160e01b03198116811461243157600080fd5b9392505050565b6001600160a01b03811681146110ab57600080fd5b803561245881612438565b919050565b6000806040838503121561247057600080fd5b823561247b81612438565b9150602083013561248b81612438565b809150509250929050565b60005b838110156124b1578181015183820152602001612499565b50506000910152565b600081518084526124d2816020860160208601612496565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161254f60c08401826001600160a01b03169052565b5060c083015160e0808401526125696101008401826124ba565b949350505050565b6001600160601b03811681146110ab57600080fd5b803561245881612571565b60ff811681146110ab57600080fd5b803561245881612591565b80151581146110ab57600080fd5b8035612458816125ab565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156125fc576125fc6125c4565b60405290565b604051601f8201601f191681016001600160401b038111828210171561262a5761262a6125c4565b604052919050565b60006001600160401b0382111561264b5761264b6125c4565b50601f01601f191660200190565b600082601f83011261266a57600080fd5b813561267d61267882612632565b612602565b81815284602083860101111561269257600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c087890312156126c857600080fd5b86356126d381612438565b955060208701356126e381612571565b945060408701356126f381612591565b93506060870135612703816125ab565b9250608087013561271381612438565b915060a08701356001600160401b0381111561272e57600080fd5b61273a89828a01612659565b9150509295509295509295565b60006020828403121561275957600080fd5b81356001600160401b0381111561276f57600080fd5b61256984828501612659565b6000806040838503121561278e57600080fd5b823561279981612438565b915060208301356001600160401b038111156127b457600080fd5b6127c085828601612659565b9150509250929050565b6000602082840312156127dc57600080fd5b81356001600160401b03808211156127f357600080fd5b9083019060e0828603121561280757600080fd5b61280f6125da565b61281883612586565b815261282660208401612586565b6020820152612837604084016125a0565b6040820152612848606084016125b9565b60608201526128596080840161244d565b608082015261286a60a0840161244d565b60a082015260c08301358281111561288157600080fd5b61288d87828601612659565b60c08301525095945050505050565b6000602082840312156128ae57600080fd5b813561243181612438565b6000806000606084860312156128ce57600080fd5b83356128d981612438565b925060208401356128e981612438565b915060408401356128f981612438565b809150509250925092565b6001600160e01b031991909116815260200190565b60006020808301818452808551808352604092508286019150828160051b8701018488016000805b848110156129b757898403603f190186528251805160ff168552880151888501889052805188860181905290890190839060608701905b808310156129a25783516001600160e01b0319168252928b019260019290920191908b0190612978565b50978a01979550505091870191600101612941565b50919998505050505050505050565b8051612458816125ab565b6000602082840312156129e357600080fd5b8151612431816125ab565b805161245881612571565b600060208284031215612a0b57600080fd5b815161243181612571565b600060208284031215612a2857600080fd5b815162ffffff8116811461243157600080fd5b600181811c90821680612a4f57607f821691505b602082108103612a6f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561155f57600081815260208120601f850160051c81016020861015612a9c5750805b601f850160051c820191505b81811015611ddc57828155600101612aa8565b81516001600160401b03811115612ad457612ad46125c4565b612ae881612ae28454612a3b565b84612a75565b602080601f831160018114612b1d5760008415612b055750858301515b600019600386901b1c1916600185901b178555611ddc565b600085815260208120601f198616915b82811015612b4c57888601518255948401946001909101908401612b2d565b5085821015612b6a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215612b8c57600080fd5b81516001600160401b038116811461243157600080fd5b805161245881612438565b600060208284031215612bc057600080fd5b815161243181612438565b805161245881612591565b600060208284031215612be857600080fd5b815161243181612591565b634e487b7160e01b600052603260045260246000fd5b60008085851115612c1957600080fd5b83861115612c2657600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612c5b5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612cb457600080fd5b8151612cc261267882612632565b818152846020838601011115612cd757600080fd5b612569826020830160208701612496565b600060208284031215612cfa57600080fd5b81516001600160401b0380821115612d1157600080fd5b9083019060e08286031215612d2557600080fd5b612d2d6125da565b612d36836129ee565b8152612d44602084016129ee565b6020820152612d5560408401612bcb565b6040820152612d66606084016129c6565b6060820152612d7760808401612ba3565b6080820152612d8860a08401612ba3565b60a082015260c083015182811115612d9f57600080fd5b61288d87828601612ca3565b60008060408385031215612dbe57600080fd5b8251612dc981612438565b602084015190925061248b81612438565b60008251612dec818460208701612496565b9190910192915050565b60008060408385031215612e0957600080fd5b8251612e14816125ab565b602084015190925063ffffffff8116811461248b57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220168bafe851d425e0cf8d0dbcb5da3eb811382966e5ac2876b5cd328907b3076e64736f6c63430008140033",
1247
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612a2f806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80636c741e78116100f3578063ada9652e11610093578063c2bf08c81161006e578063c2bf08c8146103d6578063c4c79d8b146103e9578063d943342d146103fc578063ed841d0c1461040f575f80fd5b8063ada9652e146103ab578063b68d1809146103bf578063bf7e214f146103ce575f80fd5b80638105cc7f116100ce5780638105cc7f14610368578063893d20e81461037b5780638fb36037146103835780638fbc2d8114610398575f80fd5b80636c741e78146103225780637286e5e5146103425780637a9e5e4b14610355575f80fd5b8063329d6e741161015e5780635ab1bd53116101395780635ab1bd53146102ba5780635c992fed146102df5780635d966289146102f2578063644c45e014610305575f80fd5b8063329d6e741461027f57806349bb9e4b1461029457806357a8fba7146102a7575f80fd5b806301ffc9a7146101a5578063026bc43b146101e65780630d8e6e2c146102065780630fec111c14610222578063138461e01461022a5780631eff4b221461024a575b5f80fd5b6101d16101b336600461210c565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101f96101f436600461215e565b610416565b6040516101dd91906121c3565b61020e6105ce565b60405162ffffff90911681526020016101dd565b6101f9610655565b6102326107e1565b6040516001600160601b0390911681526020016101dd565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d36600461233b565b6107eb565b005b6102926102a236600461236c565b610935565b6102326102b5366004612408565b610a31565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b6102326102ed366004612408565b610abc565b6101f961030036600461215e565b610ad1565b5f8051602061299a833981519152546001600160601b0316610232565b61032a610c17565b6040516001600160401b0390911681526020016101dd565b6101f961035036600461215e565b610d0d565b6102926103633660046124d8565b610dc3565b610232610376366004612408565b610e49565b6102c7610e5e565b61038b610f8f565b6040516101dd91906124f3565b6101f96103a636600461215e565b610fc4565b6102715f8051602061299a83398151915281565b604051600281526020016101dd565b6102c761107a565b6102326103e4366004612408565b611095565b6101f96103f736600461215e565b6110aa565b6101f961040a366004612508565b6110c6565b6102715f81565b61041e6120cf565b61042a335b5f3661120d565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061045d90632b1cb34b60e11b906004016124f3565b602060405180830381865afa158015610478573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061049c919061255b565b6104c957604051631c8275e960e21b81526001600160a01b03841660048201526024015b60405180910390fd5b6104d683600a5b8461130b565b90506104ea6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b815260040161051591906121c3565b6020604051808303815f875af1158015610531573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105559190612581565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192602092919082900301815f875af11580156105a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105c79190612581565b5092915050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561062c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610650919061259c565b905090565b61065d6120cf565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156106d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106f79190612581565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161073f610e5e565b6001600160a01b0316815260200182600101805461075c906125be565b80601f0160208091040260200160405190810160405280929190818152602001828054610788906125be565b80156107d35780601f106107aa576101008083540402835291602001916107d3565b820191905f5260205f20905b8154815290600101906020018083116107b657829003601f168201915b505050505081525091505090565b5f6106503061157c565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61080d6105ce565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561084b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086f919061260a565b5f805160206129da8339815191528054600160401b900460ff16806108a1575080546001600160401b03808416911610155b156108bf5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556108e983611775565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f805160206129da8339815191528054600160401b810460ff1615906001600160401b03165f811580156109665750825b90505f826001600160401b031660011480156109815750303b155b90508115801561098f575080155b156109ad5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156109d757845460ff60401b1916600160401b1785555b6109e1878761177d565b8315610a2857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f610a3b33610423565b610a4682601d611898565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610a769085906004016121c3565b6020604051808303815f875af1158015610a92573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab69190612581565b92915050565b5f610ac633610423565b610a46826015611898565b610ad96120cf565b610ae233610423565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610b159063a388186360e01b906004016124f3565b602060405180830381865afa158015610b30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b54919061255b565b610b7c5760405163704b6c6d60e11b81526001600160a01b03841660048201526024016104c0565b610b8783600c6104d0565b9050610b9b6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610bc691906121c3565b6020604051808303815f875af1158015610be2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c069190612581565b6001600160601b0316815292915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36002604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610c82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ca69190612630565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610ce9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610650919061260a565b610d156120cf565b610d1e33610423565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610d5190636ec6c77160e11b906004016124f3565b602060405180830381865afa158015610d6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d90919061255b565b610db8576040516304c983f360e41b81526001600160a01b03841660048201526024016104c0565b610b8783600f6104d0565b33610dcc61107a565b6001600160a01b0316816001600160a01b031614610e075760405162d1953b60e31b81526001600160a01b03821660048201526024016104c0565b816001600160a01b03163b5f03610e3c576040516361798f2f60e11b81526001600160a01b03831660048201526024016104c0565b610e45826119f6565b5050565b5f610e5333610423565b610a46826021611898565b5f805f8051602061299a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610eca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eee919061255b565b15610f79576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610f4f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f739190612656565b91505090565b54600160601b90046001600160a01b0316919050565b5f805160206129ba83398151915280545f9190600160a01b900460ff16610fb6575f610f73565b638fb3603760e01b91505090565b610fcc6120cf565b610fd533610423565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611008906301a39f4760e01b906004016124f3565b602060405180830381865afa158015611023573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611047919061255b565b61106f576040516367237f5b60e11b81526001600160a01b03841660048201526024016104c0565b610b8783600e6104d0565b5f805160206129ba833981519152546001600160a01b031690565b5f61109f33610423565b610a4682601f611898565b6110b26120cf565b6110bb33610423565b610b878360036104d0565b6110ce6120cf565b6110d733610423565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a79061110a90632986755f60e11b906004016124f3565b602060405180830381865afa158015611125573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611149919061255b565b61117157604051632624ae7760e01b81526001600160a01b03851660048201526024016104c0565b61117c84848461130b565b90506111906001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016111bb91906121c3565b6020604051808303815f875af11580156111d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111fb9190612581565b6001600160601b031681529392505050565b5f805160206129ba8339815191525f8061124561122861107a565b873061123760045f8a8c612671565b61124091612698565b611a56565b91509150816113035763ffffffff8116156112e057825460ff60a01b1916600160a01b17835561127361107a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016112a2939291906126ce565b5f604051808303815f87803b1580156112b9575f80fd5b505af11580156112cb573d5f803e3d5ffd5b5050845460ff60a01b19168555506113039050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016104c0565b505050505050565b6113136120cf565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa15801561134e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611375919081019061275a565b9050836001600160a01b031681608001516001600160a01b0316146113c65760808101516040516306704ad960e11b81526001600160a01b03808716600483015290911660248201526044016104c0565b604081015160ff84811691161461141257604080820151905163137f2ac560e31b81526001600160a01b038616600482015260ff808616602483015290911660448201526064016104c0565b60a08101516001600160a01b038082169084161461145e576040516335ce70c360e21b81526001600160a01b0380871660048301528085166024830152821660448201526064016104c0565b846001600160a01b0316816001600160a01b03160361149b57604051638e80a3f960e01b81526001600160a01b03861660048201526024016104c0565b6001600160a01b0381166114cd576040516343e40cb560e01b81526001600160a01b03861660048201526024016104c0565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561151f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611543919061255b565b15611574576040516309ad872b60e41b81526001600160a01b038087166004830152821660248201526044016104c0565b509392505050565b5f805f8051602061299a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156115e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061160c919061255b565b156116385780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016104c0565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561168a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116ae919061255b565b6116d65760405163b9304b0d60e01b81526001600160a01b03841660048201526024016104c0565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611728573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061174c9190612581565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6101a1611b5e565b5f805160206129da8339815191528054600160401b810460ff1615906001600160401b03165f811580156117ae5750825b90505f826001600160401b031660011480156117c95750303b155b9050811580156117d7575080155b156117f55760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561181f57845460ff60401b1916600160401b1785555b5f8087806020019051810190611835919061281c565b9150915061184482828b611b96565b6118546393a3e0eb60e01b611cd2565b50508315610a2857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610a1f565b60808201516001600160a01b0316156118cf5760408083015190516340fda83160e11b815260ff90911660048201526024016104c0565b604082015160ff82811691161461190c576040808301519051632e5fbed960e21b815260ff808416600483015290911660248201526044016104c0565b60a08201516001600160a01b038116611943576040808401519051633312954f60e21b815260ff90911660048201526024016104c0565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611995573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119b9919061255b565b156119f157604080840151905163b4139d2560e01b815260ff90911660048201526001600160a01b03821660248201526044016104c0565b505050565b5f805160206129ba83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251611ac49190612849565b5f60405180830381855afa9150503d805f8114611afc576040519150601f19603f3d011682016040523d82523d5f602084013e611b01565b606091505b50915091508115611b53576040815110611b335780806020019051810190611b29919061285f565b9094509250611b53565b6020815110611b535780806020019051810190611b50919061255b565b93505b505094509492505050565b5f805160206129da83398151915254600160401b900460ff16611b9457604051631afcd79f60e31b815260040160405180910390fd5b565b611b9e611b5e565b611ba6611cfe565b6001600160a01b03821615611bc357611bbe82611d0e565b611c3a565b5f611bce6002611d22565b9050611c38816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c0f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c339190612656565b611d0e565b505b611cb683846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9e9190612581565b60085f8560405180602001604052805f815250611e23565b611cc6634a531f3360e01b611cd2565b6119f163daf9067160e01b5b611cda611b5e565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b611d06611b5e565b611b94611ec8565b611d16611b5e565b611d1f81611ef6565b50565b5f611d356001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611d98573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dbc9190612630565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611dff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab69190612656565b611e2b611b5e565b611e358287611f07565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301611ebe83826128df565b5050505050505050565b611ed0611b5e565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b611efe611b5e565b611d1f816119f6565b611f0f611b5e565b611f1881611f7d565b611f2061208a565b6001600160a01b038216611f475760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061299a83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b611f85611b5e565b806001600160a01b03163b5f03611fba5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016104c0565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a79061200090632f6da6f960e01b906004016124f3565b602060405180830381865afa925050508015612039575060408051601f3d908101601f191682019092526120369181019061255b565b60015b6120615760405163fdeac91f60e01b81526001600160a01b03821660048201526024016104c0565b80610e455760405163fdeac91f60e01b81526001600160a01b03831660048201526024016104c0565b612092611b5e565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f6020828403121561211c575f80fd5b81356001600160e01b031981168114612133575f80fd5b9392505050565b6001600160a01b0381168114611d1f575f80fd5b80356121598161213a565b919050565b5f806040838503121561216f575f80fd5b823561217a8161213a565b9150602083013561218a8161213a565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f606083015161220b608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261224f610100840182612195565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b038111828210171561228d5761228d612257565b60405290565b604051601f8201601f191681016001600160401b03811182821017156122bb576122bb612257565b604052919050565b5f6001600160401b038211156122db576122db612257565b50601f01601f191660200190565b5f82601f8301126122f8575f80fd5b813561230b612306826122c3565b612293565b81815284602083860101111561231f575f80fd5b816020850160208301375f918101602001919091529392505050565b5f6020828403121561234b575f80fd5b81356001600160401b03811115612360575f80fd5b61224f848285016122e9565b5f806040838503121561237d575f80fd5b82356123888161213a565b915060208301356001600160401b038111156123a2575f80fd5b6123ae858286016122e9565b9150509250929050565b6001600160601b0381168114611d1f575f80fd5b8035612159816123b8565b60ff81168114611d1f575f80fd5b8035612159816123d7565b8015158114611d1f575f80fd5b8035612159816123f0565b5f60208284031215612418575f80fd5b81356001600160401b0381111561242d575f80fd5b820160e0818503121561243e575f80fd5b61244661226b565b61244f826123cc565b815261245d602083016123cc565b602082015261246e604083016123e5565b604082015261247f606083016123fd565b60608201526124906080830161214e565b60808201526124a160a0830161214e565b60a082015260c08201356001600160401b038111156124be575f80fd5b6124ca868285016122e9565b60c083015250949350505050565b5f602082840312156124e8575f80fd5b81356121338161213a565b6001600160e01b031991909116815260200190565b5f805f6060848603121561251a575f80fd5b83356125258161213a565b92506020840135612535816123d7565b915060408401356125458161213a565b809150509250925092565b8051612159816123f0565b5f6020828403121561256b575f80fd5b8151612133816123f0565b8051612159816123b8565b5f60208284031215612591575f80fd5b8151612133816123b8565b5f602082840312156125ac575f80fd5b815162ffffff81168114612133575f80fd5b600181811c908216806125d257607f821691505b6020821081036125f057634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160401b0381168114611d1f575f80fd5b5f6020828403121561261a575f80fd5b8151612133816125f6565b8051612159816123d7565b5f60208284031215612640575f80fd5b8151612133816123d7565b80516121598161213a565b5f60208284031215612666575f80fd5b81516121338161213a565b5f808585111561267f575f80fd5b8386111561268b575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156105c7576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f82601f83011261271c575f80fd5b815161272a612306826122c3565b81815284602083860101111561273e575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f6020828403121561276a575f80fd5b81516001600160401b0381111561277f575f80fd5b820160e08185031215612790575f80fd5b61279861226b565b6127a182612576565b81526127af60208301612576565b60208201526127c060408301612625565b60408201526127d160608301612550565b60608201526127e26080830161264b565b60808201526127f360a0830161264b565b60a082015260c08201516001600160401b03811115612810575f80fd5b6124ca8682850161270d565b5f806040838503121561282d575f80fd5b82516128388161213a565b602084015190925061218a8161213a565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612870575f80fd5b825161287b816123f0565b602084015190925063ffffffff8116811461218a575f80fd5b601f8211156119f157805f5260205f20601f840160051c810160208510156128b95750805b601f840160051c820191505b818110156128d8575f81556001016128c5565b5050505050565b81516001600160401b038111156128f8576128f8612257565b61290c8161290684546125be565b84612894565b6020601f82116001811461293e575f83156129275750848201515b5f19600385901b1c1916600184901b1784556128d8565b5f84815260208120601f198516915b8281101561296d578785015182556020948501946001909201910161294d565b508482101561298a57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212202dc9a4642bf6392b3c32f142d141d3abb41006edeecc3e80e426ebbbfb3a494f64736f6c634300081a0033",
1248
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80636c741e78116100f3578063ada9652e11610093578063c2bf08c81161006e578063c2bf08c8146103d6578063c4c79d8b146103e9578063d943342d146103fc578063ed841d0c1461040f575f80fd5b8063ada9652e146103ab578063b68d1809146103bf578063bf7e214f146103ce575f80fd5b80638105cc7f116100ce5780638105cc7f14610368578063893d20e81461037b5780638fb36037146103835780638fbc2d8114610398575f80fd5b80636c741e78146103225780637286e5e5146103425780637a9e5e4b14610355575f80fd5b8063329d6e741161015e5780635ab1bd53116101395780635ab1bd53146102ba5780635c992fed146102df5780635d966289146102f2578063644c45e014610305575f80fd5b8063329d6e741461027f57806349bb9e4b1461029457806357a8fba7146102a7575f80fd5b806301ffc9a7146101a5578063026bc43b146101e65780630d8e6e2c146102065780630fec111c14610222578063138461e01461022a5780631eff4b221461024a575b5f80fd5b6101d16101b336600461210c565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101f96101f436600461215e565b610416565b6040516101dd91906121c3565b61020e6105ce565b60405162ffffff90911681526020016101dd565b6101f9610655565b6102326107e1565b6040516001600160601b0390911681526020016101dd565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d36600461233b565b6107eb565b005b6102926102a236600461236c565b610935565b6102326102b5366004612408565b610a31565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b6102326102ed366004612408565b610abc565b6101f961030036600461215e565b610ad1565b5f8051602061299a833981519152546001600160601b0316610232565b61032a610c17565b6040516001600160401b0390911681526020016101dd565b6101f961035036600461215e565b610d0d565b6102926103633660046124d8565b610dc3565b610232610376366004612408565b610e49565b6102c7610e5e565b61038b610f8f565b6040516101dd91906124f3565b6101f96103a636600461215e565b610fc4565b6102715f8051602061299a83398151915281565b604051600281526020016101dd565b6102c761107a565b6102326103e4366004612408565b611095565b6101f96103f736600461215e565b6110aa565b6101f961040a366004612508565b6110c6565b6102715f81565b61041e6120cf565b61042a335b5f3661120d565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061045d90632b1cb34b60e11b906004016124f3565b602060405180830381865afa158015610478573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061049c919061255b565b6104c957604051631c8275e960e21b81526001600160a01b03841660048201526024015b60405180910390fd5b6104d683600a5b8461130b565b90506104ea6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b815260040161051591906121c3565b6020604051808303815f875af1158015610531573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105559190612581565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192602092919082900301815f875af11580156105a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105c79190612581565b5092915050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561062c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610650919061259c565b905090565b61065d6120cf565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156106d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106f79190612581565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161073f610e5e565b6001600160a01b0316815260200182600101805461075c906125be565b80601f0160208091040260200160405190810160405280929190818152602001828054610788906125be565b80156107d35780601f106107aa576101008083540402835291602001916107d3565b820191905f5260205f20905b8154815290600101906020018083116107b657829003601f168201915b505050505081525091505090565b5f6106503061157c565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61080d6105ce565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561084b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086f919061260a565b5f805160206129da8339815191528054600160401b900460ff16806108a1575080546001600160401b03808416911610155b156108bf5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556108e983611775565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f805160206129da8339815191528054600160401b810460ff1615906001600160401b03165f811580156109665750825b90505f826001600160401b031660011480156109815750303b155b90508115801561098f575080155b156109ad5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156109d757845460ff60401b1916600160401b1785555b6109e1878761177d565b8315610a2857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f610a3b33610423565b610a4682601d611898565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610a769085906004016121c3565b6020604051808303815f875af1158015610a92573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab69190612581565b92915050565b5f610ac633610423565b610a46826015611898565b610ad96120cf565b610ae233610423565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610b159063a388186360e01b906004016124f3565b602060405180830381865afa158015610b30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b54919061255b565b610b7c5760405163704b6c6d60e11b81526001600160a01b03841660048201526024016104c0565b610b8783600c6104d0565b9050610b9b6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610bc691906121c3565b6020604051808303815f875af1158015610be2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c069190612581565b6001600160601b0316815292915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36002604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610c82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ca69190612630565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610ce9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610650919061260a565b610d156120cf565b610d1e33610423565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610d5190636ec6c77160e11b906004016124f3565b602060405180830381865afa158015610d6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d90919061255b565b610db8576040516304c983f360e41b81526001600160a01b03841660048201526024016104c0565b610b8783600f6104d0565b33610dcc61107a565b6001600160a01b0316816001600160a01b031614610e075760405162d1953b60e31b81526001600160a01b03821660048201526024016104c0565b816001600160a01b03163b5f03610e3c576040516361798f2f60e11b81526001600160a01b03831660048201526024016104c0565b610e45826119f6565b5050565b5f610e5333610423565b610a46826021611898565b5f805f8051602061299a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610eca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eee919061255b565b15610f79576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610f4f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f739190612656565b91505090565b54600160601b90046001600160a01b0316919050565b5f805160206129ba83398151915280545f9190600160a01b900460ff16610fb6575f610f73565b638fb3603760e01b91505090565b610fcc6120cf565b610fd533610423565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790611008906301a39f4760e01b906004016124f3565b602060405180830381865afa158015611023573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611047919061255b565b61106f576040516367237f5b60e11b81526001600160a01b03841660048201526024016104c0565b610b8783600e6104d0565b5f805160206129ba833981519152546001600160a01b031690565b5f61109f33610423565b610a4682601f611898565b6110b26120cf565b6110bb33610423565b610b878360036104d0565b6110ce6120cf565b6110d733610423565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a79061110a90632986755f60e11b906004016124f3565b602060405180830381865afa158015611125573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611149919061255b565b61117157604051632624ae7760e01b81526001600160a01b03851660048201526024016104c0565b61117c84848461130b565b90506111906001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016111bb91906121c3565b6020604051808303815f875af11580156111d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111fb9190612581565b6001600160601b031681529392505050565b5f805160206129ba8339815191525f8061124561122861107a565b873061123760045f8a8c612671565b61124091612698565b611a56565b91509150816113035763ffffffff8116156112e057825460ff60a01b1916600160a01b17835561127361107a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016112a2939291906126ce565b5f604051808303815f87803b1580156112b9575f80fd5b505af11580156112cb573d5f803e3d5ffd5b5050845460ff60a01b19168555506113039050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016104c0565b505050505050565b6113136120cf565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa15801561134e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611375919081019061275a565b9050836001600160a01b031681608001516001600160a01b0316146113c65760808101516040516306704ad960e11b81526001600160a01b03808716600483015290911660248201526044016104c0565b604081015160ff84811691161461141257604080820151905163137f2ac560e31b81526001600160a01b038616600482015260ff808616602483015290911660448201526064016104c0565b60a08101516001600160a01b038082169084161461145e576040516335ce70c360e21b81526001600160a01b0380871660048301528085166024830152821660448201526064016104c0565b846001600160a01b0316816001600160a01b03160361149b57604051638e80a3f960e01b81526001600160a01b03861660048201526024016104c0565b6001600160a01b0381166114cd576040516343e40cb560e01b81526001600160a01b03861660048201526024016104c0565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561151f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611543919061255b565b15611574576040516309ad872b60e41b81526001600160a01b038087166004830152821660248201526044016104c0565b509392505050565b5f805f8051602061299a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156115e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061160c919061255b565b156116385780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016104c0565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561168a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116ae919061255b565b6116d65760405163b9304b0d60e01b81526001600160a01b03841660048201526024016104c0565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611728573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061174c9190612581565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6101a1611b5e565b5f805160206129da8339815191528054600160401b810460ff1615906001600160401b03165f811580156117ae5750825b90505f826001600160401b031660011480156117c95750303b155b9050811580156117d7575080155b156117f55760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561181f57845460ff60401b1916600160401b1785555b5f8087806020019051810190611835919061281c565b9150915061184482828b611b96565b6118546393a3e0eb60e01b611cd2565b50508315610a2857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610a1f565b60808201516001600160a01b0316156118cf5760408083015190516340fda83160e11b815260ff90911660048201526024016104c0565b604082015160ff82811691161461190c576040808301519051632e5fbed960e21b815260ff808416600483015290911660248201526044016104c0565b60a08201516001600160a01b038116611943576040808401519051633312954f60e21b815260ff90911660048201526024016104c0565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611995573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119b9919061255b565b156119f157604080840151905163b4139d2560e01b815260ff90911660048201526001600160a01b03821660248201526044016104c0565b505050565b5f805160206129ba83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251611ac49190612849565b5f60405180830381855afa9150503d805f8114611afc576040519150601f19603f3d011682016040523d82523d5f602084013e611b01565b606091505b50915091508115611b53576040815110611b335780806020019051810190611b29919061285f565b9094509250611b53565b6020815110611b535780806020019051810190611b50919061255b565b93505b505094509492505050565b5f805160206129da83398151915254600160401b900460ff16611b9457604051631afcd79f60e31b815260040160405180910390fd5b565b611b9e611b5e565b611ba6611cfe565b6001600160a01b03821615611bc357611bbe82611d0e565b611c3a565b5f611bce6002611d22565b9050611c38816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c0f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c339190612656565b611d0e565b505b611cb683846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9e9190612581565b60085f8560405180602001604052805f815250611e23565b611cc6634a531f3360e01b611cd2565b6119f163daf9067160e01b5b611cda611b5e565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b611d06611b5e565b611b94611ec8565b611d16611b5e565b611d1f81611ef6565b50565b5f611d356001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611d98573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dbc9190612630565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611dff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab69190612656565b611e2b611b5e565b611e358287611f07565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301611ebe83826128df565b5050505050505050565b611ed0611b5e565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b611efe611b5e565b611d1f816119f6565b611f0f611b5e565b611f1881611f7d565b611f2061208a565b6001600160a01b038216611f475760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061299a83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b611f85611b5e565b806001600160a01b03163b5f03611fba5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016104c0565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a79061200090632f6da6f960e01b906004016124f3565b602060405180830381865afa925050508015612039575060408051601f3d908101601f191682019092526120369181019061255b565b60015b6120615760405163fdeac91f60e01b81526001600160a01b03821660048201526024016104c0565b80610e455760405163fdeac91f60e01b81526001600160a01b03831660048201526024016104c0565b612092611b5e565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f6020828403121561211c575f80fd5b81356001600160e01b031981168114612133575f80fd5b9392505050565b6001600160a01b0381168114611d1f575f80fd5b80356121598161213a565b919050565b5f806040838503121561216f575f80fd5b823561217a8161213a565b9150602083013561218a8161213a565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f606083015161220b608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261224f610100840182612195565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b038111828210171561228d5761228d612257565b60405290565b604051601f8201601f191681016001600160401b03811182821017156122bb576122bb612257565b604052919050565b5f6001600160401b038211156122db576122db612257565b50601f01601f191660200190565b5f82601f8301126122f8575f80fd5b813561230b612306826122c3565b612293565b81815284602083860101111561231f575f80fd5b816020850160208301375f918101602001919091529392505050565b5f6020828403121561234b575f80fd5b81356001600160401b03811115612360575f80fd5b61224f848285016122e9565b5f806040838503121561237d575f80fd5b82356123888161213a565b915060208301356001600160401b038111156123a2575f80fd5b6123ae858286016122e9565b9150509250929050565b6001600160601b0381168114611d1f575f80fd5b8035612159816123b8565b60ff81168114611d1f575f80fd5b8035612159816123d7565b8015158114611d1f575f80fd5b8035612159816123f0565b5f60208284031215612418575f80fd5b81356001600160401b0381111561242d575f80fd5b820160e0818503121561243e575f80fd5b61244661226b565b61244f826123cc565b815261245d602083016123cc565b602082015261246e604083016123e5565b604082015261247f606083016123fd565b60608201526124906080830161214e565b60808201526124a160a0830161214e565b60a082015260c08201356001600160401b038111156124be575f80fd5b6124ca868285016122e9565b60c083015250949350505050565b5f602082840312156124e8575f80fd5b81356121338161213a565b6001600160e01b031991909116815260200190565b5f805f6060848603121561251a575f80fd5b83356125258161213a565b92506020840135612535816123d7565b915060408401356125458161213a565b809150509250925092565b8051612159816123f0565b5f6020828403121561256b575f80fd5b8151612133816123f0565b8051612159816123b8565b5f60208284031215612591575f80fd5b8151612133816123b8565b5f602082840312156125ac575f80fd5b815162ffffff81168114612133575f80fd5b600181811c908216806125d257607f821691505b6020821081036125f057634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160401b0381168114611d1f575f80fd5b5f6020828403121561261a575f80fd5b8151612133816125f6565b8051612159816123d7565b5f60208284031215612640575f80fd5b8151612133816123d7565b80516121598161213a565b5f60208284031215612666575f80fd5b81516121338161213a565b5f808585111561267f575f80fd5b8386111561268b575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156105c7576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f82601f83011261271c575f80fd5b815161272a612306826122c3565b81815284602083860101111561273e575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f6020828403121561276a575f80fd5b81516001600160401b0381111561277f575f80fd5b820160e08185031215612790575f80fd5b61279861226b565b6127a182612576565b81526127af60208301612576565b60208201526127c060408301612625565b60408201526127d160608301612550565b60608201526127e26080830161264b565b60808201526127f360a0830161264b565b60a082015260c08201516001600160401b03811115612810575f80fd5b6124ca8682850161270d565b5f806040838503121561282d575f80fd5b82516128388161213a565b602084015190925061218a8161213a565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612870575f80fd5b825161287b816123f0565b602084015190925063ffffffff8116811461218a575f80fd5b601f8211156119f157805f5260205f20601f840160051c810160208510156128b95750805b601f840160051c820191505b818110156128d8575f81556001016128c5565b5050505050565b81516001600160401b038111156128f8576128f8612257565b61290c8161290684546125be565b84612894565b6020601f82116001811461293e575f83156129275750848201515b5f19600385901b1c1916600184901b1784556128d8565b5f84815260208120601f198516915b8281101561296d578785015182556020948501946001909201910161294d565b508482101561298a57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212202dc9a4642bf6392b3c32f142d141d3abb41006edeecc3e80e426ebbbfb3a494f64736f6c634300081a0033",
1094
1249
  "linkReferences": {
1095
- "contracts/types/NftId.sol": {
1250
+ "contracts/type/NftId.sol": {
1096
1251
  "NftIdLib": [
1097
1252
  {
1098
1253
  "length": 20,
1099
- "start": 2431
1254
+ "start": 1892
1255
+ },
1256
+ {
1257
+ "length": 20,
1258
+ "start": 3944
1100
1259
  },
1101
1260
  {
1102
1261
  "length": 20,
1103
- "start": 4880
1262
+ "start": 5766
1104
1263
  }
1105
1264
  ]
1106
1265
  },
1107
- "contracts/types/Version.sol": {
1266
+ "contracts/type/RoleId.sol": {
1267
+ "RoleIdLib": [
1268
+ {
1269
+ "length": 20,
1270
+ "start": 3312
1271
+ }
1272
+ ]
1273
+ },
1274
+ "contracts/type/Version.sol": {
1108
1275
  "VersionLib": [
1109
1276
  {
1110
1277
  "length": 20,
1111
- "start": 1867
1278
+ "start": 1738
1112
1279
  },
1113
1280
  {
1114
1281
  "length": 20,
1115
- "start": 3084
1282
+ "start": 2243
1116
1283
  }
1117
1284
  ],
1118
1285
  "VersionPartLib": [
1119
1286
  {
1120
1287
  "length": 20,
1121
- "start": 5360
1288
+ "start": 3360
1289
+ },
1290
+ {
1291
+ "length": 20,
1292
+ "start": 7734
1122
1293
  }
1123
1294
  ]
1124
1295
  }
1125
1296
  },
1126
1297
  "deployedLinkReferences": {
1127
- "contracts/types/NftId.sol": {
1298
+ "contracts/type/NftId.sol": {
1128
1299
  "NftIdLib": [
1129
1300
  {
1130
1301
  "length": 20,
1131
- "start": 2201
1302
+ "start": 1678
1132
1303
  },
1133
1304
  {
1134
1305
  "length": 20,
1135
- "start": 4650
1306
+ "start": 3730
1307
+ },
1308
+ {
1309
+ "length": 20,
1310
+ "start": 5552
1136
1311
  }
1137
1312
  ]
1138
1313
  },
1139
- "contracts/types/Version.sol": {
1314
+ "contracts/type/RoleId.sol": {
1315
+ "RoleIdLib": [
1316
+ {
1317
+ "length": 20,
1318
+ "start": 3098
1319
+ }
1320
+ ]
1321
+ },
1322
+ "contracts/type/Version.sol": {
1140
1323
  "VersionLib": [
1141
1324
  {
1142
1325
  "length": 20,
1143
- "start": 1637
1326
+ "start": 1524
1144
1327
  },
1145
1328
  {
1146
1329
  "length": 20,
1147
- "start": 2854
1330
+ "start": 2029
1148
1331
  }
1149
1332
  ],
1150
1333
  "VersionPartLib": [
1151
1334
  {
1152
1335
  "length": 20,
1153
- "start": 5130
1336
+ "start": 3146
1337
+ },
1338
+ {
1339
+ "length": 20,
1340
+ "start": 7520
1154
1341
  }
1155
1342
  ]
1156
1343
  }