@etherisc/gif-next 0.0.2-f9bc4c7-556 → 0.0.2-fa35bce-363

Sign up to get free protection for your applications and to get access to all the features.
Files changed (794) hide show
  1. package/README.md +378 -20
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +790 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1664 -0
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +790 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/module/access → authorization}/IAccess.sol/IAccess.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1372 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +455 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +397 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +646 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1244 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +805 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +949 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1809 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +930 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +848 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1284 -0
  40. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  42. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1484 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2053 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -0
  50. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1439 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1647 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2585 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
  66. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  67. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  68. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  69. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +576 -1290
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +1082 -0
  72. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/Instance.sol/Instance.json +653 -1537
  74. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2349 -0
  76. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +902 -0
  78. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  79. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2646 -0
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1328 -0
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +772 -0
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3792 -0
  86. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  87. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
  88. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  89. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  90. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  91. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  92. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  93. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  94. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  96. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  98. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  100. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  101. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  102. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  103. package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/IComponents.sol/IComponents.json} +2 -2
  104. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  105. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  106. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  107. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  108. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  110. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  111. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  112. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  113. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +957 -0
  114. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  115. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +810 -0
  116. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  117. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  118. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  119. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +772 -0
  120. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +762 -0
  122. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +873 -0
  124. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  125. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1042 -0
  126. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  127. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +810 -0
  128. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  129. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1242 -0
  130. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +805 -0
  132. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  133. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1438 -0
  134. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  135. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +866 -0
  136. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  137. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +1033 -0
  138. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  139. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +905 -0
  140. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  141. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1449 -0
  142. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  143. package/artifacts/contracts/pool/Pool.sol/Pool.json +1025 -0
  144. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  145. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
  146. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  147. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1833 -0
  148. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +866 -0
  150. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  151. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +1036 -0
  152. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  153. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +790 -0
  154. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  155. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1159 -0
  156. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  157. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +805 -0
  158. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  159. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1536 -0
  160. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  161. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +886 -0
  162. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  163. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +804 -0
  164. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  165. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1104 -0
  166. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  167. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +1036 -0
  168. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  169. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +652 -0
  170. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  171. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1016 -0
  172. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  173. package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +665 -0
  174. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  175. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1404 -0
  176. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  177. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
  178. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +854 -0
  180. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  181. package/artifacts/contracts/product/PricingService.sol/PricingService.json +932 -0
  182. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  183. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +814 -0
  184. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  185. package/artifacts/contracts/product/Product.sol/Product.json +1117 -0
  186. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  187. package/artifacts/contracts/product/RiskService.sol/RiskService.json +873 -0
  188. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  189. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +774 -0
  190. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  191. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +242 -12
  192. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  193. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +1035 -119
  194. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  195. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1072 -0
  196. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  197. package/artifacts/contracts/{instance/IInstanceLinked.sol/IInstanceLinked.json → registry/IRelease.sol/IRelease.json} +6 -6
  198. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  199. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +39 -0
  200. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  201. package/artifacts/contracts/registry/Registry.sol/Registry.json +1473 -231
  202. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  203. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2160 -0
  204. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  205. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1074 -0
  206. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  207. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1298 -0
  208. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  209. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +773 -0
  210. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  211. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -0
  212. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  213. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  214. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  215. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1389 -0
  216. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  217. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +683 -0
  218. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  219. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +721 -0
  220. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  221. package/artifacts/contracts/shared/Component.sol/Component.json +705 -0
  222. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  223. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1551 -0
  224. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  225. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +862 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  229. package/artifacts/contracts/shared/{IOwnable.sol/IOwnable.json → ContractLib.sol/IInstanceAdminHelper.json} +5 -5
  230. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  231. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  232. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  233. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  234. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  235. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +630 -0
  236. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  237. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1175 -0
  238. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  239. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +707 -0
  240. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  241. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +146 -147
  242. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  243. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  244. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  245. package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +62 -70
  246. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  247. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  248. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  249. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +248 -21
  250. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  251. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  252. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  253. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → shared/IService.sol/IService.json} +224 -160
  254. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  255. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  256. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  257. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +795 -0
  258. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  259. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  260. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  261. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  262. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  263. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  264. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  265. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +228 -0
  266. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  267. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  268. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  269. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +294 -18
  270. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  271. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  272. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  273. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → shared/Service.sol/Service.json} +239 -234
  274. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  275. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +723 -0
  276. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  277. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  278. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  279. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  280. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  281. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +2568 -0
  282. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  283. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1147 -0
  284. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
  285. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +69 -0
  286. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  287. package/artifacts/contracts/staking/Staking.sol/Staking.json +3028 -0
  288. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  289. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
  290. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  292. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +863 -0
  294. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  295. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +554 -0
  296. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  297. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1344 -0
  298. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  299. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +766 -0
  300. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  301. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +3136 -0
  302. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
  303. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +265 -0
  304. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  305. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +657 -0
  306. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  307. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  308. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  310. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  311. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +251 -0
  312. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
  313. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
  314. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  316. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  317. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  318. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  319. package/artifacts/contracts/type/Fee.sol/FeeLib.json +373 -0
  320. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  321. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  322. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  323. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  324. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  326. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  327. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  328. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  330. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  332. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  334. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  336. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  338. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
  340. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +289 -0
  342. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  344. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  346. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  347. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  348. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  349. package/artifacts/contracts/type/String.sol/StrLib.json +180 -0
  350. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  351. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  352. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  353. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -0
  354. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  355. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  356. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  357. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  358. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  359. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +65 -0
  360. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  361. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +656 -0
  362. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  363. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
  364. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  365. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +88 -0
  366. package/contracts/accounting/AccountingService.sol +274 -0
  367. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  368. package/contracts/accounting/IAccountingService.sol +47 -0
  369. package/contracts/authorization/AccessAdmin.sol +780 -0
  370. package/contracts/authorization/AccessAdminLib.sol +396 -0
  371. package/contracts/authorization/AccessManagerCloneable.sol +158 -0
  372. package/contracts/authorization/Authorization.sol +169 -0
  373. package/contracts/authorization/IAccess.sol +67 -0
  374. package/contracts/authorization/IAccessAdmin.sol +144 -0
  375. package/contracts/authorization/IAuthorization.sol +26 -0
  376. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  377. package/contracts/authorization/ServiceAuthorization.sol +320 -0
  378. package/contracts/distribution/BasicDistribution.sol +141 -0
  379. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  380. package/contracts/distribution/Distribution.sol +247 -0
  381. package/contracts/distribution/DistributionService.sol +448 -0
  382. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  383. package/contracts/distribution/IDistributionComponent.sol +45 -0
  384. package/contracts/distribution/IDistributionService.sol +115 -0
  385. package/contracts/examples/fire/DamageLevel.sol +59 -0
  386. package/contracts/examples/fire/FirePool.sol +86 -0
  387. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  388. package/contracts/examples/fire/FireProduct.sol +433 -0
  389. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  390. package/contracts/examples/fire/FireUSD.sol +26 -0
  391. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  392. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  393. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  394. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  395. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  396. package/contracts/examples/unpermissioned/SimpleProduct.sol +437 -0
  397. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  398. package/contracts/instance/BundleSet.sol +130 -0
  399. package/contracts/instance/IInstance.sol +138 -45
  400. package/contracts/instance/IInstanceService.sol +117 -0
  401. package/contracts/instance/Instance.sol +333 -54
  402. package/contracts/instance/InstanceAdmin.sol +383 -0
  403. package/contracts/instance/InstanceAuthorizationV3.sol +266 -0
  404. package/contracts/instance/InstanceReader.sol +632 -0
  405. package/contracts/instance/InstanceService.sol +500 -0
  406. package/contracts/instance/InstanceServiceManager.sol +39 -0
  407. package/contracts/instance/InstanceStore.sol +298 -0
  408. package/contracts/instance/RiskSet.sol +126 -0
  409. package/contracts/instance/base/BalanceStore.sol +121 -0
  410. package/contracts/instance/base/Cloneable.sol +28 -0
  411. package/contracts/instance/base/ObjectCounter.sol +20 -0
  412. package/contracts/instance/base/ObjectLifecycle.sol +109 -0
  413. package/contracts/instance/base/ObjectSet.sol +77 -0
  414. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  415. package/contracts/instance/module/IBundle.sol +21 -0
  416. package/contracts/instance/module/IComponents.sol +62 -0
  417. package/contracts/instance/module/IDistribution.sol +54 -0
  418. package/contracts/instance/module/IPolicy.sol +105 -0
  419. package/contracts/instance/module/IRisk.sol +16 -0
  420. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  421. package/contracts/oracle/BasicOracle.sol +45 -0
  422. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  423. package/contracts/oracle/IOracle.sol +41 -0
  424. package/contracts/oracle/IOracleComponent.sol +33 -0
  425. package/contracts/oracle/IOracleService.sol +66 -0
  426. package/contracts/oracle/Oracle.sol +154 -0
  427. package/contracts/oracle/OracleService.sol +310 -0
  428. package/contracts/oracle/OracleServiceManager.sol +39 -0
  429. package/contracts/pool/BasicPool.sol +162 -0
  430. package/contracts/pool/BasicPoolAuthorization.sol +81 -0
  431. package/contracts/pool/BundleService.sol +386 -0
  432. package/contracts/pool/BundleServiceManager.sol +39 -0
  433. package/contracts/pool/IBundleService.sol +116 -0
  434. package/contracts/pool/IPoolComponent.sol +62 -0
  435. package/contracts/pool/IPoolService.sol +170 -0
  436. package/contracts/pool/Pool.sol +333 -0
  437. package/contracts/pool/PoolLib.sol +341 -0
  438. package/contracts/pool/PoolService.sol +614 -0
  439. package/contracts/pool/PoolServiceManager.sol +39 -0
  440. package/contracts/product/ApplicationService.sol +327 -0
  441. package/contracts/product/ApplicationServiceManager.sol +38 -0
  442. package/contracts/product/BasicProduct.sol +49 -0
  443. package/contracts/product/BasicProductAuthorization.sol +63 -0
  444. package/contracts/product/ClaimService.sol +630 -0
  445. package/contracts/product/ClaimServiceManager.sol +38 -0
  446. package/contracts/product/IApplicationService.sol +88 -0
  447. package/contracts/product/IClaimService.sol +136 -0
  448. package/contracts/product/IPolicyService.sol +102 -0
  449. package/contracts/product/IPricingService.sol +40 -0
  450. package/contracts/product/IProductComponent.sol +62 -0
  451. package/contracts/product/IRiskService.sol +48 -0
  452. package/contracts/product/PolicyService.sol +645 -0
  453. package/contracts/product/PolicyServiceLib.sol +139 -0
  454. package/contracts/product/PolicyServiceManager.sol +39 -0
  455. package/contracts/product/PricingService.sol +306 -0
  456. package/contracts/product/PricingServiceManager.sol +39 -0
  457. package/contracts/product/Product.sol +493 -0
  458. package/contracts/product/RiskService.sol +190 -0
  459. package/contracts/product/RiskServiceManager.sol +39 -0
  460. package/contracts/registry/ChainNft.sol +130 -40
  461. package/contracts/registry/IRegistry.sol +144 -29
  462. package/contracts/registry/IRegistryService.sol +62 -0
  463. package/contracts/registry/IRelease.sol +29 -0
  464. package/contracts/registry/ITransferInterceptor.sol +6 -0
  465. package/contracts/registry/Registry.sol +637 -282
  466. package/contracts/registry/RegistryAdmin.sol +191 -0
  467. package/contracts/registry/RegistryAuthorization.sol +312 -0
  468. package/contracts/registry/RegistryService.sol +241 -0
  469. package/contracts/registry/RegistryServiceManager.sol +53 -0
  470. package/contracts/registry/ReleaseAdmin.sol +195 -0
  471. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  472. package/contracts/registry/ReleaseRegistry.sol +525 -0
  473. package/contracts/registry/ServiceAuthorizationV3.sol +342 -0
  474. package/contracts/registry/TokenRegistry.sol +317 -0
  475. package/contracts/shared/Component.sol +214 -0
  476. package/contracts/shared/ComponentService.sol +687 -0
  477. package/contracts/shared/ComponentServiceManager.sol +38 -0
  478. package/contracts/shared/ContractLib.sol +312 -0
  479. package/contracts/shared/IComponent.sol +58 -0
  480. package/contracts/shared/IComponentService.sol +111 -0
  481. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  482. package/contracts/shared/IKeyValueStore.sol +54 -0
  483. package/contracts/{instance/base → shared}/ILifecycle.sol +6 -5
  484. package/contracts/shared/INftOwnable.sol +27 -0
  485. package/contracts/shared/IPolicyHolder.sol +35 -0
  486. package/contracts/shared/IRegisterable.sol +31 -19
  487. package/contracts/shared/IRegistryLinked.sol +11 -0
  488. package/contracts/shared/IService.sol +23 -0
  489. package/contracts/shared/InitializableERC165.sol +35 -0
  490. package/contracts/shared/InstanceLinkedComponent.sol +194 -0
  491. package/contracts/shared/KeyValueStore.sol +131 -0
  492. package/contracts/shared/Lifecycle.sol +88 -0
  493. package/contracts/shared/NftIdSet.sol +65 -0
  494. package/contracts/shared/NftOwnable.sol +129 -0
  495. package/contracts/shared/PolicyHolder.sol +63 -0
  496. package/contracts/shared/Registerable.sol +80 -60
  497. package/contracts/shared/RegistryLinked.sol +38 -0
  498. package/contracts/shared/Service.sol +67 -0
  499. package/contracts/shared/TokenHandler.sol +342 -0
  500. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  501. package/contracts/staking/IStaking.sol +297 -0
  502. package/contracts/staking/IStakingService.sol +127 -0
  503. package/contracts/staking/ITargetLimitHandler.sol +26 -0
  504. package/contracts/staking/Staking.sol +780 -0
  505. package/contracts/staking/StakingLib.sol +195 -0
  506. package/contracts/staking/StakingLifecycle.sol +23 -0
  507. package/contracts/staking/StakingManager.sol +53 -0
  508. package/contracts/staking/StakingReader.sol +151 -0
  509. package/contracts/staking/StakingService.sol +321 -0
  510. package/contracts/staking/StakingServiceManager.sol +46 -0
  511. package/contracts/staking/StakingStore.sol +1174 -0
  512. package/contracts/staking/TargetHandler.sol +102 -0
  513. package/contracts/staking/TargetManagerLib.sol +211 -0
  514. package/contracts/{types → type}/AddressSet.sol +1 -1
  515. package/contracts/type/Amount.sol +154 -0
  516. package/contracts/{types → type}/Blocknumber.sol +36 -12
  517. package/contracts/type/ChainId.sol +101 -0
  518. package/contracts/type/ClaimId.sol +80 -0
  519. package/contracts/type/DistributorType.sol +55 -0
  520. package/contracts/type/Fee.sol +66 -0
  521. package/contracts/{types → type}/Key32.sol +10 -5
  522. package/contracts/type/Key32Set.sol +62 -0
  523. package/contracts/{types → type}/NftId.sol +28 -15
  524. package/contracts/type/NftIdSet.sol +62 -0
  525. package/contracts/type/ObjectType.sol +307 -0
  526. package/contracts/type/PayoutId.sol +82 -0
  527. package/contracts/type/Referral.sol +90 -0
  528. package/contracts/type/RequestId.sol +75 -0
  529. package/contracts/type/RiskId.sol +75 -0
  530. package/contracts/type/RoleId.sol +180 -0
  531. package/contracts/type/Seconds.sol +115 -0
  532. package/contracts/type/Selector.sol +107 -0
  533. package/contracts/{types → type}/StateId.sol +53 -5
  534. package/contracts/type/String.sol +65 -0
  535. package/contracts/{types → type}/Timestamp.sol +39 -19
  536. package/contracts/{types → type}/UFixed.sol +73 -19
  537. package/contracts/type/Version.sol +159 -0
  538. package/contracts/upgradeability/IVersionable.sol +56 -0
  539. package/contracts/upgradeability/ProxyManager.sol +246 -0
  540. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +24 -0
  541. package/contracts/upgradeability/Versionable.sol +62 -0
  542. package/package.json +13 -8
  543. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  544. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  545. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  546. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  547. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -356
  548. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  549. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -279
  550. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  551. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -387
  552. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  553. package/artifacts/contracts/components/Product.sol/Product.json +0 -305
  554. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  555. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  556. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  557. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  558. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  559. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  560. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  561. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  562. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  563. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  564. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  565. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  566. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  567. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  568. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  569. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  570. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  571. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  572. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  573. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  574. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  575. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  576. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  577. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  578. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  579. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  580. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  581. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  582. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  583. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  584. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  585. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  586. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  587. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  588. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  589. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  590. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  591. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  592. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
  593. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  594. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  595. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  596. package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
  597. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  598. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +0 -326
  599. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  600. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -692
  601. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  602. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  603. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  604. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  605. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
  606. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  607. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  608. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  609. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  610. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  611. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  612. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
  613. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  614. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  615. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
  616. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  617. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  618. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  619. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
  620. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  621. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
  622. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  623. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
  624. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  625. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  626. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  627. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
  628. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  629. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  630. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
  631. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  632. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
  633. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  634. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  635. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  636. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
  637. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  638. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
  639. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  640. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  641. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
  642. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  643. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
  644. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  645. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
  646. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  647. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
  648. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  649. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  650. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  651. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
  652. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  653. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
  654. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  655. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  656. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -376
  657. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  658. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  659. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -471
  660. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  661. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -673
  662. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  663. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  664. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
  665. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  666. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  667. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  668. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  669. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -164
  670. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  671. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -164
  672. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  673. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  674. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  675. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
  676. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  677. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
  678. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  679. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
  680. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  681. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  682. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  683. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
  684. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  685. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
  686. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  687. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  688. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  689. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
  690. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  691. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
  692. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  693. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  694. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  695. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  696. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  697. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  698. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  699. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -218
  700. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  701. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
  702. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  703. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  704. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  705. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  706. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  707. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  708. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  709. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
  710. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  711. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  712. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  713. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
  714. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  715. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
  716. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  717. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
  718. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  719. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
  720. package/contracts/components/BaseComponent.sol +0 -88
  721. package/contracts/components/IBaseComponent.sol +0 -19
  722. package/contracts/components/IPoolComponent.sol +0 -57
  723. package/contracts/components/IProductComponent.sol +0 -19
  724. package/contracts/components/Pool.sol +0 -174
  725. package/contracts/components/Product.sol +0 -117
  726. package/contracts/experiment/errors/Require.sol +0 -38
  727. package/contracts/experiment/errors/Revert.sol +0 -44
  728. package/contracts/experiment/inheritance/A.sol +0 -53
  729. package/contracts/experiment/inheritance/B.sol +0 -28
  730. package/contracts/experiment/inheritance/C.sol +0 -34
  731. package/contracts/experiment/inheritance/IA.sol +0 -13
  732. package/contracts/experiment/inheritance/IB.sol +0 -10
  733. package/contracts/experiment/inheritance/IC.sol +0 -12
  734. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  735. package/contracts/experiment/statemachine/ISM.sol +0 -25
  736. package/contracts/experiment/statemachine/README.md +0 -112
  737. package/contracts/experiment/statemachine/SM.sol +0 -57
  738. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  739. package/contracts/experiment/types/TypeA.sol +0 -47
  740. package/contracts/experiment/types/TypeB.sol +0 -29
  741. package/contracts/instance/IInstanceLinked.sol +0 -8
  742. package/contracts/instance/base/ComponentServiceBase.sol +0 -42
  743. package/contracts/instance/base/IInstanceBase.sol +0 -14
  744. package/contracts/instance/base/IKeyValueStore.sol +0 -49
  745. package/contracts/instance/base/IService.sol +0 -15
  746. package/contracts/instance/base/InstanceBase.sol +0 -80
  747. package/contracts/instance/base/KeyValueStore.sol +0 -156
  748. package/contracts/instance/base/Lifecycle.sol +0 -95
  749. package/contracts/instance/base/ModuleBase.sol +0 -52
  750. package/contracts/instance/base/ServiceBase.sol +0 -37
  751. package/contracts/instance/module/access/Access.sol +0 -149
  752. package/contracts/instance/module/access/IAccess.sol +0 -53
  753. package/contracts/instance/module/bundle/BundleModule.sol +0 -136
  754. package/contracts/instance/module/bundle/IBundle.sol +0 -58
  755. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  756. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
  757. package/contracts/instance/module/component/ComponentModule.sol +0 -95
  758. package/contracts/instance/module/component/IComponent.sol +0 -53
  759. package/contracts/instance/module/policy/IPolicy.sol +0 -60
  760. package/contracts/instance/module/policy/PolicyModule.sol +0 -76
  761. package/contracts/instance/module/pool/IPoolModule.sol +0 -41
  762. package/contracts/instance/module/pool/PoolModule.sol +0 -87
  763. package/contracts/instance/module/risk/IRisk.sol +0 -10
  764. package/contracts/instance/module/risk/RiskModule.sol +0 -8
  765. package/contracts/instance/module/treasury/ITreasury.sol +0 -103
  766. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  767. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
  768. package/contracts/instance/service/ComponentOwnerService.sol +0 -170
  769. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  770. package/contracts/instance/service/IPoolService.sol +0 -30
  771. package/contracts/instance/service/IProductService.sol +0 -58
  772. package/contracts/instance/service/PoolService.sol +0 -123
  773. package/contracts/instance/service/ProductService.sol +0 -354
  774. package/contracts/registry/IChainNft.sol +0 -21
  775. package/contracts/registry/IRegistryLinked.sol +0 -8
  776. package/contracts/shared/ERC165.sol +0 -21
  777. package/contracts/shared/IOwnable.sol +0 -6
  778. package/contracts/shared/IVersionable.sol +0 -52
  779. package/contracts/shared/Versionable.sol +0 -89
  780. package/contracts/test/TestFee.sol +0 -25
  781. package/contracts/test/TestPool.sol +0 -22
  782. package/contracts/test/TestProduct.sol +0 -44
  783. package/contracts/test/TestRegisterable.sol +0 -19
  784. package/contracts/test/TestRoleId.sol +0 -14
  785. package/contracts/test/TestService.sol +0 -32
  786. package/contracts/test/TestToken.sol +0 -26
  787. package/contracts/test/TestVersion.sol +0 -44
  788. package/contracts/test/TestVersionable.sol +0 -17
  789. package/contracts/types/ChainId.sol +0 -38
  790. package/contracts/types/Fee.sol +0 -51
  791. package/contracts/types/NftIdSet.sol +0 -60
  792. package/contracts/types/ObjectType.sol +0 -115
  793. package/contracts/types/RoleId.sol +0 -38
  794. package/contracts/types/Version.sol +0 -95
