@etherisc/gif-next 0.0.2-f9bc4c7-556 → 0.0.2-fa85e58-736

Sign up to get free protection for your applications and to get access to all the features.
Files changed (712) hide show
  1. package/README.md +279 -15
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -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/access → authorization}/IAccess.sol/IAccess.json +1 -1
  10. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -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 +1548 -0
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1234 -0
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1557 -0
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +854 -0
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +943 -0
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +945 -0
  36. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  37. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
  38. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  39. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +280 -1494
  40. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  41. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +757 -0
  42. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/Instance.sol/Instance.json +473 -1765
  44. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  45. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
  46. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  47. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
  48. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  49. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1725 -0
  50. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  51. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1160 -0
  52. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  53. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
  54. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  55. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3571 -0
  56. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  57. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  58. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  59. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  60. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  62. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  64. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  65. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  66. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  67. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
  68. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  69. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  70. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  71. package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/IComponents.sol/IComponents.json} +2 -2
  72. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  73. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  74. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  75. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  76. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  77. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  78. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  79. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  80. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  81. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1185 -0
  82. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  83. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
  84. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  85. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  86. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  87. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +802 -0
  88. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  89. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
  90. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  91. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1093 -0
  92. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  93. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
  94. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  95. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
  96. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  97. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1521 -0
  98. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  99. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
  100. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  101. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1534 -0
  102. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  103. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +842 -0
  104. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  105. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +927 -0
  106. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  107. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +997 -0
  108. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  109. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1267 -0
  110. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  111. package/artifacts/contracts/pool/Pool.sol/Pool.json +1307 -0
  112. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  113. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1706 -0
  114. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +774 -0
  116. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  117. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
  118. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  119. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
  120. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  121. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1318 -0
  122. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  123. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
  124. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  125. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1315 -0
  126. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  127. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
  128. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  129. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +256 -221
  130. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  131. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
  132. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  133. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +720 -0
  134. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  135. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +549 -0
  136. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  137. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +985 -0
  138. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  139. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IProductService.sol/IProductService.json} +207 -171
  140. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  141. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1183 -0
  142. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  143. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
  144. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  145. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1017 -0
  146. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  147. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
  148. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  149. package/artifacts/contracts/product/Product.sol/Product.json +1276 -0
  150. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  151. package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
  152. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  153. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
  154. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  155. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
  156. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  157. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +655 -50
  158. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  159. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +940 -0
  160. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  161. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  162. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  163. package/artifacts/contracts/registry/Registry.sol/Registry.json +885 -99
  164. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  165. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
  166. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  167. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1452 -0
  168. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  169. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +721 -0
  170. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  171. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  172. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  173. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1159 -0
  174. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  175. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
  176. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  177. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
  178. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  179. package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
  180. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  181. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1696 -0
  182. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  183. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +812 -0
  184. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  185. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
  186. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  187. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
  188. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  189. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
  190. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  191. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +737 -0
  192. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  193. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +104 -141
  194. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  195. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  196. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  197. package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +37 -80
  198. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  199. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  200. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  201. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
  202. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  203. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  204. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  205. package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/IService.sol/IService.json} +163 -143
  206. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  207. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  208. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  209. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +73 -0
  210. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  211. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1015 -0
  212. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  213. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
  214. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  215. package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/Lifecycle.sol/Lifecycle.json} +54 -45
  216. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  217. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  218. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  219. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
  220. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  221. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  222. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  223. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
  224. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  225. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  226. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  227. package/artifacts/contracts/shared/Service.sol/Service.json +507 -0
  228. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  229. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
  230. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  231. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  232. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  233. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  234. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  235. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +470 -0
  236. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  237. package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
  238. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  239. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  240. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  241. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
  242. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  243. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  244. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  245. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
  246. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  247. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
  248. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  249. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
  250. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  251. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +576 -0
  252. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  253. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  254. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  255. package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
  256. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  258. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  259. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  260. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  261. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  262. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  263. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  264. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  265. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  266. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  267. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  268. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  269. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  270. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  272. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  273. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  274. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  276. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  278. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  279. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
  280. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  281. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  282. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +222 -0
  284. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  286. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  287. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  288. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  289. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  290. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  291. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  292. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  293. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
  294. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  295. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  296. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  297. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
  298. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  299. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  300. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  301. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  302. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  303. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
  304. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  305. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +617 -0
  306. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  307. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  308. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  309. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
  310. package/contracts/authorization/AccessAdmin.sol +591 -0
  311. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  312. package/contracts/authorization/Authorization.sol +218 -0
  313. package/contracts/authorization/IAccess.sol +48 -0
  314. package/contracts/authorization/IAccessAdmin.sol +136 -0
  315. package/contracts/authorization/IAuthorization.sol +54 -0
  316. package/contracts/authorization/IModuleAuthorization.sol +21 -0
  317. package/contracts/authorization/IServiceAuthorization.sol +38 -0
  318. package/contracts/authorization/ModuleAuthorization.sol +78 -0
  319. package/contracts/authorization/ServiceAuthorization.sol +90 -0
  320. package/contracts/distribution/BasicDistribution.sol +138 -0
  321. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  322. package/contracts/distribution/Distribution.sol +295 -0
  323. package/contracts/distribution/DistributionService.sol +337 -0
  324. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  325. package/contracts/distribution/IDistributionComponent.sol +52 -0
  326. package/contracts/distribution/IDistributionService.sol +97 -0
  327. package/contracts/instance/BundleSet.sol +126 -0
  328. package/contracts/instance/IInstance.sol +78 -44
  329. package/contracts/instance/IInstanceService.sol +92 -0
  330. package/contracts/instance/Instance.sol +238 -52
  331. package/contracts/instance/InstanceAdmin.sol +266 -0
  332. package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
  333. package/contracts/instance/InstanceReader.sol +405 -0
  334. package/contracts/instance/InstanceService.sol +443 -0
  335. package/contracts/instance/InstanceServiceManager.sol +40 -0
  336. package/contracts/instance/InstanceStore.sol +277 -0
  337. package/contracts/instance/base/BalanceStore.sol +123 -0
  338. package/contracts/instance/base/Cloneable.sol +28 -0
  339. package/contracts/instance/base/ObjectCounter.sol +21 -0
  340. package/contracts/instance/base/ObjectLifecycle.sol +106 -0
  341. package/contracts/instance/base/ObjectSet.sol +79 -0
  342. package/contracts/instance/module/IAccess.sol +46 -0
  343. package/contracts/instance/module/IBundle.sol +20 -0
  344. package/contracts/instance/module/IComponents.sol +50 -0
  345. package/contracts/instance/module/IDistribution.sol +41 -0
  346. package/contracts/instance/module/IPolicy.sol +84 -0
  347. package/contracts/instance/module/IRisk.sol +11 -0
  348. package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
  349. package/contracts/oracle/BasicOracle.sol +48 -0
  350. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  351. package/contracts/oracle/IOracle.sol +36 -0
  352. package/contracts/oracle/IOracleComponent.sol +33 -0
  353. package/contracts/oracle/IOracleService.sol +65 -0
  354. package/contracts/oracle/Oracle.sol +166 -0
  355. package/contracts/oracle/OracleService.sol +278 -0
  356. package/contracts/oracle/OracleServiceManager.sol +39 -0
  357. package/contracts/pool/BasicPool.sol +166 -0
  358. package/contracts/pool/BasicPoolAuthorization.sol +58 -0
  359. package/contracts/pool/BundleService.sol +438 -0
  360. package/contracts/pool/BundleServiceManager.sol +39 -0
  361. package/contracts/pool/IBundleService.sol +133 -0
  362. package/contracts/pool/IPoolComponent.sol +58 -0
  363. package/contracts/pool/IPoolService.sol +158 -0
  364. package/contracts/pool/Pool.sol +331 -0
  365. package/contracts/pool/PoolService.sol +562 -0
  366. package/contracts/pool/PoolServiceManager.sol +39 -0
  367. package/contracts/product/ApplicationService.sol +230 -0
  368. package/contracts/product/ApplicationServiceManager.sol +38 -0
  369. package/contracts/product/BasicProduct.sol +82 -0
  370. package/contracts/product/BasicProductAuthorization.sol +43 -0
  371. package/contracts/product/ClaimService.sol +417 -0
  372. package/contracts/product/ClaimServiceManager.sol +38 -0
  373. package/contracts/product/IApplicationService.sol +62 -0
  374. package/contracts/product/IClaimService.sol +99 -0
  375. package/contracts/product/IPolicyService.sol +78 -0
  376. package/contracts/product/IPricingService.sol +39 -0
  377. package/contracts/product/IProductComponent.sol +40 -0
  378. package/contracts/product/IProductService.sol +33 -0
  379. package/contracts/product/PolicyService.sol +476 -0
  380. package/contracts/product/PolicyServiceManager.sol +39 -0
  381. package/contracts/product/PricingService.sol +300 -0
  382. package/contracts/product/PricingServiceManager.sol +39 -0
  383. package/contracts/product/Product.sol +392 -0
  384. package/contracts/product/ProductService.sol +99 -0
  385. package/contracts/product/ProductServiceManager.sol +39 -0
  386. package/contracts/registry/ChainNft.sol +95 -37
  387. package/contracts/registry/IRegistry.sol +106 -29
  388. package/contracts/registry/IRegistryService.sol +69 -0
  389. package/contracts/registry/ITransferInterceptor.sol +7 -0
  390. package/contracts/registry/Registry.sol +475 -280
  391. package/contracts/registry/RegistryAdmin.sol +365 -0
  392. package/contracts/registry/RegistryService.sol +252 -0
  393. package/contracts/registry/RegistryServiceManager.sol +53 -0
  394. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  395. package/contracts/registry/ReleaseRegistry.sol +485 -0
  396. package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
  397. package/contracts/registry/TokenRegistry.sol +315 -0
  398. package/contracts/shared/Component.sol +280 -0
  399. package/contracts/shared/ComponentService.sol +651 -0
  400. package/contracts/shared/ComponentServiceManager.sol +35 -0
  401. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  402. package/contracts/shared/IComponent.sol +70 -0
  403. package/contracts/shared/IComponentService.sol +108 -0
  404. package/contracts/shared/IInstanceLinkedComponent.sol +56 -0
  405. package/contracts/shared/IKeyValueStore.sol +54 -0
  406. package/contracts/{instance/base → shared}/ILifecycle.sol +4 -5
  407. package/contracts/shared/INftOwnable.sol +23 -0
  408. package/contracts/shared/IPolicyHolder.sol +45 -0
  409. package/contracts/shared/IRegisterable.sol +10 -19
  410. package/contracts/shared/IRegistryLinked.sol +11 -0
  411. package/contracts/shared/IService.sol +25 -0
  412. package/contracts/shared/InitializableCustom.sol +177 -0
  413. package/contracts/shared/InitializableERC165.sol +27 -0
  414. package/contracts/shared/InstanceLinkedComponent.sol +172 -0
  415. package/contracts/shared/KeyValueStore.sol +131 -0
  416. package/contracts/shared/Lifecycle.sol +77 -0
  417. package/contracts/shared/NftIdSet.sol +65 -0
  418. package/contracts/shared/NftOwnable.sol +107 -0
  419. package/contracts/shared/PolicyHolder.sol +99 -0
  420. package/contracts/shared/Registerable.sol +54 -65
  421. package/contracts/shared/RegistryLinked.sol +43 -0
  422. package/contracts/shared/Service.sol +82 -0
  423. package/contracts/shared/TokenHandler.sol +58 -0
  424. package/contracts/staking/IStaking.sol +167 -0
  425. package/contracts/staking/IStakingService.sol +160 -0
  426. package/contracts/staking/StakeManagerLib.sol +231 -0
  427. package/contracts/staking/Staking.sol +516 -0
  428. package/contracts/staking/StakingLifecycle.sol +23 -0
  429. package/contracts/staking/StakingManager.sol +50 -0
  430. package/contracts/staking/StakingReader.sol +183 -0
  431. package/contracts/staking/StakingService.sol +411 -0
  432. package/contracts/staking/StakingServiceManager.sol +44 -0
  433. package/contracts/staking/StakingStore.sol +605 -0
  434. package/contracts/staking/TargetManagerLib.sol +207 -0
  435. package/contracts/{types → type}/AddressSet.sol +1 -1
  436. package/contracts/type/Amount.sol +135 -0
  437. package/contracts/{types → type}/Blocknumber.sol +21 -3
  438. package/contracts/type/ClaimId.sol +75 -0
  439. package/contracts/type/DistributorType.sol +55 -0
  440. package/contracts/type/Fee.sol +66 -0
  441. package/contracts/{types → type}/Key32.sol +8 -3
  442. package/contracts/{types → type}/NftId.sol +21 -15
  443. package/contracts/type/NftIdSet.sol +62 -0
  444. package/contracts/type/ObjectType.sol +271 -0
  445. package/contracts/type/PayoutId.sol +82 -0
  446. package/contracts/type/Referral.sol +90 -0
  447. package/contracts/type/RequestId.sol +75 -0
  448. package/contracts/type/RiskId.sol +43 -0
  449. package/contracts/type/RoleId.sol +174 -0
  450. package/contracts/type/Seconds.sol +93 -0
  451. package/contracts/type/Selector.sol +102 -0
  452. package/contracts/{types → type}/StateId.sol +39 -5
  453. package/contracts/type/String.sol +53 -0
  454. package/contracts/{types → type}/Timestamp.sol +27 -14
  455. package/contracts/type/UFixed.sol +351 -0
  456. package/contracts/{types → type}/Version.sol +17 -2
  457. package/contracts/upgradeability/IVersionable.sol +53 -0
  458. package/contracts/upgradeability/ProxyManager.sol +198 -0
  459. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +14 -0
  460. package/contracts/upgradeability/Versionable.sol +59 -0
  461. package/package.json +11 -7
  462. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  463. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  464. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  465. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  466. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -356
  467. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  468. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -279
  469. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  470. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -387
  471. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  472. package/artifacts/contracts/components/Product.sol/Product.json +0 -305
  473. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  474. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  475. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  476. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  477. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  478. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  479. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  480. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  481. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  482. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  483. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  484. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  485. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  486. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  487. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  488. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  489. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  490. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  491. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  492. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  493. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  494. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  495. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  496. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  497. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  498. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  499. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  500. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  501. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  502. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  503. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  504. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  505. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  506. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  507. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
  508. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  509. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  510. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  511. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
  512. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  513. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  514. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  515. package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
  516. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  517. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  518. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -692
  519. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  520. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  521. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  522. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  523. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
  524. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  525. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  526. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  527. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  528. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  529. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  530. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
  531. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  532. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  533. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
  534. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  535. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  536. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  537. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
  538. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  539. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
  540. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  541. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
  542. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  543. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  544. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  545. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
  546. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  547. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  548. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
  549. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  550. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
  551. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  552. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  553. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  554. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
  555. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  556. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
  557. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  558. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  559. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
  560. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  561. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
  562. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  563. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
  564. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  565. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
  566. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  567. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  568. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  569. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
  570. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  571. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
  572. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  573. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  574. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -376
  575. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  576. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  577. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -471
  578. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  579. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -673
  580. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  581. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  582. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
  583. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  584. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  585. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  586. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
  587. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  588. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -164
  589. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  590. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -164
  591. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  592. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  593. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  594. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
  595. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  596. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
  597. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  598. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
  599. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  600. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  601. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  602. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
  603. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  604. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
  605. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  606. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  607. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  608. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
  609. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  610. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
  611. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  612. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  613. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  614. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  615. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  616. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  617. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  618. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -218
  619. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  620. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
  621. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  622. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  623. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  624. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  625. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  626. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  627. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  628. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
  629. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  630. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  631. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
  632. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  633. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
  634. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  635. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
  636. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  637. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
  638. package/contracts/components/BaseComponent.sol +0 -88
  639. package/contracts/components/IBaseComponent.sol +0 -19
  640. package/contracts/components/IPoolComponent.sol +0 -57
  641. package/contracts/components/IProductComponent.sol +0 -19
  642. package/contracts/components/Pool.sol +0 -174
  643. package/contracts/components/Product.sol +0 -117
  644. package/contracts/experiment/errors/Require.sol +0 -38
  645. package/contracts/experiment/errors/Revert.sol +0 -44
  646. package/contracts/experiment/inheritance/A.sol +0 -53
  647. package/contracts/experiment/inheritance/B.sol +0 -28
  648. package/contracts/experiment/inheritance/C.sol +0 -34
  649. package/contracts/experiment/inheritance/IA.sol +0 -13
  650. package/contracts/experiment/inheritance/IB.sol +0 -10
  651. package/contracts/experiment/inheritance/IC.sol +0 -12
  652. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  653. package/contracts/experiment/statemachine/ISM.sol +0 -25
  654. package/contracts/experiment/statemachine/README.md +0 -112
  655. package/contracts/experiment/statemachine/SM.sol +0 -57
  656. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  657. package/contracts/experiment/types/TypeA.sol +0 -47
  658. package/contracts/experiment/types/TypeB.sol +0 -29
  659. package/contracts/instance/IInstanceLinked.sol +0 -8
  660. package/contracts/instance/base/ComponentServiceBase.sol +0 -42
  661. package/contracts/instance/base/IInstanceBase.sol +0 -14
  662. package/contracts/instance/base/IKeyValueStore.sol +0 -49
  663. package/contracts/instance/base/IService.sol +0 -15
  664. package/contracts/instance/base/InstanceBase.sol +0 -80
  665. package/contracts/instance/base/KeyValueStore.sol +0 -156
  666. package/contracts/instance/base/Lifecycle.sol +0 -95
  667. package/contracts/instance/base/ModuleBase.sol +0 -52
  668. package/contracts/instance/base/ServiceBase.sol +0 -37
  669. package/contracts/instance/module/access/Access.sol +0 -149
  670. package/contracts/instance/module/access/IAccess.sol +0 -53
  671. package/contracts/instance/module/bundle/BundleModule.sol +0 -136
  672. package/contracts/instance/module/bundle/IBundle.sol +0 -58
  673. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  674. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
  675. package/contracts/instance/module/component/ComponentModule.sol +0 -95
  676. package/contracts/instance/module/component/IComponent.sol +0 -53
  677. package/contracts/instance/module/policy/IPolicy.sol +0 -60
  678. package/contracts/instance/module/policy/PolicyModule.sol +0 -76
  679. package/contracts/instance/module/pool/IPoolModule.sol +0 -41
  680. package/contracts/instance/module/pool/PoolModule.sol +0 -87
  681. package/contracts/instance/module/risk/IRisk.sol +0 -10
  682. package/contracts/instance/module/risk/RiskModule.sol +0 -8
  683. package/contracts/instance/module/treasury/ITreasury.sol +0 -103
  684. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  685. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
  686. package/contracts/instance/service/ComponentOwnerService.sol +0 -170
  687. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  688. package/contracts/instance/service/IPoolService.sol +0 -30
  689. package/contracts/instance/service/IProductService.sol +0 -58
  690. package/contracts/instance/service/PoolService.sol +0 -123
  691. package/contracts/instance/service/ProductService.sol +0 -354
  692. package/contracts/registry/IChainNft.sol +0 -21
  693. package/contracts/registry/IRegistryLinked.sol +0 -8
  694. package/contracts/shared/ERC165.sol +0 -21
  695. package/contracts/shared/IOwnable.sol +0 -6
  696. package/contracts/shared/IVersionable.sol +0 -52
  697. package/contracts/shared/Versionable.sol +0 -89
  698. package/contracts/test/TestFee.sol +0 -25
  699. package/contracts/test/TestPool.sol +0 -22
  700. package/contracts/test/TestProduct.sol +0 -44
  701. package/contracts/test/TestRegisterable.sol +0 -19
  702. package/contracts/test/TestRoleId.sol +0 -14
  703. package/contracts/test/TestService.sol +0 -32
  704. package/contracts/test/TestToken.sol +0 -26
  705. package/contracts/test/TestVersion.sol +0 -44
  706. package/contracts/test/TestVersionable.sol +0 -17
  707. package/contracts/types/ChainId.sol +0 -38
  708. package/contracts/types/Fee.sol +0 -51
  709. package/contracts/types/NftIdSet.sol +0 -60
  710. package/contracts/types/ObjectType.sol +0 -115
  711. package/contracts/types/RoleId.sol +0 -38
  712. package/contracts/types/UFixed.sol +0 -209
