@etherisc/gif-next 0.0.2-ffba655 → 3.0.0-04e2e0d-531

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (709) hide show
  1. package/README.md +285 -68
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1061 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +806 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +837 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1723 -0
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +2053 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1422 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +817 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/access → authorization}/IAccess.sol/IAccess.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1400 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +465 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +407 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +652 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1234 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +844 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +939 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1894 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +950 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +838 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1369 -0
  40. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  42. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1474 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +844 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2043 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +844 -0
  50. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  52. package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.dbg.json +4 -0
  53. package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.json +799 -0
  54. package/artifacts/contracts/examples/flight/FlightMessageVerifier.sol/FlightMessageVerifier.dbg.json +4 -0
  55. package/artifacts/contracts/examples/flight/FlightMessageVerifier.sol/FlightMessageVerifier.json +229 -0
  56. package/artifacts/contracts/examples/flight/FlightNft.sol/FlightNft.dbg.json +4 -0
  57. package/artifacts/contracts/examples/flight/FlightNft.sol/FlightNft.json +801 -0
  58. package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.dbg.json +4 -0
  59. package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.json +1353 -0
  60. package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.json +896 -0
  62. package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.dbg.json +4 -0
  63. package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.json +1466 -0
  64. package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.json +844 -0
  66. package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.dbg.json +4 -0
  67. package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.json +2289 -0
  68. package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.dbg.json +4 -0
  69. package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.json +891 -0
  70. package/artifacts/contracts/examples/flight/FlightProductManager.sol/FlightProductManager.dbg.json +4 -0
  71. package/artifacts/contracts/examples/flight/FlightProductManager.sol/FlightProductManager.json +711 -0
  72. package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.dbg.json +4 -0
  73. package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.json +586 -0
  74. package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.dbg.json +4 -0
  75. package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.json +901 -0
  76. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  77. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1429 -0
  78. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  79. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +844 -0
  80. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  81. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1161 -0
  82. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  83. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1637 -0
  84. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  85. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +844 -0
  86. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  87. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2575 -0
  88. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  89. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +844 -0
  90. package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
  91. package/artifacts/contracts/instance/BaseStore.sol/BaseStore.json +382 -0
  92. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  93. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  94. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
  95. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.json +354 -0
  96. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  97. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +734 -451
  98. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  99. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +1163 -0
  100. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  101. package/artifacts/contracts/instance/Instance.sol/Instance.json +810 -530
  102. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  103. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2388 -0
  104. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  105. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +872 -0
  106. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  107. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2687 -0
  108. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1409 -0
  110. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  111. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +792 -0
  112. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  113. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3089 -0
  114. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
  115. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +3477 -0
  116. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  117. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
  118. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  119. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  120. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  121. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  122. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  123. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  124. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  125. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  126. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  127. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  128. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  129. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  130. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  131. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IBundle.sol/IBundle.json} +2 -2
  132. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  133. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IComponents.sol/IComponents.json} +2 -2
  134. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  135. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  136. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  137. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  138. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  139. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.json +10 -0
  140. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  141. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  142. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  143. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +947 -0
  144. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  145. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +849 -0
  146. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  147. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  148. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  149. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +762 -0
  150. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  151. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +762 -0
  152. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  153. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +863 -0
  154. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  155. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1042 -0
  156. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  157. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +830 -0
  158. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  159. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1232 -0
  160. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  161. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +844 -0
  162. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  163. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1450 -0
  164. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  165. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +886 -0
  166. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  167. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +1045 -0
  168. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  169. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +895 -0
  170. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  171. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1461 -0
  172. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  173. package/artifacts/contracts/pool/Pool.sol/Pool.json +1015 -0
  174. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  175. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
  176. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  177. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1845 -0
  178. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +886 -0
  180. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  181. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +1036 -0
  182. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  183. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +810 -0
  184. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  185. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1149 -0
  186. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  187. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +844 -0
  188. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  189. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1536 -0
  190. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  191. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +906 -0
  192. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  193. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +804 -0
  194. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  195. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1104 -0
  196. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  197. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +1048 -0
  198. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  199. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +652 -0
  200. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  201. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1006 -0
  202. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  203. package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +665 -0
  204. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  205. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1416 -0
  206. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  207. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +791 -0
  208. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  209. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +874 -0
  210. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  211. package/artifacts/contracts/product/PricingService.sol/PricingService.json +932 -0
  212. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  213. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +834 -0
  214. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  215. package/artifacts/contracts/product/Product.sol/Product.json +1107 -0
  216. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  217. package/artifacts/contracts/product/RiskService.sol/RiskService.json +873 -0
  218. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  219. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +794 -0
  220. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  221. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +295 -2
  222. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  223. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +1061 -113
  224. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  225. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1072 -0
  226. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  227. package/artifacts/contracts/{instance/component/IComponent.sol/IInstanceLinked.json → registry/IRelease.sol/IRelease.json} +6 -6
  228. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  229. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +39 -0
  230. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  231. package/artifacts/contracts/registry/Registry.sol/Registry.json +1549 -176
  232. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  233. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2243 -0
  234. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  235. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1137 -0
  236. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  237. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1298 -0
  238. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  239. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +793 -0
  240. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  241. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2259 -0
  242. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  243. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  244. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  245. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1395 -0
  246. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  247. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +705 -0
  248. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  249. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +721 -0
  250. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  251. package/artifacts/contracts/shared/Component.sol/Component.json +695 -0
  252. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  253. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1576 -0
  254. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  255. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +882 -0
  256. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  257. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
  258. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  259. package/artifacts/contracts/{registry/IRegistry.sol/IOwnable.json → shared/ContractLib.sol/IInstanceAdminHelper.json} +5 -5
  260. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  261. package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/ContractLib.sol/ITargetHelper.json} +4 -9
  262. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  263. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  264. package/artifacts/contracts/shared/IAuthorizedComponent.sol/IAuthorizedComponent.dbg.json +4 -0
  265. package/artifacts/contracts/shared/IAuthorizedComponent.sol/IAuthorizedComponent.json +633 -0
  266. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  267. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +620 -0
  268. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  269. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1200 -0
  270. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  271. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +697 -0
  272. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  273. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +146 -0
  274. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  275. package/artifacts/contracts/{registry/IRegistry.sol/IRegisterable.json → shared/INftOwnable.sol/INftOwnable.json} +72 -72
  276. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  277. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  278. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  279. package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IRegisterable.sol/IRegisterable.json} +179 -158
  280. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  281. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +5 -19
  282. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  283. package/artifacts/contracts/shared/IService.sol/IService.json +428 -0
  284. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  285. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  286. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  287. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +785 -0
  288. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  289. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  290. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  291. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  292. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  293. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +228 -0
  294. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  295. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  296. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  297. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +397 -0
  298. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  299. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  300. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  301. package/artifacts/contracts/shared/Service.sol/Service.json +482 -0
  302. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  303. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +723 -0
  304. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  305. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  306. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  307. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  308. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  309. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +2772 -0
  310. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  311. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1159 -0
  312. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
  313. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
  314. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  315. package/artifacts/contracts/staking/Staking.sol/Staking.json +3200 -0
  316. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  317. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
  318. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  319. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +867 -0
  320. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  321. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +704 -0
  322. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  323. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1356 -0
  324. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  325. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +786 -0
  326. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  327. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +3097 -0
  328. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
  329. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
  330. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  331. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +679 -0
  332. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  333. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  334. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  336. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +270 -0
  338. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
  340. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  342. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  344. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/Fee.sol/FeeLib.json +373 -0
  346. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  347. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  348. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  349. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  350. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  351. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  352. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  353. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  354. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  355. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +238 -0
  356. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  357. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  358. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  359. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +161 -0
  360. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  361. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  362. package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.dbg.json +4 -0
  363. package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.json +33 -0
  364. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  365. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  366. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  367. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
  368. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  369. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +308 -0
  370. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  371. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  372. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  373. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  374. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  375. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  376. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  377. package/artifacts/contracts/type/String.sol/StrLib.json +199 -0
  378. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  379. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +344 -0
  380. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  381. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -0
  382. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  383. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  384. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  385. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  386. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  387. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +65 -0
  388. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  389. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +672 -0
  390. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  391. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
  392. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  393. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +88 -0
  394. package/contracts/accounting/AccountingService.sol +262 -0
  395. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  396. package/contracts/accounting/IAccountingService.sol +46 -0
  397. package/contracts/authorization/AccessAdmin.sol +660 -0
  398. package/contracts/authorization/AccessAdminLib.sol +695 -0
  399. package/contracts/authorization/AccessManagerCloneable.sol +143 -0
  400. package/contracts/authorization/Authorization.sol +190 -0
  401. package/contracts/authorization/IAccess.sol +66 -0
  402. package/contracts/authorization/IAccessAdmin.sol +142 -0
  403. package/contracts/authorization/IAuthorization.sol +26 -0
  404. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  405. package/contracts/authorization/ServiceAuthorization.sol +300 -0
  406. package/contracts/distribution/BasicDistribution.sol +140 -0
  407. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  408. package/contracts/distribution/Distribution.sol +245 -0
  409. package/contracts/distribution/DistributionService.sol +450 -0
  410. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  411. package/contracts/distribution/IDistributionComponent.sol +45 -0
  412. package/contracts/distribution/IDistributionService.sol +116 -0
  413. package/contracts/examples/fire/DamageLevel.sol +59 -0
  414. package/contracts/examples/fire/FirePool.sol +86 -0
  415. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  416. package/contracts/examples/fire/FireProduct.sol +433 -0
  417. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  418. package/contracts/examples/fire/FireUSD.sol +26 -0
  419. package/contracts/examples/flight/FlightLib.sol +337 -0
  420. package/contracts/examples/flight/FlightMessageVerifier.sol +128 -0
  421. package/contracts/examples/flight/FlightNft.sol +234 -0
  422. package/contracts/examples/flight/FlightOracle.sol +226 -0
  423. package/contracts/examples/flight/FlightOracleAuthorization.sol +57 -0
  424. package/contracts/examples/flight/FlightPool.sol +89 -0
  425. package/contracts/examples/flight/FlightPoolAuthorization.sol +37 -0
  426. package/contracts/examples/flight/FlightProduct.sol +687 -0
  427. package/contracts/examples/flight/FlightProductAuthorization.sol +70 -0
  428. package/contracts/examples/flight/FlightProductManager.sol +49 -0
  429. package/contracts/examples/flight/FlightUSD.sol +28 -0
  430. package/contracts/examples/flight/originalV1.sol +396 -0
  431. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  432. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  433. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  434. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  435. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  436. package/contracts/examples/unpermissioned/SimpleProduct.sol +437 -0
  437. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  438. package/contracts/instance/BaseStore.sol +97 -0
  439. package/contracts/instance/BundleSet.sol +130 -0
  440. package/contracts/instance/IBaseStore.sol +45 -0
  441. package/contracts/instance/IInstance.sol +151 -15
  442. package/contracts/instance/IInstanceService.sol +121 -0
  443. package/contracts/instance/Instance.sol +332 -45
  444. package/contracts/instance/InstanceAdmin.sol +306 -0
  445. package/contracts/instance/InstanceAuthorizationV3.sol +275 -0
  446. package/contracts/instance/InstanceReader.sol +640 -0
  447. package/contracts/instance/InstanceService.sol +518 -0
  448. package/contracts/instance/InstanceServiceManager.sol +39 -0
  449. package/contracts/instance/InstanceStore.sol +323 -0
  450. package/contracts/instance/ProductStore.sol +290 -0
  451. package/contracts/instance/RiskSet.sol +126 -0
  452. package/contracts/instance/TargetNames.sol +10 -0
  453. package/contracts/instance/base/BalanceStore.sol +121 -0
  454. package/contracts/instance/base/Cloneable.sol +28 -0
  455. package/contracts/instance/base/ObjectCounter.sol +20 -0
  456. package/contracts/instance/base/ObjectLifecycle.sol +109 -0
  457. package/contracts/instance/base/ObjectSet.sol +77 -0
  458. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  459. package/contracts/instance/module/IBundle.sol +21 -0
  460. package/contracts/instance/module/IComponents.sol +60 -0
  461. package/contracts/instance/module/IDistribution.sol +54 -0
  462. package/contracts/instance/module/IPolicy.sol +105 -0
  463. package/contracts/instance/module/IRisk.sol +16 -0
  464. package/contracts/mock/Dip.sol +26 -0
  465. package/contracts/oracle/BasicOracle.sol +45 -0
  466. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  467. package/contracts/oracle/IOracle.sol +41 -0
  468. package/contracts/oracle/IOracleComponent.sol +33 -0
  469. package/contracts/oracle/IOracleService.sol +66 -0
  470. package/contracts/oracle/Oracle.sol +152 -0
  471. package/contracts/oracle/OracleService.sol +310 -0
  472. package/contracts/oracle/OracleServiceManager.sol +39 -0
  473. package/contracts/pool/BasicPool.sol +161 -0
  474. package/contracts/pool/BasicPoolAuthorization.sol +81 -0
  475. package/contracts/pool/BundleService.sol +386 -0
  476. package/contracts/pool/BundleServiceManager.sol +39 -0
  477. package/contracts/pool/IBundleService.sol +116 -0
  478. package/contracts/pool/IPoolComponent.sol +62 -0
  479. package/contracts/pool/IPoolService.sol +170 -0
  480. package/contracts/pool/Pool.sol +331 -0
  481. package/contracts/pool/PoolLib.sol +341 -0
  482. package/contracts/pool/PoolService.sol +614 -0
  483. package/contracts/pool/PoolServiceManager.sol +39 -0
  484. package/contracts/product/ApplicationService.sol +327 -0
  485. package/contracts/product/ApplicationServiceManager.sol +38 -0
  486. package/contracts/product/BasicProduct.sol +48 -0
  487. package/contracts/product/BasicProductAuthorization.sol +64 -0
  488. package/contracts/product/ClaimService.sol +626 -0
  489. package/contracts/product/ClaimServiceManager.sol +38 -0
  490. package/contracts/product/IApplicationService.sol +88 -0
  491. package/contracts/product/IClaimService.sol +136 -0
  492. package/contracts/product/IPolicyService.sol +102 -0
  493. package/contracts/product/IPricingService.sol +40 -0
  494. package/contracts/product/IProductComponent.sol +62 -0
  495. package/contracts/product/IRiskService.sol +48 -0
  496. package/contracts/product/PolicyService.sol +645 -0
  497. package/contracts/product/PolicyServiceLib.sol +141 -0
  498. package/contracts/product/PolicyServiceManager.sol +39 -0
  499. package/contracts/product/PricingService.sol +306 -0
  500. package/contracts/product/PricingServiceManager.sol +39 -0
  501. package/contracts/product/Product.sol +491 -0
  502. package/contracts/product/RiskService.sol +189 -0
  503. package/contracts/product/RiskServiceManager.sol +39 -0
  504. package/contracts/registry/ChainNft.sol +176 -100
  505. package/contracts/registry/IRegistry.sol +149 -47
  506. package/contracts/registry/IRegistryService.sol +62 -0
  507. package/contracts/registry/IRelease.sol +29 -0
  508. package/contracts/registry/ITransferInterceptor.sol +6 -0
  509. package/contracts/registry/Registry.sol +671 -117
  510. package/contracts/registry/RegistryAdmin.sol +179 -0
  511. package/contracts/registry/RegistryAuthorization.sol +337 -0
  512. package/contracts/registry/RegistryService.sol +241 -0
  513. package/contracts/registry/RegistryServiceManager.sol +53 -0
  514. package/contracts/registry/ReleaseAdmin.sol +206 -0
  515. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  516. package/contracts/registry/ReleaseRegistry.sol +525 -0
  517. package/contracts/registry/ServiceAuthorizationV3.sol +342 -0
  518. package/contracts/registry/TokenRegistry.sol +317 -0
  519. package/contracts/shared/Component.sol +210 -0
  520. package/contracts/shared/ComponentService.sol +696 -0
  521. package/contracts/shared/ComponentServiceManager.sol +38 -0
  522. package/contracts/shared/ContractLib.sol +312 -0
  523. package/contracts/shared/EcdsaChecker.sol +5 -0
  524. package/contracts/shared/IAuthorizedComponent.sol +15 -0
  525. package/contracts/shared/IComponent.sol +58 -0
  526. package/contracts/shared/IComponentService.sol +112 -0
  527. package/contracts/shared/IInstanceLinkedComponent.sol +27 -0
  528. package/contracts/shared/ILifecycle.sol +31 -0
  529. package/contracts/shared/INftOwnable.sol +27 -0
  530. package/contracts/shared/IPolicyHolder.sol +35 -0
  531. package/contracts/shared/IRegisterable.sol +36 -0
  532. package/contracts/shared/IRegistryLinked.sol +11 -0
  533. package/contracts/shared/IService.sol +23 -0
  534. package/contracts/shared/InitializableERC165.sol +35 -0
  535. package/contracts/shared/InstanceLinkedComponent.sol +233 -0
  536. package/contracts/shared/Lifecycle.sol +88 -0
  537. package/contracts/shared/NftIdSet.sol +65 -0
  538. package/contracts/shared/NftOwnable.sol +129 -0
  539. package/contracts/shared/PolicyHolder.sol +63 -0
  540. package/contracts/shared/Registerable.sol +106 -0
  541. package/contracts/shared/RegistryLinked.sol +38 -0
  542. package/contracts/shared/Service.sol +67 -0
  543. package/contracts/shared/TokenHandler.sol +342 -0
  544. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  545. package/contracts/staking/IStaking.sol +368 -0
  546. package/contracts/staking/IStakingService.sol +127 -0
  547. package/contracts/staking/ITargetLimitHandler.sol +17 -0
  548. package/contracts/staking/Staking.sol +798 -0
  549. package/contracts/staking/StakingLib.sol +195 -0
  550. package/contracts/staking/StakingManager.sol +53 -0
  551. package/contracts/staking/StakingReader.sol +171 -0
  552. package/contracts/staking/StakingService.sol +321 -0
  553. package/contracts/staking/StakingServiceManager.sol +46 -0
  554. package/contracts/staking/StakingStore.sol +1368 -0
  555. package/contracts/staking/TargetHandler.sol +132 -0
  556. package/contracts/staking/TargetManagerLib.sol +234 -0
  557. package/contracts/type/AddressSet.sol +58 -0
  558. package/contracts/type/Amount.sol +154 -0
  559. package/contracts/type/Blocknumber.sol +137 -0
  560. package/contracts/type/ChainId.sol +101 -0
  561. package/contracts/type/ClaimId.sol +80 -0
  562. package/contracts/type/DistributorType.sol +55 -0
  563. package/contracts/type/Fee.sol +66 -0
  564. package/contracts/type/Key32.sol +50 -0
  565. package/contracts/type/Key32Set.sol +62 -0
  566. package/contracts/type/NftId.sol +85 -0
  567. package/contracts/type/NftIdSet.sol +62 -0
  568. package/contracts/type/ObjectType.sol +278 -0
  569. package/contracts/type/PayoutId.sol +82 -0
  570. package/contracts/type/Referral.sol +96 -0
  571. package/contracts/type/RequestId.sol +75 -0
  572. package/contracts/type/RequestIdSet.sol +62 -0
  573. package/contracts/type/RiskId.sol +75 -0
  574. package/contracts/type/RoleId.sol +180 -0
  575. package/contracts/type/Seconds.sol +124 -0
  576. package/contracts/type/Selector.sol +107 -0
  577. package/contracts/type/StateId.sol +149 -0
  578. package/contracts/type/String.sol +95 -0
  579. package/contracts/type/Timestamp.sol +152 -0
  580. package/contracts/type/UFixed.sol +263 -0
  581. package/contracts/type/Version.sol +159 -0
  582. package/contracts/upgradeability/IVersionable.sol +56 -0
  583. package/contracts/upgradeability/ProxyManager.sol +246 -0
  584. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +24 -0
  585. package/contracts/upgradeability/Versionable.sol +62 -0
  586. package/package.json +27 -7
  587. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  588. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  589. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  590. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  591. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  592. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
  593. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  594. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  595. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  596. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -213
  597. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  598. package/artifacts/contracts/components/Product.sol/Product.json +0 -231
  599. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  600. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  601. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  602. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  603. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  604. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  605. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  606. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  607. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  608. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  609. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  610. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  611. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  612. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  613. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  614. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  615. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  616. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  617. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  618. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  619. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  620. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  621. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  622. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  623. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  624. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  625. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  626. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  627. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  628. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  629. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  630. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  631. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  632. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  633. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
  634. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  635. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  636. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
  637. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  638. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
  639. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  640. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  641. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  642. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  643. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  644. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
  645. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  646. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
  647. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  648. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  649. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
  650. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  651. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -162
  652. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  653. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  654. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  655. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  656. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  657. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  658. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  659. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -167
  660. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  661. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  662. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  663. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  664. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  665. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  666. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  667. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  668. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  669. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  670. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  671. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  672. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  673. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  674. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -92
  675. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  676. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -174
  677. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  678. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -453
  679. package/contracts/components/Component.sol +0 -62
  680. package/contracts/components/IPool.sol +0 -9
  681. package/contracts/components/IProduct.sol +0 -12
  682. package/contracts/components/Pool.sol +0 -29
  683. package/contracts/components/Product.sol +0 -66
  684. package/contracts/experiment/errors/Require.sol +0 -33
  685. package/contracts/experiment/errors/Revert.sol +0 -39
  686. package/contracts/experiment/inheritance/A.sol +0 -56
  687. package/contracts/experiment/inheritance/B.sol +0 -23
  688. package/contracts/experiment/inheritance/C.sol +0 -28
  689. package/contracts/experiment/inheritance/IA.sol +0 -18
  690. package/contracts/experiment/inheritance/IB.sol +0 -9
  691. package/contracts/experiment/inheritance/IC.sol +0 -11
  692. package/contracts/experiment/types/TypeA.sol +0 -42
  693. package/contracts/experiment/types/TypeB.sol +0 -24
  694. package/contracts/instance/access/Access.sol +0 -218
  695. package/contracts/instance/access/IAccess.sol +0 -83
  696. package/contracts/instance/component/ComponentModule.sol +0 -248
  697. package/contracts/instance/component/IComponent.sol +0 -95
  698. package/contracts/instance/policy/IPolicy.sol +0 -66
  699. package/contracts/instance/policy/PolicyModule.sol +0 -107
  700. package/contracts/instance/pool/IPoolModule.sol +0 -41
  701. package/contracts/instance/pool/PoolModule.sol +0 -86
  702. package/contracts/instance/product/IProductService.sol +0 -46
  703. package/contracts/instance/product/ProductService.sol +0 -108
  704. package/contracts/registry/IChainNft.sol +0 -18
  705. package/contracts/types/Blocknumber.sol +0 -60
  706. package/contracts/types/ChainId.sol +0 -30
  707. package/contracts/types/NftId.sol +0 -35
  708. package/contracts/types/Timestamp.sol +0 -55
  709. package/contracts/types/UFixed.sol +0 -211