@@ -0,0 +1,1344 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "StakingService",
4
+ "sourceName": "contracts/staking/StakingService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "authority",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorAuthorityInvalid",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "nftId",
60
+ "type": "uint96"
61
+ }
62
+ ],
63
+ "name": "ErrorNftOwnableAlreadyLinked",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "contractAddress",
71
+ "type": "address"
72
+ }
73
+ ],
74
+ "name": "ErrorNftOwnableContractNotRegistered",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [],
79
+ "name": "ErrorNftOwnableInitialOwnerZero",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [
84
+ {
85
+ "internalType": "NftId",
86
+ "name": "nftId",
87
+ "type": "uint96"
88
+ },
89
+ {
90
+ "internalType": "ObjectType",
91
+ "name": "expectedObjectType",
92
+ "type": "uint8"
93
+ }
94
+ ],
95
+ "name": "ErrorNftOwnableInvalidType",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [
100
+ {
101
+ "internalType": "address",
102
+ "name": "account",
103
+ "type": "address"
104
+ }
105
+ ],
106
+ "name": "ErrorNftOwnableNotOwner",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [
111
+ {
112
+ "internalType": "address",
113
+ "name": "registryAddress",
114
+ "type": "address"
115
+ }
116
+ ],
117
+ "name": "ErrorNotRegistry",
118
+ "type": "error"
119
+ },
120
+ {
121
+ "inputs": [],
122
+ "name": "ErrorRegisterableNotActive",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [
127
+ {
128
+ "internalType": "NftId",
129
+ "name": "targetNftId",
130
+ "type": "uint96"
131
+ },
132
+ {
133
+ "internalType": "address",
134
+ "name": "tokenHandler",
135
+ "type": "address"
136
+ },
137
+ {
138
+ "internalType": "uint256",
139
+ "name": "amount",
140
+ "type": "uint256"
141
+ },
142
+ {
143
+ "internalType": "uint256",
144
+ "name": "allowance",
145
+ "type": "uint256"
146
+ }
147
+ ],
148
+ "name": "ErrorStakingServiceDipAllowanceInsufficient",
149
+ "type": "error"
150
+ },
151
+ {
152
+ "inputs": [
153
+ {
154
+ "internalType": "NftId",
155
+ "name": "targetNftId",
156
+ "type": "uint96"
157
+ },
158
+ {
159
+ "internalType": "uint256",
160
+ "name": "amount",
161
+ "type": "uint256"
162
+ },
163
+ {
164
+ "internalType": "uint256",
165
+ "name": "balance",
166
+ "type": "uint256"
167
+ }
168
+ ],
169
+ "name": "ErrorStakingServiceDipBalanceInsufficient",
170
+ "type": "error"
171
+ },
172
+ {
173
+ "inputs": [
174
+ {
175
+ "internalType": "NftId",
176
+ "name": "targetNftId",
177
+ "type": "uint96"
178
+ }
179
+ ],
180
+ "name": "ErrorStakingServiceNotActiveTargetNftId",
181
+ "type": "error"
182
+ },
183
+ {
184
+ "inputs": [
185
+ {
186
+ "internalType": "address",
187
+ "name": "stakingAddress",
188
+ "type": "address"
189
+ }
190
+ ],
191
+ "name": "ErrorStakingServiceNotStaking",
192
+ "type": "error"
193
+ },
194
+ {
195
+ "inputs": [
196
+ {
197
+ "internalType": "address",
198
+ "name": "account",
199
+ "type": "address"
200
+ }
201
+ ],
202
+ "name": "ErrorStakingServiceNotStakingOwner",
203
+ "type": "error"
204
+ },
205
+ {
206
+ "inputs": [
207
+ {
208
+ "internalType": "address",
209
+ "name": "stakingAddress",
210
+ "type": "address"
211
+ }
212
+ ],
213
+ "name": "ErrorStakingServiceNotSupportingIStaking",
214
+ "type": "error"
215
+ },
216
+ {
217
+ "inputs": [
218
+ {
219
+ "internalType": "NftId",
220
+ "name": "targetNftId",
221
+ "type": "uint96"
222
+ }
223
+ ],
224
+ "name": "ErrorStakingServiceNotTargetNftId",
225
+ "type": "error"
226
+ },
227
+ {
228
+ "inputs": [
229
+ {
230
+ "internalType": "NftId",
231
+ "name": "targetNftId",
232
+ "type": "uint96"
233
+ }
234
+ ],
235
+ "name": "ErrorStakingServiceTargetUnknown",
236
+ "type": "error"
237
+ },
238
+ {
239
+ "inputs": [],
240
+ "name": "ErrorStakingServiceZeroTargetNftId",
241
+ "type": "error"
242
+ },
243
+ {
244
+ "inputs": [],
245
+ "name": "ErrorVersionableInitializeNotImplemented",
246
+ "type": "error"
247
+ },
248
+ {
249
+ "inputs": [],
250
+ "name": "ErrorVersionableUpgradeNotImplemented",
251
+ "type": "error"
252
+ },
253
+ {
254
+ "inputs": [],
255
+ "name": "InvalidInitialization",
256
+ "type": "error"
257
+ },
258
+ {
259
+ "inputs": [],
260
+ "name": "NotInitializing",
261
+ "type": "error"
262
+ },
263
+ {
264
+ "inputs": [],
265
+ "name": "ReentrancyGuardReentrantCall",
266
+ "type": "error"
267
+ },
268
+ {
269
+ "anonymous": false,
270
+ "inputs": [
271
+ {
272
+ "indexed": false,
273
+ "internalType": "address",
274
+ "name": "authority",
275
+ "type": "address"
276
+ }
277
+ ],
278
+ "name": "AuthorityUpdated",
279
+ "type": "event"
280
+ },
281
+ {
282
+ "anonymous": false,
283
+ "inputs": [
284
+ {
285
+ "indexed": false,
286
+ "internalType": "uint64",
287
+ "name": "version",
288
+ "type": "uint64"
289
+ }
290
+ ],
291
+ "name": "Initialized",
292
+ "type": "event"
293
+ },
294
+ {
295
+ "anonymous": false,
296
+ "inputs": [
297
+ {
298
+ "indexed": false,
299
+ "internalType": "NftId",
300
+ "name": "nftId",
301
+ "type": "uint96"
302
+ },
303
+ {
304
+ "indexed": false,
305
+ "internalType": "address",
306
+ "name": "owner",
307
+ "type": "address"
308
+ }
309
+ ],
310
+ "name": "LogNftOwnableNftLinkedToAddress",
311
+ "type": "event"
312
+ },
313
+ {
314
+ "anonymous": false,
315
+ "inputs": [
316
+ {
317
+ "indexed": false,
318
+ "internalType": "NftId",
319
+ "name": "instanceNftId",
320
+ "type": "uint96"
321
+ },
322
+ {
323
+ "indexed": false,
324
+ "internalType": "uint256",
325
+ "name": "chainId",
326
+ "type": "uint256"
327
+ }
328
+ ],
329
+ "name": "LogStakingServiceInstanceTargetRegistered",
330
+ "type": "event"
331
+ },
332
+ {
333
+ "anonymous": false,
334
+ "inputs": [
335
+ {
336
+ "indexed": false,
337
+ "internalType": "NftId",
338
+ "name": "targetNftId",
339
+ "type": "uint96"
340
+ },
341
+ {
342
+ "indexed": false,
343
+ "internalType": "Seconds",
344
+ "name": "oldLockingDuration",
345
+ "type": "uint40"
346
+ },
347
+ {
348
+ "indexed": false,
349
+ "internalType": "Seconds",
350
+ "name": "lockingDuration",
351
+ "type": "uint40"
352
+ }
353
+ ],
354
+ "name": "LogStakingServiceLockingPeriodSet",
355
+ "type": "event"
356
+ },
357
+ {
358
+ "anonymous": false,
359
+ "inputs": [
360
+ {
361
+ "indexed": false,
362
+ "internalType": "NftId",
363
+ "name": "protocolNftId",
364
+ "type": "uint96"
365
+ }
366
+ ],
367
+ "name": "LogStakingServiceProtocolTargetRegistered",
368
+ "type": "event"
369
+ },
370
+ {
371
+ "anonymous": false,
372
+ "inputs": [
373
+ {
374
+ "indexed": false,
375
+ "internalType": "NftId",
376
+ "name": "targetNftId",
377
+ "type": "uint96"
378
+ },
379
+ {
380
+ "indexed": false,
381
+ "internalType": "UFixed",
382
+ "name": "oldRewardRate",
383
+ "type": "uint160"
384
+ },
385
+ {
386
+ "indexed": false,
387
+ "internalType": "UFixed",
388
+ "name": "rewardRate",
389
+ "type": "uint160"
390
+ }
391
+ ],
392
+ "name": "LogStakingServiceRewardRateSet",
393
+ "type": "event"
394
+ },
395
+ {
396
+ "anonymous": false,
397
+ "inputs": [
398
+ {
399
+ "indexed": false,
400
+ "internalType": "NftId",
401
+ "name": "targetNftId",
402
+ "type": "uint96"
403
+ },
404
+ {
405
+ "indexed": false,
406
+ "internalType": "address",
407
+ "name": "targetOwner",
408
+ "type": "address"
409
+ },
410
+ {
411
+ "indexed": false,
412
+ "internalType": "Amount",
413
+ "name": "dipAmount",
414
+ "type": "uint96"
415
+ },
416
+ {
417
+ "indexed": false,
418
+ "internalType": "Amount",
419
+ "name": "newBalance",
420
+ "type": "uint96"
421
+ }
422
+ ],
423
+ "name": "LogStakingServiceRewardReservesDecreased",
424
+ "type": "event"
425
+ },
426
+ {
427
+ "anonymous": false,
428
+ "inputs": [
429
+ {
430
+ "indexed": false,
431
+ "internalType": "NftId",
432
+ "name": "targetNftId",
433
+ "type": "uint96"
434
+ },
435
+ {
436
+ "indexed": false,
437
+ "internalType": "address",
438
+ "name": "rewardProvider",
439
+ "type": "address"
440
+ },
441
+ {
442
+ "indexed": false,
443
+ "internalType": "Amount",
444
+ "name": "dipAmount",
445
+ "type": "uint96"
446
+ },
447
+ {
448
+ "indexed": false,
449
+ "internalType": "Amount",
450
+ "name": "newBalance",
451
+ "type": "uint96"
452
+ }
453
+ ],
454
+ "name": "LogStakingServiceRewardReservesIncreased",
455
+ "type": "event"
456
+ },
457
+ {
458
+ "anonymous": false,
459
+ "inputs": [
460
+ {
461
+ "indexed": false,
462
+ "internalType": "NftId",
463
+ "name": "stakeNftId",
464
+ "type": "uint96"
465
+ },
466
+ {
467
+ "indexed": false,
468
+ "internalType": "address",
469
+ "name": "stakeOwner",
470
+ "type": "address"
471
+ },
472
+ {
473
+ "indexed": false,
474
+ "internalType": "Amount",
475
+ "name": "rewardsClaimedAmount",
476
+ "type": "uint96"
477
+ }
478
+ ],
479
+ "name": "LogStakingServiceRewardsClaimed",
480
+ "type": "event"
481
+ },
482
+ {
483
+ "anonymous": false,
484
+ "inputs": [
485
+ {
486
+ "indexed": false,
487
+ "internalType": "NftId",
488
+ "name": "stakeNftId",
489
+ "type": "uint96"
490
+ }
491
+ ],
492
+ "name": "LogStakingServiceRewardsUpdated",
493
+ "type": "event"
494
+ },
495
+ {
496
+ "anonymous": false,
497
+ "inputs": [
498
+ {
499
+ "indexed": false,
500
+ "internalType": "NftId",
501
+ "name": "stakeNftId",
502
+ "type": "uint96"
503
+ },
504
+ {
505
+ "indexed": false,
506
+ "internalType": "NftId",
507
+ "name": "targetNftId",
508
+ "type": "uint96"
509
+ },
510
+ {
511
+ "indexed": false,
512
+ "internalType": "address",
513
+ "name": "owner",
514
+ "type": "address"
515
+ },
516
+ {
517
+ "indexed": false,
518
+ "internalType": "Amount",
519
+ "name": "stakedAmount",
520
+ "type": "uint96"
521
+ }
522
+ ],
523
+ "name": "LogStakingServiceStakeCreated",
524
+ "type": "event"
525
+ },
526
+ {
527
+ "anonymous": false,
528
+ "inputs": [
529
+ {
530
+ "indexed": false,
531
+ "internalType": "NftId",
532
+ "name": "stakeNftId",
533
+ "type": "uint96"
534
+ },
535
+ {
536
+ "indexed": false,
537
+ "internalType": "address",
538
+ "name": "owner",
539
+ "type": "address"
540
+ },
541
+ {
542
+ "indexed": false,
543
+ "internalType": "Amount",
544
+ "name": "stakedAmount",
545
+ "type": "uint96"
546
+ },
547
+ {
548
+ "indexed": false,
549
+ "internalType": "Amount",
550
+ "name": "stakeBalance",
551
+ "type": "uint96"
552
+ }
553
+ ],
554
+ "name": "LogStakingServiceStakeIncreased",
555
+ "type": "event"
556
+ },
557
+ {
558
+ "anonymous": false,
559
+ "inputs": [
560
+ {
561
+ "indexed": false,
562
+ "internalType": "NftId",
563
+ "name": "stakeNftId",
564
+ "type": "uint96"
565
+ },
566
+ {
567
+ "indexed": false,
568
+ "internalType": "NftId",
569
+ "name": "targetNftId",
570
+ "type": "uint96"
571
+ },
572
+ {
573
+ "indexed": false,
574
+ "internalType": "address",
575
+ "name": "stakeOwner",
576
+ "type": "address"
577
+ }
578
+ ],
579
+ "name": "LogStakingServiceStakeObjectCreated",
580
+ "type": "event"
581
+ },
582
+ {
583
+ "anonymous": false,
584
+ "inputs": [
585
+ {
586
+ "indexed": false,
587
+ "internalType": "address",
588
+ "name": "stakeOwner",
589
+ "type": "address"
590
+ },
591
+ {
592
+ "indexed": true,
593
+ "internalType": "NftId",
594
+ "name": "stakeNftId",
595
+ "type": "uint96"
596
+ },
597
+ {
598
+ "indexed": false,
599
+ "internalType": "NftId",
600
+ "name": "newStakeNftId",
601
+ "type": "uint96"
602
+ },
603
+ {
604
+ "indexed": true,
605
+ "internalType": "NftId",
606
+ "name": "newTargetNftId",
607
+ "type": "uint96"
608
+ },
609
+ {
610
+ "indexed": true,
611
+ "internalType": "Amount",
612
+ "name": "newStakeBalance",
613
+ "type": "uint96"
614
+ }
615
+ ],
616
+ "name": "LogStakingServiceStakeRestaked",
617
+ "type": "event"
618
+ },
619
+ {
620
+ "anonymous": false,
621
+ "inputs": [
622
+ {
623
+ "indexed": false,
624
+ "internalType": "NftId",
625
+ "name": "stakeNftId",
626
+ "type": "uint96"
627
+ },
628
+ {
629
+ "indexed": false,
630
+ "internalType": "address",
631
+ "name": "stakeOwner",
632
+ "type": "address"
633
+ },
634
+ {
635
+ "indexed": false,
636
+ "internalType": "Amount",
637
+ "name": "totalAmount",
638
+ "type": "uint96"
639
+ }
640
+ ],
641
+ "name": "LogStakingServiceUnstaked",
642
+ "type": "event"
643
+ },
644
+ {
645
+ "inputs": [],
646
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
647
+ "outputs": [
648
+ {
649
+ "internalType": "bytes32",
650
+ "name": "",
651
+ "type": "bytes32"
652
+ }
653
+ ],
654
+ "stateMutability": "view",
655
+ "type": "function"
656
+ },
657
+ {
658
+ "inputs": [],
659
+ "name": "REGISTERABLE_LOCATION_V1",
660
+ "outputs": [
661
+ {
662
+ "internalType": "bytes32",
663
+ "name": "",
664
+ "type": "bytes32"
665
+ }
666
+ ],
667
+ "stateMutability": "view",
668
+ "type": "function"
669
+ },
670
+ {
671
+ "inputs": [],
672
+ "name": "STAKING_SERVICE_LOCATION_V1",
673
+ "outputs": [
674
+ {
675
+ "internalType": "bytes32",
676
+ "name": "",
677
+ "type": "bytes32"
678
+ }
679
+ ],
680
+ "stateMutability": "view",
681
+ "type": "function"
682
+ },
683
+ {
684
+ "inputs": [
685
+ {
686
+ "internalType": "contract IERC20Metadata",
687
+ "name": "token",
688
+ "type": "address"
689
+ },
690
+ {
691
+ "internalType": "Amount",
692
+ "name": "amount",
693
+ "type": "uint96"
694
+ }
695
+ ],
696
+ "name": "approveTokenHandler",
697
+ "outputs": [],
698
+ "stateMutability": "nonpayable",
699
+ "type": "function"
700
+ },
701
+ {
702
+ "inputs": [],
703
+ "name": "authority",
704
+ "outputs": [
705
+ {
706
+ "internalType": "address",
707
+ "name": "",
708
+ "type": "address"
709
+ }
710
+ ],
711
+ "stateMutability": "view",
712
+ "type": "function"
713
+ },
714
+ {
715
+ "inputs": [
716
+ {
717
+ "internalType": "NftId",
718
+ "name": "targetNftId",
719
+ "type": "uint96"
720
+ },
721
+ {
722
+ "internalType": "Seconds",
723
+ "name": "initialLockingPeriod",
724
+ "type": "uint40"
725
+ },
726
+ {
727
+ "internalType": "UFixed",
728
+ "name": "initialRewardRate",
729
+ "type": "uint160"
730
+ }
731
+ ],
732
+ "name": "createInstanceTarget",
733
+ "outputs": [],
734
+ "stateMutability": "nonpayable",
735
+ "type": "function"
736
+ },
737
+ {
738
+ "inputs": [
739
+ {
740
+ "internalType": "NftId",
741
+ "name": "targetNftId",
742
+ "type": "uint96"
743
+ },
744
+ {
745
+ "internalType": "address",
746
+ "name": "stakeOwner",
747
+ "type": "address"
748
+ }
749
+ ],
750
+ "name": "createStakeObject",
751
+ "outputs": [
752
+ {
753
+ "internalType": "NftId",
754
+ "name": "stakeNftId",
755
+ "type": "uint96"
756
+ }
757
+ ],
758
+ "stateMutability": "nonpayable",
759
+ "type": "function"
760
+ },
761
+ {
762
+ "inputs": [],
763
+ "name": "getDipToken",
764
+ "outputs": [
765
+ {
766
+ "internalType": "contract IERC20Metadata",
767
+ "name": "dip",
768
+ "type": "address"
769
+ }
770
+ ],
771
+ "stateMutability": "view",
772
+ "type": "function"
773
+ },
774
+ {
775
+ "inputs": [],
776
+ "name": "getDomain",
777
+ "outputs": [
778
+ {
779
+ "internalType": "ObjectType",
780
+ "name": "serviceDomain",
781
+ "type": "uint8"
782
+ }
783
+ ],
784
+ "stateMutability": "pure",
785
+ "type": "function"
786
+ },
787
+ {
788
+ "inputs": [],
789
+ "name": "getInitialInfo",
790
+ "outputs": [
791
+ {
792
+ "components": [
793
+ {
794
+ "internalType": "NftId",
795
+ "name": "nftId",
796
+ "type": "uint96"
797
+ },
798
+ {
799
+ "internalType": "NftId",
800
+ "name": "parentNftId",
801
+ "type": "uint96"
802
+ },
803
+ {
804
+ "internalType": "ObjectType",
805
+ "name": "objectType",
806
+ "type": "uint8"
807
+ },
808
+ {
809
+ "internalType": "bool",
810
+ "name": "isInterceptor",
811
+ "type": "bool"
812
+ },
813
+ {
814
+ "internalType": "address",
815
+ "name": "objectAddress",
816
+ "type": "address"
817
+ },
818
+ {
819
+ "internalType": "address",
820
+ "name": "initialOwner",
821
+ "type": "address"
822
+ },
823
+ {
824
+ "internalType": "bytes",
825
+ "name": "data",
826
+ "type": "bytes"
827
+ }
828
+ ],
829
+ "internalType": "struct IRegistry.ObjectInfo",
830
+ "name": "info",
831
+ "type": "tuple"
832
+ }
833
+ ],
834
+ "stateMutability": "view",
835
+ "type": "function"
836
+ },
837
+ {
838
+ "inputs": [],
839
+ "name": "getNftId",
840
+ "outputs": [
841
+ {
842
+ "internalType": "NftId",
843
+ "name": "",
844
+ "type": "uint96"
845
+ }
846
+ ],
847
+ "stateMutability": "view",
848
+ "type": "function"
849
+ },
850
+ {
851
+ "inputs": [],
852
+ "name": "getOwner",
853
+ "outputs": [
854
+ {
855
+ "internalType": "address",
856
+ "name": "",
857
+ "type": "address"
858
+ }
859
+ ],
860
+ "stateMutability": "view",
861
+ "type": "function"
862
+ },
863
+ {
864
+ "inputs": [],
865
+ "name": "getRegistry",
866
+ "outputs": [
867
+ {
868
+ "internalType": "contract IRegistry",
869
+ "name": "",
870
+ "type": "address"
871
+ }
872
+ ],
873
+ "stateMutability": "view",
874
+ "type": "function"
875
+ },
876
+ {
877
+ "inputs": [],
878
+ "name": "getRelease",
879
+ "outputs": [
880
+ {
881
+ "internalType": "VersionPart",
882
+ "name": "release",
883
+ "type": "uint8"
884
+ }
885
+ ],
886
+ "stateMutability": "view",
887
+ "type": "function"
888
+ },
889
+ {
890
+ "inputs": [],
891
+ "name": "getRoleId",
892
+ "outputs": [
893
+ {
894
+ "internalType": "RoleId",
895
+ "name": "serviceRoleId",
896
+ "type": "uint64"
897
+ }
898
+ ],
899
+ "stateMutability": "view",
900
+ "type": "function"
901
+ },
902
+ {
903
+ "inputs": [],
904
+ "name": "getStaking",
905
+ "outputs": [
906
+ {
907
+ "internalType": "contract IStaking",
908
+ "name": "staking",
909
+ "type": "address"
910
+ }
911
+ ],
912
+ "stateMutability": "view",
913
+ "type": "function"
914
+ },
915
+ {
916
+ "inputs": [],
917
+ "name": "getTokenHandler",
918
+ "outputs": [
919
+ {
920
+ "internalType": "contract TokenHandler",
921
+ "name": "tokenHandler",
922
+ "type": "address"
923
+ }
924
+ ],
925
+ "stateMutability": "view",
926
+ "type": "function"
927
+ },
928
+ {
929
+ "inputs": [],
930
+ "name": "getVersion",
931
+ "outputs": [
932
+ {
933
+ "internalType": "Version",
934
+ "name": "",
935
+ "type": "uint24"
936
+ }
937
+ ],
938
+ "stateMutability": "pure",
939
+ "type": "function"
940
+ },
941
+ {
942
+ "inputs": [
943
+ {
944
+ "internalType": "address",
945
+ "name": "activatedBy",
946
+ "type": "address"
947
+ },
948
+ {
949
+ "internalType": "bytes",
950
+ "name": "data",
951
+ "type": "bytes"
952
+ }
953
+ ],
954
+ "name": "initializeVersionable",
955
+ "outputs": [],
956
+ "stateMutability": "nonpayable",
957
+ "type": "function"
958
+ },
959
+ {
960
+ "inputs": [],
961
+ "name": "isActive",
962
+ "outputs": [
963
+ {
964
+ "internalType": "bool",
965
+ "name": "active",
966
+ "type": "bool"
967
+ }
968
+ ],
969
+ "stateMutability": "view",
970
+ "type": "function"
971
+ },
972
+ {
973
+ "inputs": [],
974
+ "name": "isConsumingScheduledOp",
975
+ "outputs": [
976
+ {
977
+ "internalType": "bytes4",
978
+ "name": "",
979
+ "type": "bytes4"
980
+ }
981
+ ],
982
+ "stateMutability": "view",
983
+ "type": "function"
984
+ },
985
+ {
986
+ "inputs": [],
987
+ "name": "linkToRegisteredNftId",
988
+ "outputs": [
989
+ {
990
+ "internalType": "NftId",
991
+ "name": "nftId",
992
+ "type": "uint96"
993
+ }
994
+ ],
995
+ "stateMutability": "nonpayable",
996
+ "type": "function"
997
+ },
998
+ {
999
+ "inputs": [
1000
+ {
1001
+ "internalType": "Amount",
1002
+ "name": "dipAmount",
1003
+ "type": "uint96"
1004
+ },
1005
+ {
1006
+ "internalType": "address",
1007
+ "name": "stakeOwner",
1008
+ "type": "address"
1009
+ }
1010
+ ],
1011
+ "name": "pullDipToken",
1012
+ "outputs": [],
1013
+ "stateMutability": "nonpayable",
1014
+ "type": "function"
1015
+ },
1016
+ {
1017
+ "inputs": [
1018
+ {
1019
+ "internalType": "Amount",
1020
+ "name": "dipAmount",
1021
+ "type": "uint96"
1022
+ },
1023
+ {
1024
+ "internalType": "address",
1025
+ "name": "stakeOwner",
1026
+ "type": "address"
1027
+ }
1028
+ ],
1029
+ "name": "pushDipToken",
1030
+ "outputs": [],
1031
+ "stateMutability": "nonpayable",
1032
+ "type": "function"
1033
+ },
1034
+ {
1035
+ "inputs": [
1036
+ {
1037
+ "internalType": "NftId",
1038
+ "name": "instanceNftId",
1039
+ "type": "uint96"
1040
+ },
1041
+ {
1042
+ "internalType": "address",
1043
+ "name": "rewardProvider",
1044
+ "type": "address"
1045
+ },
1046
+ {
1047
+ "internalType": "Amount",
1048
+ "name": "dipAmount",
1049
+ "type": "uint96"
1050
+ }
1051
+ ],
1052
+ "name": "refillInstanceRewardReserves",
1053
+ "outputs": [
1054
+ {
1055
+ "internalType": "Amount",
1056
+ "name": "newBalance",
1057
+ "type": "uint96"
1058
+ }
1059
+ ],
1060
+ "stateMutability": "nonpayable",
1061
+ "type": "function"
1062
+ },
1063
+ {
1064
+ "inputs": [
1065
+ {
1066
+ "internalType": "address",
1067
+ "name": "newAuthority",
1068
+ "type": "address"
1069
+ }
1070
+ ],
1071
+ "name": "setAuthority",
1072
+ "outputs": [],
1073
+ "stateMutability": "nonpayable",
1074
+ "type": "function"
1075
+ },
1076
+ {
1077
+ "inputs": [
1078
+ {
1079
+ "internalType": "NftId",
1080
+ "name": "instanceNftId",
1081
+ "type": "uint96"
1082
+ },
1083
+ {
1084
+ "internalType": "Seconds",
1085
+ "name": "lockingPeriod",
1086
+ "type": "uint40"
1087
+ }
1088
+ ],
1089
+ "name": "setInstanceLockingPeriod",
1090
+ "outputs": [],
1091
+ "stateMutability": "nonpayable",
1092
+ "type": "function"
1093
+ },
1094
+ {
1095
+ "inputs": [
1096
+ {
1097
+ "internalType": "NftId",
1098
+ "name": "instanceNftId",
1099
+ "type": "uint96"
1100
+ },
1101
+ {
1102
+ "internalType": "Amount",
1103
+ "name": "maxStakingAmount",
1104
+ "type": "uint96"
1105
+ }
1106
+ ],
1107
+ "name": "setInstanceMaxStakedAmount",
1108
+ "outputs": [],
1109
+ "stateMutability": "nonpayable",
1110
+ "type": "function"
1111
+ },
1112
+ {
1113
+ "inputs": [
1114
+ {
1115
+ "internalType": "NftId",
1116
+ "name": "instanceNftId",
1117
+ "type": "uint96"
1118
+ },
1119
+ {
1120
+ "internalType": "UFixed",
1121
+ "name": "rewardRate",
1122
+ "type": "uint160"
1123
+ }
1124
+ ],
1125
+ "name": "setInstanceRewardRate",
1126
+ "outputs": [],
1127
+ "stateMutability": "nonpayable",
1128
+ "type": "function"
1129
+ },
1130
+ {
1131
+ "inputs": [
1132
+ {
1133
+ "internalType": "NftId",
1134
+ "name": "targetNftId",
1135
+ "type": "uint96"
1136
+ },
1137
+ {
1138
+ "internalType": "address",
1139
+ "name": "token",
1140
+ "type": "address"
1141
+ },
1142
+ {
1143
+ "internalType": "Amount",
1144
+ "name": "amount",
1145
+ "type": "uint96"
1146
+ }
1147
+ ],
1148
+ "name": "setTotalValueLocked",
1149
+ "outputs": [],
1150
+ "stateMutability": "nonpayable",
1151
+ "type": "function"
1152
+ },
1153
+ {
1154
+ "inputs": [
1155
+ {
1156
+ "internalType": "bytes4",
1157
+ "name": "interfaceId",
1158
+ "type": "bytes4"
1159
+ }
1160
+ ],
1161
+ "name": "supportsInterface",
1162
+ "outputs": [
1163
+ {
1164
+ "internalType": "bool",
1165
+ "name": "",
1166
+ "type": "bool"
1167
+ }
1168
+ ],
1169
+ "stateMutability": "view",
1170
+ "type": "function"
1171
+ },
1172
+ {
1173
+ "inputs": [
1174
+ {
1175
+ "internalType": "bytes",
1176
+ "name": "data",
1177
+ "type": "bytes"
1178
+ }
1179
+ ],
1180
+ "name": "upgradeVersionable",
1181
+ "outputs": [],
1182
+ "stateMutability": "nonpayable",
1183
+ "type": "function"
1184
+ },
1185
+ {
1186
+ "inputs": [
1187
+ {
1188
+ "internalType": "NftId",
1189
+ "name": "instanceNftId",
1190
+ "type": "uint96"
1191
+ },
1192
+ {
1193
+ "internalType": "Amount",
1194
+ "name": "dipAmount",
1195
+ "type": "uint96"
1196
+ }
1197
+ ],
1198
+ "name": "withdrawInstanceRewardReserves",
1199
+ "outputs": [
1200
+ {
1201
+ "internalType": "Amount",
1202
+ "name": "newBalance",
1203
+ "type": "uint96"
1204
+ }
1205
+ ],
1206
+ "stateMutability": "nonpayable",
1207
+ "type": "function"
1208
+ }
1209
+ ],
1210
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612ee0806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101f2575f3560e01c806375cd310511610114578063ada9652e116100a9578063cb91455011610079578063cb91455014610488578063db1e36e71461049b578063dec3bdde146104ae578063f11bcbe7146104c1578063f71c4cef146104c9575f80fd5b8063ada9652e14610452578063b68d180914610466578063bf7e214f1461046d578063c26efb0514610475575f80fd5b8063893d20e8116100e4578063893d20e8146103ef5780638cf81e46146103f75780638fb360371461041e578063943bd1971461043f575f80fd5b806375cd3105146103a757806376b707b7146103ba5780637a9e5e4b146103d45780637b1391a6146103e7575f80fd5b80633e0dbe801161018a5780634bae314b1161015a5780634bae314b146103465780635ab1bd5314610359578063644c45e01461036a5780636c741e7814610387575f80fd5b80633e0dbe80146102ed578063419197fe1461030057806343d752d31461031357806349bb9e4b14610333575f80fd5b80631eff4b22116101c55780631eff4b221461028857806321ece657146102bd57806322f3e2d4146102d0578063329d6e74146102d8575f80fd5b806301ffc9a7146101f65780630d8e6e2c146102375780630fec111c14610253578063138461e014610268575b5f80fd5b61022261020436600461256e565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61023f6104dc565b60405162ffffff909116815260200161022e565b61025b610563565b60405161022e91906125ca565b61027061071d565b6040516001600160601b03909116815260200161022e565b6102af7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b6102706102cb366004612672565b610727565b61022261088c565b6102eb6102e636600461278d565b610903565b005b6102706102fb3660046127d2565b610a4d565b6102eb61030e3660046127fe565b610c31565b61031b610cd3565b6040516001600160a01b03909116815260200161022e565b6102eb61034136600461281a565b610cee565b6102eb610354366004612672565b610dea565b6001546001600160a01b031661031b565b5f80516020612e4b833981519152546001600160601b0316610270565b61038f610e48565b6040516001600160401b03909116815260200161022e565b6102eb6103b536600461287f565b610ed4565b6103c2610fbc565b60405160ff909116815260200161022e565b6102eb6103e23660046128c5565b611024565b61031b6110aa565b61031b6110c5565b6102af7f6548005c3f4340f82f348c576c0ff69f7f529cadd5ad41f96aae61abceeaa30081565b6104266111f6565b6040516001600160e01b0319909116815260200161022e565b6102eb61044d3660046128e0565b61122b565b6102af5f80516020612e4b83398151915281565b60036103c2565b61031b611239565b6102eb6104833660046127d2565b611254565b6102eb6104963660046127d2565b6112b2565b6102eb6104a936600461291d565b61132c565b6102706104bc3660046128e0565b61138f565b61031b6114f2565b6102eb6104d73660046127d2565b61150d565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561053a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055e9190612950565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561060f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610633919061297d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161067b6110c5565b6001600160a01b0316815260200182600101805461069890612998565b80601f01602080910402602001604051908101604052809291908181526020018280546106c490612998565b801561070f5780601f106106e65761010080835404028352916020019161070f565b820191905f5260205f20905b8154815290600101906020018083116106f257829003601f168201915b505050505081525091505090565b5f61055e30611587565b5f610734335b5f366117dd565b61073f83600a6118d3565b5f610748611a07565b90505f61075d6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156107aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ce91906129db565b600183015460405163ec0407d960e01b81529192506001600160a01b03169063ec0407d990610805908890889086906004016129f6565b6020604051808303815f875af1158015610821573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610845919061297d565b92507f1cbf8b37af4df8c27db081983bda17400796238db4d1edf44edacf559b3a25d78582868660405161087c9493929190612a22565b60405180910390a1505092915050565b5f610895611239565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156108d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fd9190612a65565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6109256104dc565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610963573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109879190612a92565b5f80516020612e8b8339815191528054600160401b900460ff16806109b9575080546001600160401b03808416911610155b156109d75760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a0183611a2b565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f610a573361072d565b610a5f611a07565b600101546001600160a01b03163314610a9257604051637dbf3cff60e11b81523360048201526024015b60405180910390fd5b5f610a9b611a07565b80546040805160e0810180835263bc1b392d60e01b905290519293506001600160a01b0390911691638105cc7f9190819073__$94a2c899be079b00d952d0d84fffaa5c34$__9063bc1b392d9060e4808501916020918187030181865af4158015610b08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b2c919061297d565b6001600160601b03168152602001876001600160601b03168152602001610b51601e90565b60ff1681526020015f151581526020015f6001600160a01b03168152602001866001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401610bad91906125ca565b6020604051808303815f875af1158015610bc9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bed919061297d565b91507f96325e799dd5dfa602546e55b37c9efdf3ff38c000bd677d4e75541033eef442828585604051610c22939291906129f6565b60405180910390a15092915050565b610c39611a07565b600101546001600160a01b03163314610c6757604051637dbf3cff60e11b8152336004820152602401610a89565b610c6f611a07565b6003015460405163ea0b3c7360e01b81526001600160a01b039091169063ea0b3c7390610ca29085908590600401612aad565b5f604051808303815f87803b158015610cb9575f80fd5b505af1158015610ccb573d5f803e3d5ffd5b505050505050565b5f610cdc611a07565b600301546001600160a01b0316919050565b5f80516020612e8b8339815191528054600160401b810460ff1615906001600160401b03165f81158015610d1f5750825b90505f826001600160401b03166001148015610d3a5750303b155b905081158015610d48575080155b15610d665760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610d9057845460ff60401b1916600160401b1785555b610d9a8787611a4c565b8315610de157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610df33361072d565b610dfe82600a6118d3565b610e06611a07565b60010154604051631b4e1ff960e21b81526001600160601b038085166004830152831660248201526001600160a01b0390911690636d387fe490604401610ca2565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe6003610e6d610fbc565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610eb0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055e9190612a92565b610edd3361072d565b46610ee6611a07565b600101546001600160a01b03166344dcf73085600a6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff16602482015264ffffffffff861660448201526001600160a01b03851660648201526084015f604051808303815f87803b158015610f5d575f80fd5b505af1158015610f6f573d5f803e3d5ffd5b5050604080516001600160601b0388168152602081018590527f471a2845289928aa76c379fe01dc0310ebf5000e7a977935811e173bdda224bd935001905060405180910390a150505050565b5f610fc5611239565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611000573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055e9190612ae8565b3361102d611239565b6001600160a01b0316816001600160a01b0316146110685760405162d1953b60e31b81526001600160a01b0382166004820152602401610a89565b816001600160a01b03163b5f0361109d576040516361798f2f60e11b81526001600160a01b0383166004820152602401610a89565b6110a682611cc9565b5050565b5f6110b3611a07565b600101546001600160a01b0316919050565b5f805f80516020612e4b83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611131573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111559190612a65565b156111e0576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156111b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111da91906129db565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020612e6b83398151915280545f9190600160a01b900460ff1661121d575f6111da565b638fb3603760e01b91505090565b6112343361072d565b505050565b5f80516020612e6b833981519152546001600160a01b031690565b61125d3361072d565b61126882600a6118d3565b611270611a07565b60010154604051630345861d60e01b81526001600160601b03841660048201526001600160a01b03838116602483015290911690630345861d90604401610ca2565b6112bb3361072d565b6112c3611a07565b600101546001600160a01b031633146112f157604051637dbf3cff60e11b8152336004820152602401610a89565b6112f9611a07565b600301546040516333f6af9b60e11b81526001600160a01b03909116906367ed5f3690610ca29084908690600401612aad565b6113353361072d565b61134082600a6118d3565b611348611a07565b60010154604051635ecf260f60e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b0390911690635ecf260f90604401610ca2565b5f6113993361072d565b6113a484600a6118d3565b5f6113ad611a07565b90505f6113c26001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03881660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561140f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061143391906129db565b600183015460405163d43a262360e01b81529192506001600160a01b03169063d43a26239061146a908990889086906004016129f6565b6020604051808303815f875af1158015611486573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114aa919061297d565b92507fcf86366087b008a90b57f4e7b955b94599f589d7267649942abfd34305fe5b2f868686866040516114e19493929190612a22565b60405180910390a150509392505050565b5f6114fb611a07565b600201546001600160a01b0316919050565b6115163361072d565b61151e611a07565b600101546001600160a01b0316331461154c57604051637dbf3cff60e11b8152336004820152602401610a89565b611554611a07565b60030154604051630f3f86bd60e31b81526001600160a01b03909116906379fc35e890610ca29084908690600401612aad565b5f805f80516020612e4b83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156115f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116179190612a65565b156116435780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610a89565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611695573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116b99190612a65565b6116e15760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610a89565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611733573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611757919061297d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b54906117a36110c5565b604080516001600160601b0390931683526001600160a01b0390911660208301520160405180910390a1546001600160601b031692915050565b5f80516020612e6b8339815191525f806118156117f8611239565b873061180760045f8a8c612b03565b61181091612b2a565b611d29565b9150915081610ccb5763ffffffff8116156118b057825460ff60a01b1916600160a01b178355611843611239565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161187293929190612b62565b5f604051808303815f87803b158015611889575f80fd5b505af115801561189b573d5f803e3d5ffd5b5050845460ff60a01b1916855550610ccb9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610a89565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611923573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119479190612a65565b806119d557506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa1580156119af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d39190612a65565b155b156110a65760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610a89565b7f6548005c3f4340f82f348c576c0ff69f7f529cadd5ad41f96aae61abceeaa30090565b611a33611e31565b60405163502ec37160e01b815260040160405180910390fd5b5f80516020612e8b8339815191528054600160401b810460ff1615906001600160401b03165f81158015611a7d5750825b90505f826001600160401b03166001148015611a985750303b155b905081158015611aa6575080155b15611ac45760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611aee57845460ff60401b1916600160401b1785555b5f805f88806020019051810190611b059190612ba1565b925092509250611b1683838c611e69565b5f611b1f611a07565b9050611b2b6002611f06565b81546001600160a01b0319166001600160a01b0391909116178155611b4f82611f9d565b6001820180546001600160a01b0319166001600160a01b03929092169182179055604080516321df0da760e01b815290516321df0da7916004808201926020929091908290030181865afa158015611ba9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bcd91906129db565b6002820180546001600160a01b0319166001600160a01b039283161790556001820154604080516343d752d360e01b8152905191909216916343d752d39160048083019260209291908290030181865afa158015611c2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c5191906129db565b6003820180546001600160a01b0319166001600160a01b0392909216919091179055611c8363c6c96fe160e01b61220a565b505050508315610de157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610dd8565b5f80516020612e6b83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251611d979190612be0565b5f60405180830381855afa9150503d805f8114611dcf576040519150601f19603f3d011682016040523d82523d5f602084013e611dd4565b606091505b50915091508115611e26576040815110611e065780806020019051810190611dfc9190612bf6565b9094509250611e26565b6020815110611e265780806020019051810190611e239190612a65565b93505b505094509492505050565b5f80516020612e8b83398151915254600160401b900460ff16611e6757604051631afcd79f60e31b815260040160405180910390fd5b565b611e71611e31565b611e7961223d565b611ef68383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ede919061297d565b60085f8660405180602001604052805f81525061224d565b61123463daf9067160e01b61220a565b5f611f196001546001600160a01b031690565b6001600160a01b031663d39e604383611f30610fbc565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611f73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f9791906129db565b92915050565b5f80611fb16001546001600160a01b031690565b6040516308b09a5f60e41b81526001600160a01b0385811660048301529190911690638b09a5f0906024015f60405180830381865afa158015611ff6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261201d9190810190612c75565b80516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612079573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209d9190612a65565b156120ee576120be81604001516120b2600390565b60ff9081169116141590565b156120e757604051637dbf3cff60e11b81526001600160a01b0384166004820152602401610a89565b5090919050565b6040516301ffc9a760e01b8152632ea4539360e11b60048201526001600160a01b038416906301ffc9a790602401602060405180830381865afa158015612137573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061215b9190612a65565b61218357604051632bf4d8e560e21b81526001600160a01b0384166004820152602401610a89565b3361218c611a07565b5460405163c4c79d8b60e01b81526001600160a01b03868116600483015283811660248301529091169063c4c79d8b906044015f604051808303815f875af11580156121da573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526122019190810190612c75565b50929392505050565b612212611e31565b61223a816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b612245611e31565b611e67612394565b612255611e31565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156122ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122cf9190612a65565b6122f75760405163cf6935e560e01b81526001600160a01b0388166004820152602401610a89565b612300876123c2565b61230a86836123d3565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016123798382612d90565b5061238a634a531f3360e01b61220a565b5050505050505050565b61239c611e31565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6123ca611e31565b61223a81612449565b6123db611e31565b6123e361245a565b6123ec826124a2565b6001600160a01b0381166124135760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020612e4b83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b612451611e31565b61223a81611cc9565b612462611e31565b611e676301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6124aa611e31565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015612500573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125249190612a65565b61254c5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a89565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f6020828403121561257e575f80fd5b81356001600160e01b031981168114612595575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151612612608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261265661010084018261259c565b949350505050565b6001600160601b038116811461223a575f80fd5b5f8060408385031215612683575f80fd5b823561268e8161265e565b9150602083013561269e8161265e565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156126df576126df6126a9565b60405290565b604051601f8201601f191681016001600160401b038111828210171561270d5761270d6126a9565b604052919050565b5f6001600160401b0382111561272d5761272d6126a9565b50601f01601f191660200190565b5f82601f83011261274a575f80fd5b813561275d61275882612715565b6126e5565b818152846020838601011115612771575f80fd5b816020850160208301375f918101602001919091529392505050565b5f6020828403121561279d575f80fd5b81356001600160401b038111156127b2575f80fd5b6126568482850161273b565b6001600160a01b038116811461223a575f80fd5b5f80604083850312156127e3575f80fd5b82356127ee8161265e565b9150602083013561269e816127be565b5f806040838503121561280f575f80fd5b823561268e816127be565b5f806040838503121561282b575f80fd5b8235612836816127be565b915060208301356001600160401b03811115612850575f80fd5b61285c8582860161273b565b9150509250929050565b803564ffffffffff8116811461287a575f80fd5b919050565b5f805f60608486031215612891575f80fd5b833561289c8161265e565b92506128aa60208501612866565b915060408401356128ba816127be565b809150509250925092565b5f602082840312156128d5575f80fd5b8135612595816127be565b5f805f606084860312156128f2575f80fd5b83356128fd8161265e565b9250602084013561290d816127be565b915060408401356128ba8161265e565b5f806040838503121561292e575f80fd5b82356129398161265e565b915061294760208401612866565b90509250929050565b5f60208284031215612960575f80fd5b815162ffffff81168114612595575f80fd5b805161287a8161265e565b5f6020828403121561298d575f80fd5b81516125958161265e565b600181811c908216806129ac57607f821691505b6020821081036129ca57634e487b7160e01b5f52602260045260245ffd5b50919050565b805161287a816127be565b5f602082840312156129eb575f80fd5b8151612595816127be565b6001600160601b0393841681529190921660208201526001600160a01b03909116604082015260600190565b6001600160601b0394851681526001600160a01b039390931660208401529083166040830152909116606082015260800190565b8051801515811461287a575f80fd5b5f60208284031215612a75575f80fd5b61259582612a56565b6001600160401b038116811461223a575f80fd5b5f60208284031215612aa2575f80fd5b815161259581612a7e565b6001600160a01b039290921682526001600160601b0316602082015260400190565b60ff8116811461223a575f80fd5b805161287a81612acf565b5f60208284031215612af8575f80fd5b815161259581612acf565b5f8085851115612b11575f80fd5b83861115612b1d575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015612b5b576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f805f60608486031215612bb3575f80fd5b8351612bbe816127be565b6020850151909350612bcf816127be565b60408501519092506128ba816127be565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612c07575f80fd5b612c1083612a56565b9150602083015163ffffffff8116811461269e575f80fd5b5f82601f830112612c37575f80fd5b8151612c4561275882612715565b818152846020838601011115612c59575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215612c85575f80fd5b81516001600160401b03811115612c9a575f80fd5b820160e08185031215612cab575f80fd5b612cb36126bd565b612cbc82612972565b8152612cca60208301612972565b6020820152612cdb60408301612add565b6040820152612cec60608301612a56565b6060820152612cfd608083016129d0565b6080820152612d0e60a083016129d0565b60a082015260c08201516001600160401b03811115612d2b575f80fd5b612d3786828501612c28565b60c083015250949350505050565b601f82111561123457805f5260205f20601f840160051c81016020851015612d6a5750805b601f840160051c820191505b81811015612d89575f8155600101612d76565b5050505050565b81516001600160401b03811115612da957612da96126a9565b612dbd81612db78454612998565b84612d45565b6020601f821160018114612def575f8315612dd85750848201515b5f19600385901b1c1916600184901b178455612d89565b5f84815260208120601f198516915b82811015612e1e5787850151825560209485019460019092019101612dfe565b5084821015612e3b57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220ab544201c1dcfe055af5d3389f8d8a8b8e5781ddbad583878a9459608cf3abde64736f6c634300081a0033",
1211
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101f2575f3560e01c806375cd310511610114578063ada9652e116100a9578063cb91455011610079578063cb91455014610488578063db1e36e71461049b578063dec3bdde146104ae578063f11bcbe7146104c1578063f71c4cef146104c9575f80fd5b8063ada9652e14610452578063b68d180914610466578063bf7e214f1461046d578063c26efb0514610475575f80fd5b8063893d20e8116100e4578063893d20e8146103ef5780638cf81e46146103f75780638fb360371461041e578063943bd1971461043f575f80fd5b806375cd3105146103a757806376b707b7146103ba5780637a9e5e4b146103d45780637b1391a6146103e7575f80fd5b80633e0dbe801161018a5780634bae314b1161015a5780634bae314b146103465780635ab1bd5314610359578063644c45e01461036a5780636c741e7814610387575f80fd5b80633e0dbe80146102ed578063419197fe1461030057806343d752d31461031357806349bb9e4b14610333575f80fd5b80631eff4b22116101c55780631eff4b221461028857806321ece657146102bd57806322f3e2d4146102d0578063329d6e74146102d8575f80fd5b806301ffc9a7146101f65780630d8e6e2c146102375780630fec111c14610253578063138461e014610268575b5f80fd5b61022261020436600461256e565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61023f6104dc565b60405162ffffff909116815260200161022e565b61025b610563565b60405161022e91906125ca565b61027061071d565b6040516001600160601b03909116815260200161022e565b6102af7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b6102706102cb366004612672565b610727565b61022261088c565b6102eb6102e636600461278d565b610903565b005b6102706102fb3660046127d2565b610a4d565b6102eb61030e3660046127fe565b610c31565b61031b610cd3565b6040516001600160a01b03909116815260200161022e565b6102eb61034136600461281a565b610cee565b6102eb610354366004612672565b610dea565b6001546001600160a01b031661031b565b5f80516020612e4b833981519152546001600160601b0316610270565b61038f610e48565b6040516001600160401b03909116815260200161022e565b6102eb6103b536600461287f565b610ed4565b6103c2610fbc565b60405160ff909116815260200161022e565b6102eb6103e23660046128c5565b611024565b61031b6110aa565b61031b6110c5565b6102af7f6548005c3f4340f82f348c576c0ff69f7f529cadd5ad41f96aae61abceeaa30081565b6104266111f6565b6040516001600160e01b0319909116815260200161022e565b6102eb61044d3660046128e0565b61122b565b6102af5f80516020612e4b83398151915281565b60036103c2565b61031b611239565b6102eb6104833660046127d2565b611254565b6102eb6104963660046127d2565b6112b2565b6102eb6104a936600461291d565b61132c565b6102706104bc3660046128e0565b61138f565b61031b6114f2565b6102eb6104d73660046127d2565b61150d565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561053a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055e9190612950565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561060f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610633919061297d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161067b6110c5565b6001600160a01b0316815260200182600101805461069890612998565b80601f01602080910402602001604051908101604052809291908181526020018280546106c490612998565b801561070f5780601f106106e65761010080835404028352916020019161070f565b820191905f5260205f20905b8154815290600101906020018083116106f257829003601f168201915b505050505081525091505090565b5f61055e30611587565b5f610734335b5f366117dd565b61073f83600a6118d3565b5f610748611a07565b90505f61075d6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156107aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ce91906129db565b600183015460405163ec0407d960e01b81529192506001600160a01b03169063ec0407d990610805908890889086906004016129f6565b6020604051808303815f875af1158015610821573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610845919061297d565b92507f1cbf8b37af4df8c27db081983bda17400796238db4d1edf44edacf559b3a25d78582868660405161087c9493929190612a22565b60405180910390a1505092915050565b5f610895611239565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156108d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fd9190612a65565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6109256104dc565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610963573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109879190612a92565b5f80516020612e8b8339815191528054600160401b900460ff16806109b9575080546001600160401b03808416911610155b156109d75760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a0183611a2b565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f610a573361072d565b610a5f611a07565b600101546001600160a01b03163314610a9257604051637dbf3cff60e11b81523360048201526024015b60405180910390fd5b5f610a9b611a07565b80546040805160e0810180835263bc1b392d60e01b905290519293506001600160a01b0390911691638105cc7f9190819073__$94a2c899be079b00d952d0d84fffaa5c34$__9063bc1b392d9060e4808501916020918187030181865af4158015610b08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b2c919061297d565b6001600160601b03168152602001876001600160601b03168152602001610b51601e90565b60ff1681526020015f151581526020015f6001600160a01b03168152602001866001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401610bad91906125ca565b6020604051808303815f875af1158015610bc9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bed919061297d565b91507f96325e799dd5dfa602546e55b37c9efdf3ff38c000bd677d4e75541033eef442828585604051610c22939291906129f6565b60405180910390a15092915050565b610c39611a07565b600101546001600160a01b03163314610c6757604051637dbf3cff60e11b8152336004820152602401610a89565b610c6f611a07565b6003015460405163ea0b3c7360e01b81526001600160a01b039091169063ea0b3c7390610ca29085908590600401612aad565b5f604051808303815f87803b158015610cb9575f80fd5b505af1158015610ccb573d5f803e3d5ffd5b505050505050565b5f610cdc611a07565b600301546001600160a01b0316919050565b5f80516020612e8b8339815191528054600160401b810460ff1615906001600160401b03165f81158015610d1f5750825b90505f826001600160401b03166001148015610d3a5750303b155b905081158015610d48575080155b15610d665760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610d9057845460ff60401b1916600160401b1785555b610d9a8787611a4c565b8315610de157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610df33361072d565b610dfe82600a6118d3565b610e06611a07565b60010154604051631b4e1ff960e21b81526001600160601b038085166004830152831660248201526001600160a01b0390911690636d387fe490604401610ca2565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe6003610e6d610fbc565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610eb0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055e9190612a92565b610edd3361072d565b46610ee6611a07565b600101546001600160a01b03166344dcf73085600a6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff16602482015264ffffffffff861660448201526001600160a01b03851660648201526084015f604051808303815f87803b158015610f5d575f80fd5b505af1158015610f6f573d5f803e3d5ffd5b5050604080516001600160601b0388168152602081018590527f471a2845289928aa76c379fe01dc0310ebf5000e7a977935811e173bdda224bd935001905060405180910390a150505050565b5f610fc5611239565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611000573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055e9190612ae8565b3361102d611239565b6001600160a01b0316816001600160a01b0316146110685760405162d1953b60e31b81526001600160a01b0382166004820152602401610a89565b816001600160a01b03163b5f0361109d576040516361798f2f60e11b81526001600160a01b0383166004820152602401610a89565b6110a682611cc9565b5050565b5f6110b3611a07565b600101546001600160a01b0316919050565b5f805f80516020612e4b83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611131573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111559190612a65565b156111e0576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156111b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111da91906129db565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020612e6b83398151915280545f9190600160a01b900460ff1661121d575f6111da565b638fb3603760e01b91505090565b6112343361072d565b505050565b5f80516020612e6b833981519152546001600160a01b031690565b61125d3361072d565b61126882600a6118d3565b611270611a07565b60010154604051630345861d60e01b81526001600160601b03841660048201526001600160a01b03838116602483015290911690630345861d90604401610ca2565b6112bb3361072d565b6112c3611a07565b600101546001600160a01b031633146112f157604051637dbf3cff60e11b8152336004820152602401610a89565b6112f9611a07565b600301546040516333f6af9b60e11b81526001600160a01b03909116906367ed5f3690610ca29084908690600401612aad565b6113353361072d565b61134082600a6118d3565b611348611a07565b60010154604051635ecf260f60e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b0390911690635ecf260f90604401610ca2565b5f6113993361072d565b6113a484600a6118d3565b5f6113ad611a07565b90505f6113c26001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03881660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561140f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061143391906129db565b600183015460405163d43a262360e01b81529192506001600160a01b03169063d43a26239061146a908990889086906004016129f6565b6020604051808303815f875af1158015611486573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114aa919061297d565b92507fcf86366087b008a90b57f4e7b955b94599f589d7267649942abfd34305fe5b2f868686866040516114e19493929190612a22565b60405180910390a150509392505050565b5f6114fb611a07565b600201546001600160a01b0316919050565b6115163361072d565b61151e611a07565b600101546001600160a01b0316331461154c57604051637dbf3cff60e11b8152336004820152602401610a89565b611554611a07565b60030154604051630f3f86bd60e31b81526001600160a01b03909116906379fc35e890610ca29084908690600401612aad565b5f805f80516020612e4b83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156115f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116179190612a65565b156116435780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610a89565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611695573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116b99190612a65565b6116e15760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610a89565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611733573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611757919061297d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b54906117a36110c5565b604080516001600160601b0390931683526001600160a01b0390911660208301520160405180910390a1546001600160601b031692915050565b5f80516020612e6b8339815191525f806118156117f8611239565b873061180760045f8a8c612b03565b61181091612b2a565b611d29565b9150915081610ccb5763ffffffff8116156118b057825460ff60a01b1916600160a01b178355611843611239565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161187293929190612b62565b5f604051808303815f87803b158015611889575f80fd5b505af115801561189b573d5f803e3d5ffd5b5050845460ff60a01b1916855550610ccb9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610a89565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611923573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119479190612a65565b806119d557506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa1580156119af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d39190612a65565b155b156110a65760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610a89565b7f6548005c3f4340f82f348c576c0ff69f7f529cadd5ad41f96aae61abceeaa30090565b611a33611e31565b60405163502ec37160e01b815260040160405180910390fd5b5f80516020612e8b8339815191528054600160401b810460ff1615906001600160401b03165f81158015611a7d5750825b90505f826001600160401b03166001148015611a985750303b155b905081158015611aa6575080155b15611ac45760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611aee57845460ff60401b1916600160401b1785555b5f805f88806020019051810190611b059190612ba1565b925092509250611b1683838c611e69565b5f611b1f611a07565b9050611b2b6002611f06565b81546001600160a01b0319166001600160a01b0391909116178155611b4f82611f9d565b6001820180546001600160a01b0319166001600160a01b03929092169182179055604080516321df0da760e01b815290516321df0da7916004808201926020929091908290030181865afa158015611ba9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bcd91906129db565b6002820180546001600160a01b0319166001600160a01b039283161790556001820154604080516343d752d360e01b8152905191909216916343d752d39160048083019260209291908290030181865afa158015611c2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c5191906129db565b6003820180546001600160a01b0319166001600160a01b0392909216919091179055611c8363c6c96fe160e01b61220a565b505050508315610de157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610dd8565b5f80516020612e6b83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251611d979190612be0565b5f60405180830381855afa9150503d805f8114611dcf576040519150601f19603f3d011682016040523d82523d5f602084013e611dd4565b606091505b50915091508115611e26576040815110611e065780806020019051810190611dfc9190612bf6565b9094509250611e26565b6020815110611e265780806020019051810190611e239190612a65565b93505b505094509492505050565b5f80516020612e8b83398151915254600160401b900460ff16611e6757604051631afcd79f60e31b815260040160405180910390fd5b565b611e71611e31565b611e7961223d565b611ef68383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ede919061297d565b60085f8660405180602001604052805f81525061224d565b61123463daf9067160e01b61220a565b5f611f196001546001600160a01b031690565b6001600160a01b031663d39e604383611f30610fbc565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611f73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f9791906129db565b92915050565b5f80611fb16001546001600160a01b031690565b6040516308b09a5f60e41b81526001600160a01b0385811660048301529190911690638b09a5f0906024015f60405180830381865afa158015611ff6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261201d9190810190612c75565b80516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612079573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209d9190612a65565b156120ee576120be81604001516120b2600390565b60ff9081169116141590565b156120e757604051637dbf3cff60e11b81526001600160a01b0384166004820152602401610a89565b5090919050565b6040516301ffc9a760e01b8152632ea4539360e11b60048201526001600160a01b038416906301ffc9a790602401602060405180830381865afa158015612137573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061215b9190612a65565b61218357604051632bf4d8e560e21b81526001600160a01b0384166004820152602401610a89565b3361218c611a07565b5460405163c4c79d8b60e01b81526001600160a01b03868116600483015283811660248301529091169063c4c79d8b906044015f604051808303815f875af11580156121da573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526122019190810190612c75565b50929392505050565b612212611e31565b61223a816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b612245611e31565b611e67612394565b612255611e31565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156122ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122cf9190612a65565b6122f75760405163cf6935e560e01b81526001600160a01b0388166004820152602401610a89565b612300876123c2565b61230a86836123d3565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016123798382612d90565b5061238a634a531f3360e01b61220a565b5050505050505050565b61239c611e31565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6123ca611e31565b61223a81612449565b6123db611e31565b6123e361245a565b6123ec826124a2565b6001600160a01b0381166124135760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020612e4b83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b612451611e31565b61223a81611cc9565b612462611e31565b611e676301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6124aa611e31565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015612500573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125249190612a65565b61254c5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a89565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f6020828403121561257e575f80fd5b81356001600160e01b031981168114612595575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151612612608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261265661010084018261259c565b949350505050565b6001600160601b038116811461223a575f80fd5b5f8060408385031215612683575f80fd5b823561268e8161265e565b9150602083013561269e8161265e565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156126df576126df6126a9565b60405290565b604051601f8201601f191681016001600160401b038111828210171561270d5761270d6126a9565b604052919050565b5f6001600160401b0382111561272d5761272d6126a9565b50601f01601f191660200190565b5f82601f83011261274a575f80fd5b813561275d61275882612715565b6126e5565b818152846020838601011115612771575f80fd5b816020850160208301375f918101602001919091529392505050565b5f6020828403121561279d575f80fd5b81356001600160401b038111156127b2575f80fd5b6126568482850161273b565b6001600160a01b038116811461223a575f80fd5b5f80604083850312156127e3575f80fd5b82356127ee8161265e565b9150602083013561269e816127be565b5f806040838503121561280f575f80fd5b823561268e816127be565b5f806040838503121561282b575f80fd5b8235612836816127be565b915060208301356001600160401b03811115612850575f80fd5b61285c8582860161273b565b9150509250929050565b803564ffffffffff8116811461287a575f80fd5b919050565b5f805f60608486031215612891575f80fd5b833561289c8161265e565b92506128aa60208501612866565b915060408401356128ba816127be565b809150509250925092565b5f602082840312156128d5575f80fd5b8135612595816127be565b5f805f606084860312156128f2575f80fd5b83356128fd8161265e565b9250602084013561290d816127be565b915060408401356128ba8161265e565b5f806040838503121561292e575f80fd5b82356129398161265e565b915061294760208401612866565b90509250929050565b5f60208284031215612960575f80fd5b815162ffffff81168114612595575f80fd5b805161287a8161265e565b5f6020828403121561298d575f80fd5b81516125958161265e565b600181811c908216806129ac57607f821691505b6020821081036129ca57634e487b7160e01b5f52602260045260245ffd5b50919050565b805161287a816127be565b5f602082840312156129eb575f80fd5b8151612595816127be565b6001600160601b0393841681529190921660208201526001600160a01b03909116604082015260600190565b6001600160601b0394851681526001600160a01b039390931660208401529083166040830152909116606082015260800190565b8051801515811461287a575f80fd5b5f60208284031215612a75575f80fd5b61259582612a56565b6001600160401b038116811461223a575f80fd5b5f60208284031215612aa2575f80fd5b815161259581612a7e565b6001600160a01b039290921682526001600160601b0316602082015260400190565b60ff8116811461223a575f80fd5b805161287a81612acf565b5f60208284031215612af8575f80fd5b815161259581612acf565b5f8085851115612b11575f80fd5b83861115612b1d575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015612b5b576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f805f60608486031215612bb3575f80fd5b8351612bbe816127be565b6020850151909350612bcf816127be565b60408501519092506128ba816127be565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612c07575f80fd5b612c1083612a56565b9150602083015163ffffffff8116811461269e575f80fd5b5f82601f830112612c37575f80fd5b8151612c4561275882612715565b818152846020838601011115612c59575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215612c85575f80fd5b81516001600160401b03811115612c9a575f80fd5b820160e08185031215612cab575f80fd5b612cb36126bd565b612cbc82612972565b8152612cca60208301612972565b6020820152612cdb60408301612add565b6040820152612cec60608301612a56565b6060820152612cfd608083016129d0565b6080820152612d0e60a083016129d0565b60a082015260c08201516001600160401b03811115612d2b575f80fd5b612d3786828501612c28565b60c083015250949350505050565b601f82111561123457805f5260205f20601f840160051c81016020851015612d6a5750805b601f840160051c820191505b81811015612d89575f8155600101612d76565b5050505050565b81516001600160401b03811115612da957612da96126a9565b612dbd81612db78454612998565b84612d45565b6020601f821160018114612def575f8315612dd85750848201515b5f19600385901b1c1916600184901b178455612d89565b5f84815260208120601f198516915b82811015612e1e5787850151825560209485019460019092019101612dfe565b5084821015612e3b57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220ab544201c1dcfe055af5d3389f8d8a8b8e5781ddbad583878a9459608cf3abde64736f6c634300081a0033",
1212
+ "linkReferences": {
1213
+ "contracts/shared/ContractLib.sol": {
1214
+ "ContractLib": [
1215
+ {
1216
+ "length": 20,
1217
+ "start": 9033
1218
+ },
1219
+ {
1220
+ "length": 20,
1221
+ "start": 9630
1222
+ }
1223
+ ]
1224
+ },
1225
+ "contracts/type/NftId.sol": {
1226
+ "NftIdLib": [
1227
+ {
1228
+ "length": 20,
1229
+ "start": 1696
1230
+ },
1231
+ {
1232
+ "length": 20,
1233
+ "start": 2980
1234
+ },
1235
+ {
1236
+ "length": 20,
1237
+ "start": 4559
1238
+ },
1239
+ {
1240
+ "length": 20,
1241
+ "start": 5777
1242
+ },
1243
+ {
1244
+ "length": 20,
1245
+ "start": 8471
1246
+ }
1247
+ ]
1248
+ },
1249
+ "contracts/type/ObjectType.sol": {
1250
+ "ObjectTypeLib": [
1251
+ {
1252
+ "length": 20,
1253
+ "start": 6593
1254
+ }
1255
+ ]
1256
+ },
1257
+ "contracts/type/RoleId.sol": {
1258
+ "RoleIdLib": [
1259
+ {
1260
+ "length": 20,
1261
+ "start": 3873
1262
+ }
1263
+ ]
1264
+ },
1265
+ "contracts/type/Version.sol": {
1266
+ "VersionLib": [
1267
+ {
1268
+ "length": 20,
1269
+ "start": 1496
1270
+ },
1271
+ {
1272
+ "length": 20,
1273
+ "start": 2523
1274
+ }
1275
+ ]
1276
+ }
1277
+ },
1278
+ "deployedLinkReferences": {
1279
+ "contracts/shared/ContractLib.sol": {
1280
+ "ContractLib": [
1281
+ {
1282
+ "length": 20,
1283
+ "start": 8819
1284
+ },
1285
+ {
1286
+ "length": 20,
1287
+ "start": 9416
1288
+ }
1289
+ ]
1290
+ },
1291
+ "contracts/type/NftId.sol": {
1292
+ "NftIdLib": [
1293
+ {
1294
+ "length": 20,
1295
+ "start": 1482
1296
+ },
1297
+ {
1298
+ "length": 20,
1299
+ "start": 2766
1300
+ },
1301
+ {
1302
+ "length": 20,
1303
+ "start": 4345
1304
+ },
1305
+ {
1306
+ "length": 20,
1307
+ "start": 5563
1308
+ },
1309
+ {
1310
+ "length": 20,
1311
+ "start": 8257
1312
+ }
1313
+ ]
1314
+ },
1315
+ "contracts/type/ObjectType.sol": {
1316
+ "ObjectTypeLib": [
1317
+ {
1318
+ "length": 20,
1319
+ "start": 6379
1320
+ }
1321
+ ]
1322
+ },
1323
+ "contracts/type/RoleId.sol": {
1324
+ "RoleIdLib": [
1325
+ {
1326
+ "length": 20,
1327
+ "start": 3659
1328
+ }
1329
+ ]
1330
+ },
1331
+ "contracts/type/Version.sol": {
1332
+ "VersionLib": [
1333
+ {
1334
+ "length": 20,
1335
+ "start": 1282
1336
+ },
1337
+ {
1338
+ "length": 20,
1339
+ "start": 2309
1340
+ }
1341
+ ]
1342
+ }
1343
+ }
1344
+ }