@etherisc/gif-next 0.0.2-f831797-539 → 0.0.2-f946ccd-184

Sign up to get free protection for your applications and to get access to all the features.
Files changed (667) hide show
  1. package/README.md +57 -88
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1234 -0
  4. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  5. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
  6. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  7. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
  8. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  9. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  10. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1013 -0
  12. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
  14. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
  16. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
  18. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
  20. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
  22. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  23. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1342 -0
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  27. package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +220 -509
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1405 -0
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +818 -0
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  33. package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +282 -227
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +254 -335
  36. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  37. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1463 -0
  38. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  39. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +410 -0
  40. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1712 -0
  42. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +414 -0
  44. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  46. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  47. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1411 -0
  48. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  49. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
  50. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  51. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1517 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +1978 -0
  54. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  55. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
  56. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  57. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +278 -1906
  58. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  59. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +318 -70
  60. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  61. package/artifacts/contracts/instance/Instance.sol/Instance.json +335 -2711
  62. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  63. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1623 -0
  64. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
  66. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  67. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +904 -338
  68. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  69. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +350 -343
  70. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  71. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +132 -111
  72. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  73. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3587 -0
  74. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  75. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  76. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  78. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  80. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  82. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  84. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  85. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +25 -150
  86. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  87. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  88. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  89. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  90. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  91. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  92. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  93. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  94. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +979 -0
  95. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  96. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
  97. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  98. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  99. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  100. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +765 -0
  101. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  102. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +305 -170
  103. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  104. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +871 -0
  105. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  106. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +927 -0
  107. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  108. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +710 -0
  109. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  110. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +293 -383
  111. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  112. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
  113. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  114. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1367 -0
  115. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  116. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +802 -0
  117. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  118. package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +412 -135
  119. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  120. package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +297 -324
  121. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  122. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1198 -0
  123. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  124. package/artifacts/contracts/pool/Pool.sol/Pool.json +1034 -0
  125. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  126. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1474 -0
  127. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  128. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +726 -0
  129. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  130. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +737 -0
  131. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  132. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +698 -0
  133. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  134. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +354 -397
  135. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  136. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
  137. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  138. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1346 -0
  139. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  140. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +814 -0
  141. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  142. package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +129 -168
  143. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  144. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +886 -0
  145. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  146. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +867 -0
  147. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  148. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → product/IPricingService.sol/IPricingService.json} +214 -217
  149. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  150. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +948 -0
  151. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  152. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +81 -65
  153. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  154. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1239 -0
  155. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  156. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +770 -0
  157. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  158. package/artifacts/contracts/product/PricingService.sol/PricingService.json +865 -0
  159. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  160. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +746 -0
  161. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  162. package/artifacts/contracts/product/Product.sol/Product.json +1054 -0
  163. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  164. package/artifacts/contracts/product/RiskService.sol/RiskService.json +588 -0
  165. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  166. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +682 -0
  167. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  168. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  169. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  170. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +394 -21
  171. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  172. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -149
  173. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  174. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
  175. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  176. package/artifacts/contracts/registry/Registry.sol/Registry.json +793 -37
  177. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  178. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1858 -0
  179. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  180. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +372 -204
  181. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  182. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +126 -95
  183. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  184. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  185. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  186. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1169 -0
  187. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  188. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
  189. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  190. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
  191. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  192. package/artifacts/contracts/shared/Component.sol/Component.json +685 -0
  193. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  194. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1573 -0
  195. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  196. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +794 -0
  197. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  198. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +146 -142
  199. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  200. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +92 -0
  201. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  202. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +193 -75
  203. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  204. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
  205. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  206. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json} +215 -227
  207. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  208. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
  209. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  210. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  211. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  212. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
  213. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  214. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  215. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  216. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
  217. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  218. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  219. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  220. package/artifacts/contracts/shared/IService.sol/IService.json +96 -19
  221. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  222. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  223. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  224. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  225. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  226. package/artifacts/contracts/{components/Component.sol/Component.json → shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json} +194 -215
  227. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  228. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
  229. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  230. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
  231. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  232. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  233. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  234. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +12 -70
  235. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  236. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  237. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  238. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +18 -106
  239. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  240. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  241. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  242. package/artifacts/contracts/shared/Service.sol/Service.json +88 -113
  243. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  244. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
  245. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  246. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
  247. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  248. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  249. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  250. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  251. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  252. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  253. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  254. package/artifacts/contracts/staking/Staking.sol/Staking.json +1828 -0
  255. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  256. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  257. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  258. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +750 -0
  259. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  260. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  261. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  262. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1236 -0
  263. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  264. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +698 -0
  265. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  266. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
  267. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  268. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  269. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  270. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  271. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  272. package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
  273. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  274. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  275. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  276. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  277. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  278. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  279. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  280. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  281. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  282. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  283. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  284. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  285. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  286. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  287. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  288. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  289. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  290. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  291. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  292. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  293. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  294. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  295. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  296. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +142 -0
  297. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  298. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  299. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  300. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  301. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  302. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  303. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  304. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  305. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  306. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  307. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  308. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  309. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  310. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  311. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  312. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  313. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  314. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
  315. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  316. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  317. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  318. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  319. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  320. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  321. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  322. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +586 -0
  323. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  324. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  325. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  326. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  327. package/contracts/authorization/AccessAdmin.sol +592 -0
  328. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  329. package/contracts/authorization/Authorization.sol +217 -0
  330. package/contracts/authorization/IAccess.sol +48 -0
  331. package/contracts/authorization/IAccessAdmin.sol +135 -0
  332. package/contracts/authorization/IAuthorization.sol +54 -0
  333. package/contracts/authorization/IModuleAuthorization.sol +21 -0
  334. package/contracts/authorization/IServiceAuthorization.sol +38 -0
  335. package/contracts/authorization/ModuleAuthorization.sol +78 -0
  336. package/contracts/authorization/ServiceAuthorization.sol +90 -0
  337. package/contracts/distribution/BasicDistribution.sol +138 -0
  338. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  339. package/contracts/{components → distribution}/Distribution.sol +178 -163
  340. package/contracts/distribution/DistributionService.sol +336 -0
  341. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  342. package/contracts/distribution/IDistributionComponent.sol +52 -0
  343. package/contracts/{instance/service → distribution}/IDistributionService.sol +41 -38
  344. package/contracts/examples/fire/FirePool.sol +75 -0
  345. package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
  346. package/contracts/examples/fire/FireProduct.sol +324 -0
  347. package/contracts/examples/fire/FireProductAuthorization.sol +35 -0
  348. package/contracts/examples/fire/FireUSD.sol +26 -0
  349. package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
  350. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  351. package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
  352. package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
  353. package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
  354. package/contracts/instance/IInstance.sol +43 -73
  355. package/contracts/instance/IInstanceService.sol +56 -24
  356. package/contracts/instance/Instance.sol +160 -226
  357. package/contracts/instance/InstanceAdmin.sol +285 -0
  358. package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
  359. package/contracts/instance/InstanceReader.sol +201 -65
  360. package/contracts/instance/InstanceService.sol +333 -356
  361. package/contracts/instance/InstanceServiceManager.sol +14 -29
  362. package/contracts/instance/InstanceStore.sol +287 -0
  363. package/contracts/instance/base/BalanceStore.sol +123 -0
  364. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  365. package/contracts/instance/base/ObjectCounter.sol +21 -0
  366. package/contracts/instance/base/ObjectLifecycle.sol +111 -0
  367. package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +19 -24
  368. package/contracts/instance/module/IAccess.sol +19 -20
  369. package/contracts/instance/module/IBundle.sol +8 -9
  370. package/contracts/instance/module/IComponents.sol +20 -9
  371. package/contracts/instance/module/IDistribution.sol +6 -6
  372. package/contracts/instance/module/IPolicy.sol +47 -35
  373. package/contracts/instance/module/IRisk.sol +1 -1
  374. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  375. package/contracts/oracle/BasicOracle.sol +48 -0
  376. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  377. package/contracts/oracle/IOracle.sol +36 -0
  378. package/contracts/oracle/IOracleComponent.sol +33 -0
  379. package/contracts/oracle/IOracleService.sol +65 -0
  380. package/contracts/oracle/Oracle.sol +167 -0
  381. package/contracts/oracle/OracleService.sol +281 -0
  382. package/contracts/oracle/OracleServiceManager.sol +39 -0
  383. package/contracts/pool/BasicPool.sol +166 -0
  384. package/contracts/pool/BasicPoolAuthorization.sol +58 -0
  385. package/contracts/pool/BundleService.sol +438 -0
  386. package/contracts/pool/BundleServiceManager.sol +39 -0
  387. package/contracts/pool/IBundleService.sol +134 -0
  388. package/contracts/pool/IPoolComponent.sol +58 -0
  389. package/contracts/pool/IPoolService.sol +160 -0
  390. package/contracts/pool/Pool.sol +326 -0
  391. package/contracts/pool/PoolService.sol +508 -0
  392. package/contracts/pool/PoolServiceManager.sol +39 -0
  393. package/contracts/product/ApplicationService.sol +247 -0
  394. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  395. package/contracts/product/BasicProduct.sol +53 -0
  396. package/contracts/product/BasicProductAuthorization.sol +43 -0
  397. package/contracts/product/ClaimService.sol +546 -0
  398. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  399. package/contracts/{instance/service → product}/IApplicationService.sol +16 -35
  400. package/contracts/product/IClaimService.sol +122 -0
  401. package/contracts/product/IPolicyService.sol +77 -0
  402. package/contracts/product/IPricingService.sol +39 -0
  403. package/contracts/product/IProductComponent.sol +39 -0
  404. package/contracts/product/IRiskService.sol +33 -0
  405. package/contracts/product/PolicyService.sol +651 -0
  406. package/contracts/product/PolicyServiceManager.sol +39 -0
  407. package/contracts/product/PricingService.sol +300 -0
  408. package/contracts/product/PricingServiceManager.sol +39 -0
  409. package/contracts/product/Product.sol +425 -0
  410. package/contracts/product/RiskService.sol +96 -0
  411. package/contracts/product/RiskServiceManager.sol +39 -0
  412. package/contracts/registry/ChainNft.sol +80 -32
  413. package/contracts/registry/IRegistry.sol +94 -25
  414. package/contracts/registry/IRegistryService.sol +44 -42
  415. package/contracts/registry/ITransferInterceptor.sol +1 -0
  416. package/contracts/registry/Registry.sol +439 -201
  417. package/contracts/registry/RegistryAdmin.sol +464 -0
  418. package/contracts/registry/RegistryService.sol +70 -101
  419. package/contracts/registry/RegistryServiceManager.sol +23 -32
  420. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  421. package/contracts/registry/ReleaseRegistry.sol +491 -0
  422. package/contracts/registry/ServiceAuthorizationV3.sol +199 -0
  423. package/contracts/registry/TokenRegistry.sol +261 -62
  424. package/contracts/shared/Component.sol +268 -0
  425. package/contracts/shared/ComponentService.sol +641 -0
  426. package/contracts/shared/ComponentServiceManager.sol +38 -0
  427. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  428. package/contracts/shared/ContractLib.sol +38 -0
  429. package/contracts/shared/IComponent.sol +70 -0
  430. package/contracts/shared/IComponentService.sol +108 -0
  431. package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
  432. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  433. package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
  434. package/contracts/shared/INftOwnable.sol +2 -2
  435. package/contracts/shared/IPolicyHolder.sol +23 -14
  436. package/contracts/shared/IRegistryLinked.sol +0 -1
  437. package/contracts/shared/IService.sol +15 -8
  438. package/contracts/shared/InitializableCustom.sol +177 -0
  439. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
  440. package/contracts/shared/InstanceLinkedComponent.sol +172 -0
  441. package/contracts/shared/KeyValueStore.sol +131 -0
  442. package/contracts/shared/Lifecycle.sol +77 -0
  443. package/contracts/shared/NftIdSet.sol +65 -0
  444. package/contracts/shared/NftOwnable.sol +10 -23
  445. package/contracts/shared/PolicyHolder.sol +19 -42
  446. package/contracts/shared/Registerable.sol +17 -16
  447. package/contracts/shared/RegistryLinked.sol +3 -7
  448. package/contracts/shared/Service.sol +56 -27
  449. package/contracts/shared/TokenHandler.sol +115 -9
  450. package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
  451. package/contracts/staking/IStaking.sol +168 -0
  452. package/contracts/staking/IStakingService.sol +160 -0
  453. package/contracts/staking/StakeManagerLib.sol +224 -0
  454. package/contracts/staking/Staking.sol +498 -0
  455. package/contracts/staking/StakingLifecycle.sol +23 -0
  456. package/contracts/staking/StakingManager.sol +52 -0
  457. package/contracts/staking/StakingReader.sol +183 -0
  458. package/contracts/staking/StakingService.sol +407 -0
  459. package/contracts/staking/StakingServiceManager.sol +44 -0
  460. package/contracts/staking/StakingStore.sol +605 -0
  461. package/contracts/staking/TargetManagerLib.sol +211 -0
  462. package/contracts/{types → type}/AddressSet.sol +1 -1
  463. package/contracts/type/Amount.sol +135 -0
  464. package/contracts/{types → type}/Blocknumber.sol +26 -3
  465. package/contracts/{types → type}/ClaimId.sol +25 -2
  466. package/contracts/{types → type}/Fee.sol +33 -24
  467. package/contracts/{types → type}/NftId.sol +15 -16
  468. package/contracts/{types → type}/NftIdSet.sol +2 -2
  469. package/contracts/type/ObjectType.sol +275 -0
  470. package/contracts/{types → type}/PayoutId.sol +33 -5
  471. package/contracts/{types → type}/Referral.sol +2 -1
  472. package/contracts/type/RequestId.sol +75 -0
  473. package/contracts/{types → type}/RiskId.sol +16 -2
  474. package/contracts/type/RoleId.sol +174 -0
  475. package/contracts/type/Seconds.sol +101 -0
  476. package/contracts/type/Selector.sol +102 -0
  477. package/contracts/{types → type}/StateId.sol +34 -4
  478. package/contracts/type/String.sol +53 -0
  479. package/contracts/{types → type}/Timestamp.sol +21 -2
  480. package/contracts/{types → type}/UFixed.sol +34 -9
  481. package/contracts/{types → type}/Version.sol +4 -2
  482. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  483. package/contracts/{shared → upgradeability}/ProxyManager.sol +92 -30
  484. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  485. package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
  486. package/package.json +8 -5
  487. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  488. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  489. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  490. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  491. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  492. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  493. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  494. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  495. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  496. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -783
  497. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  498. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  499. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -984
  500. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  501. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -261
  502. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  503. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  504. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  505. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  506. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
  507. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  508. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
  509. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  510. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  511. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  512. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  513. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -968
  514. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  515. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
  516. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  517. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1093
  518. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  519. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
  520. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  521. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -754
  522. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  523. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
  524. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  525. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1724
  526. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  527. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -801
  528. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  529. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  530. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  531. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -409
  532. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  533. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  534. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  535. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  536. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  537. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1021
  538. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  539. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
  540. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  541. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -816
  542. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  543. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -653
  544. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  545. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
  546. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  547. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
  548. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  549. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  550. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  551. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
  552. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  553. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  554. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  555. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  556. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  557. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  558. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  559. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  560. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  561. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  562. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  563. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  564. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  565. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  566. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  567. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  568. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  569. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -521
  570. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  571. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  572. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  573. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  574. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  575. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  576. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  577. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  578. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  579. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  580. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  581. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  582. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  583. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  584. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  585. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  586. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  587. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  588. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  589. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  590. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  591. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  592. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  593. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  594. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  595. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  596. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  597. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  598. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  599. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  600. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  601. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  602. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  603. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  604. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  605. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  606. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  607. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  608. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  609. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  610. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  611. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  612. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  613. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  614. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  615. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  616. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  617. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  618. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  619. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  620. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  621. package/contracts/components/Component.sol +0 -241
  622. package/contracts/components/IComponent.sol +0 -74
  623. package/contracts/components/IDistributionComponent.sol +0 -71
  624. package/contracts/components/IPoolComponent.sol +0 -113
  625. package/contracts/components/IProductComponent.sol +0 -40
  626. package/contracts/components/Pool.sol +0 -299
  627. package/contracts/components/Product.sol +0 -293
  628. package/contracts/instance/InstanceAccessManager.sol +0 -297
  629. package/contracts/instance/base/ComponentService.sol +0 -134
  630. package/contracts/instance/base/KeyValueStore.sol +0 -175
  631. package/contracts/instance/base/Lifecycle.sol +0 -109
  632. package/contracts/instance/module/ISetup.sol +0 -33
  633. package/contracts/instance/module/ITreasury.sol +0 -23
  634. package/contracts/instance/service/ApplicationService.sol +0 -350
  635. package/contracts/instance/service/BundleService.sol +0 -336
  636. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  637. package/contracts/instance/service/ClaimService.sol +0 -151
  638. package/contracts/instance/service/DistributionService.sol +0 -450
  639. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  640. package/contracts/instance/service/IBundleService.sol +0 -62
  641. package/contracts/instance/service/IClaimService.sol +0 -61
  642. package/contracts/instance/service/IPolicyService.sol +0 -72
  643. package/contracts/instance/service/IPoolService.sol +0 -35
  644. package/contracts/instance/service/IProductService.sol +0 -40
  645. package/contracts/instance/service/PolicyService.sol +0 -403
  646. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  647. package/contracts/instance/service/PoolService.sol +0 -163
  648. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  649. package/contracts/instance/service/ProductService.sol +0 -233
  650. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  651. package/contracts/registry/RegistryAccessManager.sol +0 -216
  652. package/contracts/registry/ReleaseManager.sol +0 -322
  653. package/contracts/shared/ContractDeployerLib.sol +0 -72
  654. package/contracts/test/TestFee.sol +0 -25
  655. package/contracts/test/TestRegisterable.sol +0 -18
  656. package/contracts/test/TestRoleId.sol +0 -14
  657. package/contracts/test/TestService.sol +0 -25
  658. package/contracts/test/TestToken.sol +0 -26
  659. package/contracts/test/TestVersion.sol +0 -44
  660. package/contracts/test/TestVersionable.sol +0 -17
  661. package/contracts/types/ChainId.sol +0 -38
  662. package/contracts/types/NumberId.sol +0 -52
  663. package/contracts/types/ObjectType.sol +0 -157
  664. package/contracts/types/RoleId.sol +0 -95
  665. package/contracts/types/Seconds.sol +0 -54
  666. /package/contracts/{types → type}/DistributorType.sol +0 -0
  667. /package/contracts/{types → type}/Key32.sol +0 -0