@@ -0,0 +1,3477 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ProductStore",
4
+ "sourceName": "contracts/instance/ProductStore.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": "targetNftId",
49
+ "type": "uint96"
50
+ }
51
+ ],
52
+ "name": "ErrorBalanceStoreTargetAlreadyRegistered",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "targetNftId",
60
+ "type": "uint96"
61
+ }
62
+ ],
63
+ "name": "ErrorBalanceStoreTargetNotRegistered",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "Key32",
70
+ "name": "key",
71
+ "type": "bytes32"
72
+ },
73
+ {
74
+ "internalType": "ObjectType",
75
+ "name": "objectType",
76
+ "type": "uint8"
77
+ }
78
+ ],
79
+ "name": "ErrorBaseStoreAlreadyCreated",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [
84
+ {
85
+ "internalType": "ObjectType",
86
+ "name": "objectType",
87
+ "type": "uint8"
88
+ }
89
+ ],
90
+ "name": "ErrorBaseStoreNoLifecycle",
91
+ "type": "error"
92
+ },
93
+ {
94
+ "inputs": [
95
+ {
96
+ "internalType": "Key32",
97
+ "name": "key",
98
+ "type": "bytes32"
99
+ }
100
+ ],
101
+ "name": "ErrorBaseStoreNotExisting",
102
+ "type": "error"
103
+ },
104
+ {
105
+ "inputs": [
106
+ {
107
+ "internalType": "Key32",
108
+ "name": "key",
109
+ "type": "bytes32"
110
+ }
111
+ ],
112
+ "name": "ErrorBaseStoreStateZero",
113
+ "type": "error"
114
+ },
115
+ {
116
+ "inputs": [
117
+ {
118
+ "internalType": "ObjectType",
119
+ "name": "objectType",
120
+ "type": "uint8"
121
+ }
122
+ ],
123
+ "name": "ErrorBaseStoreTypeUndefined",
124
+ "type": "error"
125
+ },
126
+ {
127
+ "inputs": [
128
+ {
129
+ "internalType": "address",
130
+ "name": "contractAddress",
131
+ "type": "address"
132
+ },
133
+ {
134
+ "internalType": "ObjectType",
135
+ "name": "objectType",
136
+ "type": "uint8"
137
+ },
138
+ {
139
+ "internalType": "StateId",
140
+ "name": "actual",
141
+ "type": "uint8"
142
+ },
143
+ {
144
+ "internalType": "StateId",
145
+ "name": "required",
146
+ "type": "uint8"
147
+ }
148
+ ],
149
+ "name": "ErrorFromStateMissmatch",
150
+ "type": "error"
151
+ },
152
+ {
153
+ "inputs": [
154
+ {
155
+ "internalType": "address",
156
+ "name": "contractAddress",
157
+ "type": "address"
158
+ },
159
+ {
160
+ "internalType": "ObjectType",
161
+ "name": "objectType",
162
+ "type": "uint8"
163
+ },
164
+ {
165
+ "internalType": "StateId",
166
+ "name": "fromStateId",
167
+ "type": "uint8"
168
+ },
169
+ {
170
+ "internalType": "StateId",
171
+ "name": "toStateId",
172
+ "type": "uint8"
173
+ }
174
+ ],
175
+ "name": "ErrorInvalidStateTransition",
176
+ "type": "error"
177
+ },
178
+ {
179
+ "inputs": [
180
+ {
181
+ "internalType": "address",
182
+ "name": "contractAddress",
183
+ "type": "address"
184
+ },
185
+ {
186
+ "internalType": "ObjectType",
187
+ "name": "objectType",
188
+ "type": "uint8"
189
+ }
190
+ ],
191
+ "name": "ErrorNoLifecycle",
192
+ "type": "error"
193
+ },
194
+ {
195
+ "inputs": [],
196
+ "name": "InvalidInitialization",
197
+ "type": "error"
198
+ },
199
+ {
200
+ "inputs": [],
201
+ "name": "NotInitializing",
202
+ "type": "error"
203
+ },
204
+ {
205
+ "anonymous": false,
206
+ "inputs": [
207
+ {
208
+ "indexed": false,
209
+ "internalType": "address",
210
+ "name": "authority",
211
+ "type": "address"
212
+ }
213
+ ],
214
+ "name": "AuthorityUpdated",
215
+ "type": "event"
216
+ },
217
+ {
218
+ "anonymous": false,
219
+ "inputs": [
220
+ {
221
+ "indexed": false,
222
+ "internalType": "uint64",
223
+ "name": "version",
224
+ "type": "uint64"
225
+ }
226
+ ],
227
+ "name": "Initialized",
228
+ "type": "event"
229
+ },
230
+ {
231
+ "anonymous": false,
232
+ "inputs": [
233
+ {
234
+ "indexed": false,
235
+ "internalType": "NftId",
236
+ "name": "targetNftId",
237
+ "type": "uint96"
238
+ },
239
+ {
240
+ "indexed": false,
241
+ "internalType": "Amount",
242
+ "name": "addedAmount",
243
+ "type": "uint96"
244
+ },
245
+ {
246
+ "indexed": false,
247
+ "internalType": "Amount",
248
+ "name": "newBalance",
249
+ "type": "uint96"
250
+ },
251
+ {
252
+ "indexed": false,
253
+ "internalType": "Blocknumber",
254
+ "name": "lastUpdatedIn",
255
+ "type": "uint40"
256
+ }
257
+ ],
258
+ "name": "LogBalanceStoreBalanceDecreased",
259
+ "type": "event"
260
+ },
261
+ {
262
+ "anonymous": false,
263
+ "inputs": [
264
+ {
265
+ "indexed": false,
266
+ "internalType": "NftId",
267
+ "name": "targetNftId",
268
+ "type": "uint96"
269
+ },
270
+ {
271
+ "indexed": false,
272
+ "internalType": "Amount",
273
+ "name": "addedAmount",
274
+ "type": "uint96"
275
+ },
276
+ {
277
+ "indexed": false,
278
+ "internalType": "Amount",
279
+ "name": "newBalance",
280
+ "type": "uint96"
281
+ },
282
+ {
283
+ "indexed": false,
284
+ "internalType": "Blocknumber",
285
+ "name": "lastUpdatedIn",
286
+ "type": "uint40"
287
+ }
288
+ ],
289
+ "name": "LogBalanceStoreBalanceIncreased",
290
+ "type": "event"
291
+ },
292
+ {
293
+ "anonymous": false,
294
+ "inputs": [
295
+ {
296
+ "indexed": false,
297
+ "internalType": "NftId",
298
+ "name": "targetNftId",
299
+ "type": "uint96"
300
+ },
301
+ {
302
+ "indexed": false,
303
+ "internalType": "Amount",
304
+ "name": "addedAmount",
305
+ "type": "uint96"
306
+ },
307
+ {
308
+ "indexed": false,
309
+ "internalType": "Amount",
310
+ "name": "newBalance",
311
+ "type": "uint96"
312
+ },
313
+ {
314
+ "indexed": false,
315
+ "internalType": "Blocknumber",
316
+ "name": "lastUpdatedIn",
317
+ "type": "uint40"
318
+ }
319
+ ],
320
+ "name": "LogBalanceStoreFeesDecreased",
321
+ "type": "event"
322
+ },
323
+ {
324
+ "anonymous": false,
325
+ "inputs": [
326
+ {
327
+ "indexed": false,
328
+ "internalType": "NftId",
329
+ "name": "targetNftId",
330
+ "type": "uint96"
331
+ },
332
+ {
333
+ "indexed": false,
334
+ "internalType": "Amount",
335
+ "name": "addedAmount",
336
+ "type": "uint96"
337
+ },
338
+ {
339
+ "indexed": false,
340
+ "internalType": "Amount",
341
+ "name": "newBalance",
342
+ "type": "uint96"
343
+ },
344
+ {
345
+ "indexed": false,
346
+ "internalType": "Blocknumber",
347
+ "name": "lastUpdatedIn",
348
+ "type": "uint40"
349
+ }
350
+ ],
351
+ "name": "LogBalanceStoreFeesIncreased",
352
+ "type": "event"
353
+ },
354
+ {
355
+ "anonymous": false,
356
+ "inputs": [
357
+ {
358
+ "indexed": false,
359
+ "internalType": "NftId",
360
+ "name": "targetNftId",
361
+ "type": "uint96"
362
+ },
363
+ {
364
+ "indexed": false,
365
+ "internalType": "Amount",
366
+ "name": "addedAmount",
367
+ "type": "uint96"
368
+ },
369
+ {
370
+ "indexed": false,
371
+ "internalType": "Amount",
372
+ "name": "newBalance",
373
+ "type": "uint96"
374
+ },
375
+ {
376
+ "indexed": false,
377
+ "internalType": "Blocknumber",
378
+ "name": "lastUpdatedIn",
379
+ "type": "uint40"
380
+ }
381
+ ],
382
+ "name": "LogBalanceStoreLockedDecreased",
383
+ "type": "event"
384
+ },
385
+ {
386
+ "anonymous": false,
387
+ "inputs": [
388
+ {
389
+ "indexed": false,
390
+ "internalType": "NftId",
391
+ "name": "targetNftId",
392
+ "type": "uint96"
393
+ },
394
+ {
395
+ "indexed": false,
396
+ "internalType": "Amount",
397
+ "name": "addedAmount",
398
+ "type": "uint96"
399
+ },
400
+ {
401
+ "indexed": false,
402
+ "internalType": "Amount",
403
+ "name": "newBalance",
404
+ "type": "uint96"
405
+ },
406
+ {
407
+ "indexed": false,
408
+ "internalType": "Blocknumber",
409
+ "name": "lastUpdatedIn",
410
+ "type": "uint40"
411
+ }
412
+ ],
413
+ "name": "LogBalanceStoreLockedIncreased",
414
+ "type": "event"
415
+ },
416
+ {
417
+ "anonymous": false,
418
+ "inputs": [
419
+ {
420
+ "indexed": false,
421
+ "internalType": "NftId",
422
+ "name": "targetNftId",
423
+ "type": "uint96"
424
+ }
425
+ ],
426
+ "name": "LogBalanceStoreTargetRegistered",
427
+ "type": "event"
428
+ },
429
+ {
430
+ "anonymous": false,
431
+ "inputs": [
432
+ {
433
+ "indexed": true,
434
+ "internalType": "Key32",
435
+ "name": "key",
436
+ "type": "bytes32"
437
+ },
438
+ {
439
+ "indexed": true,
440
+ "internalType": "ObjectType",
441
+ "name": "objectType",
442
+ "type": "uint8"
443
+ },
444
+ {
445
+ "indexed": true,
446
+ "internalType": "StateId",
447
+ "name": "state",
448
+ "type": "uint8"
449
+ }
450
+ ],
451
+ "name": "LogBaseStoreMetadataCreated",
452
+ "type": "event"
453
+ },
454
+ {
455
+ "anonymous": false,
456
+ "inputs": [
457
+ {
458
+ "indexed": true,
459
+ "internalType": "Key32",
460
+ "name": "key",
461
+ "type": "bytes32"
462
+ },
463
+ {
464
+ "indexed": true,
465
+ "internalType": "StateId",
466
+ "name": "oldState",
467
+ "type": "uint8"
468
+ },
469
+ {
470
+ "indexed": true,
471
+ "internalType": "StateId",
472
+ "name": "newState",
473
+ "type": "uint8"
474
+ }
475
+ ],
476
+ "name": "LogBaseStoreMetadataUpdated",
477
+ "type": "event"
478
+ },
479
+ {
480
+ "anonymous": false,
481
+ "inputs": [
482
+ {
483
+ "indexed": false,
484
+ "internalType": "NftId",
485
+ "name": "policyNftId",
486
+ "type": "uint96"
487
+ },
488
+ {
489
+ "indexed": false,
490
+ "internalType": "ClaimId",
491
+ "name": "claimId",
492
+ "type": "uint16"
493
+ },
494
+ {
495
+ "indexed": false,
496
+ "internalType": "StateId",
497
+ "name": "state",
498
+ "type": "uint8"
499
+ },
500
+ {
501
+ "indexed": false,
502
+ "internalType": "address",
503
+ "name": "createdBy",
504
+ "type": "address"
505
+ },
506
+ {
507
+ "indexed": false,
508
+ "internalType": "address",
509
+ "name": "txOrigin",
510
+ "type": "address"
511
+ }
512
+ ],
513
+ "name": "LogProductStoreClaimInfoCreated",
514
+ "type": "event"
515
+ },
516
+ {
517
+ "anonymous": false,
518
+ "inputs": [
519
+ {
520
+ "indexed": false,
521
+ "internalType": "NftId",
522
+ "name": "policyNftId",
523
+ "type": "uint96"
524
+ },
525
+ {
526
+ "indexed": false,
527
+ "internalType": "ClaimId",
528
+ "name": "claimId",
529
+ "type": "uint16"
530
+ },
531
+ {
532
+ "indexed": false,
533
+ "internalType": "StateId",
534
+ "name": "oldState",
535
+ "type": "uint8"
536
+ },
537
+ {
538
+ "indexed": false,
539
+ "internalType": "StateId",
540
+ "name": "newState",
541
+ "type": "uint8"
542
+ },
543
+ {
544
+ "indexed": false,
545
+ "internalType": "address",
546
+ "name": "updatedBy",
547
+ "type": "address"
548
+ },
549
+ {
550
+ "indexed": false,
551
+ "internalType": "address",
552
+ "name": "txOrigin",
553
+ "type": "address"
554
+ },
555
+ {
556
+ "indexed": false,
557
+ "internalType": "Blocknumber",
558
+ "name": "lastUpdatedIn",
559
+ "type": "uint40"
560
+ }
561
+ ],
562
+ "name": "LogProductStoreClaimInfoUpdated",
563
+ "type": "event"
564
+ },
565
+ {
566
+ "anonymous": false,
567
+ "inputs": [
568
+ {
569
+ "indexed": false,
570
+ "internalType": "NftId",
571
+ "name": "productNftId",
572
+ "type": "uint96"
573
+ },
574
+ {
575
+ "indexed": false,
576
+ "internalType": "StateId",
577
+ "name": "state",
578
+ "type": "uint8"
579
+ },
580
+ {
581
+ "indexed": false,
582
+ "internalType": "address",
583
+ "name": "createdBy",
584
+ "type": "address"
585
+ },
586
+ {
587
+ "indexed": false,
588
+ "internalType": "address",
589
+ "name": "txOrigin",
590
+ "type": "address"
591
+ }
592
+ ],
593
+ "name": "LogProductStoreFeeInfoCreated",
594
+ "type": "event"
595
+ },
596
+ {
597
+ "anonymous": false,
598
+ "inputs": [
599
+ {
600
+ "indexed": false,
601
+ "internalType": "NftId",
602
+ "name": "productNftId",
603
+ "type": "uint96"
604
+ },
605
+ {
606
+ "indexed": false,
607
+ "internalType": "address",
608
+ "name": "updatedBy",
609
+ "type": "address"
610
+ },
611
+ {
612
+ "indexed": false,
613
+ "internalType": "address",
614
+ "name": "txOrigin",
615
+ "type": "address"
616
+ },
617
+ {
618
+ "indexed": false,
619
+ "internalType": "Blocknumber",
620
+ "name": "lastUpdatedIn",
621
+ "type": "uint40"
622
+ }
623
+ ],
624
+ "name": "LogProductStoreFeeInfoUpdated",
625
+ "type": "event"
626
+ },
627
+ {
628
+ "anonymous": false,
629
+ "inputs": [
630
+ {
631
+ "indexed": false,
632
+ "internalType": "NftId",
633
+ "name": "policyNftId",
634
+ "type": "uint96"
635
+ },
636
+ {
637
+ "indexed": false,
638
+ "internalType": "PayoutId",
639
+ "name": "payoutId",
640
+ "type": "uint40"
641
+ },
642
+ {
643
+ "indexed": false,
644
+ "internalType": "StateId",
645
+ "name": "state",
646
+ "type": "uint8"
647
+ },
648
+ {
649
+ "indexed": false,
650
+ "internalType": "address",
651
+ "name": "createdBy",
652
+ "type": "address"
653
+ },
654
+ {
655
+ "indexed": false,
656
+ "internalType": "address",
657
+ "name": "txOrigin",
658
+ "type": "address"
659
+ }
660
+ ],
661
+ "name": "LogProductStorePayoutInfoCreated",
662
+ "type": "event"
663
+ },
664
+ {
665
+ "anonymous": false,
666
+ "inputs": [
667
+ {
668
+ "indexed": false,
669
+ "internalType": "NftId",
670
+ "name": "policyNftId",
671
+ "type": "uint96"
672
+ },
673
+ {
674
+ "indexed": false,
675
+ "internalType": "PayoutId",
676
+ "name": "payoutId",
677
+ "type": "uint40"
678
+ },
679
+ {
680
+ "indexed": false,
681
+ "internalType": "StateId",
682
+ "name": "oldState",
683
+ "type": "uint8"
684
+ },
685
+ {
686
+ "indexed": false,
687
+ "internalType": "StateId",
688
+ "name": "newState",
689
+ "type": "uint8"
690
+ },
691
+ {
692
+ "indexed": false,
693
+ "internalType": "address",
694
+ "name": "updatedBy",
695
+ "type": "address"
696
+ },
697
+ {
698
+ "indexed": false,
699
+ "internalType": "address",
700
+ "name": "txOrigin",
701
+ "type": "address"
702
+ },
703
+ {
704
+ "indexed": false,
705
+ "internalType": "Blocknumber",
706
+ "name": "lastUpdatedIn",
707
+ "type": "uint40"
708
+ }
709
+ ],
710
+ "name": "LogProductStorePayoutInfoUpdated",
711
+ "type": "event"
712
+ },
713
+ {
714
+ "anonymous": false,
715
+ "inputs": [
716
+ {
717
+ "indexed": false,
718
+ "internalType": "NftId",
719
+ "name": "policyNftId",
720
+ "type": "uint96"
721
+ },
722
+ {
723
+ "indexed": false,
724
+ "internalType": "StateId",
725
+ "name": "state",
726
+ "type": "uint8"
727
+ },
728
+ {
729
+ "indexed": false,
730
+ "internalType": "address",
731
+ "name": "createdBy",
732
+ "type": "address"
733
+ },
734
+ {
735
+ "indexed": false,
736
+ "internalType": "address",
737
+ "name": "txOrigin",
738
+ "type": "address"
739
+ }
740
+ ],
741
+ "name": "LogProductStorePolicyInfoCreated",
742
+ "type": "event"
743
+ },
744
+ {
745
+ "anonymous": false,
746
+ "inputs": [
747
+ {
748
+ "indexed": false,
749
+ "internalType": "NftId",
750
+ "name": "policyNftId",
751
+ "type": "uint96"
752
+ },
753
+ {
754
+ "indexed": false,
755
+ "internalType": "StateId",
756
+ "name": "oldState",
757
+ "type": "uint8"
758
+ },
759
+ {
760
+ "indexed": false,
761
+ "internalType": "StateId",
762
+ "name": "newState",
763
+ "type": "uint8"
764
+ },
765
+ {
766
+ "indexed": false,
767
+ "internalType": "address",
768
+ "name": "updatedBy",
769
+ "type": "address"
770
+ },
771
+ {
772
+ "indexed": false,
773
+ "internalType": "address",
774
+ "name": "txOrigin",
775
+ "type": "address"
776
+ },
777
+ {
778
+ "indexed": false,
779
+ "internalType": "Blocknumber",
780
+ "name": "lastUpdatedIn",
781
+ "type": "uint40"
782
+ }
783
+ ],
784
+ "name": "LogProductStorePolicyInfoUpdated",
785
+ "type": "event"
786
+ },
787
+ {
788
+ "anonymous": false,
789
+ "inputs": [
790
+ {
791
+ "indexed": false,
792
+ "internalType": "NftId",
793
+ "name": "policyNftId",
794
+ "type": "uint96"
795
+ },
796
+ {
797
+ "indexed": false,
798
+ "internalType": "StateId",
799
+ "name": "state",
800
+ "type": "uint8"
801
+ },
802
+ {
803
+ "indexed": false,
804
+ "internalType": "address",
805
+ "name": "createdBy",
806
+ "type": "address"
807
+ },
808
+ {
809
+ "indexed": false,
810
+ "internalType": "address",
811
+ "name": "txOrigin",
812
+ "type": "address"
813
+ }
814
+ ],
815
+ "name": "LogProductStorePremiumInfoCreated",
816
+ "type": "event"
817
+ },
818
+ {
819
+ "anonymous": false,
820
+ "inputs": [
821
+ {
822
+ "indexed": false,
823
+ "internalType": "NftId",
824
+ "name": "policyNftId",
825
+ "type": "uint96"
826
+ },
827
+ {
828
+ "indexed": false,
829
+ "internalType": "StateId",
830
+ "name": "oldState",
831
+ "type": "uint8"
832
+ },
833
+ {
834
+ "indexed": false,
835
+ "internalType": "StateId",
836
+ "name": "newState",
837
+ "type": "uint8"
838
+ },
839
+ {
840
+ "indexed": false,
841
+ "internalType": "address",
842
+ "name": "updatedBy",
843
+ "type": "address"
844
+ },
845
+ {
846
+ "indexed": false,
847
+ "internalType": "address",
848
+ "name": "txOrigin",
849
+ "type": "address"
850
+ },
851
+ {
852
+ "indexed": false,
853
+ "internalType": "Blocknumber",
854
+ "name": "lastUpdatedIn",
855
+ "type": "uint40"
856
+ }
857
+ ],
858
+ "name": "LogProductStorePremiumInfoUpdated",
859
+ "type": "event"
860
+ },
861
+ {
862
+ "anonymous": false,
863
+ "inputs": [
864
+ {
865
+ "indexed": false,
866
+ "internalType": "NftId",
867
+ "name": "productNftId",
868
+ "type": "uint96"
869
+ },
870
+ {
871
+ "indexed": false,
872
+ "internalType": "StateId",
873
+ "name": "state",
874
+ "type": "uint8"
875
+ },
876
+ {
877
+ "indexed": false,
878
+ "internalType": "address",
879
+ "name": "createdBy",
880
+ "type": "address"
881
+ },
882
+ {
883
+ "indexed": false,
884
+ "internalType": "address",
885
+ "name": "txOrigin",
886
+ "type": "address"
887
+ }
888
+ ],
889
+ "name": "LogProductStoreProductInfoCreated",
890
+ "type": "event"
891
+ },
892
+ {
893
+ "anonymous": false,
894
+ "inputs": [
895
+ {
896
+ "indexed": false,
897
+ "internalType": "NftId",
898
+ "name": "productNftId",
899
+ "type": "uint96"
900
+ },
901
+ {
902
+ "indexed": false,
903
+ "internalType": "StateId",
904
+ "name": "oldState",
905
+ "type": "uint8"
906
+ },
907
+ {
908
+ "indexed": false,
909
+ "internalType": "StateId",
910
+ "name": "newState",
911
+ "type": "uint8"
912
+ },
913
+ {
914
+ "indexed": false,
915
+ "internalType": "address",
916
+ "name": "updatedBy",
917
+ "type": "address"
918
+ },
919
+ {
920
+ "indexed": false,
921
+ "internalType": "address",
922
+ "name": "txOrigin",
923
+ "type": "address"
924
+ },
925
+ {
926
+ "indexed": false,
927
+ "internalType": "Blocknumber",
928
+ "name": "lastUpdatedIn",
929
+ "type": "uint40"
930
+ }
931
+ ],
932
+ "name": "LogProductStoreProductInfoUpdated",
933
+ "type": "event"
934
+ },
935
+ {
936
+ "anonymous": false,
937
+ "inputs": [
938
+ {
939
+ "indexed": false,
940
+ "internalType": "RiskId",
941
+ "name": "riskId",
942
+ "type": "bytes8"
943
+ },
944
+ {
945
+ "indexed": false,
946
+ "internalType": "StateId",
947
+ "name": "state",
948
+ "type": "uint8"
949
+ },
950
+ {
951
+ "indexed": false,
952
+ "internalType": "address",
953
+ "name": "createdBy",
954
+ "type": "address"
955
+ },
956
+ {
957
+ "indexed": false,
958
+ "internalType": "address",
959
+ "name": "txOrigin",
960
+ "type": "address"
961
+ }
962
+ ],
963
+ "name": "LogProductStoreRiskInfoCreated",
964
+ "type": "event"
965
+ },
966
+ {
967
+ "anonymous": false,
968
+ "inputs": [
969
+ {
970
+ "indexed": false,
971
+ "internalType": "RiskId",
972
+ "name": "riskId",
973
+ "type": "bytes8"
974
+ },
975
+ {
976
+ "indexed": false,
977
+ "internalType": "StateId",
978
+ "name": "oldState",
979
+ "type": "uint8"
980
+ },
981
+ {
982
+ "indexed": false,
983
+ "internalType": "StateId",
984
+ "name": "newState",
985
+ "type": "uint8"
986
+ },
987
+ {
988
+ "indexed": false,
989
+ "internalType": "address",
990
+ "name": "updatedBy",
991
+ "type": "address"
992
+ },
993
+ {
994
+ "indexed": false,
995
+ "internalType": "address",
996
+ "name": "txOrigin",
997
+ "type": "address"
998
+ },
999
+ {
1000
+ "indexed": false,
1001
+ "internalType": "Blocknumber",
1002
+ "name": "lastUpdatedIn",
1003
+ "type": "uint40"
1004
+ }
1005
+ ],
1006
+ "name": "LogProductStoreRiskInfoUpdated",
1007
+ "type": "event"
1008
+ },
1009
+ {
1010
+ "inputs": [],
1011
+ "name": "authority",
1012
+ "outputs": [
1013
+ {
1014
+ "internalType": "address",
1015
+ "name": "",
1016
+ "type": "address"
1017
+ }
1018
+ ],
1019
+ "stateMutability": "view",
1020
+ "type": "function"
1021
+ },
1022
+ {
1023
+ "inputs": [
1024
+ {
1025
+ "internalType": "StateId",
1026
+ "name": "stateId",
1027
+ "type": "uint8"
1028
+ },
1029
+ {
1030
+ "internalType": "ObjectType",
1031
+ "name": "objectType",
1032
+ "type": "uint8"
1033
+ },
1034
+ {
1035
+ "internalType": "StateId",
1036
+ "name": "expectedFromId",
1037
+ "type": "uint8"
1038
+ },
1039
+ {
1040
+ "internalType": "StateId",
1041
+ "name": "toId",
1042
+ "type": "uint8"
1043
+ }
1044
+ ],
1045
+ "name": "checkTransition",
1046
+ "outputs": [],
1047
+ "stateMutability": "view",
1048
+ "type": "function"
1049
+ },
1050
+ {
1051
+ "inputs": [
1052
+ {
1053
+ "internalType": "NftId",
1054
+ "name": "applicationNftId",
1055
+ "type": "uint96"
1056
+ },
1057
+ {
1058
+ "components": [
1059
+ {
1060
+ "internalType": "NftId",
1061
+ "name": "productNftId",
1062
+ "type": "uint96"
1063
+ },
1064
+ {
1065
+ "internalType": "NftId",
1066
+ "name": "bundleNftId",
1067
+ "type": "uint96"
1068
+ },
1069
+ {
1070
+ "internalType": "RiskId",
1071
+ "name": "riskId",
1072
+ "type": "bytes8"
1073
+ },
1074
+ {
1075
+ "internalType": "Amount",
1076
+ "name": "sumInsuredAmount",
1077
+ "type": "uint96"
1078
+ },
1079
+ {
1080
+ "internalType": "Amount",
1081
+ "name": "premiumAmount",
1082
+ "type": "uint96"
1083
+ },
1084
+ {
1085
+ "internalType": "ReferralId",
1086
+ "name": "referralId",
1087
+ "type": "bytes8"
1088
+ },
1089
+ {
1090
+ "internalType": "uint16",
1091
+ "name": "claimsCount",
1092
+ "type": "uint16"
1093
+ },
1094
+ {
1095
+ "internalType": "uint16",
1096
+ "name": "openClaimsCount",
1097
+ "type": "uint16"
1098
+ },
1099
+ {
1100
+ "internalType": "Amount",
1101
+ "name": "claimAmount",
1102
+ "type": "uint96"
1103
+ },
1104
+ {
1105
+ "internalType": "Amount",
1106
+ "name": "payoutAmount",
1107
+ "type": "uint96"
1108
+ },
1109
+ {
1110
+ "internalType": "Timestamp",
1111
+ "name": "activatedAt",
1112
+ "type": "uint40"
1113
+ },
1114
+ {
1115
+ "internalType": "Seconds",
1116
+ "name": "lifetime",
1117
+ "type": "uint40"
1118
+ },
1119
+ {
1120
+ "internalType": "Timestamp",
1121
+ "name": "expiredAt",
1122
+ "type": "uint40"
1123
+ },
1124
+ {
1125
+ "internalType": "Timestamp",
1126
+ "name": "closedAt",
1127
+ "type": "uint40"
1128
+ },
1129
+ {
1130
+ "internalType": "bytes",
1131
+ "name": "applicationData",
1132
+ "type": "bytes"
1133
+ },
1134
+ {
1135
+ "internalType": "bytes",
1136
+ "name": "processData",
1137
+ "type": "bytes"
1138
+ }
1139
+ ],
1140
+ "internalType": "struct IPolicy.PolicyInfo",
1141
+ "name": "policy",
1142
+ "type": "tuple"
1143
+ }
1144
+ ],
1145
+ "name": "createApplication",
1146
+ "outputs": [],
1147
+ "stateMutability": "nonpayable",
1148
+ "type": "function"
1149
+ },
1150
+ {
1151
+ "inputs": [
1152
+ {
1153
+ "internalType": "NftId",
1154
+ "name": "policyNftId",
1155
+ "type": "uint96"
1156
+ },
1157
+ {
1158
+ "internalType": "ClaimId",
1159
+ "name": "claimId",
1160
+ "type": "uint16"
1161
+ },
1162
+ {
1163
+ "components": [
1164
+ {
1165
+ "internalType": "Amount",
1166
+ "name": "claimAmount",
1167
+ "type": "uint96"
1168
+ },
1169
+ {
1170
+ "internalType": "Amount",
1171
+ "name": "paidAmount",
1172
+ "type": "uint96"
1173
+ },
1174
+ {
1175
+ "internalType": "Timestamp",
1176
+ "name": "closedAt",
1177
+ "type": "uint40"
1178
+ },
1179
+ {
1180
+ "internalType": "uint24",
1181
+ "name": "payoutsCount",
1182
+ "type": "uint24"
1183
+ },
1184
+ {
1185
+ "internalType": "uint24",
1186
+ "name": "openPayoutsCount",
1187
+ "type": "uint24"
1188
+ },
1189
+ {
1190
+ "internalType": "bytes",
1191
+ "name": "submissionData",
1192
+ "type": "bytes"
1193
+ },
1194
+ {
1195
+ "internalType": "bytes",
1196
+ "name": "processData",
1197
+ "type": "bytes"
1198
+ }
1199
+ ],
1200
+ "internalType": "struct IPolicy.ClaimInfo",
1201
+ "name": "claim",
1202
+ "type": "tuple"
1203
+ }
1204
+ ],
1205
+ "name": "createClaim",
1206
+ "outputs": [],
1207
+ "stateMutability": "nonpayable",
1208
+ "type": "function"
1209
+ },
1210
+ {
1211
+ "inputs": [
1212
+ {
1213
+ "internalType": "NftId",
1214
+ "name": "productNftId",
1215
+ "type": "uint96"
1216
+ },
1217
+ {
1218
+ "components": [
1219
+ {
1220
+ "components": [
1221
+ {
1222
+ "internalType": "UFixed",
1223
+ "name": "fractionalFee",
1224
+ "type": "uint160"
1225
+ },
1226
+ {
1227
+ "internalType": "Amount",
1228
+ "name": "fixedFee",
1229
+ "type": "uint96"
1230
+ }
1231
+ ],
1232
+ "internalType": "struct Fee",
1233
+ "name": "productFee",
1234
+ "type": "tuple"
1235
+ },
1236
+ {
1237
+ "components": [
1238
+ {
1239
+ "internalType": "UFixed",
1240
+ "name": "fractionalFee",
1241
+ "type": "uint160"
1242
+ },
1243
+ {
1244
+ "internalType": "Amount",
1245
+ "name": "fixedFee",
1246
+ "type": "uint96"
1247
+ }
1248
+ ],
1249
+ "internalType": "struct Fee",
1250
+ "name": "processingFee",
1251
+ "type": "tuple"
1252
+ },
1253
+ {
1254
+ "components": [
1255
+ {
1256
+ "internalType": "UFixed",
1257
+ "name": "fractionalFee",
1258
+ "type": "uint160"
1259
+ },
1260
+ {
1261
+ "internalType": "Amount",
1262
+ "name": "fixedFee",
1263
+ "type": "uint96"
1264
+ }
1265
+ ],
1266
+ "internalType": "struct Fee",
1267
+ "name": "distributionFee",
1268
+ "type": "tuple"
1269
+ },
1270
+ {
1271
+ "components": [
1272
+ {
1273
+ "internalType": "UFixed",
1274
+ "name": "fractionalFee",
1275
+ "type": "uint160"
1276
+ },
1277
+ {
1278
+ "internalType": "Amount",
1279
+ "name": "fixedFee",
1280
+ "type": "uint96"
1281
+ }
1282
+ ],
1283
+ "internalType": "struct Fee",
1284
+ "name": "minDistributionOwnerFee",
1285
+ "type": "tuple"
1286
+ },
1287
+ {
1288
+ "components": [
1289
+ {
1290
+ "internalType": "UFixed",
1291
+ "name": "fractionalFee",
1292
+ "type": "uint160"
1293
+ },
1294
+ {
1295
+ "internalType": "Amount",
1296
+ "name": "fixedFee",
1297
+ "type": "uint96"
1298
+ }
1299
+ ],
1300
+ "internalType": "struct Fee",
1301
+ "name": "poolFee",
1302
+ "type": "tuple"
1303
+ },
1304
+ {
1305
+ "components": [
1306
+ {
1307
+ "internalType": "UFixed",
1308
+ "name": "fractionalFee",
1309
+ "type": "uint160"
1310
+ },
1311
+ {
1312
+ "internalType": "Amount",
1313
+ "name": "fixedFee",
1314
+ "type": "uint96"
1315
+ }
1316
+ ],
1317
+ "internalType": "struct Fee",
1318
+ "name": "stakingFee",
1319
+ "type": "tuple"
1320
+ },
1321
+ {
1322
+ "components": [
1323
+ {
1324
+ "internalType": "UFixed",
1325
+ "name": "fractionalFee",
1326
+ "type": "uint160"
1327
+ },
1328
+ {
1329
+ "internalType": "Amount",
1330
+ "name": "fixedFee",
1331
+ "type": "uint96"
1332
+ }
1333
+ ],
1334
+ "internalType": "struct Fee",
1335
+ "name": "performanceFee",
1336
+ "type": "tuple"
1337
+ }
1338
+ ],
1339
+ "internalType": "struct IComponents.FeeInfo",
1340
+ "name": "info",
1341
+ "type": "tuple"
1342
+ }
1343
+ ],
1344
+ "name": "createFee",
1345
+ "outputs": [],
1346
+ "stateMutability": "nonpayable",
1347
+ "type": "function"
1348
+ },
1349
+ {
1350
+ "inputs": [
1351
+ {
1352
+ "internalType": "NftId",
1353
+ "name": "policyNftId",
1354
+ "type": "uint96"
1355
+ },
1356
+ {
1357
+ "internalType": "PayoutId",
1358
+ "name": "payoutId",
1359
+ "type": "uint40"
1360
+ },
1361
+ {
1362
+ "components": [
1363
+ {
1364
+ "internalType": "ClaimId",
1365
+ "name": "claimId",
1366
+ "type": "uint16"
1367
+ },
1368
+ {
1369
+ "internalType": "Amount",
1370
+ "name": "amount",
1371
+ "type": "uint96"
1372
+ },
1373
+ {
1374
+ "internalType": "Timestamp",
1375
+ "name": "paidAt",
1376
+ "type": "uint40"
1377
+ },
1378
+ {
1379
+ "internalType": "address",
1380
+ "name": "beneficiary",
1381
+ "type": "address"
1382
+ },
1383
+ {
1384
+ "internalType": "bytes",
1385
+ "name": "data",
1386
+ "type": "bytes"
1387
+ }
1388
+ ],
1389
+ "internalType": "struct IPolicy.PayoutInfo",
1390
+ "name": "payout",
1391
+ "type": "tuple"
1392
+ }
1393
+ ],
1394
+ "name": "createPayout",
1395
+ "outputs": [],
1396
+ "stateMutability": "nonpayable",
1397
+ "type": "function"
1398
+ },
1399
+ {
1400
+ "inputs": [
1401
+ {
1402
+ "internalType": "NftId",
1403
+ "name": "policyNftId",
1404
+ "type": "uint96"
1405
+ },
1406
+ {
1407
+ "components": [
1408
+ {
1409
+ "internalType": "Amount",
1410
+ "name": "productFeeAmount",
1411
+ "type": "uint96"
1412
+ },
1413
+ {
1414
+ "internalType": "Amount",
1415
+ "name": "distributionFeeAndCommissionAmount",
1416
+ "type": "uint96"
1417
+ },
1418
+ {
1419
+ "internalType": "Amount",
1420
+ "name": "poolPremiumAndFeeAmount",
1421
+ "type": "uint96"
1422
+ },
1423
+ {
1424
+ "internalType": "Amount",
1425
+ "name": "netPremiumAmount",
1426
+ "type": "uint96"
1427
+ },
1428
+ {
1429
+ "internalType": "Amount",
1430
+ "name": "fullPremiumAmount",
1431
+ "type": "uint96"
1432
+ },
1433
+ {
1434
+ "internalType": "Amount",
1435
+ "name": "premiumAmount",
1436
+ "type": "uint96"
1437
+ },
1438
+ {
1439
+ "internalType": "Amount",
1440
+ "name": "productFeeFixAmount",
1441
+ "type": "uint96"
1442
+ },
1443
+ {
1444
+ "internalType": "Amount",
1445
+ "name": "poolFeeFixAmount",
1446
+ "type": "uint96"
1447
+ },
1448
+ {
1449
+ "internalType": "Amount",
1450
+ "name": "bundleFeeFixAmount",
1451
+ "type": "uint96"
1452
+ },
1453
+ {
1454
+ "internalType": "Amount",
1455
+ "name": "distributionFeeFixAmount",
1456
+ "type": "uint96"
1457
+ },
1458
+ {
1459
+ "internalType": "Amount",
1460
+ "name": "productFeeVarAmount",
1461
+ "type": "uint96"
1462
+ },
1463
+ {
1464
+ "internalType": "Amount",
1465
+ "name": "poolFeeVarAmount",
1466
+ "type": "uint96"
1467
+ },
1468
+ {
1469
+ "internalType": "Amount",
1470
+ "name": "bundleFeeVarAmount",
1471
+ "type": "uint96"
1472
+ },
1473
+ {
1474
+ "internalType": "Amount",
1475
+ "name": "distributionFeeVarAmount",
1476
+ "type": "uint96"
1477
+ },
1478
+ {
1479
+ "internalType": "Amount",
1480
+ "name": "distributionOwnerFeeFixAmount",
1481
+ "type": "uint96"
1482
+ },
1483
+ {
1484
+ "internalType": "Amount",
1485
+ "name": "distributionOwnerFeeVarAmount",
1486
+ "type": "uint96"
1487
+ },
1488
+ {
1489
+ "internalType": "Amount",
1490
+ "name": "commissionAmount",
1491
+ "type": "uint96"
1492
+ },
1493
+ {
1494
+ "internalType": "Amount",
1495
+ "name": "discountAmount",
1496
+ "type": "uint96"
1497
+ }
1498
+ ],
1499
+ "internalType": "struct IPolicy.PremiumInfo",
1500
+ "name": "premium",
1501
+ "type": "tuple"
1502
+ }
1503
+ ],
1504
+ "name": "createPremium",
1505
+ "outputs": [],
1506
+ "stateMutability": "nonpayable",
1507
+ "type": "function"
1508
+ },
1509
+ {
1510
+ "inputs": [
1511
+ {
1512
+ "internalType": "NftId",
1513
+ "name": "productNftId",
1514
+ "type": "uint96"
1515
+ },
1516
+ {
1517
+ "components": [
1518
+ {
1519
+ "internalType": "bool",
1520
+ "name": "isProcessingFundedClaims",
1521
+ "type": "bool"
1522
+ },
1523
+ {
1524
+ "internalType": "bool",
1525
+ "name": "isInterceptingPolicyTransfers",
1526
+ "type": "bool"
1527
+ },
1528
+ {
1529
+ "internalType": "bool",
1530
+ "name": "hasDistribution",
1531
+ "type": "bool"
1532
+ },
1533
+ {
1534
+ "internalType": "uint8",
1535
+ "name": "expectedNumberOfOracles",
1536
+ "type": "uint8"
1537
+ },
1538
+ {
1539
+ "internalType": "uint8",
1540
+ "name": "numberOfOracles",
1541
+ "type": "uint8"
1542
+ },
1543
+ {
1544
+ "internalType": "NftId",
1545
+ "name": "poolNftId",
1546
+ "type": "uint96"
1547
+ },
1548
+ {
1549
+ "internalType": "NftId",
1550
+ "name": "distributionNftId",
1551
+ "type": "uint96"
1552
+ },
1553
+ {
1554
+ "internalType": "NftId[]",
1555
+ "name": "oracleNftId",
1556
+ "type": "uint96[]"
1557
+ }
1558
+ ],
1559
+ "internalType": "struct IComponents.ProductInfo",
1560
+ "name": "info",
1561
+ "type": "tuple"
1562
+ }
1563
+ ],
1564
+ "name": "createProduct",
1565
+ "outputs": [],
1566
+ "stateMutability": "nonpayable",
1567
+ "type": "function"
1568
+ },
1569
+ {
1570
+ "inputs": [
1571
+ {
1572
+ "internalType": "RiskId",
1573
+ "name": "riskId",
1574
+ "type": "bytes8"
1575
+ },
1576
+ {
1577
+ "components": [
1578
+ {
1579
+ "internalType": "NftId",
1580
+ "name": "productNftId",
1581
+ "type": "uint96"
1582
+ },
1583
+ {
1584
+ "internalType": "Timestamp",
1585
+ "name": "createdAt",
1586
+ "type": "uint40"
1587
+ },
1588
+ {
1589
+ "internalType": "bytes",
1590
+ "name": "data",
1591
+ "type": "bytes"
1592
+ }
1593
+ ],
1594
+ "internalType": "struct IRisk.RiskInfo",
1595
+ "name": "info",
1596
+ "type": "tuple"
1597
+ }
1598
+ ],
1599
+ "name": "createRisk",
1600
+ "outputs": [],
1601
+ "stateMutability": "nonpayable",
1602
+ "type": "function"
1603
+ },
1604
+ {
1605
+ "inputs": [
1606
+ {
1607
+ "internalType": "Key32",
1608
+ "name": "key32",
1609
+ "type": "bytes32"
1610
+ }
1611
+ ],
1612
+ "name": "exists",
1613
+ "outputs": [
1614
+ {
1615
+ "internalType": "bool",
1616
+ "name": "",
1617
+ "type": "bool"
1618
+ }
1619
+ ],
1620
+ "stateMutability": "view",
1621
+ "type": "function"
1622
+ },
1623
+ {
1624
+ "inputs": [
1625
+ {
1626
+ "internalType": "NftId",
1627
+ "name": "targetNftId",
1628
+ "type": "uint96"
1629
+ }
1630
+ ],
1631
+ "name": "getAmounts",
1632
+ "outputs": [
1633
+ {
1634
+ "internalType": "Amount",
1635
+ "name": "balanceAmount",
1636
+ "type": "uint96"
1637
+ },
1638
+ {
1639
+ "internalType": "Amount",
1640
+ "name": "lockedAmount",
1641
+ "type": "uint96"
1642
+ },
1643
+ {
1644
+ "internalType": "Amount",
1645
+ "name": "feeAmount",
1646
+ "type": "uint96"
1647
+ }
1648
+ ],
1649
+ "stateMutability": "view",
1650
+ "type": "function"
1651
+ },
1652
+ {
1653
+ "inputs": [
1654
+ {
1655
+ "internalType": "NftId",
1656
+ "name": "targetNftId",
1657
+ "type": "uint96"
1658
+ }
1659
+ ],
1660
+ "name": "getBalanceAmount",
1661
+ "outputs": [
1662
+ {
1663
+ "internalType": "Amount",
1664
+ "name": "balanceAmount",
1665
+ "type": "uint96"
1666
+ }
1667
+ ],
1668
+ "stateMutability": "view",
1669
+ "type": "function"
1670
+ },
1671
+ {
1672
+ "inputs": [
1673
+ {
1674
+ "internalType": "NftId",
1675
+ "name": "policyNftId",
1676
+ "type": "uint96"
1677
+ },
1678
+ {
1679
+ "internalType": "ClaimId",
1680
+ "name": "claimId",
1681
+ "type": "uint16"
1682
+ }
1683
+ ],
1684
+ "name": "getClaimInfo",
1685
+ "outputs": [
1686
+ {
1687
+ "components": [
1688
+ {
1689
+ "internalType": "Amount",
1690
+ "name": "claimAmount",
1691
+ "type": "uint96"
1692
+ },
1693
+ {
1694
+ "internalType": "Amount",
1695
+ "name": "paidAmount",
1696
+ "type": "uint96"
1697
+ },
1698
+ {
1699
+ "internalType": "Timestamp",
1700
+ "name": "closedAt",
1701
+ "type": "uint40"
1702
+ },
1703
+ {
1704
+ "internalType": "uint24",
1705
+ "name": "payoutsCount",
1706
+ "type": "uint24"
1707
+ },
1708
+ {
1709
+ "internalType": "uint24",
1710
+ "name": "openPayoutsCount",
1711
+ "type": "uint24"
1712
+ },
1713
+ {
1714
+ "internalType": "bytes",
1715
+ "name": "submissionData",
1716
+ "type": "bytes"
1717
+ },
1718
+ {
1719
+ "internalType": "bytes",
1720
+ "name": "processData",
1721
+ "type": "bytes"
1722
+ }
1723
+ ],
1724
+ "internalType": "struct IPolicy.ClaimInfo",
1725
+ "name": "claim",
1726
+ "type": "tuple"
1727
+ }
1728
+ ],
1729
+ "stateMutability": "view",
1730
+ "type": "function"
1731
+ },
1732
+ {
1733
+ "inputs": [
1734
+ {
1735
+ "internalType": "NftId",
1736
+ "name": "targetNftId",
1737
+ "type": "uint96"
1738
+ }
1739
+ ],
1740
+ "name": "getFeeAmount",
1741
+ "outputs": [
1742
+ {
1743
+ "internalType": "Amount",
1744
+ "name": "feeAmount",
1745
+ "type": "uint96"
1746
+ }
1747
+ ],
1748
+ "stateMutability": "view",
1749
+ "type": "function"
1750
+ },
1751
+ {
1752
+ "inputs": [
1753
+ {
1754
+ "internalType": "NftId",
1755
+ "name": "productNftId",
1756
+ "type": "uint96"
1757
+ }
1758
+ ],
1759
+ "name": "getFeeInfo",
1760
+ "outputs": [
1761
+ {
1762
+ "components": [
1763
+ {
1764
+ "components": [
1765
+ {
1766
+ "internalType": "UFixed",
1767
+ "name": "fractionalFee",
1768
+ "type": "uint160"
1769
+ },
1770
+ {
1771
+ "internalType": "Amount",
1772
+ "name": "fixedFee",
1773
+ "type": "uint96"
1774
+ }
1775
+ ],
1776
+ "internalType": "struct Fee",
1777
+ "name": "productFee",
1778
+ "type": "tuple"
1779
+ },
1780
+ {
1781
+ "components": [
1782
+ {
1783
+ "internalType": "UFixed",
1784
+ "name": "fractionalFee",
1785
+ "type": "uint160"
1786
+ },
1787
+ {
1788
+ "internalType": "Amount",
1789
+ "name": "fixedFee",
1790
+ "type": "uint96"
1791
+ }
1792
+ ],
1793
+ "internalType": "struct Fee",
1794
+ "name": "processingFee",
1795
+ "type": "tuple"
1796
+ },
1797
+ {
1798
+ "components": [
1799
+ {
1800
+ "internalType": "UFixed",
1801
+ "name": "fractionalFee",
1802
+ "type": "uint160"
1803
+ },
1804
+ {
1805
+ "internalType": "Amount",
1806
+ "name": "fixedFee",
1807
+ "type": "uint96"
1808
+ }
1809
+ ],
1810
+ "internalType": "struct Fee",
1811
+ "name": "distributionFee",
1812
+ "type": "tuple"
1813
+ },
1814
+ {
1815
+ "components": [
1816
+ {
1817
+ "internalType": "UFixed",
1818
+ "name": "fractionalFee",
1819
+ "type": "uint160"
1820
+ },
1821
+ {
1822
+ "internalType": "Amount",
1823
+ "name": "fixedFee",
1824
+ "type": "uint96"
1825
+ }
1826
+ ],
1827
+ "internalType": "struct Fee",
1828
+ "name": "minDistributionOwnerFee",
1829
+ "type": "tuple"
1830
+ },
1831
+ {
1832
+ "components": [
1833
+ {
1834
+ "internalType": "UFixed",
1835
+ "name": "fractionalFee",
1836
+ "type": "uint160"
1837
+ },
1838
+ {
1839
+ "internalType": "Amount",
1840
+ "name": "fixedFee",
1841
+ "type": "uint96"
1842
+ }
1843
+ ],
1844
+ "internalType": "struct Fee",
1845
+ "name": "poolFee",
1846
+ "type": "tuple"
1847
+ },
1848
+ {
1849
+ "components": [
1850
+ {
1851
+ "internalType": "UFixed",
1852
+ "name": "fractionalFee",
1853
+ "type": "uint160"
1854
+ },
1855
+ {
1856
+ "internalType": "Amount",
1857
+ "name": "fixedFee",
1858
+ "type": "uint96"
1859
+ }
1860
+ ],
1861
+ "internalType": "struct Fee",
1862
+ "name": "stakingFee",
1863
+ "type": "tuple"
1864
+ },
1865
+ {
1866
+ "components": [
1867
+ {
1868
+ "internalType": "UFixed",
1869
+ "name": "fractionalFee",
1870
+ "type": "uint160"
1871
+ },
1872
+ {
1873
+ "internalType": "Amount",
1874
+ "name": "fixedFee",
1875
+ "type": "uint96"
1876
+ }
1877
+ ],
1878
+ "internalType": "struct Fee",
1879
+ "name": "performanceFee",
1880
+ "type": "tuple"
1881
+ }
1882
+ ],
1883
+ "internalType": "struct IComponents.FeeInfo",
1884
+ "name": "info",
1885
+ "type": "tuple"
1886
+ }
1887
+ ],
1888
+ "stateMutability": "view",
1889
+ "type": "function"
1890
+ },
1891
+ {
1892
+ "inputs": [
1893
+ {
1894
+ "internalType": "ObjectType",
1895
+ "name": "objectType",
1896
+ "type": "uint8"
1897
+ }
1898
+ ],
1899
+ "name": "getInitialState",
1900
+ "outputs": [
1901
+ {
1902
+ "internalType": "StateId",
1903
+ "name": "",
1904
+ "type": "uint8"
1905
+ }
1906
+ ],
1907
+ "stateMutability": "view",
1908
+ "type": "function"
1909
+ },
1910
+ {
1911
+ "inputs": [
1912
+ {
1913
+ "internalType": "NftId",
1914
+ "name": "targetNftId",
1915
+ "type": "uint96"
1916
+ }
1917
+ ],
1918
+ "name": "getLockedAmount",
1919
+ "outputs": [
1920
+ {
1921
+ "internalType": "Amount",
1922
+ "name": "lockedAmount",
1923
+ "type": "uint96"
1924
+ }
1925
+ ],
1926
+ "stateMutability": "view",
1927
+ "type": "function"
1928
+ },
1929
+ {
1930
+ "inputs": [
1931
+ {
1932
+ "internalType": "Key32",
1933
+ "name": "key32",
1934
+ "type": "bytes32"
1935
+ }
1936
+ ],
1937
+ "name": "getMetadata",
1938
+ "outputs": [
1939
+ {
1940
+ "components": [
1941
+ {
1942
+ "internalType": "ObjectType",
1943
+ "name": "objectType",
1944
+ "type": "uint8"
1945
+ },
1946
+ {
1947
+ "internalType": "StateId",
1948
+ "name": "state",
1949
+ "type": "uint8"
1950
+ },
1951
+ {
1952
+ "internalType": "Blocknumber",
1953
+ "name": "updatedIn",
1954
+ "type": "uint40"
1955
+ }
1956
+ ],
1957
+ "internalType": "struct IBaseStore.Metadata",
1958
+ "name": "metadata",
1959
+ "type": "tuple"
1960
+ }
1961
+ ],
1962
+ "stateMutability": "view",
1963
+ "type": "function"
1964
+ },
1965
+ {
1966
+ "inputs": [
1967
+ {
1968
+ "internalType": "NftId",
1969
+ "name": "policyNftId",
1970
+ "type": "uint96"
1971
+ },
1972
+ {
1973
+ "internalType": "PayoutId",
1974
+ "name": "payoutId",
1975
+ "type": "uint40"
1976
+ }
1977
+ ],
1978
+ "name": "getPayoutInfo",
1979
+ "outputs": [
1980
+ {
1981
+ "components": [
1982
+ {
1983
+ "internalType": "ClaimId",
1984
+ "name": "claimId",
1985
+ "type": "uint16"
1986
+ },
1987
+ {
1988
+ "internalType": "Amount",
1989
+ "name": "amount",
1990
+ "type": "uint96"
1991
+ },
1992
+ {
1993
+ "internalType": "Timestamp",
1994
+ "name": "paidAt",
1995
+ "type": "uint40"
1996
+ },
1997
+ {
1998
+ "internalType": "address",
1999
+ "name": "beneficiary",
2000
+ "type": "address"
2001
+ },
2002
+ {
2003
+ "internalType": "bytes",
2004
+ "name": "data",
2005
+ "type": "bytes"
2006
+ }
2007
+ ],
2008
+ "internalType": "struct IPolicy.PayoutInfo",
2009
+ "name": "payout",
2010
+ "type": "tuple"
2011
+ }
2012
+ ],
2013
+ "stateMutability": "view",
2014
+ "type": "function"
2015
+ },
2016
+ {
2017
+ "inputs": [
2018
+ {
2019
+ "internalType": "NftId",
2020
+ "name": "policyNftId",
2021
+ "type": "uint96"
2022
+ }
2023
+ ],
2024
+ "name": "getPolicyInfo",
2025
+ "outputs": [
2026
+ {
2027
+ "components": [
2028
+ {
2029
+ "internalType": "NftId",
2030
+ "name": "productNftId",
2031
+ "type": "uint96"
2032
+ },
2033
+ {
2034
+ "internalType": "NftId",
2035
+ "name": "bundleNftId",
2036
+ "type": "uint96"
2037
+ },
2038
+ {
2039
+ "internalType": "RiskId",
2040
+ "name": "riskId",
2041
+ "type": "bytes8"
2042
+ },
2043
+ {
2044
+ "internalType": "Amount",
2045
+ "name": "sumInsuredAmount",
2046
+ "type": "uint96"
2047
+ },
2048
+ {
2049
+ "internalType": "Amount",
2050
+ "name": "premiumAmount",
2051
+ "type": "uint96"
2052
+ },
2053
+ {
2054
+ "internalType": "ReferralId",
2055
+ "name": "referralId",
2056
+ "type": "bytes8"
2057
+ },
2058
+ {
2059
+ "internalType": "uint16",
2060
+ "name": "claimsCount",
2061
+ "type": "uint16"
2062
+ },
2063
+ {
2064
+ "internalType": "uint16",
2065
+ "name": "openClaimsCount",
2066
+ "type": "uint16"
2067
+ },
2068
+ {
2069
+ "internalType": "Amount",
2070
+ "name": "claimAmount",
2071
+ "type": "uint96"
2072
+ },
2073
+ {
2074
+ "internalType": "Amount",
2075
+ "name": "payoutAmount",
2076
+ "type": "uint96"
2077
+ },
2078
+ {
2079
+ "internalType": "Timestamp",
2080
+ "name": "activatedAt",
2081
+ "type": "uint40"
2082
+ },
2083
+ {
2084
+ "internalType": "Seconds",
2085
+ "name": "lifetime",
2086
+ "type": "uint40"
2087
+ },
2088
+ {
2089
+ "internalType": "Timestamp",
2090
+ "name": "expiredAt",
2091
+ "type": "uint40"
2092
+ },
2093
+ {
2094
+ "internalType": "Timestamp",
2095
+ "name": "closedAt",
2096
+ "type": "uint40"
2097
+ },
2098
+ {
2099
+ "internalType": "bytes",
2100
+ "name": "applicationData",
2101
+ "type": "bytes"
2102
+ },
2103
+ {
2104
+ "internalType": "bytes",
2105
+ "name": "processData",
2106
+ "type": "bytes"
2107
+ }
2108
+ ],
2109
+ "internalType": "struct IPolicy.PolicyInfo",
2110
+ "name": "policy",
2111
+ "type": "tuple"
2112
+ }
2113
+ ],
2114
+ "stateMutability": "view",
2115
+ "type": "function"
2116
+ },
2117
+ {
2118
+ "inputs": [
2119
+ {
2120
+ "internalType": "NftId",
2121
+ "name": "policyNftId",
2122
+ "type": "uint96"
2123
+ }
2124
+ ],
2125
+ "name": "getPremiumInfo",
2126
+ "outputs": [
2127
+ {
2128
+ "components": [
2129
+ {
2130
+ "internalType": "Amount",
2131
+ "name": "productFeeAmount",
2132
+ "type": "uint96"
2133
+ },
2134
+ {
2135
+ "internalType": "Amount",
2136
+ "name": "distributionFeeAndCommissionAmount",
2137
+ "type": "uint96"
2138
+ },
2139
+ {
2140
+ "internalType": "Amount",
2141
+ "name": "poolPremiumAndFeeAmount",
2142
+ "type": "uint96"
2143
+ },
2144
+ {
2145
+ "internalType": "Amount",
2146
+ "name": "netPremiumAmount",
2147
+ "type": "uint96"
2148
+ },
2149
+ {
2150
+ "internalType": "Amount",
2151
+ "name": "fullPremiumAmount",
2152
+ "type": "uint96"
2153
+ },
2154
+ {
2155
+ "internalType": "Amount",
2156
+ "name": "premiumAmount",
2157
+ "type": "uint96"
2158
+ },
2159
+ {
2160
+ "internalType": "Amount",
2161
+ "name": "productFeeFixAmount",
2162
+ "type": "uint96"
2163
+ },
2164
+ {
2165
+ "internalType": "Amount",
2166
+ "name": "poolFeeFixAmount",
2167
+ "type": "uint96"
2168
+ },
2169
+ {
2170
+ "internalType": "Amount",
2171
+ "name": "bundleFeeFixAmount",
2172
+ "type": "uint96"
2173
+ },
2174
+ {
2175
+ "internalType": "Amount",
2176
+ "name": "distributionFeeFixAmount",
2177
+ "type": "uint96"
2178
+ },
2179
+ {
2180
+ "internalType": "Amount",
2181
+ "name": "productFeeVarAmount",
2182
+ "type": "uint96"
2183
+ },
2184
+ {
2185
+ "internalType": "Amount",
2186
+ "name": "poolFeeVarAmount",
2187
+ "type": "uint96"
2188
+ },
2189
+ {
2190
+ "internalType": "Amount",
2191
+ "name": "bundleFeeVarAmount",
2192
+ "type": "uint96"
2193
+ },
2194
+ {
2195
+ "internalType": "Amount",
2196
+ "name": "distributionFeeVarAmount",
2197
+ "type": "uint96"
2198
+ },
2199
+ {
2200
+ "internalType": "Amount",
2201
+ "name": "distributionOwnerFeeFixAmount",
2202
+ "type": "uint96"
2203
+ },
2204
+ {
2205
+ "internalType": "Amount",
2206
+ "name": "distributionOwnerFeeVarAmount",
2207
+ "type": "uint96"
2208
+ },
2209
+ {
2210
+ "internalType": "Amount",
2211
+ "name": "commissionAmount",
2212
+ "type": "uint96"
2213
+ },
2214
+ {
2215
+ "internalType": "Amount",
2216
+ "name": "discountAmount",
2217
+ "type": "uint96"
2218
+ }
2219
+ ],
2220
+ "internalType": "struct IPolicy.PremiumInfo",
2221
+ "name": "premium",
2222
+ "type": "tuple"
2223
+ }
2224
+ ],
2225
+ "stateMutability": "view",
2226
+ "type": "function"
2227
+ },
2228
+ {
2229
+ "inputs": [
2230
+ {
2231
+ "internalType": "NftId",
2232
+ "name": "productNftId",
2233
+ "type": "uint96"
2234
+ }
2235
+ ],
2236
+ "name": "getProductInfo",
2237
+ "outputs": [
2238
+ {
2239
+ "components": [
2240
+ {
2241
+ "internalType": "bool",
2242
+ "name": "isProcessingFundedClaims",
2243
+ "type": "bool"
2244
+ },
2245
+ {
2246
+ "internalType": "bool",
2247
+ "name": "isInterceptingPolicyTransfers",
2248
+ "type": "bool"
2249
+ },
2250
+ {
2251
+ "internalType": "bool",
2252
+ "name": "hasDistribution",
2253
+ "type": "bool"
2254
+ },
2255
+ {
2256
+ "internalType": "uint8",
2257
+ "name": "expectedNumberOfOracles",
2258
+ "type": "uint8"
2259
+ },
2260
+ {
2261
+ "internalType": "uint8",
2262
+ "name": "numberOfOracles",
2263
+ "type": "uint8"
2264
+ },
2265
+ {
2266
+ "internalType": "NftId",
2267
+ "name": "poolNftId",
2268
+ "type": "uint96"
2269
+ },
2270
+ {
2271
+ "internalType": "NftId",
2272
+ "name": "distributionNftId",
2273
+ "type": "uint96"
2274
+ },
2275
+ {
2276
+ "internalType": "NftId[]",
2277
+ "name": "oracleNftId",
2278
+ "type": "uint96[]"
2279
+ }
2280
+ ],
2281
+ "internalType": "struct IComponents.ProductInfo",
2282
+ "name": "info",
2283
+ "type": "tuple"
2284
+ }
2285
+ ],
2286
+ "stateMutability": "view",
2287
+ "type": "function"
2288
+ },
2289
+ {
2290
+ "inputs": [
2291
+ {
2292
+ "internalType": "RiskId",
2293
+ "name": "riskId",
2294
+ "type": "bytes8"
2295
+ }
2296
+ ],
2297
+ "name": "getRiskInfo",
2298
+ "outputs": [
2299
+ {
2300
+ "components": [
2301
+ {
2302
+ "internalType": "NftId",
2303
+ "name": "productNftId",
2304
+ "type": "uint96"
2305
+ },
2306
+ {
2307
+ "internalType": "Timestamp",
2308
+ "name": "createdAt",
2309
+ "type": "uint40"
2310
+ },
2311
+ {
2312
+ "internalType": "bytes",
2313
+ "name": "data",
2314
+ "type": "bytes"
2315
+ }
2316
+ ],
2317
+ "internalType": "struct IRisk.RiskInfo",
2318
+ "name": "info",
2319
+ "type": "tuple"
2320
+ }
2321
+ ],
2322
+ "stateMutability": "view",
2323
+ "type": "function"
2324
+ },
2325
+ {
2326
+ "inputs": [
2327
+ {
2328
+ "internalType": "Key32",
2329
+ "name": "key32",
2330
+ "type": "bytes32"
2331
+ }
2332
+ ],
2333
+ "name": "getState",
2334
+ "outputs": [
2335
+ {
2336
+ "internalType": "StateId",
2337
+ "name": "state",
2338
+ "type": "uint8"
2339
+ }
2340
+ ],
2341
+ "stateMutability": "view",
2342
+ "type": "function"
2343
+ },
2344
+ {
2345
+ "inputs": [
2346
+ {
2347
+ "internalType": "ObjectType",
2348
+ "name": "objectType",
2349
+ "type": "uint8"
2350
+ }
2351
+ ],
2352
+ "name": "hasLifecycle",
2353
+ "outputs": [
2354
+ {
2355
+ "internalType": "bool",
2356
+ "name": "",
2357
+ "type": "bool"
2358
+ }
2359
+ ],
2360
+ "stateMutability": "view",
2361
+ "type": "function"
2362
+ },
2363
+ {
2364
+ "inputs": [],
2365
+ "name": "initialize",
2366
+ "outputs": [],
2367
+ "stateMutability": "nonpayable",
2368
+ "type": "function"
2369
+ },
2370
+ {
2371
+ "inputs": [],
2372
+ "name": "isConsumingScheduledOp",
2373
+ "outputs": [
2374
+ {
2375
+ "internalType": "bytes4",
2376
+ "name": "",
2377
+ "type": "bytes4"
2378
+ }
2379
+ ],
2380
+ "stateMutability": "view",
2381
+ "type": "function"
2382
+ },
2383
+ {
2384
+ "inputs": [
2385
+ {
2386
+ "internalType": "ObjectType",
2387
+ "name": "objectType",
2388
+ "type": "uint8"
2389
+ },
2390
+ {
2391
+ "internalType": "StateId",
2392
+ "name": "fromId",
2393
+ "type": "uint8"
2394
+ },
2395
+ {
2396
+ "internalType": "StateId",
2397
+ "name": "toId",
2398
+ "type": "uint8"
2399
+ }
2400
+ ],
2401
+ "name": "isValidTransition",
2402
+ "outputs": [
2403
+ {
2404
+ "internalType": "bool",
2405
+ "name": "",
2406
+ "type": "bool"
2407
+ }
2408
+ ],
2409
+ "stateMutability": "view",
2410
+ "type": "function"
2411
+ },
2412
+ {
2413
+ "inputs": [
2414
+ {
2415
+ "internalType": "address",
2416
+ "name": "newAuthority",
2417
+ "type": "address"
2418
+ }
2419
+ ],
2420
+ "name": "setAuthority",
2421
+ "outputs": [],
2422
+ "stateMutability": "nonpayable",
2423
+ "type": "function"
2424
+ },
2425
+ {
2426
+ "inputs": [
2427
+ {
2428
+ "internalType": "ObjectType",
2429
+ "name": "objectType",
2430
+ "type": "uint8"
2431
+ },
2432
+ {
2433
+ "internalType": "KeyId",
2434
+ "name": "id",
2435
+ "type": "bytes31"
2436
+ }
2437
+ ],
2438
+ "name": "toKey32",
2439
+ "outputs": [
2440
+ {
2441
+ "internalType": "Key32",
2442
+ "name": "",
2443
+ "type": "bytes32"
2444
+ }
2445
+ ],
2446
+ "stateMutability": "pure",
2447
+ "type": "function"
2448
+ },
2449
+ {
2450
+ "inputs": [
2451
+ {
2452
+ "internalType": "NftId",
2453
+ "name": "applicationNftId",
2454
+ "type": "uint96"
2455
+ },
2456
+ {
2457
+ "components": [
2458
+ {
2459
+ "internalType": "NftId",
2460
+ "name": "productNftId",
2461
+ "type": "uint96"
2462
+ },
2463
+ {
2464
+ "internalType": "NftId",
2465
+ "name": "bundleNftId",
2466
+ "type": "uint96"
2467
+ },
2468
+ {
2469
+ "internalType": "RiskId",
2470
+ "name": "riskId",
2471
+ "type": "bytes8"
2472
+ },
2473
+ {
2474
+ "internalType": "Amount",
2475
+ "name": "sumInsuredAmount",
2476
+ "type": "uint96"
2477
+ },
2478
+ {
2479
+ "internalType": "Amount",
2480
+ "name": "premiumAmount",
2481
+ "type": "uint96"
2482
+ },
2483
+ {
2484
+ "internalType": "ReferralId",
2485
+ "name": "referralId",
2486
+ "type": "bytes8"
2487
+ },
2488
+ {
2489
+ "internalType": "uint16",
2490
+ "name": "claimsCount",
2491
+ "type": "uint16"
2492
+ },
2493
+ {
2494
+ "internalType": "uint16",
2495
+ "name": "openClaimsCount",
2496
+ "type": "uint16"
2497
+ },
2498
+ {
2499
+ "internalType": "Amount",
2500
+ "name": "claimAmount",
2501
+ "type": "uint96"
2502
+ },
2503
+ {
2504
+ "internalType": "Amount",
2505
+ "name": "payoutAmount",
2506
+ "type": "uint96"
2507
+ },
2508
+ {
2509
+ "internalType": "Timestamp",
2510
+ "name": "activatedAt",
2511
+ "type": "uint40"
2512
+ },
2513
+ {
2514
+ "internalType": "Seconds",
2515
+ "name": "lifetime",
2516
+ "type": "uint40"
2517
+ },
2518
+ {
2519
+ "internalType": "Timestamp",
2520
+ "name": "expiredAt",
2521
+ "type": "uint40"
2522
+ },
2523
+ {
2524
+ "internalType": "Timestamp",
2525
+ "name": "closedAt",
2526
+ "type": "uint40"
2527
+ },
2528
+ {
2529
+ "internalType": "bytes",
2530
+ "name": "applicationData",
2531
+ "type": "bytes"
2532
+ },
2533
+ {
2534
+ "internalType": "bytes",
2535
+ "name": "processData",
2536
+ "type": "bytes"
2537
+ }
2538
+ ],
2539
+ "internalType": "struct IPolicy.PolicyInfo",
2540
+ "name": "policy",
2541
+ "type": "tuple"
2542
+ },
2543
+ {
2544
+ "internalType": "StateId",
2545
+ "name": "newState",
2546
+ "type": "uint8"
2547
+ }
2548
+ ],
2549
+ "name": "updateApplication",
2550
+ "outputs": [],
2551
+ "stateMutability": "nonpayable",
2552
+ "type": "function"
2553
+ },
2554
+ {
2555
+ "inputs": [
2556
+ {
2557
+ "internalType": "NftId",
2558
+ "name": "applicationNftId",
2559
+ "type": "uint96"
2560
+ },
2561
+ {
2562
+ "internalType": "StateId",
2563
+ "name": "newState",
2564
+ "type": "uint8"
2565
+ }
2566
+ ],
2567
+ "name": "updateApplicationState",
2568
+ "outputs": [],
2569
+ "stateMutability": "nonpayable",
2570
+ "type": "function"
2571
+ },
2572
+ {
2573
+ "inputs": [
2574
+ {
2575
+ "internalType": "NftId",
2576
+ "name": "policyNftId",
2577
+ "type": "uint96"
2578
+ },
2579
+ {
2580
+ "internalType": "ClaimId",
2581
+ "name": "claimId",
2582
+ "type": "uint16"
2583
+ },
2584
+ {
2585
+ "components": [
2586
+ {
2587
+ "internalType": "Amount",
2588
+ "name": "claimAmount",
2589
+ "type": "uint96"
2590
+ },
2591
+ {
2592
+ "internalType": "Amount",
2593
+ "name": "paidAmount",
2594
+ "type": "uint96"
2595
+ },
2596
+ {
2597
+ "internalType": "Timestamp",
2598
+ "name": "closedAt",
2599
+ "type": "uint40"
2600
+ },
2601
+ {
2602
+ "internalType": "uint24",
2603
+ "name": "payoutsCount",
2604
+ "type": "uint24"
2605
+ },
2606
+ {
2607
+ "internalType": "uint24",
2608
+ "name": "openPayoutsCount",
2609
+ "type": "uint24"
2610
+ },
2611
+ {
2612
+ "internalType": "bytes",
2613
+ "name": "submissionData",
2614
+ "type": "bytes"
2615
+ },
2616
+ {
2617
+ "internalType": "bytes",
2618
+ "name": "processData",
2619
+ "type": "bytes"
2620
+ }
2621
+ ],
2622
+ "internalType": "struct IPolicy.ClaimInfo",
2623
+ "name": "claim",
2624
+ "type": "tuple"
2625
+ },
2626
+ {
2627
+ "internalType": "StateId",
2628
+ "name": "newState",
2629
+ "type": "uint8"
2630
+ }
2631
+ ],
2632
+ "name": "updateClaim",
2633
+ "outputs": [],
2634
+ "stateMutability": "nonpayable",
2635
+ "type": "function"
2636
+ },
2637
+ {
2638
+ "inputs": [
2639
+ {
2640
+ "internalType": "NftId",
2641
+ "name": "policyNftId",
2642
+ "type": "uint96"
2643
+ },
2644
+ {
2645
+ "internalType": "ClaimId",
2646
+ "name": "claimId",
2647
+ "type": "uint16"
2648
+ },
2649
+ {
2650
+ "internalType": "StateId",
2651
+ "name": "newState",
2652
+ "type": "uint8"
2653
+ }
2654
+ ],
2655
+ "name": "updateClaimState",
2656
+ "outputs": [],
2657
+ "stateMutability": "nonpayable",
2658
+ "type": "function"
2659
+ },
2660
+ {
2661
+ "inputs": [
2662
+ {
2663
+ "internalType": "NftId",
2664
+ "name": "productNftId",
2665
+ "type": "uint96"
2666
+ },
2667
+ {
2668
+ "components": [
2669
+ {
2670
+ "components": [
2671
+ {
2672
+ "internalType": "UFixed",
2673
+ "name": "fractionalFee",
2674
+ "type": "uint160"
2675
+ },
2676
+ {
2677
+ "internalType": "Amount",
2678
+ "name": "fixedFee",
2679
+ "type": "uint96"
2680
+ }
2681
+ ],
2682
+ "internalType": "struct Fee",
2683
+ "name": "productFee",
2684
+ "type": "tuple"
2685
+ },
2686
+ {
2687
+ "components": [
2688
+ {
2689
+ "internalType": "UFixed",
2690
+ "name": "fractionalFee",
2691
+ "type": "uint160"
2692
+ },
2693
+ {
2694
+ "internalType": "Amount",
2695
+ "name": "fixedFee",
2696
+ "type": "uint96"
2697
+ }
2698
+ ],
2699
+ "internalType": "struct Fee",
2700
+ "name": "processingFee",
2701
+ "type": "tuple"
2702
+ },
2703
+ {
2704
+ "components": [
2705
+ {
2706
+ "internalType": "UFixed",
2707
+ "name": "fractionalFee",
2708
+ "type": "uint160"
2709
+ },
2710
+ {
2711
+ "internalType": "Amount",
2712
+ "name": "fixedFee",
2713
+ "type": "uint96"
2714
+ }
2715
+ ],
2716
+ "internalType": "struct Fee",
2717
+ "name": "distributionFee",
2718
+ "type": "tuple"
2719
+ },
2720
+ {
2721
+ "components": [
2722
+ {
2723
+ "internalType": "UFixed",
2724
+ "name": "fractionalFee",
2725
+ "type": "uint160"
2726
+ },
2727
+ {
2728
+ "internalType": "Amount",
2729
+ "name": "fixedFee",
2730
+ "type": "uint96"
2731
+ }
2732
+ ],
2733
+ "internalType": "struct Fee",
2734
+ "name": "minDistributionOwnerFee",
2735
+ "type": "tuple"
2736
+ },
2737
+ {
2738
+ "components": [
2739
+ {
2740
+ "internalType": "UFixed",
2741
+ "name": "fractionalFee",
2742
+ "type": "uint160"
2743
+ },
2744
+ {
2745
+ "internalType": "Amount",
2746
+ "name": "fixedFee",
2747
+ "type": "uint96"
2748
+ }
2749
+ ],
2750
+ "internalType": "struct Fee",
2751
+ "name": "poolFee",
2752
+ "type": "tuple"
2753
+ },
2754
+ {
2755
+ "components": [
2756
+ {
2757
+ "internalType": "UFixed",
2758
+ "name": "fractionalFee",
2759
+ "type": "uint160"
2760
+ },
2761
+ {
2762
+ "internalType": "Amount",
2763
+ "name": "fixedFee",
2764
+ "type": "uint96"
2765
+ }
2766
+ ],
2767
+ "internalType": "struct Fee",
2768
+ "name": "stakingFee",
2769
+ "type": "tuple"
2770
+ },
2771
+ {
2772
+ "components": [
2773
+ {
2774
+ "internalType": "UFixed",
2775
+ "name": "fractionalFee",
2776
+ "type": "uint160"
2777
+ },
2778
+ {
2779
+ "internalType": "Amount",
2780
+ "name": "fixedFee",
2781
+ "type": "uint96"
2782
+ }
2783
+ ],
2784
+ "internalType": "struct Fee",
2785
+ "name": "performanceFee",
2786
+ "type": "tuple"
2787
+ }
2788
+ ],
2789
+ "internalType": "struct IComponents.FeeInfo",
2790
+ "name": "info",
2791
+ "type": "tuple"
2792
+ }
2793
+ ],
2794
+ "name": "updateFee",
2795
+ "outputs": [],
2796
+ "stateMutability": "nonpayable",
2797
+ "type": "function"
2798
+ },
2799
+ {
2800
+ "inputs": [
2801
+ {
2802
+ "internalType": "NftId",
2803
+ "name": "policyNftId",
2804
+ "type": "uint96"
2805
+ },
2806
+ {
2807
+ "internalType": "PayoutId",
2808
+ "name": "payoutId",
2809
+ "type": "uint40"
2810
+ },
2811
+ {
2812
+ "components": [
2813
+ {
2814
+ "internalType": "ClaimId",
2815
+ "name": "claimId",
2816
+ "type": "uint16"
2817
+ },
2818
+ {
2819
+ "internalType": "Amount",
2820
+ "name": "amount",
2821
+ "type": "uint96"
2822
+ },
2823
+ {
2824
+ "internalType": "Timestamp",
2825
+ "name": "paidAt",
2826
+ "type": "uint40"
2827
+ },
2828
+ {
2829
+ "internalType": "address",
2830
+ "name": "beneficiary",
2831
+ "type": "address"
2832
+ },
2833
+ {
2834
+ "internalType": "bytes",
2835
+ "name": "data",
2836
+ "type": "bytes"
2837
+ }
2838
+ ],
2839
+ "internalType": "struct IPolicy.PayoutInfo",
2840
+ "name": "payout",
2841
+ "type": "tuple"
2842
+ },
2843
+ {
2844
+ "internalType": "StateId",
2845
+ "name": "newState",
2846
+ "type": "uint8"
2847
+ }
2848
+ ],
2849
+ "name": "updatePayout",
2850
+ "outputs": [],
2851
+ "stateMutability": "nonpayable",
2852
+ "type": "function"
2853
+ },
2854
+ {
2855
+ "inputs": [
2856
+ {
2857
+ "internalType": "NftId",
2858
+ "name": "policyNftId",
2859
+ "type": "uint96"
2860
+ },
2861
+ {
2862
+ "internalType": "PayoutId",
2863
+ "name": "payoutId",
2864
+ "type": "uint40"
2865
+ },
2866
+ {
2867
+ "internalType": "StateId",
2868
+ "name": "newState",
2869
+ "type": "uint8"
2870
+ }
2871
+ ],
2872
+ "name": "updatePayoutState",
2873
+ "outputs": [],
2874
+ "stateMutability": "nonpayable",
2875
+ "type": "function"
2876
+ },
2877
+ {
2878
+ "inputs": [
2879
+ {
2880
+ "internalType": "NftId",
2881
+ "name": "policyNftId",
2882
+ "type": "uint96"
2883
+ },
2884
+ {
2885
+ "components": [
2886
+ {
2887
+ "internalType": "NftId",
2888
+ "name": "productNftId",
2889
+ "type": "uint96"
2890
+ },
2891
+ {
2892
+ "internalType": "NftId",
2893
+ "name": "bundleNftId",
2894
+ "type": "uint96"
2895
+ },
2896
+ {
2897
+ "internalType": "RiskId",
2898
+ "name": "riskId",
2899
+ "type": "bytes8"
2900
+ },
2901
+ {
2902
+ "internalType": "Amount",
2903
+ "name": "sumInsuredAmount",
2904
+ "type": "uint96"
2905
+ },
2906
+ {
2907
+ "internalType": "Amount",
2908
+ "name": "premiumAmount",
2909
+ "type": "uint96"
2910
+ },
2911
+ {
2912
+ "internalType": "ReferralId",
2913
+ "name": "referralId",
2914
+ "type": "bytes8"
2915
+ },
2916
+ {
2917
+ "internalType": "uint16",
2918
+ "name": "claimsCount",
2919
+ "type": "uint16"
2920
+ },
2921
+ {
2922
+ "internalType": "uint16",
2923
+ "name": "openClaimsCount",
2924
+ "type": "uint16"
2925
+ },
2926
+ {
2927
+ "internalType": "Amount",
2928
+ "name": "claimAmount",
2929
+ "type": "uint96"
2930
+ },
2931
+ {
2932
+ "internalType": "Amount",
2933
+ "name": "payoutAmount",
2934
+ "type": "uint96"
2935
+ },
2936
+ {
2937
+ "internalType": "Timestamp",
2938
+ "name": "activatedAt",
2939
+ "type": "uint40"
2940
+ },
2941
+ {
2942
+ "internalType": "Seconds",
2943
+ "name": "lifetime",
2944
+ "type": "uint40"
2945
+ },
2946
+ {
2947
+ "internalType": "Timestamp",
2948
+ "name": "expiredAt",
2949
+ "type": "uint40"
2950
+ },
2951
+ {
2952
+ "internalType": "Timestamp",
2953
+ "name": "closedAt",
2954
+ "type": "uint40"
2955
+ },
2956
+ {
2957
+ "internalType": "bytes",
2958
+ "name": "applicationData",
2959
+ "type": "bytes"
2960
+ },
2961
+ {
2962
+ "internalType": "bytes",
2963
+ "name": "processData",
2964
+ "type": "bytes"
2965
+ }
2966
+ ],
2967
+ "internalType": "struct IPolicy.PolicyInfo",
2968
+ "name": "policy",
2969
+ "type": "tuple"
2970
+ },
2971
+ {
2972
+ "internalType": "StateId",
2973
+ "name": "newState",
2974
+ "type": "uint8"
2975
+ }
2976
+ ],
2977
+ "name": "updatePolicy",
2978
+ "outputs": [],
2979
+ "stateMutability": "nonpayable",
2980
+ "type": "function"
2981
+ },
2982
+ {
2983
+ "inputs": [
2984
+ {
2985
+ "internalType": "NftId",
2986
+ "name": "policyNftId",
2987
+ "type": "uint96"
2988
+ },
2989
+ {
2990
+ "components": [
2991
+ {
2992
+ "internalType": "NftId",
2993
+ "name": "productNftId",
2994
+ "type": "uint96"
2995
+ },
2996
+ {
2997
+ "internalType": "NftId",
2998
+ "name": "bundleNftId",
2999
+ "type": "uint96"
3000
+ },
3001
+ {
3002
+ "internalType": "RiskId",
3003
+ "name": "riskId",
3004
+ "type": "bytes8"
3005
+ },
3006
+ {
3007
+ "internalType": "Amount",
3008
+ "name": "sumInsuredAmount",
3009
+ "type": "uint96"
3010
+ },
3011
+ {
3012
+ "internalType": "Amount",
3013
+ "name": "premiumAmount",
3014
+ "type": "uint96"
3015
+ },
3016
+ {
3017
+ "internalType": "ReferralId",
3018
+ "name": "referralId",
3019
+ "type": "bytes8"
3020
+ },
3021
+ {
3022
+ "internalType": "uint16",
3023
+ "name": "claimsCount",
3024
+ "type": "uint16"
3025
+ },
3026
+ {
3027
+ "internalType": "uint16",
3028
+ "name": "openClaimsCount",
3029
+ "type": "uint16"
3030
+ },
3031
+ {
3032
+ "internalType": "Amount",
3033
+ "name": "claimAmount",
3034
+ "type": "uint96"
3035
+ },
3036
+ {
3037
+ "internalType": "Amount",
3038
+ "name": "payoutAmount",
3039
+ "type": "uint96"
3040
+ },
3041
+ {
3042
+ "internalType": "Timestamp",
3043
+ "name": "activatedAt",
3044
+ "type": "uint40"
3045
+ },
3046
+ {
3047
+ "internalType": "Seconds",
3048
+ "name": "lifetime",
3049
+ "type": "uint40"
3050
+ },
3051
+ {
3052
+ "internalType": "Timestamp",
3053
+ "name": "expiredAt",
3054
+ "type": "uint40"
3055
+ },
3056
+ {
3057
+ "internalType": "Timestamp",
3058
+ "name": "closedAt",
3059
+ "type": "uint40"
3060
+ },
3061
+ {
3062
+ "internalType": "bytes",
3063
+ "name": "applicationData",
3064
+ "type": "bytes"
3065
+ },
3066
+ {
3067
+ "internalType": "bytes",
3068
+ "name": "processData",
3069
+ "type": "bytes"
3070
+ }
3071
+ ],
3072
+ "internalType": "struct IPolicy.PolicyInfo",
3073
+ "name": "policy",
3074
+ "type": "tuple"
3075
+ },
3076
+ {
3077
+ "internalType": "StateId",
3078
+ "name": "newState",
3079
+ "type": "uint8"
3080
+ }
3081
+ ],
3082
+ "name": "updatePolicyClaims",
3083
+ "outputs": [],
3084
+ "stateMutability": "nonpayable",
3085
+ "type": "function"
3086
+ },
3087
+ {
3088
+ "inputs": [
3089
+ {
3090
+ "internalType": "NftId",
3091
+ "name": "policyNftId",
3092
+ "type": "uint96"
3093
+ },
3094
+ {
3095
+ "internalType": "StateId",
3096
+ "name": "newState",
3097
+ "type": "uint8"
3098
+ }
3099
+ ],
3100
+ "name": "updatePolicyState",
3101
+ "outputs": [],
3102
+ "stateMutability": "nonpayable",
3103
+ "type": "function"
3104
+ },
3105
+ {
3106
+ "inputs": [
3107
+ {
3108
+ "internalType": "NftId",
3109
+ "name": "policyNftId",
3110
+ "type": "uint96"
3111
+ },
3112
+ {
3113
+ "internalType": "StateId",
3114
+ "name": "newState",
3115
+ "type": "uint8"
3116
+ }
3117
+ ],
3118
+ "name": "updatePremiumState",
3119
+ "outputs": [],
3120
+ "stateMutability": "nonpayable",
3121
+ "type": "function"
3122
+ },
3123
+ {
3124
+ "inputs": [
3125
+ {
3126
+ "internalType": "NftId",
3127
+ "name": "productNftId",
3128
+ "type": "uint96"
3129
+ },
3130
+ {
3131
+ "components": [
3132
+ {
3133
+ "internalType": "bool",
3134
+ "name": "isProcessingFundedClaims",
3135
+ "type": "bool"
3136
+ },
3137
+ {
3138
+ "internalType": "bool",
3139
+ "name": "isInterceptingPolicyTransfers",
3140
+ "type": "bool"
3141
+ },
3142
+ {
3143
+ "internalType": "bool",
3144
+ "name": "hasDistribution",
3145
+ "type": "bool"
3146
+ },
3147
+ {
3148
+ "internalType": "uint8",
3149
+ "name": "expectedNumberOfOracles",
3150
+ "type": "uint8"
3151
+ },
3152
+ {
3153
+ "internalType": "uint8",
3154
+ "name": "numberOfOracles",
3155
+ "type": "uint8"
3156
+ },
3157
+ {
3158
+ "internalType": "NftId",
3159
+ "name": "poolNftId",
3160
+ "type": "uint96"
3161
+ },
3162
+ {
3163
+ "internalType": "NftId",
3164
+ "name": "distributionNftId",
3165
+ "type": "uint96"
3166
+ },
3167
+ {
3168
+ "internalType": "NftId[]",
3169
+ "name": "oracleNftId",
3170
+ "type": "uint96[]"
3171
+ }
3172
+ ],
3173
+ "internalType": "struct IComponents.ProductInfo",
3174
+ "name": "info",
3175
+ "type": "tuple"
3176
+ },
3177
+ {
3178
+ "internalType": "StateId",
3179
+ "name": "newState",
3180
+ "type": "uint8"
3181
+ }
3182
+ ],
3183
+ "name": "updateProduct",
3184
+ "outputs": [],
3185
+ "stateMutability": "nonpayable",
3186
+ "type": "function"
3187
+ },
3188
+ {
3189
+ "inputs": [
3190
+ {
3191
+ "internalType": "RiskId",
3192
+ "name": "riskId",
3193
+ "type": "bytes8"
3194
+ },
3195
+ {
3196
+ "components": [
3197
+ {
3198
+ "internalType": "NftId",
3199
+ "name": "productNftId",
3200
+ "type": "uint96"
3201
+ },
3202
+ {
3203
+ "internalType": "Timestamp",
3204
+ "name": "createdAt",
3205
+ "type": "uint40"
3206
+ },
3207
+ {
3208
+ "internalType": "bytes",
3209
+ "name": "data",
3210
+ "type": "bytes"
3211
+ }
3212
+ ],
3213
+ "internalType": "struct IRisk.RiskInfo",
3214
+ "name": "info",
3215
+ "type": "tuple"
3216
+ },
3217
+ {
3218
+ "internalType": "StateId",
3219
+ "name": "newState",
3220
+ "type": "uint8"
3221
+ }
3222
+ ],
3223
+ "name": "updateRisk",
3224
+ "outputs": [],
3225
+ "stateMutability": "nonpayable",
3226
+ "type": "function"
3227
+ },
3228
+ {
3229
+ "inputs": [
3230
+ {
3231
+ "internalType": "RiskId",
3232
+ "name": "riskId",
3233
+ "type": "bytes8"
3234
+ },
3235
+ {
3236
+ "internalType": "StateId",
3237
+ "name": "newState",
3238
+ "type": "uint8"
3239
+ }
3240
+ ],
3241
+ "name": "updateRiskState",
3242
+ "outputs": [],
3243
+ "stateMutability": "nonpayable",
3244
+ "type": "function"
3245
+ }
3246
+ ],
3247
+ "bytecode": "0x60806040525f6007553480156012575f80fd5b506155dd806100205f395ff3fe608060405234801561000f575f80fd5b506004361061026b575f3560e01c80638129fc1c1161014b578063bf1db3f9116100bf578063e9e96c7011610084578063e9e96c70146106f9578063ea11332214610736578063ebb41c0c14610749578063f48016ce1461075c578063fd8024921461077d578063fe2ee7921461079d575f80fd5b8063bf1db3f914610693578063bf7e214f146106a6578063c75e9a1c146102b7578063cb2e87d2146106c6578063e444c3df146106d9575f80fd5b8063a5961b4c11610110578063a5961b4c14610583578063a7ef3d211461061a578063abef1bb21461063a578063b33ef41a1461064d578063b6d7cd6214610660578063bd7d9d8514610673575f80fd5b80638129fc1c146104fc578063887b1fa9146105045780638eb9000d146105245780638fb360371461054f5780639505838e14610570575f80fd5b80632ae5819d116101e2578063555e5591116101a7578063555e5591146104305780635d4345cc1461035d5780635eede174146104435780636a05a413146104b65780637a9e5e4b146104d65780637cef4842146104e9575f80fd5b80632ae5819d146103c1578063353e5b75146103d457806338a699a4146103e75780634d4a7ae91461040a57806354f1fa811461041d575f80fd5b80630d358181116102335780630d358181146103385780630fad0eb11461035d5780631aa41163146103705780631c7c815514610383578063228e42ec14610396578063297023ef146102b7575f80fd5b80630232ca491461026f578063036b1ffb146102b757806309648a9d146102cc5780630b5d931c146103055780630ccd44d714610325575b5f80fd5b61029a61027d366004613c87565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b6102ca6102c5366004613fbf565b6107b0565b005b6102f36102da36600461401e565b5f90815260066020526040902054610100900460ff1690565b60405160ff90911681526020016102ae565b610318610313366004613c87565b610aa9565b6040516102ae9190614078565b6102ca6103333660046141d3565b610c07565b6102f3610346366004614243565b60ff9081165f908152602081905260409020541690565b6102ca61036b36600461425e565b610d22565b6102ca61037e3660046142f5565b610d91565b6102ca61039136600461448e565b610ef1565b61029a6103a4366004613c87565b6001600160601b039081165f908152600260205260409020541690565b6102ca6103cf36600461425e565b61105a565b6102ca6103e23660046144eb565b6110ba565b6103fa6103f536600461401e565b61111b565b60405190151581526020016102ae565b6102ca610418366004614528565b6111a9565b6102ca61042b3660046146b2565b61135b565b6102ca61043e366004614789565b6114b9565b61048c610451366004613c87565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016102ae565b6104c96104c4366004613c87565b6115e9565b6040516102ae91906147ed565b6102ca6104e436600461487b565b61170c565b6102ca6104f7366004614896565b611792565b6102ca611863565b6105176105123660046148b2565b6119db565b6040516102ae91906148fb565b61029a610532366004613c87565b6001600160601b039081165f908152600360205260409020541690565b610557611b45565b6040516001600160e01b031990911681526020016102ae565b6102ca61057e366004614939565b611b7b565b6105e961059136600461401e565b60408051606080820183525f80835260208084018290529284018190529384526006825292829020825193840183525460ff80821685526101008204169184019190915262010000900464ffffffffff169082015290565b60408051825160ff9081168252602080850151909116908201529181015164ffffffffff16908201526060016102ae565b61062d610628366004614985565b611da9565b6040516102ae91906149b1565b6102ca610648366004614a54565b611f89565b6102ca61065b366004614aa8565b6120b9565b6102ca61066e366004614afb565b6121f5565b610686610681366004613c87565b612256565b6040516102ae9190614b28565b6103fa6106a1366004614243565b61248c565b6106ae6124d8565b6040516001600160a01b0390911681526020016102ae565b6102ca6106d4366004614def565b6124f3565b6106ec6106e7366004613c87565b612678565b6040516102ae9190614e32565b6103fa610707366004615022565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b6102ca61074436600461504f565b612820565b6102ca6107573660046142f5565b612977565b61076f61076a366004615091565b612ace565b6040519081526020016102ae565b61079061078b3660046150c3565b612b56565b6040516102ae91906150ef565b6102ca6107ab36600461514d565b612c03565b6107bc335b5f36612d66565b5f6107c8846015612e64565b90505f806107d68385612eaf565b9150915084600b5f8581526020019081526020015f205f820151815f015f6101000a8154816001600160601b0302191690836001600160601b031602179055506020820151815f01600c6101000a8154816001600160601b0302191690836001600160601b031602179055506040820151815f0160186101000a8154816001600160401b03021916908360c01c02179055506060820151816001015f6101000a8154816001600160601b0302191690836001600160601b03160217905550608082015181600101600c6101000a8154816001600160601b0302191690836001600160601b0316021790555060a08201518160010160186101000a8154816001600160401b03021916908360c01c021790555060c0820151816002015f6101000a81548161ffff021916908361ffff16021790555060e08201518160020160026101000a81548161ffff021916908361ffff1602179055506101008201518160020160046101000a8154816001600160601b0302191690836001600160601b031602179055506101208201518160020160106101000a8154816001600160601b0302191690836001600160601b03160217905550610140820151816003015f6101000a81548164ffffffffff021916908364ffffffffff1602179055506101608201518160030160056101000a81548164ffffffffff021916908364ffffffffff16021790555061018082015181600301600a6101000a81548164ffffffffff021916908364ffffffffff1602179055506101a082015181600301600f6101000a81548164ffffffffff021916908364ffffffffff1602179055506101c0820151816004019081610a469190615210565b506101e08201516005820190610a5c9082615210565b509050507fe5effcf96bb744518e09cc69ad226c65cece5fb0047e35c272ac6b34f4a262ee868286333287604051610a99969594939291906152ca565b60405180910390a1505050505050565b60408051610100810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e082015290600890610af684600c612e64565b815260208082019290925260409081015f2081516101008082018452825460ff80821615158452918104821615158387015262010000810482161515838601526301000000810482166060840152640100000000810490911660808301526001600160601b03600160281b8204811660a0840152600160881b9091041660c08201526001820180548451818702810187019095528085529194929360e0860193909290830182828015610bf757602002820191905f5260205f20905f905b82829054906101000a90046001600160601b03166001600160601b0316815260200190600c0190602082600b01049283019260010382029150808411610bb45790505b5050505050815250509050919050565b610c10336107b5565b5f610c1b85856130fc565b90505f80610c298385612eaf565b5f858152600e602090815260409182902089518154928b0151938b015164ffffffffff16600160701b0264ffffffffff60701b196001600160601b0390951662010000026001600160701b031990941661ffff90921691909117929092179290921617815560608801516001820180546001600160a01b039092166001600160a01b0319909216919091179055608088015192945090925086916002820190610cd29082615210565b509050507f7af9363d2e71c6ec6d07d0aefbb5824e442032ec2fa137fa45493b4c50fb99c887878387333288604051610d119796959493929190615315565b60405180910390a150505050505050565b610d2b336107b5565b5f610d37836015612e64565b90505f80610d458385612eaf565b915091507fe5effcf96bb744518e09cc69ad226c65cece5fb0047e35c272ac6b34f4a262ee858286333287604051610d82969594939291906152ca565b60405180910390a15050505050565b610d9a336107b5565b5f610da6836029612e64565b9050610db18161314b565b5f8181526009602090815260409182902084518051908301516001600160601b03908116600160a01b9081026001600160a01b039384161784558488015180519086015183168202908416176001850155948701518051908501518216860290831617600284015560608701518051908501518216860290831617600384015560808701518051908501518216860290831617600484015560a08701518051908501518216860290831617600584015560c087015180519401511690930291909216176006909101557f068d69ce011cb769fcc969f7de53a6f937dacaa7712d3cf0a7317516472bcc6183610eba835f9081526006602052604090205460ff6101009091041690565b604080516001600160601b03909316835260ff909116602083015233908201523260608201526080015b60405180910390a1505050565b610efa336107b5565b5f610f05848461342a565b9050610f108161314b565b5f818152600d602090815260409182902084518154928601519386015160608701516001600160601b039283166001600160c01b031990951694909417600160601b9290951691909102939093176001600160c01b0316600160c01b64ffffffffff909416939093026001600160e81b031692909217600160e81b62ffffff92831602178255608084015160018301805462ffffff19169190921617905560a08301518391906002820190610fc59082615210565b5060c08201516003820190610fda9082615210565b5050505f818152600660205260409020547f3f3f91bb4a0ca5a1acfb8684778cbacc746013e2717c10ad77346313e123e9649085908590610100900460ff16604080516001600160601b03909416845261ffff909216602084015260ff169082015233606082015232608082015260a0015b60405180910390a150505050565b611063336107b5565b5f61106f83602b612e64565b90505f8061107d8385612eaf565b915091507fa44a207f9035ca27480b5f4b3d8979a7fc8ca357e9fe64049ac482f0073cb79b858286333287604051610d82969594939291906152ca565b6110c3336107b5565b5f6110ce84846130fc565b90505f806110dc8385612eaf565b915091507f7af9363d2e71c6ec6d07d0aefbb5824e442032ec2fa137fa45493b4c50fb99c886868387333288604051610a999796959493929190615315565b5f8181526006602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af415801561117f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a39190615368565b92915050565b6111b2336107b5565b5f6111be83602b612e64565b90506111c98161314b565b5f818152600c6020908152604080832085518154878501516001600160601b039283166001600160c01b031992831617600160601b91841682021784558885015160018501805460608c0151928616908516179185168302919091179055608089015160028501805460a08c015192861690851617918516830291909117905560c089015160038501805460e08c0151928616908516179185168302919091179055610100808a01516004860180546101208d01519287169086161791861684029190911790556101408a01516005860180546101608d01519287169086161791861684029190911790556101808a0151600680870180546101a08e0151938816908716179287168502929092179091556101c08b01516007870180546101e08e01519288169087161791871685029190911790556102008b0151600890960180546102208d015197871695169490941795909416909102939093179055909252909120547f4062c09a712022085eea90b805606ba55832938ec04b0278852487ff1bf011ec9185910460ff16610eba565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156113bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e19190615368565b1561140f5760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff808516908316146114505760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401611406565b60ff8084165f908152600160209081526040808320888516845282528083208585168452909152902054166114b35760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401611406565b50505050565b6114c2336107b5565b6040516355ee627560e01b81526001600160c01b0319841660048201525f9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590602401602060405180830381865af415801561151b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061153f9190615383565b90505f8061154d8385612eaf565b5f858152600a602090815260409182902089518154928b015164ffffffffff16600160601b026001600160881b03199093166001600160601b039091161791909117815590880151929450909250869160018201906115ac9082615210565b509050507f71ca834bbebe8c200ec2275d797a5a0950fa5adb86313479af773c38307a782c868286333287604051610a999695949392919061539a565b6115f1613ac2565b60095f6115ff846029612e64565b815260208082019290925260409081015f2081516101208101835281546001600160a01b0380821660e084019081526001600160601b03600160a01b9384900481166101008601529084528551808701875260018601548084168252849004821681890152848801528551808701875260028601548084168252849004821681890152848701528551808701875260038601548084168252849004821681890152606085015285518087018752600486015480841682528490048216818901526080850152855180870187526005860154808416825284900482168189015260a085015285518087019096526006909401549081168552049091169282019290925260c082015292915050565b336117156124d8565b6001600160a01b0316816001600160a01b0316146117505760405162d1953b60e31b81526001600160a01b0382166004820152602401611406565b816001600160a01b03163b5f03611785576040516361798f2f60e11b81526001600160a01b0383166004820152602401611406565b61178e82613476565b5050565b61179b336107b5565b6040516355ee627560e01b81526001600160c01b0319831660048201525f9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590602401602060405180830381865af41580156117f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118189190615383565b90505f806118268385612eaf565b915091507f71ca834bbebe8c200ec2275d797a5a0950fa5adb86313479af773c38307a782c858286333287604051610d829695949392919061539a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156118a75750825b90505f826001600160401b031660011480156118c25750303b155b9050811580156118d0575080155b156118ee5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561191857845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611959573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061197d91906153e6565b9050611988816134d6565b6119906134ea565b505083156119d457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610d82565b5050505050565b60408051606080820183525f8083526020830152918101919091526040516355ee627560e01b81526001600160c01b031983166004820152600a905f9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590602401602060405180830381865af4158015611a52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a769190615383565b815260208082019290925260409081015f20815160608101835281546001600160601b0381168252600160601b900464ffffffffff16938101939093526001810180549192840191611ac79061518f565b80601f0160208091040260200160405190810160405280929190818152602001828054611af39061518f565b8015610bf75780601f10611b1557610100808354040283529160200191610bf7565b820191905f5260205f20905b815481529060010190602001808311611b2157505050919092525091949350505050565b5f8051602061558883398151915280545f9190600160a01b900460ff16611b6c575f611b75565b638fb3603760e01b5b91505090565b611b84336107b5565b611b8d826134fc565b5f611b99836015612e64565b9050611ba48161314b565b5f818152600b602090815260409182902084518154928601519386015160c090811c600160c01b9081026001600160c01b036001600160601b03978816600160601b9081026001600160c01b0319988916968a1696909617959095178116919091178555606089015160018601805460808c015160a08d0151871c909502948a16909602959097169088161793909317909216919091179092559084015160028201805460e08701516101008801516101208901518716600160801b026bffffffffffffffffffffffff60801b19919097166401000000000216640100000000600160e01b031961ffff928316620100000263ffffffff199094169290951691909117919091179290921691909117929092179091556101408301516003820180546101608601516101808701516101a088015164ffffffffff908116600160781b0264ffffffffff60781b19928216600160501b029290921669ffffffffffffffffffff60501b19938216600160281b0269ffffffffffffffffffff1990951691909616179290921716929092179190911790556101c08301518391906004820190611d519082615210565b506101e08201516005820190611d679082615210565b5050505f818152600660205260409020547ff20995ffc314df588b8ab4c972d20b5572ff246c225c07826e29c6e11c5866a3908490610100900460ff16610eba565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820181905260c082015290600d90611ded858561342a565b815260208082019290925260409081015f20815160e08101835281546001600160601b038082168352600160601b82041694820194909452600160c01b840464ffffffffff1692810192909252600160e81b90920462ffffff9081166060830152600183015416608082015260028201805491929160a084019190611e719061518f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9d9061518f565b8015611ee85780601f10611ebf57610100808354040283529160200191611ee8565b820191905f5260205f20905b815481529060010190602001808311611ecb57829003601f168201915b50505050508152602001600382018054611f019061518f565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2d9061518f565b8015611f785780601f10611f4f57610100808354040283529160200191611f78565b820191905f5260205f20905b815481529060010190602001808311611f5b57829003601f168201915b505050505081525050905092915050565b611f92336107b5565b5f611f9d858561342a565b90505f80611fab8385612eaf565b5f858152600d602090815260409182902089518154928b0151938b015160608c01516001600160601b039283166001600160c01b031990951694909417600160601b9290951691909102939093176001600160c01b0316600160c01b64ffffffffff909416939093026001600160e81b031692909217600160e81b62ffffff92831602178255608089015160018301805462ffffff19169190921617905560a0880151929450909250869160028201906120659082615210565b5060c0820151600382019061207a9082615210565b509050507f35026c70a8e03bb609091c98d27fbb83fcccc64783e4c29df2702bdf4492318187878387333288604051610d119796959493929190615401565b6120c2336107b5565b5f6120cd84846130fc565b90506120d88161314b565b5f818152600e602090815260409182902084518154928601519386015164ffffffffff16600160701b0264ffffffffff60701b196001600160601b0390951662010000026001600160701b031990941661ffff90921691909117929092179290921617815560608301516001820180546001600160a01b039092166001600160a01b03199092169190911790556080830151839190600282019061217c9082615210565b5050505f818152600660205260409020547ffa2f5d128b878e446332990268d00c54cd310ad17e61178e902e1c8eade295539085908590610100900460ff16604080516001600160601b03909416845264ffffffffff909216602084015260ff169082015233606082015232608082015260a00161104c565b6121fe336107b5565b5f612209848461342a565b90505f806122178385612eaf565b915091507f35026c70a8e03bb609091c98d27fbb83fcccc64783e4c29df2702bdf4492318186868387333288604051610a999796959493929190615401565b60408051610200810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e08201839052610100820183905261012082018390526101408201839052610160820183905261018082018390526101a082018390526101c082018190526101e082015290600b906122e3846015612e64565b815260208082019290925260409081015f2081516102008101835281546001600160601b038082168352600160601b8083048216968401969096526001600160c01b0319600160c01b9283900460c090811b821696850196909652600185015480831660608601529687048216608085015291909504841b1660a0820152600282015461ffff8082169483019490945262010000810490931660e082015264010000000083048416610100820152600160801b909204909216610120820152600382015464ffffffffff808216610140840152600160281b82048116610160840152600160501b82048116610180840152600160781b909104166101a08201526004820180549192916101c0840191906123fc9061518f565b80601f01602080910402602001604051908101604052809291908181526020018280546124289061518f565b80156124735780601f1061244a57610100808354040283529160200191612473565b820191905f5260205f20905b81548152906001019060200180831161245657829003601f168201915b50505050508152602001600582018054611ac79061518f565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401611164565b5f80516020615588833981519152546001600160a01b031690565b6124fc336107b5565b5f61250884600c612e64565b90505f806125168385612eaf565b915091508460085f8581526020019081526020015f205f820151815f015f6101000a81548160ff0219169083151502179055506020820151815f0160016101000a81548160ff0219169083151502179055506040820151815f0160026101000a81548160ff0219169083151502179055506060820151815f0160036101000a81548160ff021916908360ff1602179055506080820151815f0160046101000a81548160ff021916908360ff16021790555060a0820151815f0160056101000a8154816001600160601b0302191690836001600160601b0316021790555060c0820151815f0160116101000a8154816001600160601b0302191690836001600160601b0316021790555060e082015181600101908051906020019061263b929190613b9a565b509050507ffd07266138b2f83dc615e7b1aeafaf298f891cfd308d00705cff13693af983f8868286333287604051610a99969594939291906152ca565b60408051610240810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e081018290526102008101829052610220810191909152600c5f61271684602b612e64565b815260208082019290925260409081015f2081516102408101835281546001600160601b038082168352600160601b91829004811695830195909552600183015480861694830194909452928390048416606082015260028201548085166080830152839004841660a0820152600382015480851660c0830152839004841660e08201526004820154808516610100830152839004841661012082015260058201548085166101408301528390048416610160820152600682015480851661018083015283900484166101a082015260078201548085166101c083015283900484166101e08201526008909101548084166102008301529190910490911661022082015292915050565b612829336107b5565b6040516355ee627560e01b81526001600160c01b0319831660048201525f9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590602401602060405180830381865af4158015612882573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128a69190615383565b90506128b18161314b565b5f818152600a6020908152604091829020845181549286015164ffffffffff16600160601b026001600160881b03199093166001600160601b039091161791909117815590830151839190600182019061290b9082615210565b5050505f818152600660205260409020547f0ae9235dd84177810ab4e630bde66fadcc2f2bdbb249c6e226006ce17bfcde4d908490610100900460ff16604080516001600160c01b0319909316835260ff90911660208301523390820152326060820152608001610ee4565b612980336107b5565b5f61298c836029612e64565b90505f61299a8260ff612eaf565b505f8381526009602090815260409182902086518051908301516001600160601b03908116600160a01b9081026001600160a01b03938416178455848a015180519086015183168202908416176001850155858a01518051908601518316820290841617600285015560608a01518051908601518316820290841617600385015560808a01518051908601518316820290841617600485015560a08a01518051908601518316820290841617600585015560c08a0151805195015190911602921691909117600690910155519091507f599ccdc84510a5701e437f3679bb1fb4d68a6b3100cf84e9d7c2a650e779c4f29061104c9086903390329086906001600160601b039490941684526001600160a01b0392831660208501529116604083015264ffffffffff16606082015260800190565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015612b2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b4f9190615383565b9392505050565b6040805160a0810182525f808252602082018190529181018290526060808201839052608082015290600e90612b8c85856130fc565b815260208082019290925260409081015f20815160a081018352815461ffff811682526201000081046001600160601b031694820194909452600160701b90930464ffffffffff169183019190915260018101546001600160a01b03166060830152600281018054608084019190611f019061518f565b612c0c336107b5565b5f612c1883600c612e64565b9050612c238161314b565b5f818152600860209081526040918290208451815486840151948701516060880151608089015160a08a015160c08b015161ffff1990951695151561ff00191695909517610100981515989098029790971763ffff00001916620100009215159290920263ff000000191691909117630100000060ff928316021770ffffffffffffffffffffffffff000000001916640100000000919096160270ffffffffffffffffffffffff0000000000191694909417600160281b6001600160601b0392831602176bffffffffffffffffffffffff60881b1916600160881b919094160292909217825560e08401518051859392612d24926001850192910190613b9a565b5050505f818152600660205260409020547fd0381ee84b0f7f22e39cf4fab22dc41fa1ceedf30e5b76a7b110a0a861ecfceb908490610100900460ff16610eba565b5f805160206155888339815191525f80612d9e612d816124d8565b8730612d9060045f8a8c615456565b612d999161547d565b6135ff565b9150915081612e5c5763ffffffff811615612e3957825460ff60a01b1916600160a01b178355612dcc6124d8565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612dfb939291906154b3565b5f604051808303815f87803b158015612e12575f80fd5b505af1158015612e24573d5f803e3d5ffd5b5050845460ff60a01b1916855550612e5c9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401611406565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401612b10565b60405163037c8cb160e51b815260ff821660048201525f90819073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015612f03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f279190615368565b15612f4857604051631260077f60e21b815260048101859052602401611406565b50505f82815260066020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930464ffffffffff1692919073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015612fc1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fe59190615368565b15613006576040516310b1404560e21b815260048101869052602401611406565b60ff8085161461303557805461302290839060ff16818761135b565b805461ff00191661010060ff8616021781555b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af415801561307c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130a091906154f2565b815464ffffffffff91909116620100000266ffffffffff00001990911617815560405160ff808616919084169087907f58523054d18a5ba889bc4da20bd431688553af6bbb3d03fae832ad177525a64f905f90a4509250929050565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401612b10565b604051634b00e98f60e11b8152600481018290525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af415801561319b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131bf919061550d565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015613212573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132369190615368565b1561325957604051633d61be7d60e11b815260ff82166004820152602401611406565b5f828152600660205260409081902080549151638d38cd4b60e01b81526201000090920464ffffffffff1660048301529073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af41580156132c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132e89190615368565b1561331257604051637791d47d60e01b81526004810184905260ff83166024820152604401611406565b61331b8261248c565b61333d576040516391eb5e8760e01b815260ff83166004820152602401611406565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613385573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133a991906154f2565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff1990921682176101009184169182021766ffffffffff000019166201000064ffffffffff8716021786556040519293509187907f495f105146f17a6371cfa57092922c4bcee6d6508fd3a6a94f512660c0d45aba905f90a45050505050565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401612b10565b5f8051602061558883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6134de613707565b6134e781613750565b50565b6134f2613707565b6134fa613761565b565b6001600160601b0381165f9081526005602052604090819020549051638d38cd4b60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af415801561356a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358e9190615368565b156135b7576040516314d5804160e01b81526001600160601b0382166004820152602401611406565b6135c0816137b9565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161366d9190615528565b5f60405180830381855afa9150503d805f81146136a5576040519150601f19603f3d011682016040523d82523d5f602084013e6136aa565b606091505b509150915081156136fc5760408151106136dc57808060200190518101906136d2919061553e565b90945092506136fc565b60208151106136fc57808060200190518101906136f99190615368565b93505b505094509492505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166134fa57604051631afcd79f60e31b815260040160405180910390fd5b613758613707565b6134e781613476565b613769613858565b613771613875565b6137796138a9565b6137816138ed565b613789613909565b613791613956565b613799613976565b6137a161398a565b6137a96139c9565b6137b16139d3565b6134fa6139e7565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613800573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061382491906154f2565b6001600160601b03919091165f908152600560205260409020805464ffffffffff191664ffffffffff909216919091179055565b61386560165b6005613a0f565b6134fa60165b60055b60c8613a51565b61387f600b61385e565b61388d600b6005606e613a51565b61389b600b606e6005613a51565b6134fa600b606e60d2613a51565b6138b56015600a613a0f565b6138c46015600a5b6014613a51565b6138d36015600a5b601e613a51565b6138e16015600a6028613a51565b6134fa6015602861386e565b6138fa602b5b603c613a0f565b6134fa602b5b603c60dc613a51565b613915602d6032613a0f565b613921602d60326138bd565b61392f602d60326033613a51565b61393b602d60326138cc565b613947602d603361386e565b6134fa602d60335b6048613a51565b613960602e6138f3565b61396a602e613900565b6134fa602e603c61394f565b613980602c61385e565b6134fa602c61386b565b613994602f61385e565b6139a3602f60055b6046613a51565b6139b1602f60056007613a51565b6139bd602f600761399c565b6134fa602f600561394f565b6134fa600f61385e565b6139dd600c61385e565b6134fa602961385e565b6139f1600e61385e565b6139fb601761385e565b613a05603061385e565b6134fa603161385e565b60ff8281165f908152602081905260409020541615613a3057613a30615573565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f9081526001602090815260408083208685168452825280832085851684529091529020541615613a8957613a89615573565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6040805161012081019091525f60e0820181815261010083019190915281908152602001613aff604080518082019091525f808252602082015290565b8152602001613b1d604080518082019091525f808252602082015290565b8152602001613b3b604080518082019091525f808252602082015290565b8152602001613b59604080518082019091525f808252602082015290565b8152602001613b77604080518082019091525f808252602082015290565b8152602001613b95604080518082019091525f808252602082015290565b905290565b828054828255905f5260205f2090600101600290048101928215613c3f579160200282015f5b83821115613c0a57835183826101000a8154816001600160601b0302191690836001600160601b031602179055509260200192600c01602081600b01049283019260010302613bc0565b8015613c3d5782816101000a8154906001600160601b030219169055600c01602081600b01049283019260010302613c0a565b505b50613c4b929150613c4f565b5090565b5b80821115613c4b575f8155600101613c50565b6001600160601b03811681146134e7575f80fd5b8035613c8281613c63565b919050565b5f60208284031215613c97575f80fd5b8135612b4f81613c63565b634e487b7160e01b5f52604160045260245ffd5b60405161020081016001600160401b0381118282101715613cd957613cd9613ca2565b60405290565b60405160e081016001600160401b0381118282101715613cd957613cd9613ca2565b60405161024081016001600160401b0381118282101715613cd957613cd9613ca2565b60405161010081016001600160401b0381118282101715613cd957613cd9613ca2565b604051601f8201601f191681016001600160401b0381118282101715613d6f57613d6f613ca2565b604052919050565b6001600160c01b0319811681146134e7575f80fd5b8035613c8281613d77565b61ffff811681146134e7575f80fd5b8035613c8281613d97565b64ffffffffff811681146134e7575f80fd5b8035613c8281613db1565b5f82601f830112613ddd575f80fd5b81356001600160401b03811115613df657613df6613ca2565b613e09601f8201601f1916602001613d47565b818152846020838601011115613e1d575f80fd5b816020850160208301375f918101602001919091529392505050565b5f6102008284031215613e4a575f80fd5b613e52613cb6565b9050613e5d82613c77565b8152613e6b60208301613c77565b6020820152613e7c60408301613d8c565b6040820152613e8d60608301613c77565b6060820152613e9e60808301613c77565b6080820152613eaf60a08301613d8c565b60a0820152613ec060c08301613da6565b60c0820152613ed160e08301613da6565b60e0820152613ee36101008301613c77565b610100820152613ef66101208301613c77565b610120820152613f096101408301613dc3565b610140820152613f1c6101608301613dc3565b610160820152613f2f6101808301613dc3565b610180820152613f426101a08301613dc3565b6101a08201526101c08201356001600160401b03811115613f61575f80fd5b613f6d84828501613dce565b6101c0830152506101e08201356001600160401b03811115613f8d575f80fd5b613f9984828501613dce565b6101e08301525092915050565b60ff811681146134e7575f80fd5b8035613c8281613fa6565b5f805f60608486031215613fd1575f80fd5b8335613fdc81613c63565b925060208401356001600160401b03811115613ff6575f80fd5b61400286828701613e39565b925050604084013561401381613fa6565b809150509250925092565b5f6020828403121561402e575f80fd5b5035919050565b5f8151808452602084019350602083015f5b8281101561406e5781516001600160601b0316865260209586019590910190600101614047565b5093949350505050565b602081528151151560208201526020820151151560408201525f60408301516140a5606084018215159052565b50606083015160ff8116608084015250608083015160ff811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e083015161010080840152614108610120840182614035565b949350505050565b6001600160a01b03811681146134e7575f80fd5b5f60a08284031215614134575f80fd5b60405160a081016001600160401b038111828210171561415657614156613ca2565b604052905080823561416781613d97565b8152602083013561417781613c63565b6020820152604083013561418a81613db1565b6040820152606083013561419d81614110565b606082015260808301356001600160401b038111156141ba575f80fd5b6141c685828601613dce565b6080830152505092915050565b5f805f80608085870312156141e6575f80fd5b84356141f181613c63565b9350602085013561420181613db1565b925060408501356001600160401b0381111561421b575f80fd5b61422787828801614124565b925050606085013561423881613fa6565b939692955090935050565b5f60208284031215614253575f80fd5b8135612b4f81613fa6565b5f806040838503121561426f575f80fd5b823561427a81613c63565b9150602083013561428a81613fa6565b809150509250929050565b5f604082840312156142a5575f80fd5b604080519081016001600160401b03811182821017156142c7576142c7613ca2565b60405290508082356142d881614110565b815260208301356142e881613c63565b6020919091015292915050565b5f808284036101e0811215614308575f80fd5b833561431381613c63565b92506101c0601f1982011215614327575f80fd5b50614330613cdf565b61433d8560208601614295565b815261434c8560608601614295565b602082015261435e8560a08601614295565b60408201526143708560e08601614295565b6060820152614383856101208601614295565b6080820152614396856101608601614295565b60a08201526143a9856101a08601614295565b60c0820152809150509250929050565b803562ffffff81168114613c82575f80fd5b5f60e082840312156143db575f80fd5b6143e3613cdf565b90506143ee82613c77565b81526143fc60208301613c77565b602082015261440d60408301613dc3565b604082015261441e606083016143b9565b606082015261442f608083016143b9565b608082015260a08201356001600160401b0381111561444c575f80fd5b61445884828501613dce565b60a08301525060c08201356001600160401b03811115614476575f80fd5b61448284828501613dce565b60c08301525092915050565b5f805f606084860312156144a0575f80fd5b83356144ab81613c63565b925060208401356144bb81613d97565b915060408401356001600160401b038111156144d5575f80fd5b6144e1868287016143cb565b9150509250925092565b5f805f606084860312156144fd575f80fd5b833561450881613c63565b9250602084013561451881613db1565b9150604084013561401381613fa6565b5f8082840361026081121561453b575f80fd5b833561454681613c63565b9250610240601f198201121561455a575f80fd5b50614563613d01565b61456f60208501613c77565b815261457d60408501613c77565b602082015261458e60608501613c77565b604082015261459f60808501613c77565b60608201526145b060a08501613c77565b60808201526145c160c08501613c77565b60a08201526145d260e08501613c77565b60c08201526145e46101008501613c77565b60e08201526145f66101208501613c77565b6101008201526146096101408501613c77565b61012082015261461c6101608501613c77565b61014082015261462f6101808501613c77565b6101608201526146426101a08501613c77565b6101808201526146556101c08501613c77565b6101a08201526146686101e08501613c77565b6101c082015261467b6102008501613c77565b6101e082015261468e6102208501613c77565b6102008201526146a16102408501613c77565b610220820152809150509250929050565b5f805f80608085870312156146c5575f80fd5b84356146d081613fa6565b935060208501356146e081613fa6565b925060408501356146f081613fa6565b9150606085013561423881613fa6565b5f60608284031215614710575f80fd5b604051606081016001600160401b038111828210171561473257614732613ca2565b604052905080823561474381613c63565b8152602083013561475381613db1565b602082015260408301356001600160401b03811115614770575f80fd5b61477c85828601613dce565b6040830152505092915050565b5f805f6060848603121561479b575f80fd5b83356147a681613d77565b925060208401356001600160401b038111156147c0575f80fd5b61400286828701614700565b80516001600160a01b031682526020908101516001600160601b0316910152565b5f6101c0820190506148008284516147cc565b602083015161481260408401826147cc565b50604083015161482560808401826147cc565b50606083015161483860c08401826147cc565b50608083015161484c6101008401826147cc565b5060a08301516148606101408401826147cc565b5060c08301516148746101808401826147cc565b5092915050565b5f6020828403121561488b575f80fd5b8135612b4f81614110565b5f80604083850312156148a7575f80fd5b823561427a81613d77565b5f602082840312156148c2575f80fd5b8135612b4f81613d77565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b03825116602082015264ffffffffff60208301511660408201525f604083015160608084015261410860808401826148cd565b5f806040838503121561494a575f80fd5b823561495581613c63565b915060208301356001600160401b0381111561496f575f80fd5b61497b85828601613e39565b9150509250929050565b5f8060408385031215614996575f80fd5b82356149a181613c63565b9150602083013561428a81613d97565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f60408301516149f1606084018264ffffffffff169052565b50606083015162ffffff8116608084015250608083015162ffffff811660a08401525060a083015160e060c0840152614a2e6101008401826148cd565b905060c0840151601f198483030160e0850152614a4b82826148cd565b95945050505050565b5f805f8060808587031215614a67575f80fd5b8435614a7281613c63565b93506020850135614a8281613d97565b925060408501356001600160401b03811115614a9c575f80fd5b614227878288016143cb565b5f805f60608486031215614aba575f80fd5b8335614ac581613c63565b92506020840135614ad581613db1565b915060408401356001600160401b03811115614aef575f80fd5b6144e186828701614124565b5f805f60608486031215614b0d575f80fd5b8335614b1881613c63565b9250602084013561451881613d97565b60208152614b426020820183516001600160601b03169052565b5f6020830151614b5d60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160601b03811660808401525060808301516001600160601b03811660a08401525060a08301516001600160c01b0319811660c08401525060c083015161ffff811660e08401525060e083015161ffff8116610100840152506101008301516001600160601b038116610120840152506101208301516001600160601b0381166101408401525061014083015164ffffffffff81166101608401525061016083015164ffffffffff81166101808401525061018083015164ffffffffff81166101a0840152506101a083015164ffffffffff81166101c0840152506101c08301516102006101e0840152614c746102208401826148cd565b90506101e0840151601f1984830301610200850152614a4b82826148cd565b80151581146134e7575f80fd5b8035613c8281614c93565b5f82601f830112614cba575f80fd5b81356001600160401b03811115614cd357614cd3613ca2565b8060051b614ce360208201613d47565b91825260208185018101929081019086841115614cfe575f80fd5b6020860192505b83831015614d29578235614d1881613c63565b825260209283019290910190614d05565b9695505050505050565b5f6101008284031215614d44575f80fd5b614d4c613d24565b9050614d5782614ca0565b8152614d6560208301614ca0565b6020820152614d7660408301614ca0565b6040820152614d8760608301613fb4565b6060820152614d9860808301613fb4565b6080820152614da960a08301613c77565b60a0820152614dba60c08301613c77565b60c082015260e08201356001600160401b03811115614dd7575f80fd5b614de384828501614cab565b60e08301525092915050565b5f805f60608486031215614e01575f80fd5b8335614e0c81613c63565b925060208401356001600160401b03811115614e26575f80fd5b61400286828701614d33565b81516001600160601b0316815261024081016020830151614e5e60208401826001600160601b03169052565b506040830151614e7960408401826001600160601b03169052565b506060830151614e9460608401826001600160601b03169052565b506080830151614eaf60808401826001600160601b03169052565b5060a0830151614eca60a08401826001600160601b03169052565b5060c0830151614ee560c08401826001600160601b03169052565b5060e0830151614f0060e08401826001600160601b03169052565b50610100830151614f1d6101008401826001600160601b03169052565b50610120830151614f3a6101208401826001600160601b03169052565b50610140830151614f576101408401826001600160601b03169052565b50610160830151614f746101608401826001600160601b03169052565b50610180830151614f916101808401826001600160601b03169052565b506101a0830151614fae6101a08401826001600160601b03169052565b506101c0830151614fcb6101c08401826001600160601b03169052565b506101e0830151614fe86101e08401826001600160601b03169052565b506102008301516150056102008401826001600160601b03169052565b506102208301516148746102208401826001600160601b03169052565b5f805f60608486031215615034575f80fd5b833561503f81613fa6565b9250602084013561451881613fa6565b5f8060408385031215615060575f80fd5b823561506b81613d77565b915060208301356001600160401b03811115615085575f80fd5b61497b85828601614700565b5f80604083850312156150a2575f80fd5b82356150ad81613fa6565b9150602083013560ff198116811461428a575f80fd5b5f80604083850312156150d4575f80fd5b82356150df81613c63565b9150602083013561428a81613db1565b6020815261ffff82511660208201526001600160601b03602083015116604082015264ffffffffff604083015116606082015260018060a01b0360608301511660808201525f608083015160a08084015261410860c08401826148cd565b5f806040838503121561515e575f80fd5b823561516981613c63565b915060208301356001600160401b03811115615183575f80fd5b61497b85828601614d33565b600181811c908216806151a357607f821691505b6020821081036151c157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561520b57805f5260205f20601f840160051c810160208510156151ec5750805b601f840160051c820191505b818110156119d4575f81556001016151f8565b505050565b81516001600160401b0381111561522957615229613ca2565b61523d81615237845461518f565b846151c7565b6020601f82116001811461526f575f83156152585750848201515b5f19600385901b1c1916600184901b1784556119d4565b5f84815260208120601f198516915b8281101561529e578785015182556020948501946001909201910161527e565b50848210156152bb57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160601b0396909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b6001600160601b0397909716875264ffffffffff958616602088015260ff94851660408801529290931660608601526001600160a01b03908116608086015290911660a08401521660c082015260e00190565b5f60208284031215615378575f80fd5b8151612b4f81614c93565b5f60208284031215615393575f80fd5b5051919050565b6001600160c01b031996909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b5f602082840312156153f6575f80fd5b8151612b4f81614110565b6001600160601b0397909716875261ffff95909516602087015260ff93841660408701529190921660608501526001600160a01b0391821660808501521660a083015264ffffffffff1660c082015260e00190565b5f8085851115615464575f80fd5b83861115615470575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015614874576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215615502575f80fd5b8151612b4f81613db1565b5f6020828403121561551d575f80fd5b8151612b4f81613fa6565b5f82518060208501845e5f920191825250919050565b5f806040838503121561554f575f80fd5b825161555a81614c93565b602084015190925063ffffffff8116811461428a575f80fd5b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220a1814cd212a39a1196a6c94ecae5b58a9c7910e607176d08c64a6d31bef9a70f64736f6c634300081a0033",
3248
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061026b575f3560e01c80638129fc1c1161014b578063bf1db3f9116100bf578063e9e96c7011610084578063e9e96c70146106f9578063ea11332214610736578063ebb41c0c14610749578063f48016ce1461075c578063fd8024921461077d578063fe2ee7921461079d575f80fd5b8063bf1db3f914610693578063bf7e214f146106a6578063c75e9a1c146102b7578063cb2e87d2146106c6578063e444c3df146106d9575f80fd5b8063a5961b4c11610110578063a5961b4c14610583578063a7ef3d211461061a578063abef1bb21461063a578063b33ef41a1461064d578063b6d7cd6214610660578063bd7d9d8514610673575f80fd5b80638129fc1c146104fc578063887b1fa9146105045780638eb9000d146105245780638fb360371461054f5780639505838e14610570575f80fd5b80632ae5819d116101e2578063555e5591116101a7578063555e5591146104305780635d4345cc1461035d5780635eede174146104435780636a05a413146104b65780637a9e5e4b146104d65780637cef4842146104e9575f80fd5b80632ae5819d146103c1578063353e5b75146103d457806338a699a4146103e75780634d4a7ae91461040a57806354f1fa811461041d575f80fd5b80630d358181116102335780630d358181146103385780630fad0eb11461035d5780631aa41163146103705780631c7c815514610383578063228e42ec14610396578063297023ef146102b7575f80fd5b80630232ca491461026f578063036b1ffb146102b757806309648a9d146102cc5780630b5d931c146103055780630ccd44d714610325575b5f80fd5b61029a61027d366004613c87565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b6102ca6102c5366004613fbf565b6107b0565b005b6102f36102da36600461401e565b5f90815260066020526040902054610100900460ff1690565b60405160ff90911681526020016102ae565b610318610313366004613c87565b610aa9565b6040516102ae9190614078565b6102ca6103333660046141d3565b610c07565b6102f3610346366004614243565b60ff9081165f908152602081905260409020541690565b6102ca61036b36600461425e565b610d22565b6102ca61037e3660046142f5565b610d91565b6102ca61039136600461448e565b610ef1565b61029a6103a4366004613c87565b6001600160601b039081165f908152600260205260409020541690565b6102ca6103cf36600461425e565b61105a565b6102ca6103e23660046144eb565b6110ba565b6103fa6103f536600461401e565b61111b565b60405190151581526020016102ae565b6102ca610418366004614528565b6111a9565b6102ca61042b3660046146b2565b61135b565b6102ca61043e366004614789565b6114b9565b61048c610451366004613c87565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016102ae565b6104c96104c4366004613c87565b6115e9565b6040516102ae91906147ed565b6102ca6104e436600461487b565b61170c565b6102ca6104f7366004614896565b611792565b6102ca611863565b6105176105123660046148b2565b6119db565b6040516102ae91906148fb565b61029a610532366004613c87565b6001600160601b039081165f908152600360205260409020541690565b610557611b45565b6040516001600160e01b031990911681526020016102ae565b6102ca61057e366004614939565b611b7b565b6105e961059136600461401e565b60408051606080820183525f80835260208084018290529284018190529384526006825292829020825193840183525460ff80821685526101008204169184019190915262010000900464ffffffffff169082015290565b60408051825160ff9081168252602080850151909116908201529181015164ffffffffff16908201526060016102ae565b61062d610628366004614985565b611da9565b6040516102ae91906149b1565b6102ca610648366004614a54565b611f89565b6102ca61065b366004614aa8565b6120b9565b6102ca61066e366004614afb565b6121f5565b610686610681366004613c87565b612256565b6040516102ae9190614b28565b6103fa6106a1366004614243565b61248c565b6106ae6124d8565b6040516001600160a01b0390911681526020016102ae565b6102ca6106d4366004614def565b6124f3565b6106ec6106e7366004613c87565b612678565b6040516102ae9190614e32565b6103fa610707366004615022565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b6102ca61074436600461504f565b612820565b6102ca6107573660046142f5565b612977565b61076f61076a366004615091565b612ace565b6040519081526020016102ae565b61079061078b3660046150c3565b612b56565b6040516102ae91906150ef565b6102ca6107ab36600461514d565b612c03565b6107bc335b5f36612d66565b5f6107c8846015612e64565b90505f806107d68385612eaf565b9150915084600b5f8581526020019081526020015f205f820151815f015f6101000a8154816001600160601b0302191690836001600160601b031602179055506020820151815f01600c6101000a8154816001600160601b0302191690836001600160601b031602179055506040820151815f0160186101000a8154816001600160401b03021916908360c01c02179055506060820151816001015f6101000a8154816001600160601b0302191690836001600160601b03160217905550608082015181600101600c6101000a8154816001600160601b0302191690836001600160601b0316021790555060a08201518160010160186101000a8154816001600160401b03021916908360c01c021790555060c0820151816002015f6101000a81548161ffff021916908361ffff16021790555060e08201518160020160026101000a81548161ffff021916908361ffff1602179055506101008201518160020160046101000a8154816001600160601b0302191690836001600160601b031602179055506101208201518160020160106101000a8154816001600160601b0302191690836001600160601b03160217905550610140820151816003015f6101000a81548164ffffffffff021916908364ffffffffff1602179055506101608201518160030160056101000a81548164ffffffffff021916908364ffffffffff16021790555061018082015181600301600a6101000a81548164ffffffffff021916908364ffffffffff1602179055506101a082015181600301600f6101000a81548164ffffffffff021916908364ffffffffff1602179055506101c0820151816004019081610a469190615210565b506101e08201516005820190610a5c9082615210565b509050507fe5effcf96bb744518e09cc69ad226c65cece5fb0047e35c272ac6b34f4a262ee868286333287604051610a99969594939291906152ca565b60405180910390a1505050505050565b60408051610100810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e082015290600890610af684600c612e64565b815260208082019290925260409081015f2081516101008082018452825460ff80821615158452918104821615158387015262010000810482161515838601526301000000810482166060840152640100000000810490911660808301526001600160601b03600160281b8204811660a0840152600160881b9091041660c08201526001820180548451818702810187019095528085529194929360e0860193909290830182828015610bf757602002820191905f5260205f20905f905b82829054906101000a90046001600160601b03166001600160601b0316815260200190600c0190602082600b01049283019260010382029150808411610bb45790505b5050505050815250509050919050565b610c10336107b5565b5f610c1b85856130fc565b90505f80610c298385612eaf565b5f858152600e602090815260409182902089518154928b0151938b015164ffffffffff16600160701b0264ffffffffff60701b196001600160601b0390951662010000026001600160701b031990941661ffff90921691909117929092179290921617815560608801516001820180546001600160a01b039092166001600160a01b0319909216919091179055608088015192945090925086916002820190610cd29082615210565b509050507f7af9363d2e71c6ec6d07d0aefbb5824e442032ec2fa137fa45493b4c50fb99c887878387333288604051610d119796959493929190615315565b60405180910390a150505050505050565b610d2b336107b5565b5f610d37836015612e64565b90505f80610d458385612eaf565b915091507fe5effcf96bb744518e09cc69ad226c65cece5fb0047e35c272ac6b34f4a262ee858286333287604051610d82969594939291906152ca565b60405180910390a15050505050565b610d9a336107b5565b5f610da6836029612e64565b9050610db18161314b565b5f8181526009602090815260409182902084518051908301516001600160601b03908116600160a01b9081026001600160a01b039384161784558488015180519086015183168202908416176001850155948701518051908501518216860290831617600284015560608701518051908501518216860290831617600384015560808701518051908501518216860290831617600484015560a08701518051908501518216860290831617600584015560c087015180519401511690930291909216176006909101557f068d69ce011cb769fcc969f7de53a6f937dacaa7712d3cf0a7317516472bcc6183610eba835f9081526006602052604090205460ff6101009091041690565b604080516001600160601b03909316835260ff909116602083015233908201523260608201526080015b60405180910390a1505050565b610efa336107b5565b5f610f05848461342a565b9050610f108161314b565b5f818152600d602090815260409182902084518154928601519386015160608701516001600160601b039283166001600160c01b031990951694909417600160601b9290951691909102939093176001600160c01b0316600160c01b64ffffffffff909416939093026001600160e81b031692909217600160e81b62ffffff92831602178255608084015160018301805462ffffff19169190921617905560a08301518391906002820190610fc59082615210565b5060c08201516003820190610fda9082615210565b5050505f818152600660205260409020547f3f3f91bb4a0ca5a1acfb8684778cbacc746013e2717c10ad77346313e123e9649085908590610100900460ff16604080516001600160601b03909416845261ffff909216602084015260ff169082015233606082015232608082015260a0015b60405180910390a150505050565b611063336107b5565b5f61106f83602b612e64565b90505f8061107d8385612eaf565b915091507fa44a207f9035ca27480b5f4b3d8979a7fc8ca357e9fe64049ac482f0073cb79b858286333287604051610d82969594939291906152ca565b6110c3336107b5565b5f6110ce84846130fc565b90505f806110dc8385612eaf565b915091507f7af9363d2e71c6ec6d07d0aefbb5824e442032ec2fa137fa45493b4c50fb99c886868387333288604051610a999796959493929190615315565b5f8181526006602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af415801561117f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a39190615368565b92915050565b6111b2336107b5565b5f6111be83602b612e64565b90506111c98161314b565b5f818152600c6020908152604080832085518154878501516001600160601b039283166001600160c01b031992831617600160601b91841682021784558885015160018501805460608c0151928616908516179185168302919091179055608089015160028501805460a08c015192861690851617918516830291909117905560c089015160038501805460e08c0151928616908516179185168302919091179055610100808a01516004860180546101208d01519287169086161791861684029190911790556101408a01516005860180546101608d01519287169086161791861684029190911790556101808a0151600680870180546101a08e0151938816908716179287168502929092179091556101c08b01516007870180546101e08e01519288169087161791871685029190911790556102008b0151600890960180546102208d015197871695169490941795909416909102939093179055909252909120547f4062c09a712022085eea90b805606ba55832938ec04b0278852487ff1bf011ec9185910460ff16610eba565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156113bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e19190615368565b1561140f5760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff808516908316146114505760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401611406565b60ff8084165f908152600160209081526040808320888516845282528083208585168452909152902054166114b35760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401611406565b50505050565b6114c2336107b5565b6040516355ee627560e01b81526001600160c01b0319841660048201525f9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590602401602060405180830381865af415801561151b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061153f9190615383565b90505f8061154d8385612eaf565b5f858152600a602090815260409182902089518154928b015164ffffffffff16600160601b026001600160881b03199093166001600160601b039091161791909117815590880151929450909250869160018201906115ac9082615210565b509050507f71ca834bbebe8c200ec2275d797a5a0950fa5adb86313479af773c38307a782c868286333287604051610a999695949392919061539a565b6115f1613ac2565b60095f6115ff846029612e64565b815260208082019290925260409081015f2081516101208101835281546001600160a01b0380821660e084019081526001600160601b03600160a01b9384900481166101008601529084528551808701875260018601548084168252849004821681890152848801528551808701875260028601548084168252849004821681890152848701528551808701875260038601548084168252849004821681890152606085015285518087018752600486015480841682528490048216818901526080850152855180870187526005860154808416825284900482168189015260a085015285518087019096526006909401549081168552049091169282019290925260c082015292915050565b336117156124d8565b6001600160a01b0316816001600160a01b0316146117505760405162d1953b60e31b81526001600160a01b0382166004820152602401611406565b816001600160a01b03163b5f03611785576040516361798f2f60e11b81526001600160a01b0383166004820152602401611406565b61178e82613476565b5050565b61179b336107b5565b6040516355ee627560e01b81526001600160c01b0319831660048201525f9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590602401602060405180830381865af41580156117f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118189190615383565b90505f806118268385612eaf565b915091507f71ca834bbebe8c200ec2275d797a5a0950fa5adb86313479af773c38307a782c858286333287604051610d829695949392919061539a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156118a75750825b90505f826001600160401b031660011480156118c25750303b155b9050811580156118d0575080155b156118ee5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561191857845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611959573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061197d91906153e6565b9050611988816134d6565b6119906134ea565b505083156119d457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610d82565b5050505050565b60408051606080820183525f8083526020830152918101919091526040516355ee627560e01b81526001600160c01b031983166004820152600a905f9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590602401602060405180830381865af4158015611a52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a769190615383565b815260208082019290925260409081015f20815160608101835281546001600160601b0381168252600160601b900464ffffffffff16938101939093526001810180549192840191611ac79061518f565b80601f0160208091040260200160405190810160405280929190818152602001828054611af39061518f565b8015610bf75780601f10611b1557610100808354040283529160200191610bf7565b820191905f5260205f20905b815481529060010190602001808311611b2157505050919092525091949350505050565b5f8051602061558883398151915280545f9190600160a01b900460ff16611b6c575f611b75565b638fb3603760e01b5b91505090565b611b84336107b5565b611b8d826134fc565b5f611b99836015612e64565b9050611ba48161314b565b5f818152600b602090815260409182902084518154928601519386015160c090811c600160c01b9081026001600160c01b036001600160601b03978816600160601b9081026001600160c01b0319988916968a1696909617959095178116919091178555606089015160018601805460808c015160a08d0151871c909502948a16909602959097169088161793909317909216919091179092559084015160028201805460e08701516101008801516101208901518716600160801b026bffffffffffffffffffffffff60801b19919097166401000000000216640100000000600160e01b031961ffff928316620100000263ffffffff199094169290951691909117919091179290921691909117929092179091556101408301516003820180546101608601516101808701516101a088015164ffffffffff908116600160781b0264ffffffffff60781b19928216600160501b029290921669ffffffffffffffffffff60501b19938216600160281b0269ffffffffffffffffffff1990951691909616179290921716929092179190911790556101c08301518391906004820190611d519082615210565b506101e08201516005820190611d679082615210565b5050505f818152600660205260409020547ff20995ffc314df588b8ab4c972d20b5572ff246c225c07826e29c6e11c5866a3908490610100900460ff16610eba565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820181905260c082015290600d90611ded858561342a565b815260208082019290925260409081015f20815160e08101835281546001600160601b038082168352600160601b82041694820194909452600160c01b840464ffffffffff1692810192909252600160e81b90920462ffffff9081166060830152600183015416608082015260028201805491929160a084019190611e719061518f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9d9061518f565b8015611ee85780601f10611ebf57610100808354040283529160200191611ee8565b820191905f5260205f20905b815481529060010190602001808311611ecb57829003601f168201915b50505050508152602001600382018054611f019061518f565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2d9061518f565b8015611f785780601f10611f4f57610100808354040283529160200191611f78565b820191905f5260205f20905b815481529060010190602001808311611f5b57829003601f168201915b505050505081525050905092915050565b611f92336107b5565b5f611f9d858561342a565b90505f80611fab8385612eaf565b5f858152600d602090815260409182902089518154928b0151938b015160608c01516001600160601b039283166001600160c01b031990951694909417600160601b9290951691909102939093176001600160c01b0316600160c01b64ffffffffff909416939093026001600160e81b031692909217600160e81b62ffffff92831602178255608089015160018301805462ffffff19169190921617905560a0880151929450909250869160028201906120659082615210565b5060c0820151600382019061207a9082615210565b509050507f35026c70a8e03bb609091c98d27fbb83fcccc64783e4c29df2702bdf4492318187878387333288604051610d119796959493929190615401565b6120c2336107b5565b5f6120cd84846130fc565b90506120d88161314b565b5f818152600e602090815260409182902084518154928601519386015164ffffffffff16600160701b0264ffffffffff60701b196001600160601b0390951662010000026001600160701b031990941661ffff90921691909117929092179290921617815560608301516001820180546001600160a01b039092166001600160a01b03199092169190911790556080830151839190600282019061217c9082615210565b5050505f818152600660205260409020547ffa2f5d128b878e446332990268d00c54cd310ad17e61178e902e1c8eade295539085908590610100900460ff16604080516001600160601b03909416845264ffffffffff909216602084015260ff169082015233606082015232608082015260a00161104c565b6121fe336107b5565b5f612209848461342a565b90505f806122178385612eaf565b915091507f35026c70a8e03bb609091c98d27fbb83fcccc64783e4c29df2702bdf4492318186868387333288604051610a999796959493929190615401565b60408051610200810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e08201839052610100820183905261012082018390526101408201839052610160820183905261018082018390526101a082018390526101c082018190526101e082015290600b906122e3846015612e64565b815260208082019290925260409081015f2081516102008101835281546001600160601b038082168352600160601b8083048216968401969096526001600160c01b0319600160c01b9283900460c090811b821696850196909652600185015480831660608601529687048216608085015291909504841b1660a0820152600282015461ffff8082169483019490945262010000810490931660e082015264010000000083048416610100820152600160801b909204909216610120820152600382015464ffffffffff808216610140840152600160281b82048116610160840152600160501b82048116610180840152600160781b909104166101a08201526004820180549192916101c0840191906123fc9061518f565b80601f01602080910402602001604051908101604052809291908181526020018280546124289061518f565b80156124735780601f1061244a57610100808354040283529160200191612473565b820191905f5260205f20905b81548152906001019060200180831161245657829003601f168201915b50505050508152602001600582018054611ac79061518f565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401611164565b5f80516020615588833981519152546001600160a01b031690565b6124fc336107b5565b5f61250884600c612e64565b90505f806125168385612eaf565b915091508460085f8581526020019081526020015f205f820151815f015f6101000a81548160ff0219169083151502179055506020820151815f0160016101000a81548160ff0219169083151502179055506040820151815f0160026101000a81548160ff0219169083151502179055506060820151815f0160036101000a81548160ff021916908360ff1602179055506080820151815f0160046101000a81548160ff021916908360ff16021790555060a0820151815f0160056101000a8154816001600160601b0302191690836001600160601b0316021790555060c0820151815f0160116101000a8154816001600160601b0302191690836001600160601b0316021790555060e082015181600101908051906020019061263b929190613b9a565b509050507ffd07266138b2f83dc615e7b1aeafaf298f891cfd308d00705cff13693af983f8868286333287604051610a99969594939291906152ca565b60408051610240810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e081018290526102008101829052610220810191909152600c5f61271684602b612e64565b815260208082019290925260409081015f2081516102408101835281546001600160601b038082168352600160601b91829004811695830195909552600183015480861694830194909452928390048416606082015260028201548085166080830152839004841660a0820152600382015480851660c0830152839004841660e08201526004820154808516610100830152839004841661012082015260058201548085166101408301528390048416610160820152600682015480851661018083015283900484166101a082015260078201548085166101c083015283900484166101e08201526008909101548084166102008301529190910490911661022082015292915050565b612829336107b5565b6040516355ee627560e01b81526001600160c01b0319831660048201525f9073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590602401602060405180830381865af4158015612882573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128a69190615383565b90506128b18161314b565b5f818152600a6020908152604091829020845181549286015164ffffffffff16600160601b026001600160881b03199093166001600160601b039091161791909117815590830151839190600182019061290b9082615210565b5050505f818152600660205260409020547f0ae9235dd84177810ab4e630bde66fadcc2f2bdbb249c6e226006ce17bfcde4d908490610100900460ff16604080516001600160c01b0319909316835260ff90911660208301523390820152326060820152608001610ee4565b612980336107b5565b5f61298c836029612e64565b90505f61299a8260ff612eaf565b505f8381526009602090815260409182902086518051908301516001600160601b03908116600160a01b9081026001600160a01b03938416178455848a015180519086015183168202908416176001850155858a01518051908601518316820290841617600285015560608a01518051908601518316820290841617600385015560808a01518051908601518316820290841617600485015560a08a01518051908601518316820290841617600585015560c08a0151805195015190911602921691909117600690910155519091507f599ccdc84510a5701e437f3679bb1fb4d68a6b3100cf84e9d7c2a650e779c4f29061104c9086903390329086906001600160601b039490941684526001600160a01b0392831660208501529116604083015264ffffffffff16606082015260800190565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015612b2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b4f9190615383565b9392505050565b6040805160a0810182525f808252602082018190529181018290526060808201839052608082015290600e90612b8c85856130fc565b815260208082019290925260409081015f20815160a081018352815461ffff811682526201000081046001600160601b031694820194909452600160701b90930464ffffffffff169183019190915260018101546001600160a01b03166060830152600281018054608084019190611f019061518f565b612c0c336107b5565b5f612c1883600c612e64565b9050612c238161314b565b5f818152600860209081526040918290208451815486840151948701516060880151608089015160a08a015160c08b015161ffff1990951695151561ff00191695909517610100981515989098029790971763ffff00001916620100009215159290920263ff000000191691909117630100000060ff928316021770ffffffffffffffffffffffffff000000001916640100000000919096160270ffffffffffffffffffffffff0000000000191694909417600160281b6001600160601b0392831602176bffffffffffffffffffffffff60881b1916600160881b919094160292909217825560e08401518051859392612d24926001850192910190613b9a565b5050505f818152600660205260409020547fd0381ee84b0f7f22e39cf4fab22dc41fa1ceedf30e5b76a7b110a0a861ecfceb908490610100900460ff16610eba565b5f805160206155888339815191525f80612d9e612d816124d8565b8730612d9060045f8a8c615456565b612d999161547d565b6135ff565b9150915081612e5c5763ffffffff811615612e3957825460ff60a01b1916600160a01b178355612dcc6124d8565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612dfb939291906154b3565b5f604051808303815f87803b158015612e12575f80fd5b505af1158015612e24573d5f803e3d5ffd5b5050845460ff60a01b1916855550612e5c9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401611406565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401612b10565b60405163037c8cb160e51b815260ff821660048201525f90819073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015612f03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f279190615368565b15612f4857604051631260077f60e21b815260048101859052602401611406565b50505f82815260066020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930464ffffffffff1692919073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015612fc1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fe59190615368565b15613006576040516310b1404560e21b815260048101869052602401611406565b60ff8085161461303557805461302290839060ff16818761135b565b805461ff00191661010060ff8616021781555b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af415801561307c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130a091906154f2565b815464ffffffffff91909116620100000266ffffffffff00001990911617815560405160ff808616919084169087907f58523054d18a5ba889bc4da20bd431688553af6bbb3d03fae832ad177525a64f905f90a4509250929050565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401612b10565b604051634b00e98f60e11b8152600481018290525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af415801561319b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131bf919061550d565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015613212573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132369190615368565b1561325957604051633d61be7d60e11b815260ff82166004820152602401611406565b5f828152600660205260409081902080549151638d38cd4b60e01b81526201000090920464ffffffffff1660048301529073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af41580156132c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132e89190615368565b1561331257604051637791d47d60e01b81526004810184905260ff83166024820152604401611406565b61331b8261248c565b61333d576040516391eb5e8760e01b815260ff83166004820152602401611406565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613385573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133a991906154f2565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff1990921682176101009184169182021766ffffffffff000019166201000064ffffffffff8716021786556040519293509187907f495f105146f17a6371cfa57092922c4bcee6d6508fd3a6a94f512660c0d45aba905f90a45050505050565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401612b10565b5f8051602061558883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6134de613707565b6134e781613750565b50565b6134f2613707565b6134fa613761565b565b6001600160601b0381165f9081526005602052604090819020549051638d38cd4b60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af415801561356a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358e9190615368565b156135b7576040516314d5804160e01b81526001600160601b0382166004820152602401611406565b6135c0816137b9565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161366d9190615528565b5f60405180830381855afa9150503d805f81146136a5576040519150601f19603f3d011682016040523d82523d5f602084013e6136aa565b606091505b509150915081156136fc5760408151106136dc57808060200190518101906136d2919061553e565b90945092506136fc565b60208151106136fc57808060200190518101906136f99190615368565b93505b505094509492505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166134fa57604051631afcd79f60e31b815260040160405180910390fd5b613758613707565b6134e781613476565b613769613858565b613771613875565b6137796138a9565b6137816138ed565b613789613909565b613791613956565b613799613976565b6137a161398a565b6137a96139c9565b6137b16139d3565b6134fa6139e7565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613800573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061382491906154f2565b6001600160601b03919091165f908152600560205260409020805464ffffffffff191664ffffffffff909216919091179055565b61386560165b6005613a0f565b6134fa60165b60055b60c8613a51565b61387f600b61385e565b61388d600b6005606e613a51565b61389b600b606e6005613a51565b6134fa600b606e60d2613a51565b6138b56015600a613a0f565b6138c46015600a5b6014613a51565b6138d36015600a5b601e613a51565b6138e16015600a6028613a51565b6134fa6015602861386e565b6138fa602b5b603c613a0f565b6134fa602b5b603c60dc613a51565b613915602d6032613a0f565b613921602d60326138bd565b61392f602d60326033613a51565b61393b602d60326138cc565b613947602d603361386e565b6134fa602d60335b6048613a51565b613960602e6138f3565b61396a602e613900565b6134fa602e603c61394f565b613980602c61385e565b6134fa602c61386b565b613994602f61385e565b6139a3602f60055b6046613a51565b6139b1602f60056007613a51565b6139bd602f600761399c565b6134fa602f600561394f565b6134fa600f61385e565b6139dd600c61385e565b6134fa602961385e565b6139f1600e61385e565b6139fb601761385e565b613a05603061385e565b6134fa603161385e565b60ff8281165f908152602081905260409020541615613a3057613a30615573565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f9081526001602090815260408083208685168452825280832085851684529091529020541615613a8957613a89615573565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6040805161012081019091525f60e0820181815261010083019190915281908152602001613aff604080518082019091525f808252602082015290565b8152602001613b1d604080518082019091525f808252602082015290565b8152602001613b3b604080518082019091525f808252602082015290565b8152602001613b59604080518082019091525f808252602082015290565b8152602001613b77604080518082019091525f808252602082015290565b8152602001613b95604080518082019091525f808252602082015290565b905290565b828054828255905f5260205f2090600101600290048101928215613c3f579160200282015f5b83821115613c0a57835183826101000a8154816001600160601b0302191690836001600160601b031602179055509260200192600c01602081600b01049283019260010302613bc0565b8015613c3d5782816101000a8154906001600160601b030219169055600c01602081600b01049283019260010302613c0a565b505b50613c4b929150613c4f565b5090565b5b80821115613c4b575f8155600101613c50565b6001600160601b03811681146134e7575f80fd5b8035613c8281613c63565b919050565b5f60208284031215613c97575f80fd5b8135612b4f81613c63565b634e487b7160e01b5f52604160045260245ffd5b60405161020081016001600160401b0381118282101715613cd957613cd9613ca2565b60405290565b60405160e081016001600160401b0381118282101715613cd957613cd9613ca2565b60405161024081016001600160401b0381118282101715613cd957613cd9613ca2565b60405161010081016001600160401b0381118282101715613cd957613cd9613ca2565b604051601f8201601f191681016001600160401b0381118282101715613d6f57613d6f613ca2565b604052919050565b6001600160c01b0319811681146134e7575f80fd5b8035613c8281613d77565b61ffff811681146134e7575f80fd5b8035613c8281613d97565b64ffffffffff811681146134e7575f80fd5b8035613c8281613db1565b5f82601f830112613ddd575f80fd5b81356001600160401b03811115613df657613df6613ca2565b613e09601f8201601f1916602001613d47565b818152846020838601011115613e1d575f80fd5b816020850160208301375f918101602001919091529392505050565b5f6102008284031215613e4a575f80fd5b613e52613cb6565b9050613e5d82613c77565b8152613e6b60208301613c77565b6020820152613e7c60408301613d8c565b6040820152613e8d60608301613c77565b6060820152613e9e60808301613c77565b6080820152613eaf60a08301613d8c565b60a0820152613ec060c08301613da6565b60c0820152613ed160e08301613da6565b60e0820152613ee36101008301613c77565b610100820152613ef66101208301613c77565b610120820152613f096101408301613dc3565b610140820152613f1c6101608301613dc3565b610160820152613f2f6101808301613dc3565b610180820152613f426101a08301613dc3565b6101a08201526101c08201356001600160401b03811115613f61575f80fd5b613f6d84828501613dce565b6101c0830152506101e08201356001600160401b03811115613f8d575f80fd5b613f9984828501613dce565b6101e08301525092915050565b60ff811681146134e7575f80fd5b8035613c8281613fa6565b5f805f60608486031215613fd1575f80fd5b8335613fdc81613c63565b925060208401356001600160401b03811115613ff6575f80fd5b61400286828701613e39565b925050604084013561401381613fa6565b809150509250925092565b5f6020828403121561402e575f80fd5b5035919050565b5f8151808452602084019350602083015f5b8281101561406e5781516001600160601b0316865260209586019590910190600101614047565b5093949350505050565b602081528151151560208201526020820151151560408201525f60408301516140a5606084018215159052565b50606083015160ff8116608084015250608083015160ff811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e083015161010080840152614108610120840182614035565b949350505050565b6001600160a01b03811681146134e7575f80fd5b5f60a08284031215614134575f80fd5b60405160a081016001600160401b038111828210171561415657614156613ca2565b604052905080823561416781613d97565b8152602083013561417781613c63565b6020820152604083013561418a81613db1565b6040820152606083013561419d81614110565b606082015260808301356001600160401b038111156141ba575f80fd5b6141c685828601613dce565b6080830152505092915050565b5f805f80608085870312156141e6575f80fd5b84356141f181613c63565b9350602085013561420181613db1565b925060408501356001600160401b0381111561421b575f80fd5b61422787828801614124565b925050606085013561423881613fa6565b939692955090935050565b5f60208284031215614253575f80fd5b8135612b4f81613fa6565b5f806040838503121561426f575f80fd5b823561427a81613c63565b9150602083013561428a81613fa6565b809150509250929050565b5f604082840312156142a5575f80fd5b604080519081016001600160401b03811182821017156142c7576142c7613ca2565b60405290508082356142d881614110565b815260208301356142e881613c63565b6020919091015292915050565b5f808284036101e0811215614308575f80fd5b833561431381613c63565b92506101c0601f1982011215614327575f80fd5b50614330613cdf565b61433d8560208601614295565b815261434c8560608601614295565b602082015261435e8560a08601614295565b60408201526143708560e08601614295565b6060820152614383856101208601614295565b6080820152614396856101608601614295565b60a08201526143a9856101a08601614295565b60c0820152809150509250929050565b803562ffffff81168114613c82575f80fd5b5f60e082840312156143db575f80fd5b6143e3613cdf565b90506143ee82613c77565b81526143fc60208301613c77565b602082015261440d60408301613dc3565b604082015261441e606083016143b9565b606082015261442f608083016143b9565b608082015260a08201356001600160401b0381111561444c575f80fd5b61445884828501613dce565b60a08301525060c08201356001600160401b03811115614476575f80fd5b61448284828501613dce565b60c08301525092915050565b5f805f606084860312156144a0575f80fd5b83356144ab81613c63565b925060208401356144bb81613d97565b915060408401356001600160401b038111156144d5575f80fd5b6144e1868287016143cb565b9150509250925092565b5f805f606084860312156144fd575f80fd5b833561450881613c63565b9250602084013561451881613db1565b9150604084013561401381613fa6565b5f8082840361026081121561453b575f80fd5b833561454681613c63565b9250610240601f198201121561455a575f80fd5b50614563613d01565b61456f60208501613c77565b815261457d60408501613c77565b602082015261458e60608501613c77565b604082015261459f60808501613c77565b60608201526145b060a08501613c77565b60808201526145c160c08501613c77565b60a08201526145d260e08501613c77565b60c08201526145e46101008501613c77565b60e08201526145f66101208501613c77565b6101008201526146096101408501613c77565b61012082015261461c6101608501613c77565b61014082015261462f6101808501613c77565b6101608201526146426101a08501613c77565b6101808201526146556101c08501613c77565b6101a08201526146686101e08501613c77565b6101c082015261467b6102008501613c77565b6101e082015261468e6102208501613c77565b6102008201526146a16102408501613c77565b610220820152809150509250929050565b5f805f80608085870312156146c5575f80fd5b84356146d081613fa6565b935060208501356146e081613fa6565b925060408501356146f081613fa6565b9150606085013561423881613fa6565b5f60608284031215614710575f80fd5b604051606081016001600160401b038111828210171561473257614732613ca2565b604052905080823561474381613c63565b8152602083013561475381613db1565b602082015260408301356001600160401b03811115614770575f80fd5b61477c85828601613dce565b6040830152505092915050565b5f805f6060848603121561479b575f80fd5b83356147a681613d77565b925060208401356001600160401b038111156147c0575f80fd5b61400286828701614700565b80516001600160a01b031682526020908101516001600160601b0316910152565b5f6101c0820190506148008284516147cc565b602083015161481260408401826147cc565b50604083015161482560808401826147cc565b50606083015161483860c08401826147cc565b50608083015161484c6101008401826147cc565b5060a08301516148606101408401826147cc565b5060c08301516148746101808401826147cc565b5092915050565b5f6020828403121561488b575f80fd5b8135612b4f81614110565b5f80604083850312156148a7575f80fd5b823561427a81613d77565b5f602082840312156148c2575f80fd5b8135612b4f81613d77565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b03825116602082015264ffffffffff60208301511660408201525f604083015160608084015261410860808401826148cd565b5f806040838503121561494a575f80fd5b823561495581613c63565b915060208301356001600160401b0381111561496f575f80fd5b61497b85828601613e39565b9150509250929050565b5f8060408385031215614996575f80fd5b82356149a181613c63565b9150602083013561428a81613d97565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f60408301516149f1606084018264ffffffffff169052565b50606083015162ffffff8116608084015250608083015162ffffff811660a08401525060a083015160e060c0840152614a2e6101008401826148cd565b905060c0840151601f198483030160e0850152614a4b82826148cd565b95945050505050565b5f805f8060808587031215614a67575f80fd5b8435614a7281613c63565b93506020850135614a8281613d97565b925060408501356001600160401b03811115614a9c575f80fd5b614227878288016143cb565b5f805f60608486031215614aba575f80fd5b8335614ac581613c63565b92506020840135614ad581613db1565b915060408401356001600160401b03811115614aef575f80fd5b6144e186828701614124565b5f805f60608486031215614b0d575f80fd5b8335614b1881613c63565b9250602084013561451881613d97565b60208152614b426020820183516001600160601b03169052565b5f6020830151614b5d60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160601b03811660808401525060808301516001600160601b03811660a08401525060a08301516001600160c01b0319811660c08401525060c083015161ffff811660e08401525060e083015161ffff8116610100840152506101008301516001600160601b038116610120840152506101208301516001600160601b0381166101408401525061014083015164ffffffffff81166101608401525061016083015164ffffffffff81166101808401525061018083015164ffffffffff81166101a0840152506101a083015164ffffffffff81166101c0840152506101c08301516102006101e0840152614c746102208401826148cd565b90506101e0840151601f1984830301610200850152614a4b82826148cd565b80151581146134e7575f80fd5b8035613c8281614c93565b5f82601f830112614cba575f80fd5b81356001600160401b03811115614cd357614cd3613ca2565b8060051b614ce360208201613d47565b91825260208185018101929081019086841115614cfe575f80fd5b6020860192505b83831015614d29578235614d1881613c63565b825260209283019290910190614d05565b9695505050505050565b5f6101008284031215614d44575f80fd5b614d4c613d24565b9050614d5782614ca0565b8152614d6560208301614ca0565b6020820152614d7660408301614ca0565b6040820152614d8760608301613fb4565b6060820152614d9860808301613fb4565b6080820152614da960a08301613c77565b60a0820152614dba60c08301613c77565b60c082015260e08201356001600160401b03811115614dd7575f80fd5b614de384828501614cab565b60e08301525092915050565b5f805f60608486031215614e01575f80fd5b8335614e0c81613c63565b925060208401356001600160401b03811115614e26575f80fd5b61400286828701614d33565b81516001600160601b0316815261024081016020830151614e5e60208401826001600160601b03169052565b506040830151614e7960408401826001600160601b03169052565b506060830151614e9460608401826001600160601b03169052565b506080830151614eaf60808401826001600160601b03169052565b5060a0830151614eca60a08401826001600160601b03169052565b5060c0830151614ee560c08401826001600160601b03169052565b5060e0830151614f0060e08401826001600160601b03169052565b50610100830151614f1d6101008401826001600160601b03169052565b50610120830151614f3a6101208401826001600160601b03169052565b50610140830151614f576101408401826001600160601b03169052565b50610160830151614f746101608401826001600160601b03169052565b50610180830151614f916101808401826001600160601b03169052565b506101a0830151614fae6101a08401826001600160601b03169052565b506101c0830151614fcb6101c08401826001600160601b03169052565b506101e0830151614fe86101e08401826001600160601b03169052565b506102008301516150056102008401826001600160601b03169052565b506102208301516148746102208401826001600160601b03169052565b5f805f60608486031215615034575f80fd5b833561503f81613fa6565b9250602084013561451881613fa6565b5f8060408385031215615060575f80fd5b823561506b81613d77565b915060208301356001600160401b03811115615085575f80fd5b61497b85828601614700565b5f80604083850312156150a2575f80fd5b82356150ad81613fa6565b9150602083013560ff198116811461428a575f80fd5b5f80604083850312156150d4575f80fd5b82356150df81613c63565b9150602083013561428a81613db1565b6020815261ffff82511660208201526001600160601b03602083015116604082015264ffffffffff604083015116606082015260018060a01b0360608301511660808201525f608083015160a08084015261410860c08401826148cd565b5f806040838503121561515e575f80fd5b823561516981613c63565b915060208301356001600160401b03811115615183575f80fd5b61497b85828601614d33565b600181811c908216806151a357607f821691505b6020821081036151c157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561520b57805f5260205f20601f840160051c810160208510156151ec5750805b601f840160051c820191505b818110156119d4575f81556001016151f8565b505050565b81516001600160401b0381111561522957615229613ca2565b61523d81615237845461518f565b846151c7565b6020601f82116001811461526f575f83156152585750848201515b5f19600385901b1c1916600184901b1784556119d4565b5f84815260208120601f198516915b8281101561529e578785015182556020948501946001909201910161527e565b50848210156152bb57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160601b0396909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b6001600160601b0397909716875264ffffffffff958616602088015260ff94851660408801529290931660608601526001600160a01b03908116608086015290911660a08401521660c082015260e00190565b5f60208284031215615378575f80fd5b8151612b4f81614c93565b5f60208284031215615393575f80fd5b5051919050565b6001600160c01b031996909616865260ff94851660208701529290931660408501526001600160a01b039081166060850152909116608083015264ffffffffff1660a082015260c00190565b5f602082840312156153f6575f80fd5b8151612b4f81614110565b6001600160601b0397909716875261ffff95909516602087015260ff93841660408701529190921660608501526001600160a01b0391821660808501521660a083015264ffffffffff1660c082015260e00190565b5f8085851115615464575f80fd5b83861115615470575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015614874576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215615502575f80fd5b8151612b4f81613db1565b5f6020828403121561551d575f80fd5b8151612b4f81613fa6565b5f82518060208501845e5f920191825250919050565b5f806040838503121561554f575f80fd5b825161555a81614c93565b602084015190925063ffffffff8116811461428a575f80fd5b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220a1814cd212a39a1196a6c94ecae5b58a9c7910e607176d08c64a6d31bef9a70f64736f6c634300081a0033",
3249
+ "linkReferences": {
3250
+ "contracts/type/Blocknumber.sol": {
3251
+ "BlocknumberLib": [
3252
+ {
3253
+ "length": 20,
3254
+ "start": 12375
3255
+ },
3256
+ {
3257
+ "length": 20,
3258
+ "start": 12972
3259
+ },
3260
+ {
3261
+ "length": 20,
3262
+ "start": 13152
3263
+ },
3264
+ {
3265
+ "length": 20,
3266
+ "start": 13650
3267
+ },
3268
+ {
3269
+ "length": 20,
3270
+ "start": 14299
3271
+ }
3272
+ ]
3273
+ },
3274
+ "contracts/type/ClaimId.sol": {
3275
+ "ClaimIdLib": [
3276
+ {
3277
+ "length": 20,
3278
+ "start": 13428
3279
+ }
3280
+ ]
3281
+ },
3282
+ "contracts/type/Key32.sol": {
3283
+ "Key32Lib": [
3284
+ {
3285
+ "length": 20,
3286
+ "start": 11026
3287
+ },
3288
+ {
3289
+ "length": 20,
3290
+ "start": 12675
3291
+ }
3292
+ ]
3293
+ },
3294
+ "contracts/type/NftId.sol": {
3295
+ "NftIdLib": [
3296
+ {
3297
+ "length": 20,
3298
+ "start": 11949
3299
+ }
3300
+ ]
3301
+ },
3302
+ "contracts/type/ObjectType.sol": {
3303
+ "ObjectTypeLib": [
3304
+ {
3305
+ "length": 20,
3306
+ "start": 12794
3307
+ }
3308
+ ]
3309
+ },
3310
+ "contracts/type/PayoutId.sol": {
3311
+ "PayoutIdLib": [
3312
+ {
3313
+ "length": 20,
3314
+ "start": 12617
3315
+ }
3316
+ ]
3317
+ },
3318
+ "contracts/type/RiskId.sol": {
3319
+ "RiskIdLib": [
3320
+ {
3321
+ "length": 20,
3322
+ "start": 5379
3323
+ },
3324
+ {
3325
+ "length": 20,
3326
+ "start": 6108
3327
+ },
3328
+ {
3329
+ "length": 20,
3330
+ "start": 6714
3331
+ },
3332
+ {
3333
+ "length": 20,
3334
+ "start": 10346
3335
+ }
3336
+ ]
3337
+ },
3338
+ "contracts/type/StateId.sol": {
3339
+ "StateIdLib": [
3340
+ {
3341
+ "length": 20,
3342
+ "start": 4454
3343
+ },
3344
+ {
3345
+ "length": 20,
3346
+ "start": 5029
3347
+ },
3348
+ {
3349
+ "length": 20,
3350
+ "start": 9430
3351
+ },
3352
+ {
3353
+ "length": 20,
3354
+ "start": 12011
3355
+ },
3356
+ {
3357
+ "length": 20,
3358
+ "start": 12201
3359
+ }
3360
+ ]
3361
+ }
3362
+ },
3363
+ "deployedLinkReferences": {
3364
+ "contracts/type/Blocknumber.sol": {
3365
+ "BlocknumberLib": [
3366
+ {
3367
+ "length": 20,
3368
+ "start": 12343
3369
+ },
3370
+ {
3371
+ "length": 20,
3372
+ "start": 12940
3373
+ },
3374
+ {
3375
+ "length": 20,
3376
+ "start": 13120
3377
+ },
3378
+ {
3379
+ "length": 20,
3380
+ "start": 13618
3381
+ },
3382
+ {
3383
+ "length": 20,
3384
+ "start": 14267
3385
+ }
3386
+ ]
3387
+ },
3388
+ "contracts/type/ClaimId.sol": {
3389
+ "ClaimIdLib": [
3390
+ {
3391
+ "length": 20,
3392
+ "start": 13396
3393
+ }
3394
+ ]
3395
+ },
3396
+ "contracts/type/Key32.sol": {
3397
+ "Key32Lib": [
3398
+ {
3399
+ "length": 20,
3400
+ "start": 10994
3401
+ },
3402
+ {
3403
+ "length": 20,
3404
+ "start": 12643
3405
+ }
3406
+ ]
3407
+ },
3408
+ "contracts/type/NftId.sol": {
3409
+ "NftIdLib": [
3410
+ {
3411
+ "length": 20,
3412
+ "start": 11917
3413
+ }
3414
+ ]
3415
+ },
3416
+ "contracts/type/ObjectType.sol": {
3417
+ "ObjectTypeLib": [
3418
+ {
3419
+ "length": 20,
3420
+ "start": 12762
3421
+ }
3422
+ ]
3423
+ },
3424
+ "contracts/type/PayoutId.sol": {
3425
+ "PayoutIdLib": [
3426
+ {
3427
+ "length": 20,
3428
+ "start": 12585
3429
+ }
3430
+ ]
3431
+ },
3432
+ "contracts/type/RiskId.sol": {
3433
+ "RiskIdLib": [
3434
+ {
3435
+ "length": 20,
3436
+ "start": 5347
3437
+ },
3438
+ {
3439
+ "length": 20,
3440
+ "start": 6076
3441
+ },
3442
+ {
3443
+ "length": 20,
3444
+ "start": 6682
3445
+ },
3446
+ {
3447
+ "length": 20,
3448
+ "start": 10314
3449
+ }
3450
+ ]
3451
+ },
3452
+ "contracts/type/StateId.sol": {
3453
+ "StateIdLib": [
3454
+ {
3455
+ "length": 20,
3456
+ "start": 4422
3457
+ },
3458
+ {
3459
+ "length": 20,
3460
+ "start": 4997
3461
+ },
3462
+ {
3463
+ "length": 20,
3464
+ "start": 9398
3465
+ },
3466
+ {
3467
+ "length": 20,
3468
+ "start": 11979
3469
+ },
3470
+ {
3471
+ "length": 20,
3472
+ "start": 12169
3473
+ }
3474
+ ]
3475
+ }
3476
+ }
3477
+ }