@etherisc/gif-next 0.0.2-ffba655 → 3.0.0-05a0348-829

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 +1735 -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 +1416 -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 +1412 -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 +1140 -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 +845 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1882 -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 +744 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1357 -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 +1399 -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 +1963 -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 +1278 -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 +1391 -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 +2214 -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 +1335 -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 +1086 -0
  82. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  83. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1562 -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 +2500 -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 +1175 -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 +2400 -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 +1437 -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 +872 -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 +687 -0
  150. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  151. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +768 -0
  152. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  153. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +788 -0
  154. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  155. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1048 -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 +1157 -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 +820 -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 +940 -0
  174. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  175. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +517 -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 +1074 -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 +1542 -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 +1110 -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 +931 -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 +1032 -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 +1553 -176
  232. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  233. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2255 -0
  234. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  235. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1112 -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 +2271 -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 +1411 -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 +620 -0
  252. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  253. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1767 -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 +558 -0
  266. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  267. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +545 -0
  268. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  269. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1391 -0
  270. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  271. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +622 -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 +710 -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 +696 -0
  304. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  305. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +457 -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 +2697 -0
  310. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  311. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +947 -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 +3125 -0
  316. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  317. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +465 -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 +1144 -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 +304 -0
  330. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  331. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +674 -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 +393 -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 +368 -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 +567 -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 +662 -0
  398. package/contracts/authorization/AccessAdminLib.sol +695 -0
  399. package/contracts/authorization/AccessManagerCloneable.sol +144 -0
  400. package/contracts/authorization/Authorization.sol +190 -0
  401. package/contracts/authorization/IAccess.sol +66 -0
  402. package/contracts/authorization/IAccessAdmin.sol +143 -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 +453 -0
  410. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  411. package/contracts/distribution/IDistributionComponent.sol +43 -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 +642 -0
  447. package/contracts/instance/InstanceService.sol +522 -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 +673 -117
  510. package/contracts/registry/RegistryAdmin.sol +179 -0
  511. package/contracts/registry/RegistryAuthorization.sol +335 -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 +725 -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 +54 -0
  526. package/contracts/shared/IComponentService.sol +133 -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 +118 -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,1845 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PoolService",
