@etherisc/gif-next 0.0.2-e9a637d-547 → 0.0.2-ea09fbf-195

Sign up to get free protection for your applications and to get access to all the features.
Files changed (714) hide show
  1. package/README.md +83 -22
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → accounting/IAccountingService.sol/IAccountingService.json} +327 -380
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1341 -0
  10. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1434 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +414 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1092 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +295 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1322 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +470 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +259 -572
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1501 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +860 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +258 -312
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +243 -325
  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 +1475 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +502 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2040 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +470 -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 +1479 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +470 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1195 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1655 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +502 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2408 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +470 -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 +263 -115
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +228 -123
  72. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/Instance.sol/Instance.json +288 -233
  74. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1800 -0
  76. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +574 -0
  78. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  79. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1610 -560
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +262 -445
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +156 -157
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1780 -739
  86. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  87. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -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/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
  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/ObjectSetHelper.sol/ObjectSetHelperLib.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSetHelper.sol/ObjectSetHelperLib.json +168 -0
  100. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  101. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +8 -116
  102. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  103. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  104. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  105. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  106. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  107. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  108. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  109. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  110. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +959 -0
  111. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  112. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +478 -0
  113. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  114. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  115. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  116. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → oracle/IOracleComponent.sol/IOracleComponent.json} +228 -284
  117. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  118. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +302 -175
  119. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  120. package/artifacts/contracts/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +262 -229
  121. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  122. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
  123. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  124. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -0
  125. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  126. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +318 -442
  127. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  128. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +502 -0
  129. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  130. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1367 -0
  131. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  132. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +820 -0
  133. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  134. package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +347 -60
  135. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  136. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +907 -0
  137. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  138. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1309 -0
  139. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  140. package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +377 -414
  141. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  142. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1626 -0
  143. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  144. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +792 -0
  145. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  146. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +813 -0
  147. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  148. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +728 -0
  149. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  150. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +451 -457
  151. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  152. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +470 -0
  153. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  154. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1538 -0
  155. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  156. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +860 -0
  157. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  158. package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +138 -163
  159. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  160. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1082 -0
  161. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  162. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +968 -0
  163. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  164. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +602 -0
  165. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  166. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1018 -0
  167. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  168. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +64 -61
  169. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  170. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1320 -0
  171. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  172. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +808 -0
  173. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  174. package/artifacts/contracts/product/PricingService.sol/PricingService.json +930 -0
  175. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  176. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +784 -0
  177. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  178. package/artifacts/contracts/product/Product.sol/Product.json +1119 -0
  179. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  180. package/artifacts/contracts/product/RiskService.sol/RiskService.json +637 -0
  181. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  182. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +724 -0
  183. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  184. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
  185. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  186. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +464 -29
  187. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  188. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +286 -109
  189. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  190. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  191. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  192. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
  193. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  194. package/artifacts/contracts/registry/Registry.sol/Registry.json +953 -127
  195. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  196. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1861 -0
  197. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  198. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +360 -249
  199. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  200. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +164 -99
  201. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  202. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1795 -0
  203. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  204. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  205. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  206. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1325 -0
  207. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  208. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
  209. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  210. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +317 -154
  211. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  212. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +280 -180
  213. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  214. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1597 -0
  215. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  216. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +824 -0
  217. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  218. package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +142 -132
  219. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  220. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +541 -0
  221. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  222. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  223. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  224. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  225. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  227. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  228. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +152 -125
  229. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  230. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1221 -0
  231. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  232. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +709 -0
  233. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  234. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
  235. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  236. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  237. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  238. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -10
  239. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  240. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  241. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  242. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +144 -3
  243. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  244. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  245. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  246. package/artifacts/contracts/shared/IService.sol/IService.json +69 -5
  247. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  248. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  249. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  250. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +797 -0
  251. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  252. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  253. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  254. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  255. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  256. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  257. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  258. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +28 -70
  259. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  260. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  261. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  262. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +126 -100
  263. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  264. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  265. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  266. package/artifacts/contracts/shared/Service.sol/Service.json +66 -109
  267. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  268. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +734 -8
  269. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  270. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +395 -0
  271. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  272. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  273. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  274. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1447 -0
  275. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  276. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1067 -0
  277. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  278. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  279. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  280. package/artifacts/contracts/staking/Staking.sol/Staking.json +1849 -0
  281. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  282. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  283. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  284. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +788 -0
  285. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  286. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
  287. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  288. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1272 -0
  289. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  290. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +732 -0
  291. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  292. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
  293. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  294. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  295. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  296. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  297. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  298. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  299. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  300. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  301. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  302. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  303. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  304. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  305. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  306. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  307. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  308. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  309. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  310. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  311. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  312. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  313. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  314. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  315. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  316. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  317. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  318. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  319. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  320. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  321. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  322. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  323. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  324. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +199 -0
  325. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  326. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  327. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  328. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  329. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  330. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  331. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  332. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  333. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  334. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  335. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  336. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  337. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  338. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  339. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  340. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
  341. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  342. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  343. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  344. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +113 -0
  345. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  346. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  347. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  348. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
  349. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  350. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  351. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  352. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  353. package/contracts/accounting/AccountingService.sol +262 -0
  354. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  355. package/contracts/accounting/IAccountingService.sol +45 -0
  356. package/contracts/authorization/AccessAdmin.sol +659 -0
  357. package/contracts/authorization/AccessManagerCloneable.sol +149 -0
  358. package/contracts/authorization/Authorization.sol +289 -0
  359. package/contracts/authorization/IAccess.sol +49 -0
  360. package/contracts/authorization/IAccessAdmin.sol +140 -0
  361. package/contracts/authorization/IAuthorization.sol +60 -0
  362. package/contracts/authorization/IServiceAuthorization.sol +40 -0
  363. package/contracts/authorization/ServiceAuthorization.sol +106 -0
  364. package/contracts/distribution/BasicDistribution.sol +139 -0
  365. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  366. package/contracts/{components → distribution}/Distribution.sol +170 -163
  367. package/contracts/distribution/DistributionService.sol +357 -0
  368. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  369. package/contracts/distribution/IDistributionComponent.sol +52 -0
  370. package/contracts/{instance/service → distribution}/IDistributionService.sol +35 -34
  371. package/contracts/examples/fire/DamageLevel.sol +59 -0
  372. package/contracts/examples/fire/FirePool.sol +90 -0
  373. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  374. package/contracts/examples/fire/FireProduct.sol +438 -0
  375. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  376. package/contracts/examples/fire/FireUSD.sol +26 -0
  377. package/contracts/examples/unpermissioned/SimpleDistribution.sol +57 -0
  378. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  379. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  380. package/contracts/examples/unpermissioned/SimplePool.sol +107 -0
  381. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  382. package/contracts/examples/unpermissioned/SimpleProduct.sol +370 -0
  383. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  384. package/contracts/instance/BundleSet.sol +130 -0
  385. package/contracts/instance/IInstance.sol +43 -37
  386. package/contracts/instance/IInstanceService.sol +37 -49
  387. package/contracts/instance/Instance.sol +142 -106
  388. package/contracts/instance/InstanceAdmin.sol +326 -0
  389. package/contracts/instance/InstanceAuthorizationV3.sol +225 -0
  390. package/contracts/instance/InstanceReader.sol +363 -60
  391. package/contracts/instance/InstanceService.sol +258 -384
  392. package/contracts/instance/InstanceServiceManager.sol +14 -29
  393. package/contracts/instance/InstanceStore.sol +174 -95
  394. package/contracts/instance/RiskSet.sol +118 -0
  395. package/contracts/instance/base/BalanceStore.sol +123 -0
  396. package/contracts/instance/base/Cloneable.sol +28 -0
  397. package/contracts/instance/base/ObjectCounter.sol +20 -0
  398. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  399. package/contracts/instance/base/ObjectSet.sol +77 -0
  400. package/contracts/instance/base/ObjectSetHelper.sol +30 -0
  401. package/contracts/instance/module/IAccess.sol +4 -12
  402. package/contracts/instance/module/IBundle.sol +6 -9
  403. package/contracts/instance/module/IComponents.sol +28 -18
  404. package/contracts/instance/module/IDistribution.sol +6 -6
  405. package/contracts/instance/module/IPolicy.sol +48 -35
  406. package/contracts/instance/module/IRisk.sol +4 -1
  407. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  408. package/contracts/oracle/BasicOracle.sol +47 -0
  409. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  410. package/contracts/oracle/IOracle.sol +36 -0
  411. package/contracts/oracle/IOracleComponent.sol +33 -0
  412. package/contracts/oracle/IOracleService.sol +66 -0
  413. package/contracts/oracle/Oracle.sol +156 -0
  414. package/contracts/oracle/OracleService.sol +310 -0
  415. package/contracts/oracle/OracleServiceManager.sol +39 -0
  416. package/contracts/pool/BasicPool.sol +175 -0
  417. package/contracts/pool/BasicPoolAuthorization.sol +68 -0
  418. package/contracts/pool/BundleService.sol +425 -0
  419. package/contracts/pool/BundleServiceManager.sol +39 -0
  420. package/contracts/pool/IBundleService.sol +121 -0
  421. package/contracts/pool/IPoolComponent.sol +62 -0
  422. package/contracts/pool/IPoolService.sol +153 -0
  423. package/contracts/pool/Pool.sol +345 -0
  424. package/contracts/pool/PoolService.sol +615 -0
  425. package/contracts/pool/PoolServiceManager.sol +39 -0
  426. package/contracts/product/ApplicationService.sol +259 -0
  427. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  428. package/contracts/product/BasicProduct.sol +51 -0
  429. package/contracts/product/BasicProductAuthorization.sol +41 -0
  430. package/contracts/product/ClaimService.sol +708 -0
  431. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  432. package/contracts/{instance/service → product}/IApplicationService.sol +19 -35
  433. package/contracts/product/IClaimService.sol +136 -0
  434. package/contracts/product/IPolicyService.sol +90 -0
  435. package/contracts/product/IPricingService.sol +39 -0
  436. package/contracts/product/IProductComponent.sol +62 -0
  437. package/contracts/product/IRiskService.sol +33 -0
  438. package/contracts/product/PolicyService.sol +736 -0
  439. package/contracts/product/PolicyServiceManager.sol +39 -0
  440. package/contracts/product/PricingService.sol +304 -0
  441. package/contracts/product/PricingServiceManager.sol +39 -0
  442. package/contracts/product/Product.sol +463 -0
  443. package/contracts/product/RiskService.sol +151 -0
  444. package/contracts/product/RiskServiceManager.sol +39 -0
  445. package/contracts/registry/ChainNft.sol +79 -40
  446. package/contracts/registry/IRegistry.sol +93 -30
  447. package/contracts/registry/IRegistryService.sol +34 -40
  448. package/contracts/registry/IRelease.sol +26 -0
  449. package/contracts/registry/ITransferInterceptor.sol +1 -2
  450. package/contracts/registry/Registry.sol +456 -197
  451. package/contracts/registry/RegistryAdmin.sol +344 -0
  452. package/contracts/registry/RegistryService.sol +89 -130
  453. package/contracts/registry/RegistryServiceManager.sol +23 -32
  454. package/contracts/registry/ReleaseAdmin.sol +245 -0
  455. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  456. package/contracts/registry/ReleaseRegistry.sol +511 -0
  457. package/contracts/registry/ServiceAuthorizationV3.sol +242 -0
  458. package/contracts/registry/TokenRegistry.sol +261 -64
  459. package/contracts/shared/Component.sol +226 -0
  460. package/contracts/shared/ComponentService.sol +700 -0
  461. package/contracts/shared/ComponentServiceManager.sol +38 -0
  462. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  463. package/contracts/shared/ContractLib.sol +252 -0
  464. package/contracts/shared/IComponent.sol +61 -0
  465. package/contracts/shared/IComponentService.sol +116 -0
  466. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  467. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  468. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  469. package/contracts/shared/INftOwnable.sol +4 -2
  470. package/contracts/shared/IPolicyHolder.sol +23 -14
  471. package/contracts/shared/IRegisterable.sol +23 -1
  472. package/contracts/shared/IRegistryLinked.sol +0 -1
  473. package/contracts/shared/IService.sol +12 -5
  474. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
  475. package/contracts/shared/InstanceLinkedComponent.sol +197 -0
  476. package/contracts/shared/KeyValueStore.sol +131 -0
  477. package/contracts/shared/Lifecycle.sol +88 -0
  478. package/contracts/shared/NftIdSet.sol +65 -0
  479. package/contracts/shared/NftOwnable.sol +34 -27
  480. package/contracts/shared/PolicyHolder.sol +22 -41
  481. package/contracts/shared/Registerable.sol +55 -20
  482. package/contracts/shared/RegistryLinked.sol +9 -19
  483. package/contracts/shared/Service.sol +33 -40
  484. package/contracts/shared/TokenHandler.sol +368 -12
  485. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  486. package/contracts/staking/IStaking.sol +173 -0
  487. package/contracts/staking/IStakingService.sol +157 -0
  488. package/contracts/staking/StakeManagerLib.sol +224 -0
  489. package/contracts/staking/Staking.sol +526 -0
  490. package/contracts/staking/StakingLifecycle.sol +23 -0
  491. package/contracts/staking/StakingManager.sol +52 -0
  492. package/contracts/staking/StakingReader.sol +190 -0
  493. package/contracts/staking/StakingService.sol +439 -0
  494. package/contracts/staking/StakingServiceManager.sol +44 -0
  495. package/contracts/staking/StakingStore.sol +605 -0
  496. package/contracts/staking/TargetManagerLib.sol +211 -0
  497. package/contracts/{types → type}/AddressSet.sol +1 -1
  498. package/contracts/type/Amount.sol +150 -0
  499. package/contracts/{types → type}/Blocknumber.sol +26 -3
  500. package/contracts/{types → type}/ClaimId.sol +31 -3
  501. package/contracts/{types → type}/Fee.sol +24 -22
  502. package/contracts/{types → type}/Key32.sol +2 -2
  503. package/contracts/type/Key32Set.sol +62 -0
  504. package/contracts/{types → type}/NftId.sol +21 -16
  505. package/contracts/{types → type}/NftIdSet.sol +2 -2
  506. package/contracts/type/ObjectType.sol +290 -0
  507. package/contracts/type/PayoutId.sol +82 -0
  508. package/contracts/{types → type}/Referral.sol +2 -1
  509. package/contracts/type/RequestId.sol +75 -0
  510. package/contracts/type/RiskId.sol +74 -0
  511. package/contracts/type/RoleId.sol +165 -0
  512. package/contracts/type/Seconds.sol +101 -0
  513. package/contracts/type/Selector.sol +102 -0
  514. package/contracts/{types → type}/StateId.sol +47 -4
  515. package/contracts/type/String.sol +53 -0
  516. package/contracts/{types → type}/Timestamp.sol +20 -6
  517. package/contracts/{types → type}/UFixed.sol +40 -121
  518. package/contracts/{types → type}/Version.sol +19 -7
  519. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  520. package/contracts/{shared → upgradeability}/ProxyManager.sol +93 -30
  521. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  522. package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
  523. package/package.json +11 -7
  524. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  525. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  526. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  527. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  528. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  529. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  530. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  531. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  532. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  533. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  534. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  535. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
  536. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  537. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  538. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1348
  539. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  540. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
  541. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  542. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  543. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  544. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  545. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
  546. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  547. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
  548. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  549. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  550. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  551. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  552. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -1039
  553. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  554. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -673
  555. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  556. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1231
  557. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  558. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -721
  559. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  560. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -817
  561. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  562. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -641
  563. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  564. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1798
  565. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  566. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
  567. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  568. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  569. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  570. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  571. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  572. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  573. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  574. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  575. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1092
  576. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  577. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -697
  578. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  579. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1237
  580. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  581. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -661
  582. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  583. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -840
  584. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  585. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -653
  586. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  587. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  588. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  589. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
  590. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  591. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  592. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  593. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  594. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  595. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  596. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  597. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  598. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  599. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  600. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  601. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  602. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  603. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  604. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  605. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  606. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  607. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -596
  608. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  609. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  610. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  611. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  612. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  613. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  614. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  615. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  616. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  617. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  618. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
  619. package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -161
  620. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  621. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  622. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  623. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  624. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  625. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  626. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  627. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  628. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  629. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -288
  630. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  631. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  632. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  633. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  634. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  635. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  636. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  637. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  638. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  639. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  640. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  641. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  642. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  643. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  644. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  645. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  646. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  647. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  648. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  649. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  650. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  651. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  652. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  653. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  654. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  655. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  656. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  657. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  658. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  659. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  660. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  661. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  662. package/contracts/components/Component.sol +0 -253
  663. package/contracts/components/IComponent.sol +0 -76
  664. package/contracts/components/IDistributionComponent.sol +0 -71
  665. package/contracts/components/IPoolComponent.sol +0 -113
  666. package/contracts/components/IProductComponent.sol +0 -40
  667. package/contracts/components/Pool.sol +0 -303
  668. package/contracts/components/Product.sol +0 -293
  669. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
  670. package/contracts/instance/BundleManager.sol +0 -127
  671. package/contracts/instance/Cloneable.sol +0 -51
  672. package/contracts/instance/InstanceAccessManager.sol +0 -540
  673. package/contracts/instance/ObjectManager.sol +0 -82
  674. package/contracts/instance/base/ComponentService.sol +0 -121
  675. package/contracts/instance/base/KeyValueStore.sol +0 -180
  676. package/contracts/instance/base/Lifecycle.sol +0 -109
  677. package/contracts/instance/module/ISetup.sol +0 -33
  678. package/contracts/instance/module/ITreasury.sol +0 -23
  679. package/contracts/instance/service/ApplicationService.sol +0 -351
  680. package/contracts/instance/service/BundleService.sol +0 -431
  681. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  682. package/contracts/instance/service/ClaimService.sol +0 -151
  683. package/contracts/instance/service/DistributionService.sol +0 -437
  684. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  685. package/contracts/instance/service/IBundleService.sol +0 -93
  686. package/contracts/instance/service/IClaimService.sol +0 -61
  687. package/contracts/instance/service/IPolicyService.sol +0 -72
  688. package/contracts/instance/service/IPoolService.sol +0 -99
  689. package/contracts/instance/service/IProductService.sol +0 -40
  690. package/contracts/instance/service/PolicyService.sol +0 -362
  691. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  692. package/contracts/instance/service/PoolService.sol +0 -303
  693. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  694. package/contracts/instance/service/ProductService.sol +0 -209
  695. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  696. package/contracts/registry/RegistryAccessManager.sol +0 -216
  697. package/contracts/registry/ReleaseManager.sol +0 -324
  698. package/contracts/shared/ContractDeployerLib.sol +0 -72
  699. package/contracts/test/TestFee.sol +0 -25
  700. package/contracts/test/TestRegisterable.sol +0 -18
  701. package/contracts/test/TestRoleId.sol +0 -14
  702. package/contracts/test/TestService.sol +0 -25
  703. package/contracts/test/TestToken.sol +0 -26
  704. package/contracts/test/TestVersion.sol +0 -44
  705. package/contracts/test/TestVersionable.sol +0 -17
  706. package/contracts/types/Amount.sol +0 -60
  707. package/contracts/types/ChainId.sol +0 -38
  708. package/contracts/types/NumberId.sol +0 -52
  709. package/contracts/types/ObjectType.sol +0 -157
  710. package/contracts/types/PayoutId.sol +0 -54
  711. package/contracts/types/RiskId.sol +0 -43
  712. package/contracts/types/RoleId.sol +0 -97
  713. package/contracts/types/Seconds.sol +0 -54
  714. /package/contracts/{types → type}/DistributorType.sol +0 -0