@@ -0,0 +1,1573 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ComponentService",
4
+ "sourceName": "contracts/shared/ComponentService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "component",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorComponentServiceAlreadyRegistered",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "component",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorComponentServiceComponentLocked",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "component",
71
+ "type": "address"
72
+ },
73
+ {
74
+ "internalType": "ObjectType",
75
+ "name": "expectedType",
76
+ "type": "uint8"
77
+ },
78
+ {
79
+ "internalType": "ObjectType",
80
+ "name": "foundType",
81
+ "type": "uint8"
82
+ }
83
+ ],
84
+ "name": "ErrorComponentServiceComponentTypeInvalid",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "NftId",
91
+ "name": "instanceNftId",
92
+ "type": "uint96"
93
+ },
94
+ {
95
+ "internalType": "RoleId",
96
+ "name": "requiredRole",
97
+ "type": "uint64"
98
+ },
99
+ {
100
+ "internalType": "address",
101
+ "name": "sender",
102
+ "type": "address"
103
+ }
104
+ ],
105
+ "name": "ErrorComponentServiceExpectedRoleMissing",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "address",
112
+ "name": "component",
113
+ "type": "address"
114
+ },
115
+ {
116
+ "internalType": "ObjectType",
117
+ "name": "requiredType",
118
+ "type": "uint8"
119
+ },
120
+ {
121
+ "internalType": "ObjectType",
122
+ "name": "componentType",
123
+ "type": "uint8"
124
+ }
125
+ ],
126
+ "name": "ErrorComponentServiceInvalidType",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [],
131
+ "name": "ErrorComponentServiceNewWalletAddressZero",
132
+ "type": "error"
133
+ },
134
+ {
135
+ "inputs": [
136
+ {
137
+ "internalType": "address",
138
+ "name": "component",
139
+ "type": "address"
140
+ }
141
+ ],
142
+ "name": "ErrorComponentServiceNotComponent",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "address",
149
+ "name": "component",
150
+ "type": "address"
151
+ },
152
+ {
153
+ "internalType": "address",
154
+ "name": "initialOwner",
155
+ "type": "address"
156
+ },
157
+ {
158
+ "internalType": "address",
159
+ "name": "sender",
160
+ "type": "address"
161
+ }
162
+ ],
163
+ "name": "ErrorComponentServiceSenderNotOwner",
164
+ "type": "error"
165
+ },
166
+ {
167
+ "inputs": [
168
+ {
169
+ "internalType": "address",
170
+ "name": "sender",
171
+ "type": "address"
172
+ }
173
+ ],
174
+ "name": "ErrorComponentServiceSenderNotService",
175
+ "type": "error"
176
+ },
177
+ {
178
+ "inputs": [],
179
+ "name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
180
+ "type": "error"
181
+ },
182
+ {
183
+ "inputs": [],
184
+ "name": "ErrorComponentServiceWalletAddressZero",
185
+ "type": "error"
186
+ },
187
+ {
188
+ "inputs": [
189
+ {
190
+ "internalType": "address",
191
+ "name": "wallet",
192
+ "type": "address"
193
+ },
194
+ {
195
+ "internalType": "address",
196
+ "name": "spender",
197
+ "type": "address"
198
+ },
199
+ {
200
+ "internalType": "uint256",
201
+ "name": "allowance",
202
+ "type": "uint256"
203
+ },
204
+ {
205
+ "internalType": "uint256",
206
+ "name": "amount",
207
+ "type": "uint256"
208
+ }
209
+ ],
210
+ "name": "ErrorComponentServiceWalletAllowanceTooSmall",
211
+ "type": "error"
212
+ },
213
+ {
214
+ "inputs": [
215
+ {
216
+ "internalType": "Amount",
217
+ "name": "withdrawnAmount",
218
+ "type": "uint96"
219
+ },
220
+ {
221
+ "internalType": "Amount",
222
+ "name": "withdrawLimit",
223
+ "type": "uint96"
224
+ }
225
+ ],
226
+ "name": "ErrorComponentServiceWithdrawAmountExceedsLimit",
227
+ "type": "error"
228
+ },
229
+ {
230
+ "inputs": [],
231
+ "name": "ErrorComponentServiceWithdrawAmountIsZero",
232
+ "type": "error"
233
+ },
234
+ {
235
+ "inputs": [
236
+ {
237
+ "internalType": "NftId",
238
+ "name": "componentNftId",
239
+ "type": "uint96"
240
+ }
241
+ ],
242
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
243
+ "type": "error"
244
+ },
245
+ {
246
+ "inputs": [
247
+ {
248
+ "internalType": "NftId",
249
+ "name": "componentNftId",
250
+ "type": "uint96"
251
+ },
252
+ {
253
+ "internalType": "ObjectType",
254
+ "name": "expectedType",
255
+ "type": "uint8"
256
+ },
257
+ {
258
+ "internalType": "ObjectType",
259
+ "name": "actualType",
260
+ "type": "uint8"
261
+ }
262
+ ],
263
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
264
+ "type": "error"
265
+ },
266
+ {
267
+ "inputs": [
268
+ {
269
+ "internalType": "NftId",
270
+ "name": "nftId",
271
+ "type": "uint96"
272
+ }
273
+ ],
274
+ "name": "ErrorNftOwnableAlreadyLinked",
275
+ "type": "error"
276
+ },
277
+ {
278
+ "inputs": [
279
+ {
280
+ "internalType": "address",
281
+ "name": "contractAddress",
282
+ "type": "address"
283
+ }
284
+ ],
285
+ "name": "ErrorNftOwnableContractNotRegistered",
286
+ "type": "error"
287
+ },
288
+ {
289
+ "inputs": [],
290
+ "name": "ErrorNftOwnableInitialOwnerZero",
291
+ "type": "error"
292
+ },
293
+ {
294
+ "inputs": [
295
+ {
296
+ "internalType": "address",
297
+ "name": "account",
298
+ "type": "address"
299
+ }
300
+ ],
301
+ "name": "ErrorNftOwnableNotOwner",
302
+ "type": "error"
303
+ },
304
+ {
305
+ "inputs": [
306
+ {
307
+ "internalType": "address",
308
+ "name": "registryAddress",
309
+ "type": "address"
310
+ }
311
+ ],
312
+ "name": "ErrorNotRegistry",
313
+ "type": "error"
314
+ },
315
+ {
316
+ "inputs": [],
317
+ "name": "ErrorServiceNotImplemented",
318
+ "type": "error"
319
+ },
320
+ {
321
+ "inputs": [],
322
+ "name": "InvalidInitialization",
323
+ "type": "error"
324
+ },
325
+ {
326
+ "inputs": [],
327
+ "name": "NotInitializing",
328
+ "type": "error"
329
+ },
330
+ {
331
+ "inputs": [],
332
+ "name": "ReentrancyGuardReentrantCall",
333
+ "type": "error"
334
+ },
335
+ {
336
+ "anonymous": false,
337
+ "inputs": [
338
+ {
339
+ "indexed": false,
340
+ "internalType": "address",
341
+ "name": "authority",
342
+ "type": "address"
343
+ }
344
+ ],
345
+ "name": "AuthorityUpdated",
346
+ "type": "event"
347
+ },
348
+ {
349
+ "anonymous": false,
350
+ "inputs": [
351
+ {
352
+ "indexed": false,
353
+ "internalType": "uint64",
354
+ "name": "version",
355
+ "type": "uint64"
356
+ }
357
+ ],
358
+ "name": "Initialized",
359
+ "type": "event"
360
+ },
361
+ {
362
+ "anonymous": false,
363
+ "inputs": [
364
+ {
365
+ "indexed": false,
366
+ "internalType": "NftId",
367
+ "name": "componentNftId",
368
+ "type": "uint96"
369
+ },
370
+ {
371
+ "indexed": false,
372
+ "internalType": "address",
373
+ "name": "recipient",
374
+ "type": "address"
375
+ },
376
+ {
377
+ "indexed": false,
378
+ "internalType": "address",
379
+ "name": "token",
380
+ "type": "address"
381
+ },
382
+ {
383
+ "indexed": false,
384
+ "internalType": "Amount",
385
+ "name": "withdrawnAmount",
386
+ "type": "uint96"
387
+ }
388
+ ],
389
+ "name": "LogComponentServiceComponentFeesWithdrawn",
390
+ "type": "event"
391
+ },
392
+ {
393
+ "anonymous": false,
394
+ "inputs": [
395
+ {
396
+ "indexed": false,
397
+ "internalType": "NftId",
398
+ "name": "distributionNftId",
399
+ "type": "uint96"
400
+ }
401
+ ],
402
+ "name": "LogComponentServiceDistributionFeesUpdated",
403
+ "type": "event"
404
+ },
405
+ {
406
+ "anonymous": false,
407
+ "inputs": [
408
+ {
409
+ "indexed": false,
410
+ "internalType": "NftId",
411
+ "name": "poolNftId",
412
+ "type": "uint96"
413
+ }
414
+ ],
415
+ "name": "LogComponentServicePoolFeesUpdated",
416
+ "type": "event"
417
+ },
418
+ {
419
+ "anonymous": false,
420
+ "inputs": [
421
+ {
422
+ "indexed": false,
423
+ "internalType": "NftId",
424
+ "name": "productNftId",
425
+ "type": "uint96"
426
+ }
427
+ ],
428
+ "name": "LogComponentServiceProductFeesUpdated",
429
+ "type": "event"
430
+ },
431
+ {
432
+ "anonymous": false,
433
+ "inputs": [
434
+ {
435
+ "indexed": false,
436
+ "internalType": "NftId",
437
+ "name": "nftId",
438
+ "type": "uint96"
439
+ },
440
+ {
441
+ "indexed": false,
442
+ "internalType": "string",
443
+ "name": "feeName",
444
+ "type": "string"
445
+ },
446
+ {
447
+ "indexed": false,
448
+ "internalType": "UFixed",
449
+ "name": "previousFractionalFee",
450
+ "type": "uint256"
451
+ },
452
+ {
453
+ "indexed": false,
454
+ "internalType": "uint256",
455
+ "name": "previousFixedFee",
456
+ "type": "uint256"
457
+ },
458
+ {
459
+ "indexed": false,
460
+ "internalType": "UFixed",
461
+ "name": "newFractionalFee",
462
+ "type": "uint256"
463
+ },
464
+ {
465
+ "indexed": false,
466
+ "internalType": "uint256",
467
+ "name": "newFixedFee",
468
+ "type": "uint256"
469
+ }
470
+ ],
471
+ "name": "LogComponentServiceUpdateFee",
472
+ "type": "event"
473
+ },
474
+ {
475
+ "anonymous": false,
476
+ "inputs": [
477
+ {
478
+ "indexed": false,
479
+ "internalType": "NftId",
480
+ "name": "componentNftId",
481
+ "type": "uint96"
482
+ },
483
+ {
484
+ "indexed": false,
485
+ "internalType": "address",
486
+ "name": "currentWallet",
487
+ "type": "address"
488
+ },
489
+ {
490
+ "indexed": false,
491
+ "internalType": "address",
492
+ "name": "newWallet",
493
+ "type": "address"
494
+ }
495
+ ],
496
+ "name": "LogComponentServiceWalletAddressChanged",
497
+ "type": "event"
498
+ },
499
+ {
500
+ "inputs": [],
501
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
502
+ "outputs": [
503
+ {
504
+ "internalType": "bytes32",
505
+ "name": "",
506
+ "type": "bytes32"
507
+ }
508
+ ],
509
+ "stateMutability": "view",
510
+ "type": "function"
511
+ },
512
+ {
513
+ "inputs": [],
514
+ "name": "REGISTERABLE_LOCATION_V1",
515
+ "outputs": [
516
+ {
517
+ "internalType": "bytes32",
518
+ "name": "",
519
+ "type": "bytes32"
520
+ }
521
+ ],
522
+ "stateMutability": "view",
523
+ "type": "function"
524
+ },
525
+ {
526
+ "inputs": [],
527
+ "name": "authority",
528
+ "outputs": [
529
+ {
530
+ "internalType": "address",
531
+ "name": "",
532
+ "type": "address"
533
+ }
534
+ ],
535
+ "stateMutability": "view",
536
+ "type": "function"
537
+ },
538
+ {
539
+ "inputs": [
540
+ {
541
+ "internalType": "contract InstanceStore",
542
+ "name": "instanceStore",
543
+ "type": "address"
544
+ },
545
+ {
546
+ "internalType": "NftId",
547
+ "name": "bundleNftId",
548
+ "type": "uint96"
549
+ },
550
+ {
551
+ "internalType": "Amount",
552
+ "name": "amount",
553
+ "type": "uint96"
554
+ },
555
+ {
556
+ "internalType": "Amount",
557
+ "name": "feeAmount",
558
+ "type": "uint96"
559
+ }
560
+ ],
561
+ "name": "decreaseBundleBalance",
562
+ "outputs": [],
563
+ "stateMutability": "nonpayable",
564
+ "type": "function"
565
+ },
566
+ {
567
+ "inputs": [
568
+ {
569
+ "internalType": "contract InstanceStore",
570
+ "name": "instanceStore",
571
+ "type": "address"
572
+ },
573
+ {
574
+ "internalType": "NftId",
575
+ "name": "distributionNftId",
576
+ "type": "uint96"
577
+ },
578
+ {
579
+ "internalType": "Amount",
580
+ "name": "amount",
581
+ "type": "uint96"
582
+ },
583
+ {
584
+ "internalType": "Amount",
585
+ "name": "feeAmount",
586
+ "type": "uint96"
587
+ }
588
+ ],
589
+ "name": "decreaseDistributionBalance",
590
+ "outputs": [],
591
+ "stateMutability": "nonpayable",
592
+ "type": "function"
593
+ },
594
+ {
595
+ "inputs": [
596
+ {
597
+ "internalType": "contract InstanceStore",
598
+ "name": "instanceStore",
599
+ "type": "address"
600
+ },
601
+ {
602
+ "internalType": "NftId",
603
+ "name": "distributorNftId",
604
+ "type": "uint96"
605
+ },
606
+ {
607
+ "internalType": "Amount",
608
+ "name": "amount",
609
+ "type": "uint96"
610
+ },
611
+ {
612
+ "internalType": "Amount",
613
+ "name": "feeAmount",
614
+ "type": "uint96"
615
+ }
616
+ ],
617
+ "name": "decreaseDistributorBalance",
618
+ "outputs": [],
619
+ "stateMutability": "nonpayable",
620
+ "type": "function"
621
+ },
622
+ {
623
+ "inputs": [
624
+ {
625
+ "internalType": "contract InstanceStore",
626
+ "name": "instanceStore",
627
+ "type": "address"
628
+ },
629
+ {
630
+ "internalType": "NftId",
631
+ "name": "poolNftId",
632
+ "type": "uint96"
633
+ },
634
+ {
635
+ "internalType": "Amount",
636
+ "name": "amount",
637
+ "type": "uint96"
638
+ },
639
+ {
640
+ "internalType": "Amount",
641
+ "name": "feeAmount",
642
+ "type": "uint96"
643
+ }
644
+ ],
645
+ "name": "decreasePoolBalance",
646
+ "outputs": [],
647
+ "stateMutability": "nonpayable",
648
+ "type": "function"
649
+ },
650
+ {
651
+ "inputs": [
652
+ {
653
+ "internalType": "contract InstanceStore",
654
+ "name": "instanceStore",
655
+ "type": "address"
656
+ },
657
+ {
658
+ "internalType": "NftId",
659
+ "name": "productNftId",
660
+ "type": "uint96"
661
+ },
662
+ {
663
+ "internalType": "Amount",
664
+ "name": "feeAmount",
665
+ "type": "uint96"
666
+ }
667
+ ],
668
+ "name": "decreaseProductFees",
669
+ "outputs": [],
670
+ "stateMutability": "nonpayable",
671
+ "type": "function"
672
+ },
673
+ {
674
+ "inputs": [],
675
+ "name": "getDomain",
676
+ "outputs": [
677
+ {
678
+ "internalType": "ObjectType",
679
+ "name": "serviceDomain",
680
+ "type": "uint8"
681
+ }
682
+ ],
683
+ "stateMutability": "pure",
684
+ "type": "function"
685
+ },
686
+ {
687
+ "inputs": [],
688
+ "name": "getInitialInfo",
689
+ "outputs": [
690
+ {
691
+ "components": [
692
+ {
693
+ "internalType": "NftId",
694
+ "name": "nftId",
695
+ "type": "uint96"
696
+ },
697
+ {
698
+ "internalType": "NftId",
699
+ "name": "parentNftId",
700
+ "type": "uint96"
701
+ },
702
+ {
703
+ "internalType": "ObjectType",
704
+ "name": "objectType",
705
+ "type": "uint8"
706
+ },
707
+ {
708
+ "internalType": "bool",
709
+ "name": "isInterceptor",
710
+ "type": "bool"
711
+ },
712
+ {
713
+ "internalType": "address",
714
+ "name": "objectAddress",
715
+ "type": "address"
716
+ },
717
+ {
718
+ "internalType": "address",
719
+ "name": "initialOwner",
720
+ "type": "address"
721
+ },
722
+ {
723
+ "internalType": "bytes",
724
+ "name": "data",
725
+ "type": "bytes"
726
+ }
727
+ ],
728
+ "internalType": "struct IRegistry.ObjectInfo",
729
+ "name": "info",
730
+ "type": "tuple"
731
+ }
732
+ ],
733
+ "stateMutability": "view",
734
+ "type": "function"
735
+ },
736
+ {
737
+ "inputs": [],
738
+ "name": "getNftId",
739
+ "outputs": [
740
+ {
741
+ "internalType": "NftId",
742
+ "name": "",
743
+ "type": "uint96"
744
+ }
745
+ ],
746
+ "stateMutability": "view",
747
+ "type": "function"
748
+ },
749
+ {
750
+ "inputs": [],
751
+ "name": "getOwner",
752
+ "outputs": [
753
+ {
754
+ "internalType": "address",
755
+ "name": "",
756
+ "type": "address"
757
+ }
758
+ ],
759
+ "stateMutability": "view",
760
+ "type": "function"
761
+ },
762
+ {
763
+ "inputs": [],
764
+ "name": "getRegistry",
765
+ "outputs": [
766
+ {
767
+ "internalType": "contract IRegistry",
768
+ "name": "",
769
+ "type": "address"
770
+ }
771
+ ],
772
+ "stateMutability": "view",
773
+ "type": "function"
774
+ },
775
+ {
776
+ "inputs": [],
777
+ "name": "getRoleId",
778
+ "outputs": [
779
+ {
780
+ "internalType": "RoleId",
781
+ "name": "serviceRoleId",
782
+ "type": "uint64"
783
+ }
784
+ ],
785
+ "stateMutability": "pure",
786
+ "type": "function"
787
+ },
788
+ {
789
+ "inputs": [],
790
+ "name": "getVersion",
791
+ "outputs": [
792
+ {
793
+ "internalType": "Version",
794
+ "name": "",
795
+ "type": "uint24"
796
+ }
797
+ ],
798
+ "stateMutability": "pure",
799
+ "type": "function"
800
+ },
801
+ {
802
+ "inputs": [
803
+ {
804
+ "internalType": "contract InstanceStore",
805
+ "name": "instanceStore",
806
+ "type": "address"
807
+ },
808
+ {
809
+ "internalType": "NftId",
810
+ "name": "bundleNftId",
811
+ "type": "uint96"
812
+ },
813
+ {
814
+ "internalType": "Amount",
815
+ "name": "amount",
816
+ "type": "uint96"
817
+ },
818
+ {
819
+ "internalType": "Amount",
820
+ "name": "feeAmount",
821
+ "type": "uint96"
822
+ }
823
+ ],
824
+ "name": "increaseBundleBalance",
825
+ "outputs": [],
826
+ "stateMutability": "nonpayable",
827
+ "type": "function"
828
+ },
829
+ {
830
+ "inputs": [
831
+ {
832
+ "internalType": "contract InstanceStore",
833
+ "name": "instanceStore",
834
+ "type": "address"
835
+ },
836
+ {
837
+ "internalType": "NftId",
838
+ "name": "distributionNftId",
839
+ "type": "uint96"
840
+ },
841
+ {
842
+ "internalType": "Amount",
843
+ "name": "amount",
844
+ "type": "uint96"
845
+ },
846
+ {
847
+ "internalType": "Amount",
848
+ "name": "feeAmount",
849
+ "type": "uint96"
850
+ }
851
+ ],
852
+ "name": "increaseDistributionBalance",
853
+ "outputs": [],
854
+ "stateMutability": "nonpayable",
855
+ "type": "function"
856
+ },
857
+ {
858
+ "inputs": [
859
+ {
860
+ "internalType": "contract InstanceStore",
861
+ "name": "instanceStore",
862
+ "type": "address"
863
+ },
864
+ {
865
+ "internalType": "NftId",
866
+ "name": "distributorNftId",
867
+ "type": "uint96"
868
+ },
869
+ {
870
+ "internalType": "Amount",
871
+ "name": "amount",
872
+ "type": "uint96"
873
+ },
874
+ {
875
+ "internalType": "Amount",
876
+ "name": "feeAmount",
877
+ "type": "uint96"
878
+ }
879
+ ],
880
+ "name": "increaseDistributorBalance",
881
+ "outputs": [],
882
+ "stateMutability": "nonpayable",
883
+ "type": "function"
884
+ },
885
+ {
886
+ "inputs": [
887
+ {
888
+ "internalType": "contract InstanceStore",
889
+ "name": "instanceStore",
890
+ "type": "address"
891
+ },
892
+ {
893
+ "internalType": "NftId",
894
+ "name": "poolNftId",
895
+ "type": "uint96"
896
+ },
897
+ {
898
+ "internalType": "Amount",
899
+ "name": "amount",
900
+ "type": "uint96"
901
+ },
902
+ {
903
+ "internalType": "Amount",
904
+ "name": "feeAmount",
905
+ "type": "uint96"
906
+ }
907
+ ],
908
+ "name": "increasePoolBalance",
909
+ "outputs": [],
910
+ "stateMutability": "nonpayable",
911
+ "type": "function"
912
+ },
913
+ {
914
+ "inputs": [
915
+ {
916
+ "internalType": "contract InstanceStore",
917
+ "name": "instanceStore",
918
+ "type": "address"
919
+ },
920
+ {
921
+ "internalType": "NftId",
922
+ "name": "productNftId",
923
+ "type": "uint96"
924
+ },
925
+ {
926
+ "internalType": "Amount",
927
+ "name": "feeAmount",
928
+ "type": "uint96"
929
+ }
930
+ ],
931
+ "name": "increaseProductFees",
932
+ "outputs": [],
933
+ "stateMutability": "nonpayable",
934
+ "type": "function"
935
+ },
936
+ {
937
+ "inputs": [
938
+ {
939
+ "internalType": "address",
940
+ "name": "activatedBy",
941
+ "type": "address"
942
+ },
943
+ {
944
+ "internalType": "bytes",
945
+ "name": "data",
946
+ "type": "bytes"
947
+ }
948
+ ],
949
+ "name": "initializeVersionable",
950
+ "outputs": [],
951
+ "stateMutability": "nonpayable",
952
+ "type": "function"
953
+ },
954
+ {
955
+ "inputs": [],
956
+ "name": "isConsumingScheduledOp",
957
+ "outputs": [
958
+ {
959
+ "internalType": "bytes4",
960
+ "name": "",
961
+ "type": "bytes4"
962
+ }
963
+ ],
964
+ "stateMutability": "view",
965
+ "type": "function"
966
+ },
967
+ {
968
+ "inputs": [],
969
+ "name": "linkToRegisteredNftId",
970
+ "outputs": [
971
+ {
972
+ "internalType": "NftId",
973
+ "name": "nftId",
974
+ "type": "uint96"
975
+ }
976
+ ],
977
+ "stateMutability": "nonpayable",
978
+ "type": "function"
979
+ },
980
+ {
981
+ "inputs": [],
982
+ "name": "lock",
983
+ "outputs": [],
984
+ "stateMutability": "nonpayable",
985
+ "type": "function"
986
+ },
987
+ {
988
+ "inputs": [],
989
+ "name": "registerDistribution",
990
+ "outputs": [],
991
+ "stateMutability": "nonpayable",
992
+ "type": "function"
993
+ },
994
+ {
995
+ "inputs": [],
996
+ "name": "registerOracle",
997
+ "outputs": [],
998
+ "stateMutability": "nonpayable",
999
+ "type": "function"
1000
+ },
1001
+ {
1002
+ "inputs": [],
1003
+ "name": "registerPool",
1004
+ "outputs": [],
1005
+ "stateMutability": "nonpayable",
1006
+ "type": "function"
1007
+ },
1008
+ {
1009
+ "inputs": [],
1010
+ "name": "registerProduct",
1011
+ "outputs": [],
1012
+ "stateMutability": "nonpayable",
1013
+ "type": "function"
1014
+ },
1015
+ {
1016
+ "inputs": [
1017
+ {
1018
+ "internalType": "address",
1019
+ "name": "newAuthority",
1020
+ "type": "address"
1021
+ }
1022
+ ],
1023
+ "name": "setAuthority",
1024
+ "outputs": [],
1025
+ "stateMutability": "nonpayable",
1026
+ "type": "function"
1027
+ },
1028
+ {
1029
+ "inputs": [
1030
+ {
1031
+ "components": [
1032
+ {
1033
+ "internalType": "UFixed",
1034
+ "name": "fractionalFee",
1035
+ "type": "uint256"
1036
+ },
1037
+ {
1038
+ "internalType": "uint256",
1039
+ "name": "fixedFee",
1040
+ "type": "uint256"
1041
+ }
1042
+ ],
1043
+ "internalType": "struct Fee",
1044
+ "name": "distributionFee",
1045
+ "type": "tuple"
1046
+ },
1047
+ {
1048
+ "components": [
1049
+ {
1050
+ "internalType": "UFixed",
1051
+ "name": "fractionalFee",
1052
+ "type": "uint256"
1053
+ },
1054
+ {
1055
+ "internalType": "uint256",
1056
+ "name": "fixedFee",
1057
+ "type": "uint256"
1058
+ }
1059
+ ],
1060
+ "internalType": "struct Fee",
1061
+ "name": "minDistributionOwnerFee",
1062
+ "type": "tuple"
1063
+ }
1064
+ ],
1065
+ "name": "setDistributionFees",
1066
+ "outputs": [],
1067
+ "stateMutability": "nonpayable",
1068
+ "type": "function"
1069
+ },
1070
+ {
1071
+ "inputs": [
1072
+ {
1073
+ "components": [
1074
+ {
1075
+ "internalType": "UFixed",
1076
+ "name": "fractionalFee",
1077
+ "type": "uint256"
1078
+ },
1079
+ {
1080
+ "internalType": "uint256",
1081
+ "name": "fixedFee",
1082
+ "type": "uint256"
1083
+ }
1084
+ ],
1085
+ "internalType": "struct Fee",
1086
+ "name": "poolFee",
1087
+ "type": "tuple"
1088
+ },
1089
+ {
1090
+ "components": [
1091
+ {
1092
+ "internalType": "UFixed",
1093
+ "name": "fractionalFee",
1094
+ "type": "uint256"
1095
+ },
1096
+ {
1097
+ "internalType": "uint256",
1098
+ "name": "fixedFee",
1099
+ "type": "uint256"
1100
+ }
1101
+ ],
1102
+ "internalType": "struct Fee",
1103
+ "name": "stakingFee",
1104
+ "type": "tuple"
1105
+ },
1106
+ {
1107
+ "components": [
1108
+ {
1109
+ "internalType": "UFixed",
1110
+ "name": "fractionalFee",
1111
+ "type": "uint256"
1112
+ },
1113
+ {
1114
+ "internalType": "uint256",
1115
+ "name": "fixedFee",
1116
+ "type": "uint256"
1117
+ }
1118
+ ],
1119
+ "internalType": "struct Fee",
1120
+ "name": "performanceFee",
1121
+ "type": "tuple"
1122
+ }
1123
+ ],
1124
+ "name": "setPoolFees",
1125
+ "outputs": [],
1126
+ "stateMutability": "nonpayable",
1127
+ "type": "function"
1128
+ },
1129
+ {
1130
+ "inputs": [
1131
+ {
1132
+ "components": [
1133
+ {
1134
+ "internalType": "UFixed",
1135
+ "name": "fractionalFee",
1136
+ "type": "uint256"
1137
+ },
1138
+ {
1139
+ "internalType": "uint256",
1140
+ "name": "fixedFee",
1141
+ "type": "uint256"
1142
+ }
1143
+ ],
1144
+ "internalType": "struct Fee",
1145
+ "name": "productFee",
1146
+ "type": "tuple"
1147
+ },
1148
+ {
1149
+ "components": [
1150
+ {
1151
+ "internalType": "UFixed",
1152
+ "name": "fractionalFee",
1153
+ "type": "uint256"
1154
+ },
1155
+ {
1156
+ "internalType": "uint256",
1157
+ "name": "fixedFee",
1158
+ "type": "uint256"
1159
+ }
1160
+ ],
1161
+ "internalType": "struct Fee",
1162
+ "name": "processingFee",
1163
+ "type": "tuple"
1164
+ }
1165
+ ],
1166
+ "name": "setProductFees",
1167
+ "outputs": [],
1168
+ "stateMutability": "nonpayable",
1169
+ "type": "function"
1170
+ },
1171
+ {
1172
+ "inputs": [
1173
+ {
1174
+ "internalType": "address",
1175
+ "name": "newWallet",
1176
+ "type": "address"
1177
+ }
1178
+ ],
1179
+ "name": "setWallet",
1180
+ "outputs": [],
1181
+ "stateMutability": "nonpayable",
1182
+ "type": "function"
1183
+ },
1184
+ {
1185
+ "inputs": [
1186
+ {
1187
+ "internalType": "bytes4",
1188
+ "name": "interfaceId",
1189
+ "type": "bytes4"
1190
+ }
1191
+ ],
1192
+ "name": "supportsInterface",
1193
+ "outputs": [
1194
+ {
1195
+ "internalType": "bool",
1196
+ "name": "",
1197
+ "type": "bool"
1198
+ }
1199
+ ],
1200
+ "stateMutability": "view",
1201
+ "type": "function"
1202
+ },
1203
+ {
1204
+ "inputs": [],
1205
+ "name": "unlock",
1206
+ "outputs": [],
1207
+ "stateMutability": "nonpayable",
1208
+ "type": "function"
1209
+ },
1210
+ {
1211
+ "inputs": [
1212
+ {
1213
+ "internalType": "bytes",
1214
+ "name": "data",
1215
+ "type": "bytes"
1216
+ }
1217
+ ],
1218
+ "name": "upgradeVersionable",
1219
+ "outputs": [],
1220
+ "stateMutability": "nonpayable",
1221
+ "type": "function"
1222
+ },
1223
+ {
1224
+ "inputs": [
1225
+ {
1226
+ "internalType": "Amount",
1227
+ "name": "amount",
1228
+ "type": "uint96"
1229
+ }
1230
+ ],
1231
+ "name": "withdrawFees",
1232
+ "outputs": [
1233
+ {
1234
+ "internalType": "Amount",
1235
+ "name": "withdrawnAmount",
1236
+ "type": "uint96"
1237
+ }
1238
+ ],
1239
+ "stateMutability": "nonpayable",
1240
+ "type": "function"
1241
+ }
1242
+ ],
1243
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b614fe3806100d65f395ff3fe608060405234801561000f575f80fd5b506004361061021e575f3560e01c80636e1728071161012a578063be495be5116100b4578063d7740ee111610079578063d7740ee114610497578063deaa59df1461049f578063dfd92f8a146104b2578063e618053f14610294578063f83d08ba146102a7575f80fd5b8063be495be51461045f578063bf7e214f14610467578063c142a30314610484578063d165cb6414610311578063d56cd3d514610311575f80fd5b806389fad8a2116100fa57806389fad8a2146102945780638fb360371461041b578063a69df4b5146102a7578063ada9652e1461043c578063b68d180914610450575f80fd5b80636e172807146103ed57806374933c2f146103115780637a9e5e4b14610400578063893d20e814610413575f80fd5b8063339d2590116101ab578063644c45e01161017b578063644c45e01461038a578063661017811461029457806367438c50146103a757806367ba1c10146103ba5780636c741e78146103cd575f80fd5b8063339d25901461033757806337a897ee1461033f57806349bb9e4b146103525780635ab1bd5314610365575f80fd5b8063138461e0116101f1578063138461e0146102a95780631c6b2190146102c95780631eff4b22146102dc57806325e451d314610311578063329d6e7414610324575f80fd5b806301ffc9a7146102225780630d8e6e2c146102635780630fec111c1461027f57806311a1467714610294575b5f80fd5b61024e610230366004614240565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61026b6104ba565b60405162ffffff909116815260200161025a565b610287610541565b60405161025a9190614295565b6102a76102a2366004614351565b6106cd565b005b6102b16106e0565b6040516001600160601b03909116815260200161025a565b6102b16102d73660046143aa565b6106ea565b6103037f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161025a565b6102a761031f366004614351565b610e1a565b6102a7610332366004614510565b610e28565b6102a7610f72565b6102a761034d366004614570565b610f90565b6102a761036036600461459a565b6112ad565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161025a565b5f80516020614f4e833981519152546001600160601b03166102b1565b6102a76103b53660046145e6565b61139b565b6102a76103c8366004614570565b611418565b6103d5611783565b6040516001600160401b03909116815260200161025a565b6102a76103fb3660046145e6565b61187a565b6102a761040e36600461462e565b6118c7565b610372611963565b610423611a94565b6040516001600160e01b0319909116815260200161025a565b6103035f80516020614f4e83398151915281565b604051600b815260200161025a565b6102a7611acb565b5f80516020614f6e833981519152546001600160a01b0316610372565b6102a7610492366004614649565b611ada565b6102a7611e75565b6102a76104ad36600461462e565b611f41565b6102a76121e3565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610518573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061053c919061468c565b905090565b6105496140f9565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e391906146be565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161062b611963565b6001600160a01b03168152602001826001018054610648906146d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610674906146d9565b80156106bf5780601f10610696576101008083540402835291602001916106bf565b820191905f5260205f20905b8154815290600101906020018083116106a257829003601f168201915b505050505081525091505090565b6106da5f858585856122e1565b50505050565b5f61053c306126db565b5f80806106f7600b6128d4565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610739573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061075d9190614711565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156107a9573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107d09190810190614786565b90505f81608001519050859450846001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561084a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086e91906146be565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af41580156108b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108db919061486d565b156109b857826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561091c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109409190614711565b604051630232ca4960e01b81526001600160601b03861660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa15801561098d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b191906146be565b9450610bdf565b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610a0e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a32919061486d565b15610a505760405163b079ec2b60e01b815260040160405180910390fd5b5f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab19190614711565b604051630232ca4960e01b81526001600160601b03871660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610afe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b2291906146be565b604051632601631360e21b81526001600160601b0388811660048301528216602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af4158015610b83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba7919061486d565b15610bdd5760405163151dbb3f60e01b81526001600160601b038088166004830152821660248201526044015b60405180910390fd5b505b610cb55f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c1f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c439190614711565b8673__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c8b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610caf91906146be565b896122e1565b5f610cc86001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610d15573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d399190614711565b60408481015181516001600160601b0389811682526001600160a01b03858116602084015290921681840152908916606082015290519192507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde9919081900360800190a1606083015160405163153c361360e21b81526001600160a01b03848116600483015283811660248301526001600160601b0389166044830152909116906354f0d84c906064015f604051808303815f87803b158015610dfa575f80fd5b505af1158015610e0c573d5f803e3d5ffd5b505050505050505050919050565b6106da6001858585856122e1565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610e4a6104ba565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610e88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eac919061489a565b5f80516020614f8e8339815191528054600160401b900460ff1680610ede575080546001600160401b03808416911610155b15610efc5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f2683612970565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b335f80610f8883600d610f83612978565b6129b2565b505050505050565b5f80610f9c600e6128d4565b92505091505f8061100c836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fe2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110069190614711565b85612ef2565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b815260040161104e9291906148b5565b602060405180830381865af4158015611069573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061108d919061486d565b6110d3576110c8836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a612fec565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161110f91908a906004016148b5565b602060405180830381865af415801561112a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061114e919061486d565b6111a257611197836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a0015189612fec565b5060a0810185905260015b80156112a457836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112089190614711565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b8152600401611238939291906149b3565b5f604051808303815f87803b15801561124f575f80fd5b505af1158015611261573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b5f80516020614f8e8339815191528054600160401b810460ff1615906001600160401b03165f811580156112de5750825b90505f826001600160401b031660011480156112f95750303b155b905081158015611307575080155b156113255760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561134f57845460ff60401b1916600160401b1785555b611359878761303f565b83156112a457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161129b565b6114136001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156113e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061140d91906146be565b856122e1565b505050565b5f80611424600c6128d4565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611466573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061148a9190614711565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa1580156114d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fc9190614a12565b90505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b815260040161153c9291906148b5565b602060405180830381865af4158015611557573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061157b919061486d565b6115bc576115b1846040518060400160405280600a81526020016950726f6475637446656560b01b815250846040015189612fec565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916115f8919089906004016148b5565b602060405180830381865af4158015611613573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611637919061486d565b61167b57611670846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846060015188612fec565b506060810184905260015b8015610f8857826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116e19190614711565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b8152600401611711939291906149b3565b5f604051808303815f87803b158015611728575f80fd5b505af115801561173a573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a1505050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156117ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118129190614aec565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015611856573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061053c919061489a565b6114135f848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156113e9573d5f803e3d5ffd5b336118e65f80516020614f6e833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146119215760405162d1953b60e31b81526001600160a01b0382166004820152602401610bd4565b816001600160a01b03163b5f03611956576040516361798f2f60e11b81526001600160a01b0383166004820152602401610bd4565b61195f826131ae565b5050565b5f805f80516020614f4e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156119cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f3919061486d565b15611a7e576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611a54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a789190614711565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020614f6e83398151915280545f9190600160a01b900460ff16611abb575f611a78565b638fb3603760e01b91505090565b565b336106da81600e610f8361320e565b5f80611ae6600f6128d4565b92505091505f80611b2c836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fe2573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b8152600401611b6e9291906148b5565b602060405180830381865af4158015611b89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bad919061486d565b611beb57611be08360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b612fec565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611c2791908b906004016148b5565b602060405180830381865af4158015611c42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c66919061486d565b611ca757611c9c836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a612fec565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611ce491908a906004016148b5565b602060405180830381865af4158015611cff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d23919061486d565b611d6a57611d5e836040518060400160405280600e81526020016d506572666f726d616e636546656560901b81525084610100015189612fec565b50610100810185905260015b8015611e6b57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd09190614711565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b8152600401611e00939291906149b3565b5f604051808303815f87803b158015611e17575f80fd5b505af1158015611e29573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b335f80611e8683600f610f83613248565b9250925050816001600160a01b03166383e20e5682856001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015611ed7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611efb9190614b07565b6040518363ffffffff1660e01b8152600401611f18929190614b91565b5f604051808303815f87803b158015611f2f575f80fd5b505af11580156112a4573d5f803e3d5ffd5b5f80611f4d600b6128d4565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fb39190614711565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015611fff573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120269190810190614786565b60808101519091506001600160a01b0385166120555760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b03811661207c5760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b0316036120ae5760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612108573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061212c9190614711565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b815260040161215c93929190614c8e565b5f604051808303815f87803b158015612173575f80fd5b505af1158015612185573d5f803e3d5ffd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b335f80806121f584600c610f83613282565b9250925092505f846001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa158015612239573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061225d9190614a12565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f9061228e9085908590600401614cc2565b5f604051808303815f87803b1580156122a5575f80fd5b505af11580156122b7573d5f803e3d5ffd5b505050506122ca8484835f0151856132bc565b6122da84848360200151856132bc565b5050505050565b5f6122ec8383613423565b905085156124eb576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801561234a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061236e919061486d565b156123ed57604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303815f875af11580156123c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123eb91906146be565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612443573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612467919061486d565b156124e65760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303815f875af11580156124c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124e491906146be565b505b610f88565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612541573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612565919061486d565b156125e45760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303815f875af11580156125be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125e291906146be565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801561263a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061265e919061486d565b15610f88576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303815f875af11580156126b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a491906146be565b5f805f80516020614f4e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612747573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061276b919061486d565b156127975780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610bd4565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156127e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061280d919061486d565b6128355760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610bd4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612887573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ab91906146be565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f6128dd6140f9565b5f6128f06001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015612934573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061295891906146be565b9250612966838560016134ae565b9395909450915050565b61021e61374b565b604051637c3940bf60e01b8152600c60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf9060240161183b565b5f805f805f806129c3898989613781565b60025460405163d943342d60e01b81526001600160a01b03808516600483015260ff8e1660248301528084166044830152949750929550909350919091169063d943342d906064015f604051808303815f875af1158015612a26573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a4d9190810190614ce0565b5f01519350816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015612a8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ab391906146be565b50826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612af0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b149190614711565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b769190614711565b94505f826001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612bb4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612bdb9190810190614786565b905073__$51089c37ca0df1177a910c640c8c5f8165$__63825e72798260400151866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c5c9190614711565b6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cbb9190614711565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865af4158015612d04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d289190614711565b81606001906001600160a01b031690816001600160a01b031681525050856001600160a01b0316634846003a846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612db491906146be565b836040518363ffffffff1660e01b8152600401612dd2929190614db0565b5f604051808303815f87803b158015612de9575f80fd5b505af1158015612dfb573d5f803e3d5ffd5b5050505060035f9054906101000a90046001600160a01b03166001600160a01b0316633931d6da856001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e8291906146be565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526001600160a01b03861660248201526044015f604051808303815f87803b158015612ecf575f80fd5b505af1158015612ee1573d5f803e3d5ffd5b505050505050505093509350939050565b5f612efb614136565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c3906024015f60405180830381865afa158015612f45573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612f6c9190810190614786565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa158015612fbf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fe39190614a12565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db94613031948a948a949293909290614dd1565b60405180910390a150505050565b5f80516020614f8e8339815191528054600160401b810460ff1615906001600160401b03165f811580156130705750825b90505f826001600160401b0316600114801561308b5750303b155b905081158015613099575080155b156130b75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156130e157845460ff60401b1916600160401b1785555b5f80878060200190518101906130f79190614e17565b9150915061310682828b613b35565b6131106002613c75565b600280546001600160a01b0319166001600160a01b039290921691909117905561313a600a613c75565b600380546001600160a01b0319166001600160a01b039290921691909117905561316a636618d76960e11b613d7c565b505083156112a457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161129b565b5f80516020614f6e83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b604051637c3940bf60e01b8152600d60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf9060240161183b565b604051637c3940bf60e01b8152600e60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf9060240161183b565b604051637c3940bf60e01b8152600b60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf9060240161183b565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613312573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613336919061486d565b6106da5760405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa158015613386573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526133ad9190810190614786565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac906133ef908690859060ff90600401614c8e565b5f604051808303815f87803b158015613406575f80fd5b505af1158015613418573d5f803e3d5ffd5b505050505050505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015613483573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134a791906146be565b9392505050565b6134b66140f9565b5f806134ca6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613517573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261353e9190810190614ce0565b925060ff8516600b1461359c57604083015160ff86811691161461359757604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610bd4565b613638565b6135b783604001516135ac600c90565b60ff90811691161490565b806135cd57506135cd83604001516135ac600f90565b806135e357506135e383604001516135ac600e90565b806135f957506135f983604001516135ac600d90565b61363857604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610bd4565b6136458360200151613da8565b9150831561374257816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613689573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136ad9190614711565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa1580156136f5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613719919061486d565b1561374257604051637d71120960e11b81526001600160601b0387166004820152602401610bd4565b50935093915050565b5f80516020614f8e83398151915254600160401b900460ff16611ac957604051631afcd79f60e31b815260040160405180910390fd5b6040516301ffc9a760e01b81526376c9b41160e11b60048201525f90849082906001600160a01b038316906301ffc9a790602401602060405180830381865afa1580156137d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137f4919061486d565b61381c576040516359bff0e360e11b81526001600160a01b0387166004820152602401610bd4565b5f826001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613858573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261387f9190810190614ce0565b905061389681604001518760ff9081169116141590565b156138d6576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff80891660248301529091166044820152606401610bd4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0389811660048301529190911690635e546bee90602401602060405180830381865afa158015613928573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061394c91906146be565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156139a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139c7919061486d565b156139f0576040516322e6526160e11b81526001600160a01b0388166004820152602401610bd4565b6139fd8160200151613da8565b93508060a001519150836001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a669190614711565b60405163327e18a160e11b81526001600160a01b0384811660048301526001600160401b038816602483015291909116906364fc314290604401602060405180830381865afa158015613abb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613adf919061486d565b613b2b576020810151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03861660248201526001600160a01b0383166044820152606401610bd4565b5093509350939050565b613b3d61374b565b613b45613e38565b6001600160a01b03821615613b6257613b5d82613e48565b613bd9565b5f613b6d6002613c75565b9050613bd7816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bd29190614711565b613e48565b505b613c5583846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c3d91906146be565b60085f8560405180602001604052805f815250613e5c565b613c65634a531f3360e01b613d7c565b61141363daf9067160e01b613d7c565b5f613c886001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015613ceb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d0f9190614aec565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613d52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d769190614711565b92915050565b613d8461374b565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f613dbb6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015613e07573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613e2e9190810190614ce0565b6080015192915050565b613e4061374b565b611ac9613ef7565b613e5061374b565b613e5981613f25565b50565b613e6461374b565b613e6e8287613f36565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301611e6b8382614e93565b613eff61374b565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b613f2d61374b565b613e59816131ae565b613f3e61374b565b613f4781613fac565b613f4f6140b4565b6001600160a01b038216613f765760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020614f4e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b613fb461374b565b806001600160a01b03163b5f03613fe95760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610bd4565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632f6da6f960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015614063575060408051601f3d908101601f191682019092526140609181019061486d565b60015b61408b5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610bd4565b8061195f5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610bd4565b6140bc61374b565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040518061012001604052805f6001600160601b031681526020015f6001600160601b0316815260200161417b60405180604001604052805f81526020015f81525090565b815260200161419b60405180604001604052805f81526020015f81525090565b81526020016141bb60405180604001604052805f81526020015f81525090565b81526020016141db60405180604001604052805f81526020015f81525090565b81526020016141fb60405180604001604052805f81526020015f81525090565b815260200161421b60405180604001604052805f81526020015f81525090565b815260200161423b60405180604001604052805f81526020015f81525090565b905290565b5f60208284031215614250575f80fd5b81356001600160e01b0319811681146134a7575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516142dd608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614321610100840182614267565b949350505050565b6001600160a01b0381168114613e59575f80fd5b6001600160601b0381168114613e59575f80fd5b5f805f8060808587031215614364575f80fd5b843561436f81614329565b9350602085013561437f8161433d565b9250604085013561438f8161433d565b9150606085013561439f8161433d565b939692955090935050565b5f602082840312156143ba575f80fd5b81356134a78161433d565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156143fb576143fb6143c5565b60405290565b60405160c081016001600160401b03811182821017156143fb576143fb6143c5565b60405161012081016001600160401b03811182821017156143fb576143fb6143c5565b60405160e081016001600160401b03811182821017156143fb576143fb6143c5565b604051601f8201601f191681016001600160401b0381118282101715614490576144906143c5565b604052919050565b5f6001600160401b038211156144b0576144b06143c5565b50601f01601f191660200190565b5f82601f8301126144cd575f80fd5b81356144e06144db82614498565b614468565b8181528460208386010111156144f4575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614520575f80fd5b81356001600160401b03811115614535575f80fd5b614321848285016144be565b5f60408284031215614551575f80fd5b6145596143d9565b823581526020928301359281019290925250919050565b5f8060808385031215614581575f80fd5b61458b8484614541565b9150612fe38460408501614541565b5f80604083850312156145ab575f80fd5b82356145b681614329565b915060208301356001600160401b038111156145d0575f80fd5b6145dc858286016144be565b9150509250929050565b5f805f606084860312156145f8575f80fd5b833561460381614329565b925060208401356146138161433d565b915060408401356146238161433d565b809150509250925092565b5f6020828403121561463e575f80fd5b81356134a781614329565b5f805f60c0848603121561465b575f80fd5b6146658585614541565b92506146748560408601614541565b91506146838560808601614541565b90509250925092565b5f6020828403121561469c575f80fd5b815162ffffff811681146134a7575f80fd5b80516146b98161433d565b919050565b5f602082840312156146ce575f80fd5b81516134a78161433d565b600181811c908216806146ed57607f821691505b60208210810361470b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614721575f80fd5b81516134a781614329565b5f82601f83011261473b575f80fd5b8151602083015f61474e6144db84614498565b9050828152858383011115614761575f80fd5b8282602083015e5f92810160200192909252509392505050565b80516146b981614329565b5f60208284031215614796575f80fd5b81516001600160401b038111156147ab575f80fd5b820160c081850312156147bc575f80fd5b6147c4614401565b81516001600160401b038111156147d9575f80fd5b6147e58682850161472c565b8252506147f4602083016146ae565b60208201526148056040830161477b565b60408201526148166060830161477b565b60608201526148276080830161477b565b608082015260a08201516001600160401b03811115614844575f80fd5b6148508682850161472c565b60a083015250949350505050565b805180151581146146b9575f80fd5b5f6020828403121561487d575f80fd5b6134a78261485e565b6001600160401b0381168114613e59575f80fd5b5f602082840312156148aa575f80fd5b81516134a781614886565b8251815260208084015181830152825160408301528201516060820152608081016134a7565b6001600160601b038151168252602081015161490260208401826001600160601b03169052565b50604081015161491f604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a0810151805161010084015260208101516101208401525060c0810151805161014084015260208101516101608401525060e0810151805161018084015260208101516101a084015250610100015180516101c0830152602001516101e090910152565b6001600160601b038416815261024081016149d160208301856148db565b60ff8316610220830152949350505050565b5f604082840312156149f3575f80fd5b6149fb6143d9565b825181526020928301519281019290925250919050565b5f610200828403128015614a24575f80fd5b50614a2d614423565b614a36836146ae565b8152614a44602084016146ae565b6020820152614a5684604085016149e3565b6040820152614a6884608085016149e3565b6060820152614a7a8460c085016149e3565b6080820152614a8d8461010085016149e3565b60a0820152614aa08461014085016149e3565b60c0820152614ab38461018085016149e3565b60e0820152614ac6846101c085016149e3565b6101008201529392505050565b60ff81168114613e59575f80fd5b80516146b981614ad3565b5f60208284031215614afc575f80fd5b81516134a781614ad3565b5f60e0828403128015614b18575f80fd5b50614b21614446565b8251614b2c8161433d565b81526020830151614b3c81614886565b6020820152614b4d6040840161485e565b6040820152614b5e6060840161485e565b6060820152614b6f6080840161485e565b608082015260a0838101519082015260c0928301519281019290925250919050565b5f610100820190506001600160601b03841682526001600160601b0383511660208301526001600160401b0360208401511660408301526040830151151560608301526060830151151560808301526080830151614bf360a084018215159052565b5060a083015160c083015260c083015160e08301529392505050565b5f815160c08452614c2360c0850182614267565b90506001600160601b03602084015116602085015260018060a01b03604084015116604085015260018060a01b03606084015116606085015260018060a01b03608084015116608085015260a083015184820360a0860152614c858282614267565b95945050505050565b6001600160601b0384168152606060208201525f614caf6060830185614c0f565b905060ff83166040830152949350505050565b6001600160601b038316815261022081016134a760208301846148db565b5f60208284031215614cf0575f80fd5b81516001600160401b03811115614d05575f80fd5b820160e08185031215614d16575f80fd5b614d1e614446565b614d27826146ae565b8152614d35602083016146ae565b6020820152614d4660408301614ae1565b6040820152614d576060830161485e565b6060820152614d686080830161477b565b6080820152614d7960a0830161477b565b60a082015260c08201516001600160401b03811115614d96575f80fd5b614da28682850161472c565b60c083015250949350505050565b6001600160601b0383168152604060208201525f6143216040830184614c0f565b6001600160601b038716815260c060208201525f614df260c0830188614267565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f8060408385031215614e28575f80fd5b8251614e3381614329565b6020840151909250614e4481614329565b809150509250929050565b601f82111561141357805f5260205f20601f840160051c81016020851015614e745750805b601f840160051c820191505b818110156122da575f8155600101614e80565b81516001600160401b03811115614eac57614eac6143c5565b614ec081614eba84546146d9565b84614e4f565b6020601f821160018114614ef2575f8315614edb5750848201515b5f19600385901b1c1916600184901b1784556122da565b5f84815260208120601f198516915b82811015614f215787850151825560209485019460019092019101614f01565b5084821015614f3e57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212202d31028854d96882960e87d12ff8ff58c5739c974497c06f88d6f2d16dfea5ec64736f6c634300081a0033",
1244
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061021e575f3560e01c80636e1728071161012a578063be495be5116100b4578063d7740ee111610079578063d7740ee114610497578063deaa59df1461049f578063dfd92f8a146104b2578063e618053f14610294578063f83d08ba146102a7575f80fd5b8063be495be51461045f578063bf7e214f14610467578063c142a30314610484578063d165cb6414610311578063d56cd3d514610311575f80fd5b806389fad8a2116100fa57806389fad8a2146102945780638fb360371461041b578063a69df4b5146102a7578063ada9652e1461043c578063b68d180914610450575f80fd5b80636e172807146103ed57806374933c2f146103115780637a9e5e4b14610400578063893d20e814610413575f80fd5b8063339d2590116101ab578063644c45e01161017b578063644c45e01461038a578063661017811461029457806367438c50146103a757806367ba1c10146103ba5780636c741e78146103cd575f80fd5b8063339d25901461033757806337a897ee1461033f57806349bb9e4b146103525780635ab1bd5314610365575f80fd5b8063138461e0116101f1578063138461e0146102a95780631c6b2190146102c95780631eff4b22146102dc57806325e451d314610311578063329d6e7414610324575f80fd5b806301ffc9a7146102225780630d8e6e2c146102635780630fec111c1461027f57806311a1467714610294575b5f80fd5b61024e610230366004614240565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61026b6104ba565b60405162ffffff909116815260200161025a565b610287610541565b60405161025a9190614295565b6102a76102a2366004614351565b6106cd565b005b6102b16106e0565b6040516001600160601b03909116815260200161025a565b6102b16102d73660046143aa565b6106ea565b6103037f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161025a565b6102a761031f366004614351565b610e1a565b6102a7610332366004614510565b610e28565b6102a7610f72565b6102a761034d366004614570565b610f90565b6102a761036036600461459a565b6112ad565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161025a565b5f80516020614f4e833981519152546001600160601b03166102b1565b6102a76103b53660046145e6565b61139b565b6102a76103c8366004614570565b611418565b6103d5611783565b6040516001600160401b03909116815260200161025a565b6102a76103fb3660046145e6565b61187a565b6102a761040e36600461462e565b6118c7565b610372611963565b610423611a94565b6040516001600160e01b0319909116815260200161025a565b6103035f80516020614f4e83398151915281565b604051600b815260200161025a565b6102a7611acb565b5f80516020614f6e833981519152546001600160a01b0316610372565b6102a7610492366004614649565b611ada565b6102a7611e75565b6102a76104ad36600461462e565b611f41565b6102a76121e3565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610518573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061053c919061468c565b905090565b6105496140f9565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e391906146be565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161062b611963565b6001600160a01b03168152602001826001018054610648906146d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610674906146d9565b80156106bf5780601f10610696576101008083540402835291602001916106bf565b820191905f5260205f20905b8154815290600101906020018083116106a257829003601f168201915b505050505081525091505090565b6106da5f858585856122e1565b50505050565b5f61053c306126db565b5f80806106f7600b6128d4565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610739573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061075d9190614711565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156107a9573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107d09190810190614786565b90505f81608001519050859450846001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561084a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086e91906146be565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af41580156108b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108db919061486d565b156109b857826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561091c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109409190614711565b604051630232ca4960e01b81526001600160601b03861660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa15801561098d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b191906146be565b9450610bdf565b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610a0e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a32919061486d565b15610a505760405163b079ec2b60e01b815260040160405180910390fd5b5f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab19190614711565b604051630232ca4960e01b81526001600160601b03871660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610afe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b2291906146be565b604051632601631360e21b81526001600160601b0388811660048301528216602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af4158015610b83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba7919061486d565b15610bdd5760405163151dbb3f60e01b81526001600160601b038088166004830152821660248201526044015b60405180910390fd5b505b610cb55f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c1f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c439190614711565b8673__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c8b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610caf91906146be565b896122e1565b5f610cc86001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610d15573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d399190614711565b60408481015181516001600160601b0389811682526001600160a01b03858116602084015290921681840152908916606082015290519192507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde9919081900360800190a1606083015160405163153c361360e21b81526001600160a01b03848116600483015283811660248301526001600160601b0389166044830152909116906354f0d84c906064015f604051808303815f87803b158015610dfa575f80fd5b505af1158015610e0c573d5f803e3d5ffd5b505050505050505050919050565b6106da6001858585856122e1565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610e4a6104ba565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610e88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eac919061489a565b5f80516020614f8e8339815191528054600160401b900460ff1680610ede575080546001600160401b03808416911610155b15610efc5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f2683612970565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b335f80610f8883600d610f83612978565b6129b2565b505050505050565b5f80610f9c600e6128d4565b92505091505f8061100c836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fe2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110069190614711565b85612ef2565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b815260040161104e9291906148b5565b602060405180830381865af4158015611069573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061108d919061486d565b6110d3576110c8836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a612fec565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161110f91908a906004016148b5565b602060405180830381865af415801561112a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061114e919061486d565b6111a257611197836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a0015189612fec565b5060a0810185905260015b80156112a457836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112089190614711565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b8152600401611238939291906149b3565b5f604051808303815f87803b15801561124f575f80fd5b505af1158015611261573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b5f80516020614f8e8339815191528054600160401b810460ff1615906001600160401b03165f811580156112de5750825b90505f826001600160401b031660011480156112f95750303b155b905081158015611307575080155b156113255760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561134f57845460ff60401b1916600160401b1785555b611359878761303f565b83156112a457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161129b565b6114136001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156113e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061140d91906146be565b856122e1565b505050565b5f80611424600c6128d4565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611466573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061148a9190614711565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa1580156114d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fc9190614a12565b90505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b815260040161153c9291906148b5565b602060405180830381865af4158015611557573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061157b919061486d565b6115bc576115b1846040518060400160405280600a81526020016950726f6475637446656560b01b815250846040015189612fec565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916115f8919089906004016148b5565b602060405180830381865af4158015611613573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611637919061486d565b61167b57611670846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846060015188612fec565b506060810184905260015b8015610f8857826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116e19190614711565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b8152600401611711939291906149b3565b5f604051808303815f87803b158015611728575f80fd5b505af115801561173a573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a1505050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156117ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118129190614aec565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015611856573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061053c919061489a565b6114135f848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156113e9573d5f803e3d5ffd5b336118e65f80516020614f6e833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146119215760405162d1953b60e31b81526001600160a01b0382166004820152602401610bd4565b816001600160a01b03163b5f03611956576040516361798f2f60e11b81526001600160a01b0383166004820152602401610bd4565b61195f826131ae565b5050565b5f805f80516020614f4e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156119cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f3919061486d565b15611a7e576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611a54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a789190614711565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020614f6e83398151915280545f9190600160a01b900460ff16611abb575f611a78565b638fb3603760e01b91505090565b565b336106da81600e610f8361320e565b5f80611ae6600f6128d4565b92505091505f80611b2c836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fe2573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b8152600401611b6e9291906148b5565b602060405180830381865af4158015611b89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bad919061486d565b611beb57611be08360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b612fec565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611c2791908b906004016148b5565b602060405180830381865af4158015611c42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c66919061486d565b611ca757611c9c836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a612fec565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611ce491908a906004016148b5565b602060405180830381865af4158015611cff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d23919061486d565b611d6a57611d5e836040518060400160405280600e81526020016d506572666f726d616e636546656560901b81525084610100015189612fec565b50610100810185905260015b8015611e6b57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd09190614711565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b8152600401611e00939291906149b3565b5f604051808303815f87803b158015611e17575f80fd5b505af1158015611e29573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b335f80611e8683600f610f83613248565b9250925050816001600160a01b03166383e20e5682856001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015611ed7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611efb9190614b07565b6040518363ffffffff1660e01b8152600401611f18929190614b91565b5f604051808303815f87803b158015611f2f575f80fd5b505af11580156112a4573d5f803e3d5ffd5b5f80611f4d600b6128d4565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fb39190614711565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015611fff573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120269190810190614786565b60808101519091506001600160a01b0385166120555760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b03811661207c5760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b0316036120ae5760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612108573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061212c9190614711565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b815260040161215c93929190614c8e565b5f604051808303815f87803b158015612173575f80fd5b505af1158015612185573d5f803e3d5ffd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b335f80806121f584600c610f83613282565b9250925092505f846001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa158015612239573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061225d9190614a12565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f9061228e9085908590600401614cc2565b5f604051808303815f87803b1580156122a5575f80fd5b505af11580156122b7573d5f803e3d5ffd5b505050506122ca8484835f0151856132bc565b6122da84848360200151856132bc565b5050505050565b5f6122ec8383613423565b905085156124eb576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801561234a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061236e919061486d565b156123ed57604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303815f875af11580156123c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123eb91906146be565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612443573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612467919061486d565b156124e65760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303815f875af11580156124c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124e491906146be565b505b610f88565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612541573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612565919061486d565b156125e45760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303815f875af11580156125be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125e291906146be565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801561263a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061265e919061486d565b15610f88576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303815f875af11580156126b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a491906146be565b5f805f80516020614f4e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612747573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061276b919061486d565b156127975780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610bd4565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156127e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061280d919061486d565b6128355760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610bd4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612887573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ab91906146be565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f6128dd6140f9565b5f6128f06001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015612934573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061295891906146be565b9250612966838560016134ae565b9395909450915050565b61021e61374b565b604051637c3940bf60e01b8152600c60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf9060240161183b565b5f805f805f806129c3898989613781565b60025460405163d943342d60e01b81526001600160a01b03808516600483015260ff8e1660248301528084166044830152949750929550909350919091169063d943342d906064015f604051808303815f875af1158015612a26573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a4d9190810190614ce0565b5f01519350816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015612a8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ab391906146be565b50826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612af0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b149190614711565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b769190614711565b94505f826001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612bb4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612bdb9190810190614786565b905073__$51089c37ca0df1177a910c640c8c5f8165$__63825e72798260400151866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c5c9190614711565b6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cbb9190614711565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865af4158015612d04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d289190614711565b81606001906001600160a01b031690816001600160a01b031681525050856001600160a01b0316634846003a846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612db491906146be565b836040518363ffffffff1660e01b8152600401612dd2929190614db0565b5f604051808303815f87803b158015612de9575f80fd5b505af1158015612dfb573d5f803e3d5ffd5b5050505060035f9054906101000a90046001600160a01b03166001600160a01b0316633931d6da856001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e8291906146be565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526001600160a01b03861660248201526044015f604051808303815f87803b158015612ecf575f80fd5b505af1158015612ee1573d5f803e3d5ffd5b505050505050505093509350939050565b5f612efb614136565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c3906024015f60405180830381865afa158015612f45573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612f6c9190810190614786565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa158015612fbf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fe39190614a12565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db94613031948a948a949293909290614dd1565b60405180910390a150505050565b5f80516020614f8e8339815191528054600160401b810460ff1615906001600160401b03165f811580156130705750825b90505f826001600160401b0316600114801561308b5750303b155b905081158015613099575080155b156130b75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156130e157845460ff60401b1916600160401b1785555b5f80878060200190518101906130f79190614e17565b9150915061310682828b613b35565b6131106002613c75565b600280546001600160a01b0319166001600160a01b039290921691909117905561313a600a613c75565b600380546001600160a01b0319166001600160a01b039290921691909117905561316a636618d76960e11b613d7c565b505083156112a457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161129b565b5f80516020614f6e83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b604051637c3940bf60e01b8152600d60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf9060240161183b565b604051637c3940bf60e01b8152600e60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf9060240161183b565b604051637c3940bf60e01b8152600b60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf9060240161183b565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613312573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613336919061486d565b6106da5760405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa158015613386573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526133ad9190810190614786565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac906133ef908690859060ff90600401614c8e565b5f604051808303815f87803b158015613406575f80fd5b505af1158015613418573d5f803e3d5ffd5b505050505050505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015613483573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134a791906146be565b9392505050565b6134b66140f9565b5f806134ca6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613517573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261353e9190810190614ce0565b925060ff8516600b1461359c57604083015160ff86811691161461359757604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610bd4565b613638565b6135b783604001516135ac600c90565b60ff90811691161490565b806135cd57506135cd83604001516135ac600f90565b806135e357506135e383604001516135ac600e90565b806135f957506135f983604001516135ac600d90565b61363857604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610bd4565b6136458360200151613da8565b9150831561374257816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613689573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136ad9190614711565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa1580156136f5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613719919061486d565b1561374257604051637d71120960e11b81526001600160601b0387166004820152602401610bd4565b50935093915050565b5f80516020614f8e83398151915254600160401b900460ff16611ac957604051631afcd79f60e31b815260040160405180910390fd5b6040516301ffc9a760e01b81526376c9b41160e11b60048201525f90849082906001600160a01b038316906301ffc9a790602401602060405180830381865afa1580156137d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137f4919061486d565b61381c576040516359bff0e360e11b81526001600160a01b0387166004820152602401610bd4565b5f826001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613858573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261387f9190810190614ce0565b905061389681604001518760ff9081169116141590565b156138d6576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff80891660248301529091166044820152606401610bd4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0389811660048301529190911690635e546bee90602401602060405180830381865afa158015613928573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061394c91906146be565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156139a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139c7919061486d565b156139f0576040516322e6526160e11b81526001600160a01b0388166004820152602401610bd4565b6139fd8160200151613da8565b93508060a001519150836001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a669190614711565b60405163327e18a160e11b81526001600160a01b0384811660048301526001600160401b038816602483015291909116906364fc314290604401602060405180830381865afa158015613abb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613adf919061486d565b613b2b576020810151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03861660248201526001600160a01b0383166044820152606401610bd4565b5093509350939050565b613b3d61374b565b613b45613e38565b6001600160a01b03821615613b6257613b5d82613e48565b613bd9565b5f613b6d6002613c75565b9050613bd7816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bd29190614711565b613e48565b505b613c5583846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c3d91906146be565b60085f8560405180602001604052805f815250613e5c565b613c65634a531f3360e01b613d7c565b61141363daf9067160e01b613d7c565b5f613c886001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015613ceb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d0f9190614aec565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613d52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d769190614711565b92915050565b613d8461374b565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f613dbb6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015613e07573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613e2e9190810190614ce0565b6080015192915050565b613e4061374b565b611ac9613ef7565b613e5061374b565b613e5981613f25565b50565b613e6461374b565b613e6e8287613f36565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301611e6b8382614e93565b613eff61374b565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b613f2d61374b565b613e59816131ae565b613f3e61374b565b613f4781613fac565b613f4f6140b4565b6001600160a01b038216613f765760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020614f4e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b613fb461374b565b806001600160a01b03163b5f03613fe95760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610bd4565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632f6da6f960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015614063575060408051601f3d908101601f191682019092526140609181019061486d565b60015b61408b5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610bd4565b8061195f5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610bd4565b6140bc61374b565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040518061012001604052805f6001600160601b031681526020015f6001600160601b0316815260200161417b60405180604001604052805f81526020015f81525090565b815260200161419b60405180604001604052805f81526020015f81525090565b81526020016141bb60405180604001604052805f81526020015f81525090565b81526020016141db60405180604001604052805f81526020015f81525090565b81526020016141fb60405180604001604052805f81526020015f81525090565b815260200161421b60405180604001604052805f81526020015f81525090565b815260200161423b60405180604001604052805f81526020015f81525090565b905290565b5f60208284031215614250575f80fd5b81356001600160e01b0319811681146134a7575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516142dd608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614321610100840182614267565b949350505050565b6001600160a01b0381168114613e59575f80fd5b6001600160601b0381168114613e59575f80fd5b5f805f8060808587031215614364575f80fd5b843561436f81614329565b9350602085013561437f8161433d565b9250604085013561438f8161433d565b9150606085013561439f8161433d565b939692955090935050565b5f602082840312156143ba575f80fd5b81356134a78161433d565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156143fb576143fb6143c5565b60405290565b60405160c081016001600160401b03811182821017156143fb576143fb6143c5565b60405161012081016001600160401b03811182821017156143fb576143fb6143c5565b60405160e081016001600160401b03811182821017156143fb576143fb6143c5565b604051601f8201601f191681016001600160401b0381118282101715614490576144906143c5565b604052919050565b5f6001600160401b038211156144b0576144b06143c5565b50601f01601f191660200190565b5f82601f8301126144cd575f80fd5b81356144e06144db82614498565b614468565b8181528460208386010111156144f4575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614520575f80fd5b81356001600160401b03811115614535575f80fd5b614321848285016144be565b5f60408284031215614551575f80fd5b6145596143d9565b823581526020928301359281019290925250919050565b5f8060808385031215614581575f80fd5b61458b8484614541565b9150612fe38460408501614541565b5f80604083850312156145ab575f80fd5b82356145b681614329565b915060208301356001600160401b038111156145d0575f80fd5b6145dc858286016144be565b9150509250929050565b5f805f606084860312156145f8575f80fd5b833561460381614329565b925060208401356146138161433d565b915060408401356146238161433d565b809150509250925092565b5f6020828403121561463e575f80fd5b81356134a781614329565b5f805f60c0848603121561465b575f80fd5b6146658585614541565b92506146748560408601614541565b91506146838560808601614541565b90509250925092565b5f6020828403121561469c575f80fd5b815162ffffff811681146134a7575f80fd5b80516146b98161433d565b919050565b5f602082840312156146ce575f80fd5b81516134a78161433d565b600181811c908216806146ed57607f821691505b60208210810361470b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614721575f80fd5b81516134a781614329565b5f82601f83011261473b575f80fd5b8151602083015f61474e6144db84614498565b9050828152858383011115614761575f80fd5b8282602083015e5f92810160200192909252509392505050565b80516146b981614329565b5f60208284031215614796575f80fd5b81516001600160401b038111156147ab575f80fd5b820160c081850312156147bc575f80fd5b6147c4614401565b81516001600160401b038111156147d9575f80fd5b6147e58682850161472c565b8252506147f4602083016146ae565b60208201526148056040830161477b565b60408201526148166060830161477b565b60608201526148276080830161477b565b608082015260a08201516001600160401b03811115614844575f80fd5b6148508682850161472c565b60a083015250949350505050565b805180151581146146b9575f80fd5b5f6020828403121561487d575f80fd5b6134a78261485e565b6001600160401b0381168114613e59575f80fd5b5f602082840312156148aa575f80fd5b81516134a781614886565b8251815260208084015181830152825160408301528201516060820152608081016134a7565b6001600160601b038151168252602081015161490260208401826001600160601b03169052565b50604081015161491f604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a0810151805161010084015260208101516101208401525060c0810151805161014084015260208101516101608401525060e0810151805161018084015260208101516101a084015250610100015180516101c0830152602001516101e090910152565b6001600160601b038416815261024081016149d160208301856148db565b60ff8316610220830152949350505050565b5f604082840312156149f3575f80fd5b6149fb6143d9565b825181526020928301519281019290925250919050565b5f610200828403128015614a24575f80fd5b50614a2d614423565b614a36836146ae565b8152614a44602084016146ae565b6020820152614a5684604085016149e3565b6040820152614a6884608085016149e3565b6060820152614a7a8460c085016149e3565b6080820152614a8d8461010085016149e3565b60a0820152614aa08461014085016149e3565b60c0820152614ab38461018085016149e3565b60e0820152614ac6846101c085016149e3565b6101008201529392505050565b60ff81168114613e59575f80fd5b80516146b981614ad3565b5f60208284031215614afc575f80fd5b81516134a781614ad3565b5f60e0828403128015614b18575f80fd5b50614b21614446565b8251614b2c8161433d565b81526020830151614b3c81614886565b6020820152614b4d6040840161485e565b6040820152614b5e6060840161485e565b6060820152614b6f6080840161485e565b608082015260a0838101519082015260c0928301519281019290925250919050565b5f610100820190506001600160601b03841682526001600160601b0383511660208301526001600160401b0360208401511660408301526040830151151560608301526060830151151560808301526080830151614bf360a084018215159052565b5060a083015160c083015260c083015160e08301529392505050565b5f815160c08452614c2360c0850182614267565b90506001600160601b03602084015116602085015260018060a01b03604084015116604085015260018060a01b03606084015116606085015260018060a01b03608084015116608085015260a083015184820360a0860152614c858282614267565b95945050505050565b6001600160601b0384168152606060208201525f614caf6060830185614c0f565b905060ff83166040830152949350505050565b6001600160601b038316815261022081016134a760208301846148db565b5f60208284031215614cf0575f80fd5b81516001600160401b03811115614d05575f80fd5b820160e08185031215614d16575f80fd5b614d1e614446565b614d27826146ae565b8152614d35602083016146ae565b6020820152614d4660408301614ae1565b6040820152614d576060830161485e565b6060820152614d686080830161477b565b6080820152614d7960a0830161477b565b60a082015260c08201516001600160401b03811115614d96575f80fd5b614da28682850161472c565b60c083015250949350505050565b6001600160601b0383168152604060208201525f6143216040830184614c0f565b6001600160601b038716815260c060208201525f614df260c0830188614267565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f8060408385031215614e28575f80fd5b8251614e3381614329565b6020840151909250614e4481614329565b809150509250929050565b601f82111561141357805f5260205f20601f840160051c81016020851015614e745750805b601f840160051c820191505b818110156122da575f8155600101614e80565b81516001600160401b03811115614eac57614eac6143c5565b614ec081614eba84546146d9565b84614e4f565b6020601f821160018114614ef2575f8315614edb5750848201515b5f19600385901b1c1916600184901b1784556122da565b5f84815260208120601f198516915b82811015614f215787850151825560209485019460019092019101614f01565b5084821015614f3e57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212202d31028854d96882960e87d12ff8ff58c5739c974497c06f88d6f2d16dfea5ec64736f6c634300081a0033",
1245
+ "linkReferences": {
1246
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1247
+ "TokenHandlerDeployerLib": [
1248
+ {
1249
+ "length": 20,
1250
+ "start": 11445
1251
+ }
1252
+ ]
1253
+ },
1254
+ "contracts/type/Amount.sol": {
1255
+ "AmountLib": [
1256
+ {
1257
+ "length": 20,
1258
+ "start": 2239
1259
+ },
1260
+ {
1261
+ "length": 20,
1262
+ "start": 2267
1263
+ },
1264
+ {
1265
+ "length": 20,
1266
+ "start": 2732
1267
+ },
1268
+ {
1269
+ "length": 20,
1270
+ "start": 3105
1271
+ },
1272
+ {
1273
+ "length": 20,
1274
+ "start": 3356
1275
+ },
1276
+ {
1277
+ "length": 20,
1278
+ "start": 5242
1279
+ },
1280
+ {
1281
+ "length": 20,
1282
+ "start": 6488
1283
+ },
1284
+ {
1285
+ "length": 20,
1286
+ "start": 9192
1287
+ },
1288
+ {
1289
+ "length": 20,
1290
+ "start": 9441
1291
+ },
1292
+ {
1293
+ "length": 20,
1294
+ "start": 9695
1295
+ },
1296
+ {
1297
+ "length": 20,
1298
+ "start": 9944
1299
+ },
1300
+ {
1301
+ "length": 20,
1302
+ "start": 13601
1303
+ }
1304
+ ]
1305
+ },
1306
+ "contracts/type/Fee.sol": {
1307
+ "FeeLib": [
1308
+ {
1309
+ "length": 20,
1310
+ "start": 4329
1311
+ },
1312
+ {
1313
+ "length": 20,
1314
+ "start": 4540
1315
+ },
1316
+ {
1317
+ "length": 20,
1318
+ "start": 5591
1319
+ },
1320
+ {
1321
+ "length": 20,
1322
+ "start": 5797
1323
+ },
1324
+ {
1325
+ "length": 20,
1326
+ "start": 7177
1327
+ },
1328
+ {
1329
+ "length": 20,
1330
+ "start": 7380
1331
+ },
1332
+ {
1333
+ "length": 20,
1334
+ "start": 7569
1335
+ }
1336
+ ]
1337
+ },
1338
+ "contracts/type/NftId.sol": {
1339
+ "NftIdLib": [
1340
+ {
1341
+ "length": 20,
1342
+ "start": 1616
1343
+ },
1344
+ {
1345
+ "length": 20,
1346
+ "start": 6765
1347
+ },
1348
+ {
1349
+ "length": 20,
1350
+ "start": 10213
1351
+ },
1352
+ {
1353
+ "length": 20,
1354
+ "start": 13232
1355
+ },
1356
+ {
1357
+ "length": 20,
1358
+ "start": 14913
1359
+ }
1360
+ ]
1361
+ },
1362
+ "contracts/type/RoleId.sol": {
1363
+ "RoleIdLib": [
1364
+ {
1365
+ "length": 20,
1366
+ "start": 6236
1367
+ },
1368
+ {
1369
+ "length": 20,
1370
+ "start": 10854
1371
+ },
1372
+ {
1373
+ "length": 20,
1374
+ "start": 13052
1375
+ },
1376
+ {
1377
+ "length": 20,
1378
+ "start": 13110
1379
+ },
1380
+ {
1381
+ "length": 20,
1382
+ "start": 13168
1383
+ }
1384
+ ]
1385
+ },
1386
+ "contracts/type/Version.sol": {
1387
+ "VersionLib": [
1388
+ {
1389
+ "length": 20,
1390
+ "start": 1462
1391
+ },
1392
+ {
1393
+ "length": 20,
1394
+ "start": 3840
1395
+ }
1396
+ ],
1397
+ "VersionPartLib": [
1398
+ {
1399
+ "length": 20,
1400
+ "start": 6284
1401
+ },
1402
+ {
1403
+ "length": 20,
1404
+ "start": 15753
1405
+ }
1406
+ ]
1407
+ }
1408
+ },
1409
+ "deployedLinkReferences": {
1410
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1411
+ "TokenHandlerDeployerLib": [
1412
+ {
1413
+ "length": 20,
1414
+ "start": 11231
1415
+ }
1416
+ ]
1417
+ },
1418
+ "contracts/type/Amount.sol": {
1419
+ "AmountLib": [
1420
+ {
1421
+ "length": 20,
1422
+ "start": 2025
1423
+ },
1424
+ {
1425
+ "length": 20,
1426
+ "start": 2053
1427
+ },
1428
+ {
1429
+ "length": 20,
1430
+ "start": 2518
1431
+ },
1432
+ {
1433
+ "length": 20,
1434
+ "start": 2891
1435
+ },
1436
+ {
1437
+ "length": 20,
1438
+ "start": 3142
1439
+ },
1440
+ {
1441
+ "length": 20,
1442
+ "start": 5028
1443
+ },
1444
+ {
1445
+ "length": 20,
1446
+ "start": 6274
1447
+ },
1448
+ {
1449
+ "length": 20,
1450
+ "start": 8978
1451
+ },
1452
+ {
1453
+ "length": 20,
1454
+ "start": 9227
1455
+ },
1456
+ {
1457
+ "length": 20,
1458
+ "start": 9481
1459
+ },
1460
+ {
1461
+ "length": 20,
1462
+ "start": 9730
1463
+ },
1464
+ {
1465
+ "length": 20,
1466
+ "start": 13387
1467
+ }
1468
+ ]
1469
+ },
1470
+ "contracts/type/Fee.sol": {
1471
+ "FeeLib": [
1472
+ {
1473
+ "length": 20,
1474
+ "start": 4115
1475
+ },
1476
+ {
1477
+ "length": 20,
1478
+ "start": 4326
1479
+ },
1480
+ {
1481
+ "length": 20,
1482
+ "start": 5377
1483
+ },
1484
+ {
1485
+ "length": 20,
1486
+ "start": 5583
1487
+ },
1488
+ {
1489
+ "length": 20,
1490
+ "start": 6963
1491
+ },
1492
+ {
1493
+ "length": 20,
1494
+ "start": 7166
1495
+ },
1496
+ {
1497
+ "length": 20,
1498
+ "start": 7355
1499
+ }
1500
+ ]
1501
+ },
1502
+ "contracts/type/NftId.sol": {
1503
+ "NftIdLib": [
1504
+ {
1505
+ "length": 20,
1506
+ "start": 1402
1507
+ },
1508
+ {
1509
+ "length": 20,
1510
+ "start": 6551
1511
+ },
1512
+ {
1513
+ "length": 20,
1514
+ "start": 9999
1515
+ },
1516
+ {
1517
+ "length": 20,
1518
+ "start": 13018
1519
+ },
1520
+ {
1521
+ "length": 20,
1522
+ "start": 14699
1523
+ }
1524
+ ]
1525
+ },
1526
+ "contracts/type/RoleId.sol": {
1527
+ "RoleIdLib": [
1528
+ {
1529
+ "length": 20,
1530
+ "start": 6022
1531
+ },
1532
+ {
1533
+ "length": 20,
1534
+ "start": 10640
1535
+ },
1536
+ {
1537
+ "length": 20,
1538
+ "start": 12838
1539
+ },
1540
+ {
1541
+ "length": 20,
1542
+ "start": 12896
1543
+ },
1544
+ {
1545
+ "length": 20,
1546
+ "start": 12954
1547
+ }
1548
+ ]
1549
+ },
1550
+ "contracts/type/Version.sol": {
1551
+ "VersionLib": [
1552
+ {
1553
+ "length": 20,
1554
+ "start": 1248
1555
+ },
1556
+ {
1557
+ "length": 20,
1558
+ "start": 3626
1559
+ }
1560
+ ],
1561
+ "VersionPartLib": [
1562
+ {
1563
+ "length": 20,
1564
+ "start": 6070
1565
+ },
1566
+ {
1567
+ "length": 20,
1568
+ "start": 15539
1569
+ }
1570
+ ]
1571
+ }
1572
+ }
1573
+ }