4
+ "sourceName": "contracts/pool/PoolService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "authority",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorAuthorityInvalid",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "nftId",
60
+ "type": "uint96"
61
+ }
62
+ ],
63
+ "name": "ErrorNftOwnableAlreadyLinked",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "contractAddress",
71
+ "type": "address"
72
+ }
73
+ ],
74
+ "name": "ErrorNftOwnableContractNotRegistered",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [],
79
+ "name": "ErrorNftOwnableInitialOwnerZero",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [
84
+ {
85
+ "internalType": "NftId",
86
+ "name": "nftId",
87
+ "type": "uint96"
88
+ },
89
+ {
90
+ "internalType": "ObjectType",
91
+ "name": "expectedObjectType",
92
+ "type": "uint8"
93
+ }
94
+ ],
95
+ "name": "ErrorNftOwnableInvalidType",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [
100
+ {
101
+ "internalType": "address",
102
+ "name": "account",
103
+ "type": "address"
104
+ }
105
+ ],
106
+ "name": "ErrorNftOwnableNotOwner",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [
111
+ {
112
+ "internalType": "address",
113
+ "name": "registryAddress",
114
+ "type": "address"
115
+ }
116
+ ],
117
+ "name": "ErrorNotRegistry",
118
+ "type": "error"
119
+ },
120
+ {
121
+ "inputs": [
122
+ {
123
+ "internalType": "NftId",
124
+ "name": "poolNftId",
125
+ "type": "uint96"
126
+ }
127
+ ],
128
+ "name": "ErrorPoolServiceBundleOwnerRoleAlreadySet",
129
+ "type": "error"
130
+ },
131
+ {
132
+ "inputs": [
133
+ {
134
+ "internalType": "NftId",
135
+ "name": "bundleNftId",
136
+ "type": "uint96"
137
+ },
138
+ {
139
+ "internalType": "NftId",
140
+ "name": "poolNftId",
141
+ "type": "uint96"
142
+ }
143
+ ],
144
+ "name": "ErrorPoolServiceBundlePoolMismatch",
145
+ "type": "error"
146
+ },
147
+ {
148
+ "inputs": [
149
+ {
150
+ "internalType": "Amount",
151
+ "name": "amount",
152
+ "type": "uint96"
153
+ },
154
+ {
155
+ "internalType": "Amount",
156
+ "name": "limit",
157
+ "type": "uint96"
158
+ }
159
+ ],
160
+ "name": "ErrorPoolServiceFeesWithdrawAmountExceedsLimit",
161
+ "type": "error"
162
+ },
163
+ {
164
+ "inputs": [
165
+ {
166
+ "internalType": "Amount",
167
+ "name": "expectedAmount",
168
+ "type": "uint96"
169
+ },
170
+ {
171
+ "internalType": "Amount",
172
+ "name": "actualAmount",
173
+ "type": "uint96"
174
+ }
175
+ ],
176
+ "name": "ErrorPoolServiceInvalidTransferAmount",
177
+ "type": "error"
178
+ },
179
+ {
180
+ "inputs": [
181
+ {
182
+ "internalType": "NftId",
183
+ "name": "poolNftId",
184
+ "type": "uint96"
185
+ },
186
+ {
187
+ "internalType": "Amount",
188
+ "name": "maxBalanceAmount",
189
+ "type": "uint96"
190
+ },
191
+ {
192
+ "internalType": "Amount",
193
+ "name": "currentBalanceAmount",
194
+ "type": "uint96"
195
+ },
196
+ {
197
+ "internalType": "Amount",
198
+ "name": "transferAmount",
199
+ "type": "uint96"
200
+ }
201
+ ],
202
+ "name": "ErrorPoolServiceMaxBalanceAmountExceeded",
203
+ "type": "error"
204
+ },
205
+ {
206
+ "inputs": [
207
+ {
208
+ "internalType": "NftId",
209
+ "name": "policyNftId",
210
+ "type": "uint96"
211
+ },
212
+ {
213
+ "internalType": "NftId",
214
+ "name": "productNftId",
215
+ "type": "uint96"
216
+ },
217
+ {
218
+ "internalType": "NftId",
219
+ "name": "expectedProductNftId",
220
+ "type": "uint96"
221
+ }
222
+ ],
223
+ "name": "ErrorPoolServicePolicyPoolMismatch",
224
+ "type": "error"
225
+ },
226
+ {
227
+ "inputs": [
228
+ {
229
+ "internalType": "NftId",
230
+ "name": "poolNftId",
231
+ "type": "uint96"
232
+ }
233
+ ],
234
+ "name": "ErrorPoolServicePoolNotExternallyManaged",
235
+ "type": "error"
236
+ },
237
+ {
238
+ "inputs": [],
239
+ "name": "ErrorRegisterableNotActive",
240
+ "type": "error"
241
+ },
242
+ {
243
+ "inputs": [],
244
+ "name": "ErrorVersionableInitializeNotImplemented",
245
+ "type": "error"
246
+ },
247
+ {
248
+ "inputs": [],
249
+ "name": "ErrorVersionableUpgradeNotImplemented",
250
+ "type": "error"
251
+ },
252
+ {
253
+ "inputs": [],
254
+ "name": "InvalidInitialization",
255
+ "type": "error"
256
+ },
257
+ {
258
+ "inputs": [],
259
+ "name": "NotInitializing",
260
+ "type": "error"
261
+ },
262
+ {
263
+ "inputs": [],
264
+ "name": "ReentrancyGuardReentrantCall",
265
+ "type": "error"
266
+ },
267
+ {
268
+ "anonymous": false,
269
+ "inputs": [
270
+ {
271
+ "indexed": false,
272
+ "internalType": "address",
273
+ "name": "authority",
274
+ "type": "address"
275
+ }
276
+ ],
277
+ "name": "AuthorityUpdated",
278
+ "type": "event"
279
+ },
280
+ {
281
+ "anonymous": false,
282
+ "inputs": [
283
+ {
284
+ "indexed": false,
285
+ "internalType": "uint64",
286
+ "name": "version",
287
+ "type": "uint64"
288
+ }
289
+ ],
290
+ "name": "Initialized",
291
+ "type": "event"
292
+ },
293
+ {
294
+ "anonymous": false,
295
+ "inputs": [
296
+ {
297
+ "indexed": false,
298
+ "internalType": "NftId",
299
+ "name": "nftId",
300
+ "type": "uint96"
301
+ },
302
+ {
303
+ "indexed": false,
304
+ "internalType": "address",
305
+ "name": "owner",
306
+ "type": "address"
307
+ }
308
+ ],
309
+ "name": "LogNftOwnableNftLinkedToAddress",
310
+ "type": "event"
311
+ },
312
+ {
313
+ "anonymous": false,
314
+ "inputs": [
315
+ {
316
+ "indexed": true,
317
+ "internalType": "NftId",
318
+ "name": "poolNftId",
319
+ "type": "uint96"
320
+ },
321
+ {
322
+ "indexed": true,
323
+ "internalType": "NftId",
324
+ "name": "bundleNftId",
325
+ "type": "uint96"
326
+ },
327
+ {
328
+ "indexed": true,
329
+ "internalType": "NftId",
330
+ "name": "applicationNftId",
331
+ "type": "uint96"
332
+ },
333
+ {
334
+ "indexed": false,
335
+ "internalType": "Amount",
336
+ "name": "totalCollateralAmount",
337
+ "type": "uint96"
338
+ }
339
+ ],
340
+ "name": "LogPoolServiceApplicationVerified",
341
+ "type": "event"
342
+ },
343
+ {
344
+ "anonymous": false,
345
+ "inputs": [
346
+ {
347
+ "indexed": true,
348
+ "internalType": "NftId",
349
+ "name": "instanceNftId",
350
+ "type": "uint96"
351
+ },
352
+ {
353
+ "indexed": true,
354
+ "internalType": "NftId",
355
+ "name": "poolNftId",
356
+ "type": "uint96"
357
+ },
358
+ {
359
+ "indexed": true,
360
+ "internalType": "NftId",
361
+ "name": "bundleNftId",
362
+ "type": "uint96"
363
+ },
364
+ {
365
+ "indexed": false,
366
+ "internalType": "Amount",
367
+ "name": "balanceAmount",
368
+ "type": "uint96"
369
+ },
370
+ {
371
+ "indexed": false,
372
+ "internalType": "Amount",
373
+ "name": "feeAmount",
374
+ "type": "uint96"
375
+ }
376
+ ],
377
+ "name": "LogPoolServiceBundleClosed",
378
+ "type": "event"
379
+ },
380
+ {
381
+ "anonymous": false,
382
+ "inputs": [
383
+ {
384
+ "indexed": true,
385
+ "internalType": "NftId",
386
+ "name": "instanceNftId",
387
+ "type": "uint96"
388
+ },
389
+ {
390
+ "indexed": true,
391
+ "internalType": "NftId",
392
+ "name": "poolNftId",
393
+ "type": "uint96"
394
+ },
395
+ {
396
+ "indexed": true,
397
+ "internalType": "NftId",
398
+ "name": "bundleNftId",
399
+ "type": "uint96"
400
+ }
401
+ ],
402
+ "name": "LogPoolServiceBundleCreated",
403
+ "type": "event"
404
+ },
405
+ {
406
+ "anonymous": false,
407
+ "inputs": [
408
+ {
409
+ "indexed": true,
410
+ "internalType": "NftId",
411
+ "name": "instanceNftId",
412
+ "type": "uint96"
413
+ },
414
+ {
415
+ "indexed": true,
416
+ "internalType": "NftId",
417
+ "name": "poolNftId",
418
+ "type": "uint96"
419
+ },
420
+ {
421
+ "indexed": true,
422
+ "internalType": "NftId",
423
+ "name": "bundleNftId",
424
+ "type": "uint96"
425
+ },
426
+ {
427
+ "indexed": false,
428
+ "internalType": "Amount",
429
+ "name": "amount",
430
+ "type": "uint96"
431
+ },
432
+ {
433
+ "indexed": false,
434
+ "internalType": "Amount",
435
+ "name": "netAmount",
436
+ "type": "uint96"
437
+ }
438
+ ],
439
+ "name": "LogPoolServiceBundleStaked",
440
+ "type": "event"
441
+ },
442
+ {
443
+ "anonymous": false,
444
+ "inputs": [
445
+ {
446
+ "indexed": true,
447
+ "internalType": "NftId",
448
+ "name": "instanceNftId",
449
+ "type": "uint96"
450
+ },
451
+ {
452
+ "indexed": true,
453
+ "internalType": "NftId",
454
+ "name": "poolNftId",
455
+ "type": "uint96"
456
+ },
457
+ {
458
+ "indexed": true,
459
+ "internalType": "NftId",
460
+ "name": "bundleNftId",
461
+ "type": "uint96"
462
+ },
463
+ {
464
+ "indexed": false,
465
+ "internalType": "Amount",
466
+ "name": "amount",
467
+ "type": "uint96"
468
+ },
469
+ {
470
+ "indexed": false,
471
+ "internalType": "Amount",
472
+ "name": "netAmount",
473
+ "type": "uint96"
474
+ }
475
+ ],
476
+ "name": "LogPoolServiceBundleUnstaked",
477
+ "type": "event"
478
+ },
479
+ {
480
+ "anonymous": false,
481
+ "inputs": [
482
+ {
483
+ "indexed": true,
484
+ "internalType": "NftId",
485
+ "name": "poolNftId",
486
+ "type": "uint96"
487
+ },
488
+ {
489
+ "indexed": true,
490
+ "internalType": "NftId",
491
+ "name": "bundleNftId",
492
+ "type": "uint96"
493
+ },
494
+ {
495
+ "indexed": true,
496
+ "internalType": "NftId",
497
+ "name": "applicationNftId",
498
+ "type": "uint96"
499
+ },
500
+ {
501
+ "indexed": false,
502
+ "internalType": "Amount",
503
+ "name": "totalCollateralAmount",
504
+ "type": "uint96"
505
+ },
506
+ {
507
+ "indexed": false,
508
+ "internalType": "Amount",
509
+ "name": "lockedCollateralAmount",
510
+ "type": "uint96"
511
+ }
512
+ ],
513
+ "name": "LogPoolServiceCollateralLocked",
514
+ "type": "event"
515
+ },
516
+ {
517
+ "anonymous": false,
518
+ "inputs": [
519
+ {
520
+ "indexed": true,
521
+ "internalType": "NftId",
522
+ "name": "bundleNftId",
523
+ "type": "uint96"
524
+ },
525
+ {
526
+ "indexed": true,
527
+ "internalType": "NftId",
528
+ "name": "policyNftId",
529
+ "type": "uint96"
530
+ },
531
+ {
532
+ "indexed": true,
533
+ "internalType": "Amount",
534
+ "name": "releasedCollateralAmount",
535
+ "type": "uint96"
536
+ }
537
+ ],
538
+ "name": "LogPoolServiceCollateralReleased",
539
+ "type": "event"
540
+ },
541
+ {
542
+ "anonymous": false,
543
+ "inputs": [
544
+ {
545
+ "indexed": true,
546
+ "internalType": "NftId",
547
+ "name": "bundleNftId",
548
+ "type": "uint96"
549
+ },
550
+ {
551
+ "indexed": true,
552
+ "internalType": "address",
553
+ "name": "recipient",
554
+ "type": "address"
555
+ },
556
+ {
557
+ "indexed": true,
558
+ "internalType": "Amount",
559
+ "name": "amount",
560
+ "type": "uint96"
561
+ },
562
+ {
563
+ "indexed": false,
564
+ "internalType": "address",
565
+ "name": "tokenAddress",
566
+ "type": "address"
567
+ }
568
+ ],
569
+ "name": "LogPoolServiceFeesWithdrawn",
570
+ "type": "event"
571
+ },
572
+ {
573
+ "anonymous": false,
574
+ "inputs": [
575
+ {
576
+ "indexed": true,
577
+ "internalType": "NftId",
578
+ "name": "poolNftId",
579
+ "type": "uint96"
580
+ },
581
+ {
582
+ "indexed": true,
583
+ "internalType": "Amount",
584
+ "name": "previousMaxCapitalAmount",
585
+ "type": "uint96"
586
+ },
587
+ {
588
+ "indexed": true,
589
+ "internalType": "Amount",
590
+ "name": "currentMaxCapitalAmount",
591
+ "type": "uint96"
592
+ }
593
+ ],
594
+ "name": "LogPoolServiceMaxBalanceAmountUpdated",
595
+ "type": "event"
596
+ },
597
+ {
598
+ "anonymous": false,
599
+ "inputs": [
600
+ {
601
+ "indexed": true,
602
+ "internalType": "NftId",
603
+ "name": "poolNftId",
604
+ "type": "uint96"
605
+ },
606
+ {
607
+ "indexed": true,
608
+ "internalType": "NftId",
609
+ "name": "bundleNftId",
610
+ "type": "uint96"
611
+ },
612
+ {
613
+ "indexed": true,
614
+ "internalType": "NftId",
615
+ "name": "policyNftId",
616
+ "type": "uint96"
617
+ },
618
+ {
619
+ "indexed": false,
620
+ "internalType": "PayoutId",
621
+ "name": "payoutId",
622
+ "type": "uint40"
623
+ },
624
+ {
625
+ "indexed": false,
626
+ "internalType": "Amount",
627
+ "name": "netPayoutAmount",
628
+ "type": "uint96"
629
+ },
630
+ {
631
+ "indexed": false,
632
+ "internalType": "Amount",
633
+ "name": "processingFeeAmount",
634
+ "type": "uint96"
635
+ },
636
+ {
637
+ "indexed": false,
638
+ "internalType": "address",
639
+ "name": "payoutBeneficiary",
640
+ "type": "address"
641
+ }
642
+ ],
643
+ "name": "LogPoolServicePayoutProcessed",
644
+ "type": "event"
645
+ },
646
+ {
647
+ "anonymous": false,
648
+ "inputs": [
649
+ {
650
+ "indexed": true,
651
+ "internalType": "NftId",
652
+ "name": "policyNftId",
653
+ "type": "uint96"
654
+ },
655
+ {
656
+ "indexed": true,
657
+ "internalType": "ClaimId",
658
+ "name": "claimId",
659
+ "type": "uint16"
660
+ },
661
+ {
662
+ "indexed": true,
663
+ "internalType": "Amount",
664
+ "name": "availableAmount",
665
+ "type": "uint96"
666
+ }
667
+ ],
668
+ "name": "LogPoolServiceProcessFundedClaim",
669
+ "type": "event"
670
+ },
671
+ {
672
+ "anonymous": false,
673
+ "inputs": [
674
+ {
675
+ "indexed": true,
676
+ "internalType": "NftId",
677
+ "name": "poolNftId",
678
+ "type": "uint96"
679
+ },
680
+ {
681
+ "indexed": true,
682
+ "internalType": "NftId",
683
+ "name": "bundleNftId",
684
+ "type": "uint96"
685
+ },
686
+ {
687
+ "indexed": true,
688
+ "internalType": "Amount",
689
+ "name": "bundleNetAmount",
690
+ "type": "uint96"
691
+ },
692
+ {
693
+ "indexed": false,
694
+ "internalType": "Amount",
695
+ "name": "bundleFeeAmount",
696
+ "type": "uint96"
697
+ },
698
+ {
699
+ "indexed": false,
700
+ "internalType": "Amount",
701
+ "name": "poolFeeAmount",
702
+ "type": "uint96"
703
+ }
704
+ ],
705
+ "name": "LogPoolServiceSaleProcessed",
706
+ "type": "event"
707
+ },
708
+ {
709
+ "anonymous": false,
710
+ "inputs": [
711
+ {
712
+ "indexed": true,
713
+ "internalType": "NftId",
714
+ "name": "poolNftId",
715
+ "type": "uint96"
716
+ },
717
+ {
718
+ "indexed": true,
719
+ "internalType": "address",
720
+ "name": "poolOwner",
721
+ "type": "address"
722
+ },
723
+ {
724
+ "indexed": true,
725
+ "internalType": "Amount",
726
+ "name": "amount",
727
+ "type": "uint96"
728
+ }
729
+ ],
730
+ "name": "LogPoolServiceWalletDefunded",
731
+ "type": "event"
732
+ },
733
+ {
734
+ "anonymous": false,
735
+ "inputs": [
736
+ {
737
+ "indexed": true,
738
+ "internalType": "NftId",
739
+ "name": "poolNftId",
740
+ "type": "uint96"
741
+ },
742
+ {
743
+ "indexed": true,
744
+ "internalType": "address",
745
+ "name": "poolOwner",
746
+ "type": "address"
747
+ },
748
+ {
749
+ "indexed": true,
750
+ "internalType": "Amount",
751
+ "name": "amount",
752
+ "type": "uint96"
753
+ }
754
+ ],
755
+ "name": "LogPoolServiceWalletFunded",
756
+ "type": "event"
757
+ },
758
+ {
759
+ "inputs": [],
760
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
761
+ "outputs": [
762
+ {
763
+ "internalType": "bytes32",
764
+ "name": "",
765
+ "type": "bytes32"
766
+ }
767
+ ],
768
+ "stateMutability": "view",
769
+ "type": "function"
770
+ },
771
+ {
772
+ "inputs": [],
773
+ "name": "REGISTERABLE_LOCATION_V1",
774
+ "outputs": [
775
+ {
776
+ "internalType": "bytes32",
777
+ "name": "",
778
+ "type": "bytes32"
779
+ }
780
+ ],
781
+ "stateMutability": "view",
782
+ "type": "function"
783
+ },
784
+ {
785
+ "inputs": [],
786
+ "name": "authority",
787
+ "outputs": [
788
+ {
789
+ "internalType": "address",
790
+ "name": "",
791
+ "type": "address"
792
+ }
793
+ ],
794
+ "stateMutability": "view",
795
+ "type": "function"
796
+ },
797
+ {
798
+ "inputs": [
799
+ {
800
+ "internalType": "NftId",
801
+ "name": "bundleNftId",
802
+ "type": "uint96"
803
+ }
804
+ ],
805
+ "name": "closeBundle",
806
+ "outputs": [],
807
+ "stateMutability": "nonpayable",
808
+ "type": "function"
809
+ },
810
+ {
811
+ "inputs": [
812
+ {
813
+ "internalType": "Amount",
814
+ "name": "amount",
815
+ "type": "uint96"
816
+ }
817
+ ],
818
+ "name": "defundPoolWallet",
819
+ "outputs": [],
820
+ "stateMutability": "nonpayable",
821
+ "type": "function"
822
+ },
823
+ {
824
+ "inputs": [
825
+ {
826
+ "internalType": "Amount",
827
+ "name": "amount",
828
+ "type": "uint96"
829
+ }
830
+ ],
831
+ "name": "fundPoolWallet",
832
+ "outputs": [],
833
+ "stateMutability": "nonpayable",
834
+ "type": "function"
835
+ },
836
+ {
837
+ "inputs": [],
838
+ "name": "getDomain",
839
+ "outputs": [
840
+ {
841
+ "internalType": "ObjectType",
842
+ "name": "serviceDomain",
843
+ "type": "uint8"
844
+ }
845
+ ],
846
+ "stateMutability": "pure",
847
+ "type": "function"
848
+ },
849
+ {
850
+ "inputs": [],
851
+ "name": "getInitialInfo",
852
+ "outputs": [
853
+ {
854
+ "components": [
855
+ {
856
+ "internalType": "NftId",
857
+ "name": "nftId",
858
+ "type": "uint96"
859
+ },
860
+ {
861
+ "internalType": "NftId",
862
+ "name": "parentNftId",
863
+ "type": "uint96"
864
+ },
865
+ {
866
+ "internalType": "ObjectType",
867
+ "name": "objectType",
868
+ "type": "uint8"
869
+ },
870
+ {
871
+ "internalType": "bool",
872
+ "name": "isInterceptor",
873
+ "type": "bool"
874
+ },
875
+ {
876
+ "internalType": "address",
877
+ "name": "objectAddress",
878
+ "type": "address"
879
+ },
880
+ {
881
+ "internalType": "address",
882
+ "name": "initialOwner",
883
+ "type": "address"
884
+ },
885
+ {
886
+ "internalType": "bytes",
887
+ "name": "data",
888
+ "type": "bytes"
889
+ }
890
+ ],
891
+ "internalType": "struct IRegistry.ObjectInfo",
892
+ "name": "info",
893
+ "type": "tuple"
894
+ }
895
+ ],
896
+ "stateMutability": "view",
897
+ "type": "function"
898
+ },
899
+ {
900
+ "inputs": [],
901
+ "name": "getNftId",
902
+ "outputs": [
903
+ {
904
+ "internalType": "NftId",
905
+ "name": "",
906
+ "type": "uint96"
907
+ }
908
+ ],
909
+ "stateMutability": "view",
910
+ "type": "function"
911
+ },
912
+ {
913
+ "inputs": [],
914
+ "name": "getOwner",
915
+ "outputs": [
916
+ {
917
+ "internalType": "address",
918
+ "name": "",
919
+ "type": "address"
920
+ }
921
+ ],
922
+ "stateMutability": "view",
923
+ "type": "function"
924
+ },
925
+ {
926
+ "inputs": [],
927
+ "name": "getRegistry",
928
+ "outputs": [
929
+ {
930
+ "internalType": "contract IRegistry",
931
+ "name": "",
932
+ "type": "address"
933
+ }
934
+ ],
935
+ "stateMutability": "view",
936
+ "type": "function"
937
+ },
938
+ {
939
+ "inputs": [],
940
+ "name": "getRelease",
941
+ "outputs": [
942
+ {
943
+ "internalType": "VersionPart",
944
+ "name": "release",
945
+ "type": "uint8"
946
+ }
947
+ ],
948
+ "stateMutability": "view",
949
+ "type": "function"
950
+ },
951
+ {
952
+ "inputs": [],
953
+ "name": "getRoleId",
954
+ "outputs": [
955
+ {
956
+ "internalType": "RoleId",
957
+ "name": "serviceRoleId",
958
+ "type": "uint64"
959
+ }
960
+ ],
961
+ "stateMutability": "view",
962
+ "type": "function"
963
+ },
964
+ {
965
+ "inputs": [],
966
+ "name": "getVersion",
967
+ "outputs": [
968
+ {
969
+ "internalType": "Version",
970
+ "name": "",
971
+ "type": "uint24"
972
+ }
973
+ ],
974
+ "stateMutability": "pure",
975
+ "type": "function"
976
+ },
977
+ {
978
+ "inputs": [
979
+ {
980
+ "internalType": "address",
981
+ "name": "activatedBy",
982
+ "type": "address"
983
+ },
984
+ {
985
+ "internalType": "bytes",
986
+ "name": "data",
987
+ "type": "bytes"
988
+ }
989
+ ],
990
+ "name": "initializeVersionable",
991
+ "outputs": [],
992
+ "stateMutability": "nonpayable",
993
+ "type": "function"
994
+ },
995
+ {
996
+ "inputs": [],
997
+ "name": "isActive",
998
+ "outputs": [
999
+ {
1000
+ "internalType": "bool",
1001
+ "name": "active",
1002
+ "type": "bool"
1003
+ }
1004
+ ],
1005
+ "stateMutability": "view",
1006
+ "type": "function"
1007
+ },
1008
+ {
1009
+ "inputs": [],
1010
+ "name": "isConsumingScheduledOp",
1011
+ "outputs": [
1012
+ {
1013
+ "internalType": "bytes4",
1014
+ "name": "",
1015
+ "type": "bytes4"
1016
+ }
1017
+ ],
1018
+ "stateMutability": "view",
1019
+ "type": "function"
1020
+ },
1021
+ {
1022
+ "inputs": [],
1023
+ "name": "linkToRegisteredNftId",
1024
+ "outputs": [
1025
+ {
1026
+ "internalType": "NftId",
1027
+ "name": "nftId",
1028
+ "type": "uint96"
1029
+ }
1030
+ ],
1031
+ "stateMutability": "nonpayable",
1032
+ "type": "function"
1033
+ },
1034
+ {
1035
+ "inputs": [
1036
+ {
1037
+ "internalType": "contract IInstance",
1038
+ "name": "instance",
1039
+ "type": "address"
1040
+ },
1041
+ {
1042
+ "internalType": "address",
1043
+ "name": "token",
1044
+ "type": "address"
1045
+ },
1046
+ {
1047
+ "internalType": "NftId",
1048
+ "name": "productNftId",
1049
+ "type": "uint96"
1050
+ },
1051
+ {
1052
+ "internalType": "NftId",
1053
+ "name": "applicationNftId",
1054
+ "type": "uint96"
1055
+ },
1056
+ {
1057
+ "internalType": "NftId",
1058
+ "name": "bundleNftId",
1059
+ "type": "uint96"
1060
+ },
1061
+ {
1062
+ "internalType": "Amount",
1063
+ "name": "sumInsuredAmount",
1064
+ "type": "uint96"
1065
+ }
1066
+ ],
1067
+ "name": "lockCollateral",
1068
+ "outputs": [
1069
+ {
1070
+ "internalType": "Amount",
1071
+ "name": "totalCollateralAmount",
1072
+ "type": "uint96"
1073
+ },
1074
+ {
1075
+ "internalType": "Amount",
1076
+ "name": "localCollateralAmount",
1077
+ "type": "uint96"
1078
+ }
1079
+ ],
1080
+ "stateMutability": "nonpayable",
1081
+ "type": "function"
1082
+ },
1083
+ {
1084
+ "inputs": [
1085
+ {
1086
+ "internalType": "NftId",
1087
+ "name": "policyNftId",
1088
+ "type": "uint96"
1089
+ },
1090
+ {
1091
+ "internalType": "ClaimId",
1092
+ "name": "claimId",
1093
+ "type": "uint16"
1094
+ },
1095
+ {
1096
+ "internalType": "Amount",
1097
+ "name": "availableAmount",
1098
+ "type": "uint96"
1099
+ }
1100
+ ],
1101
+ "name": "processFundedClaim",
1102
+ "outputs": [],
1103
+ "stateMutability": "nonpayable",
1104
+ "type": "function"
1105
+ },
1106
+ {
1107
+ "inputs": [
1108
+ {
1109
+ "internalType": "contract InstanceReader",
1110
+ "name": "instanceReader",
1111
+ "type": "address"
1112
+ },
1113
+ {
1114
+ "internalType": "contract InstanceStore",
1115
+ "name": "instanceStore",
1116
+ "type": "address"
1117
+ },
1118
+ {
1119
+ "internalType": "NftId",
1120
+ "name": "productNftId",
1121
+ "type": "uint96"
1122
+ },
1123
+ {
1124
+ "internalType": "NftId",
1125
+ "name": "policyNftId",
1126
+ "type": "uint96"
1127
+ },
1128
+ {
1129
+ "internalType": "NftId",
1130
+ "name": "bundleNftId",
1131
+ "type": "uint96"
1132
+ },
1133
+ {
1134
+ "internalType": "PayoutId",
1135
+ "name": "payoutId",
1136
+ "type": "uint40"
1137
+ },
1138
+ {
1139
+ "internalType": "Amount",
1140
+ "name": "payoutAmount",
1141
+ "type": "uint96"
1142
+ },
1143
+ {
1144
+ "internalType": "address",
1145
+ "name": "payoutBeneficiary",
1146
+ "type": "address"
1147
+ }
1148
+ ],
1149
+ "name": "processPayout",
1150
+ "outputs": [
1151
+ {
1152
+ "internalType": "Amount",
1153
+ "name": "netPayoutAmount",
1154
+ "type": "uint96"
1155
+ },
1156
+ {
1157
+ "internalType": "Amount",
1158
+ "name": "processingFeeAmount",
1159
+ "type": "uint96"
1160
+ }
1161
+ ],
1162
+ "stateMutability": "nonpayable",
1163
+ "type": "function"
1164
+ },
1165
+ {
1166
+ "inputs": [
1167
+ {
1168
+ "internalType": "NftId",
1169
+ "name": "bundleNftId",
1170
+ "type": "uint96"
1171
+ },
1172
+ {
1173
+ "components": [
1174
+ {
1175
+ "internalType": "Amount",
1176
+ "name": "productFeeAmount",
1177
+ "type": "uint96"
1178
+ },
1179
+ {
1180
+ "internalType": "Amount",
1181
+ "name": "distributionFeeAndCommissionAmount",
1182
+ "type": "uint96"
1183
+ },
1184
+ {
1185
+ "internalType": "Amount",
1186
+ "name": "poolPremiumAndFeeAmount",
1187
+ "type": "uint96"
1188
+ },
1189
+ {
1190
+ "internalType": "Amount",
1191
+ "name": "netPremiumAmount",
1192
+ "type": "uint96"
1193
+ },
1194
+ {
1195
+ "internalType": "Amount",
1196
+ "name": "fullPremiumAmount",
1197
+ "type": "uint96"
1198
+ },
1199
+ {
1200
+ "internalType": "Amount",
1201
+ "name": "premiumAmount",
1202
+ "type": "uint96"
1203
+ },
1204
+ {
1205
+ "internalType": "Amount",
1206
+ "name": "productFeeFixAmount",
1207
+ "type": "uint96"
1208
+ },
1209
+ {
1210
+ "internalType": "Amount",
1211
+ "name": "poolFeeFixAmount",
1212
+ "type": "uint96"
1213
+ },
1214
+ {
1215
+ "internalType": "Amount",
1216
+ "name": "bundleFeeFixAmount",
1217
+ "type": "uint96"
1218
+ },
1219
+ {
1220
+ "internalType": "Amount",
1221
+ "name": "distributionFeeFixAmount",
1222
+ "type": "uint96"
1223
+ },
1224
+ {
1225
+ "internalType": "Amount",
1226
+ "name": "productFeeVarAmount",
1227
+ "type": "uint96"
1228
+ },
1229
+ {
1230
+ "internalType": "Amount",
1231
+ "name": "poolFeeVarAmount",
1232
+ "type": "uint96"
1233
+ },
1234
+ {
1235
+ "internalType": "Amount",
1236
+ "name": "bundleFeeVarAmount",
1237
+ "type": "uint96"
1238
+ },
1239
+ {
1240
+ "internalType": "Amount",
1241
+ "name": "distributionFeeVarAmount",
1242
+ "type": "uint96"
1243
+ },
1244
+ {
1245
+ "internalType": "Amount",
1246
+ "name": "distributionOwnerFeeFixAmount",
1247
+ "type": "uint96"
1248
+ },
1249
+ {
1250
+ "internalType": "Amount",
1251
+ "name": "distributionOwnerFeeVarAmount",
1252
+ "type": "uint96"
1253
+ },
1254
+ {
1255
+ "internalType": "Amount",
1256
+ "name": "commissionAmount",
1257
+ "type": "uint96"
1258
+ },
1259
+ {
1260
+ "internalType": "Amount",
1261
+ "name": "discountAmount",
1262
+ "type": "uint96"
1263
+ }
1264
+ ],
1265
+ "internalType": "struct IPolicy.PremiumInfo",
1266
+ "name": "premium",
1267
+ "type": "tuple"
1268
+ }
1269
+ ],
1270
+ "name": "processSale",
1271
+ "outputs": [],
1272
+ "stateMutability": "nonpayable",
1273
+ "type": "function"
1274
+ },
1275
+ {
1276
+ "inputs": [
1277
+ {
1278
+ "internalType": "contract IInstance",
1279
+ "name": "instance",
1280
+ "type": "address"
1281
+ },
1282
+ {
1283
+ "internalType": "NftId",
1284
+ "name": "policyNftId",
1285
+ "type": "uint96"
1286
+ },
1287
+ {
1288
+ "components": [
1289
+ {
1290
+ "internalType": "NftId",
1291
+ "name": "productNftId",
1292
+ "type": "uint96"
1293
+ },
1294
+ {
1295
+ "internalType": "NftId",
1296
+ "name": "bundleNftId",
1297
+ "type": "uint96"
1298
+ },
1299
+ {
1300
+ "internalType": "RiskId",
1301
+ "name": "riskId",
1302
+ "type": "bytes8"
1303
+ },
1304
+ {
1305
+ "internalType": "Amount",
1306
+ "name": "sumInsuredAmount",
1307
+ "type": "uint96"
1308
+ },
1309
+ {
1310
+ "internalType": "Amount",
1311
+ "name": "premiumAmount",
1312
+ "type": "uint96"
1313
+ },
1314
+ {
1315
+ "internalType": "ReferralId",
1316
+ "name": "referralId",
1317
+ "type": "bytes8"
1318
+ },
1319
+ {
1320
+ "internalType": "uint16",
1321
+ "name": "claimsCount",
1322
+ "type": "uint16"
1323
+ },
1324
+ {
1325
+ "internalType": "uint16",
1326
+ "name": "openClaimsCount",
1327
+ "type": "uint16"
1328
+ },
1329
+ {
1330
+ "internalType": "Amount",
1331
+ "name": "claimAmount",
1332
+ "type": "uint96"
1333
+ },
1334
+ {
1335
+ "internalType": "Amount",
1336
+ "name": "payoutAmount",
1337
+ "type": "uint96"
1338
+ },
1339
+ {
1340
+ "internalType": "Timestamp",
1341
+ "name": "activatedAt",
1342
+ "type": "uint40"
1343
+ },
1344
+ {
1345
+ "internalType": "Seconds",
1346
+ "name": "lifetime",
1347
+ "type": "uint40"
1348
+ },
1349
+ {
1350
+ "internalType": "Timestamp",
1351
+ "name": "expiredAt",
1352
+ "type": "uint40"
1353
+ },
1354
+ {
1355
+ "internalType": "Timestamp",
1356
+ "name": "closedAt",
1357
+ "type": "uint40"
1358
+ },
1359
+ {
1360
+ "internalType": "bytes",
1361
+ "name": "applicationData",
1362
+ "type": "bytes"
1363
+ },
1364
+ {
1365
+ "internalType": "bytes",
1366
+ "name": "processData",
1367
+ "type": "bytes"
1368
+ }
1369
+ ],
1370
+ "internalType": "struct IPolicy.PolicyInfo",
1371
+ "name": "policyInfo",
1372
+ "type": "tuple"
1373
+ }
1374
+ ],
1375
+ "name": "releaseCollateral",
1376
+ "outputs": [],
1377
+ "stateMutability": "nonpayable",
1378
+ "type": "function"
1379
+ },
1380
+ {
1381
+ "inputs": [
1382
+ {
1383
+ "internalType": "address",
1384
+ "name": "newAuthority",
1385
+ "type": "address"
1386
+ }
1387
+ ],
1388
+ "name": "setAuthority",
1389
+ "outputs": [],
1390
+ "stateMutability": "nonpayable",
1391
+ "type": "function"
1392
+ },
1393
+ {
1394
+ "inputs": [
1395
+ {
1396
+ "internalType": "Amount",
1397
+ "name": "maxBalanceAmount",
1398
+ "type": "uint96"
1399
+ }
1400
+ ],
1401
+ "name": "setMaxBalanceAmount",
1402
+ "outputs": [],
1403
+ "stateMutability": "nonpayable",
1404
+ "type": "function"
1405
+ },
1406
+ {
1407
+ "inputs": [
1408
+ {
1409
+ "internalType": "NftId",
1410
+ "name": "bundleNftId",
1411
+ "type": "uint96"
1412
+ },
1413
+ {
1414
+ "internalType": "Amount",
1415
+ "name": "amount",
1416
+ "type": "uint96"
1417
+ }
1418
+ ],
1419
+ "name": "stake",
1420
+ "outputs": [
1421
+ {
1422
+ "internalType": "Amount",
1423
+ "name": "netAmount",
1424
+ "type": "uint96"
1425
+ }
1426
+ ],
1427
+ "stateMutability": "nonpayable",
1428
+ "type": "function"
1429
+ },
1430
+ {
1431
+ "inputs": [
1432
+ {
1433
+ "internalType": "bytes4",
1434
+ "name": "interfaceId",
1435
+ "type": "bytes4"
1436
+ }
1437
+ ],
1438
+ "name": "supportsInterface",
1439
+ "outputs": [
1440
+ {
1441
+ "internalType": "bool",
1442
+ "name": "",
1443
+ "type": "bool"
1444
+ }
1445
+ ],
1446
+ "stateMutability": "view",
1447
+ "type": "function"
1448
+ },
1449
+ {
1450
+ "inputs": [
1451
+ {
1452
+ "internalType": "NftId",
1453
+ "name": "bundleNftId",
1454
+ "type": "uint96"
1455
+ },
1456
+ {
1457
+ "internalType": "Amount",
1458
+ "name": "amount",
1459
+ "type": "uint96"
1460
+ }
1461
+ ],
1462
+ "name": "unstake",
1463
+ "outputs": [
1464
+ {
1465
+ "internalType": "Amount",
1466
+ "name": "netAmount",
1467
+ "type": "uint96"
1468
+ }
1469
+ ],
1470
+ "stateMutability": "nonpayable",
1471
+ "type": "function"
1472
+ },
1473
+ {
1474
+ "inputs": [
1475
+ {
1476
+ "internalType": "bytes",
1477
+ "name": "data",
1478
+ "type": "bytes"
1479
+ }
1480
+ ],
1481
+ "name": "upgradeVersionable",
1482
+ "outputs": [],
1483
+ "stateMutability": "nonpayable",
1484
+ "type": "function"
1485
+ },
1486
+ {
1487
+ "inputs": [
1488
+ {
1489
+ "internalType": "NftId",
1490
+ "name": "bundleNftId",
1491
+ "type": "uint96"
1492
+ },
1493
+ {
1494
+ "internalType": "Amount",
1495
+ "name": "amount",
1496
+ "type": "uint96"
1497
+ }
1498
+ ],
1499
+ "name": "withdrawBundleFees",
1500
+ "outputs": [
1501
+ {
1502
+ "internalType": "Amount",
1503
+ "name": "withdrawnAmount",
1504
+ "type": "uint96"
1505
+ }
1506
+ ],
1507
+ "stateMutability": "nonpayable",
1508
+ "type": "function"
1509
+ }
1510
+ ],
1511
+ "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615f82806100d65f395ff3fe608060405234801561000f575f5ffd5b50600436106101d1575f3560e01c80636c741e78116100fe5780638fb360371161009e578063bf7e214f1161006e578063bf7e214f1461046a578063d0d63b0914610472578063e1f216fa14610485578063fb3bcd1f14610498575f5ffd5b80638fb360371461041b578063ada9652e1461043c578063b68d180914610450578063bca99e3914610457575f5ffd5b80637a9e5e4b116100d95780637a9e5e4b146103da57806384d1f7cf146103ed578063893d20e8146104005780638e4a508e14610408575f5ffd5b80636c741e781461038d578063750787f5146103ad57806376b707b7146103c0575f5ffd5b806326889b091161017457806354e507791161014457806354e50779146103255780635ab1bd5314610338578063644c45e01461035d5780636c1e9dff1461037a575f5ffd5b806326889b09146102d7578063329c71c0146102ea578063329d6e74146102ff57806349bb9e4b14610312575f5ffd5b8063125510a3116101af578063125510a314610247578063138461e01461027a5780631eff4b221461029a57806322f3e2d4146102cf575f5ffd5b806301ffc9a7146101d55780630d8e6e2c146102165780630fec111c14610232575b5f5ffd5b6102016101e3366004614ae1565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021e6104ab565b60405162ffffff909116815260200161020d565b61023a610532565b60405161020d9190614b36565b61025a610255366004614c1f565b6106ec565b604080516001600160601b0393841681529290911660208301520161020d565b610282610d90565b6040516001600160601b03909116815260200161020d565b6102c17f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161020d565b610201610d9a565b6102826102e5366004614cc3565b610e11565b6102fd6102f8366004614cfa565b6111ee565b005b6102fd61030d366004614e84565b611449565b6102fd610320366004614eb5565b611593565b610282610333366004614cc3565b61168f565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161020d565b5f516020615eed5f395f51905f52546001600160601b0316610282565b610282610388366004614cc3565b611de3565b610395612222565b6040516001600160401b03909116815260200161020d565b6102fd6103bb366004614f3b565b6122ae565b6103c86125a7565b60405160ff909116815260200161020d565b6102fd6103e83660046150f4565b61260f565b61025a6103fb36600461510f565b612695565b610345612a7c565b6102fd610416366004614cfa565b612bad565b610423612dd0565b6040516001600160e01b0319909116815260200161020d565b6102c15f516020615eed5f395f51905f5281565b600f6103c8565b6102fd610465366004614cfa565b612e05565b61034561301a565b6102fd610480366004614cfa565b613035565b6102fd61049336600461518d565b613525565b6102fd6104a63660046151d5565b6138ad565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610509573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052d919061535f565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105de573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610602919061538c565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161064a612a7c565b6001600160a01b03168152602001826001018054610667906153a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610693906153a7565b80156106de5780601f106106b5576101008083540402835291602001916106de565b820191905f5260205f20905b8154815290600101906020018083116106c157829003601f168201915b505050505081525091505090565b5f806106fa335b5f36613ba7565b610705876015613ca5565b5f6107186001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03891660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015610765573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610789919061538c565b905060025f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a28b838873__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156107f8573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081c919061538c565b6040518563ffffffff1660e01b815260040161083b94939291906153df565b5f604051808303815f87803b158015610852575f5ffd5b505af1158015610864573d5f5f3e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03166001600160a01b031663899cc04c8b898873__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156108d5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f9919061538c565b6040518563ffffffff1660e01b815260040161091894939291906153df565b5f604051808303815f87803b15801561092f575f5ffd5b505af1158015610941573d5f5f3e3d5ffd5b505060035460405163ad328d9f60e01b81526001600160a01b03909116925063ad328d9f915061097b908d908c908c908b906004016153df565b5f604051808303815f87803b158015610992575f5ffd5b505af11580156109a4573d5f5f3e3d5ffd5b505060405163a310e2a360e01b81526001600160601b03841660048201525f92506001600160a01b038e16915063a310e2a390602401602060405180830381865afa1580156109f5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a199190615411565b905060055f9054906101000a90046001600160a01b03166001600160a01b031663d44f8a4b8d6001600160a01b0316637e7986696040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a9e919061538c565b836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ada573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610afe9190615411565b896040518463ffffffff1660e01b8152600401610b1d9392919061542c565b5f604051808303815f87803b158015610b34575f5ffd5b505af1158015610b46573d5f5f3e3d5ffd5b5050505073__$19db5f0436f9beab06d91aaebdafaf50ff$__63c9e90bf2610b766001546001600160a01b031690565b8e848e8e8d8d8d6040518963ffffffff1660e01b8152600401610bf19897969594939291906001600160a01b039889168152968816602088015294871660408701526001600160601b039384166060870152918316608086015264ffffffffff1660a08501521660c083015290911660e08201526101000190565b6040805180830381865af4158015610c0b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c2f9190615458565b6040516330b8415f60e01b81526001600160601b0382166004820152919550935073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015610c8a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cae9190615494565b15610d1557600254604051631bb297cd60e31b81526001600160a01b039091169063dd94be6890610ce7908e908e9088906004016154ad565b5f604051808303815f87803b158015610cfe575f5ffd5b505af1158015610d10573d5f5f3e3d5ffd5b505050505b6040805164ffffffffff891681526001600160601b038681166020830152858116828401526001600160a01b038816606083015291518b8316928b811692908616917f28706c9692bea807fac7a4f471049774c7ef8746d3b527027de7918be6914ac89181900360800190a450509850989650505050505050565b5f61052d30613dd9565b5f610da361301a565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610de7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0b9190615494565b15905090565b5f610e1b336106f3565b5f5f5f5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__631b04bdc8610e4b6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526001600160601b038a16604482015260640161016060405180830381865af4158015610ea3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ec7919061556e565b50600354604051631696791160e11b815294985092965090945092505f916001600160a01b0390911690632d2cf22290610f099087908c908c906004016154ad565b6020604051808303815f875af1158015610f25573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f49919061538c565b905080955060025f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a285848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610fbb573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fdf919061538c565b6040518563ffffffff1660e01b8152600401610ffe94939291906153df565b5f604051808303815f87803b158015611015575f5ffd5b505af1158015611027573d5f5f3e3d5ffd5b5050604080516001600160601b0385811682528a81166020830152808d16945086811693508716917f1486849121d5ae771349472444bdddfe08862a6644665b5fd7ed4cf14a51db78910160405180910390a46040516357f80bbf60e01b81526001600160601b03831660048201526001600160a01b038616906357f80bbf9060240160e060405180830381865afa1580156110c5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e991906155dc565b60a001516111e3575f6111046001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038b1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611151573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111759190615411565b60405163e073590160e01b815290915073__$19db5f0436f9beab06d91aaebdafaf50ff$__9063e0735901906111b5908990879086908d90600401615601565b5f6040518083038186803b1580156111cb575f5ffd5b505af41580156111dd573d5f5f3e3d5ffd5b50505050505b505050505092915050565b6111f7336106f3565b5f5f61120161402f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611242573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112669190615411565b6040516357f80bbf60e01b81526001600160601b03851660048201529091506001600160a01b038216906357f80bbf9060240160e060405180830381865afa1580156112b4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112d891906155dc565b60a001516113095760405163664958ad60e01b81526001600160601b03841660048201526024015b60405180910390fd5b5f61131c6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03861660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611369573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061138d9190615411565b9050846001600160601b0316816001600160a01b0316856001600160601b03167ff93784364e35bd9d02fb31e12793254279ee0381ed65b4fa39ee297b22fdd79a60405160405180910390a460405163e073590160e01b815273__$19db5f0436f9beab06d91aaebdafaf50ff$__9063e073590190611416908590889086908b90600401615601565b5f6040518083038186803b15801561142c575f5ffd5b505af415801561143e573d5f5f3e3d5ffd5b505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61146b6104ab565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156114a9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114cd9190615648565b5f516020615f2d5f395f51905f528054600160401b900460ff16806114ff575080546001600160401b03808416911610155b1561151d5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155611547836140d0565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f516020615f2d5f395f51905f528054600160401b810460ff1615906001600160401b03165f811580156115c45750825b90505f826001600160401b031660011480156115df5750303b155b9050811580156115ed575080155b1561160b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561163557845460ff60401b1916600160401b1785555b61163f87876140f1565b831561168657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f611699336106f3565b6116a4836016613ca5565b5f5f6116ae61402f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116ef573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117139190615411565b9050849350836001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611785573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117a9919061538c565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af41580156117f2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118169190615494565b1561189157604051630232ca4960e01b81526001600160601b03871660048201526001600160a01b03821690630232ca4990602401602060405180830381865afa158015611866573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188a919061538c565b93506119ad565b604051630232ca4960e01b81526001600160601b038716600482015261190b9085906001600160a01b03841690630232ca4990602401602060405180830381865afa1580156118e2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611906919061538c565b614309565b156119ad57604051630232ca4960e01b81526001600160601b038716600482015284906001600160a01b03831690630232ca4990602401602060405180830381865afa15801561195d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611981919061538c565b604051637a2a246360e01b81526001600160601b03928316600482015291166024820152604401611300565b5f826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119ea573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a0e9190615411565b905060025f9054906101000a90046001600160a01b03166001600160a01b031663899cc04c828973__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a7c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aa0919061538c565b896040518563ffffffff1660e01b8152600401611ac094939291906153df565b5f604051808303815f87803b158015611ad7575f5ffd5b505af1158015611ae9573d5f5f3e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a282868873__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b5a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b7e919061538c565b6040518563ffffffff1660e01b8152600401611b9d94939291906153df565b5f604051808303815f87803b158015611bb4575f5ffd5b505af1158015611bc6573d5f5f3e3d5ffd5b50505050505f611bde6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03891660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611c2b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c4f9190615411565b60405163a310e2a360e01b81526001600160601b03861660048201529091505f906001600160a01b0384169063a310e2a390602401602060405180830381865afa158015611c9f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cc39190615411565b90505f816001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d02573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d269190615411565b9050866001600160601b0316836001600160a01b03168a6001600160601b03167f795bdbeef804d96307f55b22558e55da106882712cce5af5a4201ceeba08412784604051611d8491906001600160a01b0391909116815260200190565b60405180910390a46040516333f6af9b60e11b81526001600160a01b038316906367ed5f3690611dba9086908b90600401615663565b5f604051808303815f87803b158015611dd1575f5ffd5b505af11580156111dd573d5f5f3e3d5ffd5b5f611ded336106f3565b5f5f5f5f5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__631b04bdc8611e1e6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526001600160601b038b16604482015260640161016060405180830381865af4158015611e76573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e9a919061556e565b6040516308a390bb60e21b81526001600160601b0383166004820152949950929750909550935091505f906001600160a01b0387169063228e42ec90602401602060405180830381865afa158015611ef4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f18919061538c565b9050611f2e611f27828a614395565b8351614309565b15611f7257815160405163b806175d60e01b81526001600160601b038086166004830152918216602482015281831660448201529089166064820152608401611300565b505f73__$19db5f0436f9beab06d91aaebdafaf50ff$__63d775bd0a611fa06001546001600160a01b031690565b88868c6040518563ffffffff1660e01b8152600401611fc29493929190615685565b6040805180830381865af4158015611fdc573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120009190615458565b60025460405163d56cd3d560e01b81529199509192506001600160a01b039091169063d56cd3d59061203c90889087908c9087906004016153df565b5f604051808303815f87803b158015612053575f5ffd5b505af1158015612065573d5f5f3e3d5ffd5b505060035460405163c548949d60e01b81526001600160a01b03909116925063c548949d915061209f90899089908e908d90600401615685565b5f604051808303815f87803b1580156120b6575f5ffd5b505af11580156120c8573d5f5f3e3d5ffd5b5050604080516001600160601b038c811682528b81166020830152808e16945087811693508816917fa397b0d38fe748a8c29cce53eab5736ef0c29c156e7a9586ae8b88a8557b4145910160405180910390a48160a00151612216575f6121376001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038c1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612184573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121a89190615411565b60405163810fbd7560e01b815290915073__$19db5f0436f9beab06d91aaebdafaf50ff$__9063810fbd75906121e8908a90889086908f90600401615601565b5f6040518083038186803b1580156121fe575f5ffd5b505af4158015612210573d5f5f3e3d5ffd5b50505050505b50505050505092915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe600f6122476125a7565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af415801561228a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052d9190615648565b6122b7336106f3565b6122c2826015613ca5565b5f6122d6826060015183610100015161441a565b905060035f9054906101000a90046001600160a01b03166001600160a01b031663ad328d9f856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612337573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061235b9190615411565b858560200151856040518563ffffffff1660e01b815260040161238194939291906153df565b5f604051808303815f87803b158015612398575f5ffd5b505af11580156123aa573d5f5f3e3d5ffd5b505050505f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123eb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061240f9190615411565b905060055f9054906101000a90046001600160a01b03166001600160a01b031663d44f8a4b826001600160a01b0316637e7986696040518163ffffffff1660e01b8152600401602060405180830381865afa158015612470573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612494919061538c565b855160405163037efc5960e61b81526001600160601b0390911660048201526001600160a01b0385169063dfbf164090602401602060405180830381865afa1580156124e2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125069190615411565b856040518463ffffffff1660e01b81526004016125259392919061542c565b5f604051808303815f87803b15801561253c575f5ffd5b505af115801561254e573d5f5f3e3d5ffd5b50505050816001600160601b0316846001600160601b031684602001516001600160601b03167fbc6be91fd22e69f94bdd1976de7eee45121482e27cc577bc10329f836be76a4f60405160405180910390a45050505050565b5f6125b061301a565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125eb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052d91906156d2565b3361261861301a565b6001600160a01b0316816001600160a01b0316146126535760405162d1953b60e31b81526001600160a01b0382166004820152602401611300565b816001600160a01b03163b5f03612688576040516361798f2f60e11b81526001600160a01b0383166004820152602401611300565b61269182614464565b5050565b5f806126a0336106f3565b6126ab86600c613ca5565b6126b6856015613ca5565b6126c1846016613ca5565b5f5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__6381c0eb6c8b6001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612719573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061273d9190615411565b8a886040518463ffffffff1660e01b815260040161275d939291906154ad565b608060405180830381865af4158015612778573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061279c91906156ed565b600354604051634adcf90960e01b81529398509196509294509192506001600160a01b0390911690634adcf909906127de908d908b908b9089906004016153df565b5f604051808303815f87803b1580156127f5575f5ffd5b505af1158015612807573d5f5f3e3d5ffd5b5050505060055f9054906101000a90046001600160a01b03166001600160a01b031663ea48ce9b8b6001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561286a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061288e919061538c565b8b876040518463ffffffff1660e01b81526004016128ae9392919061542c565b5f604051808303815f87803b1580156128c5575f5ffd5b505af11580156128d7573d5f5f3e3d5ffd5b505050508015612a1f575f6128f46001546001600160a01b031690565b60405163bf8e179760e01b81526001600160601b03851660048201526001600160a01b03919091169063bf8e179790602401602060405180830381865afa158015612941573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129659190615411565b604051634deed57960e01b81526001600160601b03808b166004830152808a166024830152871660448201529091506001600160a01b03821690634deed579906064015f604051808303815f87803b1580156129bf575f5ffd5b505af11580156129d1573d5f5f3e3d5ffd5b50506040516001600160601b038881168252808c1693508a811692508616907f6c23de2cbade351ab10fe6b009f74e634e44d95ace4e5048cd0eecf9060265c89060200160405180910390a4505b604080516001600160601b0386811682528581166020830152808a169289821692918616917fb5fc4a79e60dffb5ff6cc29b173a75c6b222e41bbe851a33d9b383c08dc091c9910160405180910390a45050965096945050505050565b5f805f516020615eed5f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612ae8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b0c9190615494565b15612b97576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612b6d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b919190615411565b91505090565b54600160601b90046001600160a01b0316919050565b612bb6336106f3565b5f5f612bc061402f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c01573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c259190615411565b6040516357f80bbf60e01b81526001600160601b03851660048201529091506001600160a01b038216906357f80bbf9060240160e060405180830381865afa158015612c73573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c9791906155dc565b60a00151612cc35760405163664958ad60e01b81526001600160601b0384166004820152602401611300565b5f612cd66001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03861660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612d23573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d479190615411565b9050846001600160601b0316816001600160a01b0316856001600160601b03167f67e4007a2396f32c2c58b0546d5dc80e8097a965b3de4127c33f3610864416bd60405160405180910390a460405163810fbd7560e01b815273__$19db5f0436f9beab06d91aaebdafaf50ff$__9063810fbd7590611416908590889086908b90600401615601565b5f516020615f0d5f395f51905f5280545f9190600160a01b900460ff16612df7575f612b91565b638fb3603760e01b91505090565b612e0e336106f3565b5f5f612e1861402f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e59573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e7d9190615411565b6040516357f80bbf60e01b81526001600160601b03851660048201529091505f906001600160a01b038316906357f80bbf9060240160e060405180830381865afa158015612ecd573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ef191906155dc565b80516001600160601b038716825260408051631a99b41b60e31b8152905192935090916001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015612f47573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f6b9190615411565b6001600160a01b03166396f4df2f868460ff6040518463ffffffff1660e01b8152600401612f9b93929190615746565b5f604051808303815f87803b158015612fb2575f5ffd5b505af1158015612fc4573d5f5f3e3d5ffd5b50505050856001600160601b0316816001600160601b0316866001600160601b03167f59c52d680289bf3ed1eaf8c98c2385d021cbc74043dd1ed596d6383f63235ffc60405160405180910390a4505050505050565b5f516020615f0d5f395f51905f52546001600160a01b031690565b61303e336106f3565b613049816016613ca5565b5f5f61305361402f565b600354604051632aa6b2cb60e21b81529294509092505f9182916001600160a01b03169063aa9acb2c9061308d9086908990600401615663565b60408051808303815f875af11580156130a8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130cc9190615458565b9150915060025f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a2846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561312f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131539190615411565b8661315e8686614395565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156131a5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131c9919061538c565b6040518563ffffffff1660e01b81526004016131e894939291906153df565b5f604051808303815f87803b1580156131ff575f5ffd5b505af1158015613211573d5f5f3e3d5ffd5b50505050846001600160601b0316846001600160601b0316846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613265573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613289919061538c565b604080516001600160601b038781168252868116602083015292909216917fd1e537b20f7c99d7b3630d3f92b680f211e5da4ef76bcb4480111bf08425a058910160405180910390a46132dc8282614395565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015613333573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133579190615494565b1561351e575f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613399573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133bd9190615411565b60405163f0ea17c360e01b81526001600160601b03871660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015613409573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613430919081019061580d565b905080602001516001600160a01b03166367ed5f366134576001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038a1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156134a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c89190615411565b6134d28686614395565b6040518363ffffffff1660e01b81526004016134ef929190615663565b5f604051808303815f87803b158015613506575f5ffd5b505af1158015613518573d5f5f3e3d5ffd5b50505050505b5050505050565b61352e336106f3565b613539836015613ca5565b5f5f61354361402f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613584573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135a89190615411565b90505f6135bd6001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03861660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa15801561360a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061362e919061538c565b60405163bd7d9d8560e01b81526001600160601b03891660048201529091505f906001600160a01b0384169063bd7d9d85906024015f60405180830381865afa15801561367d573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526136a491908101906158e0565b90506136b3815f0151836144c4565b156136ef578051604051636083e75360e01b81526001600160601b03808b16600483015291821660248201529083166044820152606401611300565b856001600160601b03168761ffff16896001600160601b03167f6a2b4f9e8a4bb9038617a047352d25c5ac3c64c4aaba95e576b978a91b6666fb60405160405180910390a46040516302d764c760e21b81526001600160601b03831660048201526001600160a01b03841690630b5d931c906024015f60405180830381865afa15801561377e573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526137a59190810190615afb565b51156138a3575f6137be6001546001600160a01b031690565b60405163bf8e179760e01b81526001600160601b03851660048201526001600160a01b03919091169063bf8e179790602401602060405180830381865afa15801561380b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061382f9190615411565b6040516370f90b7d60e11b81526001600160601b03808c16600483015261ffff8b166024830152891660448201529091506001600160a01b0382169063e1f216fa906064015f604051808303815f87803b15801561388b575f5ffd5b505af115801561389d573d5f5f3e3d5ffd5b50505050505b5050505050505050565b6138b6336106f3565b6138c1826016613ca5565b5f6138d46001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03851660048201529091505f906001600160a01b0383169063cefa7fd690602401602060405180830381865afa158015613924573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613948919061538c565b60405163c52721a360e01b81526001600160a01b03841660048201526001600160601b0382166024820152600160448201529091505f9073__$fb599632d08395912d9d70eb2f0f93b5e2$__9063c52721a3906064015f60405180830381865af41580156139b8573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139df9190810190615bdd565b9150505f8190505f6139fa8660e00151876101600151614395565b90505f613a11876101000151886101800151614395565b90505f876060015190505f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a58573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a7c9190615411565b6002549091506001600160a01b031663d56cd3d58289613a9c8688614395565b886040518563ffffffff1660e01b8152600401613abc94939291906153df565b5f604051808303815f87803b158015613ad3575f5ffd5b505af1158015613ae5573d5f5f3e3d5ffd5b50506002546040516317bb009960e21b81526001600160a01b039091169250635eec02649150613b1f9084908e90879089906004016153df565b5f604051808303815f87803b158015613b36575f5ffd5b505af1158015613b48573d5f5f3e3d5ffd5b5050604080516001600160601b038781168252888116602083015280871694508e811693508b16917fe576d34ae9e41588783e58480f9c2d6ab599d21d76f09a165251fbaf831706f6910160405180910390a450505050505050505050565b5f516020615f0d5f395f51905f525f80613bdf613bc261301a565b8730613bd160045f8a8c615cbf565b613bda91615ce6565b61450e565b9150915081613c9d5763ffffffff811615613c7a57825460ff60a01b1916600160a01b178355613c0d61301a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401613c3c93929190615d1e565b5f604051808303815f87803b158015613c53575f5ffd5b505af1158015613c65573d5f5f3e3d5ffd5b5050845460ff60a01b1916855550613c9d9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401611300565b505050505050565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015613cf5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d199190615494565b80613da757506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015613d81573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da59190615494565b155b156126915760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401611300565b5f805f516020615eed5f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613e45573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e699190615494565b15613e955780546040516301ab8b6760e21b81526001600160601b039091166004820152602401611300565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613ee7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f0b9190615494565b613f335760405163b9304b0d60e01b81526001600160a01b0384166004820152602401611300565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613f85573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fa9919061538c565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b5490613ff5612a7c565b604080516001600160601b0390931683526001600160a01b0390911660208301520160405180910390a1546001600160601b031692915050565b5f5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee861405d6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af41580156140a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140c89190615d5d565b915091509091565b6140d8614616565b60405163502ec37160e01b815260040160405180910390fd5b5f516020615f2d5f395f51905f528054600160401b810460ff1615906001600160401b03165f811580156141225750825b90505f826001600160401b0316600114801561413d5750303b155b90508115801561414b575080155b156141695760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561419357845460ff60401b1916600160401b1785555b5f5f878060200190518101906141a99190615d8a565b915091506141b882828b61464e565b6141c260286146f0565b600280546001600160a01b0319166001600160a01b03929092169190911790556141ec60166146f0565b600380546001600160a01b0319166001600160a01b0392909216919091179055614216600b6146f0565b600480546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b0316630e9ed68b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614271573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142959190615411565b600580546001600160a01b0319166001600160a01b03929092169190911790556142c56337903e8d60e01b614787565b5050831561168657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161167d565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044015b602060405180830381865af415801561436a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061438e9190615494565b9392505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af41580156143f6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061438e919061538c565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa22906044016143db565b5f516020615f0d5f395f51905f5280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c519060440161434f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161457c9190615da6565b5f60405180830381855afa9150503d805f81146145b4576040519150601f19603f3d011682016040523d82523d5f602084013e6145b9565b606091505b5091509150811561460b5760408151106145eb57808060200190518101906145e19190615dbc565b909450925061460b565b602081511061460b57808060200190518101906146089190615494565b93505b505094509492505050565b5f516020615f2d5f395f51905f5254600160401b900460ff1661464c57604051631afcd79f60e31b815260040160405180910390fd5b565b614656614616565b61465e6147ba565b6146db8383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561469f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146c3919061538c565b60085f8660405180602001604052805f8152506147ca565b6146eb63daf9067160e01b614787565b505050565b5f6147036001546001600160a01b031690565b6001600160a01b031663d39e60438361471a6125a7565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561475d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147819190615411565b92915050565b61478f614616565b6147b7816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b6147c2614616565b61464c614907565b6147d2614616565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015614828573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061484c9190615494565b6148745760405163cf6935e560e01b81526001600160a01b0388166004820152602401611300565b61487d87614935565b6148878683614946565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016148f68382615e32565b506138a3634a531f3360e01b614787565b61490f614616565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b61493d614616565b6147b7816149bc565b61494e614616565b6149566149cd565b61495f82614a15565b6001600160a01b0381166149865760405163f17ef42d60e01b815260040160405180910390fd5b5f516020615eed5f395f51905f5280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6149c4614616565b6147b781614464565b6149d5614616565b61464c6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614a1d614616565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614a73573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a979190615494565b614abf5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401611300565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f60208284031215614af1575f5ffd5b81356001600160e01b03198116811461438e575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614b7e608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614bc2610100840182614b08565b949350505050565b6001600160a01b03811681146147b7575f5ffd5b6001600160601b03811681146147b7575f5ffd5b8035614bfd81614bde565b919050565b64ffffffffff811681146147b7575f5ffd5b8035614bfd81614c02565b5f5f5f5f5f5f5f5f610100898b031215614c37575f5ffd5b8835614c4281614bca565b97506020890135614c5281614bca565b96506040890135614c6281614bde565b95506060890135614c7281614bde565b94506080890135614c8281614bde565b935060a0890135614c9281614c02565b925060c0890135614ca281614bde565b915060e0890135614cb281614bca565b809150509295985092959890939650565b5f5f60408385031215614cd4575f5ffd5b8235614cdf81614bde565b91506020830135614cef81614bde565b809150509250929050565b5f60208284031215614d0a575f5ffd5b813561438e81614bde565b634e487b7160e01b5f52604160045260245ffd5b60405161020081016001600160401b0381118282101715614d4c57614d4c614d15565b60405290565b60405161024081016001600160401b0381118282101715614d4c57614d4c614d15565b60405160e081016001600160401b0381118282101715614d4c57614d4c614d15565b604080519081016001600160401b0381118282101715614d4c57614d4c614d15565b60405161010081016001600160401b0381118282101715614d4c57614d4c614d15565b604051601f8201601f191681016001600160401b0381118282101715614e0457614e04614d15565b604052919050565b5f6001600160401b03821115614e2457614e24614d15565b50601f01601f191660200190565b5f82601f830112614e41575f5ffd5b8135614e54614e4f82614e0c565b614ddc565b818152846020838601011115614e68575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614e94575f5ffd5b81356001600160401b03811115614ea9575f5ffd5b614bc284828501614e32565b5f5f60408385031215614ec6575f5ffd5b8235614ed181614bca565b915060208301356001600160401b03811115614eeb575f5ffd5b614ef785828601614e32565b9150509250929050565b6001600160c01b0319811681146147b7575f5ffd5b8035614bfd81614f01565b61ffff811681146147b7575f5ffd5b8035614bfd81614f21565b5f5f5f60608486031215614f4d575f5ffd5b8335614f5881614bca565b92506020840135614f6881614bde565b915060408401356001600160401b03811115614f82575f5ffd5b84016102008187031215614f94575f5ffd5b614f9c614d29565b614fa582614bf2565b8152614fb360208301614bf2565b6020820152614fc460408301614f16565b6040820152614fd560608301614bf2565b6060820152614fe660808301614bf2565b6080820152614ff760a08301614f16565b60a082015261500860c08301614f30565b60c082015261501960e08301614f30565b60e082015261502b6101008301614bf2565b61010082015261503e6101208301614bf2565b6101208201526150516101408301614c14565b6101408201526150646101608301614c14565b6101608201526150776101808301614c14565b61018082015261508a6101a08301614c14565b6101a08201526101c08201356001600160401b038111156150a9575f5ffd5b6150b588828501614e32565b6101c0830152506101e08201356001600160401b038111156150d5575f5ffd5b6150e188828501614e32565b6101e08301525080925050509250925092565b5f60208284031215615104575f5ffd5b813561438e81614bca565b5f5f5f5f5f5f60c08789031215615124575f5ffd5b863561512f81614bca565b9550602087013561513f81614bca565b9450604087013561514f81614bde565b9350606087013561515f81614bde565b9250608087013561516f81614bde565b915060a087013561517f81614bde565b809150509295509295509295565b5f5f5f6060848603121561519f575f5ffd5b83356151aa81614bde565b925060208401356151ba81614f21565b915060408401356151ca81614bde565b809150509250925092565b5f5f8284036102608112156151e8575f5ffd5b83356151f381614bde565b9250610240601f1982011215615207575f5ffd5b50615210614d52565b61521c60208501614bf2565b815261522a60408501614bf2565b602082015261523b60608501614bf2565b604082015261524c60808501614bf2565b606082015261525d60a08501614bf2565b608082015261526e60c08501614bf2565b60a082015261527f60e08501614bf2565b60c08201526152916101008501614bf2565b60e08201526152a36101208501614bf2565b6101008201526152b66101408501614bf2565b6101208201526152c96101608501614bf2565b6101408201526152dc6101808501614bf2565b6101608201526152ef6101a08501614bf2565b6101808201526153026101c08501614bf2565b6101a08201526153156101e08501614bf2565b6101c08201526153286102008501614bf2565b6101e082015261533b6102208501614bf2565b61020082015261534e6102408501614bf2565b610220820152809150509250929050565b5f6020828403121561536f575f5ffd5b815162ffffff8116811461438e575f5ffd5b8051614bfd81614bde565b5f6020828403121561539c575f5ffd5b815161438e81614bde565b600181811c908216806153bb57607f821691505b6020821081036153d957634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f60208284031215615421575f5ffd5b815161438e81614bca565b6001600160601b0393841681526001600160a01b03929092166020830152909116604082015260600190565b5f5f60408385031215615469575f5ffd5b825161547481614bde565b6020840151909250614cef81614bde565b80518015158114614bfd575f5ffd5b5f602082840312156154a4575f5ffd5b61438e82615485565b6001600160a01b039390931683526001600160601b03918216602084015216604082015260600190565b5f60e082840312156154e7575f5ffd5b6154ef614d75565b905081516154fc81614bde565b8152602082015161550c81614bca565b6020820152604082015161551f81614bca565b604082015261553060608301615485565b606082015261554160808301615485565b608082015261555260a08301615485565b60a082015261556360c08301615485565b60c082015292915050565b5f5f5f5f5f6101608688031215615583575f5ffd5b855161558e81614bca565b602087015190955061559f81614bca565b60408701519094506155b081614bde565b60608701519093506155c181614bde565b91506155d087608088016154d7565b90509295509295909350565b5f60e082840312156155ec575f5ffd5b61438e83836154d7565b8051614bfd81614bca565b6001600160a01b0394851681526001600160601b0393841660208201529190931660408201529116606082015260800190565b6001600160401b03811681146147b7575f5ffd5b5f60208284031215615658575f5ffd5b815161438e81615634565b6001600160a01b039290921682526001600160601b0316602082015260400190565b6001600160a01b0394851681529290931660208301526001600160601b039081166040830152909116606082015260800190565b60ff811681146147b7575f5ffd5b8051614bfd816156b9565b5f602082840312156156e2575f5ffd5b815161438e816156b9565b5f5f5f5f60808587031215615700575f5ffd5b845161570b81614bde565b602086015190945061571c81614bde565b604086015190935061572d81614bde565b915061573b60608601615485565b905092959194509250565b5f610120820190506001600160601b03851682526001600160601b03845116602083015260018060a01b03602085015116604083015260018060a01b03604085015116606083015260608401511515608083015260808401516157ad60a084018215159052565b5060a0840151151560c083810191909152840151151560e083015260ff8316610100830152614bc2565b5f6157e4614e4f84614e0c565b90508281528383830111156157f7575f5ffd5b8282602083015e5f602084830101529392505050565b5f6020828403121561581d575f5ffd5b81516001600160401b03811115615832575f5ffd5b820160408185031215615843575f5ffd5b61584b614d97565b81516001600160401b03811115615860575f5ffd5b8201601f81018613615870575f5ffd5b61587f868251602084016157d7565b8252506020820151915061589282614bca565b60208101919091529392505050565b8051614bfd81614f01565b8051614bfd81614f21565b8051614bfd81614c02565b5f82601f8301126158d1575f5ffd5b61438e838351602085016157d7565b5f602082840312156158f0575f5ffd5b81516001600160401b03811115615905575f5ffd5b82016102008185031215615917575f5ffd5b61591f614d29565b61592882615381565b815261593660208301615381565b6020820152615947604083016158a1565b604082015261595860608301615381565b606082015261596960808301615381565b608082015261597a60a083016158a1565b60a082015261598b60c083016158ac565b60c082015261599c60e083016158ac565b60e08201526159ae6101008301615381565b6101008201526159c16101208301615381565b6101208201526159d461014083016158b7565b6101408201526159e761016083016158b7565b6101608201526159fa61018083016158b7565b610180820152615a0d6101a083016158b7565b6101a08201526101c08201516001600160401b03811115615a2c575f5ffd5b615a38868285016158c2565b6101c0830152506101e08201516001600160401b03811115615a58575f5ffd5b615a64868285016158c2565b6101e083015250949350505050565b5f82601f830112615a82575f5ffd5b81516001600160401b03811115615a9b57615a9b614d15565b8060051b615aab60208201614ddc565b91825260208185018101929081019086841115615ac6575f5ffd5b6020860192505b83831015615af1578251615ae081614bde565b825260209283019290910190615acd565b9695505050505050565b5f60208284031215615b0b575f5ffd5b81516001600160401b03811115615b20575f5ffd5b82016101008185031215615b32575f5ffd5b615b3a614db9565b615b4382615485565b8152615b5160208301615485565b6020820152615b6260408301615485565b6040820152615b73606083016156c7565b6060820152615b84608083016156c7565b6080820152615b9560a08301615381565b60a0820152615ba660c08301615381565b60c082015260e08201516001600160401b03811115615bc3575f5ffd5b615bcf86828501615a73565b60e083015250949350505050565b5f5f60408385031215615bee575f5ffd5b82516001600160401b03811115615c03575f5ffd5b830160e08186031215615c14575f5ffd5b615c1c614d75565b615c2582615381565b8152615c3360208301615381565b6020820152615c44604083016156c7565b6040820152615c5560608301615485565b6060820152615c66608083016155f6565b6080820152615c7760a083016155f6565b60a082015260c08201516001600160401b03811115615c94575f5ffd5b615ca0878285016158c2565b60c0830152509250615cb69050602084016155f6565b90509250929050565b5f5f85851115615ccd575f5ffd5b83861115615cd9575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015615d17576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f5f60408385031215615d6e575f5ffd5b8251615d7981614bde565b6020840151909250614cef81614bca565b5f5f60408385031215615d9b575f5ffd5b8251615d7981614bca565b5f82518060208501845e5f920191825250919050565b5f5f60408385031215615dcd575f5ffd5b615dd683615485565b9150602083015163ffffffff81168114614cef575f5ffd5b601f8211156146eb57805f5260205f20601f840160051c81016020851015615e135750805b601f840160051c820191505b8181101561351e575f8155600101615e1f565b81516001600160401b03811115615e4b57615e4b614d15565b615e5f81615e5984546153a7565b84615dee565b6020601f821160018114615e91575f8315615e7a5750848201515b5f19600385901b1c1916600184901b17845561351e565b5f84815260208120601f198516915b82811015615ec05787850151825560209485019460019092019101615ea0565b5084821015615edd57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212202a1017e88b1762fe506ff33231f424ee11646932344b2200a06fe58acde0b22464736f6c634300081b0033",
1512
+ "deployedBytecode": "0x608060405234801561000f575f5ffd5b50600436106101d1575f3560e01c80636c741e78116100fe5780638fb360371161009e578063bf7e214f1161006e578063bf7e214f1461046a578063d0d63b0914610472578063e1f216fa14610485578063fb3bcd1f14610498575f5ffd5b80638fb360371461041b578063ada9652e1461043c578063b68d180914610450578063bca99e3914610457575f5ffd5b80637a9e5e4b116100d95780637a9e5e4b146103da57806384d1f7cf146103ed578063893d20e8146104005780638e4a508e14610408575f5ffd5b80636c741e781461038d578063750787f5146103ad57806376b707b7146103c0575f5ffd5b806326889b091161017457806354e507791161014457806354e50779146103255780635ab1bd5314610338578063644c45e01461035d5780636c1e9dff1461037a575f5ffd5b806326889b09146102d7578063329c71c0146102ea578063329d6e74146102ff57806349bb9e4b14610312575f5ffd5b8063125510a3116101af578063125510a314610247578063138461e01461027a5780631eff4b221461029a57806322f3e2d4146102cf575f5ffd5b806301ffc9a7146101d55780630d8e6e2c146102165780630fec111c14610232575b5f5ffd5b6102016101e3366004614ae1565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021e6104ab565b60405162ffffff909116815260200161020d565b61023a610532565b60405161020d9190614b36565b61025a610255366004614c1f565b6106ec565b604080516001600160601b0393841681529290911660208301520161020d565b610282610d90565b6040516001600160601b03909116815260200161020d565b6102c17f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161020d565b610201610d9a565b6102826102e5366004614cc3565b610e11565b6102fd6102f8366004614cfa565b6111ee565b005b6102fd61030d366004614e84565b611449565b6102fd610320366004614eb5565b611593565b610282610333366004614cc3565b61168f565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161020d565b5f516020615eed5f395f51905f52546001600160601b0316610282565b610282610388366004614cc3565b611de3565b610395612222565b6040516001600160401b03909116815260200161020d565b6102fd6103bb366004614f3b565b6122ae565b6103c86125a7565b60405160ff909116815260200161020d565b6102fd6103e83660046150f4565b61260f565b61025a6103fb36600461510f565b612695565b610345612a7c565b6102fd610416366004614cfa565b612bad565b610423612dd0565b6040516001600160e01b0319909116815260200161020d565b6102c15f516020615eed5f395f51905f5281565b600f6103c8565b6102fd610465366004614cfa565b612e05565b61034561301a565b6102fd610480366004614cfa565b613035565b6102fd61049336600461518d565b613525565b6102fd6104a63660046151d5565b6138ad565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610509573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052d919061535f565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105de573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610602919061538c565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161064a612a7c565b6001600160a01b03168152602001826001018054610667906153a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610693906153a7565b80156106de5780601f106106b5576101008083540402835291602001916106de565b820191905f5260205f20905b8154815290600101906020018083116106c157829003601f168201915b505050505081525091505090565b5f806106fa335b5f36613ba7565b610705876015613ca5565b5f6107186001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03891660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015610765573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610789919061538c565b905060025f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a28b838873__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156107f8573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081c919061538c565b6040518563ffffffff1660e01b815260040161083b94939291906153df565b5f604051808303815f87803b158015610852575f5ffd5b505af1158015610864573d5f5f3e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03166001600160a01b031663899cc04c8b898873__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156108d5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f9919061538c565b6040518563ffffffff1660e01b815260040161091894939291906153df565b5f604051808303815f87803b15801561092f575f5ffd5b505af1158015610941573d5f5f3e3d5ffd5b505060035460405163ad328d9f60e01b81526001600160a01b03909116925063ad328d9f915061097b908d908c908c908b906004016153df565b5f604051808303815f87803b158015610992575f5ffd5b505af11580156109a4573d5f5f3e3d5ffd5b505060405163a310e2a360e01b81526001600160601b03841660048201525f92506001600160a01b038e16915063a310e2a390602401602060405180830381865afa1580156109f5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a199190615411565b905060055f9054906101000a90046001600160a01b03166001600160a01b031663d44f8a4b8d6001600160a01b0316637e7986696040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a9e919061538c565b836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ada573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610afe9190615411565b896040518463ffffffff1660e01b8152600401610b1d9392919061542c565b5f604051808303815f87803b158015610b34575f5ffd5b505af1158015610b46573d5f5f3e3d5ffd5b5050505073__$19db5f0436f9beab06d91aaebdafaf50ff$__63c9e90bf2610b766001546001600160a01b031690565b8e848e8e8d8d8d6040518963ffffffff1660e01b8152600401610bf19897969594939291906001600160a01b039889168152968816602088015294871660408701526001600160601b039384166060870152918316608086015264ffffffffff1660a08501521660c083015290911660e08201526101000190565b6040805180830381865af4158015610c0b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c2f9190615458565b6040516330b8415f60e01b81526001600160601b0382166004820152919550935073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015610c8a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cae9190615494565b15610d1557600254604051631bb297cd60e31b81526001600160a01b039091169063dd94be6890610ce7908e908e9088906004016154ad565b5f604051808303815f87803b158015610cfe575f5ffd5b505af1158015610d10573d5f5f3e3d5ffd5b505050505b6040805164ffffffffff891681526001600160601b038681166020830152858116828401526001600160a01b038816606083015291518b8316928b811692908616917f28706c9692bea807fac7a4f471049774c7ef8746d3b527027de7918be6914ac89181900360800190a450509850989650505050505050565b5f61052d30613dd9565b5f610da361301a565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610de7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0b9190615494565b15905090565b5f610e1b336106f3565b5f5f5f5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__631b04bdc8610e4b6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526001600160601b038a16604482015260640161016060405180830381865af4158015610ea3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ec7919061556e565b50600354604051631696791160e11b815294985092965090945092505f916001600160a01b0390911690632d2cf22290610f099087908c908c906004016154ad565b6020604051808303815f875af1158015610f25573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f49919061538c565b905080955060025f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a285848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610fbb573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fdf919061538c565b6040518563ffffffff1660e01b8152600401610ffe94939291906153df565b5f604051808303815f87803b158015611015575f5ffd5b505af1158015611027573d5f5f3e3d5ffd5b5050604080516001600160601b0385811682528a81166020830152808d16945086811693508716917f1486849121d5ae771349472444bdddfe08862a6644665b5fd7ed4cf14a51db78910160405180910390a46040516357f80bbf60e01b81526001600160601b03831660048201526001600160a01b038616906357f80bbf9060240160e060405180830381865afa1580156110c5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e991906155dc565b60a001516111e3575f6111046001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038b1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611151573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111759190615411565b60405163e073590160e01b815290915073__$19db5f0436f9beab06d91aaebdafaf50ff$__9063e0735901906111b5908990879086908d90600401615601565b5f6040518083038186803b1580156111cb575f5ffd5b505af41580156111dd573d5f5f3e3d5ffd5b50505050505b505050505092915050565b6111f7336106f3565b5f5f61120161402f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611242573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112669190615411565b6040516357f80bbf60e01b81526001600160601b03851660048201529091506001600160a01b038216906357f80bbf9060240160e060405180830381865afa1580156112b4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112d891906155dc565b60a001516113095760405163664958ad60e01b81526001600160601b03841660048201526024015b60405180910390fd5b5f61131c6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03861660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611369573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061138d9190615411565b9050846001600160601b0316816001600160a01b0316856001600160601b03167ff93784364e35bd9d02fb31e12793254279ee0381ed65b4fa39ee297b22fdd79a60405160405180910390a460405163e073590160e01b815273__$19db5f0436f9beab06d91aaebdafaf50ff$__9063e073590190611416908590889086908b90600401615601565b5f6040518083038186803b15801561142c575f5ffd5b505af415801561143e573d5f5f3e3d5ffd5b505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61146b6104ab565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156114a9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114cd9190615648565b5f516020615f2d5f395f51905f528054600160401b900460ff16806114ff575080546001600160401b03808416911610155b1561151d5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155611547836140d0565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f516020615f2d5f395f51905f528054600160401b810460ff1615906001600160401b03165f811580156115c45750825b90505f826001600160401b031660011480156115df5750303b155b9050811580156115ed575080155b1561160b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561163557845460ff60401b1916600160401b1785555b61163f87876140f1565b831561168657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f611699336106f3565b6116a4836016613ca5565b5f5f6116ae61402f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116ef573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117139190615411565b9050849350836001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611785573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117a9919061538c565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af41580156117f2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118169190615494565b1561189157604051630232ca4960e01b81526001600160601b03871660048201526001600160a01b03821690630232ca4990602401602060405180830381865afa158015611866573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188a919061538c565b93506119ad565b604051630232ca4960e01b81526001600160601b038716600482015261190b9085906001600160a01b03841690630232ca4990602401602060405180830381865afa1580156118e2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611906919061538c565b614309565b156119ad57604051630232ca4960e01b81526001600160601b038716600482015284906001600160a01b03831690630232ca4990602401602060405180830381865afa15801561195d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611981919061538c565b604051637a2a246360e01b81526001600160601b03928316600482015291166024820152604401611300565b5f826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119ea573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a0e9190615411565b905060025f9054906101000a90046001600160a01b03166001600160a01b031663899cc04c828973__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a7c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aa0919061538c565b896040518563ffffffff1660e01b8152600401611ac094939291906153df565b5f604051808303815f87803b158015611ad7575f5ffd5b505af1158015611ae9573d5f5f3e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a282868873__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b5a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b7e919061538c565b6040518563ffffffff1660e01b8152600401611b9d94939291906153df565b5f604051808303815f87803b158015611bb4575f5ffd5b505af1158015611bc6573d5f5f3e3d5ffd5b50505050505f611bde6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03891660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611c2b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c4f9190615411565b60405163a310e2a360e01b81526001600160601b03861660048201529091505f906001600160a01b0384169063a310e2a390602401602060405180830381865afa158015611c9f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cc39190615411565b90505f816001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d02573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d269190615411565b9050866001600160601b0316836001600160a01b03168a6001600160601b03167f795bdbeef804d96307f55b22558e55da106882712cce5af5a4201ceeba08412784604051611d8491906001600160a01b0391909116815260200190565b60405180910390a46040516333f6af9b60e11b81526001600160a01b038316906367ed5f3690611dba9086908b90600401615663565b5f604051808303815f87803b158015611dd1575f5ffd5b505af11580156111dd573d5f5f3e3d5ffd5b5f611ded336106f3565b5f5f5f5f5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__631b04bdc8611e1e6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526001600160601b038b16604482015260640161016060405180830381865af4158015611e76573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e9a919061556e565b6040516308a390bb60e21b81526001600160601b0383166004820152949950929750909550935091505f906001600160a01b0387169063228e42ec90602401602060405180830381865afa158015611ef4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f18919061538c565b9050611f2e611f27828a614395565b8351614309565b15611f7257815160405163b806175d60e01b81526001600160601b038086166004830152918216602482015281831660448201529089166064820152608401611300565b505f73__$19db5f0436f9beab06d91aaebdafaf50ff$__63d775bd0a611fa06001546001600160a01b031690565b88868c6040518563ffffffff1660e01b8152600401611fc29493929190615685565b6040805180830381865af4158015611fdc573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120009190615458565b60025460405163d56cd3d560e01b81529199509192506001600160a01b039091169063d56cd3d59061203c90889087908c9087906004016153df565b5f604051808303815f87803b158015612053575f5ffd5b505af1158015612065573d5f5f3e3d5ffd5b505060035460405163c548949d60e01b81526001600160a01b03909116925063c548949d915061209f90899089908e908d90600401615685565b5f604051808303815f87803b1580156120b6575f5ffd5b505af11580156120c8573d5f5f3e3d5ffd5b5050604080516001600160601b038c811682528b81166020830152808e16945087811693508816917fa397b0d38fe748a8c29cce53eab5736ef0c29c156e7a9586ae8b88a8557b4145910160405180910390a48160a00151612216575f6121376001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038c1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612184573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121a89190615411565b60405163810fbd7560e01b815290915073__$19db5f0436f9beab06d91aaebdafaf50ff$__9063810fbd75906121e8908a90889086908f90600401615601565b5f6040518083038186803b1580156121fe575f5ffd5b505af4158015612210573d5f5f3e3d5ffd5b50505050505b50505050505092915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe600f6122476125a7565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af415801561228a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052d9190615648565b6122b7336106f3565b6122c2826015613ca5565b5f6122d6826060015183610100015161441a565b905060035f9054906101000a90046001600160a01b03166001600160a01b031663ad328d9f856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612337573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061235b9190615411565b858560200151856040518563ffffffff1660e01b815260040161238194939291906153df565b5f604051808303815f87803b158015612398575f5ffd5b505af11580156123aa573d5f5f3e3d5ffd5b505050505f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123eb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061240f9190615411565b905060055f9054906101000a90046001600160a01b03166001600160a01b031663d44f8a4b826001600160a01b0316637e7986696040518163ffffffff1660e01b8152600401602060405180830381865afa158015612470573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612494919061538c565b855160405163037efc5960e61b81526001600160601b0390911660048201526001600160a01b0385169063dfbf164090602401602060405180830381865afa1580156124e2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125069190615411565b856040518463ffffffff1660e01b81526004016125259392919061542c565b5f604051808303815f87803b15801561253c575f5ffd5b505af115801561254e573d5f5f3e3d5ffd5b50505050816001600160601b0316846001600160601b031684602001516001600160601b03167fbc6be91fd22e69f94bdd1976de7eee45121482e27cc577bc10329f836be76a4f60405160405180910390a45050505050565b5f6125b061301a565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125eb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052d91906156d2565b3361261861301a565b6001600160a01b0316816001600160a01b0316146126535760405162d1953b60e31b81526001600160a01b0382166004820152602401611300565b816001600160a01b03163b5f03612688576040516361798f2f60e11b81526001600160a01b0383166004820152602401611300565b61269182614464565b5050565b5f806126a0336106f3565b6126ab86600c613ca5565b6126b6856015613ca5565b6126c1846016613ca5565b5f5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__6381c0eb6c8b6001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612719573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061273d9190615411565b8a886040518463ffffffff1660e01b815260040161275d939291906154ad565b608060405180830381865af4158015612778573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061279c91906156ed565b600354604051634adcf90960e01b81529398509196509294509192506001600160a01b0390911690634adcf909906127de908d908b908b9089906004016153df565b5f604051808303815f87803b1580156127f5575f5ffd5b505af1158015612807573d5f5f3e3d5ffd5b5050505060055f9054906101000a90046001600160a01b03166001600160a01b031663ea48ce9b8b6001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561286a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061288e919061538c565b8b876040518463ffffffff1660e01b81526004016128ae9392919061542c565b5f604051808303815f87803b1580156128c5575f5ffd5b505af11580156128d7573d5f5f3e3d5ffd5b505050508015612a1f575f6128f46001546001600160a01b031690565b60405163bf8e179760e01b81526001600160601b03851660048201526001600160a01b03919091169063bf8e179790602401602060405180830381865afa158015612941573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129659190615411565b604051634deed57960e01b81526001600160601b03808b166004830152808a166024830152871660448201529091506001600160a01b03821690634deed579906064015f604051808303815f87803b1580156129bf575f5ffd5b505af11580156129d1573d5f5f3e3d5ffd5b50506040516001600160601b038881168252808c1693508a811692508616907f6c23de2cbade351ab10fe6b009f74e634e44d95ace4e5048cd0eecf9060265c89060200160405180910390a4505b604080516001600160601b0386811682528581166020830152808a169289821692918616917fb5fc4a79e60dffb5ff6cc29b173a75c6b222e41bbe851a33d9b383c08dc091c9910160405180910390a45050965096945050505050565b5f805f516020615eed5f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612ae8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b0c9190615494565b15612b97576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612b6d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b919190615411565b91505090565b54600160601b90046001600160a01b0316919050565b612bb6336106f3565b5f5f612bc061402f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c01573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c259190615411565b6040516357f80bbf60e01b81526001600160601b03851660048201529091506001600160a01b038216906357f80bbf9060240160e060405180830381865afa158015612c73573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c9791906155dc565b60a00151612cc35760405163664958ad60e01b81526001600160601b0384166004820152602401611300565b5f612cd66001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03861660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612d23573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d479190615411565b9050846001600160601b0316816001600160a01b0316856001600160601b03167f67e4007a2396f32c2c58b0546d5dc80e8097a965b3de4127c33f3610864416bd60405160405180910390a460405163810fbd7560e01b815273__$19db5f0436f9beab06d91aaebdafaf50ff$__9063810fbd7590611416908590889086908b90600401615601565b5f516020615f0d5f395f51905f5280545f9190600160a01b900460ff16612df7575f612b91565b638fb3603760e01b91505090565b612e0e336106f3565b5f5f612e1861402f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e59573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e7d9190615411565b6040516357f80bbf60e01b81526001600160601b03851660048201529091505f906001600160a01b038316906357f80bbf9060240160e060405180830381865afa158015612ecd573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ef191906155dc565b80516001600160601b038716825260408051631a99b41b60e31b8152905192935090916001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa158015612f47573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f6b9190615411565b6001600160a01b03166396f4df2f868460ff6040518463ffffffff1660e01b8152600401612f9b93929190615746565b5f604051808303815f87803b158015612fb2575f5ffd5b505af1158015612fc4573d5f5f3e3d5ffd5b50505050856001600160601b0316816001600160601b0316866001600160601b03167f59c52d680289bf3ed1eaf8c98c2385d021cbc74043dd1ed596d6383f63235ffc60405160405180910390a4505050505050565b5f516020615f0d5f395f51905f52546001600160a01b031690565b61303e336106f3565b613049816016613ca5565b5f5f61305361402f565b600354604051632aa6b2cb60e21b81529294509092505f9182916001600160a01b03169063aa9acb2c9061308d9086908990600401615663565b60408051808303815f875af11580156130a8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130cc9190615458565b9150915060025f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a2846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561312f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131539190615411565b8661315e8686614395565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156131a5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131c9919061538c565b6040518563ffffffff1660e01b81526004016131e894939291906153df565b5f604051808303815f87803b1580156131ff575f5ffd5b505af1158015613211573d5f5f3e3d5ffd5b50505050846001600160601b0316846001600160601b0316846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613265573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613289919061538c565b604080516001600160601b038781168252868116602083015292909216917fd1e537b20f7c99d7b3630d3f92b680f211e5da4ef76bcb4480111bf08425a058910160405180910390a46132dc8282614395565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015613333573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133579190615494565b1561351e575f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613399573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133bd9190615411565b60405163f0ea17c360e01b81526001600160601b03871660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015613409573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613430919081019061580d565b905080602001516001600160a01b03166367ed5f366134576001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038a1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156134a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c89190615411565b6134d28686614395565b6040518363ffffffff1660e01b81526004016134ef929190615663565b5f604051808303815f87803b158015613506575f5ffd5b505af1158015613518573d5f5f3e3d5ffd5b50505050505b5050505050565b61352e336106f3565b613539836015613ca5565b5f5f61354361402f565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613584573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135a89190615411565b90505f6135bd6001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03861660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa15801561360a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061362e919061538c565b60405163bd7d9d8560e01b81526001600160601b03891660048201529091505f906001600160a01b0384169063bd7d9d85906024015f60405180830381865afa15801561367d573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526136a491908101906158e0565b90506136b3815f0151836144c4565b156136ef578051604051636083e75360e01b81526001600160601b03808b16600483015291821660248201529083166044820152606401611300565b856001600160601b03168761ffff16896001600160601b03167f6a2b4f9e8a4bb9038617a047352d25c5ac3c64c4aaba95e576b978a91b6666fb60405160405180910390a46040516302d764c760e21b81526001600160601b03831660048201526001600160a01b03841690630b5d931c906024015f60405180830381865afa15801561377e573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526137a59190810190615afb565b51156138a3575f6137be6001546001600160a01b031690565b60405163bf8e179760e01b81526001600160601b03851660048201526001600160a01b03919091169063bf8e179790602401602060405180830381865afa15801561380b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061382f9190615411565b6040516370f90b7d60e11b81526001600160601b03808c16600483015261ffff8b166024830152891660448201529091506001600160a01b0382169063e1f216fa906064015f604051808303815f87803b15801561388b575f5ffd5b505af115801561389d573d5f5f3e3d5ffd5b50505050505b5050505050505050565b6138b6336106f3565b6138c1826016613ca5565b5f6138d46001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03851660048201529091505f906001600160a01b0383169063cefa7fd690602401602060405180830381865afa158015613924573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613948919061538c565b60405163c52721a360e01b81526001600160a01b03841660048201526001600160601b0382166024820152600160448201529091505f9073__$fb599632d08395912d9d70eb2f0f93b5e2$__9063c52721a3906064015f60405180830381865af41580156139b8573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139df9190810190615bdd565b9150505f8190505f6139fa8660e00151876101600151614395565b90505f613a11876101000151886101800151614395565b90505f876060015190505f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a58573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a7c9190615411565b6002549091506001600160a01b031663d56cd3d58289613a9c8688614395565b886040518563ffffffff1660e01b8152600401613abc94939291906153df565b5f604051808303815f87803b158015613ad3575f5ffd5b505af1158015613ae5573d5f5f3e3d5ffd5b50506002546040516317bb009960e21b81526001600160a01b039091169250635eec02649150613b1f9084908e90879089906004016153df565b5f604051808303815f87803b158015613b36575f5ffd5b505af1158015613b48573d5f5f3e3d5ffd5b5050604080516001600160601b038781168252888116602083015280871694508e811693508b16917fe576d34ae9e41588783e58480f9c2d6ab599d21d76f09a165251fbaf831706f6910160405180910390a450505050505050505050565b5f516020615f0d5f395f51905f525f80613bdf613bc261301a565b8730613bd160045f8a8c615cbf565b613bda91615ce6565b61450e565b9150915081613c9d5763ffffffff811615613c7a57825460ff60a01b1916600160a01b178355613c0d61301a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401613c3c93929190615d1e565b5f604051808303815f87803b158015613c53575f5ffd5b505af1158015613c65573d5f5f3e3d5ffd5b5050845460ff60a01b1916855550613c9d9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401611300565b505050505050565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015613cf5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d199190615494565b80613da757506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015613d81573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da59190615494565b155b156126915760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401611300565b5f805f516020615eed5f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613e45573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e699190615494565b15613e955780546040516301ab8b6760e21b81526001600160601b039091166004820152602401611300565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613ee7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f0b9190615494565b613f335760405163b9304b0d60e01b81526001600160a01b0384166004820152602401611300565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613f85573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fa9919061538c565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b5490613ff5612a7c565b604080516001600160601b0390931683526001600160a01b0390911660208301520160405180910390a1546001600160601b031692915050565b5f5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee861405d6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af41580156140a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140c89190615d5d565b915091509091565b6140d8614616565b60405163502ec37160e01b815260040160405180910390fd5b5f516020615f2d5f395f51905f528054600160401b810460ff1615906001600160401b03165f811580156141225750825b90505f826001600160401b0316600114801561413d5750303b155b90508115801561414b575080155b156141695760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561419357845460ff60401b1916600160401b1785555b5f5f878060200190518101906141a99190615d8a565b915091506141b882828b61464e565b6141c260286146f0565b600280546001600160a01b0319166001600160a01b03929092169190911790556141ec60166146f0565b600380546001600160a01b0319166001600160a01b0392909216919091179055614216600b6146f0565b600480546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b0316630e9ed68b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614271573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142959190615411565b600580546001600160a01b0319166001600160a01b03929092169190911790556142c56337903e8d60e01b614787565b5050831561168657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161167d565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044015b602060405180830381865af415801561436a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061438e9190615494565b9392505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af41580156143f6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061438e919061538c565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa22906044016143db565b5f516020615f0d5f395f51905f5280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c519060440161434f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161457c9190615da6565b5f60405180830381855afa9150503d805f81146145b4576040519150601f19603f3d011682016040523d82523d5f602084013e6145b9565b606091505b5091509150811561460b5760408151106145eb57808060200190518101906145e19190615dbc565b909450925061460b565b602081511061460b57808060200190518101906146089190615494565b93505b505094509492505050565b5f516020615f2d5f395f51905f5254600160401b900460ff1661464c57604051631afcd79f60e31b815260040160405180910390fd5b565b614656614616565b61465e6147ba565b6146db8383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561469f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146c3919061538c565b60085f8660405180602001604052805f8152506147ca565b6146eb63daf9067160e01b614787565b505050565b5f6147036001546001600160a01b031690565b6001600160a01b031663d39e60438361471a6125a7565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561475d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147819190615411565b92915050565b61478f614616565b6147b7816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b6147c2614616565b61464c614907565b6147d2614616565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015614828573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061484c9190615494565b6148745760405163cf6935e560e01b81526001600160a01b0388166004820152602401611300565b61487d87614935565b6148878683614946565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016148f68382615e32565b506138a3634a531f3360e01b614787565b61490f614616565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b61493d614616565b6147b7816149bc565b61494e614616565b6149566149cd565b61495f82614a15565b6001600160a01b0381166149865760405163f17ef42d60e01b815260040160405180910390fd5b5f516020615eed5f395f51905f5280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6149c4614616565b6147b781614464565b6149d5614616565b61464c6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614a1d614616565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614a73573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a979190615494565b614abf5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401611300565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f60208284031215614af1575f5ffd5b81356001600160e01b03198116811461438e575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614b7e608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614bc2610100840182614b08565b949350505050565b6001600160a01b03811681146147b7575f5ffd5b6001600160601b03811681146147b7575f5ffd5b8035614bfd81614bde565b919050565b64ffffffffff811681146147b7575f5ffd5b8035614bfd81614c02565b5f5f5f5f5f5f5f5f610100898b031215614c37575f5ffd5b8835614c4281614bca565b97506020890135614c5281614bca565b96506040890135614c6281614bde565b95506060890135614c7281614bde565b94506080890135614c8281614bde565b935060a0890135614c9281614c02565b925060c0890135614ca281614bde565b915060e0890135614cb281614bca565b809150509295985092959890939650565b5f5f60408385031215614cd4575f5ffd5b8235614cdf81614bde565b91506020830135614cef81614bde565b809150509250929050565b5f60208284031215614d0a575f5ffd5b813561438e81614bde565b634e487b7160e01b5f52604160045260245ffd5b60405161020081016001600160401b0381118282101715614d4c57614d4c614d15565b60405290565b60405161024081016001600160401b0381118282101715614d4c57614d4c614d15565b60405160e081016001600160401b0381118282101715614d4c57614d4c614d15565b604080519081016001600160401b0381118282101715614d4c57614d4c614d15565b60405161010081016001600160401b0381118282101715614d4c57614d4c614d15565b604051601f8201601f191681016001600160401b0381118282101715614e0457614e04614d15565b604052919050565b5f6001600160401b03821115614e2457614e24614d15565b50601f01601f191660200190565b5f82601f830112614e41575f5ffd5b8135614e54614e4f82614e0c565b614ddc565b818152846020838601011115614e68575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614e94575f5ffd5b81356001600160401b03811115614ea9575f5ffd5b614bc284828501614e32565b5f5f60408385031215614ec6575f5ffd5b8235614ed181614bca565b915060208301356001600160401b03811115614eeb575f5ffd5b614ef785828601614e32565b9150509250929050565b6001600160c01b0319811681146147b7575f5ffd5b8035614bfd81614f01565b61ffff811681146147b7575f5ffd5b8035614bfd81614f21565b5f5f5f60608486031215614f4d575f5ffd5b8335614f5881614bca565b92506020840135614f6881614bde565b915060408401356001600160401b03811115614f82575f5ffd5b84016102008187031215614f94575f5ffd5b614f9c614d29565b614fa582614bf2565b8152614fb360208301614bf2565b6020820152614fc460408301614f16565b6040820152614fd560608301614bf2565b6060820152614fe660808301614bf2565b6080820152614ff760a08301614f16565b60a082015261500860c08301614f30565b60c082015261501960e08301614f30565b60e082015261502b6101008301614bf2565b61010082015261503e6101208301614bf2565b6101208201526150516101408301614c14565b6101408201526150646101608301614c14565b6101608201526150776101808301614c14565b61018082015261508a6101a08301614c14565b6101a08201526101c08201356001600160401b038111156150a9575f5ffd5b6150b588828501614e32565b6101c0830152506101e08201356001600160401b038111156150d5575f5ffd5b6150e188828501614e32565b6101e08301525080925050509250925092565b5f60208284031215615104575f5ffd5b813561438e81614bca565b5f5f5f5f5f5f60c08789031215615124575f5ffd5b863561512f81614bca565b9550602087013561513f81614bca565b9450604087013561514f81614bde565b9350606087013561515f81614bde565b9250608087013561516f81614bde565b915060a087013561517f81614bde565b809150509295509295509295565b5f5f5f6060848603121561519f575f5ffd5b83356151aa81614bde565b925060208401356151ba81614f21565b915060408401356151ca81614bde565b809150509250925092565b5f5f8284036102608112156151e8575f5ffd5b83356151f381614bde565b9250610240601f1982011215615207575f5ffd5b50615210614d52565b61521c60208501614bf2565b815261522a60408501614bf2565b602082015261523b60608501614bf2565b604082015261524c60808501614bf2565b606082015261525d60a08501614bf2565b608082015261526e60c08501614bf2565b60a082015261527f60e08501614bf2565b60c08201526152916101008501614bf2565b60e08201526152a36101208501614bf2565b6101008201526152b66101408501614bf2565b6101208201526152c96101608501614bf2565b6101408201526152dc6101808501614bf2565b6101608201526152ef6101a08501614bf2565b6101808201526153026101c08501614bf2565b6101a08201526153156101e08501614bf2565b6101c08201526153286102008501614bf2565b6101e082015261533b6102208501614bf2565b61020082015261534e6102408501614bf2565b610220820152809150509250929050565b5f6020828403121561536f575f5ffd5b815162ffffff8116811461438e575f5ffd5b8051614bfd81614bde565b5f6020828403121561539c575f5ffd5b815161438e81614bde565b600181811c908216806153bb57607f821691505b6020821081036153d957634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f60208284031215615421575f5ffd5b815161438e81614bca565b6001600160601b0393841681526001600160a01b03929092166020830152909116604082015260600190565b5f5f60408385031215615469575f5ffd5b825161547481614bde565b6020840151909250614cef81614bde565b80518015158114614bfd575f5ffd5b5f602082840312156154a4575f5ffd5b61438e82615485565b6001600160a01b039390931683526001600160601b03918216602084015216604082015260600190565b5f60e082840312156154e7575f5ffd5b6154ef614d75565b905081516154fc81614bde565b8152602082015161550c81614bca565b6020820152604082015161551f81614bca565b604082015261553060608301615485565b606082015261554160808301615485565b608082015261555260a08301615485565b60a082015261556360c08301615485565b60c082015292915050565b5f5f5f5f5f6101608688031215615583575f5ffd5b855161558e81614bca565b602087015190955061559f81614bca565b60408701519094506155b081614bde565b60608701519093506155c181614bde565b91506155d087608088016154d7565b90509295509295909350565b5f60e082840312156155ec575f5ffd5b61438e83836154d7565b8051614bfd81614bca565b6001600160a01b0394851681526001600160601b0393841660208201529190931660408201529116606082015260800190565b6001600160401b03811681146147b7575f5ffd5b5f60208284031215615658575f5ffd5b815161438e81615634565b6001600160a01b039290921682526001600160601b0316602082015260400190565b6001600160a01b0394851681529290931660208301526001600160601b039081166040830152909116606082015260800190565b60ff811681146147b7575f5ffd5b8051614bfd816156b9565b5f602082840312156156e2575f5ffd5b815161438e816156b9565b5f5f5f5f60808587031215615700575f5ffd5b845161570b81614bde565b602086015190945061571c81614bde565b604086015190935061572d81614bde565b915061573b60608601615485565b905092959194509250565b5f610120820190506001600160601b03851682526001600160601b03845116602083015260018060a01b03602085015116604083015260018060a01b03604085015116606083015260608401511515608083015260808401516157ad60a084018215159052565b5060a0840151151560c083810191909152840151151560e083015260ff8316610100830152614bc2565b5f6157e4614e4f84614e0c565b90508281528383830111156157f7575f5ffd5b8282602083015e5f602084830101529392505050565b5f6020828403121561581d575f5ffd5b81516001600160401b03811115615832575f5ffd5b820160408185031215615843575f5ffd5b61584b614d97565b81516001600160401b03811115615860575f5ffd5b8201601f81018613615870575f5ffd5b61587f868251602084016157d7565b8252506020820151915061589282614bca565b60208101919091529392505050565b8051614bfd81614f01565b8051614bfd81614f21565b8051614bfd81614c02565b5f82601f8301126158d1575f5ffd5b61438e838351602085016157d7565b5f602082840312156158f0575f5ffd5b81516001600160401b03811115615905575f5ffd5b82016102008185031215615917575f5ffd5b61591f614d29565b61592882615381565b815261593660208301615381565b6020820152615947604083016158a1565b604082015261595860608301615381565b606082015261596960808301615381565b608082015261597a60a083016158a1565b60a082015261598b60c083016158ac565b60c082015261599c60e083016158ac565b60e08201526159ae6101008301615381565b6101008201526159c16101208301615381565b6101208201526159d461014083016158b7565b6101408201526159e761016083016158b7565b6101608201526159fa61018083016158b7565b610180820152615a0d6101a083016158b7565b6101a08201526101c08201516001600160401b03811115615a2c575f5ffd5b615a38868285016158c2565b6101c0830152506101e08201516001600160401b03811115615a58575f5ffd5b615a64868285016158c2565b6101e083015250949350505050565b5f82601f830112615a82575f5ffd5b81516001600160401b03811115615a9b57615a9b614d15565b8060051b615aab60208201614ddc565b91825260208185018101929081019086841115615ac6575f5ffd5b6020860192505b83831015615af1578251615ae081614bde565b825260209283019290910190615acd565b9695505050505050565b5f60208284031215615b0b575f5ffd5b81516001600160401b03811115615b20575f5ffd5b82016101008185031215615b32575f5ffd5b615b3a614db9565b615b4382615485565b8152615b5160208301615485565b6020820152615b6260408301615485565b6040820152615b73606083016156c7565b6060820152615b84608083016156c7565b6080820152615b9560a08301615381565b60a0820152615ba660c08301615381565b60c082015260e08201516001600160401b03811115615bc3575f5ffd5b615bcf86828501615a73565b60e083015250949350505050565b5f5f60408385031215615bee575f5ffd5b82516001600160401b03811115615c03575f5ffd5b830160e08186031215615c14575f5ffd5b615c1c614d75565b615c2582615381565b8152615c3360208301615381565b6020820152615c44604083016156c7565b6040820152615c5560608301615485565b6060820152615c66608083016155f6565b6080820152615c7760a083016155f6565b60a082015260c08201516001600160401b03811115615c94575f5ffd5b615ca0878285016158c2565b60c0830152509250615cb69050602084016155f6565b90509250929050565b5f5f85851115615ccd575f5ffd5b83861115615cd9575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015615d17576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f5f60408385031215615d6e575f5ffd5b8251615d7981614bde565b6020840151909250614cef81614bca565b5f5f60408385031215615d9b575f5ffd5b8251615d7981614bca565b5f82518060208501845e5f920191825250919050565b5f5f60408385031215615dcd575f5ffd5b615dd683615485565b9150602083015163ffffffff81168114614cef575f5ffd5b601f8211156146eb57805f5260205f20601f840160051c81016020851015615e135750805b601f840160051c820191505b8181101561351e575f8155600101615e1f565b81516001600160401b03811115615e4b57615e4b614d15565b615e5f81615e5984546153a7565b84615dee565b6020601f821160018114615e91575f8315615e7a5750848201515b5f19600385901b1c1916600184901b17845561351e565b5f84815260208120601f198516915b82811015615ec05787850151825560209485019460019092019101615ea0565b5084821015615edd57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212202a1017e88b1762fe506ff33231f424ee11646932344b2200a06fe58acde0b22464736f6c634300081b0033",
1513
+ "linkReferences": {
1514
+ "contracts/pool/PoolLib.sol": {
1515
+ "PoolLib": [
1516
+ {
1517
+ "length": 20,
1518
+ "start": 3106
1519
+ },
1520
+ {
1521
+ "length": 20,
1522
+ "start": 3831
1523
+ },
1524
+ {
1525
+ "length": 20,
1526
+ "start": 4701
1527
+ },
1528
+ {
1529
+ "length": 20,
1530
+ "start": 5310
1531
+ },
1532
+ {
1533
+ "length": 20,
1534
+ "start": 7882
1535
+ },
1536
+ {
1537
+ "length": 20,
1538
+ "start": 8268
1539
+ },
1540
+ {
1541
+ "length": 20,
1542
+ "start": 8848
1543
+ },
1544
+ {
1545
+ "length": 20,
1546
+ "start": 10139
1547
+ },
1548
+ {
1549
+ "length": 20,
1550
+ "start": 11896
1551
+ },
1552
+ {
1553
+ "length": 20,
1554
+ "start": 16649
1555
+ }
1556
+ ]
1557
+ },
1558
+ "contracts/shared/ContractLib.sol": {
1559
+ "ContractLib": [
1560
+ {
1561
+ "length": 20,
1562
+ "start": 14935
1563
+ },
1564
+ {
1565
+ "length": 20,
1566
+ "start": 18630
1567
+ },
1568
+ {
1569
+ "length": 20,
1570
+ "start": 19217
1571
+ }
1572
+ ]
1573
+ },
1574
+ "contracts/type/Amount.sol": {
1575
+ "AmountLib": [
1576
+ {
1577
+ "length": 20,
1578
+ "start": 2185
1579
+ },
1580
+ {
1581
+ "length": 20,
1582
+ "start": 2406
1583
+ },
1584
+ {
1585
+ "length": 20,
1586
+ "start": 3368
1587
+ },
1588
+ {
1589
+ "length": 20,
1590
+ "start": 4172
1591
+ },
1592
+ {
1593
+ "length": 20,
1594
+ "start": 6138
1595
+ },
1596
+ {
1597
+ "length": 20,
1598
+ "start": 6166
1599
+ },
1600
+ {
1601
+ "length": 20,
1602
+ "start": 6925
1603
+ },
1604
+ {
1605
+ "length": 20,
1606
+ "start": 7147
1607
+ },
1608
+ {
1609
+ "length": 20,
1610
+ "start": 12854
1611
+ },
1612
+ {
1613
+ "length": 20,
1614
+ "start": 13265
1615
+ },
1616
+ {
1617
+ "length": 20,
1618
+ "start": 17415
1619
+ },
1620
+ {
1621
+ "length": 20,
1622
+ "start": 17555
1623
+ },
1624
+ {
1625
+ "length": 20,
1626
+ "start": 17688
1627
+ }
1628
+ ]
1629
+ },
1630
+ "contracts/type/NftId.sol": {
1631
+ "NftIdLib": [
1632
+ {
1633
+ "length": 20,
1634
+ "start": 1647
1635
+ },
1636
+ {
1637
+ "length": 20,
1638
+ "start": 11142
1639
+ },
1640
+ {
1641
+ "length": 20,
1642
+ "start": 16099
1643
+ },
1644
+ {
1645
+ "length": 20,
1646
+ "start": 17858
1647
+ }
1648
+ ]
1649
+ },
1650
+ "contracts/type/ObjectType.sol": {
1651
+ "ObjectTypeLib": [
1652
+ {
1653
+ "length": 20,
1654
+ "start": 15763
1655
+ }
1656
+ ]
1657
+ },
1658
+ "contracts/type/RoleId.sol": {
1659
+ "RoleIdLib": [
1660
+ {
1661
+ "length": 20,
1662
+ "start": 8955
1663
+ }
1664
+ ]
1665
+ },
1666
+ "contracts/type/Version.sol": {
1667
+ "VersionLib": [
1668
+ {
1669
+ "length": 20,
1670
+ "start": 1447
1671
+ },
1672
+ {
1673
+ "length": 20,
1674
+ "start": 5409
1675
+ }
1676
+ ]
1677
+ }
1678
+ },
1679
+ "deployedLinkReferences": {
1680
+ "contracts/pool/PoolLib.sol": {
1681
+ "PoolLib": [
1682
+ {
1683
+ "length": 20,
1684
+ "start": 2892
1685
+ },
1686
+ {
1687
+ "length": 20,
1688
+ "start": 3617
1689
+ },
1690
+ {
1691
+ "length": 20,
1692
+ "start": 4487
1693
+ },
1694
+ {
1695
+ "length": 20,
1696
+ "start": 5096
1697
+ },
1698
+ {
1699
+ "length": 20,
1700
+ "start": 7668
1701
+ },
1702
+ {
1703
+ "length": 20,
1704
+ "start": 8054
1705
+ },
1706
+ {
1707
+ "length": 20,
1708
+ "start": 8634
1709
+ },
1710
+ {
1711
+ "length": 20,
1712
+ "start": 9925
1713
+ },
1714
+ {
1715
+ "length": 20,
1716
+ "start": 11682
1717
+ },
1718
+ {
1719
+ "length": 20,
1720
+ "start": 16435
1721
+ }
1722
+ ]
1723
+ },
1724
+ "contracts/shared/ContractLib.sol": {
1725
+ "ContractLib": [
1726
+ {
1727
+ "length": 20,
1728
+ "start": 14721
1729
+ },
1730
+ {
1731
+ "length": 20,
1732
+ "start": 18416
1733
+ },
1734
+ {
1735
+ "length": 20,
1736
+ "start": 19003
1737
+ }
1738
+ ]
1739
+ },
1740
+ "contracts/type/Amount.sol": {
1741
+ "AmountLib": [
1742
+ {
1743
+ "length": 20,
1744
+ "start": 1971
1745
+ },
1746
+ {
1747
+ "length": 20,
1748
+ "start": 2192
1749
+ },
1750
+ {
1751
+ "length": 20,
1752
+ "start": 3154
1753
+ },
1754
+ {
1755
+ "length": 20,
1756
+ "start": 3958
1757
+ },
1758
+ {
1759
+ "length": 20,
1760
+ "start": 5924
1761
+ },
1762
+ {
1763
+ "length": 20,
1764
+ "start": 5952
1765
+ },
1766
+ {
1767
+ "length": 20,
1768
+ "start": 6711
1769
+ },
1770
+ {
1771
+ "length": 20,
1772
+ "start": 6933
1773
+ },
1774
+ {
1775
+ "length": 20,
1776
+ "start": 12640
1777
+ },
1778
+ {
1779
+ "length": 20,
1780
+ "start": 13051
1781
+ },
1782
+ {
1783
+ "length": 20,
1784
+ "start": 17201
1785
+ },
1786
+ {
1787
+ "length": 20,
1788
+ "start": 17341
1789
+ },
1790
+ {
1791
+ "length": 20,
1792
+ "start": 17474
1793
+ }
1794
+ ]
1795
+ },
1796
+ "contracts/type/NftId.sol": {
1797
+ "NftIdLib": [
1798
+ {
1799
+ "length": 20,
1800
+ "start": 1433
1801
+ },
1802
+ {
1803
+ "length": 20,
1804
+ "start": 10928
1805
+ },
1806
+ {
1807
+ "length": 20,
1808
+ "start": 15885
1809
+ },
1810
+ {
1811
+ "length": 20,
1812
+ "start": 17644
1813
+ }
1814
+ ]
1815
+ },
1816
+ "contracts/type/ObjectType.sol": {
1817
+ "ObjectTypeLib": [
1818
+ {
1819
+ "length": 20,
1820
+ "start": 15549
1821
+ }
1822
+ ]
1823
+ },
1824
+ "contracts/type/RoleId.sol": {
1825
+ "RoleIdLib": [
1826
+ {
1827
+ "length": 20,
1828
+ "start": 8741
1829
+ }
1830
+ ]
1831
+ },
1832
+ "contracts/type/Version.sol": {
1833
+ "VersionLib": [
1834
+ {
1835
+ "length": 20,
1836
+ "start": 1233
1837
+ },
1838
+ {
1839
+ "length": 20,
1840
+ "start": 5195
1841
+ }
1842
+ ]
1843
+ }
1844
+ }
1845
+ }