@@ -0,0 +1,1479 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "SimpleDistribution",
4
+ "sourceName": "contracts/examples/unpermissioned/SimpleDistribution.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "registry",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "NftId",
15
+ "name": "productNftId",
16
+ "type": "uint96"
17
+ },
18
+ {
19
+ "internalType": "contract IAuthorization",
20
+ "name": "authorization",
21
+ "type": "address"
22
+ },
23
+ {
24
+ "internalType": "address",
25
+ "name": "initialOwner",
26
+ "type": "address"
27
+ },
28
+ {
29
+ "internalType": "address",
30
+ "name": "token",
31
+ "type": "address"
32
+ }
33
+ ],
34
+ "stateMutability": "nonpayable",
35
+ "type": "constructor"
36
+ },
37
+ {
38
+ "inputs": [
39
+ {
40
+ "internalType": "address",
41
+ "name": "authority",
42
+ "type": "address"
43
+ }
44
+ ],
45
+ "name": "AccessManagedInvalidAuthority",
46
+ "type": "error"
47
+ },
48
+ {
49
+ "inputs": [
50
+ {
51
+ "internalType": "address",
52
+ "name": "caller",
53
+ "type": "address"
54
+ },
55
+ {
56
+ "internalType": "uint32",
57
+ "name": "delay",
58
+ "type": "uint32"
59
+ }
60
+ ],
61
+ "name": "AccessManagedRequiredDelay",
62
+ "type": "error"
63
+ },
64
+ {
65
+ "inputs": [
66
+ {
67
+ "internalType": "address",
68
+ "name": "caller",
69
+ "type": "address"
70
+ }
71
+ ],
72
+ "name": "AccessManagedUnauthorized",
73
+ "type": "error"
74
+ },
75
+ {
76
+ "inputs": [
77
+ {
78
+ "internalType": "address",
79
+ "name": "authority",
80
+ "type": "address"
81
+ }
82
+ ],
83
+ "name": "ErrorAuthorityInvalid",
84
+ "type": "error"
85
+ },
86
+ {
87
+ "inputs": [],
88
+ "name": "ErrorComponentNameLengthZero",
89
+ "type": "error"
90
+ },
91
+ {
92
+ "inputs": [
93
+ {
94
+ "internalType": "address",
95
+ "name": "caller",
96
+ "type": "address"
97
+ }
98
+ ],
99
+ "name": "ErrorComponentNotChainNft",
100
+ "type": "error"
101
+ },
102
+ {
103
+ "inputs": [],
104
+ "name": "ErrorComponentProductNftIdNonzero",
105
+ "type": "error"
106
+ },
107
+ {
108
+ "inputs": [],
109
+ "name": "ErrorComponentProductNftIdZero",
110
+ "type": "error"
111
+ },
112
+ {
113
+ "inputs": [
114
+ {
115
+ "internalType": "address",
116
+ "name": "token",
117
+ "type": "address"
118
+ }
119
+ ],
120
+ "name": "ErrorComponentTokenInvalid",
121
+ "type": "error"
122
+ },
123
+ {
124
+ "inputs": [],
125
+ "name": "ErrorComponentWalletAddressIsSameAsCurrent",
126
+ "type": "error"
127
+ },
128
+ {
129
+ "inputs": [],
130
+ "name": "ErrorComponentWalletAddressZero",
131
+ "type": "error"
132
+ },
133
+ {
134
+ "inputs": [],
135
+ "name": "ErrorComponentWalletNotComponent",
136
+ "type": "error"
137
+ },
138
+ {
139
+ "inputs": [
140
+ {
141
+ "internalType": "address",
142
+ "name": "distributor",
143
+ "type": "address"
144
+ },
145
+ {
146
+ "internalType": "NftId",
147
+ "name": "distributorNftId",
148
+ "type": "uint96"
149
+ }
150
+ ],
151
+ "name": "ErrorDistributionAlreadyDistributor",
152
+ "type": "error"
153
+ },
154
+ {
155
+ "inputs": [
156
+ {
157
+ "internalType": "address",
158
+ "name": "distributor",
159
+ "type": "address"
160
+ }
161
+ ],
162
+ "name": "ErrorDistributionNotDistributor",
163
+ "type": "error"
164
+ },
165
+ {
166
+ "inputs": [
167
+ {
168
+ "internalType": "NftId",
169
+ "name": "nftId",
170
+ "type": "uint96"
171
+ },
172
+ {
173
+ "internalType": "ObjectType",
174
+ "name": "objectType",
175
+ "type": "uint8"
176
+ }
177
+ ],
178
+ "name": "ErrorInstanceLinkedComponentNotProduct",
179
+ "type": "error"
180
+ },
181
+ {
182
+ "inputs": [
183
+ {
184
+ "internalType": "ObjectType",
185
+ "name": "requiredType",
186
+ "type": "uint8"
187
+ },
188
+ {
189
+ "internalType": "ObjectType",
190
+ "name": "objectType",
191
+ "type": "uint8"
192
+ }
193
+ ],
194
+ "name": "ErrorInstanceLinkedComponentTypeMismatch",
195
+ "type": "error"
196
+ },
197
+ {
198
+ "inputs": [
199
+ {
200
+ "internalType": "NftId",
201
+ "name": "nftId",
202
+ "type": "uint96"
203
+ }
204
+ ],
205
+ "name": "ErrorNftOwnableAlreadyLinked",
206
+ "type": "error"
207
+ },
208
+ {
209
+ "inputs": [
210
+ {
211
+ "internalType": "address",
212
+ "name": "contractAddress",
213
+ "type": "address"
214
+ }
215
+ ],
216
+ "name": "ErrorNftOwnableContractNotRegistered",
217
+ "type": "error"
218
+ },
219
+ {
220
+ "inputs": [],
221
+ "name": "ErrorNftOwnableInitialOwnerZero",
222
+ "type": "error"
223
+ },
224
+ {
225
+ "inputs": [
226
+ {
227
+ "internalType": "NftId",
228
+ "name": "nftId",
229
+ "type": "uint96"
230
+ },
231
+ {
232
+ "internalType": "ObjectType",
233
+ "name": "expectedObjectType",
234
+ "type": "uint8"
235
+ }
236
+ ],
237
+ "name": "ErrorNftOwnableInvalidType",
238
+ "type": "error"
239
+ },
240
+ {
241
+ "inputs": [
242
+ {
243
+ "internalType": "address",
244
+ "name": "account",
245
+ "type": "address"
246
+ }
247
+ ],
248
+ "name": "ErrorNftOwnableNotOwner",
249
+ "type": "error"
250
+ },
251
+ {
252
+ "inputs": [
253
+ {
254
+ "internalType": "address",
255
+ "name": "registryAddress",
256
+ "type": "address"
257
+ }
258
+ ],
259
+ "name": "ErrorNotRegistry",
260
+ "type": "error"
261
+ },
262
+ {
263
+ "inputs": [],
264
+ "name": "ErrorRegisterableNotActive",
265
+ "type": "error"
266
+ },
267
+ {
268
+ "inputs": [],
269
+ "name": "InvalidInitialization",
270
+ "type": "error"
271
+ },
272
+ {
273
+ "inputs": [],
274
+ "name": "NotInitializing",
275
+ "type": "error"
276
+ },
277
+ {
278
+ "anonymous": false,
279
+ "inputs": [
280
+ {
281
+ "indexed": false,
282
+ "internalType": "address",
283
+ "name": "authority",
284
+ "type": "address"
285
+ }
286
+ ],
287
+ "name": "AuthorityUpdated",
288
+ "type": "event"
289
+ },
290
+ {
291
+ "anonymous": false,
292
+ "inputs": [
293
+ {
294
+ "indexed": false,
295
+ "internalType": "uint64",
296
+ "name": "version",
297
+ "type": "uint64"
298
+ }
299
+ ],
300
+ "name": "Initialized",
301
+ "type": "event"
302
+ },
303
+ {
304
+ "anonymous": false,
305
+ "inputs": [
306
+ {
307
+ "indexed": false,
308
+ "internalType": "address",
309
+ "name": "tokenHandler",
310
+ "type": "address"
311
+ },
312
+ {
313
+ "indexed": false,
314
+ "internalType": "address",
315
+ "name": "token",
316
+ "type": "address"
317
+ },
318
+ {
319
+ "indexed": false,
320
+ "internalType": "Amount",
321
+ "name": "limit",
322
+ "type": "uint96"
323
+ },
324
+ {
325
+ "indexed": false,
326
+ "internalType": "bool",
327
+ "name": "isMaxAmount",
328
+ "type": "bool"
329
+ }
330
+ ],
331
+ "name": "LogComponentTokenHandlerApproved",
332
+ "type": "event"
333
+ },
334
+ {
335
+ "anonymous": false,
336
+ "inputs": [
337
+ {
338
+ "indexed": false,
339
+ "internalType": "address",
340
+ "name": "oldWallet",
341
+ "type": "address"
342
+ },
343
+ {
344
+ "indexed": false,
345
+ "internalType": "address",
346
+ "name": "newWallet",
347
+ "type": "address"
348
+ }
349
+ ],
350
+ "name": "LogComponentWalletAddressChanged",
351
+ "type": "event"
352
+ },
353
+ {
354
+ "anonymous": false,
355
+ "inputs": [
356
+ {
357
+ "indexed": false,
358
+ "internalType": "address",
359
+ "name": "from",
360
+ "type": "address"
361
+ },
362
+ {
363
+ "indexed": false,
364
+ "internalType": "address",
365
+ "name": "to",
366
+ "type": "address"
367
+ },
368
+ {
369
+ "indexed": false,
370
+ "internalType": "uint256",
371
+ "name": "amount",
372
+ "type": "uint256"
373
+ }
374
+ ],
375
+ "name": "LogComponentWalletTokensTransferred",
376
+ "type": "event"
377
+ },
378
+ {
379
+ "anonymous": false,
380
+ "inputs": [
381
+ {
382
+ "indexed": false,
383
+ "internalType": "address",
384
+ "name": "to",
385
+ "type": "address"
386
+ },
387
+ {
388
+ "indexed": false,
389
+ "internalType": "address",
390
+ "name": "operator",
391
+ "type": "address"
392
+ }
393
+ ],
394
+ "name": "LogDistributorUpdated",
395
+ "type": "event"
396
+ },
397
+ {
398
+ "inputs": [],
399
+ "name": "COMPONENT_LOCATION_V1",
400
+ "outputs": [
401
+ {
402
+ "internalType": "bytes32",
403
+ "name": "",
404
+ "type": "bytes32"
405
+ }
406
+ ],
407
+ "stateMutability": "view",
408
+ "type": "function"
409
+ },
410
+ {
411
+ "inputs": [],
412
+ "name": "DISTRIBUTION_STORAGE_LOCATION_V1",
413
+ "outputs": [
414
+ {
415
+ "internalType": "bytes32",
416
+ "name": "",
417
+ "type": "bytes32"
418
+ }
419
+ ],
420
+ "stateMutability": "view",
421
+ "type": "function"
422
+ },
423
+ {
424
+ "inputs": [],
425
+ "name": "INSTANCE_LINKED_COMPONENT_LOCATION_V1",
426
+ "outputs": [
427
+ {
428
+ "internalType": "bytes32",
429
+ "name": "",
430
+ "type": "bytes32"
431
+ }
432
+ ],
433
+ "stateMutability": "view",
434
+ "type": "function"
435
+ },
436
+ {
437
+ "inputs": [],
438
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
439
+ "outputs": [
440
+ {
441
+ "internalType": "bytes32",
442
+ "name": "",
443
+ "type": "bytes32"
444
+ }
445
+ ],
446
+ "stateMutability": "view",
447
+ "type": "function"
448
+ },
449
+ {
450
+ "inputs": [],
451
+ "name": "REGISTERABLE_LOCATION_V1",
452
+ "outputs": [
453
+ {
454
+ "internalType": "bytes32",
455
+ "name": "",
456
+ "type": "bytes32"
457
+ }
458
+ ],
459
+ "stateMutability": "view",
460
+ "type": "function"
461
+ },
462
+ {
463
+ "inputs": [
464
+ {
465
+ "internalType": "contract IERC20Metadata",
466
+ "name": "token",
467
+ "type": "address"
468
+ },
469
+ {
470
+ "internalType": "Amount",
471
+ "name": "amount",
472
+ "type": "uint96"
473
+ }
474
+ ],
475
+ "name": "approveTokenHandler",
476
+ "outputs": [],
477
+ "stateMutability": "nonpayable",
478
+ "type": "function"
479
+ },
480
+ {
481
+ "inputs": [],
482
+ "name": "authority",
483
+ "outputs": [
484
+ {
485
+ "internalType": "address",
486
+ "name": "",
487
+ "type": "address"
488
+ }
489
+ ],
490
+ "stateMutability": "view",
491
+ "type": "function"
492
+ },
493
+ {
494
+ "inputs": [
495
+ {
496
+ "internalType": "ReferralId",
497
+ "name": "referralId",
498
+ "type": "bytes8"
499
+ },
500
+ {
501
+ "internalType": "uint256",
502
+ "name": "netPremiumAmount",
503
+ "type": "uint256"
504
+ }
505
+ ],
506
+ "name": "calculateRenewalFeeAmount",
507
+ "outputs": [
508
+ {
509
+ "internalType": "uint256",
510
+ "name": "feeAmount",
511
+ "type": "uint256"
512
+ }
513
+ ],
514
+ "stateMutability": "view",
515
+ "type": "function"
516
+ },
517
+ {
518
+ "inputs": [
519
+ {
520
+ "internalType": "NftId",
521
+ "name": "distributorNftId",
522
+ "type": "uint96"
523
+ },
524
+ {
525
+ "internalType": "DistributorType",
526
+ "name": "distributorType",
527
+ "type": "bytes8"
528
+ },
529
+ {
530
+ "internalType": "bytes",
531
+ "name": "data",
532
+ "type": "bytes"
533
+ }
534
+ ],
535
+ "name": "changeDistributorType",
536
+ "outputs": [],
537
+ "stateMutability": "nonpayable",
538
+ "type": "function"
539
+ },
540
+ {
541
+ "inputs": [
542
+ {
543
+ "internalType": "address",
544
+ "name": "distributor",
545
+ "type": "address"
546
+ },
547
+ {
548
+ "internalType": "DistributorType",
549
+ "name": "distributorType",
550
+ "type": "bytes8"
551
+ },
552
+ {
553
+ "internalType": "bytes",
554
+ "name": "data",
555
+ "type": "bytes"
556
+ }
557
+ ],
558
+ "name": "createDistributor",
559
+ "outputs": [
560
+ {
561
+ "internalType": "NftId",
562
+ "name": "distributorNftId",
563
+ "type": "uint96"
564
+ }
565
+ ],
566
+ "stateMutability": "nonpayable",
567
+ "type": "function"
568
+ },
569
+ {
570
+ "inputs": [
571
+ {
572
+ "internalType": "string",
573
+ "name": "name",
574
+ "type": "string"
575
+ },
576
+ {
577
+ "internalType": "UFixed",
578
+ "name": "minDiscountPercentage",
579
+ "type": "uint256"
580
+ },
581
+ {
582
+ "internalType": "UFixed",
583
+ "name": "maxDiscountPercentage",
584
+ "type": "uint256"
585
+ },
586
+ {
587
+ "internalType": "UFixed",
588
+ "name": "commissionPercentage",
589
+ "type": "uint256"
590
+ },
591
+ {
592
+ "internalType": "uint32",
593
+ "name": "maxReferralCount",
594
+ "type": "uint32"
595
+ },
596
+ {
597
+ "internalType": "uint32",
598
+ "name": "maxReferralLifetime",
599
+ "type": "uint32"
600
+ },
601
+ {
602
+ "internalType": "bool",
603
+ "name": "allowSelfReferrals",
604
+ "type": "bool"
605
+ },
606
+ {
607
+ "internalType": "bool",
608
+ "name": "allowRenewals",
609
+ "type": "bool"
610
+ },
611
+ {
612
+ "internalType": "bytes",
613
+ "name": "data",
614
+ "type": "bytes"
615
+ }
616
+ ],
617
+ "name": "createDistributorType",
618
+ "outputs": [
619
+ {
620
+ "internalType": "DistributorType",
621
+ "name": "distributorType",
622
+ "type": "bytes8"
623
+ }
624
+ ],
625
+ "stateMutability": "nonpayable",
626
+ "type": "function"
627
+ },
628
+ {
629
+ "inputs": [
630
+ {
631
+ "internalType": "string",
632
+ "name": "code",
633
+ "type": "string"
634
+ },
635
+ {
636
+ "internalType": "UFixed",
637
+ "name": "discountPercentage",
638
+ "type": "uint256"
639
+ },
640
+ {
641
+ "internalType": "uint32",
642
+ "name": "maxReferrals",
643
+ "type": "uint32"
644
+ },
645
+ {
646
+ "internalType": "Timestamp",
647
+ "name": "expiryAt",
648
+ "type": "uint40"
649
+ },
650
+ {
651
+ "internalType": "bytes",
652
+ "name": "data",
653
+ "type": "bytes"
654
+ }
655
+ ],
656
+ "name": "createReferral",
657
+ "outputs": [
658
+ {
659
+ "internalType": "ReferralId",
660
+ "name": "referralId",
661
+ "type": "bytes8"
662
+ }
663
+ ],
664
+ "stateMutability": "nonpayable",
665
+ "type": "function"
666
+ },
667
+ {
668
+ "inputs": [],
669
+ "name": "getAuthorization",
670
+ "outputs": [
671
+ {
672
+ "internalType": "contract IAuthorization",
673
+ "name": "authorization",
674
+ "type": "address"
675
+ }
676
+ ],
677
+ "stateMutability": "view",
678
+ "type": "function"
679
+ },
680
+ {
681
+ "inputs": [],
682
+ "name": "getComponentInfo",
683
+ "outputs": [
684
+ {
685
+ "components": [
686
+ {
687
+ "internalType": "string",
688
+ "name": "name",
689
+ "type": "string"
690
+ },
691
+ {
692
+ "internalType": "contract IERC20Metadata",
693
+ "name": "token",
694
+ "type": "address"
695
+ },
696
+ {
697
+ "internalType": "contract TokenHandler",
698
+ "name": "tokenHandler",
699
+ "type": "address"
700
+ },
701
+ {
702
+ "internalType": "bytes",
703
+ "name": "data",
704
+ "type": "bytes"
705
+ }
706
+ ],
707
+ "internalType": "struct IComponents.ComponentInfo",
708
+ "name": "info",
709
+ "type": "tuple"
710
+ }
711
+ ],
712
+ "stateMutability": "view",
713
+ "type": "function"
714
+ },
715
+ {
716
+ "inputs": [
717
+ {
718
+ "internalType": "string",
719
+ "name": "referralCode",
720
+ "type": "string"
721
+ }
722
+ ],
723
+ "name": "getDiscountPercentage",
724
+ "outputs": [
725
+ {
726
+ "internalType": "UFixed",
727
+ "name": "discountPercentage",
728
+ "type": "uint256"
729
+ },
730
+ {
731
+ "internalType": "ReferralStatus",
732
+ "name": "status",
733
+ "type": "uint8"
734
+ }
735
+ ],
736
+ "stateMutability": "view",
737
+ "type": "function"
738
+ },
739
+ {
740
+ "inputs": [
741
+ {
742
+ "internalType": "address",
743
+ "name": "distributor",
744
+ "type": "address"
745
+ }
746
+ ],
747
+ "name": "getDistributorNftId",
748
+ "outputs": [
749
+ {
750
+ "internalType": "NftId",
751
+ "name": "distributorNftId",
752
+ "type": "uint96"
753
+ }
754
+ ],
755
+ "stateMutability": "view",
756
+ "type": "function"
757
+ },
758
+ {
759
+ "inputs": [],
760
+ "name": "getInitialComponentInfo",
761
+ "outputs": [
762
+ {
763
+ "components": [
764
+ {
765
+ "internalType": "string",
766
+ "name": "name",
767
+ "type": "string"
768
+ },
769
+ {
770
+ "internalType": "contract IERC20Metadata",
771
+ "name": "token",
772
+ "type": "address"
773
+ },
774
+ {
775
+ "internalType": "contract TokenHandler",
776
+ "name": "tokenHandler",
777
+ "type": "address"
778
+ },
779
+ {
780
+ "internalType": "bytes",
781
+ "name": "data",
782
+ "type": "bytes"
783
+ }
784
+ ],
785
+ "internalType": "struct IComponents.ComponentInfo",
786
+ "name": "info",
787
+ "type": "tuple"
788
+ }
789
+ ],
790
+ "stateMutability": "view",
791
+ "type": "function"
792
+ },
793
+ {
794
+ "inputs": [],
795
+ "name": "getInitialInfo",
796
+ "outputs": [
797
+ {
798
+ "components": [
799
+ {
800
+ "internalType": "NftId",
801
+ "name": "nftId",
802
+ "type": "uint96"
803
+ },
804
+ {
805
+ "internalType": "NftId",
806
+ "name": "parentNftId",
807
+ "type": "uint96"
808
+ },
809
+ {
810
+ "internalType": "ObjectType",
811
+ "name": "objectType",
812
+ "type": "uint8"
813
+ },
814
+ {
815
+ "internalType": "bool",
816
+ "name": "isInterceptor",
817
+ "type": "bool"
818
+ },
819
+ {
820
+ "internalType": "address",
821
+ "name": "objectAddress",
822
+ "type": "address"
823
+ },
824
+ {
825
+ "internalType": "address",
826
+ "name": "initialOwner",
827
+ "type": "address"
828
+ },
829
+ {
830
+ "internalType": "bytes",
831
+ "name": "data",
832
+ "type": "bytes"
833
+ }
834
+ ],
835
+ "internalType": "struct IRegistry.ObjectInfo",
836
+ "name": "info",
837
+ "type": "tuple"
838
+ }
839
+ ],
840
+ "stateMutability": "view",
841
+ "type": "function"
842
+ },
843
+ {
844
+ "inputs": [],
845
+ "name": "getInstance",
846
+ "outputs": [
847
+ {
848
+ "internalType": "contract IInstance",
849
+ "name": "instance",
850
+ "type": "address"
851
+ }
852
+ ],
853
+ "stateMutability": "view",
854
+ "type": "function"
855
+ },
856
+ {
857
+ "inputs": [],
858
+ "name": "getName",
859
+ "outputs": [
860
+ {
861
+ "internalType": "string",
862
+ "name": "name",
863
+ "type": "string"
864
+ }
865
+ ],
866
+ "stateMutability": "view",
867
+ "type": "function"
868
+ },
869
+ {
870
+ "inputs": [],
871
+ "name": "getNftId",
872
+ "outputs": [
873
+ {
874
+ "internalType": "NftId",
875
+ "name": "",
876
+ "type": "uint96"
877
+ }
878
+ ],
879
+ "stateMutability": "view",
880
+ "type": "function"
881
+ },
882
+ {
883
+ "inputs": [],
884
+ "name": "getOwner",
885
+ "outputs": [
886
+ {
887
+ "internalType": "address",
888
+ "name": "",
889
+ "type": "address"
890
+ }
891
+ ],
892
+ "stateMutability": "view",
893
+ "type": "function"
894
+ },
895
+ {
896
+ "inputs": [
897
+ {
898
+ "internalType": "string",
899
+ "name": "referralCode",
900
+ "type": "string"
901
+ }
902
+ ],
903
+ "name": "getReferralId",
904
+ "outputs": [
905
+ {
906
+ "internalType": "ReferralId",
907
+ "name": "referralId",
908
+ "type": "bytes8"
909
+ }
910
+ ],
911
+ "stateMutability": "view",
912
+ "type": "function"
913
+ },
914
+ {
915
+ "inputs": [],
916
+ "name": "getRegistry",
917
+ "outputs": [
918
+ {
919
+ "internalType": "contract IRegistry",
920
+ "name": "",
921
+ "type": "address"
922
+ }
923
+ ],
924
+ "stateMutability": "view",
925
+ "type": "function"
926
+ },
927
+ {
928
+ "inputs": [],
929
+ "name": "getRelease",
930
+ "outputs": [
931
+ {
932
+ "internalType": "VersionPart",
933
+ "name": "release",
934
+ "type": "uint8"
935
+ }
936
+ ],
937
+ "stateMutability": "view",
938
+ "type": "function"
939
+ },
940
+ {
941
+ "inputs": [],
942
+ "name": "getToken",
943
+ "outputs": [
944
+ {
945
+ "internalType": "contract IERC20Metadata",
946
+ "name": "token",
947
+ "type": "address"
948
+ }
949
+ ],
950
+ "stateMutability": "view",
951
+ "type": "function"
952
+ },
953
+ {
954
+ "inputs": [],
955
+ "name": "getTokenHandler",
956
+ "outputs": [
957
+ {
958
+ "internalType": "contract TokenHandler",
959
+ "name": "tokenHandler",
960
+ "type": "address"
961
+ }
962
+ ],
963
+ "stateMutability": "view",
964
+ "type": "function"
965
+ },
966
+ {
967
+ "inputs": [],
968
+ "name": "getVersion",
969
+ "outputs": [
970
+ {
971
+ "internalType": "Version",
972
+ "name": "version",
973
+ "type": "uint24"
974
+ }
975
+ ],
976
+ "stateMutability": "view",
977
+ "type": "function"
978
+ },
979
+ {
980
+ "inputs": [],
981
+ "name": "getWallet",
982
+ "outputs": [
983
+ {
984
+ "internalType": "address",
985
+ "name": "walletAddress",
986
+ "type": "address"
987
+ }
988
+ ],
989
+ "stateMutability": "view",
990
+ "type": "function"
991
+ },
992
+ {
993
+ "inputs": [
994
+ {
995
+ "internalType": "address",
996
+ "name": "registry",
997
+ "type": "address"
998
+ },
999
+ {
1000
+ "internalType": "NftId",
1001
+ "name": "productNftId",
1002
+ "type": "uint96"
1003
+ },
1004
+ {
1005
+ "internalType": "contract IAuthorization",
1006
+ "name": "authorization",
1007
+ "type": "address"
1008
+ },
1009
+ {
1010
+ "internalType": "address",
1011
+ "name": "initialOwner",
1012
+ "type": "address"
1013
+ },
1014
+ {
1015
+ "internalType": "string",
1016
+ "name": "name",
1017
+ "type": "string"
1018
+ },
1019
+ {
1020
+ "internalType": "address",
1021
+ "name": "token",
1022
+ "type": "address"
1023
+ }
1024
+ ],
1025
+ "name": "initialize",
1026
+ "outputs": [],
1027
+ "stateMutability": "nonpayable",
1028
+ "type": "function"
1029
+ },
1030
+ {
1031
+ "inputs": [],
1032
+ "name": "isActive",
1033
+ "outputs": [
1034
+ {
1035
+ "internalType": "bool",
1036
+ "name": "active",
1037
+ "type": "bool"
1038
+ }
1039
+ ],
1040
+ "stateMutability": "view",
1041
+ "type": "function"
1042
+ },
1043
+ {
1044
+ "inputs": [],
1045
+ "name": "isConsumingScheduledOp",
1046
+ "outputs": [
1047
+ {
1048
+ "internalType": "bytes4",
1049
+ "name": "",
1050
+ "type": "bytes4"
1051
+ }
1052
+ ],
1053
+ "stateMutability": "view",
1054
+ "type": "function"
1055
+ },
1056
+ {
1057
+ "inputs": [
1058
+ {
1059
+ "internalType": "address",
1060
+ "name": "candidate",
1061
+ "type": "address"
1062
+ }
1063
+ ],
1064
+ "name": "isDistributor",
1065
+ "outputs": [
1066
+ {
1067
+ "internalType": "bool",
1068
+ "name": "",
1069
+ "type": "bool"
1070
+ }
1071
+ ],
1072
+ "stateMutability": "view",
1073
+ "type": "function"
1074
+ },
1075
+ {
1076
+ "inputs": [],
1077
+ "name": "isNftInterceptor",
1078
+ "outputs": [
1079
+ {
1080
+ "internalType": "bool",
1081
+ "name": "isInterceptor",
1082
+ "type": "bool"
1083
+ }
1084
+ ],
1085
+ "stateMutability": "view",
1086
+ "type": "function"
1087
+ },
1088
+ {
1089
+ "inputs": [],
1090
+ "name": "isRegistered",
1091
+ "outputs": [
1092
+ {
1093
+ "internalType": "bool",
1094
+ "name": "",
1095
+ "type": "bool"
1096
+ }
1097
+ ],
1098
+ "stateMutability": "view",
1099
+ "type": "function"
1100
+ },
1101
+ {
1102
+ "inputs": [],
1103
+ "name": "isVerifying",
1104
+ "outputs": [
1105
+ {
1106
+ "internalType": "bool",
1107
+ "name": "verifying",
1108
+ "type": "bool"
1109
+ }
1110
+ ],
1111
+ "stateMutability": "pure",
1112
+ "type": "function"
1113
+ },
1114
+ {
1115
+ "inputs": [],
1116
+ "name": "linkToRegisteredNftId",
1117
+ "outputs": [
1118
+ {
1119
+ "internalType": "NftId",
1120
+ "name": "nftId",
1121
+ "type": "uint96"
1122
+ }
1123
+ ],
1124
+ "stateMutability": "nonpayable",
1125
+ "type": "function"
1126
+ },
1127
+ {
1128
+ "inputs": [
1129
+ {
1130
+ "internalType": "address",
1131
+ "name": "from",
1132
+ "type": "address"
1133
+ },
1134
+ {
1135
+ "internalType": "address",
1136
+ "name": "to",
1137
+ "type": "address"
1138
+ },
1139
+ {
1140
+ "internalType": "uint256",
1141
+ "name": "tokenId",
1142
+ "type": "uint256"
1143
+ },
1144
+ {
1145
+ "internalType": "address",
1146
+ "name": "operator",
1147
+ "type": "address"
1148
+ }
1149
+ ],
1150
+ "name": "nftTransferFrom",
1151
+ "outputs": [],
1152
+ "stateMutability": "nonpayable",
1153
+ "type": "function"
1154
+ },
1155
+ {
1156
+ "inputs": [
1157
+ {
1158
+ "internalType": "ReferralId",
1159
+ "name": "referralId",
1160
+ "type": "bytes8"
1161
+ },
1162
+ {
1163
+ "internalType": "uint256",
1164
+ "name": "feeAmount",
1165
+ "type": "uint256"
1166
+ }
1167
+ ],
1168
+ "name": "processRenewal",
1169
+ "outputs": [],
1170
+ "stateMutability": "nonpayable",
1171
+ "type": "function"
1172
+ },
1173
+ {
1174
+ "inputs": [
1175
+ {
1176
+ "internalType": "address",
1177
+ "name": "newAuthority",
1178
+ "type": "address"
1179
+ }
1180
+ ],
1181
+ "name": "setAuthority",
1182
+ "outputs": [],
1183
+ "stateMutability": "nonpayable",
1184
+ "type": "function"
1185
+ },
1186
+ {
1187
+ "inputs": [
1188
+ {
1189
+ "components": [
1190
+ {
1191
+ "internalType": "UFixed",
1192
+ "name": "fractionalFee",
1193
+ "type": "uint256"
1194
+ },
1195
+ {
1196
+ "internalType": "uint256",
1197
+ "name": "fixedFee",
1198
+ "type": "uint256"
1199
+ }
1200
+ ],
1201
+ "internalType": "struct Fee",
1202
+ "name": "distributionFee",
1203
+ "type": "tuple"
1204
+ },
1205
+ {
1206
+ "components": [
1207
+ {
1208
+ "internalType": "UFixed",
1209
+ "name": "fractionalFee",
1210
+ "type": "uint256"
1211
+ },
1212
+ {
1213
+ "internalType": "uint256",
1214
+ "name": "fixedFee",
1215
+ "type": "uint256"
1216
+ }
1217
+ ],
1218
+ "internalType": "struct Fee",
1219
+ "name": "minDistributionOwnerFee",
1220
+ "type": "tuple"
1221
+ }
1222
+ ],
1223
+ "name": "setFees",
1224
+ "outputs": [],
1225
+ "stateMutability": "nonpayable",
1226
+ "type": "function"
1227
+ },
1228
+ {
1229
+ "inputs": [
1230
+ {
1231
+ "internalType": "bool",
1232
+ "name": "locked",
1233
+ "type": "bool"
1234
+ }
1235
+ ],
1236
+ "name": "setLocked",
1237
+ "outputs": [],
1238
+ "stateMutability": "nonpayable",
1239
+ "type": "function"
1240
+ },
1241
+ {
1242
+ "inputs": [
1243
+ {
1244
+ "internalType": "address",
1245
+ "name": "newWallet",
1246
+ "type": "address"
1247
+ }
1248
+ ],
1249
+ "name": "setWallet",
1250
+ "outputs": [],
1251
+ "stateMutability": "nonpayable",
1252
+ "type": "function"
1253
+ },
1254
+ {
1255
+ "inputs": [
1256
+ {
1257
+ "internalType": "bytes4",
1258
+ "name": "interfaceId",
1259
+ "type": "bytes4"
1260
+ }
1261
+ ],
1262
+ "name": "supportsInterface",
1263
+ "outputs": [
1264
+ {
1265
+ "internalType": "bool",
1266
+ "name": "",
1267
+ "type": "bool"
1268
+ }
1269
+ ],
1270
+ "stateMutability": "view",
1271
+ "type": "function"
1272
+ },
1273
+ {
1274
+ "inputs": [
1275
+ {
1276
+ "internalType": "NftId",
1277
+ "name": "distributorNftId",
1278
+ "type": "uint96"
1279
+ },
1280
+ {
1281
+ "internalType": "Amount",
1282
+ "name": "amount",
1283
+ "type": "uint96"
1284
+ }
1285
+ ],
1286
+ "name": "withdrawCommission",
1287
+ "outputs": [
1288
+ {
1289
+ "internalType": "Amount",
1290
+ "name": "withdrawnAmount",
1291
+ "type": "uint96"
1292
+ }
1293
+ ],
1294
+ "stateMutability": "nonpayable",
1295
+ "type": "function"
1296
+ },
1297
+ {
1298
+ "inputs": [
1299
+ {
1300
+ "internalType": "Amount",
1301
+ "name": "amount",
1302
+ "type": "uint96"
1303
+ }
1304
+ ],
1305
+ "name": "withdrawFees",
1306
+ "outputs": [
1307
+ {
1308
+ "internalType": "Amount",
1309
+ "name": "withdrawnAmount",
1310
+ "type": "uint96"
1311
+ }
1312
+ ],
1313
+ "stateMutability": "nonpayable",
1314
+ "type": "function"
1315
+ }
1316
+ ],
1317
+ "bytecode": "0x608060405234801561000f575f80fd5b506040516151d23803806151d283398101604081905261002e91610e1a565b61006c858585856040518060400160405280601281526020017129b4b6b83632a234b9ba3934b13aba34b7b760711b8152508661007660201b60201c565b50505050506111d1565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff1615906001600160401b03165f811580156100bf5750825b90505f826001600160401b031660011480156100da5750303b155b9050811580156100e8575080155b156101065760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561013457845460ff60401b1916680100000000000000001785555b6101428b8b8b8b8b8b610195565b831561018857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050505050565b61019d6101c8565b6101c086868686868660405180602001604052805f81525061021860201b60201c565b505050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661021657604051631afcd79f60e31b815260040160405180910390fd5b565b6102206101c8565b6102338787858560108a60018b896102c5565b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90061026360106104fa565b6104fa565b6001820180546001600160a01b0319166001600160a01b039290921691909117905561029061025e600b90565b81546001600160a01b0319166001600160a01b03919091161781556102bb6301a39f4760e01b6105bc565b5050505050505050565b6102cd6101c8565b5f6102d98a8a886105e8565b90505f7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0060405163bf8e179760e01b81526001600160601b03841660048201529091506001600160a01b038c169063bf8e179790602401602060405180830381865afa15801561034b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061036f9190610e87565b81546001600160a01b0319166001600160a01b039190911690811782556040805163bf7e214f60e01b8152905161040f929163bf7e214f9160048083019260209291908290030181865afa1580156103c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103ed9190610e87565b8c8c8c8c8c8b8b60405180602001604052805f8152508c61069960201b60201c565b8054604080516302cd307160e01b815290516001600160a01b03909216916302cd3071916004808201926020929091908290030181865afa158015610456573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061047a9190610e87565b6001820180546001600160a01b03199081166001600160a01b03938416179091556002830180549091169188169190911790556104b861025e600b90565b6003820180546001600160a01b0319166001600160a01b03929092169190911790556104ea634a531f3360e01b6105bc565b61018863a9c1bc6f60e01b6105bc565b5f61050d6001546001600160a01b031690565b6001600160a01b031663d39e60438361054f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3005460ff600160681b9091041690565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015610592573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b69190610e87565b92915050565b6105c46101c8565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f60ff8216600d03610609576106008484600a610920565b50829050610692565b5f6106168585600d610920565b6040516305247a1760e51b81526001600160601b03861660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015610663573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261068a9190810190610f8f565b602001519150505b9392505050565b6106a16101c8565b5f896001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107029190610e87565b90505f8b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610741573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610765919061105f565b905060ff871660031461083057604051637d482da160e01b81526001600160a01b0380841660048301528916602482015246604482015260ff8216606482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90637d482da190608401602060405180830381865af41580156107df573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610803919061107a565b61083057604051638071294b60e01b81526001600160a01b03891660048201526024015b60405180910390fd5b88515f036108515760405163591eebf360e11b815260040160405180910390fd5b6108608c8c8c8a8a8a8a6109e5565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f008061088c8b82611117565b50600181018054881515600160a01b026001600160a81b03199091166001600160a01b038c1617179055600281016108c48582611117565b506108cf600b6104fa565b6003820180546001600160a01b0319166001600160a01b0392909216919091179055610901634a531f3360e01b6105bc565b6109116306e9e5ff60e31b6105bc565b50505050505050505050505050565b6040516305247a1760e51b81526001600160601b038316600482015283905f906001600160a01b0383169063a48f42e0906024015f60405180830381865afa15801561096e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526109959190810190610f8f565b90506109ac81604001518460ff9081169116141590565b156109dd57604080820151905163b0c1f6eb60e01b815260ff80861660048301529091166024820152604401610827565b509392505050565b6109ed6101c8565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015610a43573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a67919061107a565b610a8f5760405163cf6935e560e01b81526001600160a01b0388166004820152602401610827565b610a9887610ba5565b610aa28683610bb9565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166001600160681b0319909116176c0100000000000000000000000060ff871602178155604080516376b707b760e01b815290516001600160a01b038a16916376b707b79160048083019260209291908290030181865afa158015610b35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b59919061105f565b815461ffff60681b1916600160681b60ff929092169190910260ff60701b191617600160701b8515150217815560018101610b948382611117565b506102bb634a531f3360e01b6105bc565b610bad6101c8565b610bb681610c4b565b50565b610bc16101c8565b610bca82610c5c565b610bd2610d28565b6001600160a01b038116610bf95760405163f17ef42d60e01b815260040160405180910390fd5b7f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b039093169290920291909117905550565b610c536101c8565b610bb681610d6d565b610c646101c8565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015610cba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cde919061107a565b610d065760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610827565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b610d306101c8565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6001600160a01b0381168114610bb6575f80fd5b8051610dff81610de0565b919050565b80516001600160601b0381168114610dff575f80fd5b5f805f805f60a08688031215610e2e575f80fd5b8551610e3981610de0565b9450610e4760208701610e04565b93506040860151610e5781610de0565b6060870151909350610e6881610de0565b6080870151909250610e7981610de0565b809150509295509295909350565b5f60208284031215610e97575f80fd5b815161069281610de0565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b0381118282101715610ed857610ed8610ea2565b60405290565b60ff81168114610bb6575f80fd5b8051610dff81610ede565b80518015158114610dff575f80fd5b5f82601f830112610f15575f80fd5b81516001600160401b03811115610f2e57610f2e610ea2565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610f5c57610f5c610ea2565b604052818152838201602001851015610f73575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215610f9f575f80fd5b81516001600160401b03811115610fb4575f80fd5b820160e08185031215610fc5575f80fd5b610fcd610eb6565b610fd682610e04565b8152610fe460208301610e04565b6020820152610ff560408301610eec565b604082015261100660608301610ef7565b606082015261101760808301610df4565b608082015261102860a08301610df4565b60a082015260c08201516001600160401b03811115611045575f80fd5b61105186828501610f06565b60c083015250949350505050565b5f6020828403121561106f575f80fd5b815161069281610ede565b5f6020828403121561108a575f80fd5b61069282610ef7565b600181811c908216806110a757607f821691505b6020821081036110c557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561111257805f5260205f20601f840160051c810160208510156110f05750805b601f840160051c820191505b8181101561110f575f81556001016110fc565b50505b505050565b81516001600160401b0381111561113057611130610ea2565b6111448161113e8454611093565b846110cb565b6020601f821160018114611176575f831561115f5750848201515b5f19600385901b1c1916600184901b17845561110f565b5f84815260208120601f198516915b828110156111a55787850151825560209485019460019092019101611185565b50848210156111c257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b613ff4806111de5f395ff3fe608060405234801561000f575f80fd5b5060043610610281575f3560e01c80637427d7a811610156578063b2a6b42d116100ca578063deaa59df11610084578063deaa59df146105dc578063e145d46c146105ef578063ea15869f14610619578063f5860e1a14610640578063f80e207214610654578063f86664d214610667575f80fd5b8063b2a6b42d14610576578063b423086c14610589578063b6b412ba14610591578063bf7e214f146105a4578063d16d0fe8146105ac578063de7b5d14146105bf575f80fd5b80638f0c86fa1161011b5780638f0c86fa146104f35780638fb360371461050657806390edbd3514610527578063ab3fc75f1461053c578063ad12ad601461054f578063ada9652e14610562575f80fd5b80637427d7a81461049357806376b707b7146104a65780637a9e5e4b146104d157806387ef9ba0146104e4578063893d20e8146104eb575f80fd5b806322366844116101f85780635741e5e9116101b25780635741e5e91461041c57806359660bea146104245780635ab1bd53146104375780635dcb3bae14610448578063644c45e01461045b5780636bd1c0eb14610463575f80fd5b806322366844146103b157806322f3e2d4146103b95780632b5198b1146103c15780632eb3e6f4146103ed578063419197fe1461040157806343d752d314610414575f80fd5b8063138461e011610249578063138461e01461034257806317d7de7c1461034a5780631c6b21901461035f5780631eff4b2214610372578063211e28b61461039457806321df0da7146103a9575f80fd5b806301ffc9a71461028557806307e71a6e146102c65780630d8e6e2c146102f15780630fec111c1461030d5780631329960414610322575b5f80fd5b6102b161029336600461315e565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102d96102d4366004613199565b61067a565b6040516001600160601b0390911681526020016102bd565b6102f961077e565b60405162ffffff90911681526020016102bd565b610315610805565b6040516102bd91906131fe565b61032a6109ac565b6040516001600160a01b0390911681526020016102bd565b6102d9610a14565b610352610a1e565b6040516102bd9190613292565b6102d961036d3660046132a4565b610a2e565b6103865f80516020613f9f83398151915281565b6040519081526020016102bd565b6103a76103a23660046132d7565b610a84565b005b61032a610acb565b6102b1610add565b6102b1610bd3565b6103d46103cf366004613416565b610c4a565b6040516001600160c01b031990911681526020016102bd565b6103865f80516020613f7f83398151915281565b6103a761040f3660046134eb565b610cae565b61032a610d00565b6102b1610d12565b6103d4610432366004613507565b610dcf565b6001546001600160a01b031661032a565b6102d96104563660046135b5565b610e26565b6102d9610e80565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b031661032a565b6103d46104a1366004613612565b610e9b565b5f80516020613f9f83398151915254600160681b900460ff1660405160ff90911681526020016102bd565b6103a76104df366004613643565b610f1b565b60016102b1565b61032a610f9d565b6102b1610501366004613643565b6110ce565b61050e611193565b6040516001600160e01b031990911681526020016102bd565b61052f6111c8565b6040516102bd919061365e565b6103a761054a3660046136c4565b6111ed565b6103a761055d3660046136e1565b611250565b6103865f80516020613f1f83398151915281565b6102d9610584366004613643565b6112ff565b61052f611341565b6103a761059f36600461377d565b611351565b61032a61139f565b6103866105ba3660046137b0565b6113ba565b5f80516020613f7f833981519152546001600160a01b031661032a565b6103a76105ea366004613643565b6113ce565b6106026105fd366004613612565b61141b565b6040805192835260ff9091166020830152016102bd565b6103867fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6103865f80516020613f5f83398151915281565b6103a76106623660046137b0565b6114d5565b6103a76106753660046137da565b6114de565b5f610687335b5f366115f4565b610690336110ce565b6106b45760405163637c41bb60e01b81523360048201526024015b60405180910390fd5b82601b6106c182826116f2565b846106d46001546001600160a01b031690565b604051631660755f60e31b81526001600160601b03831660048201523360248201526001600160a01b03919091169063b303aaf890604401602060405180830381865afa158015610727573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074b919061387a565b61076a5760405163086391f760e31b81523360048201526024016106ab565b61077486866117a9565b9695505050505050565b604051632efe011360e01b8152600160048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156107dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108009190613895565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152905f80516020613f9f83398151915290506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561089e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c291906138c2565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a00161090a610f9d565b6001600160a01b03168152602001826001018054610927906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610953906138dd565b801561099e5780601f106109755761010080835404028352916020019161099e565b820191905f5260205f20905b81548152906001019060200180831161098157829003601f168201915b505050505081525091505090565b5f6109b5610d00565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108009190613920565b5f61080030611835565b6060610a286111c8565b51919050565b5f610a3833610680565b610a40610f9d565b6001600160a01b0316336001600160a01b031614610a735760405163086391f760e31b81523360048201526024016106ab565b610a7c82611a29565b90505b919050565b610a8c610f9d565b6001600160a01b0316336001600160a01b031614610abf5760405163086391f760e31b81523360048201526024016106ab565b610ac881611aad565b50565b5f610ad46111c8565b60200151905090565b5f610af06001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610b34573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5891906138c2565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610baf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610800919061387a565b5f610bdc61139f565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610c20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c44919061387a565b15905090565b5f610c5433610680565b610c5c610f9d565b6001600160a01b0316336001600160a01b031614610c8f5760405163086391f760e31b81523360048201526024016106ab565b610ca08a8a8a8a8a8a8a8a8a611b29565b9a9950505050505050505050565b610cb733610680565b610cbf610f9d565b6001600160a01b0316336001600160a01b031614610cf25760405163086391f760e31b81523360048201526024016106ab565b610cfc8282611be8565b5050565b5f610d096111c8565b60400151905090565b5f610d1b610add565b15610d9f576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015610d6f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d9691908101906139a8565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0154600160a01b900460ff1690565b5f610dd933610680565b610de2336110ce565b610e015760405163637c41bb60e01b81523360048201526024016106ab565b5f610e0b336112ff565b9050610e1b818888888888611c6d565b979650505050505050565b5f610e3033610680565b610e38610f9d565b6001600160a01b0316336001600160a01b031614610e6b5760405163086391f760e31b81523360048201526024016106ab565b610e76848484611d23565b90505b9392505050565b5f80516020613f1f833981519152546001600160601b031690565b5f73__$05887d5853069c88bcd4c0a2107db45f29$__633f093cd6610ebe610e80565b846040518363ffffffff1660e01b8152600401610edc929190613a78565b602060405180830381865af4158015610ef7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7c9190613a99565b33610f2461139f565b6001600160a01b0316816001600160a01b031614610f5f5760405162d1953b60e31b81526001600160a01b03821660048201526024016106ab565b816001600160a01b03163b5f03610f94576040516361798f2f60e11b81526001600160a01b03831660048201526024016106ab565b610cfc82611ee7565b5f805f80516020613f1f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611009573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102d919061387a565b156110b8576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561108e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110b29190613920565b91505090565b54600160601b90046001600160a01b0316919050565b6001600160a01b0381165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f80516020613f5f8339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af415801561116f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e79919061387a565b5f80516020613f3f83398151915280545f9190600160a01b900460ff166111ba575f6110b2565b638fb3603760e01b91505090565b6111d0613126565b6111d8610add565b156111e557610800611f47565b610800611341565b6111f633610680565b6111fe610f9d565b6001600160a01b0316336001600160a01b0316146112315760405163086391f760e31b81523360048201526024016106ab565b82601b61123e82826116f2565b61124985858561210e565b5050505050565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611297573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112bb9190613920565b6001600160a01b0316336001600160a01b0316146112ed5760405162f0630960e01b81523360048201526024016106ab565b6112f9848484846121a1565b50505050565b6001600160a01b03165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90260205260409020546001600160601b031690565b611349613126565b610800611f47565b611359610f9d565b6001600160a01b0316336001600160a01b03161461138c5760405163086391f760e31b81523360048201526024016106ab565b61139533610680565b610cfc828261234a565b5f80516020613f3f833981519152546001600160a01b031690565b5f6113c58282613ab4565b90505b92915050565b6113d733610680565b6113df610f9d565b6001600160a01b0316336001600160a01b0316146114125760405163086391f760e31b81523360048201526024016106ab565b610ac881612388565b5f805f61142784610e9b565b905061145a7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b60405163b82d7ef560e01b81526001600160c01b0319831660048201526001600160a01b03919091169063b82d7ef5906024016040805180830381865afa1580156114a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114cb9190613ad7565b9250925050915091565b610cfc33610680565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156115225750825b90505f826001600160401b0316600114801561153d5750303b155b90508115801561154b575080155b156115695760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561159357845460ff60401b1916600160401b1785555b6115a18b8b8b8b8b8b6123fd565b83156115e757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050505050565b5f80516020613f3f8339815191525f8061162c61160f61139f565b873061161e60045f8a8c613afa565b61162791613b21565b612422565b91509150816116ea5763ffffffff8116156116c757825460ff60a01b1916600160a01b17835561165a61139f565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161168993929190613b59565b5f604051808303815f87803b1580156116a0575f80fd5b505af11580156116b2573d5f803e3d5ffd5b5050845460ff60a01b19168555506116ea9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016106ab565b505050505050565b6001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015611754573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611778919061387a565b610cfc5760405163d711af7560e01b81526001600160601b038316600482015260ff821660248201526044016106ab565b5f5f80516020613f5f833981519152600101546040516303f38d3760e11b81526001600160601b038086166004830152841660248201526001600160a01b03909116906307e71a6e906044016020604051808303815f875af1158015611811573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c591906138c2565b5f805f80516020613f1f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156118a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c5919061387a565b156118f15780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016106ab565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611943573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611967919061387a565b61198f5760405163b9304b0d60e01b81526001600160a01b03841660048201526024016106ab565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa1580156119e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a0591906138c2565b81546001600160601b0319166001600160601b039190911690811790915592915050565b5f5f80516020613f7f833981519152600301546040516301c6b21960e41b81526001600160601b03841660048201526001600160a01b0390911690631c6b2190906024016020604051808303815f875af1158015611a89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7c91906138c2565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f035460405163570fd2f360e11b815230600482015282151560248201526001600160a01b039091169063ae1fa5e6906044015b5f604051808303815f87803b158015611b17575f80fd5b505af1158015611249573d5f803e3d5ffd5b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051632b5198b160e01b81525f915f80516020613f5f833981519152916001600160a01b0390911690632b5198b190611b99908e908e908e908e908e908e908e908e908e90600401613b98565b6020604051808303815f875af1158015611bb5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bd99190613a99565b9b9a5050505050505050505050565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f03546040516320c8cbff60e11b81526001600160a01b0384811660048301526001600160601b03841660248301529091169063419197fe906044015b5f604051808303815f87803b158015611c5b575f80fd5b505af11580156116ea573d5f803e3d5ffd5b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051638dd2b78160e01b81525f915f80516020613f5f833981519152916001600160a01b0390911690638dd2b78190611cd7908b908b908b908b908b908b90600401613c09565b6020604051808303815f875af1158015611cf3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d179190613a99565b98975050505050505050565b6001600160a01b0383165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f80516020613f5f8339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af4158015611dc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611de8919061387a565b15611e33576001600160a01b0385165f8181526002830160205260409081902054905163d56c930160e01b815260048101929092526001600160601b031660248201526044016106ab565b6001810154604051632ee59dd760e11b81526001600160a01b0390911690635dcb3bae90611e6990889088908890600401613c68565b6020604051808303815f875af1158015611e85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea991906138c2565b6001600160a01b039095165f90815260029091016020526040902080546001600160601b0386166001600160601b0319909116179055509192915050565b5f80516020613f3f83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611f4f613126565b5f611f626001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015611fa6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fca91906138c2565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612023573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612047919061387a565b15612106577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031663f0ea17c3612084610e80565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa1580156120c5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120ec9190810190613c9b565b60408101519092506001600160a01b031615612106575090565b6110b261252a565b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f9015460405163ab3fc75f60e01b81525f80516020613f5f833981519152916001600160a01b03169063ab3fc75f9061216e90879087908790600401613d64565b5f604051808303815f87803b158015612185575f80fd5b505af1158015612197573d5f803e3d5ffd5b5050505050505050565b604080516001600160a01b038086168252831660208201527f04d7077d43765a828a5b0398e13ddca074c675aba69101b22c5d0176d8689434910160405180910390a15f5f80516020613f5f833981519152905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561223c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061226091906138c2565b6001600160a01b0386165f9081526002830160205260409081902080546001600160601b0319166001600160601b0393909316929092179091555163efac97cf60e01b81526004810184905273__$94a2c899be079b00d952d0d84fffaa5c34$__9063efac97cf90602401602060405180830381865af41580156122e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061230a91906138c2565b6001600160a01b03949094165f9081526002919091016020526040902080546001600160601b0319166001600160601b0390941693909317909255505050565b5f80516020613f5f83398151915254604051631bd44bf760e11b81526001600160a01b03909116906337a897ee90611c449085908590600401613d97565b612390610f9d565b6001600160a01b0316336001600160a01b0316146123c35760405163086391f760e31b81523360048201526024016106ab565b6123cd600b61261c565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df90602401611b00565b6124056126c5565b6116ea86868686868660405180602001604052805f815250612710565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516124909190613dbd565b5f60405180830381855afa9150503d805f81146124c8576040519150601f19603f3d011682016040523d82523d5f602084013e6124cd565b606091505b5091509150811561251f5760408151106124ff57808060200190518101906124f59190613dd3565b909450925061251f565b602081511061251f578080602001905181019061251c919061387a565b93505b505094509492505050565b612532613126565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060800160405280825f01805461256f906138dd565b80601f016020809104026020016040519081016040528092919081815260200182805461259b906138dd565b80156125e65780601f106125bd576101008083540402835291602001916125e6565b820191905f5260205f20905b8154815290600101906020018083116125c957829003601f168201915b505050918352505060018301546001600160a01b031660208201525f6040820152600283018054606090920191610927906138dd565b5f61262f6001546001600160a01b031690565b6001600160a01b031663d39e60438361265e5f80516020613f9f8339815191525460ff600160681b9091041690565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156126a1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7c9190613920565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661270e57604051631afcd79f60e31b815260040160405180910390fd5b565b6127186126c5565b61272b8787858560108a60018b8961279a565b5f80516020613f5f833981519152612743601061261c565b6001820180546001600160a01b0319166001600160a01b039290921691909117905561276f600b61261c565b81546001600160a01b0319166001600160a01b03919091161781556121976301a39f4760e01b6129b1565b6127a26126c5565b5f6127ae8a8a886129dd565b90505f5f80516020613f7f83398151915260405163bf8e179760e01b81526001600160601b03841660048201529091506001600160a01b038c169063bf8e179790602401602060405180830381865afa15801561280d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128319190613920565b81546001600160a01b0319166001600160a01b039190911690811782556040805163bf7e214f60e01b815290516128cb929163bf7e214f9160048083019260209291908290030181865afa15801561288b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128af9190613920565b8c8c8c8c8c8b8b60405180602001604052805f8152508c612a8c565b8054604080516302cd307160e01b815290516001600160a01b03909216916302cd3071916004808201926020929091908290030181865afa158015612912573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129369190613920565b6001820180546001600160a01b03199081166001600160a01b0393841617909155600283018054909116918816919091179055612973600b61261c565b6003820180546001600160a01b0319166001600160a01b03929092169190911790556129a5634a531f3360e01b6129b1565b6115e763a9c1bc6f60e01b5b6129b96126c5565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f60ff8216600d036129fe576129f58484600a612d0e565b50829050610e79565b5f612a0b8585600d612d0e565b6040516305247a1760e51b81526001600160601b03861660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015612a58573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a7f91908101906139a8565b6020015195945050505050565b612a946126c5565b5f896001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ad1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612af59190613920565b90505f8b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b34573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b589190613e00565b905060ff8716600314612c1e57604051637d482da160e01b81526001600160a01b0380841660048301528916602482015246604482015260ff8216606482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90637d482da190608401602060405180830381865af4158015612bd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bf6919061387a565b612c1e57604051638071294b60e01b81526001600160a01b03891660048201526024016106ab565b88515f03612c3f5760405163591eebf360e11b815260040160405180910390fd5b612c4e8c8c8c8a8a8a8a612dd3565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0080612c7a8b82613e64565b50600181018054881515600160a01b026001600160a81b03199091166001600160a01b038c161717905560028101612cb28582613e64565b50612cbd600b61261c565b6003820180546001600160a01b0319166001600160a01b0392909216919091179055612cef634a531f3360e01b6129b1565b612cff6306e9e5ff60e31b6129b1565b50505050505050505050505050565b6040516305247a1760e51b81526001600160601b038316600482015283905f906001600160a01b0383169063a48f42e0906024015f60405180830381865afa158015612d5c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d8391908101906139a8565b9050612d9a81604001518460ff9081169116141590565b15612dcb57604080820151905163b0c1f6eb60e01b815260ff808616600483015290911660248201526044016106ab565b509392505050565b612ddb6126c5565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015612e31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e55919061387a565b612e7d5760405163cf6935e560e01b81526001600160a01b03881660048201526024016106ab565b612e8687612f7d565b612e908683612f8e565b5f80516020613f9f83398151915280546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff871602178155604080516376b707b760e01b815290516001600160a01b038a16916376b707b79160048083019260209291908290030181865afa158015612f0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f319190613e00565b815461ffff60681b1916600160681b60ff929092169190910260ff60701b191617600160701b8515150217815560018101612f6c8382613e64565b50612197634a531f3360e01b6129b1565b612f856126c5565b610ac881613004565b612f966126c5565b612f9f82613015565b612fa76130e1565b6001600160a01b038116612fce5760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020613f1f83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b61300c6126c5565b610ac881611ee7565b61301d6126c5565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015613073573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613097919061387a565b6130bf5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016106ab565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6130e96126c5565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040518060800160405280606081526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f6020828403121561316e575f80fd5b81356001600160e01b031981168114610e79575f80fd5b6001600160601b0381168114610ac8575f80fd5b5f80604083850312156131aa575f80fd5b82356131b581613185565b915060208301356131c581613185565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151613246608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261328a6101008401826131d0565b949350505050565b602081525f6113c560208301846131d0565b5f602082840312156132b4575f80fd5b8135610e7981613185565b8015158114610ac8575f80fd5b8035610a7f816132bf565b5f602082840312156132e7575f80fd5b8135610e79816132bf565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b0381118282101715613328576133286132f2565b60405290565b604051608081016001600160401b0381118282101715613328576133286132f2565b604051601f8201601f191681016001600160401b0381118282101715613378576133786132f2565b604052919050565b5f6001600160401b03821115613398576133986132f2565b50601f01601f191660200190565b5f82601f8301126133b5575f80fd5b8135602083015f6133cd6133c884613380565b613350565b90508281528583830111156133e0575f80fd5b828260208301375f92810160200192909252509392505050565b63ffffffff81168114610ac8575f80fd5b8035610a7f816133fa565b5f805f805f805f805f6101208a8c03121561342f575f80fd5b89356001600160401b03811115613444575f80fd5b6134508c828d016133a6565b99505060208a0135975060408a0135965060608a0135955060808a0135613476816133fa565b945061348460a08b0161340b565b935061349260c08b016132cc565b92506134a060e08b016132cc565b91506101008a01356001600160401b038111156134bb575f80fd5b6134c78c828d016133a6565b9150509295985092959850929598565b6001600160a01b0381168114610ac8575f80fd5b5f80604083850312156134fc575f80fd5b82356131b5816134d7565b5f805f805f60a0868803121561351b575f80fd5b85356001600160401b03811115613530575f80fd5b61353c888289016133a6565b955050602086013593506040860135613554816133fa565b9250606086013564ffffffffff8116811461356d575f80fd5b915060808601356001600160401b03811115613587575f80fd5b613593888289016133a6565b9150509295509295909350565b6001600160c01b031981168114610ac8575f80fd5b5f805f606084860312156135c7575f80fd5b83356135d2816134d7565b925060208401356135e2816135a0565b915060408401356001600160401b038111156135fc575f80fd5b613608868287016133a6565b9150509250925092565b5f60208284031215613622575f80fd5b81356001600160401b03811115613637575f80fd5b61328a848285016133a6565b5f60208284031215613653575f80fd5b8135610e79816134d7565b602081525f82516080602084015261367960a08401826131d0565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f190160808601529091506136bb82826131d0565b95945050505050565b5f805f606084860312156136d6575f80fd5b83356135d281613185565b5f805f80608085870312156136f4575f80fd5b84356136ff816134d7565b9350602085013561370f816134d7565b9250604085013591506060850135613726816134d7565b939692955090935050565b5f60408284031215613741575f80fd5b604080519081016001600160401b0381118282101715613763576137636132f2565b604052823581526020928301359281019290925250919050565b5f806080838503121561378e575f80fd5b6137988484613731565b91506137a78460408501613731565b90509250929050565b5f80604083850312156137c1575f80fd5b82356137cc816135a0565b946020939093013593505050565b5f805f805f8060c087890312156137ef575f80fd5b86356137fa816134d7565b9550602087013561380a81613185565b9450604087013561381a816134d7565b9350606087013561382a816134d7565b925060808701356001600160401b03811115613844575f80fd5b61385089828a016133a6565b92505060a0870135613861816134d7565b809150509295509295509295565b8051610a7f816132bf565b5f6020828403121561388a575f80fd5b8151610e79816132bf565b5f602082840312156138a5575f80fd5b815162ffffff81168114610e79575f80fd5b8051610a7f81613185565b5f602082840312156138d2575f80fd5b8151610e7981613185565b600181811c908216806138f157607f821691505b60208210810361390f57634e487b7160e01b5f52602260045260245ffd5b50919050565b8051610a7f816134d7565b5f60208284031215613930575f80fd5b8151610e79816134d7565b60ff81168114610ac8575f80fd5b8051610a7f8161393b565b5f6139616133c884613380565b9050828152838383011115613974575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112613999575f80fd5b6113c583835160208501613954565b5f602082840312156139b8575f80fd5b81516001600160401b038111156139cd575f80fd5b820160e081850312156139de575f80fd5b6139e6613306565b6139ef826138b7565b81526139fd602083016138b7565b6020820152613a0e60408301613949565b6040820152613a1f6060830161386f565b6060820152613a3060808301613915565b6080820152613a4160a08301613915565b60a082015260c08201516001600160401b03811115613a5e575f80fd5b613a6a8682850161398a565b60c083015250949350505050565b6001600160601b0383168152604060208201525f610e7660408301846131d0565b5f60208284031215613aa9575f80fd5b8151610e79816135a0565b80820281158282048414176113c857634e487b7160e01b5f52601160045260245ffd5b5f8060408385031215613ae8575f80fd5b8251915060208301516131c58161393b565b5f8085851115613b08575f80fd5b83861115613b14575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015613b52576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b61012081525f613bac61012083018c6131d0565b8a602084015289604084015288606084015263ffffffff8816608084015263ffffffff871660a084015285151560c084015284151560e0840152828103610100840152613bf981856131d0565b9c9b505050505050505050505050565b6001600160601b038716815260c060208201525f613c2a60c08301886131d0565b86604084015263ffffffff8616606084015264ffffffffff8516608084015282810360a0840152613c5b81856131d0565b9998505050505050505050565b6001600160a01b03841681526001600160c01b0319831660208201526060604082018190525f906136bb908301846131d0565b5f60208284031215613cab575f80fd5b81516001600160401b03811115613cc0575f80fd5b820160808185031215613cd1575f80fd5b613cd961332e565b81516001600160401b03811115613cee575f80fd5b8201601f81018613613cfe575f80fd5b613d0d86825160208401613954565b825250613d1c60208301613915565b6020820152613d2d60408301613915565b604082015260608201516001600160401b03811115613d4a575f80fd5b613d568682850161398a565b606083015250949350505050565b6001600160601b03841681526001600160401b0360c01b83166020820152606060408201525f6136bb60608301846131d0565b825181526020808401518183015282516040830152820151606082015260808101610e79565b5f82518060208501845e5f920191825250919050565b5f8060408385031215613de4575f80fd5b8251613def816132bf565b60208401519092506131c5816133fa565b5f60208284031215613e10575f80fd5b8151610e798161393b565b601f821115613e5f57805f5260205f20601f840160051c81016020851015613e405750805b601f840160051c820191505b81811015611249575f8155600101613e4c565b505050565b81516001600160401b03811115613e7d57613e7d6132f2565b613e9181613e8b84546138dd565b84613e1b565b6020601f821160018114613ec3575f8315613eac5750848201515b5f19600385901b1c1916600184901b178455611249565b5f84815260208120601f198516915b82811015613ef25787850151825560209485019460019092019101613ed2565b5084821015613f0f57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00aab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f900ffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f006548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300a2646970667358221220dd62e23e5cc1a2279b905ff1260d508a258f1345e069169213117d249cb683e764736f6c634300081a0033",
1318
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610281575f3560e01c80637427d7a811610156578063b2a6b42d116100ca578063deaa59df11610084578063deaa59df146105dc578063e145d46c146105ef578063ea15869f14610619578063f5860e1a14610640578063f80e207214610654578063f86664d214610667575f80fd5b8063b2a6b42d14610576578063b423086c14610589578063b6b412ba14610591578063bf7e214f146105a4578063d16d0fe8146105ac578063de7b5d14146105bf575f80fd5b80638f0c86fa1161011b5780638f0c86fa146104f35780638fb360371461050657806390edbd3514610527578063ab3fc75f1461053c578063ad12ad601461054f578063ada9652e14610562575f80fd5b80637427d7a81461049357806376b707b7146104a65780637a9e5e4b146104d157806387ef9ba0146104e4578063893d20e8146104eb575f80fd5b806322366844116101f85780635741e5e9116101b25780635741e5e91461041c57806359660bea146104245780635ab1bd53146104375780635dcb3bae14610448578063644c45e01461045b5780636bd1c0eb14610463575f80fd5b806322366844146103b157806322f3e2d4146103b95780632b5198b1146103c15780632eb3e6f4146103ed578063419197fe1461040157806343d752d314610414575f80fd5b8063138461e011610249578063138461e01461034257806317d7de7c1461034a5780631c6b21901461035f5780631eff4b2214610372578063211e28b61461039457806321df0da7146103a9575f80fd5b806301ffc9a71461028557806307e71a6e146102c65780630d8e6e2c146102f15780630fec111c1461030d5780631329960414610322575b5f80fd5b6102b161029336600461315e565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102d96102d4366004613199565b61067a565b6040516001600160601b0390911681526020016102bd565b6102f961077e565b60405162ffffff90911681526020016102bd565b610315610805565b6040516102bd91906131fe565b61032a6109ac565b6040516001600160a01b0390911681526020016102bd565b6102d9610a14565b610352610a1e565b6040516102bd9190613292565b6102d961036d3660046132a4565b610a2e565b6103865f80516020613f9f83398151915281565b6040519081526020016102bd565b6103a76103a23660046132d7565b610a84565b005b61032a610acb565b6102b1610add565b6102b1610bd3565b6103d46103cf366004613416565b610c4a565b6040516001600160c01b031990911681526020016102bd565b6103865f80516020613f7f83398151915281565b6103a761040f3660046134eb565b610cae565b61032a610d00565b6102b1610d12565b6103d4610432366004613507565b610dcf565b6001546001600160a01b031661032a565b6102d96104563660046135b5565b610e26565b6102d9610e80565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b031661032a565b6103d46104a1366004613612565b610e9b565b5f80516020613f9f83398151915254600160681b900460ff1660405160ff90911681526020016102bd565b6103a76104df366004613643565b610f1b565b60016102b1565b61032a610f9d565b6102b1610501366004613643565b6110ce565b61050e611193565b6040516001600160e01b031990911681526020016102bd565b61052f6111c8565b6040516102bd919061365e565b6103a761054a3660046136c4565b6111ed565b6103a761055d3660046136e1565b611250565b6103865f80516020613f1f83398151915281565b6102d9610584366004613643565b6112ff565b61052f611341565b6103a761059f36600461377d565b611351565b61032a61139f565b6103866105ba3660046137b0565b6113ba565b5f80516020613f7f833981519152546001600160a01b031661032a565b6103a76105ea366004613643565b6113ce565b6106026105fd366004613612565b61141b565b6040805192835260ff9091166020830152016102bd565b6103867fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6103865f80516020613f5f83398151915281565b6103a76106623660046137b0565b6114d5565b6103a76106753660046137da565b6114de565b5f610687335b5f366115f4565b610690336110ce565b6106b45760405163637c41bb60e01b81523360048201526024015b60405180910390fd5b82601b6106c182826116f2565b846106d46001546001600160a01b031690565b604051631660755f60e31b81526001600160601b03831660048201523360248201526001600160a01b03919091169063b303aaf890604401602060405180830381865afa158015610727573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074b919061387a565b61076a5760405163086391f760e31b81523360048201526024016106ab565b61077486866117a9565b9695505050505050565b604051632efe011360e01b8152600160048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156107dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108009190613895565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152905f80516020613f9f83398151915290506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561089e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c291906138c2565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a00161090a610f9d565b6001600160a01b03168152602001826001018054610927906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610953906138dd565b801561099e5780601f106109755761010080835404028352916020019161099e565b820191905f5260205f20905b81548152906001019060200180831161098157829003601f168201915b505050505081525091505090565b5f6109b5610d00565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108009190613920565b5f61080030611835565b6060610a286111c8565b51919050565b5f610a3833610680565b610a40610f9d565b6001600160a01b0316336001600160a01b031614610a735760405163086391f760e31b81523360048201526024016106ab565b610a7c82611a29565b90505b919050565b610a8c610f9d565b6001600160a01b0316336001600160a01b031614610abf5760405163086391f760e31b81523360048201526024016106ab565b610ac881611aad565b50565b5f610ad46111c8565b60200151905090565b5f610af06001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610b34573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5891906138c2565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610baf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610800919061387a565b5f610bdc61139f565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610c20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c44919061387a565b15905090565b5f610c5433610680565b610c5c610f9d565b6001600160a01b0316336001600160a01b031614610c8f5760405163086391f760e31b81523360048201526024016106ab565b610ca08a8a8a8a8a8a8a8a8a611b29565b9a9950505050505050505050565b610cb733610680565b610cbf610f9d565b6001600160a01b0316336001600160a01b031614610cf25760405163086391f760e31b81523360048201526024016106ab565b610cfc8282611be8565b5050565b5f610d096111c8565b60400151905090565b5f610d1b610add565b15610d9f576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015610d6f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d9691908101906139a8565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0154600160a01b900460ff1690565b5f610dd933610680565b610de2336110ce565b610e015760405163637c41bb60e01b81523360048201526024016106ab565b5f610e0b336112ff565b9050610e1b818888888888611c6d565b979650505050505050565b5f610e3033610680565b610e38610f9d565b6001600160a01b0316336001600160a01b031614610e6b5760405163086391f760e31b81523360048201526024016106ab565b610e76848484611d23565b90505b9392505050565b5f80516020613f1f833981519152546001600160601b031690565b5f73__$05887d5853069c88bcd4c0a2107db45f29$__633f093cd6610ebe610e80565b846040518363ffffffff1660e01b8152600401610edc929190613a78565b602060405180830381865af4158015610ef7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7c9190613a99565b33610f2461139f565b6001600160a01b0316816001600160a01b031614610f5f5760405162d1953b60e31b81526001600160a01b03821660048201526024016106ab565b816001600160a01b03163b5f03610f94576040516361798f2f60e11b81526001600160a01b03831660048201526024016106ab565b610cfc82611ee7565b5f805f80516020613f1f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611009573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102d919061387a565b156110b8576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561108e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110b29190613920565b91505090565b54600160601b90046001600160a01b0316919050565b6001600160a01b0381165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f80516020613f5f8339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af415801561116f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e79919061387a565b5f80516020613f3f83398151915280545f9190600160a01b900460ff166111ba575f6110b2565b638fb3603760e01b91505090565b6111d0613126565b6111d8610add565b156111e557610800611f47565b610800611341565b6111f633610680565b6111fe610f9d565b6001600160a01b0316336001600160a01b0316146112315760405163086391f760e31b81523360048201526024016106ab565b82601b61123e82826116f2565b61124985858561210e565b5050505050565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611297573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112bb9190613920565b6001600160a01b0316336001600160a01b0316146112ed5760405162f0630960e01b81523360048201526024016106ab565b6112f9848484846121a1565b50505050565b6001600160a01b03165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90260205260409020546001600160601b031690565b611349613126565b610800611f47565b611359610f9d565b6001600160a01b0316336001600160a01b03161461138c5760405163086391f760e31b81523360048201526024016106ab565b61139533610680565b610cfc828261234a565b5f80516020613f3f833981519152546001600160a01b031690565b5f6113c58282613ab4565b90505b92915050565b6113d733610680565b6113df610f9d565b6001600160a01b0316336001600160a01b0316146114125760405163086391f760e31b81523360048201526024016106ab565b610ac881612388565b5f805f61142784610e9b565b905061145a7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b60405163b82d7ef560e01b81526001600160c01b0319831660048201526001600160a01b03919091169063b82d7ef5906024016040805180830381865afa1580156114a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114cb9190613ad7565b9250925050915091565b610cfc33610680565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156115225750825b90505f826001600160401b0316600114801561153d5750303b155b90508115801561154b575080155b156115695760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561159357845460ff60401b1916600160401b1785555b6115a18b8b8b8b8b8b6123fd565b83156115e757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050505050565b5f80516020613f3f8339815191525f8061162c61160f61139f565b873061161e60045f8a8c613afa565b61162791613b21565b612422565b91509150816116ea5763ffffffff8116156116c757825460ff60a01b1916600160a01b17835561165a61139f565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161168993929190613b59565b5f604051808303815f87803b1580156116a0575f80fd5b505af11580156116b2573d5f803e3d5ffd5b5050845460ff60a01b19168555506116ea9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016106ab565b505050505050565b6001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015611754573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611778919061387a565b610cfc5760405163d711af7560e01b81526001600160601b038316600482015260ff821660248201526044016106ab565b5f5f80516020613f5f833981519152600101546040516303f38d3760e11b81526001600160601b038086166004830152841660248201526001600160a01b03909116906307e71a6e906044016020604051808303815f875af1158015611811573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c591906138c2565b5f805f80516020613f1f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156118a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c5919061387a565b156118f15780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016106ab565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611943573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611967919061387a565b61198f5760405163b9304b0d60e01b81526001600160a01b03841660048201526024016106ab565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa1580156119e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a0591906138c2565b81546001600160601b0319166001600160601b039190911690811790915592915050565b5f5f80516020613f7f833981519152600301546040516301c6b21960e41b81526001600160601b03841660048201526001600160a01b0390911690631c6b2190906024016020604051808303815f875af1158015611a89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7c91906138c2565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f035460405163570fd2f360e11b815230600482015282151560248201526001600160a01b039091169063ae1fa5e6906044015b5f604051808303815f87803b158015611b17575f80fd5b505af1158015611249573d5f803e3d5ffd5b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051632b5198b160e01b81525f915f80516020613f5f833981519152916001600160a01b0390911690632b5198b190611b99908e908e908e908e908e908e908e908e908e90600401613b98565b6020604051808303815f875af1158015611bb5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bd99190613a99565b9b9a5050505050505050505050565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f03546040516320c8cbff60e11b81526001600160a01b0384811660048301526001600160601b03841660248301529091169063419197fe906044015b5f604051808303815f87803b158015611c5b575f80fd5b505af11580156116ea573d5f803e3d5ffd5b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051638dd2b78160e01b81525f915f80516020613f5f833981519152916001600160a01b0390911690638dd2b78190611cd7908b908b908b908b908b908b90600401613c09565b6020604051808303815f875af1158015611cf3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d179190613a99565b98975050505050505050565b6001600160a01b0383165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f80516020613f5f8339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af4158015611dc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611de8919061387a565b15611e33576001600160a01b0385165f8181526002830160205260409081902054905163d56c930160e01b815260048101929092526001600160601b031660248201526044016106ab565b6001810154604051632ee59dd760e11b81526001600160a01b0390911690635dcb3bae90611e6990889088908890600401613c68565b6020604051808303815f875af1158015611e85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea991906138c2565b6001600160a01b039095165f90815260029091016020526040902080546001600160601b0386166001600160601b0319909116179055509192915050565b5f80516020613f3f83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611f4f613126565b5f611f626001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015611fa6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fca91906138c2565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612023573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612047919061387a565b15612106577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031663f0ea17c3612084610e80565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa1580156120c5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120ec9190810190613c9b565b60408101519092506001600160a01b031615612106575090565b6110b261252a565b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f9015460405163ab3fc75f60e01b81525f80516020613f5f833981519152916001600160a01b03169063ab3fc75f9061216e90879087908790600401613d64565b5f604051808303815f87803b158015612185575f80fd5b505af1158015612197573d5f803e3d5ffd5b5050505050505050565b604080516001600160a01b038086168252831660208201527f04d7077d43765a828a5b0398e13ddca074c675aba69101b22c5d0176d8689434910160405180910390a15f5f80516020613f5f833981519152905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561223c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061226091906138c2565b6001600160a01b0386165f9081526002830160205260409081902080546001600160601b0319166001600160601b0393909316929092179091555163efac97cf60e01b81526004810184905273__$94a2c899be079b00d952d0d84fffaa5c34$__9063efac97cf90602401602060405180830381865af41580156122e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061230a91906138c2565b6001600160a01b03949094165f9081526002919091016020526040902080546001600160601b0319166001600160601b0390941693909317909255505050565b5f80516020613f5f83398151915254604051631bd44bf760e11b81526001600160a01b03909116906337a897ee90611c449085908590600401613d97565b612390610f9d565b6001600160a01b0316336001600160a01b0316146123c35760405163086391f760e31b81523360048201526024016106ab565b6123cd600b61261c565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df90602401611b00565b6124056126c5565b6116ea86868686868660405180602001604052805f815250612710565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516124909190613dbd565b5f60405180830381855afa9150503d805f81146124c8576040519150601f19603f3d011682016040523d82523d5f602084013e6124cd565b606091505b5091509150811561251f5760408151106124ff57808060200190518101906124f59190613dd3565b909450925061251f565b602081511061251f578080602001905181019061251c919061387a565b93505b505094509492505050565b612532613126565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060800160405280825f01805461256f906138dd565b80601f016020809104026020016040519081016040528092919081815260200182805461259b906138dd565b80156125e65780601f106125bd576101008083540402835291602001916125e6565b820191905f5260205f20905b8154815290600101906020018083116125c957829003601f168201915b505050918352505060018301546001600160a01b031660208201525f6040820152600283018054606090920191610927906138dd565b5f61262f6001546001600160a01b031690565b6001600160a01b031663d39e60438361265e5f80516020613f9f8339815191525460ff600160681b9091041690565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156126a1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7c9190613920565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661270e57604051631afcd79f60e31b815260040160405180910390fd5b565b6127186126c5565b61272b8787858560108a60018b8961279a565b5f80516020613f5f833981519152612743601061261c565b6001820180546001600160a01b0319166001600160a01b039290921691909117905561276f600b61261c565b81546001600160a01b0319166001600160a01b03919091161781556121976301a39f4760e01b6129b1565b6127a26126c5565b5f6127ae8a8a886129dd565b90505f5f80516020613f7f83398151915260405163bf8e179760e01b81526001600160601b03841660048201529091506001600160a01b038c169063bf8e179790602401602060405180830381865afa15801561280d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128319190613920565b81546001600160a01b0319166001600160a01b039190911690811782556040805163bf7e214f60e01b815290516128cb929163bf7e214f9160048083019260209291908290030181865afa15801561288b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128af9190613920565b8c8c8c8c8c8b8b60405180602001604052805f8152508c612a8c565b8054604080516302cd307160e01b815290516001600160a01b03909216916302cd3071916004808201926020929091908290030181865afa158015612912573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129369190613920565b6001820180546001600160a01b03199081166001600160a01b0393841617909155600283018054909116918816919091179055612973600b61261c565b6003820180546001600160a01b0319166001600160a01b03929092169190911790556129a5634a531f3360e01b6129b1565b6115e763a9c1bc6f60e01b5b6129b96126c5565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f60ff8216600d036129fe576129f58484600a612d0e565b50829050610e79565b5f612a0b8585600d612d0e565b6040516305247a1760e51b81526001600160601b03861660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015612a58573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a7f91908101906139a8565b6020015195945050505050565b612a946126c5565b5f896001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ad1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612af59190613920565b90505f8b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b34573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b589190613e00565b905060ff8716600314612c1e57604051637d482da160e01b81526001600160a01b0380841660048301528916602482015246604482015260ff8216606482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90637d482da190608401602060405180830381865af4158015612bd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bf6919061387a565b612c1e57604051638071294b60e01b81526001600160a01b03891660048201526024016106ab565b88515f03612c3f5760405163591eebf360e11b815260040160405180910390fd5b612c4e8c8c8c8a8a8a8a612dd3565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0080612c7a8b82613e64565b50600181018054881515600160a01b026001600160a81b03199091166001600160a01b038c161717905560028101612cb28582613e64565b50612cbd600b61261c565b6003820180546001600160a01b0319166001600160a01b0392909216919091179055612cef634a531f3360e01b6129b1565b612cff6306e9e5ff60e31b6129b1565b50505050505050505050505050565b6040516305247a1760e51b81526001600160601b038316600482015283905f906001600160a01b0383169063a48f42e0906024015f60405180830381865afa158015612d5c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d8391908101906139a8565b9050612d9a81604001518460ff9081169116141590565b15612dcb57604080820151905163b0c1f6eb60e01b815260ff808616600483015290911660248201526044016106ab565b509392505050565b612ddb6126c5565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015612e31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e55919061387a565b612e7d5760405163cf6935e560e01b81526001600160a01b03881660048201526024016106ab565b612e8687612f7d565b612e908683612f8e565b5f80516020613f9f83398151915280546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff871602178155604080516376b707b760e01b815290516001600160a01b038a16916376b707b79160048083019260209291908290030181865afa158015612f0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f319190613e00565b815461ffff60681b1916600160681b60ff929092169190910260ff60701b191617600160701b8515150217815560018101612f6c8382613e64565b50612197634a531f3360e01b6129b1565b612f856126c5565b610ac881613004565b612f966126c5565b612f9f82613015565b612fa76130e1565b6001600160a01b038116612fce5760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020613f1f83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b61300c6126c5565b610ac881611ee7565b61301d6126c5565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015613073573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613097919061387a565b6130bf5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016106ab565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6130e96126c5565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040518060800160405280606081526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f6020828403121561316e575f80fd5b81356001600160e01b031981168114610e79575f80fd5b6001600160601b0381168114610ac8575f80fd5b5f80604083850312156131aa575f80fd5b82356131b581613185565b915060208301356131c581613185565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151613246608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261328a6101008401826131d0565b949350505050565b602081525f6113c560208301846131d0565b5f602082840312156132b4575f80fd5b8135610e7981613185565b8015158114610ac8575f80fd5b8035610a7f816132bf565b5f602082840312156132e7575f80fd5b8135610e79816132bf565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b0381118282101715613328576133286132f2565b60405290565b604051608081016001600160401b0381118282101715613328576133286132f2565b604051601f8201601f191681016001600160401b0381118282101715613378576133786132f2565b604052919050565b5f6001600160401b03821115613398576133986132f2565b50601f01601f191660200190565b5f82601f8301126133b5575f80fd5b8135602083015f6133cd6133c884613380565b613350565b90508281528583830111156133e0575f80fd5b828260208301375f92810160200192909252509392505050565b63ffffffff81168114610ac8575f80fd5b8035610a7f816133fa565b5f805f805f805f805f6101208a8c03121561342f575f80fd5b89356001600160401b03811115613444575f80fd5b6134508c828d016133a6565b99505060208a0135975060408a0135965060608a0135955060808a0135613476816133fa565b945061348460a08b0161340b565b935061349260c08b016132cc565b92506134a060e08b016132cc565b91506101008a01356001600160401b038111156134bb575f80fd5b6134c78c828d016133a6565b9150509295985092959850929598565b6001600160a01b0381168114610ac8575f80fd5b5f80604083850312156134fc575f80fd5b82356131b5816134d7565b5f805f805f60a0868803121561351b575f80fd5b85356001600160401b03811115613530575f80fd5b61353c888289016133a6565b955050602086013593506040860135613554816133fa565b9250606086013564ffffffffff8116811461356d575f80fd5b915060808601356001600160401b03811115613587575f80fd5b613593888289016133a6565b9150509295509295909350565b6001600160c01b031981168114610ac8575f80fd5b5f805f606084860312156135c7575f80fd5b83356135d2816134d7565b925060208401356135e2816135a0565b915060408401356001600160401b038111156135fc575f80fd5b613608868287016133a6565b9150509250925092565b5f60208284031215613622575f80fd5b81356001600160401b03811115613637575f80fd5b61328a848285016133a6565b5f60208284031215613653575f80fd5b8135610e79816134d7565b602081525f82516080602084015261367960a08401826131d0565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f190160808601529091506136bb82826131d0565b95945050505050565b5f805f606084860312156136d6575f80fd5b83356135d281613185565b5f805f80608085870312156136f4575f80fd5b84356136ff816134d7565b9350602085013561370f816134d7565b9250604085013591506060850135613726816134d7565b939692955090935050565b5f60408284031215613741575f80fd5b604080519081016001600160401b0381118282101715613763576137636132f2565b604052823581526020928301359281019290925250919050565b5f806080838503121561378e575f80fd5b6137988484613731565b91506137a78460408501613731565b90509250929050565b5f80604083850312156137c1575f80fd5b82356137cc816135a0565b946020939093013593505050565b5f805f805f8060c087890312156137ef575f80fd5b86356137fa816134d7565b9550602087013561380a81613185565b9450604087013561381a816134d7565b9350606087013561382a816134d7565b925060808701356001600160401b03811115613844575f80fd5b61385089828a016133a6565b92505060a0870135613861816134d7565b809150509295509295509295565b8051610a7f816132bf565b5f6020828403121561388a575f80fd5b8151610e79816132bf565b5f602082840312156138a5575f80fd5b815162ffffff81168114610e79575f80fd5b8051610a7f81613185565b5f602082840312156138d2575f80fd5b8151610e7981613185565b600181811c908216806138f157607f821691505b60208210810361390f57634e487b7160e01b5f52602260045260245ffd5b50919050565b8051610a7f816134d7565b5f60208284031215613930575f80fd5b8151610e79816134d7565b60ff81168114610ac8575f80fd5b8051610a7f8161393b565b5f6139616133c884613380565b9050828152838383011115613974575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112613999575f80fd5b6113c583835160208501613954565b5f602082840312156139b8575f80fd5b81516001600160401b038111156139cd575f80fd5b820160e081850312156139de575f80fd5b6139e6613306565b6139ef826138b7565b81526139fd602083016138b7565b6020820152613a0e60408301613949565b6040820152613a1f6060830161386f565b6060820152613a3060808301613915565b6080820152613a4160a08301613915565b60a082015260c08201516001600160401b03811115613a5e575f80fd5b613a6a8682850161398a565b60c083015250949350505050565b6001600160601b0383168152604060208201525f610e7660408301846131d0565b5f60208284031215613aa9575f80fd5b8151610e79816135a0565b80820281158282048414176113c857634e487b7160e01b5f52601160045260245ffd5b5f8060408385031215613ae8575f80fd5b8251915060208301516131c58161393b565b5f8085851115613b08575f80fd5b83861115613b14575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015613b52576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b61012081525f613bac61012083018c6131d0565b8a602084015289604084015288606084015263ffffffff8816608084015263ffffffff871660a084015285151560c084015284151560e0840152828103610100840152613bf981856131d0565b9c9b505050505050505050505050565b6001600160601b038716815260c060208201525f613c2a60c08301886131d0565b86604084015263ffffffff8616606084015264ffffffffff8516608084015282810360a0840152613c5b81856131d0565b9998505050505050505050565b6001600160a01b03841681526001600160c01b0319831660208201526060604082018190525f906136bb908301846131d0565b5f60208284031215613cab575f80fd5b81516001600160401b03811115613cc0575f80fd5b820160808185031215613cd1575f80fd5b613cd961332e565b81516001600160401b03811115613cee575f80fd5b8201601f81018613613cfe575f80fd5b613d0d86825160208401613954565b825250613d1c60208301613915565b6020820152613d2d60408301613915565b604082015260608201516001600160401b03811115613d4a575f80fd5b613d568682850161398a565b606083015250949350505050565b6001600160601b03841681526001600160401b0360c01b83166020820152606060408201525f6136bb60608301846131d0565b825181526020808401518183015282516040830152820151606082015260808101610e79565b5f82518060208501845e5f920191825250919050565b5f8060408385031215613de4575f80fd5b8251613def816132bf565b60208401519092506131c5816133fa565b5f60208284031215613e10575f80fd5b8151610e798161393b565b601f821115613e5f57805f5260205f20601f840160051c81016020851015613e405750805b601f840160051c820191505b81811015611249575f8155600101613e4c565b505050565b81516001600160401b03811115613e7d57613e7d6132f2565b613e9181613e8b84546138dd565b84613e1b565b6020601f821160018114613ec3575f8315613eac5750848201515b5f19600385901b1c1916600184901b178455611249565b5f84815260208120601f198516915b82811015613ef25787850151825560209485019460019092019101613ed2565b5084821015613f0f57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00aab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f900ffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f006548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300a2646970667358221220dd62e23e5cc1a2279b905ff1260d508a258f1345e069169213117d249cb683e764736f6c634300081a0033",
1319
+ "linkReferences": {
1320
+ "contracts/shared/ContractLib.sol": {
1321
+ "ContractLib": [
1322
+ {
1323
+ "length": 20,
1324
+ "start": 1959
1325
+ },
1326
+ {
1327
+ "length": 20,
1328
+ "start": 2571
1329
+ },
1330
+ {
1331
+ "length": 20,
1332
+ "start": 3202
1333
+ },
1334
+ {
1335
+ "length": 20,
1336
+ "start": 15736
1337
+ },
1338
+ {
1339
+ "length": 20,
1340
+ "start": 16343
1341
+ },
1342
+ {
1343
+ "length": 20,
1344
+ "start": 16921
1345
+ }
1346
+ ]
1347
+ },
1348
+ "contracts/type/NftId.sol": {
1349
+ "NftIdLib": [
1350
+ {
1351
+ "length": 20,
1352
+ "start": 6711
1353
+ },
1354
+ {
1355
+ "length": 20,
1356
+ "start": 7509
1357
+ },
1358
+ {
1359
+ "length": 20,
1360
+ "start": 8623
1361
+ },
1362
+ {
1363
+ "length": 20,
1364
+ "start": 8981
1365
+ },
1366
+ {
1367
+ "length": 20,
1368
+ "start": 10823
1369
+ },
1370
+ {
1371
+ "length": 20,
1372
+ "start": 12138
1373
+ },
1374
+ {
1375
+ "length": 20,
1376
+ "start": 12745
1377
+ },
1378
+ {
1379
+ "length": 20,
1380
+ "start": 13269
1381
+ },
1382
+ {
1383
+ "length": 20,
1384
+ "start": 13452
1385
+ }
1386
+ ]
1387
+ },
1388
+ "contracts/type/Referral.sol": {
1389
+ "ReferralLib": [
1390
+ {
1391
+ "length": 20,
1392
+ "start": 8316
1393
+ }
1394
+ ]
1395
+ },
1396
+ "contracts/type/Version.sol": {
1397
+ "VersionLib": [
1398
+ {
1399
+ "length": 20,
1400
+ "start": 6530
1401
+ }
1402
+ ]
1403
+ }
1404
+ },
1405
+ "deployedLinkReferences": {
1406
+ "contracts/shared/ContractLib.sol": {
1407
+ "ContractLib": [
1408
+ {
1409
+ "length": 20,
1410
+ "start": 11162
1411
+ },
1412
+ {
1413
+ "length": 20,
1414
+ "start": 11769
1415
+ },
1416
+ {
1417
+ "length": 20,
1418
+ "start": 12347
1419
+ }
1420
+ ]
1421
+ },
1422
+ "contracts/type/NftId.sol": {
1423
+ "NftIdLib": [
1424
+ {
1425
+ "length": 20,
1426
+ "start": 2137
1427
+ },
1428
+ {
1429
+ "length": 20,
1430
+ "start": 2935
1431
+ },
1432
+ {
1433
+ "length": 20,
1434
+ "start": 4049
1435
+ },
1436
+ {
1437
+ "length": 20,
1438
+ "start": 4407
1439
+ },
1440
+ {
1441
+ "length": 20,
1442
+ "start": 6249
1443
+ },
1444
+ {
1445
+ "length": 20,
1446
+ "start": 7564
1447
+ },
1448
+ {
1449
+ "length": 20,
1450
+ "start": 8171
1451
+ },
1452
+ {
1453
+ "length": 20,
1454
+ "start": 8695
1455
+ },
1456
+ {
1457
+ "length": 20,
1458
+ "start": 8878
1459
+ }
1460
+ ]
1461
+ },
1462
+ "contracts/type/Referral.sol": {
1463
+ "ReferralLib": [
1464
+ {
1465
+ "length": 20,
1466
+ "start": 3742
1467
+ }
1468
+ ]
1469
+ },
1470
+ "contracts/type/Version.sol": {
1471
+ "VersionLib": [
1472
+ {
1473
+ "length": 20,
1474
+ "start": 1956
1475
+ }
1476
+ ]
1477
+ }
1478
+ }
1479
+ }