@@ -0,0 +1,1706 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PoolService",
4
+ "sourceName": "contracts/pool/PoolService.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": "NftId",
48
+ "name": "componentNftId",
49
+ "type": "uint96"
50
+ }
51
+ ],
52
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "componentNftId",
60
+ "type": "uint96"
61
+ },
62
+ {
63
+ "internalType": "ObjectType",
64
+ "name": "expectedType",
65
+ "type": "uint8"
66
+ },
67
+ {
68
+ "internalType": "ObjectType",
69
+ "name": "actualType",
70
+ "type": "uint8"
71
+ }
72
+ ],
73
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "NftId",
80
+ "name": "nftId",
81
+ "type": "uint96"
82
+ }
83
+ ],
84
+ "name": "ErrorNftOwnableAlreadyLinked",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "address",
91
+ "name": "contractAddress",
92
+ "type": "address"
93
+ }
94
+ ],
95
+ "name": "ErrorNftOwnableContractNotRegistered",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [],
100
+ "name": "ErrorNftOwnableInitialOwnerZero",
101
+ "type": "error"
102
+ },
103
+ {
104
+ "inputs": [
105
+ {
106
+ "internalType": "address",
107
+ "name": "account",
108
+ "type": "address"
109
+ }
110
+ ],
111
+ "name": "ErrorNftOwnableNotOwner",
112
+ "type": "error"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "address",
118
+ "name": "registryAddress",
119
+ "type": "address"
120
+ }
121
+ ],
122
+ "name": "ErrorNotRegistry",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [],
127
+ "name": "ErrorPoolServiceAmountIsZero",
128
+ "type": "error"
129
+ },
130
+ {
131
+ "inputs": [
132
+ {
133
+ "internalType": "NftId",
134
+ "name": "poolNftId",
135
+ "type": "uint96"
136
+ }
137
+ ],
138
+ "name": "ErrorPoolServiceBundleOwnerRoleAlreadySet",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [
143
+ {
144
+ "internalType": "NftId",
145
+ "name": "bundleNftId",
146
+ "type": "uint96"
147
+ },
148
+ {
149
+ "internalType": "NftId",
150
+ "name": "poolNftId",
151
+ "type": "uint96"
152
+ }
153
+ ],
154
+ "name": "ErrorPoolServiceBundlePoolMismatch",
155
+ "type": "error"
156
+ },
157
+ {
158
+ "inputs": [
159
+ {
160
+ "internalType": "Amount",
161
+ "name": "expectedAmount",
162
+ "type": "uint96"
163
+ },
164
+ {
165
+ "internalType": "Amount",
166
+ "name": "actualAmount",
167
+ "type": "uint96"
168
+ }
169
+ ],
170
+ "name": "ErrorPoolServiceInvalidTransferAmount",
171
+ "type": "error"
172
+ },
173
+ {
174
+ "inputs": [
175
+ {
176
+ "internalType": "NftId",
177
+ "name": "poolNftId",
178
+ "type": "uint96"
179
+ },
180
+ {
181
+ "internalType": "Amount",
182
+ "name": "maxCapitalAmount",
183
+ "type": "uint96"
184
+ },
185
+ {
186
+ "internalType": "Amount",
187
+ "name": "capitalAmount",
188
+ "type": "uint96"
189
+ },
190
+ {
191
+ "internalType": "Amount",
192
+ "name": "amountToBeAdded",
193
+ "type": "uint96"
194
+ }
195
+ ],
196
+ "name": "ErrorPoolServiceMaxCapitalAmountExceeded",
197
+ "type": "error"
198
+ },
199
+ {
200
+ "inputs": [
201
+ {
202
+ "internalType": "address",
203
+ "name": "wallet",
204
+ "type": "address"
205
+ },
206
+ {
207
+ "internalType": "address",
208
+ "name": "spender",
209
+ "type": "address"
210
+ },
211
+ {
212
+ "internalType": "uint256",
213
+ "name": "allowance",
214
+ "type": "uint256"
215
+ },
216
+ {
217
+ "internalType": "uint256",
218
+ "name": "amount",
219
+ "type": "uint256"
220
+ }
221
+ ],
222
+ "name": "ErrorPoolServiceWalletAllowanceTooSmall",
223
+ "type": "error"
224
+ },
225
+ {
226
+ "inputs": [],
227
+ "name": "ErrorServiceNotImplemented",
228
+ "type": "error"
229
+ },
230
+ {
231
+ "inputs": [],
232
+ "name": "InvalidInitialization",
233
+ "type": "error"
234
+ },
235
+ {
236
+ "inputs": [],
237
+ "name": "NotInitializing",
238
+ "type": "error"
239
+ },
240
+ {
241
+ "anonymous": false,
242
+ "inputs": [
243
+ {
244
+ "indexed": false,
245
+ "internalType": "address",
246
+ "name": "authority",
247
+ "type": "address"
248
+ }
249
+ ],
250
+ "name": "AuthorityUpdated",
251
+ "type": "event"
252
+ },
253
+ {
254
+ "anonymous": false,
255
+ "inputs": [
256
+ {
257
+ "indexed": false,
258
+ "internalType": "uint64",
259
+ "name": "version",
260
+ "type": "uint64"
261
+ }
262
+ ],
263
+ "name": "Initialized",
264
+ "type": "event"
265
+ },
266
+ {
267
+ "anonymous": false,
268
+ "inputs": [
269
+ {
270
+ "indexed": false,
271
+ "internalType": "NftId",
272
+ "name": "instanceNftId",
273
+ "type": "uint96"
274
+ },
275
+ {
276
+ "indexed": false,
277
+ "internalType": "NftId",
278
+ "name": "poolNftId",
279
+ "type": "uint96"
280
+ },
281
+ {
282
+ "indexed": false,
283
+ "internalType": "NftId",
284
+ "name": "bundleNftId",
285
+ "type": "uint96"
286
+ }
287
+ ],
288
+ "name": "LogPoolServiceBundleClosed",
289
+ "type": "event"
290
+ },
291
+ {
292
+ "anonymous": false,
293
+ "inputs": [
294
+ {
295
+ "indexed": false,
296
+ "internalType": "NftId",
297
+ "name": "instanceNftId",
298
+ "type": "uint96"
299
+ },
300
+ {
301
+ "indexed": false,
302
+ "internalType": "NftId",
303
+ "name": "poolNftId",
304
+ "type": "uint96"
305
+ },
306
+ {
307
+ "indexed": false,
308
+ "internalType": "NftId",
309
+ "name": "bundleNftId",
310
+ "type": "uint96"
311
+ }
312
+ ],
313
+ "name": "LogPoolServiceBundleCreated",
314
+ "type": "event"
315
+ },
316
+ {
317
+ "anonymous": false,
318
+ "inputs": [
319
+ {
320
+ "indexed": false,
321
+ "internalType": "NftId",
322
+ "name": "poolNftId",
323
+ "type": "uint96"
324
+ },
325
+ {
326
+ "indexed": false,
327
+ "internalType": "RoleId",
328
+ "name": "bundleOwnerRole",
329
+ "type": "uint64"
330
+ }
331
+ ],
332
+ "name": "LogPoolServiceBundleOwnerRoleSet",
333
+ "type": "event"
334
+ },
335
+ {
336
+ "anonymous": false,
337
+ "inputs": [
338
+ {
339
+ "indexed": false,
340
+ "internalType": "NftId",
341
+ "name": "instanceNftId",
342
+ "type": "uint96"
343
+ },
344
+ {
345
+ "indexed": false,
346
+ "internalType": "NftId",
347
+ "name": "poolNftId",
348
+ "type": "uint96"
349
+ },
350
+ {
351
+ "indexed": false,
352
+ "internalType": "NftId",
353
+ "name": "bundleNftId",
354
+ "type": "uint96"
355
+ },
356
+ {
357
+ "indexed": false,
358
+ "internalType": "Amount",
359
+ "name": "amount",
360
+ "type": "uint96"
361
+ },
362
+ {
363
+ "indexed": false,
364
+ "internalType": "Amount",
365
+ "name": "netAmount",
366
+ "type": "uint96"
367
+ }
368
+ ],
369
+ "name": "LogPoolServiceBundleStaked",
370
+ "type": "event"
371
+ },
372
+ {
373
+ "anonymous": false,
374
+ "inputs": [
375
+ {
376
+ "indexed": false,
377
+ "internalType": "NftId",
378
+ "name": "instanceNftId",
379
+ "type": "uint96"
380
+ },
381
+ {
382
+ "indexed": false,
383
+ "internalType": "NftId",
384
+ "name": "poolNftId",
385
+ "type": "uint96"
386
+ },
387
+ {
388
+ "indexed": false,
389
+ "internalType": "NftId",
390
+ "name": "bundleNftId",
391
+ "type": "uint96"
392
+ },
393
+ {
394
+ "indexed": false,
395
+ "internalType": "Amount",
396
+ "name": "amount",
397
+ "type": "uint96"
398
+ }
399
+ ],
400
+ "name": "LogPoolServiceBundleUnstaked",
401
+ "type": "event"
402
+ },
403
+ {
404
+ "anonymous": false,
405
+ "inputs": [
406
+ {
407
+ "indexed": false,
408
+ "internalType": "NftId",
409
+ "name": "poolNftId",
410
+ "type": "uint96"
411
+ },
412
+ {
413
+ "indexed": false,
414
+ "internalType": "Amount",
415
+ "name": "previousMaxCapitalAmount",
416
+ "type": "uint96"
417
+ },
418
+ {
419
+ "indexed": false,
420
+ "internalType": "Amount",
421
+ "name": "currentMaxCapitalAmount",
422
+ "type": "uint96"
423
+ }
424
+ ],
425
+ "name": "LogPoolServiceMaxCapitalAmountUpdated",
426
+ "type": "event"
427
+ },
428
+ {
429
+ "inputs": [],
430
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
431
+ "outputs": [
432
+ {
433
+ "internalType": "bytes32",
434
+ "name": "",
435
+ "type": "bytes32"
436
+ }
437
+ ],
438
+ "stateMutability": "view",
439
+ "type": "function"
440
+ },
441
+ {
442
+ "inputs": [],
443
+ "name": "REGISTERABLE_LOCATION_V1",
444
+ "outputs": [
445
+ {
446
+ "internalType": "bytes32",
447
+ "name": "",
448
+ "type": "bytes32"
449
+ }
450
+ ],
451
+ "stateMutability": "view",
452
+ "type": "function"
453
+ },
454
+ {
455
+ "inputs": [],
456
+ "name": "authority",
457
+ "outputs": [
458
+ {
459
+ "internalType": "address",
460
+ "name": "",
461
+ "type": "address"
462
+ }
463
+ ],
464
+ "stateMutability": "view",
465
+ "type": "function"
466
+ },
467
+ {
468
+ "inputs": [
469
+ {
470
+ "internalType": "UFixed",
471
+ "name": "collateralizationLevel",
472
+ "type": "uint256"
473
+ },
474
+ {
475
+ "internalType": "UFixed",
476
+ "name": "retentionLevel",
477
+ "type": "uint256"
478
+ },
479
+ {
480
+ "internalType": "Amount",
481
+ "name": "sumInsuredAmount",
482
+ "type": "uint96"
483
+ }
484
+ ],
485
+ "name": "calculateRequiredCollateral",
486
+ "outputs": [
487
+ {
488
+ "internalType": "Amount",
489
+ "name": "localCollateralAmount",
490
+ "type": "uint96"
491
+ },
492
+ {
493
+ "internalType": "Amount",
494
+ "name": "totalCollateralAmount",
495
+ "type": "uint96"
496
+ }
497
+ ],
498
+ "stateMutability": "pure",
499
+ "type": "function"
500
+ },
501
+ {
502
+ "inputs": [
503
+ {
504
+ "internalType": "contract InstanceReader",
505
+ "name": "instanceReader",
506
+ "type": "address"
507
+ },
508
+ {
509
+ "internalType": "NftId",
510
+ "name": "productNftId",
511
+ "type": "uint96"
512
+ },
513
+ {
514
+ "internalType": "Amount",
515
+ "name": "sumInsuredAmount",
516
+ "type": "uint96"
517
+ }
518
+ ],
519
+ "name": "calculateRequiredCollateral",
520
+ "outputs": [
521
+ {
522
+ "internalType": "Amount",
523
+ "name": "localCollateralAmount",
524
+ "type": "uint96"
525
+ },
526
+ {
527
+ "internalType": "Amount",
528
+ "name": "totalCollateralAmount",
529
+ "type": "uint96"
530
+ }
531
+ ],
532
+ "stateMutability": "view",
533
+ "type": "function"
534
+ },
535
+ {
536
+ "inputs": [
537
+ {
538
+ "internalType": "NftId",
539
+ "name": "bundleNftId",
540
+ "type": "uint96"
541
+ }
542
+ ],
543
+ "name": "closeBundle",
544
+ "outputs": [],
545
+ "stateMutability": "nonpayable",
546
+ "type": "function"
547
+ },
548
+ {
549
+ "inputs": [
550
+ {
551
+ "internalType": "address",
552
+ "name": "bundleOwner",
553
+ "type": "address"
554
+ },
555
+ {
556
+ "components": [
557
+ {
558
+ "internalType": "UFixed",
559
+ "name": "fractionalFee",
560
+ "type": "uint256"
561
+ },
562
+ {
563
+ "internalType": "uint256",
564
+ "name": "fixedFee",
565
+ "type": "uint256"
566
+ }
567
+ ],
568
+ "internalType": "struct Fee",
569
+ "name": "fee",
570
+ "type": "tuple"
571
+ },
572
+ {
573
+ "internalType": "Amount",
574
+ "name": "stakingAmount",
575
+ "type": "uint96"
576
+ },
577
+ {
578
+ "internalType": "Seconds",
579
+ "name": "lifetime",
580
+ "type": "uint40"
581
+ },
582
+ {
583
+ "internalType": "bytes",
584
+ "name": "filter",
585
+ "type": "bytes"
586
+ }
587
+ ],
588
+ "name": "createBundle",
589
+ "outputs": [
590
+ {
591
+ "internalType": "NftId",
592
+ "name": "bundleNftId",
593
+ "type": "uint96"
594
+ }
595
+ ],
596
+ "stateMutability": "nonpayable",
597
+ "type": "function"
598
+ },
599
+ {
600
+ "inputs": [],
601
+ "name": "getDomain",
602
+ "outputs": [
603
+ {
604
+ "internalType": "ObjectType",
605
+ "name": "serviceDomain",
606
+ "type": "uint8"
607
+ }
608
+ ],
609
+ "stateMutability": "pure",
610
+ "type": "function"
611
+ },
612
+ {
613
+ "inputs": [],
614
+ "name": "getInitialInfo",
615
+ "outputs": [
616
+ {
617
+ "components": [
618
+ {
619
+ "internalType": "NftId",
620
+ "name": "nftId",
621
+ "type": "uint96"
622
+ },
623
+ {
624
+ "internalType": "NftId",
625
+ "name": "parentNftId",
626
+ "type": "uint96"
627
+ },
628
+ {
629
+ "internalType": "ObjectType",
630
+ "name": "objectType",
631
+ "type": "uint8"
632
+ },
633
+ {
634
+ "internalType": "bool",
635
+ "name": "isInterceptor",
636
+ "type": "bool"
637
+ },
638
+ {
639
+ "internalType": "address",
640
+ "name": "objectAddress",
641
+ "type": "address"
642
+ },
643
+ {
644
+ "internalType": "address",
645
+ "name": "initialOwner",
646
+ "type": "address"
647
+ },
648
+ {
649
+ "internalType": "bytes",
650
+ "name": "data",
651
+ "type": "bytes"
652
+ }
653
+ ],
654
+ "internalType": "struct IRegistry.ObjectInfo",
655
+ "name": "info",
656
+ "type": "tuple"
657
+ }
658
+ ],
659
+ "stateMutability": "view",
660
+ "type": "function"
661
+ },
662
+ {
663
+ "inputs": [],
664
+ "name": "getNftId",
665
+ "outputs": [
666
+ {
667
+ "internalType": "NftId",
668
+ "name": "",
669
+ "type": "uint96"
670
+ }
671
+ ],
672
+ "stateMutability": "view",
673
+ "type": "function"
674
+ },
675
+ {
676
+ "inputs": [],
677
+ "name": "getOwner",
678
+ "outputs": [
679
+ {
680
+ "internalType": "address",
681
+ "name": "",
682
+ "type": "address"
683
+ }
684
+ ],
685
+ "stateMutability": "view",
686
+ "type": "function"
687
+ },
688
+ {
689
+ "inputs": [],
690
+ "name": "getRegistry",
691
+ "outputs": [
692
+ {
693
+ "internalType": "contract IRegistry",
694
+ "name": "",
695
+ "type": "address"
696
+ }
697
+ ],
698
+ "stateMutability": "view",
699
+ "type": "function"
700
+ },
701
+ {
702
+ "inputs": [],
703
+ "name": "getRoleId",
704
+ "outputs": [
705
+ {
706
+ "internalType": "RoleId",
707
+ "name": "serviceRoleId",
708
+ "type": "uint64"
709
+ }
710
+ ],
711
+ "stateMutability": "pure",
712
+ "type": "function"
713
+ },
714
+ {
715
+ "inputs": [],
716
+ "name": "getVersion",
717
+ "outputs": [
718
+ {
719
+ "internalType": "Version",
720
+ "name": "",
721
+ "type": "uint24"
722
+ }
723
+ ],
724
+ "stateMutability": "pure",
725
+ "type": "function"
726
+ },
727
+ {
728
+ "inputs": [],
729
+ "name": "initializeERC165",
730
+ "outputs": [],
731
+ "stateMutability": "nonpayable",
732
+ "type": "function"
733
+ },
734
+ {
735
+ "inputs": [
736
+ {
737
+ "internalType": "address",
738
+ "name": "initialOwner",
739
+ "type": "address"
740
+ },
741
+ {
742
+ "internalType": "address",
743
+ "name": "registryAddress",
744
+ "type": "address"
745
+ }
746
+ ],
747
+ "name": "initializeNftOwnable",
748
+ "outputs": [],
749
+ "stateMutability": "nonpayable",
750
+ "type": "function"
751
+ },
752
+ {
753
+ "inputs": [
754
+ {
755
+ "internalType": "address",
756
+ "name": "registryAddress",
757
+ "type": "address"
758
+ },
759
+ {
760
+ "internalType": "NftId",
761
+ "name": "parentNftId",
762
+ "type": "uint96"
763
+ },
764
+ {
765
+ "internalType": "ObjectType",
766
+ "name": "objectType",
767
+ "type": "uint8"
768
+ },
769
+ {
770
+ "internalType": "bool",
771
+ "name": "isInterceptor",
772
+ "type": "bool"
773
+ },
774
+ {
775
+ "internalType": "address",
776
+ "name": "initialOwner",
777
+ "type": "address"
778
+ },
779
+ {
780
+ "internalType": "bytes",
781
+ "name": "registryData",
782
+ "type": "bytes"
783
+ }
784
+ ],
785
+ "name": "initializeRegisterable",
786
+ "outputs": [],
787
+ "stateMutability": "nonpayable",
788
+ "type": "function"
789
+ },
790
+ {
791
+ "inputs": [
792
+ {
793
+ "internalType": "address",
794
+ "name": "registryAddress",
795
+ "type": "address"
796
+ }
797
+ ],
798
+ "name": "initializeRegistryLinked",
799
+ "outputs": [],
800
+ "stateMutability": "nonpayable",
801
+ "type": "function"
802
+ },
803
+ {
804
+ "inputs": [
805
+ {
806
+ "internalType": "address",
807
+ "name": "registry",
808
+ "type": "address"
809
+ },
810
+ {
811
+ "internalType": "address",
812
+ "name": "authority",
813
+ "type": "address"
814
+ },
815
+ {
816
+ "internalType": "address",
817
+ "name": "initialOwner",
818
+ "type": "address"
819
+ }
820
+ ],
821
+ "name": "initializeService",
822
+ "outputs": [],
823
+ "stateMutability": "nonpayable",
824
+ "type": "function"
825
+ },
826
+ {
827
+ "inputs": [
828
+ {
829
+ "internalType": "address",
830
+ "name": "activatedBy",
831
+ "type": "address"
832
+ },
833
+ {
834
+ "internalType": "bytes",
835
+ "name": "data",
836
+ "type": "bytes"
837
+ }
838
+ ],
839
+ "name": "initializeVersionable",
840
+ "outputs": [],
841
+ "stateMutability": "nonpayable",
842
+ "type": "function"
843
+ },
844
+ {
845
+ "inputs": [],
846
+ "name": "isConsumingScheduledOp",
847
+ "outputs": [
848
+ {
849
+ "internalType": "bytes4",
850
+ "name": "",
851
+ "type": "bytes4"
852
+ }
853
+ ],
854
+ "stateMutability": "view",
855
+ "type": "function"
856
+ },
857
+ {
858
+ "inputs": [],
859
+ "name": "linkToRegisteredNftId",
860
+ "outputs": [
861
+ {
862
+ "internalType": "NftId",
863
+ "name": "nftId",
864
+ "type": "uint96"
865
+ }
866
+ ],
867
+ "stateMutability": "nonpayable",
868
+ "type": "function"
869
+ },
870
+ {
871
+ "inputs": [
872
+ {
873
+ "internalType": "contract IInstance",
874
+ "name": "instance",
875
+ "type": "address"
876
+ },
877
+ {
878
+ "internalType": "address",
879
+ "name": "token",
880
+ "type": "address"
881
+ },
882
+ {
883
+ "internalType": "NftId",
884
+ "name": "productNftId",
885
+ "type": "uint96"
886
+ },
887
+ {
888
+ "internalType": "NftId",
889
+ "name": "applicationNftId",
890
+ "type": "uint96"
891
+ },
892
+ {
893
+ "internalType": "NftId",
894
+ "name": "bundleNftId",
895
+ "type": "uint96"
896
+ },
897
+ {
898
+ "internalType": "Amount",
899
+ "name": "sumInsuredAmount",
900
+ "type": "uint96"
901
+ }
902
+ ],
903
+ "name": "lockCollateral",
904
+ "outputs": [
905
+ {
906
+ "internalType": "Amount",
907
+ "name": "localCollateralAmount",
908
+ "type": "uint96"
909
+ },
910
+ {
911
+ "internalType": "Amount",
912
+ "name": "totalCollateralAmount",
913
+ "type": "uint96"
914
+ }
915
+ ],
916
+ "stateMutability": "nonpayable",
917
+ "type": "function"
918
+ },
919
+ {
920
+ "inputs": [
921
+ {
922
+ "internalType": "NftId",
923
+ "name": "bundleNftId",
924
+ "type": "uint96"
925
+ },
926
+ {
927
+ "components": [
928
+ {
929
+ "internalType": "Amount",
930
+ "name": "productFeeAmount",
931
+ "type": "uint96"
932
+ },
933
+ {
934
+ "internalType": "Amount",
935
+ "name": "distributionFeeAndCommissionAmount",
936
+ "type": "uint96"
937
+ },
938
+ {
939
+ "internalType": "Amount",
940
+ "name": "poolPremiumAndFeeAmount",
941
+ "type": "uint96"
942
+ },
943
+ {
944
+ "internalType": "uint256",
945
+ "name": "netPremiumAmount",
946
+ "type": "uint256"
947
+ },
948
+ {
949
+ "internalType": "uint256",
950
+ "name": "fullPremiumAmount",
951
+ "type": "uint256"
952
+ },
953
+ {
954
+ "internalType": "uint256",
955
+ "name": "premiumAmount",
956
+ "type": "uint256"
957
+ },
958
+ {
959
+ "internalType": "uint256",
960
+ "name": "productFeeFixAmount",
961
+ "type": "uint256"
962
+ },
963
+ {
964
+ "internalType": "uint256",
965
+ "name": "poolFeeFixAmount",
966
+ "type": "uint256"
967
+ },
968
+ {
969
+ "internalType": "uint256",
970
+ "name": "bundleFeeFixAmount",
971
+ "type": "uint256"
972
+ },
973
+ {
974
+ "internalType": "uint256",
975
+ "name": "distributionFeeFixAmount",
976
+ "type": "uint256"
977
+ },
978
+ {
979
+ "internalType": "uint256",
980
+ "name": "productFeeVarAmount",
981
+ "type": "uint256"
982
+ },
983
+ {
984
+ "internalType": "uint256",
985
+ "name": "poolFeeVarAmount",
986
+ "type": "uint256"
987
+ },
988
+ {
989
+ "internalType": "uint256",
990
+ "name": "bundleFeeVarAmount",
991
+ "type": "uint256"
992
+ },
993
+ {
994
+ "internalType": "uint256",
995
+ "name": "distributionFeeVarAmount",
996
+ "type": "uint256"
997
+ },
998
+ {
999
+ "internalType": "uint256",
1000
+ "name": "distributionOwnerFeeFixAmount",
1001
+ "type": "uint256"
1002
+ },
1003
+ {
1004
+ "internalType": "uint256",
1005
+ "name": "distributionOwnerFeeVarAmount",
1006
+ "type": "uint256"
1007
+ },
1008
+ {
1009
+ "internalType": "uint256",
1010
+ "name": "commissionAmount",
1011
+ "type": "uint256"
1012
+ },
1013
+ {
1014
+ "internalType": "uint256",
1015
+ "name": "discountAmount",
1016
+ "type": "uint256"
1017
+ }
1018
+ ],
1019
+ "internalType": "struct IPolicy.Premium",
1020
+ "name": "premium",
1021
+ "type": "tuple"
1022
+ }
1023
+ ],
1024
+ "name": "processSale",
1025
+ "outputs": [],
1026
+ "stateMutability": "nonpayable",
1027
+ "type": "function"
1028
+ },
1029
+ {
1030
+ "inputs": [
1031
+ {
1032
+ "internalType": "contract IInstance",
1033
+ "name": "instance",
1034
+ "type": "address"
1035
+ },
1036
+ {
1037
+ "internalType": "address",
1038
+ "name": "token",
1039
+ "type": "address"
1040
+ },
1041
+ {
1042
+ "internalType": "NftId",
1043
+ "name": "policyNftId",
1044
+ "type": "uint96"
1045
+ },
1046
+ {
1047
+ "components": [
1048
+ {
1049
+ "internalType": "NftId",
1050
+ "name": "productNftId",
1051
+ "type": "uint96"
1052
+ },
1053
+ {
1054
+ "internalType": "NftId",
1055
+ "name": "bundleNftId",
1056
+ "type": "uint96"
1057
+ },
1058
+ {
1059
+ "internalType": "ReferralId",
1060
+ "name": "referralId",
1061
+ "type": "bytes8"
1062
+ },
1063
+ {
1064
+ "internalType": "RiskId",
1065
+ "name": "riskId",
1066
+ "type": "bytes8"
1067
+ },
1068
+ {
1069
+ "internalType": "Amount",
1070
+ "name": "sumInsuredAmount",
1071
+ "type": "uint96"
1072
+ },
1073
+ {
1074
+ "internalType": "Amount",
1075
+ "name": "premiumAmount",
1076
+ "type": "uint96"
1077
+ },
1078
+ {
1079
+ "internalType": "Amount",
1080
+ "name": "premiumPaidAmount",
1081
+ "type": "uint96"
1082
+ },
1083
+ {
1084
+ "internalType": "Seconds",
1085
+ "name": "lifetime",
1086
+ "type": "uint40"
1087
+ },
1088
+ {
1089
+ "internalType": "bytes",
1090
+ "name": "applicationData",
1091
+ "type": "bytes"
1092
+ },
1093
+ {
1094
+ "internalType": "bytes",
1095
+ "name": "processData",
1096
+ "type": "bytes"
1097
+ },
1098
+ {
1099
+ "internalType": "uint16",
1100
+ "name": "claimsCount",
1101
+ "type": "uint16"
1102
+ },
1103
+ {
1104
+ "internalType": "uint16",
1105
+ "name": "openClaimsCount",
1106
+ "type": "uint16"
1107
+ },
1108
+ {
1109
+ "internalType": "Amount",
1110
+ "name": "claimAmount",
1111
+ "type": "uint96"
1112
+ },
1113
+ {
1114
+ "internalType": "Amount",
1115
+ "name": "payoutAmount",
1116
+ "type": "uint96"
1117
+ },
1118
+ {
1119
+ "internalType": "Timestamp",
1120
+ "name": "activatedAt",
1121
+ "type": "uint40"
1122
+ },
1123
+ {
1124
+ "internalType": "Timestamp",
1125
+ "name": "expiredAt",
1126
+ "type": "uint40"
1127
+ },
1128
+ {
1129
+ "internalType": "Timestamp",
1130
+ "name": "closedAt",
1131
+ "type": "uint40"
1132
+ }
1133
+ ],
1134
+ "internalType": "struct IPolicy.PolicyInfo",
1135
+ "name": "policyInfo",
1136
+ "type": "tuple"
1137
+ },
1138
+ {
1139
+ "internalType": "Amount",
1140
+ "name": "payoutAmount",
1141
+ "type": "uint96"
1142
+ }
1143
+ ],
1144
+ "name": "reduceCollateral",
1145
+ "outputs": [],
1146
+ "stateMutability": "nonpayable",
1147
+ "type": "function"
1148
+ },
1149
+ {
1150
+ "inputs": [
1151
+ {
1152
+ "internalType": "bytes4",
1153
+ "name": "interfaceId",
1154
+ "type": "bytes4"
1155
+ }
1156
+ ],
1157
+ "name": "registerInterface",
1158
+ "outputs": [],
1159
+ "stateMutability": "nonpayable",
1160
+ "type": "function"
1161
+ },
1162
+ {
1163
+ "inputs": [
1164
+ {
1165
+ "internalType": "contract IInstance",
1166
+ "name": "instance",
1167
+ "type": "address"
1168
+ },
1169
+ {
1170
+ "internalType": "address",
1171
+ "name": "token",
1172
+ "type": "address"
1173
+ },
1174
+ {
1175
+ "internalType": "NftId",
1176
+ "name": "policyNftId",
1177
+ "type": "uint96"
1178
+ },
1179
+ {
1180
+ "components": [
1181
+ {
1182
+ "internalType": "NftId",
1183
+ "name": "productNftId",
1184
+ "type": "uint96"
1185
+ },
1186
+ {
1187
+ "internalType": "NftId",
1188
+ "name": "bundleNftId",
1189
+ "type": "uint96"
1190
+ },
1191
+ {
1192
+ "internalType": "ReferralId",
1193
+ "name": "referralId",
1194
+ "type": "bytes8"
1195
+ },
1196
+ {
1197
+ "internalType": "RiskId",
1198
+ "name": "riskId",
1199
+ "type": "bytes8"
1200
+ },
1201
+ {
1202
+ "internalType": "Amount",
1203
+ "name": "sumInsuredAmount",
1204
+ "type": "uint96"
1205
+ },
1206
+ {
1207
+ "internalType": "Amount",
1208
+ "name": "premiumAmount",
1209
+ "type": "uint96"
1210
+ },
1211
+ {
1212
+ "internalType": "Amount",
1213
+ "name": "premiumPaidAmount",
1214
+ "type": "uint96"
1215
+ },
1216
+ {
1217
+ "internalType": "Seconds",
1218
+ "name": "lifetime",
1219
+ "type": "uint40"
1220
+ },
1221
+ {
1222
+ "internalType": "bytes",
1223
+ "name": "applicationData",
1224
+ "type": "bytes"
1225
+ },
1226
+ {
1227
+ "internalType": "bytes",
1228
+ "name": "processData",
1229
+ "type": "bytes"
1230
+ },
1231
+ {
1232
+ "internalType": "uint16",
1233
+ "name": "claimsCount",
1234
+ "type": "uint16"
1235
+ },
1236
+ {
1237
+ "internalType": "uint16",
1238
+ "name": "openClaimsCount",
1239
+ "type": "uint16"
1240
+ },
1241
+ {
1242
+ "internalType": "Amount",
1243
+ "name": "claimAmount",
1244
+ "type": "uint96"
1245
+ },
1246
+ {
1247
+ "internalType": "Amount",
1248
+ "name": "payoutAmount",
1249
+ "type": "uint96"
1250
+ },
1251
+ {
1252
+ "internalType": "Timestamp",
1253
+ "name": "activatedAt",
1254
+ "type": "uint40"
1255
+ },
1256
+ {
1257
+ "internalType": "Timestamp",
1258
+ "name": "expiredAt",
1259
+ "type": "uint40"
1260
+ },
1261
+ {
1262
+ "internalType": "Timestamp",
1263
+ "name": "closedAt",
1264
+ "type": "uint40"
1265
+ }
1266
+ ],
1267
+ "internalType": "struct IPolicy.PolicyInfo",
1268
+ "name": "policyInfo",
1269
+ "type": "tuple"
1270
+ }
1271
+ ],
1272
+ "name": "releaseCollateral",
1273
+ "outputs": [],
1274
+ "stateMutability": "nonpayable",
1275
+ "type": "function"
1276
+ },
1277
+ {
1278
+ "inputs": [
1279
+ {
1280
+ "internalType": "address",
1281
+ "name": "newAuthority",
1282
+ "type": "address"
1283
+ }
1284
+ ],
1285
+ "name": "setAuthority",
1286
+ "outputs": [],
1287
+ "stateMutability": "nonpayable",
1288
+ "type": "function"
1289
+ },
1290
+ {
1291
+ "inputs": [
1292
+ {
1293
+ "internalType": "RoleId",
1294
+ "name": "bundleOwnerRole",
1295
+ "type": "uint64"
1296
+ }
1297
+ ],
1298
+ "name": "setBundleOwnerRole",
1299
+ "outputs": [],
1300
+ "stateMutability": "nonpayable",
1301
+ "type": "function"
1302
+ },
1303
+ {
1304
+ "inputs": [
1305
+ {
1306
+ "components": [
1307
+ {
1308
+ "internalType": "UFixed",
1309
+ "name": "fractionalFee",
1310
+ "type": "uint256"
1311
+ },
1312
+ {
1313
+ "internalType": "uint256",
1314
+ "name": "fixedFee",
1315
+ "type": "uint256"
1316
+ }
1317
+ ],
1318
+ "internalType": "struct Fee",
1319
+ "name": "poolFee",
1320
+ "type": "tuple"
1321
+ },
1322
+ {
1323
+ "components": [
1324
+ {
1325
+ "internalType": "UFixed",
1326
+ "name": "fractionalFee",
1327
+ "type": "uint256"
1328
+ },
1329
+ {
1330
+ "internalType": "uint256",
1331
+ "name": "fixedFee",
1332
+ "type": "uint256"
1333
+ }
1334
+ ],
1335
+ "internalType": "struct Fee",
1336
+ "name": "stakingFee",
1337
+ "type": "tuple"
1338
+ },
1339
+ {
1340
+ "components": [
1341
+ {
1342
+ "internalType": "UFixed",
1343
+ "name": "fractionalFee",
1344
+ "type": "uint256"
1345
+ },
1346
+ {
1347
+ "internalType": "uint256",
1348
+ "name": "fixedFee",
1349
+ "type": "uint256"
1350
+ }
1351
+ ],
1352
+ "internalType": "struct Fee",
1353
+ "name": "performanceFee",
1354
+ "type": "tuple"
1355
+ }
1356
+ ],
1357
+ "name": "setFees",
1358
+ "outputs": [],
1359
+ "stateMutability": "nonpayable",
1360
+ "type": "function"
1361
+ },
1362
+ {
1363
+ "inputs": [
1364
+ {
1365
+ "internalType": "Amount",
1366
+ "name": "maxCapitalAmount",
1367
+ "type": "uint96"
1368
+ }
1369
+ ],
1370
+ "name": "setMaxCapitalAmount",
1371
+ "outputs": [],
1372
+ "stateMutability": "nonpayable",
1373
+ "type": "function"
1374
+ },
1375
+ {
1376
+ "inputs": [
1377
+ {
1378
+ "internalType": "NftId",
1379
+ "name": "bundleNftId",
1380
+ "type": "uint96"
1381
+ },
1382
+ {
1383
+ "internalType": "Amount",
1384
+ "name": "amount",
1385
+ "type": "uint96"
1386
+ }
1387
+ ],
1388
+ "name": "stake",
1389
+ "outputs": [
1390
+ {
1391
+ "internalType": "Amount",
1392
+ "name": "netAmount",
1393
+ "type": "uint96"
1394
+ }
1395
+ ],
1396
+ "stateMutability": "nonpayable",
1397
+ "type": "function"
1398
+ },
1399
+ {
1400
+ "inputs": [
1401
+ {
1402
+ "internalType": "bytes4",
1403
+ "name": "interfaceId",
1404
+ "type": "bytes4"
1405
+ }
1406
+ ],
1407
+ "name": "supportsInterface",
1408
+ "outputs": [
1409
+ {
1410
+ "internalType": "bool",
1411
+ "name": "",
1412
+ "type": "bool"
1413
+ }
1414
+ ],
1415
+ "stateMutability": "view",
1416
+ "type": "function"
1417
+ },
1418
+ {
1419
+ "inputs": [
1420
+ {
1421
+ "internalType": "NftId",
1422
+ "name": "bundleNftId",
1423
+ "type": "uint96"
1424
+ },
1425
+ {
1426
+ "internalType": "Amount",
1427
+ "name": "amount",
1428
+ "type": "uint96"
1429
+ }
1430
+ ],
1431
+ "name": "unstake",
1432
+ "outputs": [
1433
+ {
1434
+ "internalType": "Amount",
1435
+ "name": "netAmount",
1436
+ "type": "uint96"
1437
+ }
1438
+ ],
1439
+ "stateMutability": "nonpayable",
1440
+ "type": "function"
1441
+ },
1442
+ {
1443
+ "inputs": [
1444
+ {
1445
+ "internalType": "bytes",
1446
+ "name": "data",
1447
+ "type": "bytes"
1448
+ }
1449
+ ],
1450
+ "name": "upgradeVersionable",
1451
+ "outputs": [],
1452
+ "stateMutability": "nonpayable",
1453
+ "type": "function"
1454
+ }
1455
+ ],
1456
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61573d806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610208575f3560e01c80636c741e781161011f5780638e32e979116100a9578063ada9652e11610079578063ada9652e146104f2578063b68d180914610506578063bf7e214f14610515578063d0d63b091461051d578063f7c34ee014610530575f80fd5b80638e32e979146104985780638fb36037146104ab578063a3c26052146104cc578063a5f4c731146104df575f80fd5b80637d42d397116100ef5780637d42d39714610444578063826787661461045757806384a710fa1461046a57806384d1f7cf1461047d578063893d20e814610490575f80fd5b80636c741e78146103c85780637225ed01146103e85780637738eb861461041e5780637a9e5e4b14610431575f80fd5b806327bb7a33116101a05780635ab1bd53116101705780635ab1bd531461034f578063644c45e014610374578063673ad94f14610391578063675393bf146103a25780636c1e9dff146103b5575f80fd5b806327bb7a331461030e578063329d6e741461032157806336fc697e1461033457806349bb9e4b1461033c575f80fd5b80631ddb9757116101db5780631ddb97571461029e5780631eff4b22146102b3578063214cdb80146102e857806326889b09146102fb575f80fd5b806301ffc9a71461020c5780630d8e6e2c1461024d5780630fec111c14610269578063138461e01461027e575b5f80fd5b61023861021a3660046141e2565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610255610543565b60405162ffffff9091168152602001610244565b6102716105ca565b6040516102449190614237565b610286610756565b6040516001600160601b039091168152602001610244565b6102b16102ac36600461467c565b610760565b005b6102da7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610244565b6102b16102f63660046141e2565b6108db565b610286610309366004614700565b610907565b6102b161031c366004614752565b61109c565b6102b161032f3660046147e5565b611141565b6102b161128c565b6102b161034a366004614816565b6112d1565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610244565b5f805160206156a8833981519152546001600160601b0316610286565b6102b161039f366004614862565b50565b6102b16103b036600461487d565b6113cd565b6102866103c3366004614700565b6114d9565b6103d0611aac565b6040516001600160401b039091168152602001610244565b6103fe6103f6366004614898565b928392509050565b604080516001600160601b03938416815292909116602083015201610244565b61028661042c3660046148fd565b611ba3565b6102b161043f36600461487d565b611ee1565b6102b16104523660046149b1565b611f63565b6102b1610465366004614aef565b6123d8565b6103fe610478366004614b32565b6125a0565b6103fe61048b366004614b6f565b61269d565b61035c612891565b6102b16104a6366004614bed565b6129c2565b6104b3612aff565b6040516001600160e01b03199091168152602001610244565b6102b16104da366004614c3e565b612b34565b6102b16104ed366004614c59565b612da6565b6102da5f805160206156a883398151915281565b604051600f8152602001610244565b61035c612e6d565b6102b161052b366004614862565b612e88565b6102b161053e366004614cc9565b612fae565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156105a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105c59190614cf5565b905090565b6105d26141a5565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610648573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066c9190614d22565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016106b4612891565b6001600160a01b031681526020018260010180546106d190614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546106fd90614d3d565b80156107485780601f1061071f57610100808354040283529160200191610748565b820191905f5260205f20905b81548152906001019060200180831161072b57829003601f168201915b505050505081525091505090565b5f6105c530613024565b61076c335b5f3661321d565b600254602083015160405163ad328d9f60e01b81526001600160a01b039092169163ad328d9f916107a591899188918790600401614d75565b5f604051808303815f87803b1580156107bc575f80fd5b505af11580156107ce573d5f803e3d5ffd5b5050505060065f9054906101000a90046001600160a01b03166001600160a01b031663d44f8a4b866001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610831573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108559190614d22565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038816602482015290841660448201526064016020604051808303815f875af11580156108af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108d39190614d22565b505050505050565b6108e3613313565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f8080610914600f61334b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610956573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061097a9190614da7565b90505f826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109dd9190614da7565b604051634793b4ab60e01b81526001600160601b03891660048201529091505f906001600160a01b03841690634793b4ab906024015f60405180830381865afa158015610a2c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a539190810190614e4b565b9050610a62815f0151866133e7565b15610a9857604051630a49ea2360e01b81526001600160601b03808a166004830152861660248201526044015b60405180910390fd5b604051630a4d29dd60e31b81526001600160601b038816600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610aee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b129190614f1a565b15610b305760405163a37dcd7960e01b815260040160405180910390fd5b600254604051631696791160e11b81526001600160a01b0386811660048301526001600160601b03808c1660248401528a1660448301525f921690632d2cf222906064016020604051808303815f875af1158015610b90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bb49190614d22565b905060035f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a284888473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c479190614d22565b6040518563ffffffff1660e01b8152600401610c669493929190614d75565b5f604051808303815f87803b158015610c7d575f80fd5b505af1158015610c8f573d5f803e3d5ffd5b505060405163f0ea17c360e01b81526001600160601b03891660048201525f92506001600160a01b038716915063f0ea17c3906024015f60405180830381865afa158015610cdf573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d069190810190614f40565b608081015160408083015160608401519151636eb1769f60e11b81526001600160a01b038085166004830152928316602482015293945091925f9183169063dd62ed3e90604401602060405180830381865afa158015610d68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8c9190615018565b60405163046e44af60e11b81526001600160601b038716600482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610de5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e099190615018565b811015610ecd57606084015160405163046e44af60e11b81526001600160601b038e166004820152849190839073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024015b602060405180830381865af4158015610e71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e959190615018565b604051631011542d60e21b81526001600160a01b03948516600482015293909216602484015260448301526064820152608401610a8f565b50505f610ee26001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038e1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610f2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f539190614da7565b606084015160405163c661667d60e01b81526001600160a01b03858116600483015280841660248301526001600160601b038816604483015292935091169063c661667d906064015f604051808303815f87803b158015610fb2575f80fd5b505af1158015610fc4573d5f803e3d5ffd5b505050507fa9e4ee5628423184bfcde002aae428406aeac6b337e1acf560282b155e358527886001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611025573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110499190614d22565b8a8e8760405161108294939291906001600160601b03948516815292841660208401529083166040830152909116606082015260800190565b60405180910390a150919750505050505050505b92915050565b6110a4613313565b6110ae8287612fae565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301611137838261507a565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c611163610543565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156111a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111c5919061513f565b5f805160206156e88339815191528054600160401b900460ff16806111f7575080546001600160401b03808416911610155b156112155760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561123f83613473565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b611294613313565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f805160206156e88339815191528054600160401b810460ff1615906001600160401b03165f811580156113025750825b90505f826001600160401b0316600114801561131d5750303b155b90508115801561132b575080155b156113495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561137357845460ff60401b1916600160401b1785555b61137d878761347b565b83156113c457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6113d5613313565b806001600160a01b03163b5f0361140a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a8f565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015611484575060408051601f3d908101601f1916820190925261148191810190614f1a565b60015b6114ac5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a8f565b806114d55760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610a8f565b5050565b5f80806114e6600f61334b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611528573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154c9190614da7565b604051634793b4ab60e01b81526001600160601b03881660048201529091505f906001600160a01b03831690634793b4ab906024015f60405180830381865afa15801561159b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526115c29190810190614e4b565b6040516357f80bbf60e01b81526001600160601b03861660048201529091505f906001600160a01b038416906357f80bbf906024016101a060405180830381865afa158015611613573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611637919061515a565b9050611646825f0151866133e7565b1561167757604051630a49ea2360e01b81526001600160601b03808a16600483015286166024820152604401610a8f565b6040516308a390bb60e21b81526001600160601b03861660048201525f906001600160a01b0385169063228e42ec90602401602060405180830381865afa1580156116c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116e89190614d22565b90506117016116f789836136be565b8360200151613743565b15611748576020820151604051630d749d9d60e01b81526001600160601b038089166004830152918216602482015281831660448201529089166064820152608401610a8f565b5f8073__$58e11c6004c5796aaa8c56e718245e69a2$__639ed246ea61176e888b61378d565b6040516001600160e01b031960e084901b1681528151600482015260209091015160248201526001600160601b038d1660448201526064016040805180830381865af41580156117c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117e49190615219565b9150915060035f9054906101000a90046001600160a01b03166001600160a01b031663d56cd3d5886001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611847573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061186b9190614da7565b8a84866040518563ffffffff1660e01b815260040161188d9493929190614d75565b5f604051808303815f87803b1580156118a4575f80fd5b505af11580156118b6573d5f803e3d5ffd5b50506002546040516325fa796b60e01b81526001600160a01b0390911692506325fa796b9150611913908a908f9086906004016001600160a01b039390931683526001600160601b03918216602084015216604082015260600190565b5f604051808303815f87803b15801561192a575f80fd5b505af115801561193c573d5f803e3d5ffd5b505050505f6119536001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038e1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156119a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c49190614da7565b90506119d2878a838e613896565b7fa397b0d38fe748a8c29cce53eab5736ef0c29c156e7a9586ae8b88a8557b4145886001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a539190614d22565b8a8e8e86604051611a959594939291906001600160601b0395861681529385166020850152918416604084015283166060830152909116608082015260a00190565b60405180910390a150505050505050505092915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600f604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b3b9190615251565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015611b7f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105c5919061513f565b5f8080611bb0600f61334b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bf2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c169190614da7565b90505f8073__$58e11c6004c5796aaa8c56e718245e69a2$__639ed246ea611c3e858861378d565b6040516001600160e01b031960e084901b1681528151600482015260209091015160248201526001600160601b038d1660448201526064016040805180830381865af4158015611c90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cb49190615219565b9150915060025f9054906101000a90046001600160a01b03166001600160a01b031663e283b4a985878f8f868f8f8f6040518963ffffffff1660e01b8152600401611d06989796959493929190615294565b6020604051808303815f875af1158015611d22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d469190614d22565b955060035f9054906101000a90046001600160a01b03166001600160a01b031663d56cd3d5856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dcb9190614da7565b8784866040518563ffffffff1660e01b8152600401611ded9493929190614d75565b5f604051808303815f87803b158015611e04575f80fd5b505af1158015611e16573d5f803e3d5ffd5b50505050611e2683868e8d613896565b7f0dcadf661b8b2888423f78a848a77785b4dc0138395b12584835f6a65dfcea79846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea79190614d22565b604080516001600160601b03928316815282891660208201529189169082015260600160405180910390a150505050509695505050505050565b33611eea612e6d565b6001600160a01b0316816001600160a01b031614611f255760405162d1953b60e31b81526001600160a01b0382166004820152602401610a8f565b816001600160a01b03163b5f03611f5a576040516361798f2f60e11b81526001600160a01b0383166004820152602401610a8f565b6114d582613b63565b611f6c33610765565b5f611f7f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091505f906001600160a01b0383169063a48f42e0906024015f60405180830381865afa158015611fce573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611ff59190810190615310565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091505f906001600160a01b0384169063a48f42e0906024015f60405180830381865afa15801561204a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120719190810190615310565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091505f906001600160a01b0385169063a48f42e0906024015f60405180830381865afa1580156120c6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120ed9190810190615310565b90505f816080015190505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968861016001518960e0015161212791906153e0565b6040518263ffffffff1660e01b815260040161214591815260200190565b602060405180830381865af4158015612160573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121849190614d22565b90505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968961018001518a61010001516121b791906153e0565b6040518263ffffffff1660e01b81526004016121d591815260200190565b602060405180830381865af41580156121f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122149190614d22565b90505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968a606001516040518263ffffffff1660e01b815260040161225491815260200190565b602060405180830381865af415801561226f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122939190614d22565b90505f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122f69190614da7565b60035488519192506001600160a01b03169063d56cd3d590839061231a86886136be565b886040518563ffffffff1660e01b815260040161233a9493929190614d75565b5f604051808303815f87803b158015612351575f80fd5b505af1158015612363573d5f803e3d5ffd5b50506003548a516040516325e451d360e01b81526001600160a01b0390921693506325e451d3925061239e9185919087908990600401614d75565b5f604051808303815f87803b1580156123b5575f80fd5b505af11580156123c7573d5f803e3d5ffd5b505050505050505050505050505050565b5f806123e4600f61334b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612426573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061244a9190614da7565b6040516357f80bbf60e01b81526001600160601b03851660048201526001600160a01b0391909116906357f80bbf906024016101a060405180830381865afa158015612498573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124bc919061515a565b9050858160e001819052508481610100018190525083816101200181905250816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612517573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061253b9190614da7565b6001600160a01b031663509ed3be848360ff6040518463ffffffff1660e01b815260040161256b939291906153ff565b5f604051808303815f87803b158015612582575f80fd5b505af1158015612594573d5f803e3d5ffd5b50505050505050505050565b6040516302d764c760e21b81526001600160601b03831660048201525f90819081906001600160a01b03871690630b5d931c9060240161020060405180830381865afa1580156125f2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061261691906154d0565b602001516040516357f80bbf60e01b81526001600160601b03821660048201529091505f906001600160a01b038816906357f80bbf906024016101a060405180830381865afa15801561266b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061268f919061515a565b509396879650945050505050565b5f806126a833610765565b612712886001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061270b9190614da7565b87856125a0565b600254604051634adcf90960e01b81529294509092506001600160a01b031690634adcf9099061274c908b90899089908890600401614d75565b5f604051808303815f87803b158015612763575f80fd5b505af1158015612775573d5f803e3d5ffd5b5050505060065f9054906101000a90046001600160a01b03166001600160a01b031663ea48ce9b896001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127fc9190614d22565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038b16602482015290841660448201526064016020604051808303815f875af1158015612856573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061287a9190614d22565b506128858183613743565b50965096945050505050565b5f805f805160206156a883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156128fd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129219190614f1a565b156129ac576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612982573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129a69190614da7565b91505090565b54600160601b90046001600160a01b0316919050565b6129ca613313565b612a4683846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a0a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a2e9190614d22565b60085f8560405180602001604052805f81525061109c565b6001600160a01b03821615612a6357612a5e82613bc3565b612ada565b5f612a6e6002613bd4565b9050612ad8816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612aaf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ad39190614da7565b613bc3565b505b612aea634a531f3360e01b6108db565b612afa63daf9067160e01b6108db565b505050565b5f805160206156c883398151915280545f9190600160a01b900460ff16612b26575f6129a6565b638fb3603760e01b91505090565b5f80612b40600f61334b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ba69190614da7565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa158015612bf5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c1c9190810190614f40565b90505f8160a00151806020019051810190612c37919061515a565b9050612c5a815f0151612c48613cd5565b6001600160401b039081169116141590565b15612c835760405163eff765ff60e01b81526001600160601b0386166004820152602401610a8f565b6001600160401b038616815260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015612cd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cf69190614da7565b6001600160a01b031663509ed3be868360ff6040518463ffffffff1660e01b8152600401612d26939291906153ff565b5f604051808303815f87803b158015612d3d575f80fd5b505af1158015612d4f573d5f803e3d5ffd5b5050604080516001600160601b03891681526001600160401b038a1660208201527fe7e6a7a42cbdb2d274dfaaac06073a09d6095ca3745ce71fe5a137f8247ea23e935001905060405180910390a1505050505050565b612daf33610765565b5f612dc38260800151836101800151613d15565b600254602084015160405163ad328d9f60e01b81529293506001600160a01b039091169163ad328d9f91612dff91899188918790600401614d75565b5f604051808303815f87803b158015612e16575f80fd5b505af1158015612e28573d5f803e3d5ffd5b50506002546040516301d90a6f60e61b81526001600160a01b0389811660048301526001600160601b038816602483015290911692506376429bc091506044016107a5565b5f805160206156c8833981519152546001600160a01b031690565b5f80612e94600f61334b565b600254604051632aa6b2cb60e21b81526001600160a01b0380841660048301526001600160601b0389166024830152949650919450929092169163aa9acb2c91506044015f604051808303815f87803b158015612eef575f80fd5b505af1158015612f01573d5f803e3d5ffd5b505050507f64c75a4392ba38fee1b5a44b61e3dd0cae424d2d43eb2b0c99772efe31e1c042816001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f869190614d22565b604080516001600160601b03928316815282861660208201529186169082015260600161127f565b612fb6613313565b612fbf816113cd565b612fc761128c565b6001600160a01b038216612fee5760405163f17ef42d60e01b815260040160405180910390fd5b505f805160206156a883398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f805f805160206156a883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613090573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130b49190614f1a565b156130e05780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610a8f565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613132573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131569190614f1a565b61317e5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610a8f565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156131d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131f49190614d22565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206156c88339815191525f80613255613238612e6d565b873061324760045f8a8c615591565b613250916155b8565b613d5f565b91509150816108d35763ffffffff8116156132f057825460ff60a01b1916600160a01b178355613283612e6d565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016132b2939291906155f0565b5f604051808303815f87803b1580156132c9575f80fd5b505af11580156132db573d5f803e3d5ffd5b5050845460ff60a01b19168555506108d39050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610a8f565b5f805160206156e883398151915254600160401b900460ff1661334957604051631afcd79f60e31b815260040160405180910390fd5b565b5f6133546141a5565b5f6133676001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa1580156133ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133cf9190614d22565b92506133dd83856001613e67565b9395909450915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044015b602060405180830381865af4158015613448573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061346c9190614f1a565b9392505050565b610208613313565b5f805160206156e88339815191528054600160401b810460ff1615906001600160401b03165f811580156134ac5750825b90505f826001600160401b031660011480156134c75750303b155b9050811580156134d5575080155b156134f35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561351d57845460ff60401b1916600160401b1785555b5f8087806020019051810190613533919061561d565b925050915061354382828b6129c2565b61354d6002613bd4565b600580546001600160a01b0319166001600160a01b0392909216919091179055613577601e613bd4565b600280546001600160a01b0319166001600160a01b03929092169190911790556135a1600a613bd4565b600480546001600160a01b0319166001600160a01b03929092169190911790556135cb600b613bd4565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b0316630e9ed68b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613626573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061364a9190614da7565b600680546001600160a01b0319166001600160a01b039290921691909117905561367a631cd961c760e01b6108db565b505083156113c457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016113bb565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af415801561371f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061346c9190614d22565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c9060440161342d565b604080518082019091525f808252602082015260405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0385169063f0ea17c3906024015f60405180830381865afa1580156137ec573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526138139190810190614f40565b602001516040516302d764c760e21b81526001600160601b03821660048201529091506001600160a01b03851690630b5d931c9060240161020060405180830381865afa158015613866573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061388a91906154d0565b60e00151949350505050565b60405163f0ea17c360e01b81526001600160601b03841660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa1580156138e2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139099190810190614f40565b606081015160808201516040516330b8415f60e01b81526001600160601b0386166004820152929350909173__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801561396e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139929190614f1a565b15613b4a576040808401519051636eb1769f60e11b81526001600160a01b03878116600483015284811660248301525f92169063dd62ed3e90604401602060405180830381865afa1580156139e9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a0d9190615018565b60405163046e44af60e11b81526001600160601b038716600482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015613a66573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a8a9190615018565b811015613ad75760405163046e44af60e11b81526001600160601b038616600482015286908490839073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401610e56565b60405163c661667d60e01b81526001600160a01b03878116600483015283811660248301526001600160601b038716604483015284169063c661667d906064015f604051808303815f87803b158015613b2e575f80fd5b505af1158015613b40573d5f803e3d5ffd5b50505050506113c4565b60405163a37dcd7960e01b815260040160405180910390fd5b5f805160206156c883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b613bcb613313565b61039f81614104565b5f613be76001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015613c4a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c6e9190615251565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613cb1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110969190614da7565b604051637c3940bf60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611b64565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401613704565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613dcd919061565c565b5f60405180830381855afa9150503d805f8114613e05576040519150601f19603f3d011682016040523d82523d5f602084013e613e0a565b606091505b50915091508115613e5c576040815110613e3c5780806020019051810190613e329190615672565b9094509250613e5c565b6020815110613e5c5780806020019051810190613e599190614f1a565b93505b505094509492505050565b613e6f6141a5565b5f80613e836001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613ed0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613ef79190810190615310565b925060ff8516600b14613f5557604083015160ff868116911614613f5057604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610a8f565b613ff1565b613f708360400151613f65600c90565b60ff90811691161490565b80613f865750613f868360400151613f65600f90565b80613f9c5750613f9c8360400151613f65600e90565b80613fb25750613fb28360400151613f65600d90565b613ff157604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610a8f565b613ffe8360200151614115565b915083156140fb57816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015614042573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140669190614da7565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa1580156140ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140d29190614f1a565b156140fb57604051637d71120960e11b81526001600160601b0387166004820152602401610a8f565b50935093915050565b61410c613313565b61039f81613b63565b5f6141286001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015614174573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261419b9190810190615310565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f602082840312156141f2575f80fd5b81356001600160e01b03198116811461346c575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f606083015161427f608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526142c3610100840182614209565b949350505050565b6001600160a01b038116811461039f575f80fd5b6001600160601b038116811461039f575f80fd5b80356142fe816142df565b919050565b634e487b7160e01b5f52604160045260245ffd5b60405161022081016001600160401b038111828210171561433a5761433a614303565b60405290565b604080519081016001600160401b038111828210171561433a5761433a614303565b60405161024081016001600160401b038111828210171561433a5761433a614303565b60405160c081016001600160401b038111828210171561433a5761433a614303565b60405161014081016001600160401b038111828210171561433a5761433a614303565b60405160e081016001600160401b038111828210171561433a5761433a614303565b60405161012081016001600160401b038111828210171561433a5761433a614303565b604051601f8201601f191681016001600160401b038111828210171561443757614437614303565b604052919050565b80356001600160c01b0319811681146142fe575f80fd5b64ffffffffff8116811461039f575f80fd5b80356142fe81614456565b5f6001600160401b0382111561448b5761448b614303565b50601f01601f191660200190565b5f82601f8301126144a8575f80fd5b81356144bb6144b682614473565b61440f565b8181528460208386010111156144cf575f80fd5b816020850160208301375f918101602001919091529392505050565b803561ffff811681146142fe575f80fd5b5f610220828403121561450d575f80fd5b614515614317565b9050614520826142f3565b815261452e602083016142f3565b602082015261453f6040830161443f565b60408201526145506060830161443f565b6060820152614561608083016142f3565b608082015261457260a083016142f3565b60a082015261458360c083016142f3565b60c082015261459460e08301614468565b60e08201526101008201356001600160401b038111156145b2575f80fd5b6145be84828501614499565b610100830152506101208201356001600160401b038111156145de575f80fd5b6145ea84828501614499565b610120830152506145fe61014083016144eb565b61014082015261461161016083016144eb565b61016082015261462461018083016142f3565b6101808201526146376101a083016142f3565b6101a082015261464a6101c08301614468565b6101c082015261465d6101e08301614468565b6101e08201526146706102008301614468565b61020082015292915050565b5f805f805f60a08688031215614690575f80fd5b853561469b816142cb565b945060208601356146ab816142cb565b935060408601356146bb816142df565b925060608601356001600160401b038111156146d5575f80fd5b6146e1888289016144fc565b92505060808601356146f2816142df565b809150509295509295909350565b5f8060408385031215614711575f80fd5b823561471c816142df565b9150602083013561472c816142df565b809150509250929050565b60ff8116811461039f575f80fd5b801515811461039f575f80fd5b5f805f805f8060c08789031215614767575f80fd5b8635614772816142cb565b95506020870135614782816142df565b9450604087013561479281614737565b935060608701356147a281614745565b925060808701356147b2816142cb565b915060a08701356001600160401b038111156147cc575f80fd5b6147d889828a01614499565b9150509295509295509295565b5f602082840312156147f5575f80fd5b81356001600160401b0381111561480a575f80fd5b6142c384828501614499565b5f8060408385031215614827575f80fd5b8235614832816142cb565b915060208301356001600160401b0381111561484c575f80fd5b61485885828601614499565b9150509250929050565b5f60208284031215614872575f80fd5b813561346c816142df565b5f6020828403121561488d575f80fd5b813561346c816142cb565b5f805f606084860312156148aa575f80fd5b833592506020840135915060408401356148c3816142df565b809150509250925092565b5f604082840312156148de575f80fd5b6148e6614340565b823581526020928301359281019290925250919050565b5f805f805f8060c08789031215614912575f80fd5b863561491d816142cb565b955061492c88602089016148ce565b9450606087013561493c816142df565b9350608087013561494c81614456565b925060a08701356001600160401b03811115614966575f80fd5b8701601f81018913614976575f80fd5b80356001600160401b0381111561498b575f80fd5b89602082840101111561499c575f80fd5b60208201935080925050509295509295509295565b5f808284036102608112156149c4575f80fd5b83356149cf816142df565b9250610240601f19820112156149e3575f80fd5b506149ec614362565b6149f8602085016142f3565b8152614a06604085016142f3565b6020820152614a17606085016142f3565b6040820152608084810135606083015260a0808601359183019190915260c0808601359183019190915260e08086013591830191909152610100808601359183019190915261012080860135918301919091526101408086013591830191909152610160808601359183019190915261018080860135918301919091526101a080860135918301919091526101c080860135918301919091526101e080860135918301919091526102008086013591830191909152610220808601359183019190915261024090940135938101939093525092909150565b5f805f60c08486031215614b01575f80fd5b614b0b85856148ce565b9250614b1a85604086016148ce565b9150614b2985608086016148ce565b90509250925092565b5f805f60608486031215614b44575f80fd5b8335614b4f816142cb565b92506020840135614b5f816142df565b915060408401356148c3816142df565b5f805f805f8060c08789031215614b84575f80fd5b8635614b8f816142cb565b95506020870135614b9f816142cb565b94506040870135614baf816142df565b93506060870135614bbf816142df565b92506080870135614bcf816142df565b915060a0870135614bdf816142df565b809150509295509295509295565b5f805f60608486031215614bff575f80fd5b8335614c0a816142cb565b92506020840135614c1a816142cb565b915060408401356148c3816142cb565b6001600160401b038116811461039f575f80fd5b5f60208284031215614c4e575f80fd5b813561346c81614c2a565b5f805f8060808587031215614c6c575f80fd5b8435614c77816142cb565b93506020850135614c87816142cb565b92506040850135614c97816142df565b915060608501356001600160401b03811115614cb1575f80fd5b614cbd878288016144fc565b91505092959194509250565b5f8060408385031215614cda575f80fd5b8235614ce5816142cb565b9150602083013561472c816142cb565b5f60208284031215614d05575f80fd5b815162ffffff8116811461346c575f80fd5b80516142fe816142df565b5f60208284031215614d32575f80fd5b815161346c816142df565b600181811c90821680614d5157607f821691505b602082108103614d6f57634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f60208284031215614db7575f80fd5b815161346c816142cb565b5f60408284031215614dd2575f80fd5b614dda614340565b825181526020928301519281019290925250919050565b5f82601f830112614e00575f80fd5b8151602083015f614e136144b684614473565b9050828152858383011115614e26575f80fd5b8282602083015e5f92810160200192909252509392505050565b80516142fe81614456565b5f60208284031215614e5b575f80fd5b81516001600160401b03811115614e70575f80fd5b820160e08185031215614e81575f80fd5b614e89614385565b8151614e94816142df565b8152614ea38560208401614dc2565b602082015260608201516001600160401b03811115614ec0575f80fd5b614ecc86828501614df1565b6040830152506080820151614ee081614456565b6060820152614ef160a08301614e40565b6080820152614f0260c08301614e40565b60a0820152949350505050565b80516142fe81614745565b5f60208284031215614f2a575f80fd5b815161346c81614745565b80516142fe816142cb565b5f60208284031215614f50575f80fd5b81516001600160401b03811115614f65575f80fd5b820160c08185031215614f76575f80fd5b614f7e614385565b81516001600160401b03811115614f93575f80fd5b614f9f86828501614df1565b825250614fae60208301614d17565b6020820152614fbf60408301614f35565b6040820152614fd060608301614f35565b6060820152614fe160808301614f35565b608082015260a08201516001600160401b03811115614ffe575f80fd5b61500a86828501614df1565b60a083015250949350505050565b5f60208284031215615028575f80fd5b5051919050565b601f821115612afa57805f5260205f20601f840160051c810160208510156150545750805b601f840160051c820191505b81811015615073575f8155600101615060565b5050505050565b81516001600160401b0381111561509357615093614303565b6150a7816150a18454614d3d565b8461502f565b6020601f8211600181146150d9575f83156150c25750848201515b5f19600385901b1c1916600184901b178455615073565b5f84815260208120601f198516915b8281101561510857878501518255602094850194600190920191016150e8565b508482101561512557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b80516142fe81614c2a565b5f6020828403121561514f575f80fd5b815161346c81614c2a565b5f6101a082840312801561516c575f80fd5b506151756143a7565b61517e83615134565b815261518c60208401614d17565b602082015261519d60408401614f0f565b60408201526151ae60608401614f0f565b60608201526151bf60808401614f0f565b608082015260a0838101519082015260c080840151908201526151e58460e08501614dc2565b60e08201526151f8846101208501614dc2565b61010082015261520c846101608501614dc2565b6101208201529392505050565b5f806040838503121561522a575f80fd5b8251615235816142df565b602084015190925061472c816142df565b80516142fe81614737565b5f60208284031215615261575f80fd5b815161346c81614737565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b6001600160a01b0389811682526001600160601b0389166020830152871660408201526152ce606082018780518252602090810151910152565b6001600160601b03851660a082015264ffffffffff841660c082015261010060e08201525f6153026101008301848661526c565b9a9950505050505050505050565b5f60208284031215615320575f80fd5b81516001600160401b03811115615335575f80fd5b820160e08185031215615346575f80fd5b61534e6143ca565b61535782614d17565b815261536560208301614d17565b602082015261537660408301615246565b604082015261538760608301614f0f565b606082015261539860808301614f35565b60808201526153a960a08301614f35565b60a082015260c08201516001600160401b038111156153c6575f80fd5b6153d286828501614df1565b60c083015250949350505050565b8082018082111561109657634e487b7160e01b5f52601160045260245ffd5b6001600160601b038416815282516001600160401b031660208201526101e0810160208401516001600160601b03811660408401525060408401518015156060840152506060840151801515608084015250608084015180151560a08401525060a084015160c083015260c084015160e083015260e084015161549061010084018280518252602090810151910152565b506101008401518051610140840152602090810151610160840152610120850151805161018085015201516101a083015260ff83166101c08301526142c3565b5f6102008284031280156154e2575f80fd5b506154eb6143ec565b6154f483614d17565b815261550260208401614d17565b60208201526155148460408501614dc2565b60408201526155268460808501614dc2565b60608201526155388460c08501614dc2565b608082015261554b846101008501614dc2565b60a082015261555e846101408501614dc2565b60c0820152615571846101808501614dc2565b60e0820152615584846101c08501614dc2565b6101008201529392505050565b5f808585111561559f575f80fd5b838611156155ab575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156155e9576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190525f90615614908301848661526c565b95945050505050565b5f805f6060848603121561562f575f80fd5b835161563a816142cb565b602085015190935061564b816142cb565b60408501519092506148c3816142cb565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615683575f80fd5b825161568e81614745565b602084015190925063ffffffff8116811461472c575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220e0c229c00f29c38e10fe51b487414c0ac7ee8457b8abbe331e03a27b83d96f8a64736f6c634300081a0033",
1457
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610208575f3560e01c80636c741e781161011f5780638e32e979116100a9578063ada9652e11610079578063ada9652e146104f2578063b68d180914610506578063bf7e214f14610515578063d0d63b091461051d578063f7c34ee014610530575f80fd5b80638e32e979146104985780638fb36037146104ab578063a3c26052146104cc578063a5f4c731146104df575f80fd5b80637d42d397116100ef5780637d42d39714610444578063826787661461045757806384a710fa1461046a57806384d1f7cf1461047d578063893d20e814610490575f80fd5b80636c741e78146103c85780637225ed01146103e85780637738eb861461041e5780637a9e5e4b14610431575f80fd5b806327bb7a33116101a05780635ab1bd53116101705780635ab1bd531461034f578063644c45e014610374578063673ad94f14610391578063675393bf146103a25780636c1e9dff146103b5575f80fd5b806327bb7a331461030e578063329d6e741461032157806336fc697e1461033457806349bb9e4b1461033c575f80fd5b80631ddb9757116101db5780631ddb97571461029e5780631eff4b22146102b3578063214cdb80146102e857806326889b09146102fb575f80fd5b806301ffc9a71461020c5780630d8e6e2c1461024d5780630fec111c14610269578063138461e01461027e575b5f80fd5b61023861021a3660046141e2565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610255610543565b60405162ffffff9091168152602001610244565b6102716105ca565b6040516102449190614237565b610286610756565b6040516001600160601b039091168152602001610244565b6102b16102ac36600461467c565b610760565b005b6102da7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610244565b6102b16102f63660046141e2565b6108db565b610286610309366004614700565b610907565b6102b161031c366004614752565b61109c565b6102b161032f3660046147e5565b611141565b6102b161128c565b6102b161034a366004614816565b6112d1565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610244565b5f805160206156a8833981519152546001600160601b0316610286565b6102b161039f366004614862565b50565b6102b16103b036600461487d565b6113cd565b6102866103c3366004614700565b6114d9565b6103d0611aac565b6040516001600160401b039091168152602001610244565b6103fe6103f6366004614898565b928392509050565b604080516001600160601b03938416815292909116602083015201610244565b61028661042c3660046148fd565b611ba3565b6102b161043f36600461487d565b611ee1565b6102b16104523660046149b1565b611f63565b6102b1610465366004614aef565b6123d8565b6103fe610478366004614b32565b6125a0565b6103fe61048b366004614b6f565b61269d565b61035c612891565b6102b16104a6366004614bed565b6129c2565b6104b3612aff565b6040516001600160e01b03199091168152602001610244565b6102b16104da366004614c3e565b612b34565b6102b16104ed366004614c59565b612da6565b6102da5f805160206156a883398151915281565b604051600f8152602001610244565b61035c612e6d565b6102b161052b366004614862565b612e88565b6102b161053e366004614cc9565b612fae565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156105a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105c59190614cf5565b905090565b6105d26141a5565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610648573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066c9190614d22565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016106b4612891565b6001600160a01b031681526020018260010180546106d190614d3d565b80601f01602080910402602001604051908101604052809291908181526020018280546106fd90614d3d565b80156107485780601f1061071f57610100808354040283529160200191610748565b820191905f5260205f20905b81548152906001019060200180831161072b57829003601f168201915b505050505081525091505090565b5f6105c530613024565b61076c335b5f3661321d565b600254602083015160405163ad328d9f60e01b81526001600160a01b039092169163ad328d9f916107a591899188918790600401614d75565b5f604051808303815f87803b1580156107bc575f80fd5b505af11580156107ce573d5f803e3d5ffd5b5050505060065f9054906101000a90046001600160a01b03166001600160a01b031663d44f8a4b866001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610831573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108559190614d22565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038816602482015290841660448201526064016020604051808303815f875af11580156108af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108d39190614d22565b505050505050565b6108e3613313565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f8080610914600f61334b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610956573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061097a9190614da7565b90505f826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109dd9190614da7565b604051634793b4ab60e01b81526001600160601b03891660048201529091505f906001600160a01b03841690634793b4ab906024015f60405180830381865afa158015610a2c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a539190810190614e4b565b9050610a62815f0151866133e7565b15610a9857604051630a49ea2360e01b81526001600160601b03808a166004830152861660248201526044015b60405180910390fd5b604051630a4d29dd60e31b81526001600160601b038816600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610aee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b129190614f1a565b15610b305760405163a37dcd7960e01b815260040160405180910390fd5b600254604051631696791160e11b81526001600160a01b0386811660048301526001600160601b03808c1660248401528a1660448301525f921690632d2cf222906064016020604051808303815f875af1158015610b90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bb49190614d22565b905060035f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a284888473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c479190614d22565b6040518563ffffffff1660e01b8152600401610c669493929190614d75565b5f604051808303815f87803b158015610c7d575f80fd5b505af1158015610c8f573d5f803e3d5ffd5b505060405163f0ea17c360e01b81526001600160601b03891660048201525f92506001600160a01b038716915063f0ea17c3906024015f60405180830381865afa158015610cdf573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d069190810190614f40565b608081015160408083015160608401519151636eb1769f60e11b81526001600160a01b038085166004830152928316602482015293945091925f9183169063dd62ed3e90604401602060405180830381865afa158015610d68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8c9190615018565b60405163046e44af60e11b81526001600160601b038716600482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610de5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e099190615018565b811015610ecd57606084015160405163046e44af60e11b81526001600160601b038e166004820152849190839073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024015b602060405180830381865af4158015610e71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e959190615018565b604051631011542d60e21b81526001600160a01b03948516600482015293909216602484015260448301526064820152608401610a8f565b50505f610ee26001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038e1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610f2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f539190614da7565b606084015160405163c661667d60e01b81526001600160a01b03858116600483015280841660248301526001600160601b038816604483015292935091169063c661667d906064015f604051808303815f87803b158015610fb2575f80fd5b505af1158015610fc4573d5f803e3d5ffd5b505050507fa9e4ee5628423184bfcde002aae428406aeac6b337e1acf560282b155e358527886001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611025573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110499190614d22565b8a8e8760405161108294939291906001600160601b03948516815292841660208401529083166040830152909116606082015260800190565b60405180910390a150919750505050505050505b92915050565b6110a4613313565b6110ae8287612fae565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301611137838261507a565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c611163610543565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156111a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111c5919061513f565b5f805160206156e88339815191528054600160401b900460ff16806111f7575080546001600160401b03808416911610155b156112155760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561123f83613473565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b611294613313565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f805160206156e88339815191528054600160401b810460ff1615906001600160401b03165f811580156113025750825b90505f826001600160401b0316600114801561131d5750303b155b90508115801561132b575080155b156113495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561137357845460ff60401b1916600160401b1785555b61137d878761347b565b83156113c457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6113d5613313565b806001600160a01b03163b5f0361140a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a8f565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015611484575060408051601f3d908101601f1916820190925261148191810190614f1a565b60015b6114ac5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a8f565b806114d55760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610a8f565b5050565b5f80806114e6600f61334b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611528573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154c9190614da7565b604051634793b4ab60e01b81526001600160601b03881660048201529091505f906001600160a01b03831690634793b4ab906024015f60405180830381865afa15801561159b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526115c29190810190614e4b565b6040516357f80bbf60e01b81526001600160601b03861660048201529091505f906001600160a01b038416906357f80bbf906024016101a060405180830381865afa158015611613573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611637919061515a565b9050611646825f0151866133e7565b1561167757604051630a49ea2360e01b81526001600160601b03808a16600483015286166024820152604401610a8f565b6040516308a390bb60e21b81526001600160601b03861660048201525f906001600160a01b0385169063228e42ec90602401602060405180830381865afa1580156116c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116e89190614d22565b90506117016116f789836136be565b8360200151613743565b15611748576020820151604051630d749d9d60e01b81526001600160601b038089166004830152918216602482015281831660448201529089166064820152608401610a8f565b5f8073__$58e11c6004c5796aaa8c56e718245e69a2$__639ed246ea61176e888b61378d565b6040516001600160e01b031960e084901b1681528151600482015260209091015160248201526001600160601b038d1660448201526064016040805180830381865af41580156117c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117e49190615219565b9150915060035f9054906101000a90046001600160a01b03166001600160a01b031663d56cd3d5886001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611847573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061186b9190614da7565b8a84866040518563ffffffff1660e01b815260040161188d9493929190614d75565b5f604051808303815f87803b1580156118a4575f80fd5b505af11580156118b6573d5f803e3d5ffd5b50506002546040516325fa796b60e01b81526001600160a01b0390911692506325fa796b9150611913908a908f9086906004016001600160a01b039390931683526001600160601b03918216602084015216604082015260600190565b5f604051808303815f87803b15801561192a575f80fd5b505af115801561193c573d5f803e3d5ffd5b505050505f6119536001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038e1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156119a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c49190614da7565b90506119d2878a838e613896565b7fa397b0d38fe748a8c29cce53eab5736ef0c29c156e7a9586ae8b88a8557b4145886001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a539190614d22565b8a8e8e86604051611a959594939291906001600160601b0395861681529385166020850152918416604084015283166060830152909116608082015260a00190565b60405180910390a150505050505050505092915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600f604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b3b9190615251565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015611b7f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105c5919061513f565b5f8080611bb0600f61334b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bf2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c169190614da7565b90505f8073__$58e11c6004c5796aaa8c56e718245e69a2$__639ed246ea611c3e858861378d565b6040516001600160e01b031960e084901b1681528151600482015260209091015160248201526001600160601b038d1660448201526064016040805180830381865af4158015611c90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cb49190615219565b9150915060025f9054906101000a90046001600160a01b03166001600160a01b031663e283b4a985878f8f868f8f8f6040518963ffffffff1660e01b8152600401611d06989796959493929190615294565b6020604051808303815f875af1158015611d22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d469190614d22565b955060035f9054906101000a90046001600160a01b03166001600160a01b031663d56cd3d5856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dcb9190614da7565b8784866040518563ffffffff1660e01b8152600401611ded9493929190614d75565b5f604051808303815f87803b158015611e04575f80fd5b505af1158015611e16573d5f803e3d5ffd5b50505050611e2683868e8d613896565b7f0dcadf661b8b2888423f78a848a77785b4dc0138395b12584835f6a65dfcea79846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea79190614d22565b604080516001600160601b03928316815282891660208201529189169082015260600160405180910390a150505050509695505050505050565b33611eea612e6d565b6001600160a01b0316816001600160a01b031614611f255760405162d1953b60e31b81526001600160a01b0382166004820152602401610a8f565b816001600160a01b03163b5f03611f5a576040516361798f2f60e11b81526001600160a01b0383166004820152602401610a8f565b6114d582613b63565b611f6c33610765565b5f611f7f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091505f906001600160a01b0383169063a48f42e0906024015f60405180830381865afa158015611fce573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611ff59190810190615310565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091505f906001600160a01b0384169063a48f42e0906024015f60405180830381865afa15801561204a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120719190810190615310565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091505f906001600160a01b0385169063a48f42e0906024015f60405180830381865afa1580156120c6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120ed9190810190615310565b90505f816080015190505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968861016001518960e0015161212791906153e0565b6040518263ffffffff1660e01b815260040161214591815260200190565b602060405180830381865af4158015612160573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121849190614d22565b90505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968961018001518a61010001516121b791906153e0565b6040518263ffffffff1660e01b81526004016121d591815260200190565b602060405180830381865af41580156121f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122149190614d22565b90505f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968a606001516040518263ffffffff1660e01b815260040161225491815260200190565b602060405180830381865af415801561226f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122939190614d22565b90505f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122f69190614da7565b60035488519192506001600160a01b03169063d56cd3d590839061231a86886136be565b886040518563ffffffff1660e01b815260040161233a9493929190614d75565b5f604051808303815f87803b158015612351575f80fd5b505af1158015612363573d5f803e3d5ffd5b50506003548a516040516325e451d360e01b81526001600160a01b0390921693506325e451d3925061239e9185919087908990600401614d75565b5f604051808303815f87803b1580156123b5575f80fd5b505af11580156123c7573d5f803e3d5ffd5b505050505050505050505050505050565b5f806123e4600f61334b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612426573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061244a9190614da7565b6040516357f80bbf60e01b81526001600160601b03851660048201526001600160a01b0391909116906357f80bbf906024016101a060405180830381865afa158015612498573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124bc919061515a565b9050858160e001819052508481610100018190525083816101200181905250816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612517573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061253b9190614da7565b6001600160a01b031663509ed3be848360ff6040518463ffffffff1660e01b815260040161256b939291906153ff565b5f604051808303815f87803b158015612582575f80fd5b505af1158015612594573d5f803e3d5ffd5b50505050505050505050565b6040516302d764c760e21b81526001600160601b03831660048201525f90819081906001600160a01b03871690630b5d931c9060240161020060405180830381865afa1580156125f2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061261691906154d0565b602001516040516357f80bbf60e01b81526001600160601b03821660048201529091505f906001600160a01b038816906357f80bbf906024016101a060405180830381865afa15801561266b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061268f919061515a565b509396879650945050505050565b5f806126a833610765565b612712886001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061270b9190614da7565b87856125a0565b600254604051634adcf90960e01b81529294509092506001600160a01b031690634adcf9099061274c908b90899089908890600401614d75565b5f604051808303815f87803b158015612763575f80fd5b505af1158015612775573d5f803e3d5ffd5b5050505060065f9054906101000a90046001600160a01b03166001600160a01b031663ea48ce9b896001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127fc9190614d22565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038b16602482015290841660448201526064016020604051808303815f875af1158015612856573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061287a9190614d22565b506128858183613743565b50965096945050505050565b5f805f805160206156a883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156128fd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129219190614f1a565b156129ac576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612982573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129a69190614da7565b91505090565b54600160601b90046001600160a01b0316919050565b6129ca613313565b612a4683846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a0a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a2e9190614d22565b60085f8560405180602001604052805f81525061109c565b6001600160a01b03821615612a6357612a5e82613bc3565b612ada565b5f612a6e6002613bd4565b9050612ad8816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612aaf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ad39190614da7565b613bc3565b505b612aea634a531f3360e01b6108db565b612afa63daf9067160e01b6108db565b505050565b5f805160206156c883398151915280545f9190600160a01b900460ff16612b26575f6129a6565b638fb3603760e01b91505090565b5f80612b40600f61334b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ba69190614da7565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa158015612bf5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c1c9190810190614f40565b90505f8160a00151806020019051810190612c37919061515a565b9050612c5a815f0151612c48613cd5565b6001600160401b039081169116141590565b15612c835760405163eff765ff60e01b81526001600160601b0386166004820152602401610a8f565b6001600160401b038616815260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015612cd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cf69190614da7565b6001600160a01b031663509ed3be868360ff6040518463ffffffff1660e01b8152600401612d26939291906153ff565b5f604051808303815f87803b158015612d3d575f80fd5b505af1158015612d4f573d5f803e3d5ffd5b5050604080516001600160601b03891681526001600160401b038a1660208201527fe7e6a7a42cbdb2d274dfaaac06073a09d6095ca3745ce71fe5a137f8247ea23e935001905060405180910390a1505050505050565b612daf33610765565b5f612dc38260800151836101800151613d15565b600254602084015160405163ad328d9f60e01b81529293506001600160a01b039091169163ad328d9f91612dff91899188918790600401614d75565b5f604051808303815f87803b158015612e16575f80fd5b505af1158015612e28573d5f803e3d5ffd5b50506002546040516301d90a6f60e61b81526001600160a01b0389811660048301526001600160601b038816602483015290911692506376429bc091506044016107a5565b5f805160206156c8833981519152546001600160a01b031690565b5f80612e94600f61334b565b600254604051632aa6b2cb60e21b81526001600160a01b0380841660048301526001600160601b0389166024830152949650919450929092169163aa9acb2c91506044015f604051808303815f87803b158015612eef575f80fd5b505af1158015612f01573d5f803e3d5ffd5b505050507f64c75a4392ba38fee1b5a44b61e3dd0cae424d2d43eb2b0c99772efe31e1c042816001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f869190614d22565b604080516001600160601b03928316815282861660208201529186169082015260600161127f565b612fb6613313565b612fbf816113cd565b612fc761128c565b6001600160a01b038216612fee5760405163f17ef42d60e01b815260040160405180910390fd5b505f805160206156a883398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f805f805160206156a883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613090573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130b49190614f1a565b156130e05780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610a8f565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613132573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131569190614f1a565b61317e5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610a8f565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156131d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131f49190614d22565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206156c88339815191525f80613255613238612e6d565b873061324760045f8a8c615591565b613250916155b8565b613d5f565b91509150816108d35763ffffffff8116156132f057825460ff60a01b1916600160a01b178355613283612e6d565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016132b2939291906155f0565b5f604051808303815f87803b1580156132c9575f80fd5b505af11580156132db573d5f803e3d5ffd5b5050845460ff60a01b19168555506108d39050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610a8f565b5f805160206156e883398151915254600160401b900460ff1661334957604051631afcd79f60e31b815260040160405180910390fd5b565b5f6133546141a5565b5f6133676001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa1580156133ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133cf9190614d22565b92506133dd83856001613e67565b9395909450915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044015b602060405180830381865af4158015613448573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061346c9190614f1a565b9392505050565b610208613313565b5f805160206156e88339815191528054600160401b810460ff1615906001600160401b03165f811580156134ac5750825b90505f826001600160401b031660011480156134c75750303b155b9050811580156134d5575080155b156134f35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561351d57845460ff60401b1916600160401b1785555b5f8087806020019051810190613533919061561d565b925050915061354382828b6129c2565b61354d6002613bd4565b600580546001600160a01b0319166001600160a01b0392909216919091179055613577601e613bd4565b600280546001600160a01b0319166001600160a01b03929092169190911790556135a1600a613bd4565b600480546001600160a01b0319166001600160a01b03929092169190911790556135cb600b613bd4565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b0316630e9ed68b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613626573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061364a9190614da7565b600680546001600160a01b0319166001600160a01b039290921691909117905561367a631cd961c760e01b6108db565b505083156113c457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016113bb565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af415801561371f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061346c9190614d22565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c9060440161342d565b604080518082019091525f808252602082015260405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0385169063f0ea17c3906024015f60405180830381865afa1580156137ec573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526138139190810190614f40565b602001516040516302d764c760e21b81526001600160601b03821660048201529091506001600160a01b03851690630b5d931c9060240161020060405180830381865afa158015613866573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061388a91906154d0565b60e00151949350505050565b60405163f0ea17c360e01b81526001600160601b03841660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa1580156138e2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139099190810190614f40565b606081015160808201516040516330b8415f60e01b81526001600160601b0386166004820152929350909173__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801561396e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139929190614f1a565b15613b4a576040808401519051636eb1769f60e11b81526001600160a01b03878116600483015284811660248301525f92169063dd62ed3e90604401602060405180830381865afa1580156139e9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a0d9190615018565b60405163046e44af60e11b81526001600160601b038716600482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015613a66573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a8a9190615018565b811015613ad75760405163046e44af60e11b81526001600160601b038616600482015286908490839073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401610e56565b60405163c661667d60e01b81526001600160a01b03878116600483015283811660248301526001600160601b038716604483015284169063c661667d906064015f604051808303815f87803b158015613b2e575f80fd5b505af1158015613b40573d5f803e3d5ffd5b50505050506113c4565b60405163a37dcd7960e01b815260040160405180910390fd5b5f805160206156c883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b613bcb613313565b61039f81614104565b5f613be76001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015613c4a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c6e9190615251565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613cb1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110969190614da7565b604051637c3940bf60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611b64565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401613704565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613dcd919061565c565b5f60405180830381855afa9150503d805f8114613e05576040519150601f19603f3d011682016040523d82523d5f602084013e613e0a565b606091505b50915091508115613e5c576040815110613e3c5780806020019051810190613e329190615672565b9094509250613e5c565b6020815110613e5c5780806020019051810190613e599190614f1a565b93505b505094509492505050565b613e6f6141a5565b5f80613e836001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613ed0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613ef79190810190615310565b925060ff8516600b14613f5557604083015160ff868116911614613f5057604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610a8f565b613ff1565b613f708360400151613f65600c90565b60ff90811691161490565b80613f865750613f868360400151613f65600f90565b80613f9c5750613f9c8360400151613f65600e90565b80613fb25750613fb28360400151613f65600d90565b613ff157604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610a8f565b613ffe8360200151614115565b915083156140fb57816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015614042573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140669190614da7565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa1580156140ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140d29190614f1a565b156140fb57604051637d71120960e11b81526001600160601b0387166004820152602401610a8f565b50935093915050565b61410c613313565b61039f81613b63565b5f6141286001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015614174573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261419b9190810190615310565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f602082840312156141f2575f80fd5b81356001600160e01b03198116811461346c575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f606083015161427f608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526142c3610100840182614209565b949350505050565b6001600160a01b038116811461039f575f80fd5b6001600160601b038116811461039f575f80fd5b80356142fe816142df565b919050565b634e487b7160e01b5f52604160045260245ffd5b60405161022081016001600160401b038111828210171561433a5761433a614303565b60405290565b604080519081016001600160401b038111828210171561433a5761433a614303565b60405161024081016001600160401b038111828210171561433a5761433a614303565b60405160c081016001600160401b038111828210171561433a5761433a614303565b60405161014081016001600160401b038111828210171561433a5761433a614303565b60405160e081016001600160401b038111828210171561433a5761433a614303565b60405161012081016001600160401b038111828210171561433a5761433a614303565b604051601f8201601f191681016001600160401b038111828210171561443757614437614303565b604052919050565b80356001600160c01b0319811681146142fe575f80fd5b64ffffffffff8116811461039f575f80fd5b80356142fe81614456565b5f6001600160401b0382111561448b5761448b614303565b50601f01601f191660200190565b5f82601f8301126144a8575f80fd5b81356144bb6144b682614473565b61440f565b8181528460208386010111156144cf575f80fd5b816020850160208301375f918101602001919091529392505050565b803561ffff811681146142fe575f80fd5b5f610220828403121561450d575f80fd5b614515614317565b9050614520826142f3565b815261452e602083016142f3565b602082015261453f6040830161443f565b60408201526145506060830161443f565b6060820152614561608083016142f3565b608082015261457260a083016142f3565b60a082015261458360c083016142f3565b60c082015261459460e08301614468565b60e08201526101008201356001600160401b038111156145b2575f80fd5b6145be84828501614499565b610100830152506101208201356001600160401b038111156145de575f80fd5b6145ea84828501614499565b610120830152506145fe61014083016144eb565b61014082015261461161016083016144eb565b61016082015261462461018083016142f3565b6101808201526146376101a083016142f3565b6101a082015261464a6101c08301614468565b6101c082015261465d6101e08301614468565b6101e08201526146706102008301614468565b61020082015292915050565b5f805f805f60a08688031215614690575f80fd5b853561469b816142cb565b945060208601356146ab816142cb565b935060408601356146bb816142df565b925060608601356001600160401b038111156146d5575f80fd5b6146e1888289016144fc565b92505060808601356146f2816142df565b809150509295509295909350565b5f8060408385031215614711575f80fd5b823561471c816142df565b9150602083013561472c816142df565b809150509250929050565b60ff8116811461039f575f80fd5b801515811461039f575f80fd5b5f805f805f8060c08789031215614767575f80fd5b8635614772816142cb565b95506020870135614782816142df565b9450604087013561479281614737565b935060608701356147a281614745565b925060808701356147b2816142cb565b915060a08701356001600160401b038111156147cc575f80fd5b6147d889828a01614499565b9150509295509295509295565b5f602082840312156147f5575f80fd5b81356001600160401b0381111561480a575f80fd5b6142c384828501614499565b5f8060408385031215614827575f80fd5b8235614832816142cb565b915060208301356001600160401b0381111561484c575f80fd5b61485885828601614499565b9150509250929050565b5f60208284031215614872575f80fd5b813561346c816142df565b5f6020828403121561488d575f80fd5b813561346c816142cb565b5f805f606084860312156148aa575f80fd5b833592506020840135915060408401356148c3816142df565b809150509250925092565b5f604082840312156148de575f80fd5b6148e6614340565b823581526020928301359281019290925250919050565b5f805f805f8060c08789031215614912575f80fd5b863561491d816142cb565b955061492c88602089016148ce565b9450606087013561493c816142df565b9350608087013561494c81614456565b925060a08701356001600160401b03811115614966575f80fd5b8701601f81018913614976575f80fd5b80356001600160401b0381111561498b575f80fd5b89602082840101111561499c575f80fd5b60208201935080925050509295509295509295565b5f808284036102608112156149c4575f80fd5b83356149cf816142df565b9250610240601f19820112156149e3575f80fd5b506149ec614362565b6149f8602085016142f3565b8152614a06604085016142f3565b6020820152614a17606085016142f3565b6040820152608084810135606083015260a0808601359183019190915260c0808601359183019190915260e08086013591830191909152610100808601359183019190915261012080860135918301919091526101408086013591830191909152610160808601359183019190915261018080860135918301919091526101a080860135918301919091526101c080860135918301919091526101e080860135918301919091526102008086013591830191909152610220808601359183019190915261024090940135938101939093525092909150565b5f805f60c08486031215614b01575f80fd5b614b0b85856148ce565b9250614b1a85604086016148ce565b9150614b2985608086016148ce565b90509250925092565b5f805f60608486031215614b44575f80fd5b8335614b4f816142cb565b92506020840135614b5f816142df565b915060408401356148c3816142df565b5f805f805f8060c08789031215614b84575f80fd5b8635614b8f816142cb565b95506020870135614b9f816142cb565b94506040870135614baf816142df565b93506060870135614bbf816142df565b92506080870135614bcf816142df565b915060a0870135614bdf816142df565b809150509295509295509295565b5f805f60608486031215614bff575f80fd5b8335614c0a816142cb565b92506020840135614c1a816142cb565b915060408401356148c3816142cb565b6001600160401b038116811461039f575f80fd5b5f60208284031215614c4e575f80fd5b813561346c81614c2a565b5f805f8060808587031215614c6c575f80fd5b8435614c77816142cb565b93506020850135614c87816142cb565b92506040850135614c97816142df565b915060608501356001600160401b03811115614cb1575f80fd5b614cbd878288016144fc565b91505092959194509250565b5f8060408385031215614cda575f80fd5b8235614ce5816142cb565b9150602083013561472c816142cb565b5f60208284031215614d05575f80fd5b815162ffffff8116811461346c575f80fd5b80516142fe816142df565b5f60208284031215614d32575f80fd5b815161346c816142df565b600181811c90821680614d5157607f821691505b602082108103614d6f57634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f60208284031215614db7575f80fd5b815161346c816142cb565b5f60408284031215614dd2575f80fd5b614dda614340565b825181526020928301519281019290925250919050565b5f82601f830112614e00575f80fd5b8151602083015f614e136144b684614473565b9050828152858383011115614e26575f80fd5b8282602083015e5f92810160200192909252509392505050565b80516142fe81614456565b5f60208284031215614e5b575f80fd5b81516001600160401b03811115614e70575f80fd5b820160e08185031215614e81575f80fd5b614e89614385565b8151614e94816142df565b8152614ea38560208401614dc2565b602082015260608201516001600160401b03811115614ec0575f80fd5b614ecc86828501614df1565b6040830152506080820151614ee081614456565b6060820152614ef160a08301614e40565b6080820152614f0260c08301614e40565b60a0820152949350505050565b80516142fe81614745565b5f60208284031215614f2a575f80fd5b815161346c81614745565b80516142fe816142cb565b5f60208284031215614f50575f80fd5b81516001600160401b03811115614f65575f80fd5b820160c08185031215614f76575f80fd5b614f7e614385565b81516001600160401b03811115614f93575f80fd5b614f9f86828501614df1565b825250614fae60208301614d17565b6020820152614fbf60408301614f35565b6040820152614fd060608301614f35565b6060820152614fe160808301614f35565b608082015260a08201516001600160401b03811115614ffe575f80fd5b61500a86828501614df1565b60a083015250949350505050565b5f60208284031215615028575f80fd5b5051919050565b601f821115612afa57805f5260205f20601f840160051c810160208510156150545750805b601f840160051c820191505b81811015615073575f8155600101615060565b5050505050565b81516001600160401b0381111561509357615093614303565b6150a7816150a18454614d3d565b8461502f565b6020601f8211600181146150d9575f83156150c25750848201515b5f19600385901b1c1916600184901b178455615073565b5f84815260208120601f198516915b8281101561510857878501518255602094850194600190920191016150e8565b508482101561512557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b80516142fe81614c2a565b5f6020828403121561514f575f80fd5b815161346c81614c2a565b5f6101a082840312801561516c575f80fd5b506151756143a7565b61517e83615134565b815261518c60208401614d17565b602082015261519d60408401614f0f565b60408201526151ae60608401614f0f565b60608201526151bf60808401614f0f565b608082015260a0838101519082015260c080840151908201526151e58460e08501614dc2565b60e08201526151f8846101208501614dc2565b61010082015261520c846101608501614dc2565b6101208201529392505050565b5f806040838503121561522a575f80fd5b8251615235816142df565b602084015190925061472c816142df565b80516142fe81614737565b5f60208284031215615261575f80fd5b815161346c81614737565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b6001600160a01b0389811682526001600160601b0389166020830152871660408201526152ce606082018780518252602090810151910152565b6001600160601b03851660a082015264ffffffffff841660c082015261010060e08201525f6153026101008301848661526c565b9a9950505050505050505050565b5f60208284031215615320575f80fd5b81516001600160401b03811115615335575f80fd5b820160e08185031215615346575f80fd5b61534e6143ca565b61535782614d17565b815261536560208301614d17565b602082015261537660408301615246565b604082015261538760608301614f0f565b606082015261539860808301614f35565b60808201526153a960a08301614f35565b60a082015260c08201516001600160401b038111156153c6575f80fd5b6153d286828501614df1565b60c083015250949350505050565b8082018082111561109657634e487b7160e01b5f52601160045260245ffd5b6001600160601b038416815282516001600160401b031660208201526101e0810160208401516001600160601b03811660408401525060408401518015156060840152506060840151801515608084015250608084015180151560a08401525060a084015160c083015260c084015160e083015260e084015161549061010084018280518252602090810151910152565b506101008401518051610140840152602090810151610160840152610120850151805161018085015201516101a083015260ff83166101c08301526142c3565b5f6102008284031280156154e2575f80fd5b506154eb6143ec565b6154f483614d17565b815261550260208401614d17565b60208201526155148460408501614dc2565b60408201526155268460808501614dc2565b60608201526155388460c08501614dc2565b608082015261554b846101008501614dc2565b60a082015261555e846101408501614dc2565b60c0820152615571846101808501614dc2565b60e0820152615584846101c08501614dc2565b6101008201529392505050565b5f808585111561559f575f80fd5b838611156155ab575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156155e9576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190525f90615614908301848661526c565b95945050505050565b5f805f6060848603121561562f575f80fd5b835161563a816142cb565b602085015190935061564b816142cb565b60408501519092506148c3816142cb565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615683575f80fd5b825161568e81614745565b602084015190925063ffffffff8116811461472c575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220e0c229c00f29c38e10fe51b487414c0ac7ee8457b8abbe331e03a27b83d96f8a64736f6c634300081a0033",
1458
+ "linkReferences": {
1459
+ "contracts/type/Amount.sol": {
1460
+ "AmountLib": [
1461
+ {
1462
+ "length": 20,
1463
+ "start": 2956
1464
+ },
1465
+ {
1466
+ "length": 20,
1467
+ "start": 3252
1468
+ },
1469
+ {
1470
+ "length": 20,
1471
+ "start": 3715
1472
+ },
1473
+ {
1474
+ "length": 20,
1475
+ "start": 3854
1476
+ },
1477
+ {
1478
+ "length": 20,
1479
+ "start": 8656
1480
+ },
1481
+ {
1482
+ "length": 20,
1483
+ "start": 8799
1484
+ },
1485
+ {
1486
+ "length": 20,
1487
+ "start": 8943
1488
+ },
1489
+ {
1490
+ "length": 20,
1491
+ "start": 14268
1492
+ },
1493
+ {
1494
+ "length": 20,
1495
+ "start": 14401
1496
+ },
1497
+ {
1498
+ "length": 20,
1499
+ "start": 14860
1500
+ },
1501
+ {
1502
+ "length": 20,
1503
+ "start": 15108
1504
+ },
1505
+ {
1506
+ "length": 20,
1507
+ "start": 15243
1508
+ },
1509
+ {
1510
+ "length": 20,
1511
+ "start": 15891
1512
+ }
1513
+ ]
1514
+ },
1515
+ "contracts/type/Fee.sol": {
1516
+ "FeeLib": [
1517
+ {
1518
+ "length": 20,
1519
+ "start": 6178
1520
+ },
1521
+ {
1522
+ "length": 20,
1523
+ "start": 7410
1524
+ }
1525
+ ]
1526
+ },
1527
+ "contracts/type/NftId.sol": {
1528
+ "NftIdLib": [
1529
+ {
1530
+ "length": 20,
1531
+ "start": 1753
1532
+ },
1533
+ {
1534
+ "length": 20,
1535
+ "start": 10651
1536
+ },
1537
+ {
1538
+ "length": 20,
1539
+ "start": 12590
1540
+ },
1541
+ {
1542
+ "length": 20,
1543
+ "start": 13541
1544
+ }
1545
+ ]
1546
+ },
1547
+ "contracts/type/RoleId.sol": {
1548
+ "RoleIdLib": [
1549
+ {
1550
+ "length": 20,
1551
+ "start": 7045
1552
+ },
1553
+ {
1554
+ "length": 20,
1555
+ "start": 15817
1556
+ }
1557
+ ]
1558
+ },
1559
+ "contracts/type/Version.sol": {
1560
+ "VersionLib": [
1561
+ {
1562
+ "length": 20,
1563
+ "start": 1599
1564
+ },
1565
+ {
1566
+ "length": 20,
1567
+ "start": 4633
1568
+ }
1569
+ ],
1570
+ "VersionPartLib": [
1571
+ {
1572
+ "length": 20,
1573
+ "start": 7093
1574
+ },
1575
+ {
1576
+ "length": 20,
1577
+ "start": 15592
1578
+ }
1579
+ ]
1580
+ }
1581
+ },
1582
+ "deployedLinkReferences": {
1583
+ "contracts/type/Amount.sol": {
1584
+ "AmountLib": [
1585
+ {
1586
+ "length": 20,
1587
+ "start": 2742
1588
+ },
1589
+ {
1590
+ "length": 20,
1591
+ "start": 3038
1592
+ },
1593
+ {
1594
+ "length": 20,
1595
+ "start": 3501
1596
+ },
1597
+ {
1598
+ "length": 20,
1599
+ "start": 3640
1600
+ },
1601
+ {
1602
+ "length": 20,
1603
+ "start": 8442
1604
+ },
1605
+ {
1606
+ "length": 20,
1607
+ "start": 8585
1608
+ },
1609
+ {
1610
+ "length": 20,
1611
+ "start": 8729
1612
+ },
1613
+ {
1614
+ "length": 20,
1615
+ "start": 14054
1616
+ },
1617
+ {
1618
+ "length": 20,
1619
+ "start": 14187
1620
+ },
1621
+ {
1622
+ "length": 20,
1623
+ "start": 14646
1624
+ },
1625
+ {
1626
+ "length": 20,
1627
+ "start": 14894
1628
+ },
1629
+ {
1630
+ "length": 20,
1631
+ "start": 15029
1632
+ },
1633
+ {
1634
+ "length": 20,
1635
+ "start": 15677
1636
+ }
1637
+ ]
1638
+ },
1639
+ "contracts/type/Fee.sol": {
1640
+ "FeeLib": [
1641
+ {
1642
+ "length": 20,
1643
+ "start": 5964
1644
+ },
1645
+ {
1646
+ "length": 20,
1647
+ "start": 7196
1648
+ }
1649
+ ]
1650
+ },
1651
+ "contracts/type/NftId.sol": {
1652
+ "NftIdLib": [
1653
+ {
1654
+ "length": 20,
1655
+ "start": 1539
1656
+ },
1657
+ {
1658
+ "length": 20,
1659
+ "start": 10437
1660
+ },
1661
+ {
1662
+ "length": 20,
1663
+ "start": 12376
1664
+ },
1665
+ {
1666
+ "length": 20,
1667
+ "start": 13327
1668
+ }
1669
+ ]
1670
+ },
1671
+ "contracts/type/RoleId.sol": {
1672
+ "RoleIdLib": [
1673
+ {
1674
+ "length": 20,
1675
+ "start": 6831
1676
+ },
1677
+ {
1678
+ "length": 20,
1679
+ "start": 15603
1680
+ }
1681
+ ]
1682
+ },
1683
+ "contracts/type/Version.sol": {
1684
+ "VersionLib": [
1685
+ {
1686
+ "length": 20,
1687
+ "start": 1385
1688
+ },
1689
+ {
1690
+ "length": 20,
1691
+ "start": 4419
1692
+ }
1693
+ ],
1694
+ "VersionPartLib": [
1695
+ {
1696
+ "length": 20,
1697
+ "start": 6879
1698
+ },
1699
+ {
1700
+ "length": 20,
1701
+ "start": 15378
1702
+ }
1703
+ ]
1704
+ }
1705
+ }
1706
+ }